Based on
[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 23:33:48 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 if $test -f archname.cbu; then
5697         echo "Your platform has some specific hints for architecture name, using them..."
5698         . ./archname.cbu
5699 fi
5700
5701 : determine root of directory hierarchy where package will be installed.
5702 case "$prefix" in
5703 '')
5704         dflt=`./loc . /usr/local /usr/local /local /opt /usr`
5705         ;;
5706 *?/)
5707         dflt=`echo "$prefix" | sed 's/.$//'`
5708         ;;
5709 *)
5710         dflt="$prefix"
5711         ;;
5712 esac
5713 $cat <<EOM
5714
5715 By default, $package will be installed in $dflt/bin, manual pages
5716 under $dflt/man, etc..., i.e. with $dflt as prefix for all
5717 installation directories. Typically this is something like /usr/local.
5718 If you wish to have binaries under /usr/bin but other parts of the
5719 installation under /usr/local, that's ok: you will be prompted
5720 separately for each of the installation directories, the prefix being
5721 only used to set the defaults.
5722
5723 EOM
5724 fn=d~
5725 rp='Installation prefix to use?'
5726 . ./getfile
5727 oldprefix=''
5728 case "$prefix" in
5729 '') ;;
5730 *)
5731         case "$ans" in
5732         "$prefix") ;;
5733         *) oldprefix="$prefix";;
5734         esac
5735         ;;
5736 esac
5737 prefix="$ans"
5738 prefixexp="$ansexp"
5739
5740 case "$afsroot" in
5741 '')     afsroot=/afs ;;
5742 *)      afsroot=$afsroot ;;
5743 esac
5744
5745 : is AFS running?
5746 echo " "
5747 case "$afs" in
5748 $define|true)   afs=true ;;
5749 $undef|false)   afs=false ;;
5750 *)      if test -d $afsroot; then
5751                 afs=true
5752         else
5753                 afs=false
5754         fi
5755         ;;
5756 esac
5757 if $afs; then
5758         echo "AFS may be running... I'll be extra cautious then..." >&4
5759 else
5760         echo "AFS does not seem to be running..." >&4
5761 fi
5762
5763 : determine installation prefix for where package is to be installed.
5764 if $afs; then 
5765 $cat <<EOM
5766
5767 Since you are running AFS, I need to distinguish the directory in which
5768 files will reside from the directory in which they are installed (and from
5769 which they are presumably copied to the former directory by occult means).
5770
5771 EOM
5772         case "$installprefix" in
5773         '') dflt=`echo $prefix | sed 's#^/afs/#/afs/.#'`;;
5774         *) dflt="$installprefix";;
5775         esac
5776 else
5777 $cat <<EOM
5778
5779 In some special cases, particularly when building $package for distribution,
5780 it is convenient to distinguish the directory in which files should be
5781 installed from the directory ($prefix) in which they will
5782 eventually reside.  For most users, these two directories are the same.
5783
5784 EOM
5785         case "$installprefix" in
5786         '') dflt=$prefix ;;
5787         *) dflt=$installprefix;;
5788         esac
5789 fi
5790 fn=d~
5791 rp='What installation prefix should I use for installing files?'
5792 . ./getfile
5793 installprefix="$ans"
5794 installprefixexp="$ansexp"
5795
5796 : set the prefixit variable, to compute a suitable default value
5797 prefixit='case "$3" in
5798 ""|none)
5799         case "$oldprefix" in
5800         "") eval "$1=\"\$$2\"";;
5801         *)
5802                 case "$3" in
5803                 "") eval "$1=";;
5804                 none)
5805                         eval "tp=\"\$$2\"";
5806                         case "$tp" in
5807                         ""|" ") eval "$1=\"\$$2\"";;
5808                         *) eval "$1=";;
5809                         esac;;
5810                 esac;;
5811         esac;;
5812 *)
5813         eval "tp=\"$oldprefix-\$$2-\""; eval "tp=\"$tp\"";
5814         case "$tp" in
5815         --|/*--|\~*--) eval "$1=\"$prefix/$3\"";;
5816         /*-$oldprefix/*|\~*-$oldprefix/*)
5817                 eval "$1=\`echo \$$2 | sed \"s,^$oldprefix,$prefix,\"\`";;
5818         *) eval "$1=\"\$$2\"";;
5819         esac;;
5820 esac'
5821
5822 : get the patchlevel
5823 echo " "
5824 echo "Getting the current patchlevel..." >&4
5825 if $test -r $rsrc/patchlevel.h;then
5826         revision=`awk '/define[         ]+PERL_REVISION/ {print $3}' $rsrc/patchlevel.h`
5827         patchlevel=`awk '/define[       ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
5828         subversion=`awk '/define[       ]+PERL_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
5829         api_revision=`awk '/define[     ]+PERL_API_REVISION/ {print $3}' $rsrc/patchlevel.h`
5830         api_version=`awk '/define[      ]+PERL_API_VERSION/ {print $3}' $rsrc/patchlevel.h`
5831         api_subversion=`awk '/define[   ]+PERL_API_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
5832        perl_patchlevel=`grep ',"DEVEL[0-9][0-9]*"' $rsrc/patchlevel.h|sed 's/[^0-9]//g'`
5833 else
5834         revision=0
5835         patchlevel=0
5836         subversion=0
5837         api_revision=0
5838         api_version=0
5839         api_subversion=0
5840         perl_patchlevel=0
5841         $echo "(You do not have patchlevel.h.  Eek.)"
5842 fi
5843 if $test -r $rsrc/.patch ; then  
5844         if $test "`cat $rsrc/.patch`" -gt "$perl_patchlevel" ; then
5845                 perl_patchlevel=`cat $rsrc/.patch`
5846         fi
5847 fi
5848 : Define a handy string here to avoid duplication in myconfig.SH and configpm.
5849 version_patchlevel_string="version $patchlevel subversion $subversion"
5850 case "$perl_patchlevel" in
5851 0|'') ;;
5852 *) version_patchlevel_string="$version_patchlevel_string patch $perl_patchlevel" ;;
5853 esac
5854
5855 $echo "(You have $package $version_patchlevel_string.)"
5856
5857 case "$osname" in
5858 dos|vms)
5859         : XXX Should be a Configure test for double-dots in filenames.
5860         version=`echo $revision $patchlevel $subversion | \
5861                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
5862         api_versionstring=`echo $api_revision $api_version $api_subversion | \
5863                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
5864         ;;
5865 *)
5866         version=`echo $revision $patchlevel $subversion | \
5867                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
5868         api_versionstring=`echo $api_revision $api_version $api_subversion | \
5869                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
5870         ;;
5871 esac
5872 : Special case the 5.005_xx maintenance series, which used 5.005
5873 : without any subversion label as a subdirectory in $sitelib
5874 if test "${api_revision}${api_version}${api_subversion}" = "550"; then
5875         api_versionstring='5.005'
5876 fi
5877
5878 : determine installation style
5879 : For now, try to deduce it from prefix unless it is already set.
5880 : Reproduce behavior of 5.005 and earlier, maybe drop that in 5.7.
5881 case "$installstyle" in
5882 '')     case "$prefix" in
5883                 *perl*) dflt='lib';;
5884                 *) dflt='lib/perl5' ;;
5885         esac
5886         ;;
5887 *)      dflt="$installstyle" ;;
5888 esac
5889 : Probably not worth prompting for this since we prompt for all
5890 : the directories individually, and the prompt would be too long and
5891 : confusing anyway.
5892 installstyle=$dflt
5893
5894 : determine where private library files go
5895 : Usual default is /usr/local/lib/perl5/$version.
5896 : Also allow things like /opt/perl/lib/$version, since 
5897 : /opt/perl/lib/perl5... would be redundant.
5898 : The default "style" setting is made in installstyle.U
5899 case "$installstyle" in
5900 *lib/perl5*) set dflt privlib lib/$package/$version ;;
5901 *)       set dflt privlib lib/$version ;;
5902 esac
5903 eval $prefixit
5904 $cat <<EOM
5905
5906 There are some auxiliary files for $package that need to be put into a
5907 private library directory that is accessible by everyone.
5908
5909 EOM
5910 fn=d~+
5911 rp='Pathname where the private library files will reside?'
5912 . ./getfile
5913 privlib="$ans"
5914 privlibexp="$ansexp"
5915 : Change installation prefix, if necessary.
5916 if $test X"$prefix" != X"$installprefix"; then
5917         installprivlib=`echo $privlibexp | sed "s#^$prefix#$installprefix#"`
5918 else
5919         installprivlib="$privlibexp"
5920 fi
5921
5922 : set the prefixup variable, to restore leading tilda escape
5923 prefixup='case "$prefixexp" in
5924 "$prefix") ;;
5925 *) eval "$1=\`echo \$$1 | sed \"s,^$prefixexp,$prefix,\"\`";;
5926 esac'
5927
5928 : determine where public architecture dependent libraries go
5929 set archlib archlib
5930 eval $prefixit
5931 : privlib default is /usr/local/lib/$package/$version
5932 : archlib default is /usr/local/lib/$package/$version/$archname
5933 : privlib may have an optional trailing /share.
5934 tdflt=`echo $privlib | $sed 's,/share$,,'`
5935 tdflt=$tdflt/$archname
5936 case "$archlib" in
5937 '')     dflt=$tdflt
5938         ;;
5939 *)      dflt="$archlib"
5940     ;;
5941 esac
5942 $cat <<EOM
5943
5944 $spackage contains architecture-dependent library files.  If you are
5945 sharing libraries in a heterogeneous environment, you might store
5946 these files in a separate location.  Otherwise, you can just include
5947 them with the rest of the public library files.
5948
5949 EOM
5950 fn=d+~
5951 rp='Where do you want to put the public architecture-dependent libraries?'
5952 . ./getfile
5953 archlib="$ans"
5954 archlibexp="$ansexp"
5955 if $test X"$archlib" = X"$privlib"; then
5956         d_archlib="$undef"
5957 else
5958         d_archlib="$define"
5959 fi
5960 : Change installation prefix, if necessary.
5961 if $test X"$prefix" != X"$installprefix"; then
5962         installarchlib=`echo $archlibexp | sed "s#^$prefix#$installprefix#"`
5963 else
5964         installarchlib="$archlibexp"
5965 fi
5966
5967 : see if setuid scripts can be secure
5968 $cat <<EOM
5969
5970 Some kernels have a bug that prevents setuid #! scripts from being
5971 secure.  Some sites have disabled setuid #! scripts because of this.
5972
5973 First let's decide if your kernel supports secure setuid #! scripts.
5974 (If setuid #! scripts would be secure but have been disabled anyway,
5975 don't say that they are secure if asked.)
5976
5977 EOM
5978
5979 val="$undef"
5980 if $test -d /dev/fd; then
5981         echo "#!$ls" >reflect
5982         chmod +x,u+s reflect
5983         ./reflect >flect 2>&1
5984         if $contains "/dev/fd" flect >/dev/null; then
5985                 echo "Congratulations, your kernel has secure setuid scripts!" >&4
5986                 val="$define"
5987         else
5988                 $cat <<EOM
5989 If you are not sure if they are secure, I can check but I'll need a
5990 username and password different from the one you are using right now.
5991 If you don't have such a username or don't want me to test, simply
5992 enter 'none'.
5993
5994 EOM
5995                 rp='Other username to test security of setuid scripts with?'
5996                 dflt='none'
5997                 . ./myread
5998                 case "$ans" in
5999                 n|none)
6000                         case "$d_suidsafe" in
6001                         '')     echo "I'll assume setuid scripts are *not* secure." >&4
6002                                 dflt=n;;
6003                         "$undef")
6004                                 echo "Well, the $hint value is *not* secure." >&4
6005                                 dflt=n;;
6006                         *)      echo "Well, the $hint value *is* secure." >&4
6007                                 dflt=y;;
6008                         esac
6009                         ;;
6010                 *)
6011                         $rm -f reflect flect
6012                         echo "#!$ls" >reflect
6013                         chmod +x,u+s reflect
6014                         echo >flect
6015                         chmod a+w flect
6016                         echo '"su" will (probably) prompt you for '"$ans's password."
6017                         su $ans -c './reflect >flect'
6018                         if $contains "/dev/fd" flect >/dev/null; then
6019                                 echo "Okay, it looks like setuid scripts are secure." >&4
6020                                 dflt=y
6021                         else
6022                                 echo "I don't think setuid scripts are secure." >&4
6023                                 dflt=n
6024                         fi
6025                         ;;
6026                 esac
6027                 rp='Does your kernel have *secure* setuid scripts?'
6028                 . ./myread
6029                 case "$ans" in
6030                 [yY]*)  val="$define";;
6031                 *)      val="$undef";;
6032                 esac
6033         fi
6034 else
6035         echo "I don't think setuid scripts are secure (no /dev/fd directory)." >&4
6036         echo "(That's for file descriptors, not floppy disks.)"
6037         val="$undef"
6038 fi
6039 set d_suidsafe
6040 eval $setvar
6041
6042 $rm -f reflect flect
6043
6044 : now see if they want to do setuid emulation
6045 echo " "
6046 val="$undef"
6047 case "$d_suidsafe" in
6048 "$define")
6049         val="$undef"
6050         echo "No need to emulate SUID scripts since they are secure here." >&4
6051         ;;
6052 *)
6053         $cat <<EOM
6054 Some systems have disabled setuid scripts, especially systems where
6055 setuid scripts cannot be secure.  On systems where setuid scripts have
6056 been disabled, the setuid/setgid bits on scripts are currently
6057 useless.  It is possible for $package to detect those bits and emulate
6058 setuid/setgid in a secure fashion.  This emulation will only work if
6059 setuid scripts have been disabled in your kernel.
6060
6061 EOM
6062         case "$d_dosuid" in
6063         "$define") dflt=y ;;
6064         *) dflt=n ;;
6065         esac
6066         rp="Do you want to do setuid/setgid emulation?"
6067         . ./myread
6068         case "$ans" in
6069         [yY]*)  val="$define";;
6070         *)      val="$undef";;
6071         esac
6072         ;;
6073 esac
6074 set d_dosuid
6075 eval $setvar
6076
6077 : see if this is a malloc.h system
6078 : we want a real compile instead of Inhdr because some systems have a
6079 : malloc.h that just gives a compile error saying to use stdlib.h instead
6080 echo " "
6081 $cat >try.c <<EOCP
6082 #include <stdlib.h>
6083 #include <malloc.h>
6084 int main () { return 0; }
6085 EOCP
6086 set try
6087 if eval $compile; then
6088     echo "<malloc.h> found." >&4
6089     val="$define"
6090 else
6091     echo "<malloc.h> NOT found." >&4
6092     val="$undef"
6093 fi
6094 $rm -f try.c try
6095 set i_malloc
6096 eval $setvar
6097
6098 : check for void type
6099 echo " "
6100 echo "Checking to see how well your C compiler groks the void type..." >&4
6101 case "$voidflags" in
6102 '')
6103         $cat >try.c <<EOCP
6104 #$i_stdlib I_STDLIB
6105 #ifdef I_STDLIB
6106 #include <stdlib.h>
6107 #endif
6108 #if TRY & 1
6109 void sub() {
6110 #else
6111 sub() {
6112 #endif
6113         extern void moo();      /* function returning void */
6114         void (*goo)();          /* ptr to func returning void */
6115 #if TRY & 8
6116         void *hue;              /* generic ptr */
6117 #endif
6118 #if TRY & 2
6119         void (*foo[10])();
6120 #endif
6121
6122 #if TRY & 4
6123         if(goo == moo) {
6124                 exit(0);
6125         }
6126 #endif
6127         exit(0);
6128 }
6129 int main() { sub(); }
6130 EOCP
6131         if $cc $ccflags -c -DTRY=$defvoidused try.c >.out 2>&1 ; then
6132                 voidflags=$defvoidused
6133         echo "Good.  It appears to support void to the level $package wants.">&4
6134                 if $contains warning .out >/dev/null 2>&1; then
6135                         echo "However, you might get some warnings that look like this:"
6136                         $cat .out
6137                 fi
6138         else
6139 echo "Hmm, your compiler has some difficulty with void. Checking further..." >&4
6140                 if $cc $ccflags -c -DTRY=1 try.c >/dev/null 2>&1; then
6141                         echo "It supports 1..."
6142                         if $cc $ccflags -c -DTRY=3 try.c >/dev/null 2>&1; then
6143                                 echo "It also supports 2..."
6144                                 if $cc $ccflags -c -DTRY=7 try.c >/dev/null 2>&1; then
6145                                         voidflags=7
6146                                         echo "And it supports 4 but not 8 definitely."
6147                                 else
6148                                         echo "It doesn't support 4..."
6149                                         if $cc $ccflags -c -DTRY=11 try.c >/dev/null 2>&1; then
6150                                                 voidflags=11
6151                                                 echo "But it supports 8."
6152                                         else
6153                                                 voidflags=3
6154                                                 echo "Neither does it support 8."
6155                                         fi
6156                                 fi
6157                         else
6158                                 echo "It does not support 2..."
6159                                 if $cc $ccflags -c -DTRY=13 try.c >/dev/null 2>&1; then
6160                                         voidflags=13
6161                                         echo "But it supports 4 and 8."
6162                                 else
6163                                         if $cc $ccflags -c -DTRY=5 try.c >/dev/null 2>&1; then
6164                                                 voidflags=5
6165                                                 echo "And it supports 4 but has not heard about 8."
6166                                         else
6167                                                 echo "However it supports 8 but not 4."
6168                                         fi
6169                                 fi
6170                         fi
6171                 else
6172                         echo "There is no support at all for void."
6173                         voidflags=0
6174                 fi
6175         fi
6176 esac
6177 case "$voidflags" in
6178 "$defvoidused") ;;
6179 *)      $cat >&4 <<'EOM'
6180   Support flag bits are:
6181     1: basic void declarations.
6182     2: arrays of pointers to functions returning void.
6183     4: operations between pointers to and addresses of void functions.
6184     8: generic void pointers.
6185 EOM
6186         dflt="$voidflags";
6187         rp="Your void support flags add up to what?"
6188         . ./myread
6189         voidflags="$ans"
6190         ;;
6191 esac
6192 $rm -f try.* .out
6193
6194 : check for length of pointer
6195 echo " "
6196 case "$ptrsize" in
6197 '')
6198         echo "Checking to see how big your pointers are..." >&4
6199         if test "$voidflags" -gt 7; then
6200                 echo '#define VOID_PTR char *' > try.c
6201         else
6202                 echo '#define VOID_PTR void *' > try.c
6203         fi
6204         $cat >>try.c <<EOCP
6205 #include <stdio.h>
6206 #$i_stdlib I_STDLIB
6207 #ifdef I_STDLIB
6208 #include <stdlib.h>
6209 #endif
6210 int main()
6211 {
6212     printf("%d\n", (int)sizeof(VOID_PTR));
6213     exit(0);
6214 }
6215 EOCP
6216         set try
6217         if eval $compile_ok; then
6218                 ptrsize=`$run ./try`
6219                 echo "Your pointers are $ptrsize bytes long."
6220         else
6221                 dflt='4'
6222                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
6223                 rp="What is the size of a pointer (in bytes)?"
6224                 . ./myread
6225                 ptrsize="$ans"
6226         fi
6227         ;;
6228 esac
6229 $rm -f try.c try
6230 case "$use64bitall" in
6231 "$define"|true|[yY]*)
6232         case "$ptrsize" in
6233         4)      cat <<EOM >&4
6234
6235 *** You have chosen a maximally 64-bit build,
6236 *** but your pointers are only 4 bytes wide.
6237 *** Please rerun Configure without -Duse64bitall.
6238 EOM
6239                 case "$d_quad" in
6240                 define)
6241                         cat <<EOM >&4
6242 *** Since you have quads, you could possibly try with -Duse64bitint.
6243 EOM
6244                         ;;
6245                 esac
6246                 cat <<EOM >&4
6247 *** Cannot continue, aborting.
6248
6249 EOM
6250
6251                 exit 1
6252                 ;;
6253         esac
6254         ;;
6255 esac
6256
6257
6258 : determine which malloc to compile in
6259 echo " "
6260 case "$usemymalloc" in
6261 [yY]*|true|$define)     dflt='y' ;;
6262 [nN]*|false|$undef)     dflt='n' ;;
6263 *)      case "$ptrsize" in
6264         4) dflt='y' ;;
6265         *) dflt='n' ;;
6266         esac
6267         ;;
6268 esac
6269 rp="Do you wish to attempt to use the malloc that comes with $package?"
6270 . ./myread
6271 usemymalloc="$ans"
6272 case "$ans" in
6273 y*|true)
6274         usemymalloc='y'
6275         mallocsrc='malloc.c'
6276         mallocobj="malloc$_o"
6277         d_mymalloc="$define"
6278         case "$libs" in
6279         *-lmalloc*)
6280                 : Remove malloc from list of libraries to use
6281                 echo "Removing unneeded -lmalloc from library list" >&4
6282                 set `echo X $libs | $sed -e 's/-lmalloc / /' -e 's/-lmalloc$//'`
6283                 shift
6284                 libs="$*"
6285                 echo "libs = $libs" >&4
6286                 ;;
6287         esac
6288         ;;
6289 *)
6290         usemymalloc='n'
6291         mallocsrc=''
6292         mallocobj=''
6293         d_mymalloc="$undef"
6294         ;;
6295 esac
6296
6297 : compute the return types of malloc and free
6298 echo " "
6299 $cat >malloc.c <<END
6300 #$i_malloc I_MALLOC
6301 #$i_stdlib I_STDLIB
6302 #include <stdio.h>
6303 #include <sys/types.h>
6304 #ifdef I_MALLOC
6305 #include <malloc.h>
6306 #endif
6307 #ifdef I_STDLIB
6308 #include <stdlib.h>
6309 #endif
6310 #ifdef TRY_MALLOC
6311 void *malloc();
6312 #endif
6313 #ifdef TRY_FREE
6314 void free();
6315 #endif
6316 END
6317 case "$malloctype" in
6318 '')
6319         if $cc $ccflags -c -DTRY_MALLOC malloc.c >/dev/null 2>&1; then
6320                 malloctype='void *'
6321         else
6322                 malloctype='char *'
6323         fi
6324         ;;
6325 esac
6326 echo "Your system wants malloc to return '$malloctype', it would seem." >&4
6327
6328 case "$freetype" in
6329 '')
6330         if $cc $ccflags -c -DTRY_FREE malloc.c >/dev/null 2>&1; then
6331                 freetype='void'
6332         else
6333                 freetype='int'
6334         fi
6335         ;;
6336 esac
6337 echo "Your system uses $freetype free(), it would seem." >&4
6338 $rm -f malloc.[co]
6339 $cat <<EOM
6340
6341 After $package is installed, you may wish to install various
6342 add-on modules and utilities.  Typically, these add-ons will
6343 be installed under $prefix with the rest
6344 of this package.  However, you may wish to install such add-ons
6345 elsewhere under a different prefix.
6346
6347 If you do not wish to put everything under a single prefix, that's
6348 ok.  You will be prompted for the individual locations; this siteprefix
6349 is only used to suggest the defaults.
6350
6351 The default should be fine for most people.
6352
6353 EOM
6354 fn=d~+
6355 rp='Installation prefix to use for add-on modules and utilities?'
6356 : XXX Here might be another good place for an installstyle setting.
6357 case "$siteprefix" in
6358 '') dflt=$prefix ;;
6359 *)  dflt=$siteprefix ;;
6360 esac
6361 . ./getfile
6362 : XXX Prefixit unit does not yet support siteprefix and vendorprefix
6363 oldsiteprefix=''
6364 case "$siteprefix" in
6365 '') ;;
6366 *)      case "$ans" in
6367         "$prefix") ;;
6368         *) oldsiteprefix="$prefix";;
6369         esac
6370         ;;
6371 esac
6372 siteprefix="$ans"
6373 siteprefixexp="$ansexp"
6374
6375 : determine where site specific libraries go.
6376 : Usual default is /usr/local/lib/perl5/site_perl/$version
6377 : The default "style" setting is made in installstyle.U
6378 : XXX No longer works with Prefixit stuff.
6379 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6380 case "$sitelib" in
6381 '') case "$installstyle" in
6382         *lib/perl5*) dflt=$siteprefix/lib/$package/site_$prog/$version ;;
6383         *)       dflt=$siteprefix/lib/site_$prog/$version ;;
6384         esac
6385         ;;
6386 *)      dflt="$sitelib"
6387         ;;
6388 esac
6389 $cat <<EOM
6390
6391 The installation process will create a directory for
6392 site-specific extensions and modules.  Most users find it convenient
6393 to place all site-specific files in this directory rather than in the
6394 main distribution directory.
6395
6396 EOM
6397 fn=d~+
6398 rp='Pathname for the site-specific library files?'
6399 . ./getfile
6400 sitelib="$ans"
6401 sitelibexp="$ansexp"
6402 sitelib_stem=`echo "$sitelibexp" | sed "s,/$version$,,"`
6403 : Change installation prefix, if necessary.
6404 if $test X"$prefix" != X"$installprefix"; then
6405         installsitelib=`echo $sitelibexp | $sed "s#^$prefix#$installprefix#"`
6406 else
6407         installsitelib="$sitelibexp"
6408 fi
6409
6410 : determine where site specific architecture-dependent libraries go.
6411 : sitelib  default is /usr/local/lib/perl5/site_perl/$version
6412 : sitearch default is /usr/local/lib/perl5/site_perl/$version/$archname
6413 : sitelib may have an optional trailing /share.
6414 case "$sitearch" in
6415 '')     dflt=`echo $sitelib | $sed 's,/share$,,'`
6416         dflt="$dflt/$archname"
6417         ;;
6418 *)      dflt="$sitearch"
6419         ;;
6420 esac
6421 set sitearch sitearch none
6422 eval $prefixit
6423 $cat <<EOM
6424
6425 The installation process will also create a directory for
6426 architecture-dependent site-specific extensions and modules.
6427
6428 EOM
6429 fn=d~+
6430 rp='Pathname for the site-specific architecture-dependent library files?'
6431 . ./getfile
6432 sitearch="$ans"
6433 sitearchexp="$ansexp"
6434 : Change installation prefix, if necessary.
6435 if $test X"$prefix" != X"$installprefix"; then
6436         installsitearch=`echo $sitearchexp | sed "s#^$prefix#$installprefix#"`
6437 else
6438         installsitearch="$sitearchexp"
6439 fi
6440
6441 $cat <<EOM
6442
6443 The installation process will also create a directory for
6444 vendor-supplied add-ons.  Vendors who supply perl with their system
6445 may find it convenient to place all vendor-supplied files in this
6446 directory rather than in the main distribution directory.  This will
6447 ease upgrades between binary-compatible maintenance versions of perl.
6448
6449 Of course you may also use these directories in whatever way you see
6450 fit.  For example, you might use them to access modules shared over a
6451 company-wide network.
6452
6453 The default answer should be fine for most people.
6454 This causes further questions about vendor add-ons to be skipped
6455 and no vendor-specific directories will be configured for perl.
6456
6457 EOM
6458 rp='Do you want to configure vendor-specific add-on directories?'
6459 case "$usevendorprefix" in
6460 define|true|[yY]*) dflt=y ;;
6461 *)      : User may have set vendorprefix directly on Configure command line.
6462         case "$vendorprefix" in
6463         ''|' ') dflt=n ;;
6464         *)      dflt=y ;;
6465         esac
6466         ;;
6467 esac
6468 . ./myread
6469 case "$ans" in
6470 [yY]*)  fn=d~+
6471         rp='Installation prefix to use for vendor-supplied add-ons?'
6472         case "$vendorprefix" in
6473         '') dflt='' ;;
6474         *)  dflt=$vendorprefix ;;
6475         esac
6476         . ./getfile
6477         : XXX Prefixit unit does not yet support siteprefix and vendorprefix
6478         oldvendorprefix=''
6479         case "$vendorprefix" in
6480         '') ;;
6481         *)      case "$ans" in
6482                 "$prefix") ;;
6483                 *) oldvendorprefix="$prefix";;
6484                 esac
6485                 ;;
6486         esac
6487         usevendorprefix="$define"
6488         vendorprefix="$ans"
6489         vendorprefixexp="$ansexp"
6490         ;;
6491 *)      usevendorprefix="$undef"
6492         vendorprefix=''
6493         vendorprefixexp=''
6494         ;;
6495 esac
6496
6497 case "$vendorprefix" in
6498 '')     d_vendorlib="$undef"
6499         vendorlib=''
6500         vendorlibexp=''
6501         ;;
6502 *)      d_vendorlib="$define"
6503         : determine where vendor-supplied modules go.
6504         : Usual default is /usr/local/lib/perl5/vendor_perl/$version
6505         case "$vendorlib" in
6506         '')
6507                 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6508                 case "$installstyle" in
6509                 *lib/perl5*) dflt=$vendorprefix/lib/$package/vendor_$prog/$version ;;
6510                 *)           dflt=$vendorprefix/lib/vendor_$prog/$version ;;
6511                 esac
6512                 ;;
6513         *)      dflt="$vendorlib"
6514                 ;;
6515         esac
6516         fn=d~+
6517         rp='Pathname for the vendor-supplied library files?'
6518         . ./getfile
6519         vendorlib="$ans"
6520         vendorlibexp="$ansexp"
6521         ;;
6522 esac
6523 vendorlib_stem=`echo "$vendorlibexp" | sed "s,/$version$,,"`
6524 : Change installation prefix, if necessary.
6525 if $test X"$prefix" != X"$installprefix"; then
6526         installvendorlib=`echo $vendorlibexp | $sed "s#^$prefix#$installprefix#"`
6527 else
6528         installvendorlib="$vendorlibexp"
6529 fi
6530
6531 case "$vendorprefix" in
6532 '')     d_vendorarch="$undef"
6533         vendorarch=''
6534         vendorarchexp=''
6535         ;;
6536 *)      d_vendorarch="$define"
6537         : determine where vendor-supplied architecture-dependent libraries go.
6538         : vendorlib  default is /usr/local/lib/perl5/vendor_perl/$version
6539         : vendorarch default is /usr/local/lib/perl5/vendor_perl/$version/$archname
6540         : vendorlib may have an optional trailing /share.
6541         case "$vendorarch" in
6542         '')     dflt=`echo $vendorlib | $sed 's,/share$,,'`
6543                 dflt="$dflt/$archname"
6544                 ;;
6545         *)      dflt="$vendorarch" ;;
6546         esac
6547         fn=d~+
6548         rp='Pathname for vendor-supplied architecture-dependent files?'
6549         . ./getfile
6550         vendorarch="$ans"
6551         vendorarchexp="$ansexp"
6552         ;;
6553 esac
6554 : Change installation prefix, if necessary.
6555 if $test X"$prefix" != X"$installprefix"; then
6556         installvendorarch=`echo $vendorarchexp | sed "s#^$prefix#$installprefix#"`
6557 else
6558         installvendorarch="$vendorarchexp"
6559 fi
6560
6561 : Final catch-all directories to search
6562 $cat <<EOM
6563
6564 Lastly, you can have perl look in other directories for extensions and
6565 modules in addition to those already specified.
6566 These directories will be searched after 
6567         $sitearch 
6568         $sitelib 
6569 EOM
6570 test X"$vendorlib" != "X" && echo '     ' $vendorlib
6571 test X"$vendorarch" != "X" && echo '    ' $vendorarch
6572 echo ' '
6573 case "$otherlibdirs" in
6574 ''|' ') dflt='none' ;;
6575 *)      dflt="$otherlibdirs" ;;
6576 esac
6577 $cat <<EOM
6578 Enter a colon-separated set of extra paths to include in perl's @INC
6579 search path, or enter 'none' for no extra paths.
6580
6581 EOM
6582
6583 rp='Colon-separated list of additional directories for perl to search?'
6584 . ./myread
6585 case "$ans" in
6586 ' '|''|none)    otherlibdirs=' ' ;;     
6587 *)      otherlibdirs="$ans" ;;
6588 esac
6589 case "$otherlibdirs" in
6590 ' ') val=$undef ;;
6591 *)      val=$define ;;
6592 esac
6593 set d_perl_otherlibdirs
6594 eval $setvar
6595
6596 : Cruising for prototypes
6597 echo " "
6598 echo "Checking out function prototypes..." >&4
6599 $cat >prototype.c <<EOCP
6600 #$i_stdlib I_STDLIB
6601 #ifdef I_STDLIB
6602 #include <stdlib.h>
6603 #endif
6604 int main(int argc, char *argv[]) {
6605         exit(0);}
6606 EOCP
6607 if $cc $ccflags -c prototype.c >prototype.out 2>&1 ; then
6608         echo "Your C compiler appears to support function prototypes."
6609         val="$define"
6610 else
6611         echo "Your C compiler doesn't seem to understand function prototypes."
6612         val="$undef"
6613 fi
6614 set prototype
6615 eval $setvar
6616 $rm -f prototype*
6617
6618 case "$prototype" in
6619 "$define") ;;
6620 *)      ansi2knr='ansi2knr'
6621         echo " "
6622         cat <<EOM >&4
6623
6624 $me:  FATAL ERROR:
6625 This version of $package can only be compiled by a compiler that 
6626 understands function prototypes.  Unfortunately, your C compiler 
6627         $cc $ccflags
6628 doesn't seem to understand them.  Sorry about that.
6629
6630 If GNU cc is available for your system, perhaps you could try that instead.  
6631
6632 Eventually, we hope to support building Perl with pre-ANSI compilers.
6633 If you would like to help in that effort, please contact <perlbug@perl.org>.
6634
6635 Aborting Configure now.
6636 EOM
6637         exit 2
6638         ;;
6639 esac
6640
6641 : determine where public executables go
6642 echo " "
6643 set dflt bin bin
6644 eval $prefixit
6645 fn=d~
6646 rp='Pathname where the public executables will reside?'
6647 . ./getfile
6648 if $test "X$ansexp" != "X$binexp"; then
6649         installbin=''
6650 fi
6651 bin="$ans"
6652 binexp="$ansexp"
6653 : Change installation prefix, if necessary.
6654 : XXX Bug? -- ignores Configure -Dinstallprefix setting.
6655 if $test X"$prefix" != X"$installprefix"; then
6656         installbin=`echo $binexp | sed "s#^$prefix#$installprefix#"`
6657 else
6658         installbin="$binexp"
6659 fi
6660
6661 echo " "
6662 case "$extras" in
6663 '') dflt='n';;
6664 *) dflt='y';;
6665 esac
6666 cat <<EOM
6667 Perl can be built with extra modules or bundles of modules which
6668 will be fetched from the CPAN and installed alongside Perl.
6669
6670 Notice that you will need access to the CPAN; either via the Internet,
6671 or a local copy, for example a CD-ROM or a local CPAN mirror.  (You will
6672 be asked later to configure the CPAN.pm module which will in turn do
6673 the installation of the rest of the extra modules or bundles.)
6674
6675 Notice also that if the modules require any external software such as
6676 libraries and headers (the libz library and the zlib.h header for the
6677 Compress::Zlib module, for example) you MUST have any such software
6678 already installed, this configuration process will NOT install such
6679 things for you.
6680
6681 If this doesn't make any sense to you, just accept the default '$dflt'.
6682 EOM
6683 rp='Install any extra modules (y or n)?'
6684 . ./myread
6685 case "$ans" in
6686 y|Y)
6687         cat <<EOM
6688
6689 Please list any extra modules or bundles to be installed from CPAN,
6690 with spaces between the names.  The names can be in any format the
6691 'install' command of CPAN.pm will understand.  (Answer 'none',
6692 without the quotes, to install no extra modules or bundles.)
6693 EOM
6694         rp='Extras?'
6695         dflt="$extras"
6696         . ./myread
6697         extras="$ans"
6698 esac
6699 case "$extras" in
6700 ''|'none')
6701         val=''
6702         $rm -f ../extras.lst
6703         ;;
6704 *)      echo "(Saving the list of extras for later...)"
6705         echo "$extras" > ../extras.lst
6706         val="'$extras'"
6707         ;;
6708 esac
6709 set extras
6710 eval $setvar
6711 echo " "
6712
6713 : determine where html pages for programs go
6714 set html1dir html1dir none
6715 eval $prefixit
6716 $cat <<EOM
6717
6718 If you wish to install html files for programs in $spackage, indicate 
6719 the appropriate directory here.  To skip installing html files,
6720 answer "none".
6721 EOM
6722 case "$html1dir" in
6723 ''|none|$undef|' ') dflt=none ;;
6724 *) dflt=$html1dir ;;
6725 esac
6726 fn=dn+~
6727 rp="Directory for the main $spackage html pages?"
6728 . ./getfile
6729 html1dir="$ans"
6730 html1direxp="$ansexp"
6731 : Use ' ' for none so value is preserved next time through Configure
6732 $test X"$html1dir" = "X" && html1dir=' '
6733 : Change installation prefix, if necessary.
6734 if $test X"$prefix" != X"$installprefix"; then
6735         installhtml1dir=`echo $html1direxp | sed "s#^$prefix#$installprefix#"`
6736 else
6737         installhtml1dir="$html1direxp"
6738 fi
6739
6740 : determine where html pages for libraries and modules go
6741 set html3dir html3dir none
6742 eval $prefixit
6743 $cat <<EOM
6744
6745 If you wish to install html files for modules associated with $spackage,
6746 indicate the appropriate directory here.  To skip installing html files,
6747 answer "none".
6748 EOM
6749 : There is no obvious default.  If they have specified html1dir, then
6750 : try to key off that, possibly changing .../html1 into .../html3.
6751 case "$html3dir" in
6752 '') html3dir=`echo "$html1dir" | $sed 's/1$/3$/'` ;;
6753 *) dflt=$html3dir ;;
6754 esac
6755 fn=dn+~
6756 rp="Directory for the $spackage module html pages?"
6757 . ./getfile
6758 html3dir="$ans"
6759 html3direxp="$ansexp"
6760 : Use ' ' for none so value is preserved next time through Configure
6761 $test X"$html3dir" = "X" && html3dir=' '
6762 : Change installation prefix, if necessary.
6763 if $test X"$prefix" != X"$installprefix"; then
6764         installhtml3dir=`echo $html3direxp | sed "s#^$prefix#$installprefix#"`
6765 else
6766         installhtml3dir="$html3direxp"
6767 fi
6768
6769 : Find perl5.005 or later.
6770 echo "Looking for a previously installed perl5.005 or later... "
6771 case "$perl5" in
6772 '')     for tdir in `echo "$binexp$path_sep$PATH" | $sed "s/$path_sep/ /g"`; do
6773                 : Check if this perl is recent and can load a simple module
6774                 if $test -x $tdir/perl$exe_ext && $tdir/perl -Mless -e 'use 5.005;' >/dev/null 2>&1; then
6775                         perl5=$tdir/perl
6776                         break;
6777                 elif $test -x $tdir/perl5$exe_ext && $tdir/perl5 -Mless -e 'use 5.005;' >/dev/null 2>&1; then
6778                         perl5=$tdir/perl5
6779                         break;
6780                 fi
6781         done
6782         ;;
6783 *)      perl5="$perl5"
6784         ;;
6785 esac
6786 case "$perl5" in
6787 '')     echo "None found.  That's ok.";;
6788 *)      echo "Using $perl5." ;;
6789 esac
6790
6791 : Determine list of previous versions to include in @INC
6792 $cat > getverlist <<EOPL
6793 #!$perl5 -w
6794 use File::Basename;
6795 \$api_versionstring = "$api_versionstring";
6796 \$version = "$version";
6797 \$stem = "$sitelib_stem";
6798 \$archname = "$archname";
6799 EOPL
6800         $cat >> getverlist <<'EOPL'
6801 # Can't have leading @ because metaconfig interprets it as a command!
6802 ;@inc_version_list=();
6803 # XXX Redo to do opendir/readdir? 
6804 if (-d $stem) {
6805     chdir($stem);
6806     ;@candidates = glob("5.*");
6807 }
6808 else {
6809     ;@candidates = ();
6810 }
6811
6812 # XXX ToDo:  These comparisons must be reworked when two-digit
6813 # subversions come along, so that 5.7.10 compares as greater than
6814 # 5.7.3!  By that time, hope that 5.6.x is sufficiently
6815 # widespread that we can use the built-in version vectors rather
6816 # than reinventing them here.  For 5.6.0, however, we must
6817 # assume this script will likely be run by 5.005_0x.  --AD 1/2000.
6818 foreach $d (@candidates) {
6819     if ($d lt $version) {
6820         if ($d ge $api_versionstring) {
6821             unshift(@inc_version_list, grep { -d } "$d/$archname", $d);
6822         }
6823         elsif ($d ge "5.005") {
6824             unshift(@inc_version_list, grep { -d } $d);
6825         }
6826     }
6827     else {
6828         # Skip newer version.  I.e. don't look in
6829         # 5.7.0 if we're installing 5.6.1.
6830     }
6831 }
6832
6833 if (@inc_version_list) {
6834     print join(' ', @inc_version_list);
6835 }
6836 else {
6837     # Blank space to preserve value for next Configure run.
6838     print " ";
6839 }
6840 EOPL
6841 chmod +x getverlist
6842 case "$inc_version_list" in
6843 '')     if test -x "$perl5$exe_ext"; then
6844                 dflt=`$perl5 getverlist`
6845         else
6846                 dflt='none'
6847         fi
6848         ;;
6849 $undef) dflt='none' ;;
6850 *)  eval dflt=\"$inc_version_list\" ;;
6851 esac
6852 case "$dflt" in
6853 ''|' ') dflt=none ;;
6854 esac
6855 case "$dflt" in
6856 5.005) dflt=none ;;
6857 esac
6858 $cat <<EOM
6859
6860 In order to ease the process of upgrading, this version of perl 
6861 can be configured to use modules built and installed with earlier 
6862 versions of perl that were installed under $prefix.  Specify here
6863 the list of earlier versions that this version of perl should check.
6864 If Configure detected no earlier versions of perl installed under
6865 $prefix, then the list will be empty.  Answer 'none' to tell perl
6866 to not search earlier versions.
6867
6868 The default should almost always be sensible, so if you're not sure,
6869 just accept the default.
6870 EOM
6871
6872 rp='List of earlier versions to include in @INC?'
6873 . ./myread
6874 case "$ans" in
6875 [Nn]one|''|' ') inc_version_list=' ' ;;
6876 *) inc_version_list="$ans" ;;
6877 esac
6878 case "$inc_version_list" in
6879 ''|' ') 
6880         inc_version_list_init='0';;
6881 *)      inc_version_list_init=`echo $inc_version_list |
6882                 $sed -e 's/^/"/' -e 's/ /","/g' -e 's/$/",0/'`
6883         ;;
6884 esac
6885 $rm -f getverlist
6886
6887 : determine whether to install perl also as /usr/bin/perl
6888
6889 echo " "
6890 if $test -d /usr/bin -a "X$installbin" != X/usr/bin; then
6891         $cat <<EOM
6892 Many scripts expect perl to be installed as /usr/bin/perl.
6893
6894 If you want to, I can install the perl you are about to compile
6895 as /usr/bin/perl (in addition to $bin/perl).
6896 EOM
6897         if test -f /usr/bin/perl; then
6898             $cat <<EOM
6899
6900 However, please note that because you already have a /usr/bin/perl,
6901 overwriting that with a new Perl would very probably cause problems.
6902 Therefore I'm assuming you don't want to do that (unless you insist).
6903
6904 EOM
6905             case "$installusrbinperl" in
6906             "$define"|[yY]*)    dflt='y';;
6907             *)                  dflt='n';;
6908             esac
6909         else
6910             $cat <<EOM
6911
6912 Since you don't have a /usr/bin/perl I'm assuming creating one is okay.
6913
6914 EOM
6915             case "$installusrbinperl" in
6916             "$undef"|[nN]*)     dflt='n';;
6917             *)                  dflt='y';;
6918             esac
6919         fi
6920         rp="Do you want to install perl as /usr/bin/perl?"
6921         . ./myread
6922         case "$ans" in
6923         [yY]*)  val="$define";;
6924         *)      val="$undef" ;;
6925         esac
6926 else
6927         val="$undef"
6928 fi
6929 set installusrbinperl
6930 eval $setvar
6931
6932 echo " "
6933 echo "Checking for GNU C Library..." >&4
6934 cat >try.c <<'EOCP'
6935 /* Find out version of GNU C library.  __GLIBC__ and __GLIBC_MINOR__
6936    alone are insufficient to distinguish different versions, such as
6937    2.0.6 and 2.0.7.  The function gnu_get_libc_version() appeared in
6938    libc version 2.1.0.      A. Dougherty,  June 3, 2002.
6939 */
6940 #include <stdio.h>
6941 int main(void)
6942 {
6943 #ifdef __GLIBC__
6944 #   ifdef __GLIBC_MINOR__
6945 #       if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
6946 #           include <gnu/libc-version.h>
6947             printf("%s\n",  gnu_get_libc_version());
6948 #       else
6949             printf("%d.%d\n",  __GLIBC__, __GLIBC_MINOR__);
6950 #       endif
6951 #   else
6952         printf("%d\n",  __GLIBC__);
6953 #   endif
6954     return 0;
6955 #else
6956     return 1;
6957 #endif
6958 }
6959 EOCP
6960 set try
6961 if eval $compile_ok && $run ./try > glibc.ver; then
6962         val="$define"
6963         gnulibc_version=`$cat glibc.ver`
6964         echo "You are using the GNU C Library version $gnulibc_version"
6965 else
6966         val="$undef"
6967         gnulibc_version=''
6968         echo "You are not using the GNU C Library"
6969 fi
6970 $rm -f try try.* glibc.ver
6971 set d_gnulibc
6972 eval $setvar
6973
6974 : see if nm is to be used to determine whether a symbol is defined or not
6975 case "$usenm" in
6976 '')
6977         dflt=''
6978         case "$d_gnulibc" in
6979         "$define")
6980                 echo " "
6981                 echo "nm probably won't work on the GNU C Library." >&4
6982                 dflt=n
6983                 ;;
6984         esac
6985         case "$dflt" in
6986         '') 
6987                 if $test "$osname" = aix -a "X$PASE" != "Xdefine" -a ! -f /lib/syscalls.exp; then
6988                         echo " "
6989                         echo "Whoops!  This is an AIX system without /lib/syscalls.exp!" >&4
6990                         echo "'nm' won't be sufficient on this sytem." >&4
6991                         dflt=n
6992                 fi
6993                 ;;
6994         esac
6995         case "$dflt" in
6996         '') dflt=`$egrep 'inlibc|csym' $rsrc/Configure | wc -l 2>/dev/null`
6997                 if $test $dflt -gt 20; then
6998                         dflt=y
6999                 else
7000                         dflt=n
7001                 fi
7002                 ;;
7003         esac
7004         ;;
7005 *)
7006         case "$usenm" in
7007         true|$define) dflt=y;;
7008         *) dflt=n;;
7009         esac
7010         ;;
7011 esac
7012 $cat <<EOM
7013
7014 I can use $nm to extract the symbols from your C libraries. This
7015 is a time consuming task which may generate huge output on the disk (up
7016 to 3 megabytes) but that should make the symbols extraction faster. The
7017 alternative is to skip the 'nm' extraction part and to compile a small
7018 test program instead to determine whether each symbol is present. If
7019 you have a fast C compiler and/or if your 'nm' output cannot be parsed,
7020 this may be the best solution.
7021
7022 You probably shouldn't let me use 'nm' if you are using the GNU C Library.
7023
7024 EOM
7025 rp="Shall I use $nm to extract C symbols from the libraries?"
7026 . ./myread
7027 case "$ans" in
7028 [Nn]*) usenm=false;;
7029 *) usenm=true;;
7030 esac
7031
7032 runnm=$usenm
7033 case "$reuseval" in
7034 true) runnm=false;;
7035 esac
7036
7037 : nm options which may be necessary
7038 case "$nm_opt" in
7039 '') if $test -f /mach_boot; then
7040                 nm_opt=''       # Mach
7041         elif $test -d /usr/ccs/lib; then
7042                 nm_opt='-p'     # Solaris (and SunOS?)
7043         elif $test -f /dgux; then
7044                 nm_opt='-p'     # DG-UX
7045         elif $test -f /lib64/rld; then
7046                 nm_opt='-p'     # 64-bit Irix
7047         else
7048                 nm_opt=''
7049         fi;;
7050 esac
7051
7052 : nm options which may be necessary for shared libraries but illegal
7053 : for archive libraries.  Thank you, Linux.
7054 case "$nm_so_opt" in
7055 '')     case "$myuname" in
7056         *linux*)
7057                 if $nm --help | $grep 'dynamic' > /dev/null 2>&1; then
7058                         nm_so_opt='--dynamic'
7059                 fi
7060                 ;;
7061         esac
7062         ;;
7063 esac
7064
7065 case "$runnm" in
7066 true)
7067 : get list of predefined functions in a handy place
7068 echo " "
7069 case "$libc" in
7070 '') libc=unknown
7071         case "$libs" in
7072         *-lc_s*) libc=`./loc libc_s$_a $libc $libpth`
7073         esac
7074         ;;
7075 esac
7076 case "$libs" in
7077 '') ;;
7078 *)  for thislib in $libs; do
7079         case "$thislib" in
7080         -lc|-lc_s)
7081                 : Handle C library specially below.
7082                 ;;
7083         -l*)
7084                 thislib=`echo $thislib | $sed -e 's/^-l//'`
7085                 if try=`./loc lib$thislib.$so.'*' X $libpth`; $test -f "$try"; then
7086                         :
7087                 elif try=`./loc lib$thislib.$so X $libpth`; $test -f "$try"; then
7088                         :
7089                 elif try=`./loc lib$thislib$_a X $libpth`; $test -f "$try"; then
7090                         :
7091                 elif try=`./loc $thislib$_a X $libpth`; $test -f "$try"; then
7092                         :
7093                 elif try=`./loc lib$thislib X $libpth`; $test -f "$try"; then
7094                         :
7095                 elif try=`./loc $thislib X $libpth`; $test -f "$try"; then
7096                         :
7097                 elif try=`./loc Slib$thislib$_a X $xlibpth`; $test -f "$try"; then
7098                         :
7099                 else
7100                         try=''
7101                 fi
7102                 libnames="$libnames $try"
7103                 ;;
7104         *) libnames="$libnames $thislib" ;;
7105         esac
7106         done
7107         ;;
7108 esac
7109 xxx=normal
7110 case "$libc" in
7111 unknown)
7112         set /lib/libc.$so
7113         for xxx in $libpth; do
7114                 $test -r $1 || set $xxx/libc.$so
7115                 : The messy sed command sorts on library version numbers.
7116                 $test -r $1 || \
7117                         set `echo blurfl; echo $xxx/libc.$so.[0-9]* | \
7118                         tr ' ' $trnl | egrep -v '\.[A-Za-z]*$' | $sed -e '
7119                                 h
7120                                 s/[0-9][0-9]*/0000&/g
7121                                 s/0*\([0-9][0-9][0-9][0-9][0-9]\)/\1/g
7122                                 G
7123                                 s/\n/ /' | \
7124                          $sort | $sed -e 's/^.* //'`
7125                 eval set \$$#
7126         done
7127         $test -r $1 || set /usr/ccs/lib/libc.$so
7128         $test -r $1 || set /lib/libsys_s$_a
7129         ;;
7130 *)
7131         set blurfl
7132         ;;
7133 esac
7134 if $test -r "$1"; then
7135         echo "Your (shared) C library seems to be in $1."
7136         libc="$1"
7137 elif $test -r /lib/libc && $test -r /lib/clib; then
7138         echo "Your C library seems to be in both /lib/clib and /lib/libc."
7139         xxx=apollo
7140         libc='/lib/clib /lib/libc'
7141         if $test -r /lib/syslib; then
7142                 echo "(Your math library is in /lib/syslib.)"
7143                 libc="$libc /lib/syslib"
7144         fi
7145 elif $test -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
7146         echo "Your C library seems to be in $libc, as you said before."
7147 elif $test -r $incpath/usr/lib/libc$_a; then
7148         libc=$incpath/usr/lib/libc$_a;
7149         echo "Your C library seems to be in $libc.  That's fine."
7150 elif $test -r /lib/libc$_a; then
7151         libc=/lib/libc$_a;
7152         echo "Your C library seems to be in $libc.  You're normal."
7153 else
7154         if tans=`./loc libc$_a blurfl/dyick $libpth`; $test -r "$tans"; then
7155                 :
7156         elif tans=`./loc libc blurfl/dyick $libpth`; $test -r "$tans"; then
7157                 libnames="$libnames "`./loc clib blurfl/dyick $libpth`
7158         elif tans=`./loc clib blurfl/dyick $libpth`; $test -r "$tans"; then
7159                 :
7160         elif tans=`./loc Slibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
7161                 :
7162         elif tans=`./loc Mlibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
7163                 :
7164         else
7165                 tans=`./loc Llibc$_a blurfl/dyick $xlibpth`
7166         fi
7167         if $test -r "$tans"; then
7168                 echo "Your C library seems to be in $tans, of all places."
7169                 libc=$tans
7170         else
7171                 libc='blurfl'
7172         fi
7173 fi
7174 if $test $xxx = apollo -o -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
7175         dflt="$libc"
7176         cat <<EOM
7177
7178 If the guess above is wrong (which it might be if you're using a strange
7179 compiler, or your machine supports multiple models), you can override it here.
7180
7181 EOM
7182 else
7183         dflt=''
7184         echo $libpth | $tr ' ' $trnl | $sort | $uniq > libpath
7185         cat >&4 <<EOM
7186 I can't seem to find your C library.  I've looked in the following places:
7187
7188 EOM
7189         $sed 's/^/      /' libpath
7190         cat <<EOM
7191
7192 None of these seems to contain your C library. I need to get its name...
7193
7194 EOM
7195 fi
7196 fn=f
7197 rp='Where is your C library?'
7198 . ./getfile
7199 libc="$ans"
7200
7201 echo " "
7202 echo $libc $libnames | $tr ' ' $trnl | $sort | $uniq > libnames
7203 set X `cat libnames`
7204 shift
7205 xxx=files
7206 case $# in 1) xxx=file; esac
7207 echo "Extracting names from the following $xxx for later perusal:" >&4
7208 echo " "
7209 $sed 's/^/      /' libnames >&4
7210 echo " "
7211 $echo $n "This may take a while...$c" >&4
7212
7213 for file in $*; do
7214         case $file in
7215         *$so*) $nm $nm_so_opt $nm_opt $file 2>/dev/null;;
7216         *) $nm $nm_opt $file 2>/dev/null;;
7217         esac
7218 done >libc.tmp
7219
7220 $echo $n ".$c"
7221 $grep fprintf libc.tmp > libc.ptf
7222 xscan='eval "<libc.ptf $com >libc.list"; $echo $n ".$c" >&4'
7223 xrun='eval "<libc.tmp $com >libc.list"; echo "done." >&4'
7224 xxx='[ADTSIW]'
7225 if com="$sed -n -e 's/__IO//' -e 's/^.* $xxx  *//p'";\
7226         eval $xscan;\
7227         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7228                 eval $xrun
7229 elif com="$sed -n -e 's/^__*//' -e 's/^\([a-zA-Z_0-9$]*\).*xtern.*/\1/p'";\
7230         eval $xscan;\
7231         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7232                 eval $xrun
7233 elif com="$sed -n -e '/|UNDEF/d' -e '/FUNC..GL/s/^.*|__*//p'";\
7234         eval $xscan;\
7235         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7236                 eval $xrun
7237 elif com="$sed -n -e 's/^.* D __*//p' -e 's/^.* D //p'";\
7238         eval $xscan;\
7239         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7240                 eval $xrun
7241 elif com="$sed -n -e 's/^_//' -e 's/^\([a-zA-Z_0-9]*\).*xtern.*text.*/\1/p'";\
7242         eval $xscan;\
7243         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7244                 eval $xrun
7245 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p'";\
7246         eval $xscan;\
7247         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7248                 eval $xrun
7249 elif com="$grep '|' | $sed -n -e '/|COMMON/d' -e '/|DATA/d' \
7250                                 -e '/ file/d' -e 's/^\([^       ]*\).*/\1/p'";\
7251         eval $xscan;\
7252         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7253                 eval $xrun
7254 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p' -e 's/^.*|FUNC |WEAK .*|//p'";\
7255         eval $xscan;\
7256         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7257                 eval $xrun
7258 elif com="$sed -n -e 's/^__//' -e '/|Undef/d' -e '/|Proc/s/ .*//p'";\
7259         eval $xscan;\
7260         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7261                 eval $xrun
7262 elif com="$sed -n -e 's/^.*|Proc .*|Text *| *//p'";\
7263         eval $xscan;\
7264         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7265                 eval $xrun
7266 elif com="$sed -n -e '/Def. Text/s/.* \([^ ]*\)\$/\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/^[-0-9a-f ]*_\(.*\)=.*/\1/p'";\
7271         eval $xscan;\
7272         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7273                 eval $xrun
7274 elif com="$sed -n -e 's/.*\.text n\ \ \ \.//p'";\
7275         eval $xscan;\
7276         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7277                 eval $xrun
7278 elif com="sed -n -e 's/^__.*//' -e 's/[       ]*D[    ]*[0-9]*.*//p'";\
7279         eval $xscan;\
7280         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7281                 eval $xrun
7282 else
7283         $nm -p $* 2>/dev/null >libc.tmp
7284         $grep fprintf libc.tmp > libc.ptf
7285         if com="$sed -n -e 's/^.* [ADTSIW]  *_[_.]*//p' -e 's/^.* [ADTSIW] //p'";\
7286                 eval $xscan; $contains '^fprintf$' libc.list >/dev/null 2>&1
7287         then
7288                 nm_opt='-p'
7289                 eval $xrun
7290         else
7291                 echo " "
7292                 echo "$nm didn't seem to work right. Trying $ar instead..." >&4
7293                 com=''
7294                 if $ar t $libc > libc.tmp && $contains '^fprintf$' libc.tmp >/dev/null 2>&1; then
7295                         for thisname in $libnames $libc; do
7296                                 $ar t $thisname >>libc.tmp
7297                         done
7298                         $sed -e "s/\\$_o\$//" < libc.tmp > libc.list
7299                         echo "Ok." >&4
7300                 elif test "X$osname" = "Xos2" && $ar tv $libc > libc.tmp; then
7301                         # Repeat libc to extract forwarders to DLL entries too
7302                         for thisname in $libnames $libc; do
7303                                 $ar tv $thisname >>libc.tmp
7304                                 # Revision 50 of EMX has bug in $ar.
7305                                 # it will not extract forwarders to DLL entries
7306                                 # Use emximp which will extract exactly them.
7307                                 emximp -o tmp.imp $thisname \
7308                                     2>/dev/null && \
7309                                     $sed -e 's/^\([_a-zA-Z0-9]*\) .*$/\1/p' \
7310                                     < tmp.imp >>libc.tmp
7311                                 $rm tmp.imp
7312                         done
7313                         $sed -e "s/\\$_o\$//" -e 's/^ \+//' < libc.tmp > libc.list
7314                         echo "Ok." >&4
7315                 else
7316                         echo "$ar didn't seem to work right." >&4
7317                         echo "Maybe this is a Cray...trying bld instead..." >&4
7318                         if bld t $libc | $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" > libc.list
7319                         then
7320                                 for thisname in $libnames; do
7321                                         bld t $libnames | \
7322                                         $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" >>libc.list
7323                                         $ar t $thisname >>libc.tmp
7324                                 done
7325                                 echo "Ok." >&4
7326                         else
7327                                 echo "That didn't work either.  Giving up." >&4
7328                                 exit 1
7329                         fi
7330                 fi
7331         fi
7332 fi
7333 nm_extract="$com"
7334 case "$PASE" in
7335 define)
7336     echo " "
7337     echo "Since you are compiling for PASE, extracting more symbols from libc.a ...">&4
7338     dump -Tv /lib/libc.a | awk '$7 == "/unix" {print $5 " " $8}' | grep "^SV" | awk '{print $2}' >> libc.list
7339     ;;
7340 *)  if $test -f /lib/syscalls.exp; then
7341         echo " "
7342         echo "Also extracting names from /lib/syscalls.exp for good ole AIX..." >&4
7343         $sed -n 's/^\([^        ]*\)[   ]*syscall[0-9]*[        ]*$/\1/p' /lib/syscalls.exp >>libc.list
7344     fi
7345     ;;
7346 esac
7347 ;;
7348 esac
7349 $rm -f libnames libpath
7350
7351 : see if dld is available
7352 set dld.h i_dld
7353 eval $inhdr
7354
7355 : is a C symbol defined?
7356 csym='tlook=$1;
7357 case "$3" in
7358 -v) tf=libc.tmp; tc=""; tdc="";;
7359 -a) tf=libc.tmp; tc="[0]"; tdc="[]";;
7360 *) tlook="^$1\$"; tf=libc.list; tc="()"; tdc="()";;
7361 esac;
7362 tx=yes;
7363 case "$reuseval-$4" in
7364 true-) ;;
7365 true-*) tx=no; eval "tval=\$$4"; case "$tval" in "") tx=yes;; esac;;
7366 esac;
7367 case "$tx" in
7368 yes)
7369         tval=false;
7370         if $test "$runnm" = "true" && $contains $tlook $tf >/dev/null 2>&1; then
7371                 tval=true;
7372         else
7373                 echo "int main() { extern short $1$tdc; printf(\"%hd\", $1$tc); }" > t.c;
7374                 if $cc -o t $optimize $ccflags $ldflags t.c $libs >/dev/null 2>&1; then
7375                         tval=true;
7376                 fi;
7377                 $rm -f t t.c;
7378         fi;
7379         ;;
7380 *)
7381         case "$tval" in
7382         $define) tval=true;;
7383         *) tval=false;;
7384         esac;
7385         ;;
7386 esac;
7387 eval "$2=$tval"'
7388
7389 : define an is-in-libc? function
7390 inlibc='echo " "; td=$define; tu=$undef;
7391 sym=$1; var=$2; eval "was=\$$2";
7392 tx=yes;
7393 case "$reuseval$was" in
7394 true) ;;
7395 true*) tx=no;;
7396 esac;
7397 case "$tx" in
7398 yes)
7399         set $sym tres -f;
7400         eval $csym;
7401         case "$tres" in
7402         true)
7403                 echo "$sym() found." >&4;
7404                 case "$was" in $undef) . ./whoa; esac; eval "$var=\$td";;
7405         *)
7406                 echo "$sym() NOT found." >&4;
7407                 case "$was" in $define) . ./whoa; esac; eval "$var=\$tu";;
7408         esac;;
7409 *)
7410         case "$was" in
7411         $define) echo "$sym() found." >&4;;
7412         *) echo "$sym() NOT found." >&4;;
7413         esac;;
7414 esac'
7415
7416 : see if dlopen exists
7417 xxx_runnm="$runnm"
7418 runnm=false
7419 set dlopen d_dlopen
7420 eval $inlibc
7421 runnm="$xxx_runnm"
7422
7423 : determine which dynamic loading, if any, to compile in
7424 echo " "
7425 dldir="ext/DynaLoader"
7426 case "$usedl" in
7427 $define|y|true)
7428         dflt='y'
7429         usedl="$define"
7430         ;;
7431 $undef|n|false)
7432         dflt='n'
7433         usedl="$undef"
7434         ;;
7435 *) 
7436         dflt='n'
7437         case "$d_dlopen" in
7438             $define) dflt='y' ;;
7439         esac
7440         case "$i_dld" in
7441             $define) dflt='y' ;;
7442         esac
7443         : Does a dl_xxx.xs file exist for this operating system
7444         $test -f $rsrc/$dldir/dl_${osname}.xs && dflt='y'
7445         ;;
7446 esac
7447 rp="Do you wish to use dynamic loading?"
7448 . ./myread
7449 usedl="$ans"
7450 case "$ans" in
7451 y*) usedl="$define"
7452         case "$dlsrc" in
7453         '')
7454                 if $test -f $rsrc/$dldir/dl_${osname}.xs ; then
7455                         dflt="$dldir/dl_${osname}.xs"
7456                 elif $test "$d_dlopen" = "$define" ; then
7457                         dflt="$dldir/dl_dlopen.xs"
7458                 elif $test "$i_dld" = "$define" ; then
7459                         dflt="$dldir/dl_dld.xs"
7460                 else
7461                         dflt=''
7462                 fi
7463                 ;;
7464         *)      dflt="$dldir/$dlsrc"
7465                 ;;
7466         esac
7467     echo "The following dynamic loading files are available:"
7468         : Can not go over to $dldir because getfile has path hard-coded in.
7469         tdir=`pwd`; cd "$rsrc"; $ls -C $dldir/dl*.xs; cd "$tdir"
7470         rp="Source file to use for dynamic loading"
7471         fn="fne"
7472         gfpth="$src"
7473         . ./getfile
7474         usedl="$define"
7475         : emulate basename
7476         dlsrc=`echo $ans | $sed -e 's%.*/\([^/]*\)$%\1%'`
7477
7478         $cat << EOM
7479
7480 Some systems may require passing special flags to $cc -c to
7481 compile modules that will be used to create a shared library.
7482 To use no flags, say "none".
7483
7484 EOM
7485     case "$cccdlflags" in
7486     '') case "$gccversion" in
7487                 '') case "$osname" in
7488                         hpux)   dflt='+z' ;;
7489                         next)   dflt='none' ;;
7490                         irix*)  dflt='-KPIC' ;;
7491                         svr4*|esix*|solaris|nonstopux) dflt='-KPIC' ;;
7492                         sunos)  dflt='-pic' ;;
7493                         *)      dflt='none' ;;
7494                     esac
7495                         ;;
7496                 *)  case "$osname" in
7497                         darwin) dflt='none' ;;
7498                         svr4*|esix*|solaris|nonstopux) dflt='-fPIC' ;;
7499                         *)      dflt='-fpic' ;;
7500                     esac ;;
7501             esac ;;
7502         ' ') dflt='none' ;;
7503     *)  dflt="$cccdlflags" ;;
7504     esac
7505     rp="Any special flags to pass to $cc -c to compile shared library modules?"
7506     . ./myread
7507     case "$ans" in
7508     none) cccdlflags=' ' ;;
7509     *) cccdlflags="$ans" ;;
7510     esac
7511
7512     cat << EOM
7513
7514 Some systems use ld to create libraries that can be dynamically loaded,
7515 while other systems (such as those using ELF) use $cc.
7516
7517 EOM
7518         case "$ld" in
7519         '')     $cat >try.c <<EOM
7520 /* Test for whether ELF binaries are produced */
7521 #include <fcntl.h>
7522 #$i_stdlib I_STDLIB
7523 #ifdef I_STDLIB
7524 #include <stdlib.h>
7525 #endif
7526 int main() {
7527         char b[4];
7528         int i = open("a.out",O_RDONLY);
7529         if(i == -1) 
7530                 exit(1); /* fail */
7531         if(read(i,b,4)==4 && b[0]==127 && b[1]=='E' && b[2]=='L' && b[3]=='F')
7532                 exit(0); /* succeed (yes, it's ELF) */
7533         else
7534                 exit(1); /* fail */
7535 }
7536 EOM
7537                 if $cc $ccflags $ldflags try.c >/dev/null 2>&1 && $run ./a.out; then
7538                         cat <<EOM
7539 You appear to have ELF support.  I'll use $cc to build dynamic libraries.
7540 EOM
7541                         dflt="$cc"
7542                 else
7543                         echo "I'll use ld to build dynamic libraries."
7544                         dflt='ld'
7545                 fi
7546                 rm -f try.c a.out
7547                 ;;
7548         *)      dflt="$ld"
7549                 ;;
7550         esac
7551
7552     rp="What command should be used to create dynamic libraries?"
7553     . ./myread
7554         ld="$ans"
7555
7556     cat << EOM
7557
7558 Some systems may require passing special flags to $ld to create a
7559 library that can be dynamically loaded.  If your ld flags include
7560 -L/other/path options to locate libraries outside your loader's normal
7561 search path, you may need to specify those -L options here as well.  To
7562 use no flags, say "none".
7563
7564 EOM
7565     case "$lddlflags" in
7566     '') case "$osname" in
7567                         beos) dflt='-nostart' ;;
7568                         hpux) dflt='-b';
7569                               case "$gccversion" in
7570                               '') dflt="$dflt +vnocompatwarnings" ;;
7571                               esac
7572                               ;;        
7573                         linux|irix*)    dflt='-shared' ;;
7574                         next)  dflt='none' ;;
7575                         solaris) dflt='-G' ;;
7576                         sunos) dflt='-assert nodefinitions' ;;
7577                         svr4*|esix*|nonstopux) dflt="-G $ldflags" ;;
7578                 *)     dflt='none' ;;
7579                         esac
7580                         ;;
7581     *) dflt="$lddlflags" ;;
7582     esac
7583
7584         : Try to guess additional flags to pick up local libraries.
7585         : Be careful not to append to a plain 'none'
7586         case "$dflt" in
7587         none) dflt='' ;;
7588         esac
7589         for thisflag in $ldflags; do
7590                 case "$thisflag" in
7591                 -L*|-R*|-Wl,-R*)
7592                         case " $dflt " in
7593                         *" $thisflag "*) ;;
7594                         *) dflt="$dflt $thisflag" ;;
7595                         esac
7596                         ;;
7597                 esac
7598         done
7599
7600         case "$dflt" in
7601         ''|' ') dflt='none' ;;
7602         esac
7603
7604     rp="Any special flags to pass to $ld to create a dynamically loaded library?"
7605     . ./myread
7606     case "$ans" in
7607     none) lddlflags=' ' ;;
7608     *) lddlflags="$ans" ;;
7609     esac
7610
7611         cat <<EOM
7612
7613 Some systems may require passing special flags to $cc to indicate that
7614 the resulting executable will use dynamic linking.  To use no flags,
7615 say "none".
7616
7617 EOM
7618     case "$ccdlflags" in
7619     '') case "$osname" in
7620                 hpux)   dflt='-Wl,-E' ;;
7621                 linux)  dflt='-rdynamic' ;;
7622                 next)   dflt='none' ;;
7623                 sunos)  dflt='none' ;;
7624                 *)      dflt='none' ;;
7625             esac ;;
7626     ' ')  dflt='none' ;;
7627     *)  dflt="$ccdlflags" ;;
7628     esac
7629     rp="Any special flags to pass to $cc to use dynamic linking?"
7630     . ./myread
7631     case "$ans" in
7632     none) ccdlflags=' ' ;;
7633     *) ccdlflags="$ans" ;;
7634     esac
7635     ;;
7636 *)  usedl="$undef"
7637         ld='ld'
7638     dlsrc='dl_none.xs'
7639     lddlflags=''
7640     ccdlflags=''
7641     ;;
7642 esac
7643
7644 also=''
7645 case "$usedl" in
7646 $undef)
7647         # No dynamic loading being used, so don't bother even to prompt.
7648         useshrplib='false'
7649         ;;
7650 *)      case "$useshrplib" in
7651         '')     case "$osname" in
7652                 svr4*|nonstopux|dgux|dynixptx|esix|powerux|beos|cygwin*)
7653                         dflt=y
7654                         also='Building a shared libperl is required for dynamic loading to work on your system.'
7655                         ;;
7656                 next*)
7657                         case "$osvers" in
7658                         4*)     dflt=y
7659                                 also='Building a shared libperl is needed for MAB support.'
7660                                 ;;
7661                         *)      dflt=n
7662                                 ;;
7663                         esac
7664                         ;;
7665                 *)      dflt=n
7666                         ;;
7667                 esac
7668                 ;;
7669         $define|true|[Yy]*)
7670                 dflt=y
7671                 ;;
7672         *)      dflt=n
7673                 ;;
7674         esac
7675         $cat << EOM
7676
7677 The perl executable is normally obtained by linking perlmain.c with
7678 libperl${_a}, any static extensions (usually just DynaLoader), and
7679 any other libraries needed on this system (such as -lm, etc.).  Since
7680 your system supports dynamic loading, it is probably possible to build
7681 a shared libperl.$so.  If you will have more than one executable linked
7682 to libperl.$so, this will significantly reduce the size of each
7683 executable, but it may have a noticeable affect on performance.  The
7684 default is probably sensible for your system.
7685 $also
7686
7687 EOM
7688         rp="Build a shared libperl.$so (y/n)"
7689         . ./myread
7690         case "$ans" in
7691         true|$define|[Yy]*)
7692                 useshrplib='true'  ;;
7693         *)      useshrplib='false' ;;
7694         esac
7695         ;;
7696 esac
7697
7698 case "$useshrplib" in
7699 true)
7700         case "$libperl" in
7701         '')
7702                 # Figure out a good name for libperl.so.  Since it gets stored in
7703                 # a version-specific architecture-dependent library, the version
7704                 # number isn't really that important, except for making cc/ld happy.
7705                 #
7706                 # A name such as libperl.so.3.1
7707                 majmin="libperl.$so.$patchlevel.$subversion"
7708                 # A name such as libperl.so.301
7709                 majonly=`echo $patchlevel $subversion |
7710                         $awk '{printf "%d%02d", $1, $2}'`
7711                 majonly=libperl.$so.$majonly
7712                 # I'd prefer to keep the os-specific stuff here to a minimum, and
7713                 # rely on figuring it out from the naming of libc.
7714                 case "${osname}${osvers}" in
7715                 next4*)
7716                         dflt=libperl.5.$so
7717                         # XXX How handle the --version stuff for MAB?
7718                         ;;
7719                 linux*)  # ld won't link with a bare -lperl otherwise.
7720                         dflt=libperl.$so
7721                         ;;
7722                 cygwin*) # ld links against an importlib
7723                         dflt=libperl$lib_ext
7724                         ;;
7725                 *)      # Try to guess based on whether libc has major.minor.
7726                         case "$libc" in
7727                         *libc.$so.[0-9]*.[0-9]*) dflt=$majmin ;;
7728                         *libc.$so.[0-9]*) dflt=$majonly ;;
7729                         *)      dflt=libperl.$so ;;
7730                         esac
7731                         ;;
7732                 esac
7733                 ;;
7734         *)      dflt=$libperl
7735                 ;;
7736         esac
7737         cat << EOM
7738
7739 I need to select a good name for the shared libperl.  If your system uses
7740 library names with major and minor numbers, then you might want something
7741 like $majmin.  Alternatively, if your system uses a single version
7742 number for shared libraries, then you might want to use $majonly.
7743 Or, your system might be quite happy with a simple libperl.$so.
7744
7745 Since the shared libperl will get installed into a version-specific
7746 architecture-dependent directory, the version number of the shared perl
7747 library probably isn't important, so the default should be o.k.
7748
7749 EOM
7750         rp='What name do you want to give to the shared libperl?'
7751         . ./myread
7752         libperl=$ans
7753         echo "Ok, I'll use $libperl"
7754         ;;
7755 *)
7756         libperl="libperl${_a}"
7757         ;;
7758 esac
7759
7760 # Detect old use of shrpdir via undocumented Configure -Dshrpdir
7761 case "$shrpdir" in
7762 '') ;;
7763 *)      $cat >&4 <<EOM
7764 WARNING:  Use of the shrpdir variable for the installation location of
7765 the shared $libperl is not supported.  It was never documented and
7766 will not work in this version.  Let me (perlbug@perl.org)
7767 know of any problems this may cause.
7768
7769 EOM
7770         case "$shrpdir" in
7771         "$archlibexp/CORE")
7772                 $cat >&4 <<EOM
7773 But your current setting of $shrpdir is
7774 the default anyway, so it's harmless.
7775 EOM
7776                 ;;
7777         *)
7778                 $cat >&4 <<EOM
7779 Further, your current attempted setting of $shrpdir
7780 conflicts with the value of $archlibexp/CORE
7781 that installperl will use.
7782 EOM
7783                 ;;
7784         esac
7785         ;;
7786 esac
7787
7788 # How will the perl executable find the installed shared $libperl?
7789 # Add $xxx to ccdlflags.
7790 # If we can't figure out a command-line option, use $shrpenv to
7791 # set env LD_RUN_PATH.  The main perl makefile uses this.
7792 shrpdir=$archlibexp/CORE
7793 xxx=''
7794 tmp_shrpenv=''
7795 if "$useshrplib"; then
7796     case "$osname" in 
7797         aix)
7798                 # We'll set it in Makefile.SH...
7799                 ;;
7800         solaris)
7801                 xxx="-R $shrpdir"
7802                 ;;
7803         freebsd|netbsd|openbsd)
7804                 xxx="-Wl,-R$shrpdir"
7805                 ;;
7806         bsdos|linux|irix*|dec_osf)
7807                 xxx="-Wl,-rpath,$shrpdir"
7808                 ;;
7809         next)
7810                 # next doesn't like the default...
7811                 ;;
7812         beos)
7813                 # beos doesn't like the default, either.
7814                 ;;
7815         hpux*)
7816                 # hpux doesn't like the default, either.
7817                 tmp_shrpenv="env LDOPTS=\"+s +b${shrpdir}\""
7818                 ;;
7819         *)
7820                 tmp_shrpenv="env LD_RUN_PATH=$shrpdir"
7821                 ;;
7822         esac
7823         case "$xxx" in
7824         '') ;;
7825         *)      
7826                 # Only add $xxx if it isn't already in ccdlflags.
7827                 case " $ccdlflags " in
7828                 *" $xxx "*)     ;;
7829                 *)      ccdlflags="$ccdlflags $xxx"
7830                         cat <<EOM >&4
7831
7832 Adding $xxx to the flags
7833 passed to $ld so that the perl executable will find the 
7834 installed shared $libperl.
7835
7836 EOM
7837                         ;;
7838                 esac
7839                 ;;
7840         esac
7841 fi
7842 # Fix ccdlflags in AIX for building external extensions.
7843 # (For building Perl itself bare -bE:perl.exp is needed,
7844 #  Makefile.SH takes care of this.)
7845 case "$osname" in
7846 aix) ccdlflags="$ccdlflags -bE:$installarchlib/CORE/perl.exp" ;;
7847 esac
7848 # Respect a hint or command-line value.
7849 case "$shrpenv" in
7850 '') shrpenv="$tmp_shrpenv" ;;
7851 esac
7852 case "$ldlibpthname" in
7853 '')     ldlibpthname=LD_LIBRARY_PATH ;;
7854 none)   ldlibpthname='' ;;
7855 esac
7856
7857 : determine where manual pages are on this system
7858 echo " "
7859 case "$sysman" in
7860 '') 
7861         syspath='/usr/share/man/man1 /usr/man/man1'
7862         syspath="$syspath /usr/man/mann /usr/man/manl /usr/man/local/man1"
7863         syspath="$syspath /usr/man/u_man/man1"
7864         syspath="$syspath /usr/catman/u_man/man1 /usr/man/l_man/man1"
7865         syspath="$syspath /usr/local/man/u_man/man1 /usr/local/man/l_man/man1"
7866         syspath="$syspath /usr/man/man.L /local/man/man1 /usr/local/man/man1"
7867         sysman=`./loc . /usr/man/man1 $syspath`
7868         ;;
7869 esac
7870 if $test -d "$sysman"; then
7871         echo "System manual is in $sysman." >&4
7872 else
7873         echo "Could not find manual pages in source form." >&4
7874 fi
7875
7876 : determine where manual pages go
7877 set man1dir man1dir none
7878 eval $prefixit
7879 $cat <<EOM
7880
7881 $spackage has manual pages available in source form.
7882 EOM
7883 case "$nroff" in
7884 nroff)
7885         echo "However, you don't have nroff, so they're probably useless to you."
7886         case "$man1dir" in
7887         '') man1dir="none";;
7888         esac;;
7889 esac
7890 echo "If you don't want the manual sources installed, answer 'none'."
7891 case "$man1dir" in
7892 ' ') dflt=none
7893         ;;
7894 '')
7895         lookpath="$prefixexp/share/man/man1"
7896         lookpath="$lookpath $prefixexp/man/man1 $prefixexp/man/l_man/man1"
7897         lookpath="$lookpath $prefixexp/man/p_man/man1"
7898         lookpath="$lookpath $prefixexp/man/u_man/man1"
7899         lookpath="$lookpath $prefixexp/man/man.1"
7900         case "$sysman" in
7901         */?_man*)       dflt=`./loc . $prefixexp/l_man/man1 $lookpath` ;;
7902         *)      dflt=`./loc . $prefixexp/man/man1 $lookpath` ;;
7903         esac
7904         set dflt
7905         eval $prefixup
7906         ;;
7907 *)  dflt="$man1dir"
7908         ;;
7909 esac
7910 echo " "
7911 fn=dn+~
7912 rp="Where do the main $spackage manual pages (source) go?"
7913 . ./getfile
7914 if $test "X$man1direxp" != "X$ansexp"; then
7915         installman1dir=''
7916 fi
7917 man1dir="$ans"
7918 man1direxp="$ansexp"
7919 case "$man1dir" in
7920 '')     man1dir=' '
7921         installman1dir='';;
7922 esac
7923
7924 : Change installation prefix, if necessary.
7925 if $test X"$prefix" != X"$installprefix"; then
7926         installman1dir=`echo $man1direxp | $sed "s#^$prefix#$installprefix#"`
7927 else
7928         installman1dir="$man1direxp"
7929 fi
7930
7931 : What suffix to use on installed man pages
7932
7933 case "$man1dir" in
7934 ' ')
7935         man1ext='0'
7936         ;;
7937 *)
7938         rp="What suffix should be used for the main $spackage man pages?"
7939         case "$man1ext" in
7940         '')     case "$man1dir" in
7941                 *1)  dflt=1 ;;
7942                 *1p) dflt=1p ;;
7943                 *1pm) dflt=1pm ;;
7944                 *l) dflt=l;;
7945                 *n) dflt=n;;
7946                 *o) dflt=o;;
7947                 *p) dflt=p;;
7948                 *C) dflt=C;;
7949                 *L) dflt=L;;
7950                 *L1) dflt=L1;;
7951                 *) dflt=1;;
7952                 esac
7953                 ;;
7954         *)      dflt="$man1ext";;
7955         esac
7956         . ./myread
7957         man1ext="$ans"
7958         ;;
7959 esac
7960
7961 : see if we can have long filenames
7962 echo " "
7963 first=123456789abcdef
7964 $rm -f $first
7965 if (echo hi >$first) 2>/dev/null; then
7966         if $test -f 123456789abcde; then
7967                 echo 'You cannot have filenames longer than 14 characters.  Sigh.' >&4
7968                 val="$undef"
7969         else
7970                 echo 'You can have filenames longer than 14 characters.'>&4
7971                 val="$define"
7972         fi
7973 else
7974         $cat <<'EOM'
7975 You can't have filenames longer than 14 chars.
7976 You can't even think about them!
7977 EOM
7978         val="$undef"
7979 fi 
7980 set d_flexfnam
7981 eval $setvar
7982 $rm -rf 123456789abcde*
7983
7984 : determine where library module manual pages go
7985 set man3dir man3dir none
7986 eval $prefixit
7987 $cat <<EOM
7988
7989 $spackage has manual pages for many of the library modules.
7990 EOM
7991
7992 case "$nroff" in
7993 nroff)
7994         $cat <<'EOM'
7995 However, you don't have nroff, so they're probably useless to you.
7996 EOM
7997         case "$man3dir" in
7998         '') man3dir="none";;
7999         esac;;
8000 esac
8001
8002 case "$d_flexfnam" in
8003 undef)
8004         $cat <<'EOM'
8005 However, your system can't handle the long file names like File::Basename.3. 
8006 EOM
8007         case "$man3dir" in
8008         '') man3dir="none";;
8009         esac;;
8010 esac
8011
8012 echo "If you don't want the manual sources installed, answer 'none'."
8013 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
8014 case "$man3dir" in
8015 '')     dflt=`echo "$man1dir" | $sed -e 's/man1/man3/g' -e 's/man\.1/man\.3/g'`
8016         if $test -d "$privlib/man/man3"; then
8017                 cat <<EOM >&4
8018
8019 WARNING:  Previous versions of perl installed man3 pages into
8020 $privlib/man/man3.  This version will suggest a 
8021 new default of $dflt.  
8022 EOM
8023                 tdflt=$dflt
8024                 dflt='n'
8025                 rp='Do you wish to preserve the old behavior?(y/n)'
8026                 . ./myread
8027                 case "$ans" in
8028                 y*) dflt="$privlib/man/man3" ;;
8029                 *)  dflt=$tdflt ;;
8030                 esac
8031     fi
8032         ;;
8033 *)      dflt="$man3dir" ;;
8034 esac
8035 case "$dflt" in
8036 ' ') dflt=none ;;
8037 esac
8038 echo " "
8039 fn=dn+~
8040 rp="Where do the $package library man pages (source) go?"
8041 . ./getfile
8042 man3dir="$ans"
8043 man3direxp="$ansexp"
8044 case "$man3dir" in
8045 '')     man3dir=' '
8046         installman3dir='';;
8047 esac
8048
8049 : Change installation prefix, if necessary.
8050 if $test X"$prefix" != X"$installprefix"; then
8051         installman3dir=`echo $man3direxp | $sed "s#^$prefix#$installprefix#"`
8052 else
8053         installman3dir="$man3direxp"
8054 fi
8055
8056 : What suffix to use on installed man pages
8057 case "$man3dir" in
8058 ' ')
8059         man3ext='0'
8060         ;;
8061 *)
8062         rp="What suffix should be used for the $package library man pages?"
8063         case "$man3ext" in
8064         '')     case "$man3dir" in
8065                 *3)  dflt=3 ;;
8066                 *3p) dflt=3p ;;
8067                 *3pm) dflt=3pm ;;
8068                 *l) dflt=l;;
8069                 *n) dflt=n;;
8070                 *o) dflt=o;;
8071                 *p) dflt=p;;
8072                 *C) dflt=C;;
8073                 *L) dflt=L;;
8074                 *L3) dflt=L3;;
8075                 *) dflt=3;;
8076                 esac
8077                 ;;
8078         *)      dflt="$man3ext";;
8079         esac
8080         . ./myread
8081         man3ext="$ans"
8082         ;;
8083 esac
8084
8085 : see if we have to deal with yellow pages, now NIS.
8086 if $test -d /usr/etc/yp || $test -d /etc/yp || $test -d /usr/lib/yp; then
8087         if $test -f /usr/etc/nibindd; then
8088                 echo " "
8089                 echo "I'm fairly confident you're on a NeXT."
8090                 echo " "
8091                 rp='Do you get the hosts file via NetInfo?'
8092                 dflt=y
8093                 case "$hostcat" in
8094                 nidump*) ;;
8095                 '') ;;
8096                 *) dflt=n;;
8097                 esac
8098                 . ./myread
8099                 case "$ans" in
8100                 y*) hostcat='nidump hosts .';;
8101                 *)      case "$hostcat" in
8102                         nidump*) hostcat='';;
8103                         esac
8104                         ;;
8105                 esac
8106         fi
8107         case "$hostcat" in
8108         nidump*) ;;
8109         *)
8110                 case "$hostcat" in
8111                 *ypcat*) dflt=y;;
8112                 '') if $contains '^\+' /etc/passwd >/dev/null 2>&1; then
8113                                 dflt=y
8114                         else
8115                                 dflt=n
8116                         fi;;
8117                 *) dflt=n;;
8118                 esac
8119                 echo " "
8120                 rp='Are you getting the hosts file via yellow pages?'
8121                 . ./myread
8122                 case "$ans" in
8123                 y*) hostcat='ypcat hosts';;
8124                 *) hostcat='cat /etc/hosts';;
8125                 esac
8126                 ;;
8127         esac
8128 fi
8129 case "$hostcat" in
8130 '') test -f /etc/hosts && hostcat='cat /etc/hosts';;
8131 esac
8132 case "$groupcat" in
8133 '') test -f /etc/group && groupcat='cat /etc/group';;
8134 esac
8135 case "$passcat" in
8136 '') test -f /etc/passwd && passcat='cat /etc/passwd';;
8137 esac
8138
8139 : now get the host name
8140 echo " "
8141 echo "Figuring out host name..." >&4
8142 case "$myhostname" in
8143 '') cont=true
8144         echo 'Maybe "hostname" will work...'
8145         if tans=`sh -c hostname 2>&1` ; then
8146                 myhostname=$tans
8147                 phostname=hostname
8148                 cont=''
8149         fi
8150         ;;
8151 *) cont='';;
8152 esac
8153 if $test "$cont"; then
8154         if ./xenix; then
8155                 echo 'Oh, dear.  Maybe "/etc/systemid" is the key...'
8156                 if tans=`cat /etc/systemid 2>&1` ; then
8157                         myhostname=$tans
8158                         phostname='cat /etc/systemid'
8159                         echo "Whadyaknow.  Xenix always was a bit strange..."
8160                         cont=''
8161                 fi
8162         elif $test -r /etc/systemid; then
8163                 echo "(What is a non-Xenix system doing with /etc/systemid?)"
8164         fi
8165 fi
8166 if $test "$cont"; then
8167         echo 'No, maybe "uuname -l" will work...'
8168         if tans=`sh -c 'uuname -l' 2>&1` ; then
8169                 myhostname=$tans
8170                 phostname='uuname -l'
8171         else
8172                 echo 'Strange.  Maybe "uname -n" will work...'
8173                 if tans=`sh -c 'uname -n' 2>&1` ; then
8174                         myhostname=$tans
8175                         phostname='uname -n'
8176                 else
8177                         echo 'Oh well, maybe I can mine it out of whoami.h...'
8178                         if tans=`sh -c $contains' sysname $usrinc/whoami.h' 2>&1` ; then
8179                                 myhostname=`echo "$tans" | $sed 's/^.*"\(.*\)"/\1/'`
8180                                 phostname="sed -n -e '"'/sysname/s/^.*\"\\(.*\\)\"/\1/{'"' -e p -e q -e '}' <$usrinc/whoami.h"
8181                         else
8182                                 case "$myhostname" in
8183                                 '') echo "Does this machine have an identity crisis or something?"
8184                                         phostname='';;
8185                                 *)
8186                                         echo "Well, you said $myhostname before..."
8187                                         phostname='echo $myhostname';;
8188                                 esac
8189                         fi
8190                 fi
8191         fi
8192 fi
8193 case "$myhostname" in
8194 '') myhostname=noname ;;
8195 esac
8196 : you do not want to know about this
8197 set $myhostname
8198 myhostname=$1
8199
8200 : verify guess
8201 if $test "$myhostname" ; then
8202         dflt=y
8203         rp='Your host name appears to be "'$myhostname'".'" Right?"
8204         . ./myread
8205         case "$ans" in
8206         y*) ;;
8207         *) myhostname='';;
8208         esac
8209 fi
8210
8211 : bad guess or no guess
8212 while $test "X$myhostname" = X ; do
8213         dflt=''
8214         rp="Please type the (one word) name of your host:"
8215         . ./myread
8216         myhostname="$ans"
8217 done
8218
8219 : translate upper to lower if necessary
8220 case "$myhostname" in
8221 *[A-Z]*)
8222         echo "(Normalizing case in your host name)"
8223         myhostname=`echo $myhostname | ./tr '[A-Z]' '[a-z]'`
8224         ;;
8225 esac
8226
8227 case "$myhostname" in
8228 *.*)
8229         dflt=`expr "X$myhostname" : "X[^.]*\(\..*\)"`
8230         myhostname=`expr "X$myhostname" : "X\([^.]*\)\."`
8231         echo "(Trimming domain name from host name--host name is now $myhostname)"
8232         ;;
8233 *) case "$mydomain" in
8234         '')
8235                 {
8236                         test "X$hostcat" = "Xypcat hosts" &&
8237                         ypmatch "$myhostname" hosts 2>/dev/null |\
8238                                 $sed -e 's/[     ]*#.*//; s/$/ /' > hosts && \
8239                         $test -s hosts
8240                 } || {
8241                         test "X$hostcat" != "X" &&
8242                         $hostcat | $sed -n -e "s/[       ]*#.*//; s/\$/ /
8243                                         /[       ]$myhostname[  . ]/p" > hosts
8244                 }
8245                 tmp_re="[       . ]"
8246                 if $test -f hosts; then
8247                         $test x`$awk "/[0-9].*[  ]$myhostname$tmp_re/ { sum++ }
8248                              END { print sum }" hosts` = x1 || tmp_re="[         ]"
8249                         dflt=.`$awk "/[0-9].*[   ]$myhostname$tmp_re/ {for(i=2; i<=NF;i++) print \\\$i}" \
8250                                 hosts | $sort | $uniq | \
8251                                 $sed -n -e "s/$myhostname\.\([-a-zA-Z0-9_.]\)/\1/p"`
8252                         case `$echo X$dflt` in
8253                         X*\ *)  echo "(Several hosts in the database matched hostname)"
8254                                 dflt=.
8255                                 ;;
8256                         X.) echo "(You do not have fully-qualified names in the hosts database)"
8257                                 ;;
8258                         esac
8259                 else
8260                         echo "(I cannot locate a hosts database anywhere)"
8261                         dflt=.
8262                 fi
8263                 case "$dflt" in
8264                 .)
8265                         tans=`./loc resolv.conf X /etc /usr/etc`
8266                         if $test -f "$tans"; then
8267                                 echo "(Attempting domain name extraction from $tans)"
8268                                 dflt=.`$sed -n -e 's/   / /g' \
8269                                   -e 's/^search  *\([^ ]*\).*/\1/p' $tans \
8270                                   | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8271                                 case "$dflt" in
8272                                 .) dflt=.`$sed -n -e 's/        / /g' \
8273                                      -e 's/^domain  *\([^ ]*\).*/\1/p' $tans \
8274                                      | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8275                                         ;;
8276                                 esac
8277                         fi
8278                         ;;
8279                 esac
8280                 case "$dflt" in
8281                 .) echo "(No help from resolv.conf either -- attempting clever guess)"
8282                         dflt=.`sh -c domainname 2>/dev/null`
8283                         case "$dflt" in
8284                         '') dflt='.';;
8285                         .nis.*|.yp.*|.main.*) dflt=`echo $dflt | $sed -e 's/^\.[^.]*//'`;;
8286                         esac
8287                         ;;
8288                 esac
8289                 case "$dflt$osname" in
8290                 .os390) echo "(Attempting domain name extraction from //'SYS1.TCPPARMS(TCPDATA)')"
8291                         dflt=.`awk '/^DOMAINORIGIN/ {print $2}' "//'SYS1.TCPPARMS(TCPDATA)'" 2>/dev/null`
8292                         ;;
8293                 esac
8294                 case "$dflt" in
8295                 .) echo "(Lost all hope -- silly guess then)"
8296                         dflt='.nonet'
8297                         ;;
8298                 esac
8299                 $rm -f hosts
8300                 ;;
8301         *) dflt="$mydomain";;
8302         esac;;
8303 esac
8304 echo " "
8305 rp="What is your domain name?"
8306 . ./myread
8307 tans="$ans"
8308 case "$ans" in
8309 '') ;;
8310 .*) ;;
8311 *) tans=".$tans";;
8312 esac
8313 mydomain="$tans"
8314
8315 : translate upper to lower if necessary
8316 case "$mydomain" in
8317 *[A-Z]*)
8318         echo "(Normalizing case in your domain name)"
8319         mydomain=`echo $mydomain | ./tr '[A-Z]' '[a-z]'`
8320         ;;
8321 esac
8322
8323 : a little sanity check here
8324 case "$phostname" in
8325 '') ;;
8326 *)
8327         case `$phostname | ./tr '[A-Z]' '[a-z]'` in
8328         $myhostname$mydomain|$myhostname) ;;
8329         *)
8330                 case "$phostname" in
8331                 sed*)
8332                         echo "(That doesn't agree with your whoami.h file, by the way.)"
8333                         ;;
8334                 *)
8335                         echo "(That doesn't agree with your $phostname command, by the way.)"
8336                         ;;
8337                 esac
8338         ;;
8339         esac
8340         ;;
8341 esac
8342
8343 $cat <<EOM
8344
8345 I need to get your e-mail address in Internet format if possible, i.e.
8346 something like user@host.domain. Please answer accurately since I have
8347 no easy means to double check it. The default value provided below
8348 is most probably close to reality but may not be valid from outside
8349 your organization...
8350
8351 EOM
8352 cont=x
8353 while test "$cont"; do
8354         case "$cf_email" in
8355         '') dflt="$cf_by@$myhostname$mydomain";;
8356         *) dflt="$cf_email";;
8357         esac
8358         rp='What is your e-mail address?'
8359         . ./myread
8360         cf_email="$ans"
8361         case "$cf_email" in
8362         *@*.*) cont='' ;;
8363         *)
8364                 rp='Address does not look like an Internet one.  Use it anyway?'
8365                 case "$fastread" in
8366                 yes) dflt=y ;;
8367                 *) dflt=n ;;
8368                 esac
8369                 . ./myread
8370                 case "$ans" in
8371                 y*) cont='' ;;
8372                 *) echo " " ;;
8373                 esac
8374                 ;;
8375         esac
8376 done
8377
8378 $cat <<EOM
8379
8380 If you or somebody else will be maintaining perl at your site, please
8381 fill in the correct e-mail address here so that they may be contacted
8382 if necessary. Currently, the "perlbug" program included with perl
8383 will send mail to this address in addition to perlbug@perl.org. You may
8384 enter "none" for no administrator.
8385
8386 EOM
8387 case "$perladmin" in
8388 '') dflt="$cf_email";;
8389 *) dflt="$perladmin";;
8390 esac
8391 rp='Perl administrator e-mail address'
8392 . ./myread
8393 perladmin="$ans"
8394
8395 : determine whether to only install version-specific parts.
8396 echo " "
8397 $cat <<EOM
8398 Do you want to install only the version-specific parts of the perl
8399 distribution?  Usually you do *not* want to do this.
8400 EOM
8401 case "$versiononly" in
8402 "$define"|[Yy]*|true) dflt='y' ;;
8403 *) dflt='n';
8404 esac
8405 rp="Do you want to install only the version-specific parts of perl?"
8406 . ./myread
8407 case "$ans" in
8408 [yY]*)  val="$define";;
8409 *)      val="$undef" ;;
8410 esac
8411 set versiononly
8412 eval $setvar
8413
8414 case "$versiononly" in
8415 "$define") inc_version_list=''
8416            inc_version_list_init=0
8417            ;;
8418 esac
8419
8420 : figure out how to guarantee perl startup
8421 case "$startperl" in
8422 '')
8423         case "$sharpbang" in
8424         *!)
8425                 $cat <<EOH
8426
8427 I can use the #! construct to start perl on your system. This will
8428 make startup of perl scripts faster, but may cause problems if you
8429 want to share those scripts and perl is not in a standard place
8430 ($binexp/perl) on all your platforms. The alternative is to force
8431 a shell by starting the script with a single ':' character.
8432
8433 EOH
8434                 case "$versiononly" in
8435                 "$define")      dflt="$binexp/perl$version";;  
8436                 *)              dflt="$binexp/perl";;
8437                 esac
8438                 rp='What shall I put after the #! to start up perl ("none" to not use #!)?'
8439                 . ./myread
8440                 case "$ans" in
8441                 none)   startperl=": # use perl";;
8442                 *)      startperl="#!$ans"
8443                         if $test 30 -lt `echo "$ans" | wc -c`; then
8444                                 $cat >&4 <<EOM
8445
8446 WARNING:  Some systems limit the #! command to 32 characters.
8447 If you experience difficulty running Perl scripts with #!, try
8448 installing Perl in a directory with a shorter pathname.
8449
8450 EOM
8451                         fi ;;
8452                 esac
8453                 ;;
8454         *) startperl=": # use perl"
8455                 ;;
8456         esac
8457         ;;
8458 esac
8459 echo "I'll use $startperl to start perl scripts."
8460
8461 : figure best path for perl in scripts
8462 case "$perlpath" in
8463 '')
8464         case "$versiononly" in
8465         "$define")      perlpath="$binexp/perl$version";;
8466         *)              perlpath="$binexp/perl";;
8467         esac
8468         case "$startperl" in
8469         *!*) ;;
8470         *)
8471                 $cat <<EOH
8472
8473 I will use the "eval 'exec'" idiom to start Perl on your system.
8474 I can use the full path of your Perl binary for this purpose, but
8475 doing so may cause problems if you want to share those scripts and
8476 Perl is not always in a standard place ($binexp/perl).
8477
8478 EOH
8479                 dflt="$binexp/perl"
8480                 rp="What path shall I use in \"eval 'exec'\"?"
8481                 . ./myread
8482                 perlpath="$ans"
8483                 ;;
8484         esac
8485         ;;
8486 esac
8487 case "$startperl" in
8488 *!*)    ;;
8489 *)      echo "I'll use $perlpath in \"eval 'exec'\"" ;;
8490 esac
8491
8492 : determine where public executable scripts go
8493 set scriptdir scriptdir
8494 eval $prefixit
8495 case "$scriptdir" in
8496 '')
8497         dflt="$bin"
8498         : guess some guesses
8499         $test -d /usr/share/scripts && dflt=/usr/share/scripts
8500         $test -d /usr/share/bin     && dflt=/usr/share/bin
8501         $test -d /usr/local/script  && dflt=/usr/local/script
8502         $test -d /usr/local/scripts && dflt=/usr/local/scripts
8503         $test -d $prefixexp/script  && dflt=$prefixexp/script
8504         set dflt
8505         eval $prefixup
8506         ;;
8507 *)  dflt="$scriptdir"
8508         ;;
8509 esac
8510 $cat <<EOM
8511  
8512 Some installations have a separate directory just for executable scripts so
8513 that they can mount it across multiple architectures but keep the scripts in
8514 one spot.  You might, for example, have a subdirectory of /usr/share for this.
8515 Or you might just lump your scripts in with all your other executables.
8516  
8517 EOM
8518 fn=d~
8519 rp='Where do you keep publicly executable scripts?'
8520 . ./getfile
8521 if $test "X$ansexp" != "X$scriptdirexp"; then
8522         installscript=''
8523 fi
8524 scriptdir="$ans"
8525 scriptdirexp="$ansexp"
8526 : Change installation prefix, if necessary.
8527 if $test X"$prefix" != X"$installprefix"; then
8528         installscript=`echo $scriptdirexp | sed "s#^$prefix#$installprefix#"`
8529 else
8530         installscript="$scriptdirexp"
8531 fi
8532
8533 : determine where add-on public executables go
8534 case "$sitebin" in
8535 '')     dflt=$siteprefix/bin ;;
8536 *)      dflt=$sitebin ;;
8537 esac
8538 fn=d~
8539 rp='Pathname where the add-on public executables should be installed?'
8540 . ./getfile
8541 sitebin="$ans"
8542 sitebinexp="$ansexp"
8543 : Change installation prefix, if necessary.
8544 if $test X"$prefix" != X"$installprefix"; then
8545         installsitebin=`echo $sitebinexp | sed "s#^$prefix#$installprefix#"`
8546 else
8547         installsitebin="$sitebinexp"
8548 fi
8549
8550 : determine where add-on html pages go
8551 : There is no standard location, so try to copy the previously-selected 
8552 : directory structure for the core html pages.
8553 case "$sitehtml1" in
8554 '')     dflt=`echo "$html1dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8555 *)      dflt=$sitehtml1 ;;
8556 esac
8557 case "$dflt" in
8558 ''|' ') dflt=none ;;
8559 esac
8560 fn=dn+~
8561 rp='Pathname where the site-specific html pages should be installed?'
8562 . ./getfile
8563 sitehtml1="$ans"
8564 sitehtml1exp="$ansexp"
8565 : Use ' ' for none so value is preserved next time through Configure
8566 $test X"$sitehtml1" = "X" && sitehtml1=' '
8567 : Change installation prefix, if necessary.
8568 if $test X"$prefix" != X"$installprefix"; then
8569         installsitehtml1=`echo "$sitehtml1exp" | $sed "s#^$prefix#$installprefix#"`
8570 else
8571         installsitehtml1="$sitehtml1exp"
8572 fi
8573
8574 : determine where add-on library html pages go
8575 : There is no standard location, so try to copy the previously-selected
8576 : directory structure for the core html pages.
8577 case "$sitehtml3" in
8578 '')     dflt=`echo "$html3dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8579 *)      dflt=$sitehtml3 ;;
8580 esac
8581 case "$dflt" in
8582 ''|' ') dflt=none ;;
8583 esac
8584 fn=dn+~
8585 rp='Pathname where the site-specific library html pages should be installed?'
8586 . ./getfile
8587 sitehtml3="$ans"
8588 sitehtml3exp="$ansexp"
8589 : Use ' ' for none so value is preserved next time through Configure
8590 $test X"$sitehtml3" = "X" && sitehtml3=' '
8591 : Change installation prefix, if necessary.
8592 if $test X"$prefix" != X"$installprefix"; then
8593         installsitehtml3=`echo "$sitehtml3exp" | $sed "s#^$prefix#$installprefix#"`
8594 else
8595         installsitehtml3="$sitehtml3exp"
8596 fi
8597
8598 : determine where add-on manual pages go
8599 case "$siteman1" in
8600 '')     dflt=`echo "$man1dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8601 *)      dflt=$siteman1 ;;
8602 esac
8603 case "$dflt" in
8604 ''|' ') dflt=none ;;
8605 esac
8606 fn=dn+~
8607 rp='Pathname where the site-specific manual pages should be installed?'
8608 . ./getfile
8609 siteman1="$ans"
8610 siteman1exp="$ansexp"
8611 : Use ' ' for none so value is preserved next time through Configure
8612 $test X"$siteman1" = "X" && siteman1=' '
8613 : Change installation prefix, if necessary.
8614 if $test X"$prefix" != X"$installprefix"; then
8615         installsiteman1=`echo "$siteman1exp" | $sed "s#^$prefix#$installprefix#"`
8616 else
8617         installsiteman1="$siteman1exp"
8618 fi
8619
8620 : determine where add-on library man pages go
8621 case "$siteman3" in
8622 '')     dflt=`echo "$man3dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8623 *)      dflt=$siteman3 ;;
8624 esac
8625 case "$dflt" in
8626 ''|' ') dflt=none ;;
8627 esac
8628 fn=dn+~
8629 rp='Pathname where the site-specific library manual pages should be installed?'
8630 . ./getfile
8631 siteman3="$ans"
8632 siteman3exp="$ansexp"
8633 : Use ' ' for none so value is preserved next time through Configure
8634 $test X"$siteman3" = "X" && siteman3=' '
8635 : Change installation prefix, if necessary.
8636 if $test X"$prefix" != X"$installprefix"; then
8637         installsiteman3=`echo "$siteman3exp" | $sed "s#^$prefix#$installprefix#"`
8638 else
8639         installsiteman3="$siteman3exp"
8640 fi
8641
8642 : determine where add-on public executable scripts go
8643 case "$sitescript" in
8644 '')     dflt=$siteprefix/script
8645         $test -d $dflt || dflt=$sitebin ;;
8646 *)  dflt="$sitescript" ;;
8647 esac
8648 fn=d~+
8649 rp='Pathname where add-on public executable scripts should be installed?'
8650 . ./getfile
8651 sitescript="$ans"
8652 sitescriptexp="$ansexp"
8653 : Change installation prefix, if necessary.
8654 if $test X"$prefix" != X"$installprefix"; then
8655         installsitescript=`echo $sitescriptexp | sed "s#^$prefix#$installprefix#"`
8656 else
8657         installsitescript="$sitescriptexp"
8658 fi
8659
8660 case "$usefaststdio" in
8661 $define|true|[yY]*|'')
8662         xversion=`awk '/define[         ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
8663         case "$xversion" in
8664         [68])   dflt='y' ;;
8665         *)      dflt='n' ;;
8666         esac
8667         ;;
8668 *) dflt='n';;
8669 esac
8670 cat <<EOM
8671
8672 Perl can be built to use 'fast stdio', which means using the stdio
8673 library but also directly manipulating the stdio buffers to enable
8674 faster I/O.  Using stdio is better for backward compatibility (especially
8675 for Perl extensions), but on the other hand since Perl 5.8 the 'perlio'
8676 interface has been preferred instead of stdio.
8677
8678 If this doesn't make any sense to you, just accept the default '$dflt'.
8679 EOM
8680 rp='Use the "fast stdio" if available?'
8681 . ./myread
8682 case "$ans" in
8683 y|Y)    val="$define" ;;     
8684 *)      val="$undef" ;;
8685 esac
8686 set usefaststdio
8687 eval $setvar
8688
8689
8690 : define an is-a-typedef? function
8691 typedef='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
8692 case "$inclist" in
8693 "") inclist="sys/types.h";;
8694 esac;
8695 eval "varval=\$$var";
8696 case "$varval" in
8697 "")
8698         $rm -f temp.c;
8699         for inc in $inclist; do
8700                 echo "#include <$inc>" >>temp.c;
8701         done;
8702         echo "#ifdef $type" >> temp.c;
8703         echo "printf(\"We have $type\");" >> temp.c;
8704         echo "#endif" >> temp.c;
8705         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
8706         if $contains $type temp.E >/dev/null 2>&1; then
8707                 eval "$var=\$type";
8708         else
8709                 eval "$var=\$def";
8710         fi;
8711         $rm -f temp.?;;
8712 *) eval "$var=\$varval";;
8713 esac'
8714
8715 : define an is-a-typedef? function that prompts if the type is not available.
8716 typedef_ask='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
8717 case "$inclist" in
8718 "") inclist="sys/types.h";;
8719 esac;
8720 eval "varval=\$$var";
8721 case "$varval" in
8722 "")
8723         $rm -f temp.c;
8724         for inc in $inclist; do
8725                 echo "#include <$inc>" >>temp.c;
8726         done;
8727         echo "#ifdef $type" >> temp.c;
8728         echo "printf(\"We have $type\");" >> temp.c;
8729         echo "#endif" >> temp.c;
8730         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
8731         echo " " ;
8732         echo "$rp" | $sed -e "s/What is/Looking for/" -e "s/?/./";
8733         if $contains $type temp.E >/dev/null 2>&1; then
8734                 echo "$type found." >&4;
8735                 eval "$var=\$type";
8736         else
8737                 echo "$type NOT found." >&4;
8738                 dflt="$def";
8739                 . ./myread ;
8740                 eval "$var=\$ans";
8741         fi;
8742         $rm -f temp.?;;
8743 *) eval "$var=\$varval";;
8744 esac'
8745
8746 : see what type lseek is declared as in the kernel
8747 rp="What is the type used for lseek's offset on this system?"
8748 set off_t lseektype long stdio.h sys/types.h
8749 eval $typedef_ask
8750
8751 echo " "
8752 echo "Checking to see how big your file offsets are..." >&4
8753 $cat >try.c <<EOCP
8754 #include <sys/types.h>
8755 #include <stdio.h>
8756 int main()
8757 {
8758     printf("%d\n", (int)sizeof($lseektype));
8759     return(0); 
8760 }
8761 EOCP
8762 set try
8763 if eval $compile_ok; then
8764         lseeksize=`$run ./try`
8765         echo "Your file offsets are $lseeksize bytes long."
8766 else
8767         dflt=$longsize
8768         echo " "
8769         echo "(I can't seem to compile the test program.  Guessing...)"
8770         rp="What is the size of your file offsets (in bytes)?"
8771         . ./myread
8772         lseeksize="$ans"
8773 fi
8774 $rm -f try.c try
8775
8776 : see what type file positions are declared as in the library
8777 rp="What is the type for file position used by fsetpos()?"
8778 set fpos_t fpostype long stdio.h sys/types.h
8779 eval $typedef_ask
8780
8781 echo " "
8782 case "$fpostype" in
8783 *_t) zzz="$fpostype"    ;;
8784 *)   zzz="fpos_t"       ;;
8785 esac
8786 echo "Checking the size of $zzz..." >&4 
8787 cat > try.c <<EOCP
8788 #include <sys/types.h>
8789 #include <stdio.h>
8790 #$i_stdlib I_STDLIB
8791 #ifdef I_STDLIB
8792 #include <stdlib.h>
8793 #endif
8794 int main() {
8795     printf("%d\n", (int)sizeof($fpostype));
8796     exit(0);
8797 }
8798 EOCP
8799 set try
8800 if eval $compile_ok; then
8801         yyy=`$run ./try`
8802         case "$yyy" in
8803         '')     fpossize=4
8804                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
8805                 ;;
8806         *)      fpossize=$yyy
8807                 echo "Your $zzz is $fpossize bytes long."
8808                 ;;
8809         esac
8810 else
8811         dflt="$longsize"
8812         echo " " >&4
8813         echo "(I can't compile the test program.  Guessing...)" >&4
8814         rp="What is the size of your file positions (in bytes)?"
8815         . ./myread
8816         fpossize="$ans"
8817 fi
8818
8819 # Backward compatibility (uselfs is deprecated).
8820 case "$uselfs" in
8821 "$define"|true|[yY]*)
8822         cat <<EOM >&4
8823
8824 *** Configure -Duselfs is deprecated, using -Duselargefiles instead.
8825 EOM
8826         uselargefiles="$define"
8827         ;;
8828 esac                          
8829
8830 case "$lseeksize:$fpossize" in
8831 8:8) cat <<EOM
8832
8833 You can have files larger than 2 gigabytes.
8834 EOM
8835    val="$define" ;;
8836 *)    case "$uselargefiles" in
8837    "$undef"|false|[nN]*) dflt='n' ;;
8838    *)   dflt='y' ;;
8839    esac
8840    cat <<EOM
8841
8842 Perl can be built to understand large files (files larger than 2 gigabytes)
8843 on some systems.  To do so, Configure can be run with -Duselargefiles.
8844
8845 If this doesn't make any sense to you, just accept the default '$dflt'.
8846 EOM
8847    rp='Try to understand large files, if available?'
8848    . ./myread
8849    case "$ans" in
8850    y|Y)         val="$define" ;;
8851    *)           val="$undef"  ;;
8852    esac
8853    ;;
8854 esac
8855 set uselargefiles
8856 eval $setvar
8857 case "$uselargefiles" in
8858 "$define")
8859 : Look for a hint-file generated 'call-back-unit'.  If the
8860 : user has specified that a large files perl is to be built,
8861 : we may need to set or change some other defaults.
8862         if $test -f uselargefiles.cbu; then
8863                 echo "Your platform has some specific hints for large file builds, using them..."
8864                 . ./uselargefiles.cbu
8865                 echo " "
8866                 echo "Rechecking to see how big your file offsets are..." >&4
8867                 $cat >try.c <<EOCP
8868 #include <sys/types.h>
8869 #include <stdio.h>
8870 int main()
8871 {
8872     printf("%d\n", (int)sizeof($lseektype));
8873     return(0); 
8874 }
8875 EOCP
8876                 set try
8877                 if eval $compile_ok; then
8878                         lseeksize=`$run ./try`
8879                         $echo "Your file offsets are now $lseeksize bytes long."
8880                 else
8881                         dflt="$lseeksize"
8882                         echo " "
8883                         echo "(I can't seem to compile the test program.  Guessing...)"
8884                         rp="What is the size of your file offsets (in bytes)?"
8885                         . ./myread
8886                         lseeksize="$ans"
8887                 fi
8888                 case "$fpostype" in
8889                 *_t) zzz="$fpostype"    ;;
8890                 *)   zzz="fpos_t"       ;;
8891                 esac
8892                 $echo $n "Rechecking the size of $zzz...$c" >&4 
8893                 $cat > try.c <<EOCP
8894 #include <sys/types.h>
8895 #include <stdio.h>
8896 #$i_stdlib I_STDLIB
8897 #ifdef I_STDLIB
8898 #include <stdlib.h>
8899 #endif
8900 int main() {
8901     printf("%d\n", (int)sizeof($fpostype));
8902     return(0);
8903 }
8904 EOCP
8905                 set try
8906                 if eval $compile_ok; then
8907                         yyy=`$run ./try`
8908                         dflt="$lseeksize"
8909                         case "$yyy" in
8910                         '')     echo " "
8911                                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
8912                                 ;;
8913                         *)      fpossize=$yyy
8914                                 echo " $fpossize bytes." >&4
8915                                 ;;
8916                         esac
8917                 else
8918                         dflt="$fpossize"
8919                         echo " "
8920                         echo "(I can't compile the test program.  Guessing...)" >&4
8921                         rp="What is the size of your file positions (in bytes)?"
8922                         . ./myread
8923                         fpossize="$ans"
8924                 fi
8925                 $rm -f try.c try
8926         fi
8927         ;;
8928 esac
8929
8930 case "$vendorprefix" in
8931 '')     d_vendorbin="$undef"
8932         vendorbin=''
8933         vendorbinexp=''
8934         ;;
8935 *)      d_vendorbin="$define"
8936         : determine where vendor-supplied executables go.
8937         case "$vendorbin" in
8938         '') dflt=$vendorprefix/bin ;;
8939         *)      dflt="$vendorbin" ;;
8940         esac
8941         fn=d~+
8942         rp='Pathname for the vendor-supplied executables directory?'
8943         . ./getfile
8944         vendorbin="$ans"
8945         vendorbinexp="$ansexp"
8946         ;;
8947 esac
8948 : Change installation prefix, if necessary.
8949 if $test X"$prefix" != X"$installprefix"; then
8950         installvendorbin=`echo $vendorbinexp | $sed "s#^$prefix#$installprefix#"`
8951 else
8952         installvendorbin="$vendorbinexp"
8953 fi
8954
8955 case "$vendorprefix" in
8956 '')     vendorhtml1=''
8957         vendorhtml1exp=''
8958         ;;
8959 *)      : determine where vendor-supplied html pages go.
8960         : There is no standard location, so try to copy the previously-selected
8961         : directory structure for the core html pages.
8962         : XXX Better default suggestions would be welcome.
8963         case "$vendorhtml1" in
8964         '')     dflt=`echo "$html1dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
8965         *)      dflt=$vendorhtml1 ;;
8966         esac
8967         case "$dflt" in
8968         ''|' ') dflt=none ;;
8969         esac
8970         fn=dn+~
8971         rp='Pathname for the vendor-supplied html pages?'
8972         . ./getfile
8973         vendorhtml1="$ans"
8974         vendorhtml1exp="$ansexp"
8975         ;;
8976 esac
8977 : Use ' ' for none so value is preserved next time through Configure
8978 $test X"$vendorhtml1" = "X" && vendorhtml1=' '
8979 : Change installation prefix, if necessary.
8980 if $test X"$prefix" != X"$installprefix"; then
8981         installvendorhtml1=`echo $vendorhtml1exp | $sed "s#^$prefix#$installprefix#"`
8982 else
8983         installvendorhtml1="$vendorhtml1exp"
8984 fi
8985
8986 case "$vendorprefix" in
8987 '')     vendorhtml3=''
8988         vendorhtml3exp=''
8989         ;;
8990 *)      : determine where vendor-supplied module html pages go.
8991         : There is no standard location, so try to copy the previously-selected
8992         : directory structure for the core html pages.
8993         : XXX Better default suggestions would be welcome.
8994         case "$vendorhtml3" in
8995         '')     dflt=`echo "$html3dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
8996         *)      dflt=$vendorhtml3 ;;
8997         esac
8998         case "$dflt" in
8999         ''|' ') dflt=none ;;
9000         esac
9001         fn=dn+~
9002         rp='Pathname for the vendor-supplied html pages?'
9003         . ./getfile
9004         vendorhtml3="$ans"
9005         vendorhtml3exp="$ansexp"
9006         ;;
9007 esac
9008 : Use ' ' for none so value is preserved next time through Configure
9009 $test X"$vendorhtml3" = "X" && vendorhtml3=' '
9010 : Change installation prefix, if necessary.
9011 if $test X"$prefix" != X"$installprefix"; then
9012         installvendorhtml3=`echo $vendorhtml3exp | $sed "s#^$prefix#$installprefix#"`
9013 else
9014         installvendorhtml3="$vendorhtml3exp"
9015 fi
9016
9017 case "$vendorprefix" in
9018 '')     vendorman1=''
9019         vendorman1exp=''
9020         ;;
9021 *)      : determine where vendor-supplied manual pages go.
9022         case "$vendorman1" in
9023         '') dflt=`echo "$man1dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9024         *)      dflt=$vendorman1 ;;
9025         esac
9026         case "$dflt" in
9027         ''|' ') dflt=none ;;
9028         esac
9029         fn=nd~+
9030         rp='Pathname for the vendor-supplied manual section 1 pages?'
9031         . ./getfile
9032         vendorman1="$ans"
9033         vendorman1exp="$ansexp"
9034         ;;
9035 esac
9036 : Use ' ' for none so value is preserved next time through Configure
9037 $test X"$vendorman1" = "X" && vendorman1=' '
9038 : Change installation prefix, if necessary.
9039 if $test X"$prefix" != X"$installprefix"; then
9040         installvendorman1=`echo "$vendorman1exp" | $sed "s#^$prefix#$installprefix#"`
9041 else
9042         installvendorman1="$vendorman1exp"
9043 fi
9044
9045 case "$vendorprefix" in
9046 '')     vendorman3=''
9047         vendorman3exp=''
9048         ;;
9049 *)      : determine where vendor-supplied module manual pages go.
9050         case "$vendorman3" in
9051         '') dflt=`echo "$man3dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9052         *)      dflt=$vendorman3 ;;
9053         esac
9054         case "$dflt" in
9055         ''|' ') dflt=none ;;
9056         esac
9057         fn=nd~+
9058         rp='Pathname for the vendor-supplied manual section 3 pages?'
9059         . ./getfile
9060         vendorman3="$ans"
9061         vendorman3exp="$ansexp"
9062         ;;
9063 esac
9064 : Use ' ' for none so value is preserved next time through Configure
9065 $test X"$vendorman3" = "X" && vendorman3=' '
9066 : Change installation prefix, if necessary.
9067 if $test X"$prefix" != X"$installprefix"; then
9068         installvendorman3=`echo "$vendorman3exp" | $sed "s#^$prefix#$installprefix#"`
9069 else
9070         installvendorman3="$vendorman3exp"
9071 fi
9072
9073 case "$vendorprefix" in
9074 '')     d_vendorscript="$undef"
9075         vendorscript=''
9076         vendorscriptexp=''
9077         ;;
9078 *)      d_vendorscript="$define"
9079         : determine where vendor-supplied scripts go.
9080         case "$vendorscript" in
9081         '')     dflt=$vendorprefix/script
9082                 $test -d $dflt || dflt=$vendorbin ;;
9083         *)  dflt="$vendorscript" ;;
9084         esac
9085         $cat <<EOM
9086
9087 The installation process will create a directory for 
9088 vendor-supplied scripts.
9089
9090 EOM
9091         fn=d~+
9092         rp='Pathname for the vendor-supplied scripts directory?'
9093         . ./getfile
9094         vendorscript="$ans"
9095         vendorscriptexp="$ansexp"
9096         ;;
9097 esac
9098 : Change installation prefix, if necessary.
9099 if $test X"$prefix" != X"$installprefix"; then
9100         installvendorscript=`echo $vendorscriptexp | $sed "s#^$prefix#$installprefix#"`
9101 else
9102         installvendorscript="$vendorscriptexp"
9103 fi
9104
9105 : see if qgcvt exists
9106 set qgcvt d_qgcvt
9107 eval $inlibc
9108
9109 echo " "
9110
9111 if $test X"$d_longdbl" = X"$define"; then
9112
9113 echo "Checking how to print long doubles..." >&4
9114
9115 if $test X"$sPRIfldbl" = X -a X"$doublesize" = X"$longdblsize"; then
9116         $cat >try.c <<'EOCP'
9117 #include <sys/types.h>
9118 #include <stdio.h>
9119 int main() {
9120   double d = 123.456;
9121   printf("%.3f\n", d);
9122 }
9123 EOCP
9124         set try
9125         if eval $compile; then
9126                 yyy=`$run ./try`
9127                 case "$yyy" in
9128                 123.456)
9129                         sPRIfldbl='"f"'; sPRIgldbl='"g"'; sPRIeldbl='"e"';
9130                         sPRIFUldbl='"F"'; sPRIGUldbl='"G"'; sPRIEUldbl='"E"';
9131                         echo "We will use %f."
9132                         ;;
9133                 esac
9134         fi
9135 fi
9136
9137 if $test X"$sPRIfldbl" = X; then
9138         $cat >try.c <<'EOCP'
9139 #include <sys/types.h>
9140 #include <stdio.h>
9141 int main() {
9142   long double d = 123.456;
9143   printf("%.3Lf\n", d);
9144 }
9145 EOCP
9146         set try
9147         if eval $compile; then
9148                 yyy=`$run ./try`
9149                 case "$yyy" in
9150                 123.456)
9151                         sPRIfldbl='"Lf"'; sPRIgldbl='"Lg"'; sPRIeldbl='"Le"';
9152                         sPRIFUldbl='"LF"'; sPRIGUldbl='"LG"'; sPRIEUldbl='"LE"';
9153                         echo "We will use %Lf."
9154                         ;;
9155                 esac
9156         fi
9157 fi
9158
9159 if $test X"$sPRIfldbl" = X; then
9160         $cat >try.c <<'EOCP'
9161 #include <sys/types.h>
9162 #include <stdio.h>
9163 int main() {
9164   long double d = 123.456;
9165   printf("%.3llf\n", d);
9166 }
9167 EOCP
9168         set try
9169         if eval $compile; then
9170                 yyy=`$run ./try`
9171                 case "$yyy" in
9172                 123.456)
9173                         sPRIfldbl='"llf"'; sPRIgldbl='"llg"'; sPRIeldbl='"lle"';
9174                         sPRIFUldbl='"llF"'; sPRIGUldbl='"llG"'; sPRIEUldbl='"llE"';
9175                         echo "We will use %llf."
9176                         ;;
9177                 esac
9178         fi
9179 fi
9180
9181 if $test X"$sPRIfldbl" = X; then
9182         $cat >try.c <<'EOCP'
9183 #include <sys/types.h>
9184 #include <stdio.h>
9185 int main() {
9186   long double d = 123.456;
9187   printf("%.3lf\n", d);
9188 }
9189 EOCP
9190         set try
9191         if eval $compile; then
9192                 yyy=`$run ./try`
9193                 case "$yyy" in
9194                 123.456)
9195                         sPRIfldbl='"lf"'; sPRIgldbl='"lg"'; sPRIeldbl='"le"';
9196                         sPRIFUldbl='"lF"'; sPRIGUldbl='"lG"'; sPRIEUldbl='"lE"';
9197                         echo "We will use %lf."
9198                         ;;
9199                 esac
9200         fi
9201 fi
9202
9203 if $test X"$sPRIfldbl" = X; then
9204         echo "Cannot figure out how to print long doubles." >&4
9205 else
9206         sSCNfldbl=$sPRIfldbl    # expect consistency
9207 fi
9208
9209 $rm -f try try.*
9210
9211 fi # d_longdbl
9212
9213 case "$sPRIfldbl" in
9214 '')     d_PRIfldbl="$undef"; d_PRIgldbl="$undef"; d_PRIeldbl="$undef"; 
9215         d_PRIFUldbl="$undef"; d_PRIGUldbl="$undef"; d_PRIEUldbl="$undef"; 
9216         d_SCNfldbl="$undef";
9217         ;;
9218 *)      d_PRIfldbl="$define"; d_PRIgldbl="$define"; d_PRIeldbl="$define"; 
9219         d_PRIFUldbl="$define"; d_PRIGUldbl="$define"; d_PRIEUldbl="$define"; 
9220         d_SCNfldbl="$define";
9221         ;;
9222 esac
9223
9224 : Check how to convert floats to strings.
9225
9226 if test "X$d_Gconvert" = X; then
9227
9228 echo " "
9229 echo "Checking for an efficient way to convert floats to strings."
9230 echo " " > try.c
9231 case "$uselongdouble" in
9232 "$define") echo "#define USE_LONG_DOUBLE" >>try.c ;;
9233 esac
9234 case "$d_longdbl" in
9235 "$define") echo "#define HAS_LONG_DOUBLE" >>try.c ;;
9236 esac
9237 case "$d_PRIgldbl" in
9238 "$define") echo "#define HAS_PRIgldbl"    >>try.c ;;
9239 esac
9240 $cat >>try.c <<EOP
9241 #ifdef TRY_gconvert
9242 #define Gconvert(x,n,t,b) gconvert((x),(n),(t),(b))
9243 char *myname = "gconvert";
9244 #endif
9245 #ifdef TRY_gcvt
9246 #define Gconvert(x,n,t,b) gcvt((x),(n),(b))
9247 char *myname = "gcvt";
9248 #endif
9249 #ifdef TRY_qgcvt
9250 #define Gconvert(x,n,t,b) qgcvt((x),(n),(b))
9251 char *myname = "qgcvt";
9252 #define DOUBLETYPE long double
9253 #endif
9254 #ifdef TRY_sprintf
9255 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
9256 #ifdef HAS_PRIgldbl
9257 #define Gconvert(x,n,t,b) sprintf((b),"%.*"$sPRIgldbl,(n),(x))
9258 #else
9259 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(double)(x))
9260 #endif
9261 #else
9262 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))
9263 #endif
9264 char *myname = "sprintf";
9265 #endif
9266
9267 #ifndef DOUBLETYPE
9268 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
9269 #define DOUBLETYPE long double
9270 #else
9271 #define DOUBLETYPE double
9272 #endif
9273 #endif
9274
9275 #include <stdio.h>
9276
9277 #define I_STDLIB $i_stdlib
9278 #ifdef I_STDLIB
9279 #include <stdlib.h>
9280 #endif
9281
9282 int
9283 checkit(expect, got)
9284 char *expect;
9285 char *got;
9286 {
9287     if (strcmp(expect, got)) {
9288                 printf("%s oddity:  Expected %s, got %s\n",
9289                         myname, expect, got);
9290                 exit(1);
9291         }
9292 }
9293
9294 int main()
9295
9296         char buf[64]; 
9297         buf[63] = '\0';
9298
9299         /* This must be 1st test on (which?) platform */
9300         /* Alan Burlison <AlanBurlsin@unn.unisys.com> */
9301         Gconvert((DOUBLETYPE)0.1, 8, 0, buf);
9302         checkit("0.1", buf);
9303
9304         Gconvert((DOUBLETYPE)0.01, 8, 0, buf); 
9305         checkit("0.01", buf);
9306
9307         Gconvert((DOUBLETYPE)0.001, 8, 0, buf); 
9308         checkit("0.001", buf);
9309
9310         Gconvert((DOUBLETYPE)0.0001, 8, 0, buf); 
9311         checkit("0.0001", buf);
9312
9313         Gconvert((DOUBLETYPE)0.00009, 8, 0, buf);
9314         if (strlen(buf) > 5)
9315             checkit("9e-005", buf); /* for Microsoft ?? */
9316         else
9317             checkit("9e-05", buf);
9318
9319         Gconvert((DOUBLETYPE)1.0, 8, 0, buf); 
9320         checkit("1", buf);
9321
9322         Gconvert((DOUBLETYPE)1.1, 8, 0, buf); 
9323         checkit("1.1", buf);
9324
9325         Gconvert((DOUBLETYPE)1.01, 8, 0, buf); 
9326         checkit("1.01", buf);
9327
9328         Gconvert((DOUBLETYPE)1.001, 8, 0, buf); 
9329         checkit("1.001", buf);
9330
9331         Gconvert((DOUBLETYPE)1.0001, 8, 0, buf); 
9332         checkit("1.0001", buf);
9333
9334         Gconvert((DOUBLETYPE)1.00001, 8, 0, buf); 
9335         checkit("1.00001", buf);
9336
9337         Gconvert((DOUBLETYPE)1.000001, 8, 0, buf); 
9338         checkit("1.000001", buf);
9339
9340         Gconvert((DOUBLETYPE)0.0, 8, 0, buf); 
9341         checkit("0", buf);
9342
9343         Gconvert((DOUBLETYPE)-1.0, 8, 0, buf); 
9344         checkit("-1", buf);
9345
9346         /* Some Linux gcvt's give 1.e+5 here. */
9347         Gconvert((DOUBLETYPE)100000.0, 8, 0, buf); 
9348         checkit("100000", buf);
9349         
9350         /* Some Linux gcvt's give -1.e+5 here. */
9351         Gconvert((DOUBLETYPE)-100000.0, 8, 0, buf); 
9352         checkit("-100000", buf);
9353
9354         Gconvert((DOUBLETYPE)123.456, 8, 0, buf); 
9355         checkit("123.456", buf);
9356
9357         /* Testing of 1e+129 in bigintpm.t must not get extra '.' here. */
9358         Gconvert((DOUBLETYPE)1e34, 8, 0, buf);
9359         /* 34 should be enough to scare even long double
9360          * places into using the e notation. */
9361         if (strlen(buf) > 5)
9362             checkit("1e+034", buf); /* for Microsoft */
9363         else
9364             checkit("1e+34", buf);
9365
9366         /* For Perl, if you add additional tests here, also add them to
9367          * t/base/num.t for benefit of platforms not using Configure or
9368          * overriding d_Gconvert */
9369
9370         exit(0);
9371 }
9372 EOP
9373 : first add preferred functions to our list
9374 xxx_list=""
9375 for xxx_convert in $gconvert_preference; do
9376     case $xxx_convert in
9377     gcvt|gconvert|sprintf) xxx_list="$xxx_list $xxx_convert" ;;
9378     *) echo "Discarding unrecognized gconvert_preference $xxx_convert" >&4 ;;
9379     esac 
9380 done
9381 : then add any others
9382 for xxx_convert in gconvert gcvt sprintf; do
9383     case "$xxx_list" in
9384     *$xxx_convert*) ;;
9385     *) xxx_list="$xxx_list $xxx_convert" ;;
9386     esac 
9387 done
9388
9389 case "$d_longdbl$uselongdouble" in
9390 "$define$define")
9391     : again, add prefered functions to our list first
9392     xxx_ld_list=""
9393     for xxx_convert in $gconvert_ld_preference; do
9394         case $xxx_convert in
9395         qgcvt|gcvt|gconvert|sprintf) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
9396         *) echo "Discarding unrecognized gconvert_ld_preference $xxx_convert" ;;
9397         esac
9398     done
9399     : then add qgcvt, sprintf--then, in xxx_list order, gconvert and gcvt
9400     for xxx_convert in qgcvt sprintf $xxx_list; do
9401         case "$xxx_ld_list" in
9402         $xxx_convert*|*" $xxx_convert"*) ;;
9403         *) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
9404         esac
9405     done
9406     : if sprintf cannot do long doubles, move it to the end
9407     if test "$d_PRIgldbl" != "$define"; then
9408         xxx_ld_list="`echo $xxx_ld_list|sed s/sprintf//` sprintf"
9409     fi
9410     : if no qgcvt, remove it
9411     if test "$d_qgcvt" != "$define"; then
9412         xxx_ld_list="`echo $xxx_ld_list|sed s/qgcvt//`"
9413     fi
9414     : use the ld_list
9415     xxx_list="$xxx_ld_list"
9416     ;;
9417 esac
9418
9419 for xxx_convert in $xxx_list; do
9420         echo "Trying $xxx_convert..."
9421         $rm -f try try$_o
9422         set try -DTRY_$xxx_convert
9423         if eval $compile; then
9424                 echo "$xxx_convert() found." >&4
9425                 if $run ./try; then
9426                         echo "I'll use $xxx_convert to convert floats into a string." >&4
9427                         break;
9428                 else
9429                         echo "...But $xxx_convert didn't work as I expected."
9430                         xxx_convert=''
9431                 fi
9432         else
9433                 echo "$xxx_convert NOT found." >&4
9434         fi
9435 done
9436
9437 if test X$xxx_convert = X; then
9438     echo "*** WHOA THERE!!! ***" >&4
9439     echo "None of ($xxx_list)  seemed to work properly.  I'll use sprintf." >&4
9440     xxx_convert=sprintf
9441 fi
9442
9443 case "$xxx_convert" in
9444 gconvert) d_Gconvert='gconvert((x),(n),(t),(b))' ;;
9445 gcvt) d_Gconvert='gcvt((x),(n),(b))' ;;
9446 qgcvt) d_Gconvert='qgcvt((x),(n),(b))' ;;
9447 *) case "$uselongdouble$d_longdbl$d_PRIgldbl" in
9448    "$define$define$define")
9449       d_Gconvert="sprintf((b),\"%.*\"$sPRIgldbl,(n),(x))" ;;
9450    "$define$define$undef")
9451       d_Gconvert='sprintf((b),"%.*g",(n),(double)(x))' ;;
9452    *) d_Gconvert='sprintf((b),"%.*g",(n),(x))' ;;
9453    esac
9454    ;;  
9455 esac
9456
9457 fi
9458
9459 : see if _fwalk exists
9460 set fwalk d__fwalk
9461 eval $inlibc
9462
9463 : Initialize h_fcntl
9464 h_fcntl=false
9465
9466 : Initialize h_sysfile
9467 h_sysfile=false
9468
9469 : access call always available on UNIX
9470 set access d_access
9471 eval $inlibc
9472
9473 : locate the flags for 'access()'
9474 case "$d_access" in
9475 "$define")
9476         echo " "
9477         $cat >access.c <<EOCP
9478 #include <sys/types.h>
9479 #ifdef I_FCNTL
9480 #include <fcntl.h>
9481 #endif
9482 #ifdef I_SYS_FILE
9483 #include <sys/file.h>
9484 #endif
9485 #ifdef I_UNISTD
9486 #include <unistd.h>
9487 #endif
9488 #$i_stdlib I_STDLIB
9489 #ifdef I_STDLIB
9490 #include <stdlib.h>
9491 #endif
9492 int main() {
9493         exit(R_OK);
9494 }
9495 EOCP
9496         : check sys/file.h first, no particular reason here
9497         if $test `./findhdr sys/file.h` && \
9498                 $cc -o access $cppflags -DI_SYS_FILE access.c >/dev/null 2>&1 ; then
9499                 h_sysfile=true;
9500                 echo "<sys/file.h> defines the *_OK access constants." >&4
9501         elif $test `./findhdr fcntl.h` && \
9502                 $cc -o access $cppflags -DI_FCNTL access.c >/dev/null 2>&1 ; then
9503                 h_fcntl=true;
9504                 echo "<fcntl.h> defines the *_OK access constants." >&4
9505         elif $test `./findhdr unistd.h` && \
9506                 $cc -o access $cppflags -DI_UNISTD access.c >/dev/null 2>&1 ; then
9507                 echo "<unistd.h> defines the *_OK access constants." >&4
9508         else
9509                 echo "I can't find the four *_OK access constants--I'll use mine." >&4
9510         fi
9511         ;;
9512 esac
9513 $rm -f access*
9514
9515 : see if accessx exists
9516 set accessx d_accessx
9517 eval $inlibc
9518
9519 : see if aintl exists
9520 set aintl d_aintl
9521 eval $inlibc
9522
9523 : see if alarm exists
9524 set alarm d_alarm
9525 eval $inlibc
9526
9527 : see if POSIX threads are available
9528 set pthread.h i_pthread
9529 eval $inhdr
9530
9531 : define a fucntion to check prototypes
9532 $cat > protochk <<EOSH
9533 $startsh
9534 cc="$cc"
9535 optimize="$optimize"
9536 ccflags="$ccflags"
9537 prototype="$prototype"
9538 define="$define"
9539 rm=$rm
9540 usethreads=$usethreads
9541 i_pthread=$i_pthread
9542 pthread_h_first=$pthread_h_first
9543 EOSH
9544
9545 $cat >> protochk <<'EOSH'
9546
9547 $rm -f try.c
9548 foo="$1"
9549 shift
9550 while test $# -ge 2; do
9551         case "$1" in
9552                 $define) echo "#include <$2>" >> try.c ;;
9553                 literal) echo "$2" >> try.c ;;
9554         esac
9555     # Extra magic for the benefit of systems that need pthread.h
9556     # to be included early to correctly detect threadsafe functions.
9557     # Such functions must guarantee themselves, though, that the usethreads
9558     # and i_pthread have been defined, before calling protochk.
9559     if test "$usethreads" = "$define" -a "$i_pthread" = "$define" -a "$pthread_h_first" = "$define" -a "$pthread_h_done" = ""; then
9560         echo "#include <pthread.h>" >> try.c
9561         pthread_h_done=yes
9562     fi
9563     shift 2
9564 done
9565 test "$prototype" = "$define"  && echo '#define CAN_PROTOTYPE' >> try.c
9566 cat >> try.c <<'EOCP'
9567 #ifdef CAN_PROTOTYPE
9568 #define _(args) args
9569 #else
9570 #define _(args) ()
9571 #endif
9572 EOCP
9573 echo "$foo" >> try.c
9574 echo 'int no_real_function_has_this_name _((void)) { return 0; }' >> try.c
9575 $cc $optimize $ccflags -c try.c > /dev/null 2>&1
9576 status=$?
9577 $rm -f try.[co]
9578 exit $status
9579 EOSH
9580 chmod +x protochk
9581 $eunicefix protochk
9582
9583 hasproto='varname=$1; func=$2; shift; shift;
9584 while $test $# -ge 2; do
9585         case "$1" in
9586         $define) echo "#include <$2>";;
9587         esac ;
9588     shift 2;
9589 done > try.c;
9590 $cppstdin $cppflags $cppminus < try.c > tryout.c 2>/dev/null;
9591 if $contains "$func.*(" tryout.c >/dev/null 2>&1; then
9592         echo "$func() prototype found.";
9593         val="$define";
9594 else
9595         echo "$func() prototype NOT found.";
9596         val="$undef";
9597 fi;
9598 set $varname;
9599 eval $setvar;
9600 $rm -f try.c tryout.c'
9601
9602 : see if sys/types.h has to be included
9603 set sys/types.h i_systypes
9604 eval $inhdr
9605
9606 : see if sys/select.h has to be included
9607 set sys/select.h i_sysselct
9608 eval $inhdr
9609
9610 hasfield='varname=$1; struct=$2; field=$3; shift; shift; shift;
9611 while $test $# -ge 2; do
9612         case "$1" in
9613         $define) echo "#include <$2>";;
9614         esac ;
9615     shift 2;
9616 done > try.c;
9617 echo "int main () { struct $struct foo; char* bar; bar = (char*)foo.$field; }" >> try.c;
9618 set try;
9619 if eval $compile; then
9620         val="$define";
9621 else
9622         val="$undef";
9623 fi;
9624 set $varname;
9625 eval $setvar;
9626 $rm -f try.c try.o'
9627
9628 : see if we should include time.h, sys/time.h, or both
9629 echo " "
9630 if test "X$timeincl" = X; then
9631         echo "Testing to see if we should include <time.h>, <sys/time.h> or both." >&4
9632         $echo $n "I'm now running the test program...$c"
9633         $cat >try.c <<EOCP
9634 #include <sys/types.h>
9635 #ifdef I_TIME
9636 #include <time.h>
9637 #endif
9638 #ifdef I_SYSTIME
9639 #ifdef SYSTIMEKERNEL
9640 #define KERNEL
9641 #endif
9642 #include <sys/time.h>
9643 #endif
9644 #ifdef I_SYSSELECT
9645 #include <sys/select.h>
9646 #endif
9647 #$i_stdlib I_STDLIB
9648 #ifdef I_STDLIB
9649 #include <stdlib.h>
9650 #endif
9651 int main()
9652 {
9653         struct tm foo;
9654 #ifdef S_TIMEVAL
9655         struct timeval bar;
9656 #endif
9657 #ifdef S_TIMEZONE
9658         struct timezone tzp;
9659 #endif
9660         if (foo.tm_sec == foo.tm_sec)
9661                 exit(0);
9662 #ifdef S_TIMEVAL
9663         if (bar.tv_sec == bar.tv_sec)
9664                 exit(0);
9665 #endif
9666         exit(1);
9667 }
9668 EOCP
9669         flags=''
9670         for s_timezone in '-DS_TIMEZONE' ''; do
9671         sysselect=''
9672         for s_timeval in '-DS_TIMEVAL' ''; do
9673         for i_systimek in '' '-DSYSTIMEKERNEL'; do
9674         for i_time in '' '-DI_TIME'; do
9675         for i_systime in '-DI_SYSTIME' ''; do
9676                 case "$flags" in
9677                 '') $echo $n ".$c"
9678                         set try $i_time $i_systime $i_systimek $sysselect $s_timeval $s_timezone
9679                         if eval $compile; then
9680                                 set X $i_time $i_systime $i_systimek $sysselect $s_timeval
9681                                 shift
9682                                 flags="$*"
9683                                 echo " "
9684                                 $echo $n "Succeeded with $flags$c"
9685                         fi
9686                         ;;
9687                 esac
9688         done
9689         done
9690         done
9691         done
9692         done
9693         timeincl=''
9694         echo " "
9695         case "$flags" in
9696         *SYSTIMEKERNEL*) i_systimek="$define"
9697                 timeincl=`./findhdr sys/time.h`
9698                 echo "We'll include <sys/time.h> with KERNEL defined." >&4;;
9699         *) i_systimek="$undef";;
9700         esac
9701         case "$flags" in
9702         *I_TIME*) i_time="$define"
9703                 timeincl=`./findhdr time.h`" $timeincl"
9704                 echo "We'll include <time.h>." >&4;;
9705         *) i_time="$undef";;
9706         esac
9707         case "$flags" in
9708         *I_SYSTIME*) i_systime="$define"
9709                 timeincl=`./findhdr sys/time.h`" $timeincl"
9710                 echo "We'll include <sys/time.h>." >&4;;
9711         *) i_systime="$undef";;
9712         esac
9713         $rm -f try.c try
9714 fi
9715 : see if struct tm knows about tm_zone
9716 case "$i_systime$i_time" in
9717 *$define*) 
9718         echo " "
9719         echo "Checking to see if your struct tm has tm_zone field..." >&4
9720         set d_tm_tm_zone tm tm_zone $i_systime sys/time.h $i_time time.h
9721         eval $hasfield
9722         ;;
9723 *)      val="$undef"
9724         set d_tm_tm_zone
9725         eval $setvar
9726         ;;
9727 esac
9728 case "$d_tm_tm_zone" in
9729 "$define")      echo "Yes, it does."   ;;
9730 *)              echo "No, it doesn't." ;;
9731 esac
9732 : see if struct tm knows about tm_gmtoff
9733 case "$i_systime$i_time" in
9734 *$define*) 
9735         echo " "
9736         echo "Checking to see if your struct tm has tm_gmtoff field..." >&4
9737         set d_tm_tm_gmtoff tm tm_gmtoff $i_systime sys/time.h $i_time time.h
9738         eval $hasfield
9739         ;;
9740 *)      val="$undef"
9741         set d_tm_tm_gmtoff
9742         eval $setvar
9743         ;;
9744 esac
9745 case "$d_tm_tm_gmtoff" in
9746 "$define")      echo "Yes, it does."   ;;
9747 *)              echo "No, it doesn't." ;;
9748 esac
9749
9750 : see if asctime_r exists
9751 set asctime_r d_asctime_r
9752 eval $inlibc
9753 case "$d_asctime_r" in
9754 "$define")
9755         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
9756         case "$d_asctime_r_proto:$usethreads" in
9757         ":define")      d_asctime_r_proto=define
9758                 set d_asctime_r_proto asctime_r $hdrs
9759                 eval $hasproto ;;
9760         *)      ;;
9761         esac
9762         case "$d_asctime_r_proto" in
9763         define)
9764         case "$asctime_r_proto" in
9765         ''|0) try='char* asctime_r(const struct tm*, char*);'
9766         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SB ;;
9767         esac
9768         case "$asctime_r_proto" in
9769         ''|0) try='char* asctime_r(const struct tm*, char*, int);'
9770         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SBI ;;
9771         esac
9772         case "$asctime_r_proto" in
9773         ''|0) try='int asctime_r(const struct tm*, char*);'
9774         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SB ;;
9775         esac
9776         case "$asctime_r_proto" in
9777         ''|0) try='int asctime_r(const struct tm*, char*, int);'
9778         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SBI ;;
9779         esac
9780         case "$asctime_r_proto" in
9781         ''|0)   d_asctime_r=undef
9782                 asctime_r_proto=0
9783                 echo "Disabling asctime_r, cannot determine prototype." >&4 ;;
9784         * )     case "$asctime_r_proto" in
9785                 REENTRANT_PROTO*) ;;
9786                 *) asctime_r_proto="REENTRANT_PROTO_$asctime_r_proto" ;;
9787                 esac
9788                 echo "Prototype: $try" ;;
9789         esac
9790         ;;
9791         *)      case "$usethreads" in
9792                 define) echo "asctime_r has no prototype, not using it." >&4 ;;
9793                 esac
9794                 d_asctime_r=undef
9795                 asctime_r_proto=0
9796                 ;;
9797         esac
9798         ;;
9799 *)      asctime_r_proto=0
9800         ;;
9801 esac
9802
9803 : see if atolf exists
9804 set atolf d_atolf
9805 eval $inlibc
9806
9807 : see if atoll exists
9808 set atoll d_atoll
9809 eval $inlibc
9810
9811 : Look for GNU-cc style attribute checking
9812 echo " "
9813 echo "Checking whether your compiler can handle __attribute__ ..." >&4
9814 $cat >attrib.c <<'EOCP'
9815 #include <stdio.h>
9816 void croak (char* pat,...) __attribute__((__format__(__printf__,1,2),noreturn));
9817 EOCP
9818 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
9819         if $contains 'warning' attrib.out >/dev/null 2>&1; then
9820                 echo "Your C compiler doesn't fully support __attribute__."
9821                 val="$undef"
9822         else
9823                 echo "Your C compiler supports __attribute__."
9824                 val="$define"
9825         fi
9826 else
9827         echo "Your C compiler doesn't seem to understand __attribute__ at all."
9828         val="$undef"
9829 fi
9830 set d_attribut
9831 eval $setvar
9832 $rm -f attrib*
9833
9834 : see if bcmp exists
9835 set bcmp d_bcmp
9836 eval $inlibc
9837
9838 : see if bcopy exists
9839 set bcopy d_bcopy
9840 eval $inlibc
9841
9842 : see if this is a unistd.h system
9843 set unistd.h i_unistd
9844 eval $inhdr
9845
9846 : see if getpgrp exists
9847 set getpgrp d_getpgrp
9848 eval $inlibc
9849
9850 case "$d_getpgrp" in
9851 "$define")
9852         echo " "
9853         echo "Checking to see which flavor of getpgrp is in use..."
9854         $cat >try.c <<EOP
9855 #$i_unistd I_UNISTD
9856 #include <sys/types.h>
9857 #ifdef I_UNISTD
9858 #  include <unistd.h>
9859 #endif
9860 #$i_stdlib I_STDLIB
9861 #ifdef I_STDLIB
9862 #include <stdlib.h>
9863 #endif
9864 int main()
9865 {
9866         if (getuid() == 0) {
9867                 printf("(I see you are running Configure as super-user...)\n");
9868                 setuid(1);
9869         }
9870 #ifdef TRY_BSD_PGRP
9871         if (getpgrp(1) == 0)
9872                 exit(0);
9873 #else
9874         if (getpgrp() > 0)
9875                 exit(0);
9876 #endif
9877         exit(1);
9878 }
9879 EOP
9880         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9881                 echo "You have to use getpgrp(pid) instead of getpgrp()." >&4
9882                 val="$define"
9883         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9884                 echo "You have to use getpgrp() instead of getpgrp(pid)." >&4
9885                 val="$undef"
9886         else
9887                 echo "I can't seem to compile and run the test program."
9888                 if ./usg; then
9889                         xxx="a USG one, i.e. you use getpgrp()."
9890                 else
9891                         # SVR4 systems can appear rather BSD-ish.
9892                         case "$i_unistd" in
9893                         $undef)
9894                                 xxx="a BSD one, i.e. you use getpgrp(pid)."
9895                                 val="$define"
9896                                 ;;
9897                         $define)
9898                                 xxx="probably a USG one, i.e. you use getpgrp()."
9899                                 val="$undef"
9900                                 ;;
9901                         esac
9902                 fi
9903                 echo "Assuming your getpgrp is $xxx" >&4
9904         fi
9905         ;;
9906 *) val="$undef";;
9907 esac
9908 set d_bsdgetpgrp
9909 eval $setvar
9910 $rm -f try try.*
9911
9912 : see if setpgrp exists
9913 set setpgrp d_setpgrp
9914 eval $inlibc
9915
9916 case "$d_setpgrp" in
9917 "$define")
9918         echo " "
9919         echo "Checking to see which flavor of setpgrp is in use..."
9920         $cat >try.c <<EOP
9921 #$i_unistd I_UNISTD
9922 #include <sys/types.h>
9923 #ifdef I_UNISTD
9924 #  include <unistd.h>
9925 #endif
9926 #$i_stdlib I_STDLIB
9927 #ifdef I_STDLIB
9928 #include <stdlib.h>
9929 #endif
9930 int main()
9931 {
9932         if (getuid() == 0) {
9933                 printf("(I see you are running Configure as super-user...)\n");
9934                 setuid(1);
9935         }
9936 #ifdef TRY_BSD_PGRP
9937         if (-1 == setpgrp(1, 1))
9938                 exit(0);
9939 #else
9940         if (setpgrp() != -1)
9941                 exit(0);
9942 #endif
9943         exit(1);
9944 }
9945 EOP
9946         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9947                 echo 'You have to use setpgrp(pid,pgrp) instead of setpgrp().' >&4
9948                 val="$define"
9949         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9950                 echo 'You have to use setpgrp() instead of setpgrp(pid,pgrp).' >&4
9951                 val="$undef"
9952         else
9953                 echo "(I can't seem to compile and run the test program.)"
9954                 if ./usg; then
9955                         xxx="a USG one, i.e. you use setpgrp()."
9956                 else
9957                         # SVR4 systems can appear rather BSD-ish.
9958                         case "$i_unistd" in
9959                         $undef)
9960                                 xxx="a BSD one, i.e. you use setpgrp(pid,pgrp)."
9961                                 val="$define"
9962                                 ;;
9963                         $define)
9964                                 xxx="probably a USG one, i.e. you use setpgrp()."
9965                                 val="$undef"
9966                                 ;;
9967                         esac
9968                 fi
9969                 echo "Assuming your setpgrp is $xxx" >&4
9970         fi
9971         ;;
9972 *) val="$undef";;
9973 esac
9974 set d_bsdsetpgrp
9975 eval $setvar
9976 $rm -f try try.*
9977 : see if bzero exists
9978 set bzero d_bzero
9979 eval $inlibc
9980
9981 : see if signal is declared as pointer to function returning int or void
9982 echo " "
9983 xxx=`./findhdr signal.h`
9984 $test "$xxx" && $cppstdin $cppminus $cppflags < $xxx >$$.tmp 2>/dev/null
9985 if $contains 'int.*\*[  ]*signal' $$.tmp >/dev/null 2>&1 ; then
9986         echo "You have int (*signal())() instead of void." >&4
9987         val="$undef"
9988 elif $contains 'void.*\*[       ]*signal' $$.tmp >/dev/null 2>&1 ; then
9989         echo "You have void (*signal())()." >&4
9990         val="$define"
9991 elif $contains 'extern[         ]*[(\*]*signal' $$.tmp >/dev/null 2>&1 ; then
9992         echo "You have int (*signal())() instead of void." >&4
9993         val="$undef"
9994 elif $contains 'void.*\*.*sig' $$.tmp >/dev/null 2>&1 ; then
9995         echo "You have void (*signal())()." >&4
9996         val="$define"
9997 else
9998         case "$d_voidsig" in
9999         '')
10000         echo "I can't determine whether signal handler returns void or int..." >&4
10001                 dflt=void
10002                 rp="What type does your signal handler return?"
10003                 . ./myread
10004                 case "$ans" in
10005                 v*) val="$define";;
10006                 *) val="$undef";;
10007                 esac;;
10008         "$define")
10009                 echo "As you already told me, signal handler returns void." >&4
10010                 val="$define"
10011                 ;;
10012         *)      echo "As you already told me, signal handler returns int." >&4
10013                 val="$undef"
10014                 ;;
10015         esac
10016 fi
10017 set d_voidsig
10018 eval $setvar
10019 case "$d_voidsig" in
10020 "$define") signal_t="void";;
10021 *) signal_t="int";;
10022 esac
10023 $rm -f $$.tmp
10024
10025 : check for ability to cast large floats to 32-bit ints.
10026 echo " "
10027 echo 'Checking whether your C compiler can cast large floats to int32.' >&4
10028 if $test "$intsize" -ge 4; then
10029         xxx=int
10030 else
10031         xxx=long
10032 fi
10033 $cat >try.c <<EOCP
10034 #include <stdio.h>
10035 #$i_stdlib I_STDLIB
10036 #ifdef I_STDLIB
10037 #include <stdlib.h>
10038 #endif
10039 #include <sys/types.h>
10040 #include <signal.h>
10041 $signal_t blech(s) int s; { exit(3); }
10042 int main()
10043 {
10044         $xxx i32;
10045         double f, g;
10046         int result = 0;
10047         char str[16];
10048         signal(SIGFPE, blech);
10049
10050         /* Don't let compiler optimize the test away.  Store the number 
10051            in a writable string for gcc to pass to sscanf under HP/UX.
10052         */
10053         sprintf(str, "2147483647");
10054         sscanf(str, "%lf", &f); /* f = (double) 0x7fffffff; */
10055         g = 10 * f;
10056         i32  = ($xxx) g;
10057
10058         /* x86 processors will probably give 0x8000 0000, which is a
10059        sign change.  We don't want that.  We want to mimic SPARC
10060            behavior here, which is to preserve the sign and give
10061            back 0x7fff ffff.
10062         */
10063         if (i32 != ($xxx) f)
10064                 result |= 1;
10065         exit(result);
10066 }
10067 EOCP
10068 set try
10069 if eval $compile_ok; then
10070         $run ./try
10071         yyy=$?
10072 else
10073         echo "(I can't seem to compile the test program--assuming it can't)"
10074         yyy=1
10075 fi
10076 case "$yyy" in
10077 0)      val="$define"
10078         echo "Yup, it can."
10079         ;;
10080 *)      val="$undef"
10081         echo "Nope, it can't."
10082         ;;
10083 esac
10084 set d_casti32
10085 eval $setvar
10086 $rm -f try try.*
10087
10088 : check for ability to cast negative floats to unsigned
10089 echo " "
10090 echo 'Checking whether your C compiler can cast negative float to unsigned.' >&4
10091 $cat >try.c <<EOCP
10092 #include <stdio.h>
10093 #$i_stdlib I_STDLIB
10094 #ifdef I_STDLIB
10095 #include <stdlib.h>
10096 #endif
10097 #include <sys/types.h>
10098 #include <signal.h>
10099 $signal_t blech(s) int s; { exit(7); }
10100 $signal_t blech_in_list(s) int s; { exit(4); }
10101 unsigned long dummy_long(p) unsigned long p; { return p; }
10102 unsigned int dummy_int(p) unsigned int p; { return p; }
10103 unsigned short dummy_short(p) unsigned short p; { return p; }
10104 int main()
10105 {
10106         double f;
10107         unsigned long along;
10108         unsigned int aint;
10109         unsigned short ashort;
10110         int result = 0;
10111         char str[16];
10112         
10113         /* Frustrate gcc-2.7.2's optimizer which failed this test with
10114            a direct f = -123. assignment.  gcc-2.8.0 reportedly
10115            optimized the whole file away
10116         */
10117         /* Store the number in a writable string for gcc to pass to 
10118            sscanf under HP/UX.
10119         */
10120         sprintf(str, "-123");
10121         sscanf(str, "%lf", &f);  /* f = -123.; */
10122
10123         signal(SIGFPE, blech);
10124         along = (unsigned long)f;
10125         aint = (unsigned int)f;
10126         ashort = (unsigned short)f;
10127         if (along != (unsigned long)-123)
10128                 result |= 1;
10129         if (aint != (unsigned int)-123)
10130                 result |= 1;
10131         if (ashort != (unsigned short)-123)
10132                 result |= 1;
10133         sprintf(str, "1073741824.");
10134         sscanf(str, "%lf", &f); /* f = (double)0x40000000; */
10135         f = f + f;
10136         along = 0;
10137         along = (unsigned long)f;
10138         if (along != 0x80000000)
10139                 result |= 2;
10140         f -= 1.;
10141         along = 0;
10142         along = (unsigned long)f;
10143         if (along != 0x7fffffff)
10144                 result |= 1;
10145         f += 2.;
10146         along = 0;
10147         along = (unsigned long)f;
10148         if (along != 0x80000001)
10149                 result |= 2;
10150         if (result)
10151                 exit(result);
10152         signal(SIGFPE, blech_in_list);
10153         sprintf(str, "123.");
10154         sscanf(str, "%lf", &f);  /* f = 123.; */
10155         along = dummy_long((unsigned long)f);
10156         aint = dummy_int((unsigned int)f);
10157         ashort = dummy_short((unsigned short)f);
10158         if (along != (unsigned long)123)
10159                 result |= 4;
10160         if (aint != (unsigned int)123)
10161                 result |= 4;
10162         if (ashort != (unsigned short)123)
10163                 result |= 4;
10164         exit(result);
10165
10166 }
10167 EOCP
10168 set try
10169 if eval $compile_ok; then
10170         $run ./try
10171         castflags=$?
10172 else
10173         echo "(I can't seem to compile the test program--assuming it can't)"
10174         castflags=7
10175 fi
10176 case "$castflags" in
10177 0)      val="$define"
10178         echo "Yup, it can."
10179         ;;
10180 *)      val="$undef"
10181         echo "Nope, it can't."
10182         ;;
10183 esac
10184 set d_castneg
10185 eval $setvar
10186 $rm -f try.*
10187
10188 : see if vprintf exists
10189 echo " "
10190 if set vprintf val -f d_vprintf; eval $csym; $val; then
10191         echo 'vprintf() found.' >&4
10192         val="$define"
10193         $cat >try.c <<EOF
10194 #include <varargs.h>
10195 #$i_stdlib I_STDLIB
10196 #ifdef I_STDLIB
10197 #include <stdlib.h>
10198 #endif
10199
10200 int main() { xxx("foo"); }
10201
10202 xxx(va_alist)
10203 va_dcl
10204 {
10205         va_list args;
10206         char buf[10];
10207
10208         va_start(args);
10209         exit((unsigned long)vsprintf(buf,"%s",args) > 10L);
10210 }
10211 EOF
10212         set try
10213         if eval $compile && $run ./try; then
10214                 echo "Your vsprintf() returns (int)." >&4
10215                 val2="$undef"
10216         else
10217                 echo "Your vsprintf() returns (char*)." >&4
10218                 val2="$define"
10219         fi
10220 else
10221         echo 'vprintf() NOT found.' >&4
10222                 val="$undef"
10223                 val2="$undef"
10224 fi
10225 $rm -f try try.*
10226 set d_vprintf
10227 eval $setvar
10228 val=$val2
10229 set d_charvspr
10230 eval $setvar
10231
10232 : see if chown exists
10233 set chown d_chown
10234 eval $inlibc
10235
10236 : see if chroot exists
10237 set chroot d_chroot
10238 eval $inlibc
10239
10240 : see if chsize exists
10241 set chsize d_chsize
10242 eval $inlibc
10243
10244 : see if class exists
10245 set class d_class
10246 eval $inlibc
10247
10248 hasstruct='varname=$1; struct=$2; shift; shift;
10249 while $test $# -ge 2; do
10250         case "$1" in
10251         $define) echo "#include <$2>";;
10252         esac ;
10253     shift 2;
10254 done > try.c;
10255 echo "int main () { struct $struct foo; }" >> try.c;
10256 set try;
10257 if eval $compile; then
10258         val="$define";
10259 else
10260         val="$undef";
10261 fi;
10262 set $varname;
10263 eval $setvar;
10264 $rm -f try.c try.o'
10265
10266 socketlib=''
10267 sockethdr=''
10268 : see whether socket exists
10269 echo " "
10270 $echo $n "Hmm... $c" >&4
10271 if set socket val -f d_socket; eval $csym; $val; then
10272         echo "Looks like you have Berkeley networking support." >&4
10273         d_socket="$define"
10274         if set setsockopt val -f; eval $csym; $val; then
10275                 d_oldsock="$undef"
10276         else
10277                 echo "...but it uses the old BSD 4.1c interface, rather than 4.2." >&4
10278                 d_oldsock="$define"
10279         fi
10280 else
10281         if $contains socklib libc.list >/dev/null 2>&1; then
10282                 echo "Looks like you have Berkeley networking support." >&4
10283                 d_socket="$define"
10284                 : we will have to assume that it supports the 4.2 BSD interface
10285                 d_oldsock="$undef"
10286         else
10287                 echo "You don't have Berkeley networking in libc$_a..." >&4
10288                 if test "X$d_socket" = "X$define"; then
10289                    echo "...but you seem to believe that you have sockets." >&4
10290                 else
10291                         for net in net socket
10292                         do
10293                                 if test -f /usr/lib/lib$net$_a; then
10294                                         ( ($nm $nm_opt /usr/lib/lib$net$_a | eval $nm_extract) ||  \
10295                                         $ar t /usr/lib/lib$net$_a) 2>/dev/null >> libc.list
10296                                         if $contains socket libc.list >/dev/null 2>&1; then
10297                                                 d_socket="$define"
10298                                                 socketlib="-l$net"
10299                                                 case "$net" in
10300                                                 net)
10301                                                         echo "...but the Wollongong group seems to have hacked it in." >&4
10302                                                         sockethdr="-I/usr/netinclude"
10303                                                         ;;
10304                                                 esac
10305                                                 echo "Found Berkeley sockets interface in lib$net." >&4 
10306                                                 if $contains setsockopt libc.list >/dev/null 2>&1; then
10307                                                         d_oldsock="$undef"
10308                                                 else
10309                                                         echo "...using the old BSD 4.1c interface, rather than 4.2." >&4
10310                                                         d_oldsock="$define"
10311                                                 fi
10312                                                 break
10313                                         fi
10314                                 fi
10315                         done
10316                         if test "X$d_socket" != "X$define"; then
10317                            echo "or anywhere else I see." >&4
10318                            d_socket="$undef"
10319                            d_oldsock="$undef"
10320                         fi
10321                 fi
10322         fi
10323 fi
10324
10325 : see if socketpair exists
10326 set socketpair d_sockpair
10327 eval $inlibc
10328
10329
10330 echo " "
10331 echo "Checking the availability of certain socket constants..." >&4
10332 for ENUM in MSG_CTRUNC MSG_DONTROUTE MSG_OOB MSG_PEEK MSG_PROXY SCM_RIGHTS; do
10333         enum=`$echo $ENUM|./tr '[A-Z]' '[a-z]'`
10334         $cat >try.c <<EOF
10335 #include <sys/types.h>
10336 #include <sys/socket.h>
10337 int main() {
10338     int i = $ENUM;
10339 }
10340 EOF
10341         val="$undef"
10342         set try; if eval $compile; then
10343                 val="$define"
10344         fi
10345         set d_${enum}; eval $setvar
10346         $rm -f try.c try
10347 done
10348
10349 : see if this is a sys/uio.h system
10350 set sys/uio.h i_sysuio
10351 eval $inhdr
10352
10353
10354 echo " "
10355 echo "Checking to see if your system supports struct cmsghdr..." >&4
10356 set d_cmsghdr_s cmsghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
10357 eval $hasstruct
10358 case "$d_cmsghdr_s" in
10359 "$define")      echo "Yes, it does."   ;;
10360 *)              echo "No, it doesn't." ;;
10361 esac
10362
10363
10364 : check for const keyword
10365 echo " "
10366 echo 'Checking to see if your C compiler knows about "const"...' >&4
10367 $cat >const.c <<'EOCP'
10368 typedef struct spug { int drokk; } spug;
10369 int main()
10370 {
10371         const char *foo;
10372         const spug y;
10373 }
10374 EOCP
10375 if $cc -c $ccflags const.c >/dev/null 2>&1 ; then
10376         val="$define"
10377         echo "Yup, it does."
10378 else
10379         val="$undef"
10380         echo "Nope, it doesn't."
10381 fi
10382 set d_const
10383 eval $setvar
10384
10385 : see if copysignl exists
10386 set copysignl d_copysignl
10387 eval $inlibc
10388
10389 : see if crypt exists
10390 echo " "
10391 set crypt d_crypt
10392 eval $inlibc
10393 case "$d_crypt" in
10394 $define) cryptlib='' ;;
10395 *)      if set crypt val -f d_crypt; eval $csym; $val; then
10396                 echo 'crypt() found.' >&4
10397                 val="$define"
10398                 cryptlib=''
10399         else
10400                 cryptlib=`./loc Slibcrypt$_a "" $xlibpth`
10401                 if $test -z "$cryptlib"; then
10402                         cryptlib=`./loc Mlibcrypt$_a "" $xlibpth`
10403                 else
10404                         cryptlib=-lcrypt
10405                 fi
10406                 if $test -z "$cryptlib"; then
10407                         cryptlib=`./loc Llibcrypt$_a "" $xlibpth`
10408                 else
10409                         cryptlib=-lcrypt
10410                 fi
10411                 if $test -z "$cryptlib"; then
10412                         cryptlib=`./loc libcrypt$_a "" $libpth`
10413                 else
10414                         cryptlib=-lcrypt
10415                 fi
10416                 if $test -z "$cryptlib"; then
10417                         echo 'crypt() NOT found.' >&4
10418                         val="$undef"
10419                 else
10420                         val="$define"
10421                 fi
10422         fi
10423         set d_crypt
10424         eval $setvar
10425         ;;
10426 esac
10427
10428 : see if this is a crypt.h system
10429 set crypt.h i_crypt
10430 eval $inhdr
10431
10432 : see if crypt_r exists
10433 set crypt_r d_crypt_r
10434 eval $inlibc
10435 case "$d_crypt_r" in
10436 "$define")
10437         hdrs="$i_systypes sys/types.h define stdio.h $i_crypt crypt.h"
10438         case "$d_crypt_r_proto:$usethreads" in
10439         ":define")      d_crypt_r_proto=define
10440                 set d_crypt_r_proto crypt_r $hdrs
10441                 eval $hasproto ;;
10442         *)      ;;
10443         esac
10444         case "$d_crypt_r_proto" in
10445         define)
10446         case "$crypt_r_proto" in
10447         ''|0) try='char* crypt_r(const char*, const char*, struct crypt_data*);'
10448         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCS ;;
10449         esac
10450         case "$crypt_r_proto" in
10451         ''|0) try='char* crypt_r(const char*, const char*, CRYPTD*);'
10452         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCD ;;
10453         esac
10454         case "$crypt_r_proto" in
10455         ''|0)   d_crypt_r=undef
10456                 crypt_r_proto=0
10457                 echo "Disabling crypt_r, cannot determine prototype." >&4 ;;
10458         * )     case "$crypt_r_proto" in
10459                 REENTRANT_PROTO*) ;;
10460                 *) crypt_r_proto="REENTRANT_PROTO_$crypt_r_proto" ;;
10461                 esac
10462                 echo "Prototype: $try" ;;
10463         esac
10464         ;;
10465         *)      case "$usethreads" in
10466                 define) echo "crypt_r has no prototype, not using it." >&4 ;;
10467                 esac
10468                 d_crypt_r=undef
10469                 crypt_r_proto=0
10470                 ;;
10471         esac
10472         ;;
10473 *)      crypt_r_proto=0
10474         ;;
10475 esac
10476
10477 : get csh whereabouts
10478 case "$csh" in
10479 'csh') val="$undef" ;;
10480 *) val="$define" ;;
10481 esac
10482 set d_csh
10483 eval $setvar
10484 : Respect a hint or command line value for full_csh.
10485 case "$full_csh" in
10486 '') full_csh=$csh ;;
10487 esac
10488
10489 : see if ctermid_r exists
10490 set ctermid_r d_ctermid_r
10491 eval $inlibc
10492 case "$d_ctermid_r" in
10493 "$define")
10494         hdrs="$i_systypes sys/types.h define stdio.h "
10495         case "$d_ctermid_r_proto:$usethreads" in
10496         ":define")      d_ctermid_r_proto=define
10497                 set d_ctermid_r_proto ctermid_r $hdrs
10498                 eval $hasproto ;;
10499         *)      ;;
10500         esac
10501         case "$d_ctermid_r_proto" in
10502         define)
10503         case "$ctermid_r_proto" in
10504         ''|0) try='char* ctermid_r(char*);'
10505         ./protochk "extern $try" $hdrs && ctermid_r_proto=B_B ;;
10506         esac
10507         case "$ctermid_r_proto" in
10508         ''|0)   d_ctermid_r=undef
10509                 ctermid_r_proto=0
10510                 echo "Disabling ctermid_r, cannot determine prototype." >&4 ;;
10511         * )     case "$ctermid_r_proto" in
10512                 REENTRANT_PROTO*) ;;
10513                 *) ctermid_r_proto="REENTRANT_PROTO_$ctermid_r_proto" ;;
10514                 esac
10515                 echo "Prototype: $try" ;;
10516         esac
10517         ;;
10518         *)      case "$usethreads" in
10519                 define) echo "ctermid_r has no prototype, not using it." >&4 ;;
10520                 esac
10521                 d_ctermid_r=undef
10522                 ctermid_r_proto=0
10523                 ;;
10524         esac
10525         ;;
10526 *)      ctermid_r_proto=0
10527         ;;
10528 esac
10529
10530 : see if ctime_r exists
10531 set ctime_r d_ctime_r
10532 eval $inlibc
10533 case "$d_ctime_r" in
10534 "$define")
10535         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
10536         case "$d_ctime_r_proto:$usethreads" in
10537         ":define")      d_ctime_r_proto=define
10538                 set d_ctime_r_proto ctime_r $hdrs
10539                 eval $hasproto ;;
10540         *)      ;;
10541         esac
10542         case "$d_ctime_r_proto" in
10543         define)
10544         case "$ctime_r_proto" in
10545         ''|0) try='char* ctime_r(const time_t*, char*);'
10546         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SB ;;
10547         esac
10548         case "$ctime_r_proto" in
10549         ''|0) try='char* ctime_r(const time_t*, char*, int);'
10550         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SBI ;;
10551         esac
10552         case "$ctime_r_proto" in
10553         ''|0) try='int ctime_r(const time_t*, char*);'
10554         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SB ;;
10555         esac
10556         case "$ctime_r_proto" in
10557         ''|0) try='int ctime_r(const time_t*, char*, int);'
10558         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SBI ;;
10559         esac
10560         case "$ctime_r_proto" in
10561         ''|0)   d_ctime_r=undef
10562                 ctime_r_proto=0
10563                 echo "Disabling ctime_r, cannot determine prototype." >&4 ;;
10564         * )     case "$ctime_r_proto" in
10565                 REENTRANT_PROTO*) ;;
10566                 *) ctime_r_proto="REENTRANT_PROTO_$ctime_r_proto" ;;
10567                 esac
10568                 echo "Prototype: $try" ;;
10569         esac
10570         ;;
10571         *)      case "$usethreads" in
10572                 define) echo "ctime_r has no prototype, not using it." >&4 ;;
10573                 esac
10574                 d_ctime_r=undef
10575                 ctime_r_proto=0
10576                 ;;
10577         esac
10578         ;;
10579 *)      ctime_r_proto=0
10580         ;;
10581 esac
10582
10583 : see if cuserid exists
10584 set cuserid d_cuserid
10585 eval $inlibc
10586
10587 : see if this is a limits.h system
10588 set limits.h i_limits
10589 eval $inhdr
10590
10591 : see if this is a float.h system
10592 set float.h i_float
10593 eval $inhdr
10594
10595 : See if number of significant digits in a double precision number is known
10596 echo " "
10597 $cat >dbl_dig.c <<EOM
10598 #$i_limits I_LIMITS
10599 #$i_float I_FLOAT
10600 #ifdef I_LIMITS
10601 #include <limits.h>
10602 #endif
10603 #ifdef I_FLOAT
10604 #include <float.h>
10605 #endif
10606 #ifdef DBL_DIG
10607 printf("Contains DBL_DIG");
10608 #endif
10609 EOM
10610 $cppstdin $cppflags $cppminus < dbl_dig.c >dbl_dig.E 2>/dev/null
10611 if $contains 'DBL_DIG' dbl_dig.E >/dev/null 2>&1; then
10612         echo "DBL_DIG found." >&4
10613         val="$define"
10614 else
10615         echo "DBL_DIG NOT found." >&4
10616         val="$undef"
10617 fi
10618 $rm -f dbl_dig.?
10619 set d_dbl_dig
10620 eval $setvar
10621
10622 : see if dbm.h is available
10623 : see if dbmclose exists
10624 set dbmclose d_dbmclose
10625 eval $inlibc
10626
10627 case "$d_dbmclose" in
10628 $define)
10629         set dbm.h i_dbm
10630         eval $inhdr
10631         case "$i_dbm" in
10632         $define)
10633                 val="$undef"
10634                 set i_rpcsvcdbm
10635                 eval $setvar
10636                 ;;
10637         *)      set rpcsvc/dbm.h i_rpcsvcdbm
10638                 eval $inhdr
10639                 ;;
10640         esac
10641         ;;
10642 *)      echo "We won't be including <dbm.h>"
10643         val="$undef"
10644         set i_dbm
10645         eval $setvar
10646         val="$undef"
10647         set i_rpcsvcdbm
10648         eval $setvar
10649         ;;
10650 esac
10651
10652 : see if prototype for dbminit is available
10653 echo " "
10654 set d_dbminitproto dbminit $i_dbm dbm.h
10655 eval $hasproto
10656
10657 : see if difftime exists
10658 set difftime d_difftime
10659 eval $inlibc
10660
10661 : see if this is a dirent system
10662 echo " "
10663 if xinc=`./findhdr dirent.h`; $test "$xinc"; then
10664         val="$define"
10665         echo "<dirent.h> found." >&4
10666 else
10667         val="$undef"
10668         if xinc=`./findhdr sys/dir.h`; $test "$xinc"; then
10669                 echo "<sys/dir.h> found." >&4
10670                 echo " "
10671         else
10672                 xinc=`./findhdr sys/ndir.h`
10673         fi
10674         echo "<dirent.h> NOT found." >&4
10675 fi
10676 set i_dirent
10677 eval $setvar
10678
10679 : Look for type of directory structure.
10680 echo " "
10681 $cppstdin $cppflags $cppminus < "$xinc" > try.c
10682
10683 case "$direntrytype" in
10684 ''|' ')
10685         case "$i_dirent" in
10686         $define) guess1='struct dirent' ;;
10687         *) guess1='struct direct'  ;;
10688         esac
10689         ;;
10690 *)      guess1="$direntrytype"
10691         ;;
10692 esac
10693
10694 case "$guess1" in
10695 'struct dirent') guess2='struct direct' ;;
10696 *) guess2='struct dirent' ;;
10697 esac
10698                 
10699 if $contains "$guess1" try.c >/dev/null 2>&1; then
10700         direntrytype="$guess1"
10701         echo "Your directory entries are $direntrytype." >&4
10702 elif $contains "$guess2" try.c >/dev/null 2>&1; then
10703         direntrytype="$guess2"
10704         echo "Your directory entries seem to be $direntrytype." >&4
10705 else
10706         echo "I don't recognize your system's directory entries." >&4
10707         rp="What type is used for directory entries on this system?"
10708         dflt="$guess1"
10709         . ./myread
10710         direntrytype="$ans"
10711 fi
10712 $rm -f try.c
10713
10714
10715 : see if the directory entry stores field length
10716 echo " "
10717 $cppstdin $cppflags $cppminus < "$xinc" > try.c
10718 if $contains 'd_namlen' try.c >/dev/null 2>&1; then
10719         echo "Good, your directory entry keeps length information in d_namlen." >&4
10720         val="$define"
10721 else
10722         echo "Your directory entry does not know about the d_namlen field." >&4
10723         val="$undef"
10724 fi
10725 set d_dirnamlen
10726 eval $setvar
10727 $rm -f try.c
10728
10729 : see if this is an sysdir system
10730 set sys/dir.h i_sysdir
10731 eval $inhdr
10732
10733 : see if this is an sysndir system
10734 set sys/ndir.h i_sysndir
10735 eval $inhdr
10736
10737 : Look for dirfd
10738 echo " "
10739 $cat >dirfd.c <<EOM
10740 #include <stdio.h>
10741 #$i_stdlib I_STDLIB
10742 #ifdef I_STDLIB
10743 #include <stdlib.h>
10744 #endif
10745 #$i_dirent I_DIRENT             /**/
10746 #$i_sysdir I_SYS_DIR            /**/
10747 #$i_sysndir I_SYS_NDIR          /**/
10748 #$i_systypes I_SYS_TYPES        /**/
10749 #if defined(I_SYS_TYPES)
10750 #include <sys/types.h>
10751 #endif
10752 #if defined(I_DIRENT)
10753 #include <dirent.h>
10754 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
10755 #include <sys/dir.h>
10756 #endif
10757 #else
10758 #ifdef I_SYS_NDIR
10759 #include <sys/ndir.h>
10760 #else
10761 #ifdef I_SYS_DIR
10762 #ifdef hp9000s500
10763 #include <ndir.h>       /* may be wrong in the future */
10764 #else
10765 #include <sys/dir.h>
10766 #endif
10767 #endif
10768 #endif
10769 #endif 
10770 int main() {
10771         DIR *dirp = opendir(".");
10772         if (dirfd(dirp) >= 0)
10773                 exit(0);
10774         else
10775                 exit(1);
10776 }
10777 EOM
10778 set dirfd
10779 if eval $compile; then
10780         val="$define"
10781 fi
10782 case "$val" in
10783 $define)        echo "dirfd() found." >&4       ;;
10784 *)              echo "dirfd() NOT found." >&4   ;;
10785 esac
10786 set d_dirfd
10787 eval $setvar
10788 $rm -f dirfd*
10789
10790 : see if dlerror exists
10791 xxx_runnm="$runnm"
10792 runnm=false
10793 set dlerror d_dlerror
10794 eval $inlibc
10795 runnm="$xxx_runnm"
10796
10797 : see if dlfcn is available
10798 set dlfcn.h i_dlfcn
10799 eval $inhdr
10800
10801 case "$usedl" in
10802 $define|y|true)
10803         $cat << EOM
10804
10805 On a few systems, the dynamically loaded modules that perl generates and uses
10806 will need a different extension than shared libs. The default will probably
10807 be appropriate.
10808
10809 EOM
10810         case "$dlext" in
10811         '')     dflt="$so" ;;
10812         *)      dflt="$dlext" ;;
10813         esac
10814         rp='What is the extension of dynamically loaded modules'
10815         . ./myread
10816         dlext="$ans"
10817         ;;
10818 *)
10819         dlext="none"
10820         ;;
10821 esac
10822
10823 : Check if dlsym need a leading underscore
10824 echo " "
10825 val="$undef"
10826
10827 case "$dlsrc" in
10828 dl_dlopen.xs)
10829         echo "Checking whether your dlsym() needs a leading underscore ..." >&4
10830         $cat >dyna.c <<'EOM'
10831 fred () { }
10832 EOM
10833
10834 $cat >fred.c<<EOM
10835
10836 #include <stdio.h>
10837 #$i_stdlib I_STDLIB
10838 #ifdef I_STDLIB
10839 #include <stdlib.h>
10840 #endif
10841 #$i_dlfcn I_DLFCN
10842 #ifdef I_DLFCN
10843 #include <dlfcn.h>      /* the dynamic linker include file for SunOS/Solaris */
10844 #else
10845 #include <sys/types.h>
10846 #include <nlist.h>
10847 #include <link.h>
10848 #endif
10849
10850 extern int fred() ;
10851
10852 int main()
10853 {
10854     void * handle ;
10855     void * symbol ;
10856 #ifndef RTLD_LAZY
10857     int mode = 1 ;
10858 #else
10859     int mode = RTLD_LAZY ;
10860 #endif
10861     handle = dlopen("./dyna.$dlext", mode) ;
10862     if (handle == NULL) {
10863         printf ("1\n") ;
10864         fflush (stdout) ;
10865         exit(0);
10866     }
10867     symbol = dlsym(handle, "fred") ;
10868     if (symbol == NULL) {
10869         /* try putting a leading underscore */
10870         symbol = dlsym(handle, "_fred") ;
10871         if (symbol == NULL) {
10872             printf ("2\n") ;
10873             fflush (stdout) ;
10874             exit(0);
10875         }
10876         printf ("3\n") ;
10877     }
10878     else
10879         printf ("4\n") ;
10880     fflush (stdout) ;
10881     exit(0);
10882 }
10883 EOM
10884         : Call the object file tmp-dyna.o in case dlext=o.
10885         if $cc $ccflags $cccdlflags -c dyna.c > /dev/null 2>&1 && 
10886                 mv dyna${_o} tmp-dyna${_o} > /dev/null 2>&1 && 
10887                 $ld -o dyna.$dlext $ldflags $lddlflags tmp-dyna${_o} > /dev/null 2>&1 && 
10888                 $cc -o fred $ccflags $ldflags $cccdlflags $ccdlflags fred.c $libs > /dev/null 2>&1 && $to dyna.$dlext; then
10889                 xxx=`$run ./fred`
10890                 case $xxx in
10891                 1)      echo "Test program failed using dlopen." >&4
10892                         echo "Perhaps you should not use dynamic loading." >&4;;
10893                 2)      echo "Test program failed using dlsym." >&4
10894                         echo "Perhaps you should not use dynamic loading." >&4;;
10895                 3)      echo "dlsym needs a leading underscore" >&4
10896                         val="$define" ;;
10897                 4)      echo "dlsym doesn't need a leading underscore." >&4;;
10898                 esac
10899         else
10900                 echo "I can't compile and run the test program." >&4
10901                 echo "I'm guessing that dlsym doesn't need a leading underscore." >&4
10902         fi
10903         ;;
10904 esac
10905                 
10906 $rm -f fred fred.* dyna.$dlext dyna.* tmp-dyna.*
10907
10908 set d_dlsymun
10909 eval $setvar
10910
10911 : see if drand48_r exists
10912 set drand48_r d_drand48_r
10913 eval $inlibc
10914 case "$d_drand48_r" in
10915 "$define")
10916         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
10917         case "$d_drand48_r_proto:$usethreads" in
10918         ":define")      d_drand48_r_proto=define
10919                 set d_drand48_r_proto drand48_r $hdrs
10920                 eval $hasproto ;;
10921         *)      ;;
10922         esac
10923         case "$d_drand48_r_proto" in
10924         define)
10925         case "$drand48_r_proto" in
10926         ''|0) try='int drand48_r(struct drand48_data*, double*);'
10927         ./protochk "extern $try" $hdrs && drand48_r_proto=I_ST ;;
10928         esac
10929         case "$drand48_r_proto" in
10930         ''|0)   d_drand48_r=undef
10931                 drand48_r_proto=0
10932                 echo "Disabling drand48_r, cannot determine prototype." >&4 ;;
10933         * )     case "$drand48_r_proto" in
10934                 REENTRANT_PROTO*) ;;
10935                 *) drand48_r_proto="REENTRANT_PROTO_$drand48_r_proto" ;;
10936                 esac
10937                 echo "Prototype: $try" ;;
10938         esac
10939         ;;
10940         *)      case "$usethreads" in
10941                 define) echo "drand48_r has no prototype, not using it." >&4 ;;
10942                 esac
10943                 d_drand48_r=undef
10944                 drand48_r_proto=0
10945                 ;;
10946         esac
10947         ;;
10948 *)      drand48_r_proto=0
10949         ;;
10950 esac
10951
10952 : see if prototype for drand48 is available
10953 echo " "
10954 set d_drand48proto drand48 $i_stdlib stdlib.h $i_unistd unistd.h
10955 eval $hasproto
10956
10957 : see if dup2 exists
10958 set dup2 d_dup2
10959 eval $inlibc
10960
10961 : see if eaccess exists
10962 set eaccess d_eaccess
10963 eval $inlibc
10964
10965 : see if endgrent exists
10966 set endgrent d_endgrent
10967 eval $inlibc
10968
10969 : see if this is an grp system
10970 set grp.h i_grp
10971 eval $inhdr
10972
10973 case "$i_grp" in
10974 $define)
10975         xxx=`./findhdr grp.h`
10976         $cppstdin $cppflags $cppminus < $xxx >$$.h
10977
10978         if $contains 'gr_passwd' $$.h >/dev/null 2>&1; then
10979                 val="$define"
10980         else
10981                 val="$undef"
10982         fi
10983         set d_grpasswd
10984         eval $setvar
10985
10986         $rm -f $$.h
10987         ;;
10988 *)
10989         val="$undef";
10990         set d_grpasswd; eval $setvar
10991         ;;
10992 esac
10993
10994 : see if endgrent_r exists
10995 set endgrent_r d_endgrent_r
10996 eval $inlibc
10997 case "$d_endgrent_r" in
10998 "$define")
10999         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
11000         case "$d_endgrent_r_proto:$usethreads" in
11001         ":define")      d_endgrent_r_proto=define
11002                 set d_endgrent_r_proto endgrent_r $hdrs
11003                 eval $hasproto ;;
11004         *)      ;;
11005         esac
11006         case "$d_endgrent_r_proto" in
11007         define)
11008         case "$endgrent_r_proto" in
11009         ''|0) try='int endgrent_r(FILE**);'
11010         ./protochk "extern $try" $hdrs && endgrent_r_proto=I_H ;;
11011         esac
11012         case "$endgrent_r_proto" in
11013         ''|0) try='void endgrent_r(FILE**);'
11014         ./protochk "extern $try" $hdrs && endgrent_r_proto=V_H ;;
11015         esac
11016         case "$endgrent_r_proto" in
11017         ''|0)   d_endgrent_r=undef
11018                 endgrent_r_proto=0
11019                 echo "Disabling endgrent_r, cannot determine prototype." >&4 ;;
11020         * )     case "$endgrent_r_proto" in
11021                 REENTRANT_PROTO*) ;;
11022                 *) endgrent_r_proto="REENTRANT_PROTO_$endgrent_r_proto" ;;
11023                 esac
11024                 echo "Prototype: $try" ;;
11025         esac
11026         ;;
11027         *)      case "$usethreads" in
11028                 define) echo "endgrent_r has no prototype, not using it." >&4 ;;
11029                 esac
11030                 d_endgrent_r=undef
11031                 endgrent_r_proto=0
11032                 ;;
11033         esac
11034         ;;
11035 *)      endgrent_r_proto=0
11036         ;;
11037 esac
11038
11039 : see if endhostent exists
11040 set endhostent d_endhent
11041 eval $inlibc
11042
11043 : see if this is a netdb.h system
11044 set netdb.h i_netdb
11045 eval $inhdr
11046
11047 : see if endhostent_r exists
11048 set endhostent_r d_endhostent_r
11049 eval $inlibc
11050 case "$d_endhostent_r" in
11051 "$define")
11052         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11053         case "$d_endhostent_r_proto:$usethreads" in
11054         ":define")      d_endhostent_r_proto=define
11055                 set d_endhostent_r_proto endhostent_r $hdrs
11056                 eval $hasproto ;;
11057         *)      ;;
11058         esac
11059         case "$d_endhostent_r_proto" in
11060         define)
11061         case "$endhostent_r_proto" in
11062         ''|0) try='int endhostent_r(struct hostent_data*);'
11063         ./protochk "extern $try" $hdrs && endhostent_r_proto=I_D ;;
11064         esac
11065         case "$endhostent_r_proto" in
11066         ''|0) try='void endhostent_r(struct hostent_data*);'
11067         ./protochk "extern $try" $hdrs && endhostent_r_proto=V_D ;;
11068         esac
11069         case "$endhostent_r_proto" in
11070         ''|0)   d_endhostent_r=undef
11071                 endhostent_r_proto=0
11072                 echo "Disabling endhostent_r, cannot determine prototype." >&4 ;;
11073         * )     case "$endhostent_r_proto" in
11074                 REENTRANT_PROTO*) ;;
11075                 *) endhostent_r_proto="REENTRANT_PROTO_$endhostent_r_proto" ;;
11076                 esac
11077                 echo "Prototype: $try" ;;
11078         esac
11079         ;;
11080         *)      case "$usethreads" in
11081                 define) echo "endhostent_r has no prototype, not using it." >&4 ;;
11082                 esac
11083                 d_endhostent_r=undef
11084                 endhostent_r_proto=0
11085                 ;;
11086         esac
11087         ;;
11088 *)      endhostent_r_proto=0
11089         ;;
11090 esac
11091
11092 : see if endnetent exists
11093 set endnetent d_endnent
11094 eval $inlibc
11095
11096 : see if endnetent_r exists
11097 set endnetent_r d_endnetent_r
11098 eval $inlibc
11099 case "$d_endnetent_r" in
11100 "$define")
11101         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11102         case "$d_endnetent_r_proto:$usethreads" in
11103         ":define")      d_endnetent_r_proto=define
11104                 set d_endnetent_r_proto endnetent_r $hdrs
11105                 eval $hasproto ;;
11106         *)      ;;
11107         esac
11108         case "$d_endnetent_r_proto" in
11109         define)
11110         case "$endnetent_r_proto" in
11111         ''|0) try='int endnetent_r(struct netent_data*);'
11112         ./protochk "extern $try" $hdrs && endnetent_r_proto=I_D ;;
11113         esac
11114         case "$endnetent_r_proto" in
11115         ''|0) try='void endnetent_r(struct netent_data*);'
11116         ./protochk "extern $try" $hdrs && endnetent_r_proto=V_D ;;
11117         esac
11118         case "$endnetent_r_proto" in
11119         ''|0)   d_endnetent_r=undef
11120                 endnetent_r_proto=0
11121                 echo "Disabling endnetent_r, cannot determine prototype." >&4 ;;
11122         * )     case "$endnetent_r_proto" in
11123                 REENTRANT_PROTO*) ;;
11124                 *) endnetent_r_proto="REENTRANT_PROTO_$endnetent_r_proto" ;;
11125                 esac
11126                 echo "Prototype: $try" ;;
11127         esac
11128         ;;
11129         *)      case "$usethreads" in
11130                 define) echo "endnetent_r has no prototype, not using it." >&4 ;;
11131                 esac
11132                 d_endnetent_r=undef
11133                 endnetent_r_proto=0
11134                 ;;
11135         esac
11136         ;;
11137 *)      endnetent_r_proto=0
11138         ;;
11139 esac
11140
11141 : see if endprotoent exists
11142 set endprotoent d_endpent
11143 eval $inlibc
11144
11145 : see if endprotoent_r exists
11146 set endprotoent_r d_endprotoent_r
11147 eval $inlibc
11148 case "$d_endprotoent_r" in
11149 "$define")
11150         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11151         case "$d_endprotoent_r_proto:$usethreads" in
11152         ":define")      d_endprotoent_r_proto=define
11153                 set d_endprotoent_r_proto endprotoent_r $hdrs
11154                 eval $hasproto ;;
11155         *)      ;;
11156         esac
11157         case "$d_endprotoent_r_proto" in
11158         define)
11159         case "$endprotoent_r_proto" in
11160         ''|0) try='int endprotoent_r(struct protoent_data*);'
11161         ./protochk "extern $try" $hdrs && endprotoent_r_proto=I_D ;;
11162         esac
11163         case "$endprotoent_r_proto" in
11164         ''|0) try='void endprotoent_r(struct protoent_data*);'
11165         ./protochk "extern $try" $hdrs && endprotoent_r_proto=V_D ;;
11166         esac
11167         case "$endprotoent_r_proto" in
11168         ''|0)   d_endprotoent_r=undef
11169                 endprotoent_r_proto=0
11170                 echo "Disabling endprotoent_r, cannot determine prototype." >&4 ;;
11171         * )     case "$endprotoent_r_proto" in
11172                 REENTRANT_PROTO*) ;;
11173                 *) endprotoent_r_proto="REENTRANT_PROTO_$endprotoent_r_proto" ;;
11174                 esac
11175                 echo "Prototype: $try" ;;
11176         esac
11177         ;;
11178         *)      case "$usethreads" in
11179                 define) echo "endprotoent_r has no prototype, not using it." >&4 ;;
11180                 esac
11181                 d_endprotoent_r=undef
11182                 endprotoent_r_proto=0
11183                 ;;
11184         esac
11185         ;;
11186 *)      endprotoent_r_proto=0
11187         ;;
11188 esac
11189
11190 : see if endpwent exists
11191 set endpwent d_endpwent
11192 eval $inlibc
11193
11194 : see if this is a pwd.h system
11195 set pwd.h i_pwd
11196 eval $inhdr
11197
11198 case "$i_pwd" in
11199 $define)
11200         xxx=`./findhdr pwd.h`
11201         $cppstdin $cppflags $cppminus < $xxx >$$.h
11202
11203         if $contains 'pw_quota' $$.h >/dev/null 2>&1; then
11204                 val="$define"
11205         else
11206                 val="$undef"
11207         fi
11208         set d_pwquota
11209         eval $setvar
11210
11211         if $contains 'pw_age' $$.h >/dev/null 2>&1; then
11212                 val="$define"
11213         else
11214                 val="$undef"
11215         fi
11216         set d_pwage
11217         eval $setvar
11218
11219         if $contains 'pw_change' $$.h >/dev/null 2>&1; then
11220                 val="$define"
11221         else
11222                 val="$undef"
11223         fi
11224         set d_pwchange
11225         eval $setvar
11226
11227         if $contains 'pw_class' $$.h >/dev/null 2>&1; then
11228                 val="$define"
11229         else
11230                 val="$undef"
11231         fi
11232         set d_pwclass
11233         eval $setvar
11234
11235         if $contains 'pw_expire' $$.h >/dev/null 2>&1; then
11236                 val="$define"
11237         else
11238                 val="$undef"
11239         fi
11240         set d_pwexpire
11241         eval $setvar
11242
11243         if $contains 'pw_comment' $$.h >/dev/null 2>&1; then
11244                 val="$define"
11245         else
11246                 val="$undef"
11247         fi
11248         set d_pwcomment
11249         eval $setvar
11250
11251         if $contains 'pw_gecos' $$.h >/dev/null 2>&1; then
11252                 val="$define"
11253         else
11254                 val="$undef"
11255         fi
11256         set d_pwgecos
11257         eval $setvar
11258
11259         if $contains 'pw_passwd' $$.h >/dev/null 2>&1; then
11260                 val="$define"
11261         else
11262                 val="$undef"
11263         fi
11264         set d_pwpasswd
11265         eval $setvar
11266
11267         $rm -f $$.h
11268         ;;
11269 *)
11270         val="$undef"; 
11271         set d_pwquota; eval $setvar
11272         set d_pwage; eval $setvar
11273         set d_pwchange; eval $setvar
11274         set d_pwclass; eval $setvar
11275         set d_pwexpire; eval $setvar
11276         set d_pwcomment; eval $setvar
11277         set d_pwgecos; eval $setvar
11278         set d_pwpasswd; eval $setvar
11279         ;;
11280 esac
11281
11282 : see if endpwent_r exists
11283 set endpwent_r d_endpwent_r
11284 eval $inlibc
11285 case "$d_endpwent_r" in
11286 "$define")
11287         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
11288         case "$d_endpwent_r_proto:$usethreads" in
11289         ":define")      d_endpwent_r_proto=define
11290                 set d_endpwent_r_proto endpwent_r $hdrs
11291                 eval $hasproto ;;
11292         *)      ;;
11293         esac
11294         case "$d_endpwent_r_proto" in
11295         define)
11296         case "$endpwent_r_proto" in
11297         ''|0) try='int endpwent_r(FILE**);'
11298         ./protochk "extern $try" $hdrs && endpwent_r_proto=I_H ;;
11299         esac
11300         case "$endpwent_r_proto" in
11301         ''|0) try='void endpwent_r(FILE**);'
11302         ./protochk "extern $try" $hdrs && endpwent_r_proto=V_H ;;
11303         esac
11304         case "$endpwent_r_proto" in
11305         ''|0)   d_endpwent_r=undef
11306                 endpwent_r_proto=0
11307                 echo "Disabling endpwent_r, cannot determine prototype." >&4 ;;
11308         * )     case "$endpwent_r_proto" in
11309                 REENTRANT_PROTO*) ;;
11310                 *) endpwent_r_proto="REENTRANT_PROTO_$endpwent_r_proto" ;;
11311                 esac
11312                 echo "Prototype: $try" ;;
11313         esac
11314         ;;
11315         *)      case "$usethreads" in
11316                 define) echo "endpwent_r has no prototype, not using it." >&4 ;;
11317                 esac
11318                 d_endpwent_r=undef
11319                 endpwent_r_proto=0
11320                 ;;
11321         esac
11322         ;;
11323 *)      endpwent_r_proto=0
11324         ;;
11325 esac
11326
11327 : see if endservent exists
11328 set endservent d_endsent
11329 eval $inlibc
11330
11331 : see if endservent_r exists
11332 set endservent_r d_endservent_r
11333 eval $inlibc
11334 case "$d_endservent_r" in
11335 "$define")
11336         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11337         case "$d_endservent_r_proto:$usethreads" in
11338         ":define")      d_endservent_r_proto=define
11339                 set d_endservent_r_proto endservent_r $hdrs
11340                 eval $hasproto ;;
11341         *)      ;;
11342         esac
11343         case "$d_endservent_r_proto" in
11344         define)
11345         case "$endservent_r_proto" in
11346         ''|0) try='int endservent_r(struct servent_data*);'
11347         ./protochk "extern $try" $hdrs && endservent_r_proto=I_D ;;
11348         esac
11349         case "$endservent_r_proto" in
11350         ''|0) try='void endservent_r(struct servent_data*);'
11351         ./protochk "extern $try" $hdrs && endservent_r_proto=V_D ;;
11352         esac
11353         case "$endservent_r_proto" in
11354         ''|0)   d_endservent_r=undef
11355                 endservent_r_proto=0
11356                 echo "Disabling endservent_r, cannot determine prototype." >&4 ;;
11357         * )     case "$endservent_r_proto" in
11358                 REENTRANT_PROTO*) ;;
11359                 *) endservent_r_proto="REENTRANT_PROTO_$endservent_r_proto" ;;
11360                 esac
11361                 echo "Prototype: $try" ;;
11362         esac
11363         ;;
11364         *)      case "$usethreads" in
11365                 define) echo "endservent_r has no prototype, not using it." >&4 ;;
11366                 esac
11367                 d_endservent_r=undef
11368                 endservent_r_proto=0
11369                 ;;
11370         esac
11371         ;;
11372 *)      endservent_r_proto=0
11373         ;;
11374 esac
11375
11376 : Locate the flags for 'open()'
11377 echo " "
11378 $cat >try.c <<EOCP
11379 #include <sys/types.h>
11380 #ifdef I_FCNTL
11381 #include <fcntl.h>
11382 #endif
11383 #ifdef I_SYS_FILE
11384 #include <sys/file.h>
11385 #endif
11386 #$i_stdlib I_STDLIB
11387 #ifdef I_STDLIB
11388 #include <stdlib.h>
11389 #endif
11390 int main() {
11391         if(O_RDONLY);
11392 #ifdef O_TRUNC
11393         exit(0);
11394 #else
11395         exit(1);
11396 #endif
11397 }
11398 EOCP
11399 : check sys/file.h first to get FREAD on Sun
11400 if $test `./findhdr sys/file.h` && \
11401                 set try -DI_SYS_FILE && eval $compile; then
11402         h_sysfile=true;
11403         echo "<sys/file.h> defines the O_* constants..." >&4
11404         if $run ./try; then
11405                 echo "and you have the 3 argument form of open()." >&4
11406                 val="$define"
11407         else
11408                 echo "but not the 3 argument form of open().  Oh, well." >&4
11409                 val="$undef"
11410         fi
11411 elif $test `./findhdr fcntl.h` && \
11412                 set try -DI_FCNTL && eval $compile; then
11413         h_fcntl=true;
11414         echo "<fcntl.h> defines the O_* constants..." >&4
11415         if $run ./try; then
11416                 echo "and you have the 3 argument form of open()." >&4
11417                 val="$define"
11418         else
11419                 echo "but not the 3 argument form of open().  Oh, well." >&4
11420                 val="$undef"
11421         fi
11422 else
11423         val="$undef"
11424         echo "I can't find the O_* constant definitions!  You got problems." >&4
11425 fi
11426 set d_open3
11427 eval $setvar
11428 $rm -f try try.*
11429
11430 : see which of string.h or strings.h is needed
11431 echo " "
11432 strings=`./findhdr string.h`
11433 if $test "$strings" && $test -r "$strings"; then
11434         echo "Using <string.h> instead of <strings.h>." >&4
11435         val="$define"
11436 else
11437         val="$undef"
11438         strings=`./findhdr strings.h`
11439         if $test "$strings" && $test -r "$strings"; then
11440                 echo "Using <strings.h> instead of <string.h>." >&4
11441         else
11442                 echo "No string header found -- You'll surely have problems." >&4
11443         fi
11444 fi
11445 set i_string
11446 eval $setvar
11447 case "$i_string" in
11448 "$undef") strings=`./findhdr strings.h`;;
11449 *)        strings=`./findhdr string.h`;;
11450 esac
11451
11452 : see if this is a sys/file.h system
11453 val=''
11454 set sys/file.h val
11455 eval $inhdr
11456
11457 : do we need to include sys/file.h ?
11458 case "$val" in
11459 "$define")
11460         echo " "
11461         if $h_sysfile; then
11462                 val="$define"
11463                 echo "We'll be including <sys/file.h>." >&4
11464         else
11465                 val="$undef"
11466                 echo "We won't be including <sys/file.h>." >&4
11467         fi
11468         ;;
11469 *)
11470         h_sysfile=false
11471         ;;
11472 esac
11473 set i_sysfile
11474 eval $setvar
11475
11476 : see if fcntl.h is there
11477 val=''
11478 set fcntl.h val
11479 eval $inhdr
11480
11481 : see if we can include fcntl.h
11482 case "$val" in
11483 "$define")
11484         echo " "
11485         if $h_fcntl; then
11486                 val="$define"
11487                 echo "We'll be including <fcntl.h>." >&4
11488         else
11489                 val="$undef"
11490                 if $h_sysfile; then
11491         echo "We don't need to include <fcntl.h> if we include <sys/file.h>." >&4
11492                 else
11493                         echo "We won't be including <fcntl.h>." >&4
11494                 fi
11495         fi
11496         ;;
11497 *)
11498         h_fcntl=false
11499         val="$undef"
11500         ;;
11501 esac
11502 set i_fcntl
11503 eval $setvar
11504
11505 : check for non-blocking I/O stuff
11506 case "$h_sysfile" in
11507 true) echo "#include <sys/file.h>" > head.c;;
11508 *)
11509        case "$h_fcntl" in
11510        true) echo "#include <fcntl.h>" > head.c;;
11511        *) echo "#include <sys/fcntl.h>" > head.c;;
11512        esac
11513        ;;
11514 esac
11515 echo " "
11516 echo "Figuring out the flag used by open() for non-blocking I/O..." >&4
11517 case "$o_nonblock" in
11518 '')
11519         $cat head.c > try.c
11520         $cat >>try.c <<EOCP
11521 #include <stdio.h>
11522 #$i_stdlib I_STDLIB
11523 #ifdef I_STDLIB
11524 #include <stdlib.h>
11525 #endif
11526 #$i_fcntl I_FCNTL
11527 #ifdef I_FCNTL
11528 #include <fcntl.h>
11529 #endif
11530 int main() {
11531 #ifdef O_NONBLOCK
11532         printf("O_NONBLOCK\n");
11533         exit(0);
11534 #endif
11535 #ifdef O_NDELAY
11536         printf("O_NDELAY\n");
11537         exit(0);
11538 #endif
11539 #ifdef FNDELAY
11540         printf("FNDELAY\n");
11541         exit(0);
11542 #endif
11543         exit(0);
11544 }
11545 EOCP
11546         set try
11547         if eval $compile_ok; then
11548                 o_nonblock=`$run ./try`
11549                 case "$o_nonblock" in
11550                 '') echo "I can't figure it out, assuming O_NONBLOCK will do.";;
11551                 *) echo "Seems like we can use $o_nonblock.";;
11552                 esac
11553         else
11554                 echo "(I can't compile the test program; pray O_NONBLOCK is right!)"
11555         fi
11556         ;;
11557 *) echo "Using $hint value $o_nonblock.";;
11558 esac
11559 $rm -f try try.* .out core
11560
11561 echo " "
11562 echo "Let's see what value errno gets from read() on a $o_nonblock file..." >&4
11563 case "$eagain" in
11564 '')
11565         $cat head.c > try.c
11566         $cat >>try.c <<EOCP
11567 #include <errno.h>
11568 #include <sys/types.h>
11569 #include <signal.h>
11570 #include <stdio.h> 
11571 #$i_stdlib I_STDLIB
11572 #ifdef I_STDLIB
11573 #include <stdlib.h>
11574 #endif
11575 #$i_fcntl I_FCNTL
11576 #ifdef I_FCNTL
11577 #include <fcntl.h>
11578 #endif
11579 #define MY_O_NONBLOCK $o_nonblock
11580 #ifndef errno  /* XXX need better Configure test */
11581 extern int errno;
11582 #endif
11583 #$i_unistd I_UNISTD
11584 #ifdef I_UNISTD
11585 #include <unistd.h>
11586 #endif
11587 #$i_string I_STRING
11588 #ifdef I_STRING
11589 #include <string.h>
11590 #else
11591 #include <strings.h>
11592 #endif
11593 $signal_t blech(x) int x; { exit(3); }
11594 EOCP
11595         $cat >> try.c <<'EOCP'
11596 int main()
11597 {
11598         int pd[2];
11599         int pu[2];
11600         char buf[1];
11601         char string[100];
11602
11603         pipe(pd);       /* Down: child -> parent */
11604         pipe(pu);       /* Up: parent -> child */
11605         if (0 != fork()) {
11606                 int ret;
11607                 close(pd[1]);   /* Parent reads from pd[0] */
11608                 close(pu[0]);   /* Parent writes (blocking) to pu[1] */
11609 #ifdef F_SETFL
11610                 if (-1 == fcntl(pd[0], F_SETFL, MY_O_NONBLOCK))
11611                         exit(1);
11612 #else
11613                 exit(4);
11614 #endif
11615                 signal(SIGALRM, blech);
11616                 alarm(5);
11617                 if ((ret = read(pd[0], buf, 1)) > 0)    /* Nothing to read! */
11618                         exit(2);
11619                 sprintf(string, "%d\n", ret);
11620                 write(2, string, strlen(string));
11621                 alarm(0);
11622 #ifdef EAGAIN
11623                 if (errno == EAGAIN) {
11624                         printf("EAGAIN\n");
11625                         goto ok;
11626                 }
11627 #endif
11628 #ifdef EWOULDBLOCK
11629                 if (errno == EWOULDBLOCK)
11630                         printf("EWOULDBLOCK\n");
11631 #endif
11632         ok:
11633                 write(pu[1], buf, 1);   /* Unblocks child, tell it to close our pipe */
11634                 sleep(2);                               /* Give it time to close our pipe */
11635                 alarm(5);
11636                 ret = read(pd[0], buf, 1);      /* Should read EOF */
11637                 alarm(0);
11638                 sprintf(string, "%d\n", ret);
11639                 write(4, string, strlen(string));
11640                 exit(0);
11641         }
11642
11643         close(pd[0]);                   /* We write to pd[1] */
11644         close(pu[1]);                   /* We read from pu[0] */
11645         read(pu[0], buf, 1);    /* Wait for parent to signal us we may continue */
11646         close(pd[1]);                   /* Pipe pd is now fully closed! */
11647         exit(0);                                /* Bye bye, thank you for playing! */
11648 }
11649 EOCP
11650         set try
11651         if eval $compile_ok; then
11652                 echo "$startsh" >mtry
11653                 echo "$run ./try >try.out 2>try.ret 4>try.err || exit 4" >>mtry
11654                 chmod +x mtry
11655                 ./mtry >/dev/null 2>&1
11656                 case $? in
11657                 0) eagain=`$cat try.out`;;
11658                 1) echo "Could not perform non-blocking setting!";;
11659                 2) echo "I did a successful read() for something that was not there!";;
11660                 3) echo "Hmm... non-blocking I/O does not seem to be working!";;
11661                 4) echo "Could not find F_SETFL!";;
11662                 *) echo "Something terribly wrong happened during testing.";;
11663                 esac
11664                 rd_nodata=`$cat try.ret`
11665                 echo "A read() system call with no data present returns $rd_nodata."
11666                 case "$rd_nodata" in
11667                 0|-1) ;;
11668                 *)
11669                         echo "(That's peculiar, fixing that to be -1.)"
11670                         rd_nodata=-1
11671                         ;;
11672                 esac
11673                 case "$eagain" in
11674                 '')
11675                         echo "Forcing errno EAGAIN on read() with no data available."
11676                         eagain=EAGAIN
11677                         ;;
11678                 *)
11679                         echo "Your read() sets errno to $eagain when no data is available."
11680                         ;;
11681                 esac
11682                 status=`$cat try.err`
11683                 case "$status" in
11684                 0) echo "And it correctly returns 0 to signal EOF.";;
11685                 -1) echo "But it also returns -1 to signal EOF, so be careful!";;
11686                 *) echo "However, your read() returns '$status' on EOF??";;
11687                 esac
11688                 val="$define"
11689                 if test "$status" = "$rd_nodata"; then
11690                         echo "WARNING: you can't distinguish between EOF and no data!"
11691                         val="$undef"
11692                 fi
11693         else
11694                 echo "I can't compile the test program--assuming errno EAGAIN will do."
11695                 eagain=EAGAIN
11696         fi
11697         set d_eofnblk
11698         eval $setvar
11699         ;;
11700 *)
11701         echo "Using $hint value $eagain."
11702         echo "Your read() returns $rd_nodata when no data is present."
11703         case "$d_eofnblk" in
11704         "$define") echo "And you can see EOF because read() returns 0.";;
11705         "$undef") echo "But you can't see EOF status from read() returned value.";;
11706         *)
11707                 echo "(Assuming you can't see EOF status from read anyway.)"
11708                 d_eofnblk=$undef
11709                 ;;
11710         esac
11711         ;;
11712 esac
11713 $rm -f try try.* .out core head.c mtry
11714
11715 : see if _ptr and _cnt from stdio act std
11716 echo " "
11717
11718 if $contains '_lbfsize' `./findhdr stdio.h` >/dev/null 2>&1 ; then
11719         echo "(Looks like you have stdio.h from BSD.)"
11720         case "$stdio_ptr" in
11721         '') stdio_ptr='((fp)->_p)'
11722                 ptr_lval=$define
11723                 ;;
11724         *)      ptr_lval=$d_stdio_ptr_lval;;
11725         esac
11726         case "$stdio_cnt" in
11727         '') stdio_cnt='((fp)->_r)'
11728                 cnt_lval=$define
11729                 ;;
11730         *)      cnt_lval=$d_stdio_cnt_lval;;
11731         esac
11732         case "$stdio_base" in
11733         '') stdio_base='((fp)->_ub._base ? (fp)->_ub._base : (fp)->_bf._base)';;
11734         esac
11735         case "$stdio_bufsiz" in
11736         '') stdio_bufsiz='((fp)->_ub._base ? (fp)->_ub._size : (fp)->_bf._size)';;
11737         esac
11738 elif $contains '_IO_fpos_t' `./findhdr stdio.h` `./findhdr libio.h` >/dev/null 2>&1 ; then
11739         echo "(Looks like you have stdio.h from Linux.)"
11740         case "$stdio_ptr" in
11741         '') stdio_ptr='((fp)->_IO_read_ptr)'
11742                 ptr_lval=$define
11743                 ;;
11744         *)      ptr_lval=$d_stdio_ptr_lval;;
11745         esac
11746         case "$stdio_cnt" in
11747         '') stdio_cnt='((fp)->_IO_read_end - (fp)->_IO_read_ptr)'
11748                 cnt_lval=$undef
11749                 ;;
11750         *)      cnt_lval=$d_stdio_cnt_lval;;
11751         esac
11752         case "$stdio_base" in
11753         '') stdio_base='((fp)->_IO_read_base)';;
11754         esac
11755         case "$stdio_bufsiz" in
11756         '') stdio_bufsiz='((fp)->_IO_read_end - (fp)->_IO_read_base)';;
11757         esac
11758 else
11759         case "$stdio_ptr" in
11760         '') stdio_ptr='((fp)->_ptr)'
11761                 ptr_lval=$define
11762                 ;;
11763         *)      ptr_lval=$d_stdio_ptr_lval;;
11764         esac
11765         case "$stdio_cnt" in
11766         '') stdio_cnt='((fp)->_cnt)'
11767                 cnt_lval=$define
11768                 ;;
11769         *)      cnt_lval=$d_stdio_cnt_lval;;
11770         esac
11771         case "$stdio_base" in
11772         '') stdio_base='((fp)->_base)';;
11773         esac
11774         case "$stdio_bufsiz" in
11775         '') stdio_bufsiz='((fp)->_cnt + (fp)->_ptr - (fp)->_base)';;
11776         esac
11777 fi
11778
11779 : test whether _ptr and _cnt really work
11780 echo "Checking how std your stdio is..." >&4
11781 $cat >try.c <<EOP
11782 #include <stdio.h>
11783 #$i_stdlib I_STDLIB
11784 #ifdef I_STDLIB
11785 #include <stdlib.h>
11786 #endif
11787 #define FILE_ptr(fp)    $stdio_ptr
11788 #define FILE_cnt(fp)    $stdio_cnt
11789 int main() {
11790         FILE *fp = fopen("try.c", "r");
11791         char c = getc(fp);
11792         if (
11793                 18 <= FILE_cnt(fp) &&
11794                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
11795         )
11796                 exit(0);
11797         exit(1);
11798 }
11799 EOP
11800 val="$undef"
11801 set try
11802 if eval $compile && $to try.c; then
11803         if $run ./try; then
11804                 echo "Your stdio acts pretty std."
11805                 val="$define"
11806         else
11807                 echo "Your stdio isn't very std."
11808         fi
11809 else
11810         echo "Your stdio doesn't appear very std."
11811 fi
11812 $rm -f try.c try
11813
11814 # glibc 2.2.90 and above apparently change stdio streams so Perl's
11815 # direct buffer manipulation no longer works.  The Configure tests
11816 # should be changed to correctly detect this, but until then,
11817 # the following check should at least let perl compile and run.
11818 # (This quick fix should be updated before 5.8.1.)
11819 # To be defensive, reject all unknown versions, and all versions  > 2.2.9.
11820 # A. Dougherty, June 3, 2002.
11821 case "$d_gnulibc" in
11822 $define)
11823         case "$gnulibc_version" in
11824         2.[01]*)  ;;
11825         2.2) ;;
11826         2.2.[0-9]) ;;
11827         *)  echo "But I will not snoop inside glibc $gnulibc_version stdio buffers."
11828                 val="$undef"
11829                 ;;
11830         esac
11831         ;;
11832 esac
11833 set d_stdstdio
11834 eval $setvar
11835
11836 : Can _ptr be used as an lvalue?
11837 case "$d_stdstdio$ptr_lval" in
11838 $define$define) val=$define ;;
11839 *) val=$undef ;;
11840 esac
11841 set d_stdio_ptr_lval
11842 eval $setvar
11843
11844 : Can _cnt be used as an lvalue?
11845 case "$d_stdstdio$cnt_lval" in
11846 $define$define) val=$define ;;
11847 *) val=$undef ;;
11848 esac
11849 set d_stdio_cnt_lval
11850 eval $setvar
11851
11852
11853 : test whether setting _ptr sets _cnt as a side effect
11854 d_stdio_ptr_lval_sets_cnt="$undef"
11855 d_stdio_ptr_lval_nochange_cnt="$undef"
11856 case "$d_stdio_ptr_lval$d_stdstdio" in
11857 $define$define)
11858         echo "Checking to see what happens if we set the stdio ptr..." >&4
11859 $cat >try.c <<EOP
11860 #include <stdio.h>
11861 /* Can we scream? */
11862 /* Eat dust sed :-) */
11863 /* In the buffer space, no one can hear you scream. */
11864 #$i_stdlib I_STDLIB
11865 #ifdef I_STDLIB
11866 #include <stdlib.h>
11867 #endif
11868 #define FILE_ptr(fp)    $stdio_ptr
11869 #define FILE_cnt(fp)    $stdio_cnt
11870 #include <sys/types.h>
11871 int main() {
11872         FILE *fp = fopen("try.c", "r");
11873         int c;
11874         char *ptr;
11875         size_t cnt;
11876         if (!fp) {
11877             puts("Fail even to read");
11878             exit(1);
11879         }
11880         c = getc(fp); /* Read away the first # */
11881         if (c == EOF) {
11882             puts("Fail even to read");
11883             exit(1);
11884         }
11885         if (!(
11886                 18 <= FILE_cnt(fp) &&
11887                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
11888         )) {
11889                 puts("Fail even to read");
11890                 exit (1);
11891         }
11892         ptr = (char*) FILE_ptr(fp);
11893         cnt = (size_t)FILE_cnt(fp);
11894
11895         FILE_ptr(fp) += 42;
11896
11897         if ((char*)FILE_ptr(fp) != (ptr + 42)) {
11898                 printf("Fail ptr check %p != %p", FILE_ptr(fp), (ptr + 42));
11899                 exit (1);
11900         }
11901         if (FILE_cnt(fp) <= 20) {
11902                 printf ("Fail (<20 chars to test)");
11903                 exit (1);
11904         }
11905         if (strncmp(FILE_ptr(fp), "Eat dust sed :-) */\n", 20) != 0) {
11906                 puts("Fail compare");
11907                 exit (1);
11908         }
11909         if (cnt == FILE_cnt(fp)) {
11910                 puts("Pass_unchanged");
11911                 exit (0);
11912         }       
11913         if (FILE_cnt(fp) == (cnt - 42)) {
11914                 puts("Pass_changed");
11915                 exit (0);
11916         }
11917         printf("Fail count was %d now %d\n", cnt, FILE_cnt(fp));
11918         return 1;
11919
11920 }
11921 EOP
11922         set try
11923         if eval $compile && $to try.c; then
11924                 case `$run ./try` in
11925                 Pass_changed)
11926                         echo "Increasing ptr in your stdio decreases cnt by the same amount.  Good." >&4
11927                         d_stdio_ptr_lval_sets_cnt="$define" ;;
11928                 Pass_unchanged)
11929                         echo "Increasing ptr in your stdio leaves cnt unchanged.  Good." >&4
11930                         d_stdio_ptr_lval_nochange_cnt="$define" ;;
11931                 Fail*)
11932                         echo "Increasing ptr in your stdio didn't do exactly what I expected.  We'll not be doing that then." >&4 ;;
11933                 *)
11934                         echo "It appears attempting to set ptr in your stdio is a bad plan." >&4 ;;
11935         esac
11936         else
11937                 echo "It seems we can't set ptr in your stdio.  Nevermind." >&4
11938         fi
11939         $rm -f try.c try
11940         ;;
11941 esac
11942
11943 : see if _base is also standard
11944 val="$undef"
11945 case "$d_stdstdio" in
11946 $define)
11947         $cat >try.c <<EOP
11948 #include <stdio.h>
11949 #$i_stdlib I_STDLIB
11950 #ifdef I_STDLIB
11951 #include <stdlib.h>
11952 #endif
11953 #define FILE_base(fp)   $stdio_base
11954 #define FILE_bufsiz(fp) $stdio_bufsiz
11955 int main() {
11956         FILE *fp = fopen("try.c", "r");
11957         char c = getc(fp);
11958         if (
11959                 19 <= FILE_bufsiz(fp) &&
11960                 strncmp(FILE_base(fp), "#include <stdio.h>\n", 19) == 0
11961         )
11962                 exit(0);
11963         exit(1);
11964 }
11965 EOP
11966         set try
11967         if eval $compile && $to try.c; then
11968                 if $run ./try; then
11969                         echo "And its _base field acts std."
11970                         val="$define"
11971                 else
11972                         echo "But its _base field isn't std."
11973                 fi
11974         else
11975                 echo "However, it seems to be lacking the _base field."
11976         fi
11977         $rm -f try.c try
11978         ;;
11979 esac
11980 set d_stdiobase
11981 eval $setvar
11982
11983 : see if fast_stdio exists
11984 val="$undef"
11985 case "$d_stdstdio:$d_stdio_ptr_lval" in
11986 "$define:$define")
11987         case "$d_stdio_cnt_lval$d_stdio_ptr_lval_sets_cnt" in
11988         *$define*)
11989                 echo "You seem to have 'fast stdio' to directly manipulate the stdio buffers." >& 4
11990                 val="$define"
11991                 ;;
11992         esac
11993         ;;
11994 esac
11995 set d_faststdio
11996 eval $setvar
11997
11998
11999
12000 : see if fchdir exists
12001 set fchdir d_fchdir
12002 eval $inlibc
12003
12004 : see if fchmod exists
12005 set fchmod d_fchmod
12006 eval $inlibc
12007
12008 : see if fchown exists
12009 set fchown d_fchown
12010 eval $inlibc
12011
12012 : see if this is an fcntl system
12013 set fcntl d_fcntl
12014 eval $inlibc
12015
12016 echo " "
12017 : See if fcntl-based locking works.
12018 $cat >try.c <<EOCP
12019 #$i_stdlib I_STDLIB
12020 #ifdef I_STDLIB
12021 #include <stdlib.h>
12022 #endif
12023 #include <unistd.h>
12024 #include <fcntl.h>
12025 #include <signal.h>
12026 $signal_t blech(x) int x; { exit(3); }
12027 int main() {
12028 #if defined(F_SETLK) && defined(F_SETLKW)
12029      struct flock flock;
12030      int retval, fd;
12031      fd = open("try.c", O_RDONLY);
12032      flock.l_type = F_RDLCK;
12033      flock.l_whence = SEEK_SET;
12034      flock.l_start = flock.l_len = 0;
12035      signal(SIGALRM, blech);
12036      alarm(10);
12037      retval = fcntl(fd, F_SETLK, &flock);
12038      close(fd);
12039      (retval < 0 ? exit(2) : exit(0));
12040 #else
12041      exit(2);
12042 #endif
12043 }
12044 EOCP
12045 echo "Checking if fcntl-based file locking works... "
12046 case "$d_fcntl" in
12047 "$define")
12048         set try
12049         if eval $compile_ok; then
12050                 if $run ./try; then
12051                         echo "Yes, it seems to work."
12052                         val="$define"
12053                 else
12054                         echo "Nope, it didn't work."
12055                         val="$undef"
12056                         case "$?" in
12057                         3) $cat >&4 <<EOM
12058 ***
12059 *** I had to forcibly timeout from fcntl(..., F_SETLK, ...).
12060 *** This is (almost) impossible.
12061 *** If your NFS lock daemons are not feeling well, something like
12062 *** this may happen, please investigate.  Cannot continue, aborting.
12063 ***
12064 EOM
12065                                 exit 1
12066                                 ;;
12067                         esac
12068                 fi
12069         else
12070                 echo "I'm unable to compile the test program, so I'll assume not."
12071                 val="$undef"
12072         fi
12073         ;;
12074 *) val="$undef";
12075         echo "Nope, since you don't even have fcntl()."
12076         ;;
12077 esac
12078 set d_fcntl_can_lock
12079 eval $setvar
12080 $rm -f try*
12081
12082
12083 : check for fd_set items
12084 $cat <<EOM
12085
12086 Checking to see how well your C compiler handles fd_set and friends ...
12087 EOM
12088 $cat >try.c <<EOCP
12089 #$i_stdlib I_STDLIB
12090 #ifdef I_STDLIB
12091 #include <stdlib.h>
12092 #endif
12093 #$i_systime I_SYS_TIME
12094 #$i_sysselct I_SYS_SELECT
12095 #$d_socket HAS_SOCKET
12096 #include <sys/types.h>
12097 #ifdef HAS_SOCKET
12098 #include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
12099 #endif
12100 #ifdef I_SYS_TIME
12101 #include <sys/time.h>
12102 #endif
12103 #ifdef I_SYS_SELECT
12104 #include <sys/select.h>
12105 #endif
12106 int main() {
12107         fd_set fds;
12108
12109 #ifdef TRYBITS
12110         if(fds.fds_bits);
12111 #endif
12112
12113 #if defined(FD_SET) && defined(FD_CLR) && defined(FD_ISSET) && defined(FD_ZERO)
12114         exit(0);
12115 #else
12116         exit(1);
12117 #endif
12118 }
12119 EOCP
12120 set try -DTRYBITS
12121 if eval $compile; then
12122         d_fds_bits="$define"
12123         d_fd_set="$define"
12124         echo "Well, your system knows about the normal fd_set typedef..." >&4
12125         if $run ./try; then
12126                 echo "and you have the normal fd_set macros (just as I'd expect)." >&4
12127                 d_fd_macros="$define"
12128         else
12129                 $cat >&4 <<'EOM'
12130 but not the normal fd_set macros!  Gaaack!  I'll have to cover for you.
12131 EOM
12132                 d_fd_macros="$undef"
12133         fi
12134 else
12135         $cat <<'EOM'
12136 Hmm, your compiler has some difficulty with fd_set.  Checking further...
12137 EOM
12138         set try
12139         if eval $compile; then
12140                 d_fds_bits="$undef"
12141                 d_fd_set="$define"
12142                 echo "Well, your system has some sort of fd_set available..." >&4
12143                 if $run ./try; then
12144                         echo "and you have the normal fd_set macros." >&4
12145                         d_fd_macros="$define"
12146                 else
12147                         $cat <<'EOM'
12148 but not the normal fd_set macros!  Gross!  More work for me...
12149 EOM
12150                         d_fd_macros="$undef"
12151                 fi
12152         else
12153         echo "Well, you got zip.  That's OK, I can roll my own fd_set stuff." >&4
12154                 d_fd_set="$undef"
12155                 d_fds_bits="$undef"
12156                 d_fd_macros="$undef"
12157         fi
12158 fi
12159 $rm -f try try.*
12160
12161 : see if fgetpos exists
12162 set fgetpos d_fgetpos
12163 eval $inlibc
12164
12165 : see if finite exists
12166 set finite d_finite
12167 eval $inlibc
12168
12169 : see if finitel exists
12170 set finitel d_finitel
12171 eval $inlibc
12172
12173 : see if flock exists
12174 set flock d_flock
12175 eval $inlibc
12176
12177 : see if prototype for flock is available
12178 echo " "
12179 set d_flockproto flock $i_sysfile sys/file.h
12180 eval $hasproto
12181
12182 : see if fork exists
12183 set fork d_fork
12184 eval $inlibc
12185
12186 : see if fp_class exists
12187 set fp_class d_fp_class
12188 eval $inlibc
12189
12190 : see if pathconf exists
12191 set pathconf d_pathconf
12192 eval $inlibc
12193
12194 : see if fpathconf exists
12195 set fpathconf d_fpathconf
12196 eval $inlibc
12197
12198 : see if fpclass exists
12199 set fpclass d_fpclass
12200 eval $inlibc
12201
12202 : see if fpclassify exists
12203 set fpclassify d_fpclassify
12204 eval $inlibc
12205
12206 : see if fpclassl exists
12207 set fpclassl d_fpclassl
12208 eval $inlibc
12209
12210
12211 : check for fpos64_t
12212 echo " "
12213 echo "Checking to see if you have fpos64_t..." >&4
12214 $cat >try.c <<EOCP
12215 #include <stdio.h>
12216 int main() { fpos64_t x = 7; }
12217 EOCP
12218 set try
12219 if eval $compile; then
12220         val="$define"
12221         echo "You have fpos64_t."
12222 else
12223         val="$undef"
12224         echo "You do not have fpos64_t."
12225         case "$fpossize" in
12226         8) echo "(Your fpos_t is 64 bits, so you could use that.)" ;;
12227         esac
12228 fi
12229 $rm -f try.* try
12230 set d_fpos64_t
12231 eval $setvar
12232
12233 : see if frexpl exists
12234 set frexpl d_frexpl
12235 eval $inlibc
12236
12237 : see if this is a sys/param system
12238 set sys/param.h i_sysparam
12239 eval $inhdr
12240
12241 : see if this is a sys/mount.h system
12242 set sys/mount.h i_sysmount
12243 eval $inhdr
12244
12245
12246 echo " "
12247 echo "Checking to see if your system supports struct fs_data..." >&4
12248 set d_fs_data_s fs_data $i_systypes sys/types.h $i_sysparam sys/param.h $i_sysmount sys/mount.h
12249 eval $hasstruct
12250 case "$d_fs_data_s" in
12251 "$define")      echo "Yes, it does."   ;;
12252 *)              echo "No, it doesn't." ;;
12253 esac
12254
12255 : see if fseeko exists
12256 set fseeko d_fseeko
12257 eval $inlibc
12258 case "$longsize" in
12259 8) echo "(Your long is 64 bits, so you could use fseek.)" ;;
12260 esac
12261
12262 : see if fsetpos exists
12263 set fsetpos d_fsetpos
12264 eval $inlibc
12265
12266
12267 : see if fstatfs exists
12268 set fstatfs d_fstatfs
12269 eval $inlibc
12270
12271
12272 : see if statvfs exists
12273 set statvfs d_statvfs
12274 eval $inlibc
12275
12276 : see if fstatvfs exists
12277 set fstatvfs d_fstatvfs
12278 eval $inlibc
12279
12280
12281 : see if fsync exists
12282 set fsync d_fsync
12283 eval $inlibc
12284
12285 : see if ftello exists
12286 set ftello d_ftello
12287 eval $inlibc
12288 case "$longsize" in
12289 8) echo "(Your long is 64 bits, so you could use ftell.)" ;;
12290 esac
12291
12292 : see if getcwd exists
12293 set getcwd d_getcwd
12294 eval $inlibc
12295
12296 : see if getespwnam exists
12297 set getespwnam d_getespwnam
12298 eval $inlibc
12299
12300
12301 : see if getfsstat exists
12302 set getfsstat d_getfsstat
12303 eval $inlibc
12304
12305 : see if getgrent exists
12306 set getgrent d_getgrent
12307 eval $inlibc
12308
12309 : see if getgrent_r exists
12310 set getgrent_r d_getgrent_r
12311 eval $inlibc
12312 case "$d_getgrent_r" in
12313 "$define")
12314         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12315         case "$d_getgrent_r_proto:$usethreads" in
12316         ":define")      d_getgrent_r_proto=define
12317                 set d_getgrent_r_proto getgrent_r $hdrs
12318                 eval $hasproto ;;
12319         *)      ;;
12320         esac
12321         case "$d_getgrent_r_proto" in
12322         define)
12323         case "$getgrent_r_proto" in
12324         ''|0) try='int getgrent_r(struct group*, char*, size_t, struct group**);'
12325         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBWR ;;
12326         esac
12327         case "$getgrent_r_proto" in
12328         ''|0) try='int getgrent_r(struct group*, char*, int, struct group**);'
12329         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIR ;;
12330         esac
12331         case "$getgrent_r_proto" in
12332         ''|0) try='struct group* getgrent_r(struct group*, char*, size_t);'
12333         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBW ;;
12334         esac
12335         case "$getgrent_r_proto" in
12336         ''|0) try='struct group* getgrent_r(struct group*, char*, int);'
12337         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBI ;;
12338         esac
12339         case "$getgrent_r_proto" in
12340         ''|0) try='int getgrent_r(struct group*, char*, int);'
12341         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBI ;;
12342         esac
12343         case "$getgrent_r_proto" in
12344         ''|0) try='int getgrent_r(struct group*, char*, int, FILE**);'
12345         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIH ;;
12346         esac
12347         case "$getgrent_r_proto" in
12348         ''|0)   d_getgrent_r=undef
12349                 getgrent_r_proto=0
12350                 echo "Disabling getgrent_r, cannot determine prototype." >&4 ;;
12351         * )     case "$getgrent_r_proto" in
12352                 REENTRANT_PROTO*) ;;
12353                 *) getgrent_r_proto="REENTRANT_PROTO_$getgrent_r_proto" ;;
12354                 esac
12355                 echo "Prototype: $try" ;;
12356         esac
12357         ;;
12358         *)      case "$usethreads" in
12359                 define) echo "getgrent_r has no prototype, not using it." >&4 ;;
12360                 esac
12361                 d_getgrent_r=undef
12362                 getgrent_r_proto=0
12363                 ;;
12364         esac
12365         ;;
12366 *)      getgrent_r_proto=0
12367         ;;
12368 esac
12369
12370 : see if getgrgid_r exists
12371 set getgrgid_r d_getgrgid_r
12372 eval $inlibc
12373 case "$d_getgrgid_r" in
12374 "$define")
12375         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12376         case "$d_getgrgid_r_proto:$usethreads" in
12377         ":define")      d_getgrgid_r_proto=define
12378                 set d_getgrgid_r_proto getgrgid_r $hdrs
12379                 eval $hasproto ;;
12380         *)      ;;
12381         esac
12382         case "$d_getgrgid_r_proto" in
12383         define)
12384         case "$getgrgid_r_proto" in
12385         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, size_t, struct group**);'
12386         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBWR ;;
12387         esac
12388         case "$getgrgid_r_proto" in
12389         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int, struct group**);'
12390         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBIR ;;
12391         esac
12392         case "$getgrgid_r_proto" in
12393         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int);'
12394         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBI ;;
12395         esac
12396         case "$getgrgid_r_proto" in
12397         ''|0) try='struct group* getgrgid_r(gid_t, struct group*, char*, int);'
12398         ./protochk "extern $try" $hdrs && getgrgid_r_proto=S_TSBI ;;
12399         esac
12400         case "$getgrgid_r_proto" in
12401         ''|0)   d_getgrgid_r=undef
12402                 getgrgid_r_proto=0
12403                 echo "Disabling getgrgid_r, cannot determine prototype." >&4 ;;
12404         * )     case "$getgrgid_r_proto" in
12405                 REENTRANT_PROTO*) ;;
12406                 *) getgrgid_r_proto="REENTRANT_PROTO_$getgrgid_r_proto" ;;
12407                 esac
12408                 echo "Prototype: $try" ;;
12409         esac
12410         ;;
12411         *)      case "$usethreads" in
12412                 define) echo "getgrgid_r has no prototype, not using it." >&4 ;;
12413                 esac
12414                 d_getgrgid_r=undef
12415                 getgrgid_r_proto=0
12416                 ;;
12417         esac
12418         ;;
12419 *)      getgrgid_r_proto=0
12420         ;;
12421 esac
12422
12423 : see if getgrnam_r exists
12424 set getgrnam_r d_getgrnam_r
12425 eval $inlibc
12426 case "$d_getgrnam_r" in
12427 "$define")
12428         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12429         case "$d_getgrnam_r_proto:$usethreads" in
12430         ":define")      d_getgrnam_r_proto=define
12431                 set d_getgrnam_r_proto getgrnam_r $hdrs
12432                 eval $hasproto ;;
12433         *)      ;;
12434         esac
12435         case "$d_getgrnam_r_proto" in
12436         define)
12437         case "$getgrnam_r_proto" in
12438         ''|0) try='int getgrnam_r(const char*, struct group*, char*, size_t, struct group**);'
12439         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBWR ;;
12440         esac
12441         case "$getgrnam_r_proto" in
12442         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int, struct group**);'
12443         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBIR ;;
12444         esac
12445         case "$getgrnam_r_proto" in
12446         ''|0) try='struct group* getgrnam_r(const char*, char*, int);'
12447         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CBI ;;
12448         esac
12449         case "$getgrnam_r_proto" in
12450         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int);'
12451         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBI ;;
12452         esac
12453         case "$getgrnam_r_proto" in
12454         ''|0) try='struct group* getgrnam_r(const char*, struct group*, char*, int);'
12455         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CSBI ;;
12456         esac
12457         case "$getgrnam_r_proto" in
12458         ''|0)   d_getgrnam_r=undef
12459                 getgrnam_r_proto=0
12460                 echo "Disabling getgrnam_r, cannot determine prototype." >&4 ;;
12461         * )     case "$getgrnam_r_proto" in
12462                 REENTRANT_PROTO*) ;;
12463                 *) getgrnam_r_proto="REENTRANT_PROTO_$getgrnam_r_proto" ;;
12464                 esac
12465                 echo "Prototype: $try" ;;
12466         esac
12467         ;;
12468         *)      case "$usethreads" in
12469                 define) echo "getgrnam_r has no prototype, not using it." >&4 ;;
12470                 esac
12471                 d_getgrnam_r=undef
12472                 getgrnam_r_proto=0
12473                 ;;
12474         esac
12475         ;;
12476 *)      getgrnam_r_proto=0
12477         ;;
12478 esac
12479
12480 : see if gethostbyaddr exists
12481 set gethostbyaddr d_gethbyaddr
12482 eval $inlibc
12483
12484 : see if gethostbyname exists
12485 set gethostbyname d_gethbyname
12486 eval $inlibc
12487
12488 : see if gethostent exists
12489 set gethostent d_gethent
12490 eval $inlibc
12491
12492 : see how we will look up host name
12493 echo " "
12494 call=''
12495 if set gethostname val -f d_gethname; eval $csym; $val; then
12496         echo 'gethostname() found.' >&4
12497         d_gethname="$define"
12498         call=gethostname
12499 fi
12500 if set uname val -f d_uname; eval $csym; $val; then
12501         if ./xenix; then
12502                 $cat <<'EOM'
12503 uname() was found, but you're running xenix, and older versions of xenix
12504 have a broken uname(). If you don't really know whether your xenix is old
12505 enough to have a broken system call, use the default answer.
12506
12507 EOM
12508                 dflt=y
12509                 case "$d_uname" in
12510                 "$define") dflt=n;;
12511                 esac
12512                 rp='Is your uname() broken?'
12513                 . ./myread
12514                 case "$ans" in
12515                 n*) d_uname="$define"; call=uname;;
12516                 esac
12517         else
12518                 echo 'uname() found.' >&4
12519                 d_uname="$define"
12520                 case "$call" in
12521                 '') call=uname ;;
12522                 esac
12523         fi
12524 fi
12525 case "$d_gethname" in
12526 '') d_gethname="$undef";;
12527 esac
12528 case "$d_uname" in
12529 '') d_uname="$undef";;
12530 esac
12531 case "$d_uname$d_gethname" in
12532 *define*)
12533         dflt=n
12534         cat <<EOM
12535  
12536 Every now and then someone has a $call() that lies about the hostname
12537 but can't be fixed for political or economic reasons.  If you wish, I can
12538 pretend $call() isn't there and maybe compute hostname at run-time
12539 thanks to the '$phostname' command.
12540
12541 EOM
12542         rp="Shall I ignore $call() from now on?"
12543         . ./myread
12544         case "$ans" in
12545         y*) d_uname="$undef" d_gethname="$undef"; $echo $n "Okay...$c";;
12546         esac;;
12547 esac
12548 case "$phostname" in
12549 '') aphostname='';;
12550 *) case "$aphostname" in
12551         /*) ;;
12552         *) set X $phostname
12553                 shift
12554                 file=$1
12555                 shift
12556                 file=`./loc $file $file $pth`
12557                 aphostname=`echo $file $*`
12558                 ;;
12559         esac
12560         ;;
12561 esac
12562 case "$d_uname$d_gethname" in
12563 *define*) ;;
12564 *)
12565         case "$phostname" in
12566         '')
12567                 echo "There will be no way for $package to get your hostname." >&4;;
12568         *)
12569         echo "I'll use 'popen("'"'$aphostname'", "r")'"' to get your hostname." >&4
12570                 ;;
12571         esac;;
12572 esac
12573 case "$d_phostname" in
12574 '') d_phostname="$undef";;
12575 esac
12576
12577 : see if gethostbyaddr_r exists
12578 set gethostbyaddr_r d_gethostbyaddr_r
12579 eval $inlibc
12580 case "$d_gethostbyaddr_r" in
12581 "$define")
12582         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12583         case "$d_gethostbyaddr_r_proto:$usethreads" in
12584         ":define")      d_gethostbyaddr_r_proto=define
12585                 set d_gethostbyaddr_r_proto gethostbyaddr_r $hdrs
12586                 eval $hasproto ;;
12587         *)      ;;
12588         esac
12589         case "$d_gethostbyaddr_r_proto" in
12590         define)
12591         case "$gethostbyaddr_r_proto" in
12592         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
12593         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISBWRE ;;
12594         esac
12595         case "$gethostbyaddr_r_proto" in
12596         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, int, int*);'
12597         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBWIE ;;
12598         esac
12599         case "$gethostbyaddr_r_proto" in
12600         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, int, int*);'
12601         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBIE ;;
12602         esac
12603         case "$gethostbyaddr_r_proto" in
12604         ''|0) try='struct hostent* gethostbyaddr_r(const void*, size_t, int, struct hostent*, char*, int, int*);'
12605         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TWISBIE ;;
12606         esac
12607         case "$gethostbyaddr_r_proto" in
12608         ''|0) try='struct hostent* gethostbyaddr_r(const char*, int, int, struct hostent*, char*, int, int*);'
12609         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CIISBIE ;;
12610         esac
12611         case "$gethostbyaddr_r_proto" in
12612         ''|0) try='struct hostent* gethostbyaddr_r(const char*, struct hostent*, char*, int, int*);'
12613         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CSBIE ;;
12614         esac
12615         case "$gethostbyaddr_r_proto" in
12616         ''|0) try='struct hostent* gethostbyaddr_r(const void*, struct hostent*, char*, int, int*);'
12617         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TSBIE ;;
12618         esac
12619         case "$gethostbyaddr_r_proto" in
12620         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, struct hostent_data*);'
12621         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISD ;;
12622         esac
12623         case "$gethostbyaddr_r_proto" in
12624         ''|0) try='int gethostbyaddr_r(const char*, int, int, struct hostent*, struct hostent_data*);'
12625         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CIISD ;;
12626         esac
12627         case "$gethostbyaddr_r_proto" in
12628         ''|0) try='int gethostbyaddr_r(const char*, int, int);'
12629         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CII ;;
12630         esac
12631         case "$gethostbyaddr_r_proto" in
12632         ''|0) try='int gethostbyaddr_r(const void*, socklen_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
12633         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_TsISBWRE ;;
12634         esac
12635         case "$gethostbyaddr_r_proto" in
12636         ''|0)   d_gethostbyaddr_r=undef
12637                 gethostbyaddr_r_proto=0
12638                 echo "Disabling gethostbyaddr_r, cannot determine prototype." >&4 ;;
12639         * )     case "$gethostbyaddr_r_proto" in
12640                 REENTRANT_PROTO*) ;;
12641                 *) gethostbyaddr_r_proto="REENTRANT_PROTO_$gethostbyaddr_r_proto" ;;
12642                 esac
12643                 echo "Prototype: $try" ;;
12644         esac
12645         ;;
12646         *)      case "$usethreads" in
12647                 define) echo "gethostbyaddr_r has no prototype, not using it." >&4 ;;
12648                 esac
12649                 d_gethostbyaddr_r=undef
12650                 gethostbyaddr_r_proto=0
12651                 ;;
12652         esac
12653         ;;
12654 *)      gethostbyaddr_r_proto=0
12655         ;;
12656 esac
12657
12658 : see if gethostbyname_r exists
12659 set gethostbyname_r d_gethostbyname_r
12660 eval $inlibc
12661 case "$d_gethostbyname_r" in
12662 "$define")
12663         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12664         case "$d_gethostbyname_r_proto:$usethreads" in
12665         ":define")      d_gethostbyname_r_proto=define
12666                 set d_gethostbyname_r_proto gethostbyname_r $hdrs
12667                 eval $hasproto ;;
12668         *)      ;;
12669         esac
12670         case "$d_gethostbyname_r_proto" in
12671         define)
12672         case "$gethostbyname_r_proto" in
12673         ''|0) try='int gethostbyname_r(const char*, struct hostent*, char*, size_t, struct hostent**, int*);'
12674         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSBWRE ;;
12675         esac
12676         case "$gethostbyname_r_proto" in
12677         ''|0) try='struct hostent* gethostbyname_r(const char*, struct hostent*, char*, int, int*);'
12678         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=S_CSBIE ;;
12679         esac
12680         case "$gethostbyname_r_proto" in
12681         ''|0) try='int gethostbyname_r(const char*, struct hostent*, struct hostent_data*);'
12682         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSD ;;
12683         esac
12684         case "$gethostbyname_r_proto" in
12685         ''|0)   d_gethostbyname_r=undef
12686                 gethostbyname_r_proto=0
12687                 echo "Disabling gethostbyname_r, cannot determine prototype." >&4 ;;
12688         * )     case "$gethostbyname_r_proto" in
12689                 REENTRANT_PROTO*) ;;
12690                 *) gethostbyname_r_proto="REENTRANT_PROTO_$gethostbyname_r_proto" ;;
12691                 esac
12692                 echo "Prototype: $try" ;;
12693         esac
12694         ;;
12695         *)      case "$usethreads" in
12696                 define) echo "gethostbyname_r has no prototype, not using it." >&4 ;;
12697                 esac
12698                 d_gethostbyname_r=undef
12699                 gethostbyname_r_proto=0
12700                 ;;
12701         esac
12702         ;;
12703 *)      gethostbyname_r_proto=0
12704         ;;
12705 esac
12706
12707 : see if gethostent_r exists
12708 set gethostent_r d_gethostent_r
12709 eval $inlibc
12710 case "$d_gethostent_r" in
12711 "$define")
12712         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12713         case "$d_gethostent_r_proto:$usethreads" in
12714         ":define")      d_gethostent_r_proto=define
12715                 set d_gethostent_r_proto gethostent_r $hdrs
12716                 eval $hasproto ;;
12717         *)      ;;
12718         esac
12719         case "$d_gethostent_r_proto" in
12720         define)
12721         case "$gethostent_r_proto" in
12722         ''|0) try='int gethostent_r(struct hostent*, char*, size_t, struct hostent**, int*);'
12723         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBWRE ;;
12724         esac
12725         case "$gethostent_r_proto" in
12726         ''|0) try='int gethostent_r(struct hostent*, char*, int, int*);'
12727         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBIE ;;
12728         esac
12729         case "$gethostent_r_proto" in
12730         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int, int*);'
12731         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBIE ;;
12732         esac
12733         case "$gethostent_r_proto" in
12734         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int);'
12735         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBI ;;
12736         esac
12737         case "$gethostent_r_proto" in
12738         ''|0) try='int gethostent_r(struct hostent*, char*, int);'
12739         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBI ;;
12740         esac
12741         case "$gethostent_r_proto" in
12742         ''|0) try='int gethostent_r(struct hostent*, struct hostent_data*);'
12743         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SD ;;
12744         esac
12745         case "$gethostent_r_proto" in
12746         ''|0)   d_gethostent_r=undef
12747                 gethostent_r_proto=0
12748                 echo "Disabling gethostent_r, cannot determine prototype." >&4 ;;
12749         * )     case "$gethostent_r_proto" in
12750                 REENTRANT_PROTO*) ;;
12751                 *) gethostent_r_proto="REENTRANT_PROTO_$gethostent_r_proto" ;;
12752                 esac
12753                 echo "Prototype: $try" ;;
12754         esac
12755         ;;
12756         *)      case "$usethreads" in
12757                 define) echo "gethostent_r has no prototype, not using it." >&4 ;;
12758                 esac
12759                 d_gethostent_r=undef
12760                 gethostent_r_proto=0
12761                 ;;
12762         esac
12763         ;;
12764 *)      gethostent_r_proto=0
12765         ;;
12766 esac
12767
12768 : see if prototypes for various gethostxxx netdb.h functions are available
12769 echo " "
12770 set d_gethostprotos gethostent $i_netdb netdb.h
12771 eval $hasproto
12772
12773 : see if getitimer exists
12774 set getitimer d_getitimer
12775 eval $inlibc
12776
12777 : see if getlogin exists
12778 set getlogin d_getlogin
12779 eval $inlibc
12780
12781 : see if getlogin_r exists
12782 set getlogin_r d_getlogin_r
12783 eval $inlibc
12784 case "$d_getlogin_r" in
12785 "$define")
12786         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
12787         case "$d_getlogin_r_proto:$usethreads" in
12788         ":define")      d_getlogin_r_proto=define
12789                 set d_getlogin_r_proto getlogin_r $hdrs
12790                 eval $hasproto ;;
12791         *)      ;;
12792         esac
12793         case "$d_getlogin_r_proto" in
12794         define)
12795         case "$getlogin_r_proto" in
12796         ''|0) try='int getlogin_r(char*, size_t);'
12797         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BW ;;
12798         esac
12799         case "$getlogin_r_proto" in
12800         ''|0) try='int getlogin_r(char*, int);'
12801         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BI ;;
12802         esac
12803         case "$getlogin_r_proto" in
12804         ''|0) try='char* getlogin_r(char*, size_t);'
12805         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BW ;;
12806         esac
12807         case "$getlogin_r_proto" in
12808         ''|0) try='char* getlogin_r(char*, int);'
12809         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BI ;;
12810         esac
12811         case "$getlogin_r_proto" in
12812         ''|0)   d_getlogin_r=undef
12813                 getlogin_r_proto=0
12814                 echo "Disabling getlogin_r, cannot determine prototype." >&4 ;;
12815         * )     case "$getlogin_r_proto" in
12816                 REENTRANT_PROTO*) ;;
12817                 *) getlogin_r_proto="REENTRANT_PROTO_$getlogin_r_proto" ;;
12818                 esac
12819                 echo "Prototype: $try" ;;
12820         esac
12821         ;;
12822         *)      case "$usethreads" in
12823                 define) echo "getlogin_r has no prototype, not using it." >&4 ;;
12824                 esac
12825                 d_getlogin_r=undef
12826                 getlogin_r_proto=0
12827                 ;;
12828         esac
12829         ;;
12830 *)      getlogin_r_proto=0
12831         ;;
12832 esac
12833
12834 : see if getmnt exists
12835 set getmnt d_getmnt
12836 eval $inlibc
12837
12838 : see if getmntent exists
12839 set getmntent d_getmntent
12840 eval $inlibc
12841
12842 : see if getnetbyaddr exists
12843 set getnetbyaddr d_getnbyaddr
12844 eval $inlibc
12845
12846 : see if getnetbyname exists
12847 set getnetbyname d_getnbyname
12848 eval $inlibc
12849
12850 : see if getnetent exists
12851 set getnetent d_getnent
12852 eval $inlibc
12853
12854 : see if getnetbyaddr_r exists
12855 set getnetbyaddr_r d_getnetbyaddr_r
12856 eval $inlibc
12857 case "$d_getnetbyaddr_r" in
12858 "$define")
12859         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12860         case "$d_getnetbyaddr_r_proto:$usethreads" in
12861         ":define")      d_getnetbyaddr_r_proto=define
12862                 set d_getnetbyaddr_r_proto getnetbyaddr_r $hdrs
12863                 eval $hasproto ;;
12864         *)      ;;
12865         esac
12866         case "$d_getnetbyaddr_r_proto" in
12867         define)
12868         case "$getnetbyaddr_r_proto" in
12869         ''|0) try='int getnetbyaddr_r(unsigned long, int, struct netent*, char*, size_t, struct netent**, int*);'
12870         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_UISBWRE ;;
12871         esac
12872         case "$getnetbyaddr_r_proto" in
12873         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, char*, int);'
12874         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISBI ;;
12875         esac
12876         case "$getnetbyaddr_r_proto" in
12877         ''|0) try='struct netent* getnetbyaddr_r(in_addr_t, int, struct netent*, char*, int);'
12878         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_TISBI ;;
12879         esac
12880         case "$getnetbyaddr_r_proto" in
12881         ''|0) try='struct netent* getnetbyaddr_r(long, int, struct netent*, char*, int);'
12882         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_LISBI ;;
12883         esac
12884         case "$getnetbyaddr_r_proto" in
12885         ''|0) try='int getnetbyaddr_r(in_addr_t, int, struct netent*, struct netent_data*);'
12886         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_TISD ;;
12887         esac
12888         case "$getnetbyaddr_r_proto" in
12889         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, struct netent_data*);'
12890         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISD ;;
12891         esac
12892         case "$getnetbyaddr_r_proto" in
12893         ''|0) try='int getnetbyaddr_r(int, int, struct netent*, struct netent_data*);'
12894         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_IISD ;;
12895         esac
12896         case "$getnetbyaddr_r_proto" in
12897         ''|0) try='int getnetbyaddr_r(uint32_t, int, struct netent*, char*, size_t, struct netent**, int*);'
12898         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_uISBWRE ;;
12899         esac
12900         case "$getnetbyaddr_r_proto" in
12901         ''|0)   d_getnetbyaddr_r=undef
12902                 getnetbyaddr_r_proto=0
12903                 echo "Disabling getnetbyaddr_r, cannot determine prototype." >&4 ;;
12904         * )     case "$getnetbyaddr_r_proto" in
12905                 REENTRANT_PROTO*) ;;
12906                 *) getnetbyaddr_r_proto="REENTRANT_PROTO_$getnetbyaddr_r_proto" ;;
12907                 esac
12908                 echo "Prototype: $try" ;;
12909         esac
12910         ;;
12911         *)      case "$usethreads" in
12912                 define) echo "getnetbyaddr_r has no prototype, not using it." >&4 ;;
12913                 esac
12914                 d_getnetbyaddr_r=undef
12915                 getnetbyaddr_r_proto=0
12916                 ;;
12917         esac
12918         ;;
12919 *)      getnetbyaddr_r_proto=0
12920         ;;
12921 esac
12922
12923 : see if getnetbyname_r exists
12924 set getnetbyname_r d_getnetbyname_r
12925 eval $inlibc
12926 case "$d_getnetbyname_r" in
12927 "$define")
12928         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12929         case "$d_getnetbyname_r_proto:$usethreads" in
12930         ":define")      d_getnetbyname_r_proto=define
12931                 set d_getnetbyname_r_proto getnetbyname_r $hdrs
12932                 eval $hasproto ;;
12933         *)      ;;
12934         esac
12935         case "$d_getnetbyname_r_proto" in
12936         define)
12937         case "$getnetbyname_r_proto" in
12938         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, size_t, struct netent**, int*);'
12939         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBWRE ;;
12940         esac
12941         case "$getnetbyname_r_proto" in
12942         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, int);'
12943         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBI ;;
12944         esac
12945         case "$getnetbyname_r_proto" in
12946         ''|0) try='struct netent* getnetbyname_r(const char*, struct netent*, char*, int);'
12947         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=S_CSBI ;;
12948         esac
12949         case "$getnetbyname_r_proto" in
12950         ''|0) try='int getnetbyname_r(const char*, struct netent*, struct netent_data*);'
12951         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSD ;;
12952         esac
12953         case "$getnetbyname_r_proto" in
12954         ''|0)   d_getnetbyname_r=undef
12955                 getnetbyname_r_proto=0
12956                 echo "Disabling getnetbyname_r, cannot determine prototype." >&4 ;;
12957         * )     case "$getnetbyname_r_proto" in
12958                 REENTRANT_PROTO*) ;;
12959                 *) getnetbyname_r_proto="REENTRANT_PROTO_$getnetbyname_r_proto" ;;
12960                 esac
12961                 echo "Prototype: $try" ;;
12962         esac
12963         ;;
12964         *)      case "$usethreads" in
12965                 define) echo "getnetbyname_r has no prototype, not using it." >&4 ;;
12966                 esac
12967                 d_getnetbyname_r=undef
12968                 getnetbyname_r_proto=0
12969                 ;;
12970         esac
12971         ;;
12972 *)      getnetbyname_r_proto=0
12973         ;;
12974 esac
12975
12976 : see if getnetent_r exists
12977 set getnetent_r d_getnetent_r
12978 eval $inlibc
12979 case "$d_getnetent_r" in
12980 "$define")
12981         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12982         case "$d_getnetent_r_proto:$usethreads" in
12983         ":define")      d_getnetent_r_proto=define
12984                 set d_getnetent_r_proto getnetent_r $hdrs
12985                 eval $hasproto ;;
12986         *)      ;;
12987         esac
12988         case "$d_getnetent_r_proto" in
12989         define)
12990         case "$getnetent_r_proto" in
12991         ''|0) try='int getnetent_r(struct netent*, char*, size_t, struct netent**, int*);'
12992         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBWRE ;;
12993         esac
12994         case "$getnetent_r_proto" in
12995         ''|0) try='int getnetent_r(struct netent*, char*, int, int*);'
12996         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBIE ;;
12997         esac
12998         case "$getnetent_r_proto" in
12999         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int, int*);'
13000         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBIE ;;
13001         esac
13002         case "$getnetent_r_proto" in
13003         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int);'
13004         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBI ;;
13005         esac
13006         case "$getnetent_r_proto" in
13007         ''|0) try='int getnetent_r(struct netent*, char*, int);'
13008         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBI ;;
13009         esac
13010         case "$getnetent_r_proto" in
13011         ''|0) try='int getnetent_r(struct netent*, struct netent_data*);'
13012         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SD ;;
13013         esac
13014         case "$getnetent_r_proto" in
13015         ''|0)   d_getnetent_r=undef
13016                 getnetent_r_proto=0
13017                 echo "Disabling getnetent_r, cannot determine prototype." >&4 ;;
13018         * )     case "$getnetent_r_proto" in
13019                 REENTRANT_PROTO*) ;;
13020                 *) getnetent_r_proto="REENTRANT_PROTO_$getnetent_r_proto" ;;
13021                 esac
13022                 echo "Prototype: $try" ;;
13023         esac
13024         ;;
13025         *)      case "$usethreads" in
13026                 define) echo "getnetent_r has no prototype, not using it." >&4 ;;
13027                 esac
13028                 d_getnetent_r=undef
13029                 getnetent_r_proto=0
13030                 ;;
13031         esac
13032         ;;
13033 *)      getnetent_r_proto=0
13034         ;;
13035 esac
13036
13037 : see if prototypes for various getnetxxx netdb.h functions are available
13038 echo " "
13039 set d_getnetprotos getnetent $i_netdb netdb.h
13040 eval $hasproto
13041
13042 : see if getpagesize exists
13043 set getpagesize d_getpagsz
13044 eval $inlibc
13045
13046
13047 : see if getprotobyname exists
13048 set getprotobyname d_getpbyname
13049 eval $inlibc
13050
13051 : see if getprotobynumber exists
13052 set getprotobynumber d_getpbynumber
13053 eval $inlibc
13054
13055 : see if getprotoent exists
13056 set getprotoent d_getpent
13057 eval $inlibc
13058
13059 : see if getpgid exists
13060 set getpgid d_getpgid
13061 eval $inlibc
13062
13063 : see if getpgrp2 exists
13064 set getpgrp2 d_getpgrp2
13065 eval $inlibc
13066
13067 : see if getppid exists
13068 set getppid d_getppid
13069 eval $inlibc
13070
13071 : see if getpriority exists
13072 set getpriority d_getprior
13073 eval $inlibc
13074
13075 : see if getprotobyname_r exists
13076 set getprotobyname_r d_getprotobyname_r
13077 eval $inlibc
13078 case "$d_getprotobyname_r" in
13079 "$define")
13080         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13081         case "$d_getprotobyname_r_proto:$usethreads" in
13082         ":define")      d_getprotobyname_r_proto=define
13083                 set d_getprotobyname_r_proto getprotobyname_r $hdrs
13084                 eval $hasproto ;;
13085         *)      ;;
13086         esac
13087         case "$d_getprotobyname_r_proto" in
13088         define)
13089         case "$getprotobyname_r_proto" in
13090         ''|0) try='int getprotobyname_r(const char*, struct protoent*, char*, size_t, struct protoent**);'
13091         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSBWR ;;
13092         esac
13093         case "$getprotobyname_r_proto" in
13094         ''|0) try='struct protoent* getprotobyname_r(const char*, struct protoent*, char*, int);'
13095         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=S_CSBI ;;
13096         esac
13097         case "$getprotobyname_r_proto" in
13098         ''|0) try='int getprotobyname_r(const char*, struct protoent*, struct protoent_data*);'
13099         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSD ;;
13100         esac
13101         case "$getprotobyname_r_proto" in
13102         ''|0)   d_getprotobyname_r=undef
13103                 getprotobyname_r_proto=0
13104                 echo "Disabling getprotobyname_r, cannot determine prototype." >&4 ;;
13105         * )     case "$getprotobyname_r_proto" in
13106                 REENTRANT_PROTO*) ;;
13107                 *) getprotobyname_r_proto="REENTRANT_PROTO_$getprotobyname_r_proto" ;;
13108                 esac
13109                 echo "Prototype: $try" ;;
13110         esac
13111         ;;
13112         *)      case "$usethreads" in
13113                 define) echo "getprotobyname_r has no prototype, not using it." >&4 ;;
13114                 esac
13115                 d_getprotobyname_r=undef
13116                 getprotobyname_r_proto=0
13117                 ;;
13118         esac
13119         ;;
13120 *)      getprotobyname_r_proto=0
13121         ;;
13122 esac
13123
13124 : see if getprotobynumber_r exists
13125 set getprotobynumber_r d_getprotobynumber_r
13126 eval $inlibc
13127 case "$d_getprotobynumber_r" in
13128 "$define")
13129         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13130         case "$d_getprotobynumber_r_proto:$usethreads" in
13131         ":define")      d_getprotobynumber_r_proto=define
13132                 set d_getprotobynumber_r_proto getprotobynumber_r $hdrs
13133                 eval $hasproto ;;
13134         *)      ;;
13135         esac
13136         case "$d_getprotobynumber_r_proto" in
13137         define)
13138         case "$getprotobynumber_r_proto" in
13139         ''|0) try='int getprotobynumber_r(int, struct protoent*, char*, size_t, struct protoent**);'
13140         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISBWR ;;
13141         esac
13142         case "$getprotobynumber_r_proto" in
13143         ''|0) try='struct protoent* getprotobynumber_r(int, struct protoent*, char*, int);'
13144         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=S_ISBI ;;
13145         esac
13146         case "$getprotobynumber_r_proto" in
13147         ''|0) try='int getprotobynumber_r(int, struct protoent*, struct protoent_data*);'
13148         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISD ;;
13149         esac
13150         case "$getprotobynumber_r_proto" in
13151         ''|0)   d_getprotobynumber_r=undef
13152                 getprotobynumber_r_proto=0
13153                 echo "Disabling getprotobynumber_r, cannot determine prototype." >&4 ;;
13154         * )     case "$getprotobynumber_r_proto" in
13155                 REENTRANT_PROTO*) ;;
13156                 *) getprotobynumber_r_proto="REENTRANT_PROTO_$getprotobynumber_r_proto" ;;
13157                 esac
13158                 echo "Prototype: $try" ;;
13159         esac
13160         ;;
13161         *)      case "$usethreads" in
13162                 define) echo "getprotobynumber_r has no prototype, not using it." >&4 ;;
13163                 esac
13164                 d_getprotobynumber_r=undef
13165                 getprotobynumber_r_proto=0
13166                 ;;
13167         esac
13168         ;;
13169 *)      getprotobynumber_r_proto=0
13170         ;;
13171 esac
13172
13173 : see if getprotoent_r exists
13174 set getprotoent_r d_getprotoent_r
13175 eval $inlibc
13176 case "$d_getprotoent_r" in
13177 "$define")
13178         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13179         case "$d_getprotoent_r_proto:$usethreads" in
13180         ":define")      d_getprotoent_r_proto=define
13181                 set d_getprotoent_r_proto getprotoent_r $hdrs
13182                 eval $hasproto ;;
13183         *)      ;;
13184         esac
13185         case "$d_getprotoent_r_proto" in
13186         define)
13187         case "$getprotoent_r_proto" in
13188         ''|0) try='int getprotoent_r(struct protoent*, char*, size_t, struct protoent**);'
13189         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBWR ;;
13190         esac
13191         case "$getprotoent_r_proto" in
13192         ''|0) try='int getprotoent_r(struct protoent*, char*, int);'
13193         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBI ;;
13194         esac
13195         case "$getprotoent_r_proto" in
13196         ''|0) try='struct protoent* getprotoent_r(struct protoent*, char*, int);'
13197         ./protochk "extern $try" $hdrs && getprotoent_r_proto=S_SBI ;;
13198         esac
13199         case "$getprotoent_r_proto" in
13200         ''|0) try='int getprotoent_r(struct protoent*, struct protoent_data*);'
13201         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SD ;;
13202         esac
13203         case "$getprotoent_r_proto" in
13204         ''|0)   d_getprotoent_r=undef
13205                 getprotoent_r_proto=0
13206                 echo "Disabling getprotoent_r, cannot determine prototype." >&4 ;;
13207         * )     case "$getprotoent_r_proto" in
13208                 REENTRANT_PROTO*) ;;
13209                 *) getprotoent_r_proto="REENTRANT_PROTO_$getprotoent_r_proto" ;;
13210                 esac
13211                 echo "Prototype: $try" ;;
13212         esac
13213         ;;
13214         *)      case "$usethreads" in
13215                 define) echo "getprotoent_r has no prototype, not using it." >&4 ;;
13216                 esac
13217                 d_getprotoent_r=undef
13218                 getprotoent_r_proto=0
13219                 ;;
13220         esac
13221         ;;
13222 *)      getprotoent_r_proto=0
13223         ;;
13224 esac
13225
13226 : see if prototypes for various getprotoxxx netdb.h functions are available
13227 echo " "
13228 set d_getprotoprotos getprotoent $i_netdb netdb.h
13229 eval $hasproto
13230
13231 : see if getprpwnam exists
13232 set getprpwnam d_getprpwnam
13233 eval $inlibc
13234
13235 : see if getpwent exists
13236 set getpwent d_getpwent
13237 eval $inlibc
13238
13239 : see if getpwent_r exists
13240 set getpwent_r d_getpwent_r
13241 eval $inlibc
13242 case "$d_getpwent_r" in
13243 "$define")
13244         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13245         case "$d_getpwent_r_proto:$usethreads" in
13246         ":define")      d_getpwent_r_proto=define
13247                 set d_getpwent_r_proto getpwent_r $hdrs
13248                 eval $hasproto ;;
13249         *)      ;;
13250         esac
13251         case "$d_getpwent_r_proto" in
13252         define)
13253         case "$getpwent_r_proto" in
13254         ''|0) try='int getpwent_r(struct passwd*, char*, size_t, struct passwd**);'
13255         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBWR ;;
13256         esac
13257         case "$getpwent_r_proto" in
13258         ''|0) try='int getpwent_r(struct passwd*, char*, int, struct passwd**);'
13259         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIR ;;
13260         esac
13261         case "$getpwent_r_proto" in
13262         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, size_t);'
13263         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBW ;;
13264         esac
13265         case "$getpwent_r_proto" in
13266         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, int);'
13267         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBI ;;
13268         esac
13269         case "$getpwent_r_proto" in
13270         ''|0) try='int getpwent_r(struct passwd*, char*, int);'
13271         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBI ;;
13272         esac
13273         case "$getpwent_r_proto" in
13274         ''|0) try='int getpwent_r(struct passwd*, char*, int, FILE**);'
13275         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIH ;;
13276         esac
13277         case "$getpwent_r_proto" in
13278         ''|0)   d_getpwent_r=undef
13279                 getpwent_r_proto=0
13280                 echo "Disabling getpwent_r, cannot determine prototype." >&4 ;;
13281         * )     case "$getpwent_r_proto" in
13282                 REENTRANT_PROTO*) ;;
13283                 *) getpwent_r_proto="REENTRANT_PROTO_$getpwent_r_proto" ;;
13284                 esac
13285                 echo "Prototype: $try" ;;
13286         esac
13287         ;;
13288         *)      case "$usethreads" in
13289                 define) echo "getpwent_r has no prototype, not using it." >&4 ;;
13290                 esac
13291                 d_getpwent_r=undef
13292                 getpwent_r_proto=0
13293                 ;;
13294         esac
13295         ;;
13296 *)      getpwent_r_proto=0
13297         ;;
13298 esac
13299
13300 : see if getpwnam_r exists
13301 set getpwnam_r d_getpwnam_r
13302 eval $inlibc
13303 case "$d_getpwnam_r" in
13304 "$define")
13305         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13306         case "$d_getpwnam_r_proto:$usethreads" in
13307         ":define")      d_getpwnam_r_proto=define
13308                 set d_getpwnam_r_proto getpwnam_r $hdrs
13309                 eval $hasproto ;;
13310         *)      ;;
13311         esac
13312         case "$d_getpwnam_r_proto" in
13313         define)
13314         case "$getpwnam_r_proto" in
13315         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);'
13316         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBWR ;;
13317         esac
13318         case "$getpwnam_r_proto" in
13319         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int, struct passwd**);'
13320         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBIR ;;
13321         esac
13322         case "$getpwnam_r_proto" in
13323         ''|0) try='struct passwd* getpwnam_r(const char*, struct passwd*, char*, int);'
13324         ./protochk "extern $try" $hdrs && getpwnam_r_proto=S_CSBI ;;
13325         esac
13326         case "$getpwnam_r_proto" in
13327         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int);'
13328         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBI ;;
13329         esac
13330         case "$getpwnam_r_proto" in
13331         ''|0)   d_getpwnam_r=undef
13332                 getpwnam_r_proto=0
13333                 echo "Disabling getpwnam_r, cannot determine prototype." >&4 ;;
13334         * )     case "$getpwnam_r_proto" in
13335                 REENTRANT_PROTO*) ;;
13336                 *) getpwnam_r_proto="REENTRANT_PROTO_$getpwnam_r_proto" ;;
13337                 esac
13338                 echo "Prototype: $try" ;;
13339         esac
13340         ;;
13341         *)      case "$usethreads" in
13342                 define) echo "getpwnam_r has no prototype, not using it." >&4 ;;
13343                 esac
13344                 d_getpwnam_r=undef
13345                 getpwnam_r_proto=0
13346                 ;;
13347         esac
13348         ;;
13349 *)      getpwnam_r_proto=0
13350         ;;
13351 esac
13352
13353 : see if getpwuid_r exists
13354 set getpwuid_r d_getpwuid_r
13355 eval $inlibc
13356 case "$d_getpwuid_r" in
13357 "$define")
13358         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13359         case "$d_getpwuid_r_proto:$usethreads" in
13360         ":define")      d_getpwuid_r_proto=define
13361                 set d_getpwuid_r_proto getpwuid_r $hdrs
13362                 eval $hasproto ;;
13363         *)      ;;
13364         esac
13365         case "$d_getpwuid_r_proto" in
13366         define)
13367         case "$getpwuid_r_proto" in
13368         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**);'
13369         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBWR ;;
13370         esac
13371         case "$getpwuid_r_proto" in
13372         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int, struct passwd**);'
13373         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBIR ;;
13374         esac
13375         case "$getpwuid_r_proto" in
13376         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int);'
13377         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBI ;;
13378         esac
13379         case "$getpwuid_r_proto" in
13380         ''|0) try='struct passwd* getpwuid_r(uid_t, struct passwd*, char*, int);'
13381         ./protochk "extern $try" $hdrs && getpwuid_r_proto=S_TSBI ;;
13382         esac
13383         case "$getpwuid_r_proto" in
13384         ''|0)   d_getpwuid_r=undef
13385                 getpwuid_r_proto=0
13386                 echo "Disabling getpwuid_r, cannot determine prototype." >&4 ;;
13387         * )     case "$getpwuid_r_proto" in
13388                 REENTRANT_PROTO*) ;;
13389                 *) getpwuid_r_proto="REENTRANT_PROTO_$getpwuid_r_proto" ;;
13390                 esac
13391                 echo "Prototype: $try" ;;
13392         esac
13393         ;;
13394         *)      case "$usethreads" in
13395                 define) echo "getpwuid_r has no prototype, not using it." >&4 ;;
13396                 esac
13397                 d_getpwuid_r=undef
13398                 getpwuid_r_proto=0
13399                 ;;
13400         esac
13401         ;;
13402 *)      getpwuid_r_proto=0
13403         ;;
13404 esac
13405
13406
13407 : see if getservbyname exists
13408 set getservbyname d_getsbyname
13409 eval $inlibc
13410
13411 : see if getservbyport exists
13412 set getservbyport d_getsbyport
13413 eval $inlibc
13414
13415 : see if getservent exists
13416 set getservent d_getsent
13417 eval $inlibc
13418
13419 : see if getservbyname_r exists
13420 set getservbyname_r d_getservbyname_r
13421 eval $inlibc
13422 case "$d_getservbyname_r" in
13423 "$define")
13424         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13425         case "$d_getservbyname_r_proto:$usethreads" in
13426         ":define")      d_getservbyname_r_proto=define
13427                 set d_getservbyname_r_proto getservbyname_r $hdrs
13428                 eval $hasproto ;;
13429         *)      ;;
13430         esac
13431         case "$d_getservbyname_r_proto" in
13432         define)
13433         case "$getservbyname_r_proto" in
13434         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, char*, size_t, struct servent**);'
13435         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSBWR ;;
13436         esac
13437         case "$getservbyname_r_proto" in
13438         ''|0) try='struct servent* getservbyname_r(const char*, const char*, struct servent*, char*, int);'
13439         ./protochk "extern $try" $hdrs && getservbyname_r_proto=S_CCSBI ;;
13440         esac
13441         case "$getservbyname_r_proto" in
13442         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, struct servent_data*);'
13443         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSD ;;
13444         esac
13445         case "$getservbyname_r_proto" in
13446         ''|0)   d_getservbyname_r=undef
13447                 getservbyname_r_proto=0
13448                 echo "Disabling getservbyname_r, cannot determine prototype." >&4 ;;
13449         * )     case "$getservbyname_r_proto" in
13450                 REENTRANT_PROTO*) ;;
13451                 *) getservbyname_r_proto="REENTRANT_PROTO_$getservbyname_r_proto" ;;
13452                 esac
13453                 echo "Prototype: $try" ;;
13454         esac
13455         ;;
13456         *)      case "$usethreads" in
13457                 define) echo "getservbyname_r has no prototype, not using it." >&4 ;;
13458                 esac
13459                 d_getservbyname_r=undef
13460                 getservbyname_r_proto=0
13461                 ;;
13462         esac
13463         ;;
13464 *)      getservbyname_r_proto=0
13465         ;;
13466 esac
13467
13468 : see if getservbyport_r exists
13469 set getservbyport_r d_getservbyport_r
13470 eval $inlibc
13471 case "$d_getservbyport_r" in
13472 "$define")
13473         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13474         case "$d_getservbyport_r_proto:$usethreads" in
13475         ":define")      d_getservbyport_r_proto=define
13476                 set d_getservbyport_r_proto getservbyport_r $hdrs
13477                 eval $hasproto ;;
13478         *)      ;;
13479         esac
13480         case "$d_getservbyport_r_proto" in
13481         define)
13482         case "$getservbyport_r_proto" in
13483         ''|0) try='int getservbyport_r(int, const char*, struct servent*, char*, size_t, struct servent**);'
13484         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSBWR ;;
13485         esac
13486         case "$getservbyport_r_proto" in
13487         ''|0) try='struct servent* getservbyport_r(int, const char*, struct servent*, char*, int);'
13488         ./protochk "extern $try" $hdrs && getservbyport_r_proto=S_ICSBI ;;
13489         esac
13490         case "$getservbyport_r_proto" in
13491         ''|0) try='int getservbyport_r(int, const char*, struct servent*, struct servent_data*);'
13492         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSD ;;
13493         esac
13494         case "$getservbyport_r_proto" in
13495         ''|0)   d_getservbyport_r=undef
13496                 getservbyport_r_proto=0
13497                 echo "Disabling getservbyport_r, cannot determine prototype." >&4 ;;
13498         * )     case "$getservbyport_r_proto" in
13499                 REENTRANT_PROTO*) ;;
13500                 *) getservbyport_r_proto="REENTRANT_PROTO_$getservbyport_r_proto" ;;
13501                 esac
13502                 echo "Prototype: $try" ;;
13503         esac
13504         ;;
13505         *)      case "$usethreads" in
13506                 define) echo "getservbyport_r has no prototype, not using it." >&4 ;;
13507                 esac
13508                 d_getservbyport_r=undef
13509                 getservbyport_r_proto=0
13510                 ;;
13511         esac
13512         ;;
13513 *)      getservbyport_r_proto=0
13514         ;;
13515 esac
13516
13517 : see if getservent_r exists
13518 set getservent_r d_getservent_r
13519 eval $inlibc
13520 case "$d_getservent_r" in
13521 "$define")
13522         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13523         case "$d_getservent_r_proto:$usethreads" in
13524         ":define")      d_getservent_r_proto=define
13525                 set d_getservent_r_proto getservent_r $hdrs
13526                 eval $hasproto ;;
13527         *)      ;;
13528         esac
13529         case "$d_getservent_r_proto" in
13530         define)
13531         case "$getservent_r_proto" in
13532         ''|0) try='int getservent_r(struct servent*, char*, size_t, struct servent**);'
13533         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBWR ;;
13534         esac
13535         case "$getservent_r_proto" in
13536         ''|0) try='int getservent_r(struct servent*, char*, int);'
13537         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBI ;;
13538         esac
13539         case "$getservent_r_proto" in
13540         ''|0) try='struct servent* getservent_r(struct servent*, char*, int);'
13541         ./protochk "extern $try" $hdrs && getservent_r_proto=S_SBI ;;
13542         esac
13543         case "$getservent_r_proto" in
13544         ''|0) try='int getservent_r(struct servent*, struct servent_data*);'
13545         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SD ;;
13546         esac
13547         case "$getservent_r_proto" in
13548         ''|0)   d_getservent_r=undef
13549                 getservent_r_proto=0
13550                 echo "Disabling getservent_r, cannot determine prototype." >&4 ;;
13551         * )     case "$getservent_r_proto" in
13552                 REENTRANT_PROTO*) ;;
13553                 *) getservent_r_proto="REENTRANT_PROTO_$getservent_r_proto" ;;
13554                 esac
13555                 echo "Prototype: $try" ;;
13556         esac
13557         ;;
13558         *)      case "$usethreads" in
13559                 define) echo "getservent_r has no prototype, not using it." >&4 ;;
13560                 esac
13561                 d_getservent_r=undef
13562                 getservent_r_proto=0
13563                 ;;
13564         esac
13565         ;;
13566 *)      getservent_r_proto=0
13567         ;;
13568 esac
13569
13570 : see if prototypes for various getservxxx netdb.h functions are available
13571 echo " "
13572 set d_getservprotos getservent $i_netdb netdb.h
13573 eval $hasproto
13574
13575 : see if getspnam exists
13576 set getspnam d_getspnam
13577 eval $inlibc
13578
13579 : see if this is a shadow.h system
13580 set shadow.h i_shadow
13581 eval $inhdr
13582
13583 : see if getspnam_r exists
13584 set getspnam_r d_getspnam_r
13585 eval $inlibc
13586 case "$d_getspnam_r" in
13587 "$define")
13588         hdrs="$i_systypes sys/types.h define stdio.h $i_shadow shadow.h"
13589         case "$d_getspnam_r_proto:$usethreads" in
13590         ":define")      d_getspnam_r_proto=define
13591                 set d_getspnam_r_proto getspnam_r $hdrs
13592                 eval $hasproto ;;
13593         *)      ;;
13594         esac
13595         case "$d_getspnam_r_proto" in
13596         define)
13597         case "$getspnam_r_proto" in
13598         ''|0) try='int getspnam_r(const char*, struct spwd*, char*, size_t, struct spwd**);'
13599         ./protochk "extern $try" $hdrs && getspnam_r_proto=I_CSBWR ;;
13600         esac
13601         case "$getspnam_r_proto" in
13602         ''|0) try='struct spwd* getspnam_r(const char*, struct spwd*, char*, int);'
13603         ./protochk "extern $try" $hdrs && getspnam_r_proto=S_CSBI ;;
13604         esac
13605         case "$getspnam_r_proto" in
13606         ''|0)   d_getspnam_r=undef
13607                 getspnam_r_proto=0
13608                 echo "Disabling getspnam_r, cannot determine prototype." >&4 ;;
13609         * )     case "$getspnam_r_proto" in
13610                 REENTRANT_PROTO*) ;;
13611                 *) getspnam_r_proto="REENTRANT_PROTO_$getspnam_r_proto" ;;
13612                 esac
13613                 echo "Prototype: $try" ;;
13614         esac
13615         ;;
13616         *)      case "$usethreads" in
13617                 define) echo "getspnam_r has no prototype, not using it." >&4 ;;
13618                 esac
13619                 d_getspnam_r=undef
13620                 getspnam_r_proto=0
13621                 ;;
13622         esac
13623         ;;
13624 *)      getspnam_r_proto=0
13625         ;;
13626 esac
13627
13628 : see if gettimeofday or ftime exists
13629 set gettimeofday d_gettimeod
13630 eval $inlibc
13631 case "$d_gettimeod" in
13632 "$undef")
13633         set ftime d_ftime 
13634         eval $inlibc
13635         ;;
13636 *)
13637         val="$undef"; set d_ftime; eval $setvar
13638         ;;
13639 esac
13640 case "$d_gettimeod$d_ftime" in
13641 "$undef$undef")
13642         echo " "
13643         echo 'No ftime() nor gettimeofday() -- timing may be less accurate.' >&4
13644         ;;
13645 esac
13646
13647 : see if gmtime_r exists
13648 set gmtime_r d_gmtime_r
13649 eval $inlibc
13650 case "$d_gmtime_r" in
13651 "$define")
13652         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
13653         case "$d_gmtime_r_proto:$usethreads" in
13654         ":define")      d_gmtime_r_proto=define
13655                 set d_gmtime_r_proto gmtime_r $hdrs
13656                 eval $hasproto ;;
13657         *)      ;;
13658         esac
13659         case "$d_gmtime_r_proto" in
13660         define)
13661         case "$gmtime_r_proto" in
13662         ''|0) try='struct tm* gmtime_r(const time_t*, struct tm*);'
13663         ./protochk "extern $try" $hdrs && gmtime_r_proto=S_TS ;;
13664         esac
13665         case "$gmtime_r_proto" in
13666         ''|0) try='int gmtime_r(const time_t*, struct tm*);'
13667         ./protochk "extern $try" $hdrs && gmtime_r_proto=I_TS ;;
13668         esac
13669         case "$gmtime_r_proto" in
13670         ''|0)   d_gmtime_r=undef
13671                 gmtime_r_proto=0
13672                 echo "Disabling gmtime_r, cannot determine prototype." >&4 ;;
13673         * )     case "$gmtime_r_proto" in
13674                 REENTRANT_PROTO*) ;;
13675                 *) gmtime_r_proto="REENTRANT_PROTO_$gmtime_r_proto" ;;
13676                 esac
13677                 echo "Prototype: $try" ;;
13678         esac
13679         ;;
13680         *)      case "$usethreads" in
13681                 define) echo "gmtime_r has no prototype, not using it." >&4 ;;
13682                 esac
13683                 d_gmtime_r=undef
13684                 gmtime_r_proto=0
13685                 ;;
13686         esac
13687         ;;
13688 *)      gmtime_r_proto=0
13689         ;;
13690 esac
13691
13692 : see if hasmntopt exists
13693 set hasmntopt d_hasmntopt
13694 eval $inlibc
13695
13696 : see if this is a netinet/in.h or sys/in.h system
13697 set netinet/in.h i_niin sys/in.h i_sysin
13698 eval $inhdr
13699
13700 : see if arpa/inet.h has to be included
13701 set arpa/inet.h i_arpainet
13702 eval $inhdr
13703
13704 : see if htonl --and friends-- exists
13705 val=''
13706 set htonl val
13707 eval $inlibc
13708
13709 : Maybe they are macros.
13710 case "$val" in
13711 $undef)
13712         $cat >htonl.c <<EOM
13713 #include <stdio.h>
13714 #include <sys/types.h>
13715 #$i_niin I_NETINET_IN
13716 #$i_sysin I_SYS_IN
13717 #$i_arpainet I_ARPA_INET
13718 #ifdef I_NETINET_IN
13719 #include <netinet/in.h>
13720 #endif
13721 #ifdef I_SYS_IN
13722 #include <sys/in.h>
13723 #endif
13724 #ifdef I_ARPA_INET
13725 #include <arpa/inet.h>
13726 #endif
13727 #ifdef htonl
13728 printf("Defined as a macro.");
13729 #endif
13730 EOM
13731         $cppstdin $cppflags $cppminus < htonl.c >htonl.E 2>/dev/null
13732         if $contains 'Defined as a macro' htonl.E >/dev/null 2>&1; then
13733                 val="$define"
13734                 echo "But it seems to be defined as a macro." >&4
13735         fi
13736         $rm -f htonl.?
13737         ;;
13738 esac
13739 set d_htonl
13740 eval $setvar
13741
13742 : see if ilogbl exists
13743 set ilogbl d_ilogbl
13744 eval $inlibc
13745
13746 : index or strchr
13747 echo " "
13748 if set index val -f; eval $csym; $val; then
13749         if set strchr val -f d_strchr; eval $csym; $val; then
13750                 if $contains strchr "$strings" >/dev/null 2>&1 ; then
13751                         val="$define"
13752                         vali="$undef"
13753                         echo "strchr() found." >&4
13754                 else
13755                         val="$undef"
13756                         vali="$define"
13757                         echo "index() found." >&4
13758                 fi
13759         else
13760                 val="$undef"
13761                 vali="$define"
13762                 echo "index() found." >&4
13763         fi
13764 else
13765         if set strchr val -f d_strchr; eval $csym; $val; then
13766                 val="$define"
13767                 vali="$undef"
13768                 echo "strchr() found." >&4
13769         else
13770                 echo "No index() or strchr() found!" >&4
13771                 val="$undef"
13772                 vali="$undef"
13773         fi
13774 fi
13775 set d_strchr; eval $setvar
13776 val="$vali"
13777 set d_index; eval $setvar
13778
13779 : check whether inet_aton exists
13780 set inet_aton d_inetaton
13781 eval $inlibc
13782
13783 : Look for isascii
13784 echo " "
13785 $cat >isascii.c <<EOCP
13786 #include <stdio.h>
13787 #include <ctype.h>
13788 #$i_stdlib I_STDLIB
13789 #ifdef I_STDLIB
13790 #include <stdlib.h>
13791 #endif
13792 int main() {
13793         int c = 'A';
13794         if (isascii(c))
13795                 exit(0);
13796         else
13797                 exit(1);
13798 }
13799 EOCP
13800 set isascii
13801 if eval $compile; then
13802         echo "isascii() found." >&4
13803         val="$define"
13804 else
13805         echo "isascii() NOT found." >&4
13806         val="$undef"
13807 fi
13808 set d_isascii
13809 eval $setvar
13810 $rm -f isascii*
13811
13812 : see if isfinite exists
13813 set isfinite d_isfinite
13814 eval $inlibc
13815
13816 : see if isinf exists
13817 set isinf d_isinf
13818 eval $inlibc
13819
13820 : see if isnan exists
13821 set isnan d_isnan
13822 eval $inlibc
13823
13824 : see if isnanl exists
13825 set isnanl d_isnanl
13826 eval $inlibc
13827
13828 : see if killpg exists
13829 set killpg d_killpg
13830 eval $inlibc
13831
13832 : see if lchown exists
13833 echo " "
13834 $cat > try.c <<'EOCP'
13835 /* System header to define __stub macros and hopefully few prototypes,
13836     which can conflict with char lchown(); below.  */
13837 #include <assert.h>
13838 /* Override any gcc2 internal prototype to avoid an error.  */
13839 /* We use char because int might match the return type of a gcc2
13840    builtin and then its argument prototype would still apply.  */
13841 char lchown();
13842 int main() {
13843     /*  The GNU C library defines this for functions which it implements
13844         to always fail with ENOSYS.  Some functions are actually named
13845         something starting with __ and the normal name is an alias.  */
13846 #if defined (__stub_lchown) || defined (__stub___lchown)
13847 choke me
13848 #else
13849 lchown();
13850 #endif
13851 ; return 0; }
13852 EOCP
13853 set try
13854 if eval $compile; then
13855     $echo "lchown() found." >&4
13856     val="$define"
13857 else
13858     $echo "lchown() NOT found." >&4
13859     val="$undef"
13860 fi
13861 set d_lchown
13862 eval $setvar
13863
13864 : See if number of significant digits in a double precision number is known
13865 echo " "
13866 $cat >ldbl_dig.c <<EOM
13867 #$i_limits I_LIMITS
13868 #$i_float I_FLOAT
13869 #ifdef I_LIMITS
13870 #include <limits.h>
13871 #endif
13872 #ifdef I_FLOAT
13873 #include <float.h>
13874 #endif
13875 #ifdef LDBL_DIG
13876 printf("Contains LDBL_DIG");
13877 #endif
13878 EOM
13879 $cppstdin $cppflags $cppminus < ldbl_dig.c >ldbl_dig.E 2>/dev/null
13880 if $contains 'LDBL_DIG' ldbl_dig.E >/dev/null 2>&1; then
13881         echo "LDBL_DIG found." >&4
13882         val="$define"
13883 else
13884         echo "LDBL_DIG NOT found." >&4
13885         val="$undef"
13886 fi
13887 $rm -f ldbl_dig.?
13888 set d_ldbl_dig
13889 eval $setvar
13890
13891 : see if link exists
13892 set link d_link
13893 eval $inlibc
13894
13895 : see if localtime_r exists
13896 set localtime_r d_localtime_r
13897 eval $inlibc
13898 case "$d_localtime_r" in
13899 "$define")
13900         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
13901         case "$d_localtime_r_proto:$usethreads" in
13902         ":define")      d_localtime_r_proto=define
13903                 set d_localtime_r_proto localtime_r $hdrs
13904                 eval $hasproto ;;
13905         *)      ;;
13906         esac
13907         case "$d_localtime_r_proto" in
13908         define)
13909         case "$localtime_r_proto" in
13910         ''|0) try='struct tm* localtime_r(const time_t*, struct tm*);'
13911         ./protochk "extern $try" $hdrs && localtime_r_proto=S_TS ;;
13912         esac
13913         case "$localtime_r_proto" in
13914         ''|0) try='int localtime_r(const time_t*, struct tm*);'
13915         ./protochk "extern $try" $hdrs && localtime_r_proto=I_TS ;;
13916         esac
13917         case "$localtime_r_proto" in
13918         ''|0)   d_localtime_r=undef
13919                 localtime_r_proto=0
13920                 echo "Disabling localtime_r, cannot determine prototype." >&4 ;;
13921         * )     case "$localtime_r_proto" in
13922                 REENTRANT_PROTO*) ;;
13923                 *) localtime_r_proto="REENTRANT_PROTO_$localtime_r_proto" ;;
13924                 esac
13925                 echo "Prototype: $try" ;;
13926         esac
13927         ;;
13928         *)      case "$usethreads" in
13929                 define) echo "localtime_r has no prototype, not using it." >&4 ;;
13930                 esac
13931                 d_localtime_r=undef
13932                 localtime_r_proto=0
13933                 ;;
13934         esac
13935         ;;
13936 *)      localtime_r_proto=0
13937         ;;
13938 esac
13939
13940 : see if localeconv exists
13941 set localeconv d_locconv
13942 eval $inlibc
13943
13944 : see if lockf exists
13945 set lockf d_lockf
13946 eval $inlibc
13947
13948 : see if prototype for lseek is available
13949 echo " "
13950 set d_lseekproto lseek $i_systypes sys/types.h $i_unistd unistd.h
13951 eval $hasproto
13952
13953 : see if lstat exists
13954 set lstat d_lstat
13955 eval $inlibc
13956
13957 : see if madvise exists
13958 set madvise d_madvise
13959 eval $inlibc
13960
13961 : see if mblen exists
13962 set mblen d_mblen
13963 eval $inlibc
13964
13965 : see if mbstowcs exists
13966 set mbstowcs d_mbstowcs
13967 eval $inlibc
13968
13969 : see if mbtowc exists
13970 set mbtowc d_mbtowc
13971 eval $inlibc
13972
13973 : see if memchr exists
13974 set memchr d_memchr
13975 eval $inlibc
13976
13977 : see if memcmp exists
13978 set memcmp d_memcmp
13979 eval $inlibc
13980
13981 : see if memcpy exists
13982 set memcpy d_memcpy
13983 eval $inlibc
13984
13985 : see if memmove exists
13986 set memmove d_memmove
13987 eval $inlibc
13988
13989 : see if memset exists
13990 set memset d_memset
13991 eval $inlibc
13992
13993 : see if mkdir exists
13994 set mkdir d_mkdir
13995 eval $inlibc
13996
13997 : see if mkdtemp exists
13998 set mkdtemp d_mkdtemp
13999 eval $inlibc
14000
14001 : see if mkfifo exists
14002 set mkfifo d_mkfifo
14003 eval $inlibc
14004
14005 : see if mkstemp exists
14006 set mkstemp d_mkstemp
14007 eval $inlibc
14008
14009 : see if mkstemps exists
14010 set mkstemps d_mkstemps
14011 eval $inlibc
14012
14013 : see if mktime exists
14014 set mktime d_mktime
14015 eval $inlibc
14016
14017 : see if this is a sys/mman.h system
14018 set sys/mman.h i_sysmman
14019 eval $inhdr
14020
14021 : see if mmap exists
14022 set mmap d_mmap
14023 eval $inlibc
14024 : see what shmat returns
14025 : default to something harmless
14026 mmaptype='void *'
14027 case "$i_sysmman$d_mmap" in
14028 "$define$define")
14029         $cat >mmap.c <<'END'
14030 #include <sys/mman.h>
14031 void *mmap();
14032 END
14033         if $cc $ccflags -c mmap.c >/dev/null 2>&1; then
14034                 mmaptype='void *'
14035         else
14036                 mmaptype='caddr_t'
14037         fi
14038         echo "and it returns ($mmaptype)." >&4
14039         ;;
14040 esac
14041
14042
14043
14044 : see if sqrtl exists
14045 set sqrtl d_sqrtl
14046 eval $inlibc
14047
14048 : see if scalbnl exists
14049 set scalbnl d_scalbnl
14050 eval $inlibc
14051
14052 : see if modfl exists
14053 set modfl d_modfl
14054 eval $inlibc
14055
14056 : see if prototype for modfl is available
14057 echo " "
14058 set d_modflproto modfl math.h
14059 eval $hasproto
14060
14061 d_modfl_pow32_bug="$undef"
14062
14063 case "$d_longdbl$d_modfl" in
14064 $define$define)
14065         $cat <<EOM
14066 Checking to see whether your modfl() is okay for large values...
14067 EOM
14068 $cat >try.c <<EOCP
14069 #include <math.h> 
14070 #include <stdio.h>
14071 EOCP
14072 if $test "X$d_modflproto" != "X$define"; then
14073         $cat >>try.c <<EOCP
14074 /* Sigh. many current glibcs provide the function, but do not prototype it.  */ 
14075 long double modfl (long double, long double *);
14076 EOCP
14077 fi
14078 $cat >>try.c <<EOCP
14079 int main() {
14080     long double nv = 4294967303.15;
14081     long double v, w;
14082     v = modfl(nv, &w);         
14083 #ifdef __GLIBC__
14084     printf("glibc");
14085 #endif
14086     printf(" %"$sPRIfldbl" %"$sPRIfldbl" %"$sPRIfldbl"\n", nv, v, w);
14087     return 0;
14088 }
14089 EOCP
14090         case "$osname:$gccversion" in
14091         aix:)   saveccflags="$ccflags"
14092                 ccflags="$ccflags -qlongdouble" ;; # to avoid core dump
14093         esac
14094         set try
14095         if eval $compile; then
14096                 foo=`$run ./try`
14097                 case "$foo" in
14098                 *" 4294967303.150000 1.150000 4294967302.000000")
14099                         echo >&4 "Your modfl() is broken for large values."
14100                         d_modfl_pow32_bug="$define"
14101                         case "$foo" in
14102                         glibc)  echo >&4 "You should upgrade your glibc to at least 2.2.2 to get a fixed modfl()."
14103                         ;;
14104                         esac
14105                         ;;
14106                 *" 4294967303.150000 0.150000 4294967303.000000")
14107                         echo >&4 "Your modfl() seems okay for large values."
14108                         ;;
14109                 *)      echo >&4 "I don't understand your modfl() at all."
14110                         d_modfl="$undef"
14111                         ;;
14112                 esac
14113                 $rm -f try.* try core core.try.*
14114         else
14115                 echo "I cannot figure out whether your modfl() is okay, assuming it isn't."
14116                 d_modfl="$undef"
14117         fi
14118         case "$osname:$gccversion" in
14119         aix:)   ccflags="$saveccflags" ;; # restore
14120         esac
14121         ;;
14122 esac
14123
14124 if $test "$uselongdouble" = "$define"; then
14125     message=""
14126     if $test "$d_sqrtl" != "$define"; then
14127         message="$message sqrtl"
14128     fi
14129     if $test "$d_modfl" != "$define"; then
14130         if $test "$d_aintl:$d_copysignl" = "$define:$define"; then
14131             echo "You have both aintl and copysignl, so I can emulate modfl."
14132         else
14133             message="$message modfl"
14134         fi
14135     fi
14136     if $test "$d_frexpl" != "$define"; then
14137         if $test "$d_ilogbl:$d_scalbnl" = "$define:$define"; then
14138             echo "You have both ilogbl and scalbnl, so I can emulate frexpl."
14139         else
14140             message="$message frexpl"
14141         fi
14142     fi
14143
14144     if $test "$message" != ""; then
14145         $cat <<EOM >&4
14146
14147 *** You requested the use of long doubles but you do not seem to have
14148 *** the following mathematical functions needed for long double support:
14149 ***    $message
14150 *** Please rerun Configure without -Duselongdouble and/or -Dusemorebits.
14151 *** Cannot continue, aborting.
14152
14153 EOM
14154
14155         exit 1
14156     fi
14157 fi
14158
14159 : see if mprotect exists
14160 set mprotect d_mprotect
14161 eval $inlibc
14162
14163 : see if msgctl exists
14164 set msgctl d_msgctl
14165 eval $inlibc
14166
14167 : see if msgget exists
14168 set msgget d_msgget
14169 eval $inlibc
14170
14171 : see if msgsnd exists
14172 set msgsnd d_msgsnd
14173 eval $inlibc
14174
14175 : see if msgrcv exists
14176 set msgrcv d_msgrcv
14177 eval $inlibc
14178
14179 : see how much of the 'msg*(2)' library is present.
14180 h_msg=true
14181 echo " "
14182 case "$d_msgctl$d_msgget$d_msgsnd$d_msgrcv" in
14183 *"$undef"*) h_msg=false;;
14184 esac
14185 case "$osname" in
14186 freebsd)
14187     case "`ipcs 2>&1`" in
14188     "SVID messages"*"not configured"*)
14189         echo "Your $osname does not have the msg*(2) configured." >&4
14190         h_msg=false
14191         val="$undef"
14192         set msgctl d_msgctl
14193         eval $setvar
14194         set msgget d_msgget
14195         eval $setvar
14196         set msgsnd d_msgsnd
14197         eval $setvar
14198         set msgrcv d_msgrcv
14199         eval $setvar
14200         ;;
14201     esac
14202     ;;
14203 esac
14204 : we could also check for sys/ipc.h ...
14205 if $h_msg && $test `./findhdr sys/msg.h`; then
14206         echo "You have the full msg*(2) library." >&4
14207         val="$define"
14208 else
14209         echo "You don't have the full msg*(2) library." >&4
14210         val="$undef"
14211 fi
14212 set d_msg
14213 eval $setvar
14214
14215
14216 echo " "
14217 echo "Checking to see if your system supports struct msghdr..." >&4
14218 set d_msghdr_s msghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
14219 eval $hasstruct
14220 case "$d_msghdr_s" in
14221 "$define")      echo "Yes, it does."   ;;
14222 *)              echo "No, it doesn't." ;;
14223 esac
14224
14225
14226 : see if msync exists
14227 set msync d_msync
14228 eval $inlibc
14229
14230 : see if munmap exists
14231 set munmap d_munmap
14232 eval $inlibc
14233
14234 : see if nanosleep exists
14235 set nanosleep d_nanosleep
14236 eval $inlibc
14237
14238 : see if nice exists
14239 set nice d_nice
14240 eval $inlibc
14241
14242 : see if this is a langinfo.h system
14243 set langinfo.h i_langinfo
14244 eval $inhdr
14245
14246 : see if nl_langinfo exists
14247 set nl_langinfo d_nl_langinfo
14248 eval $inlibc
14249
14250 : check for length of character
14251 echo " "
14252 case "$charsize" in
14253 '')
14254         echo "Checking to see how big your characters are (hey, you never know)..." >&4
14255         $cat >try.c <<EOCP
14256 #include <stdio.h>
14257 #$i_stdlib I_STDLIB
14258 #ifdef I_STDLIB
14259 #include <stdlib.h>
14260 #endif
14261 int main()
14262 {
14263     printf("%d\n", (int)sizeof(char));
14264     exit(0);
14265 }
14266 EOCP
14267         set try
14268         if eval $compile_ok; then
14269                 dflt=`$run ./try`
14270         else
14271                 dflt='1'
14272                 echo "(I can't seem to compile the test program.  Guessing...)"
14273         fi
14274         ;;
14275 *)
14276         dflt="$charsize"
14277         ;;
14278 esac
14279 rp="What is the size of a character (in bytes)?"
14280 . ./myread
14281 charsize="$ans"
14282 $rm -f try.c try
14283
14284 : check for volatile keyword
14285 echo " "
14286 echo 'Checking to see if your C compiler knows about "volatile"...' >&4
14287 $cat >try.c <<'EOCP'
14288 int main()
14289 {
14290         typedef struct _goo_struct goo_struct;
14291         goo_struct * volatile goo = ((goo_struct *)0);
14292         struct _goo_struct {
14293                 long long_int;
14294                 int reg_int;
14295                 char char_var;
14296         };
14297         typedef unsigned short foo_t;
14298         char *volatile foo;
14299         volatile int bar;
14300         volatile foo_t blech;
14301         foo = foo;
14302 }
14303 EOCP
14304 if $cc -c $ccflags try.c >/dev/null 2>&1 ; then
14305         val="$define"
14306         echo "Yup, it does."
14307 else
14308         val="$undef"
14309         echo "Nope, it doesn't."
14310 fi
14311 set d_volatile
14312 eval $setvar
14313 $rm -f try.*
14314
14315
14316 echo " "
14317 $echo "Choosing the C types to be used for Perl's internal types..." >&4
14318
14319 case "$use64bitint:$d_quad:$quadtype" in
14320 define:define:?*)
14321         ivtype="$quadtype"
14322         uvtype="$uquadtype"
14323         ivsize=8
14324         uvsize=8
14325         ;;
14326 *)      ivtype="long"
14327         uvtype="unsigned long"
14328         ivsize=$longsize
14329         uvsize=$longsize
14330         ;;
14331 esac
14332
14333 case "$uselongdouble:$d_longdbl" in
14334 define:define)
14335         nvtype="long double"
14336         nvsize=$longdblsize
14337         ;;
14338 *)      nvtype=double
14339         nvsize=$doublesize
14340         ;;
14341 esac
14342
14343 $echo "(IV will be "$ivtype", $ivsize bytes)"
14344 $echo "(UV will be "$uvtype", $uvsize bytes)"
14345 $echo "(NV will be "$nvtype", $nvsize bytes)"
14346
14347 $cat >try.c <<EOCP
14348 #$i_inttypes I_INTTYPES
14349 #ifdef I_INTTYPES
14350 #include <inttypes.h>
14351 #endif
14352 #include <stdio.h>
14353 int main() {
14354 #ifdef INT8
14355    int8_t i =  INT8_MAX;
14356   uint8_t u = UINT8_MAX;
14357   printf("int8_t\n");
14358 #endif
14359 #ifdef INT16
14360    int16_t i =  INT16_MAX;
14361   uint16_t i = UINT16_MAX;
14362   printf("int16_t\n");
14363 #endif
14364 #ifdef INT32
14365    int32_t i =  INT32_MAX;
14366   uint32_t u = UINT32_MAX;
14367   printf("int32_t\n");
14368 #endif
14369 }
14370 EOCP
14371
14372 case "$i8type" in
14373 '')     case "$charsize" in
14374         1)      i8type=char
14375                 u8type="unsigned char"
14376                 i8size=$charsize
14377                 u8size=$charsize
14378                 ;;
14379         esac
14380         ;;
14381 esac
14382 case "$i8type" in
14383 '')     set try -DINT8
14384         if eval $compile; then
14385                 case "`$run ./try`" in
14386                 int8_t) i8type=int8_t
14387                         u8type=uint8_t
14388                         i8size=1
14389                         u8size=1
14390                         ;;
14391                 esac
14392         fi
14393         ;;
14394 esac
14395 case "$i8type" in
14396 '')     if $test $charsize -ge 1; then
14397                 i8type=char
14398                 u8type="unsigned char"
14399                 i8size=$charsize
14400                 u8size=$charsize
14401         fi
14402         ;;
14403 esac
14404
14405 case "$i16type" in
14406 '')     case "$shortsize" in
14407         2)      i16type=short
14408                 u16type="unsigned short"
14409                 i16size=$shortsize
14410                 u16size=$shortsize
14411                 ;;
14412         esac
14413         ;;
14414 esac
14415 case "$i16type" in
14416 '')     set try -DINT16
14417         if eval $compile; then
14418                 case "`$run ./try`" in
14419                 int16_t)
14420                         i16type=int16_t
14421                         u16type=uint16_t
14422                         i16size=2
14423                         u16size=2
14424                         ;;
14425                 esac
14426         fi
14427         ;;
14428 esac
14429 case "$i16type" in
14430 '')     if $test $shortsize -ge 2; then
14431                 i16type=short
14432                 u16type="unsigned short"
14433                 i16size=$shortsize
14434                 u16size=$shortsize
14435         fi
14436         ;;
14437 esac
14438
14439 case "$i32type" in
14440 '')     case "$longsize" in
14441         4)      i32type=long
14442                 u32type="unsigned long"
14443                 i32size=$longsize
14444                 u32size=$longsize
14445                 ;;
14446         *)      case "$intsize" in
14447                 4)      i32type=int
14448                         u32type="unsigned int"
14449                         i32size=$intsize
14450                         u32size=$intsize
14451                         ;;
14452                 esac
14453                 ;;
14454         esac
14455         ;;
14456 esac
14457 case "$i32type" in
14458 '')     set try -DINT32
14459         if eval $compile; then
14460                 case "`$run ./try`" in
14461                 int32_t)
14462                         i32type=int32_t
14463                         u32type=uint32_t
14464                         i32size=4
14465                         u32size=4
14466                         ;;
14467                 esac
14468         fi
14469         ;;
14470 esac
14471 case "$i32type" in
14472 '')     if $test $intsize -ge 4; then
14473                 i32type=int
14474                 u32type="unsigned int"
14475                 i32size=$intsize
14476                 u32size=$intsize
14477         fi
14478         ;;
14479 esac
14480
14481 case "$i64type" in
14482 '')     case "$d_quad:$quadtype" in
14483         define:?*)
14484                 i64type="$quadtype"
14485                 u64type="$uquadtype"
14486                 i64size=8
14487                 u64size=8
14488                 ;;
14489         esac
14490         ;;
14491 esac
14492
14493 $echo "Checking how many bits of your UVs your NVs can preserve..." >&4
14494 : volatile so that the compiler has to store it out to memory.
14495 if test X"$d_volatile" = X"$define"; then
14496         volatile=volatile
14497 fi
14498 $cat <<EOP >try.c
14499 #include <stdio.h>
14500 #$i_stdlib I_STDLIB
14501 #ifdef I_STDLIB
14502 #include <stdlib.h>
14503 #endif
14504 #include <sys/types.h>
14505 #include <signal.h>
14506 #ifdef SIGFPE
14507 $volatile int bletched = 0;
14508 $signal_t blech(s) int s; { bletched = 1; }
14509 #endif
14510 int main() {
14511     $uvtype u = 0;
14512     $nvtype d;
14513     int     n = 8 * $uvsize;
14514     int     i;
14515 #ifdef SIGFPE
14516     signal(SIGFPE, blech);
14517 #endif
14518
14519     for (i = 0; i < n; i++) {
14520       u = u << 1 | ($uvtype)1;
14521       d = ($nvtype)u;
14522       if (($uvtype)d != u)
14523         break;
14524       if (d <= 0)
14525         break;
14526       d = ($nvtype)(u - 1);
14527       if (($uvtype)d != (u - 1))
14528         break;
14529 #ifdef SIGFPE
14530       if (bletched) {
14531         break;
14532 #endif
14533       } 
14534     }
14535     printf("%d\n", ((i == n) ? -n : i));
14536     exit(0);
14537 }
14538 EOP
14539 set try
14540
14541 d_nv_preserves_uv="$undef"
14542 if eval $compile; then
14543         nv_preserves_uv_bits="`$run ./try`"
14544 fi
14545 case "$nv_preserves_uv_bits" in
14546 \-[1-9]*)       
14547         nv_preserves_uv_bits=`expr 0 - $nv_preserves_uv_bits`
14548         $echo "Your NVs can preserve all $nv_preserves_uv_bits bits of your UVs."  2>&1
14549         d_nv_preserves_uv="$define"
14550         ;;
14551 [1-9]*) $echo "Your NVs can preserve only $nv_preserves_uv_bits bits of your UVs."  2>&1
14552         d_nv_preserves_uv="$undef" ;;
14553 *)      $echo "Can't figure out how many bits your NVs preserve." 2>&1
14554         nv_preserves_uv_bits="$undef" ;;
14555 esac
14556
14557 $rm -f try.* try
14558
14559
14560 : check for off64_t
14561 echo " "
14562 echo "Checking to see if you have off64_t..." >&4
14563 $cat >try.c <<EOCP
14564 #include <sys/types.h>
14565 #include <unistd.h>
14566 int main() { off64_t x = 7; }
14567 EOCP
14568 set try
14569 if eval $compile; then
14570         val="$define"
14571         echo "You have off64_t."
14572 else
14573         val="$undef"
14574         echo "You do not have off64_t."
14575         case "$lseeksize" in
14576         8) echo "(Your off_t is 64 bits, so you could use that.)" ;;
14577         esac
14578 fi
14579 $rm -f try.* try
14580 set d_off64_t
14581 eval $setvar
14582
14583 : how to create joinable pthreads
14584 if test "X$usethreads" = "X$define" -a "X$i_pthread" = "X$define"; then
14585         echo " "
14586         echo "Checking what constant to use for creating joinable pthreads..." >&4 
14587         $cat >try.c <<'EOCP'
14588 #include <pthread.h>
14589 int main() {
14590     int detachstate = JOINABLE;
14591 }
14592 EOCP
14593         set try -DJOINABLE=PTHREAD_CREATE_JOINABLE
14594         if eval $compile; then
14595                 echo "You seem to use PTHREAD_CREATE_JOINABLE." >&4
14596                 val="$undef" # Yes, undef.
14597                 set d_old_pthread_create_joinable
14598                 eval $setvar
14599                 val=""
14600                 set old_pthread_create_joinable
14601                 eval $setvar
14602         else
14603                 set try -DJOINABLE=PTHREAD_CREATE_UNDETACHED
14604                 if eval $compile; then
14605                         echo "You seem to use PTHREAD_CREATE_UNDETACHED." >&4
14606                         val="$define"
14607                         set d_old_pthread_create_joinable
14608                         eval $setvar
14609                         val=PTHREAD_CREATE_UNDETACHED
14610                         set old_pthread_create_joinable
14611                         eval $setvar
14612                 else            
14613                         set try -DJOINABLE=__UNDETACHED
14614                         if eval $compile; then
14615                                 echo "You seem to use __UNDETACHED." >&4
14616                                 val="$define"
14617                                 set d_old_pthread_create_joinable
14618                                 eval $setvar
14619                                 val=__UNDETACHED
14620                                 set old_pthread_create_joinable
14621                                 eval $setvar
14622                         else
14623                                 echo "Egads, nothing obvious found.  Guessing that you use 0." >&4
14624                                 val="$define"
14625                                 set d_old_pthread_create_joinable
14626                                 eval $setvar
14627                                 val=0
14628                                 set old_pthread_create_joinable
14629                                 eval $setvar
14630                         fi
14631                 fi
14632         fi
14633         $rm -f try try.*
14634 else
14635     d_old_pthread_create_joinable="$undef"
14636     old_pthread_create_joinable=""
14637 fi
14638
14639 : see if pause exists
14640 set pause d_pause
14641 eval $inlibc
14642
14643 : see if pipe exists
14644 set pipe d_pipe
14645 eval $inlibc
14646
14647 : see if poll exists
14648 set poll d_poll
14649 eval $inlibc
14650
14651 : see if readlink exists
14652 set readlink d_readlink
14653 eval $inlibc
14654
14655 echo " "
14656 procselfexe=''
14657 val="$undef"
14658 case "$d_readlink" in
14659 "$define")
14660         if $issymlink /proc/self/exe ; then
14661                 $ls -l /proc/self/exe > reflect
14662                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
14663                         echo "You have Linux-like /proc/self/exe."
14664                         procselfexe='"/proc/self/exe"'
14665                         val="$define"
14666                 fi
14667         fi
14668         if $issymlink /proc/curproc/file ; then
14669                 $ls -l /proc/curproc/file > reflect
14670                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
14671                         echo "You have BSD-like /proc/curproc/file."
14672                         procselfexe='"/proc/curproc/file"'
14673                         val="$define"
14674                 fi
14675         fi
14676         ;;
14677 esac
14678 $rm -f reflect
14679 set d_procselfexe
14680 eval $setvar
14681
14682 : see whether the pthread_atfork exists
14683 $cat >try.c <<EOP
14684 #include <pthread.h>
14685 #include <stdio.h>
14686 int main() {
14687 #ifdef  PTHREAD_ATFORK
14688         pthread_atfork(NULL,NULL,NULL);
14689 #endif
14690 }
14691 EOP
14692
14693 : see if pthread_atfork exists
14694 set try -DPTHREAD_ATFORK
14695 if eval $compile; then
14696     val="$define"
14697 else
14698     val="$undef"
14699 fi
14700 case "$usethreads" in
14701 $define)
14702         case "$val" in
14703         $define) echo 'pthread_atfork found.' >&4        ;;
14704         *)       echo 'pthread_atfork NOT found.' >&4    ;;
14705         esac
14706 esac
14707 set d_pthread_atfork
14708 eval $setvar
14709
14710
14711 : see whether the various POSIXish _yields exist
14712 $cat >try.c <<EOP
14713 #include <pthread.h>
14714 #include <stdio.h>
14715 int main() {
14716 #ifdef SCHED_YIELD
14717         sched_yield();
14718 #else
14719 #ifdef PTHREAD_YIELD
14720         pthread_yield();
14721 #else
14722 #ifdef PTHREAD_YIELD_NULL
14723         pthread_yield(NULL);
14724 #endif
14725 #endif
14726 #endif
14727 }
14728 EOP
14729 : see if sched_yield exists
14730 set try -DSCHED_YIELD
14731 if eval $compile; then
14732     val="$define"
14733     sched_yield='sched_yield()'
14734 else
14735     val="$undef"
14736 fi
14737 case "$usethreads" in
14738 $define)
14739         case "$val" in
14740         $define) echo 'sched_yield() found.' >&4        ;;
14741         *)       echo 'sched_yield() NOT found.' >&4    ;;
14742         esac
14743 esac
14744 set d_sched_yield
14745 eval $setvar
14746
14747 : see if pthread_yield exists
14748 set try -DPTHREAD_YIELD
14749 if eval $compile; then
14750     val="$define"
14751     case "$sched_yield" in
14752     '') sched_yield='pthread_yield()' ;;
14753     esac
14754 else
14755     set try -DPTHREAD_YIELD_NULL
14756     if eval $compile; then
14757         val="$define"
14758         case "$sched_yield" in
14759         '') sched_yield='pthread_yield(NULL)' ;;
14760         esac
14761     else
14762         val="$undef"
14763     fi
14764 fi
14765 case "$usethreads" in
14766 $define)
14767         case "$val" in
14768         $define) echo 'pthread_yield() found.' >&4      ;;
14769         *)       echo 'pthread_yield() NOT found.' >&4  ;;
14770         esac
14771         ;;
14772 esac
14773 set d_pthread_yield
14774 eval $setvar
14775
14776 case "$sched_yield" in
14777 '') sched_yield=undef ;;
14778 esac
14779
14780 $rm -f try try.*
14781
14782 : see if random_r exists
14783 set random_r d_random_r
14784 eval $inlibc
14785 case "$d_random_r" in
14786 "$define")
14787         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
14788         case "$d_random_r_proto:$usethreads" in
14789         ":define")      d_random_r_proto=define
14790                 set d_random_r_proto random_r $hdrs
14791                 eval $hasproto ;;
14792         *)      ;;
14793         esac
14794         case "$d_random_r_proto" in
14795         define)
14796         case "$random_r_proto" in
14797         ''|0) try='int random_r(int*, struct random_data*);'
14798         ./protochk "extern $try" $hdrs && random_r_proto=I_iS ;;
14799         esac
14800         case "$random_r_proto" in
14801         ''|0) try='int random_r(long*, struct random_data*);'
14802         ./protochk "extern $try" $hdrs && random_r_proto=I_lS ;;
14803         esac
14804         case "$random_r_proto" in
14805         ''|0) try='int random_r(struct random_data*, int32_t*);'
14806         ./protochk "extern $try" $hdrs && random_r_proto=I_St ;;
14807         esac
14808         case "$random_r_proto" in
14809         ''|0)   d_random_r=undef
14810                 random_r_proto=0
14811                 echo "Disabling random_r, cannot determine prototype." >&4 ;;
14812         * )     case "$random_r_proto" in
14813                 REENTRANT_PROTO*) ;;
14814                 *) random_r_proto="REENTRANT_PROTO_$random_r_proto" ;;
14815                 esac
14816                 echo "Prototype: $try" ;;
14817         esac
14818         ;;
14819         *)      case "$usethreads" in
14820                 define) echo "random_r has no prototype, not using it." >&4 ;;
14821                 esac
14822                 d_random_r=undef
14823                 random_r_proto=0
14824                 ;;
14825         esac
14826         ;;
14827 *)      random_r_proto=0
14828         ;;
14829 esac
14830
14831 : see if readdir and friends exist
14832 set readdir d_readdir
14833 eval $inlibc
14834 set seekdir d_seekdir
14835 eval $inlibc
14836 set telldir d_telldir
14837 eval $inlibc
14838 set rewinddir d_rewinddir
14839 eval $inlibc
14840
14841 : see if readdir64_r exists
14842 set readdir64_r d_readdir64_r
14843 eval $inlibc
14844 case "$d_readdir64_r" in
14845 "$define")
14846         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
14847         case "$d_readdir64_r_proto:$usethreads" in
14848         ":define")      d_readdir64_r_proto=define
14849                 set d_readdir64_r_proto readdir64_r $hdrs
14850                 eval $hasproto ;;
14851         *)      ;;
14852         esac
14853         case "$d_readdir64_r_proto" in
14854         define)
14855         case "$readdir64_r_proto" in
14856         ''|0) try='int readdir64_r(DIR*, struct dirent64*, struct dirent64**);'
14857         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TSR ;;
14858         esac
14859         case "$readdir64_r_proto" in
14860         ''|0) try='int readdir64_r(DIR*, struct dirent64*);'
14861         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TS ;;
14862         esac
14863         case "$readdir64_r_proto" in
14864         ''|0)   d_readdir64_r=undef
14865                 readdir64_r_proto=0
14866                 echo "Disabling readdir64_r, cannot determine prototype." >&4 ;;
14867         * )     case "$readdir64_r_proto" in
14868                 REENTRANT_PROTO*) ;;
14869                 *) readdir64_r_proto="REENTRANT_PROTO_$readdir64_r_proto" ;;
14870                 esac
14871                 echo "Prototype: $try" ;;
14872         esac
14873         ;;
14874         *)      case "$usethreads" in
14875                 define) echo "readdir64_r has no prototype, not using it." >&4 ;;
14876                 esac
14877                 d_readdir64_r=undef
14878                 readdir64_r_proto=0
14879                 ;;
14880         esac
14881         ;;
14882 *)      readdir64_r_proto=0
14883         ;;
14884 esac
14885
14886 : see if readdir_r exists
14887 set readdir_r d_readdir_r
14888 eval $inlibc
14889 case "$d_readdir_r" in
14890 "$define")
14891         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
14892         case "$d_readdir_r_proto:$usethreads" in
14893         ":define")      d_readdir_r_proto=define
14894                 set d_readdir_r_proto readdir_r $hdrs
14895                 eval $hasproto ;;
14896         *)      ;;
14897         esac
14898         case "$d_readdir_r_proto" in
14899         define)
14900         case "$readdir_r_proto" in
14901         ''|0) try='int readdir_r(DIR*, struct dirent*, struct dirent**);'
14902         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TSR ;;
14903         esac
14904         case "$readdir_r_proto" in
14905         ''|0) try='int readdir_r(DIR*, struct dirent*);'
14906         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TS ;;
14907         esac
14908         case "$readdir_r_proto" in
14909         ''|0)   d_readdir_r=undef
14910                 readdir_r_proto=0
14911                 echo "Disabling readdir_r, cannot determine prototype." >&4 ;;
14912         * )     case "$readdir_r_proto" in
14913                 REENTRANT_PROTO*) ;;
14914                 *) readdir_r_proto="REENTRANT_PROTO_$readdir_r_proto" ;;
14915                 esac
14916                 echo "Prototype: $try" ;;
14917         esac
14918         ;;
14919         *)      case "$usethreads" in
14920                 define) echo "readdir_r has no prototype, not using it." >&4 ;;
14921                 esac
14922                 d_readdir_r=undef
14923                 readdir_r_proto=0
14924                 ;;
14925         esac
14926         ;;
14927 *)      readdir_r_proto=0
14928         ;;
14929 esac
14930
14931 : see if readv exists
14932 set readv d_readv
14933 eval $inlibc
14934
14935 : see if recvmsg exists
14936 set recvmsg d_recvmsg
14937 eval $inlibc
14938
14939 : see if rename exists
14940 set rename d_rename
14941 eval $inlibc
14942
14943 : see if rmdir exists
14944 set rmdir d_rmdir
14945 eval $inlibc
14946
14947 : see if memory.h is available.
14948 val=''
14949 set memory.h val
14950 eval $inhdr
14951
14952 : See if it conflicts with string.h
14953 case "$val" in
14954 $define)
14955         case "$strings" in
14956         '') ;;
14957         *)
14958                 $cppstdin $cppflags $cppminus < $strings > mem.h
14959                 if $contains 'memcpy' mem.h >/dev/null 2>&1; then
14960                         echo " "
14961                         echo "We won't be including <memory.h>."
14962                         val="$undef"
14963                 fi
14964                 $rm -f mem.h
14965                 ;;
14966         esac
14967 esac
14968 set i_memory
14969 eval $setvar
14970
14971 : can bcopy handle overlapping blocks?
14972 echo " "
14973 val="$undef"
14974 case "$d_memmove" in
14975 "$define") echo "I'll use memmove() instead of bcopy() for overlapping copies." ;;
14976 *)      case "$d_bcopy" in
14977         "$define")
14978                 echo "Checking to see if bcopy() can do overlapping copies..." >&4
14979                 $cat >try.c <<EOCP
14980 #$i_memory I_MEMORY
14981 #$i_stdlib I_STDLIB
14982 #$i_string I_STRING
14983 #$i_unistd I_UNISTD
14984 EOCP
14985         $cat >>try.c <<'EOCP'
14986 #include <stdio.h>
14987 #ifdef I_MEMORY
14988 #  include <memory.h>
14989 #endif
14990 #ifdef I_STDLIB
14991 #  include <stdlib.h>
14992 #endif
14993 #ifdef I_STRING
14994 #  include <string.h>
14995 #else
14996 #  include <strings.h>
14997 #endif
14998 #ifdef I_UNISTD
14999 #  include <unistd.h>  /* Needed for NetBSD */
15000 #endif
15001 int main()
15002 {
15003 char buf[128], abc[128];
15004 char *b;
15005 int len;
15006 int off;
15007 int align;
15008
15009 /* Copy "abcde..." string to char abc[] so that gcc doesn't
15010    try to store the string in read-only memory. */
15011 bcopy("abcdefghijklmnopqrstuvwxyz0123456789", abc, 36);
15012
15013 for (align = 7; align >= 0; align--) {
15014         for (len = 36; len; len--) {
15015                 b = buf+align;
15016                 bcopy(abc, b, len);
15017                 for (off = 1; off <= len; off++) {
15018                         bcopy(b, b+off, len);
15019                         bcopy(b+off, b, len);
15020                         if (bcmp(b, abc, len))
15021                                 exit(1);
15022                 }
15023         }
15024 }
15025 exit(0);
15026 }
15027 EOCP
15028                 set try
15029                 if eval $compile_ok; then
15030                         if ./try 2>/dev/null; then
15031                                 echo "Yes, it can."
15032                                 val="$define"
15033                         else
15034                                 echo "It can't, sorry."
15035                         fi
15036                 else
15037                         echo "(I can't compile the test program, so we'll assume not...)"
15038                 fi
15039                 ;;
15040         esac
15041         $rm -f try.* try core
15042         ;;
15043 esac
15044 set d_safebcpy
15045 eval $setvar
15046
15047 : can memcpy handle overlapping blocks?
15048 echo " "
15049 val="$undef"
15050 case "$d_memmove" in
15051 "$define") echo "I'll use memmove() instead of memcpy() for overlapping copies." ;;
15052 *)      case "$d_memcpy" in
15053         "$define")
15054                 echo "Checking to see if memcpy() can do overlapping copies..." >&4
15055                 $cat >try.c <<EOCP
15056 #$i_memory I_MEMORY
15057 #$i_stdlib I_STDLIB
15058 #$i_string I_STRING
15059 #$i_unistd I_UNISTD
15060 EOCP
15061         $cat >>try.c <<'EOCP'
15062 #include <stdio.h>
15063 #ifdef I_MEMORY
15064 #  include <memory.h>
15065 #endif
15066 #ifdef I_STDLIB
15067 #  include <stdlib.h>
15068 #endif
15069 #ifdef I_STRING
15070 #  include <string.h>
15071 #else
15072 #  include <strings.h>
15073 #endif
15074 #ifdef I_UNISTD
15075 #  include <unistd.h>  /* Needed for NetBSD */
15076 #endif
15077 int main()
15078 {
15079 char buf[128], abc[128];
15080 char *b;
15081 int len;
15082 int off;
15083 int align;
15084
15085 /* Copy "abcde..." string to char abc[] so that gcc doesn't
15086    try to store the string in read-only memory. */
15087 memcpy(abc, "abcdefghijklmnopqrstuvwxyz0123456789", 36);
15088
15089 for (align = 7; align >= 0; align--) {
15090         for (len = 36; len; len--) {
15091                 b = buf+align;
15092                 memcpy(b, abc, len);
15093                 for (off = 1; off <= len; off++) {
15094                         memcpy(b+off, b, len);
15095                         memcpy(b, b+off, len);
15096                         if (memcmp(b, abc, len))
15097                                 exit(1);
15098                 }
15099         }
15100 }
15101 exit(0);
15102 }
15103 EOCP
15104                 set try
15105                 if eval $compile_ok; then
15106                         if ./try 2>/dev/null; then
15107                                 echo "Yes, it can."
15108                                 val="$define"
15109                         else
15110                                 echo "It can't, sorry."
15111                         fi
15112                 else
15113                         echo "(I can't compile the test program, so we'll assume not...)"
15114                 fi
15115                 ;;
15116         esac
15117         $rm -f try.* try core
15118         ;;
15119 esac
15120 set d_safemcpy
15121 eval $setvar
15122
15123 : can memcmp be trusted to compare relative magnitude?
15124 val="$undef"
15125 case "$d_memcmp" in
15126 "$define")
15127         echo " "
15128         echo "Checking if your memcmp() can compare relative magnitude..." >&4
15129         $cat >try.c <<EOCP
15130 #$i_memory I_MEMORY
15131 #$i_stdlib I_STDLIB
15132 #$i_string I_STRING
15133 #$i_unistd I_UNISTD
15134 EOCP
15135         $cat >>try.c <<'EOCP'
15136 #include <stdio.h>
15137 #ifdef I_MEMORY
15138 #  include <memory.h>
15139 #endif
15140 #ifdef I_STDLIB
15141 #  include <stdlib.h>
15142 #endif
15143 #ifdef I_STRING
15144 #  include <string.h>
15145 #else
15146 #  include <strings.h>
15147 #endif
15148 #ifdef I_UNISTD
15149 #  include <unistd.h>  /* Needed for NetBSD */
15150 #endif
15151 int main()
15152 {
15153 char a = -1;
15154 char b = 0;
15155 if ((a < b) && memcmp(&a, &b, 1) < 0)
15156         exit(1);
15157 exit(0);
15158 }
15159 EOCP
15160         set try
15161         if eval $compile_ok; then
15162                 if $run ./try 2>/dev/null; then
15163                         echo "Yes, it can."
15164                         val="$define"
15165                 else
15166                         echo "No, it can't (it uses signed chars)."
15167                 fi
15168         else
15169                 echo "(I can't compile the test program, so we'll assume not...)"
15170         fi
15171         ;;
15172 esac
15173 $rm -f try.* try core
15174 set d_sanemcmp
15175 eval $setvar
15176
15177 : see if prototype for sbrk is available
15178 echo " "
15179 set d_sbrkproto sbrk $i_unistd unistd.h
15180 eval $hasproto
15181
15182 : see if select exists
15183 set select d_select
15184 eval $inlibc
15185
15186 : see if semctl exists
15187 set semctl d_semctl
15188 eval $inlibc
15189
15190 : see if semget exists
15191 set semget d_semget
15192 eval $inlibc
15193
15194 : see if semop exists
15195 set semop d_semop
15196 eval $inlibc
15197
15198 : see how much of the 'sem*(2)' library is present.
15199 h_sem=true
15200 echo " "
15201 case "$d_semctl$d_semget$d_semop" in
15202 *"$undef"*) h_sem=false;;
15203 esac
15204 case "$osname" in
15205 freebsd)
15206     case "`ipcs 2>&1`" in
15207     "SVID messages"*"not configured"*)
15208         echo "Your $osname does not have the sem*(2) configured." >&4
15209         h_sem=false
15210         val="$undef"
15211         set semctl d_semctl
15212         eval $setvar
15213         set semget d_semget
15214         eval $setvar
15215         set semop d_semop
15216         eval $setvar
15217         ;;
15218     esac
15219     ;;
15220 esac
15221 : we could also check for sys/ipc.h ...
15222 if $h_sem && $test `./findhdr sys/sem.h`; then
15223         echo "You have the full sem*(2) library." >&4
15224         val="$define"
15225 else
15226         echo "You don't have the full sem*(2) library." >&4
15227         val="$undef"
15228 fi
15229 set d_sem
15230 eval $setvar
15231
15232 : see whether sys/sem.h defines union semun
15233 echo " "
15234 $cat > try.c <<'END'
15235 #include <sys/types.h>
15236 #include <sys/ipc.h>
15237 #include <sys/sem.h>
15238 int main () { union semun semun; semun.buf = 0; }
15239 END
15240 set try
15241 if eval $compile; then
15242     echo "You have union semun in <sys/sem.h>." >&4
15243     val="$define"
15244 else
15245     echo "You do not have union semun in <sys/sem.h>." >&4
15246     val="$undef"
15247 fi
15248 $rm -f try try.c try.h
15249 set d_union_semun
15250 eval $setvar
15251
15252 : see how to do semctl IPC_STAT
15253 case "$d_sem" in
15254 $define)
15255     : see whether semctl IPC_STAT can use union semun
15256     echo " "
15257     $cat > try.h <<END
15258 #ifndef S_IRUSR
15259 #   ifdef S_IREAD
15260 #       define S_IRUSR S_IREAD
15261 #       define S_IWUSR S_IWRITE
15262 #       define S_IXUSR S_IEXEC
15263 #   else
15264 #       define S_IRUSR 0400
15265 #       define S_IWUSR 0200
15266 #       define S_IXUSR 0100
15267 #   endif
15268 #   define S_IRGRP (S_IRUSR>>3)
15269 #   define S_IWGRP (S_IWUSR>>3)
15270 #   define S_IXGRP (S_IXUSR>>3)
15271 #   define S_IROTH (S_IRUSR>>6)
15272 #   define S_IWOTH (S_IWUSR>>6)
15273 #   define S_IXOTH (S_IXUSR>>6)
15274 #endif
15275 #ifndef S_IRWXU
15276 #   define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
15277 #   define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
15278 #   define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
15279 #endif
15280 END
15281
15282     $cat > try.c <<END
15283 #include <sys/types.h>
15284 #include <sys/ipc.h>
15285 #include <sys/sem.h>
15286 #include <sys/stat.h>
15287 #include <stdio.h>
15288 #include <errno.h>
15289 #include "try.h"
15290 #ifndef errno
15291 extern int errno;
15292 #endif
15293 #$d_union_semun HAS_UNION_SEMUN
15294 int main() {
15295     union semun
15296 #ifndef HAS_UNION_SEMUN
15297     {
15298         int val;
15299         struct semid_ds *buf;
15300         unsigned short *array;
15301     }
15302 #endif
15303     arg;
15304     int sem, st;
15305
15306 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) && defined(S_IRWXO) && defined(IPC_CREAT)
15307     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
15308     if (sem > -1) {
15309         struct semid_ds argbuf;
15310         arg.buf = &argbuf;
15311 #       ifdef IPC_STAT
15312         st = semctl(sem, 0, IPC_STAT, arg);
15313         if (st == 0)
15314             printf("semun\n");
15315         else
15316 #       endif /* IPC_STAT */
15317             printf("semctl IPC_STAT failed: errno = %d\n", errno);
15318 #       ifdef IPC_RMID
15319         if (semctl(sem, 0, IPC_RMID, arg) != 0)
15320 #       endif /* IPC_RMID */
15321             printf("semctl IPC_RMID failed: errno = %d\n", errno);
15322     } else
15323 #endif /* IPC_PRIVATE && ... */
15324         printf("semget failed: errno = %d\n", errno);
15325   return 0;
15326 }
15327 END
15328     val="$undef"
15329     set try
15330     if eval $compile; then
15331         xxx=`$run ./try`
15332         case "$xxx" in
15333         semun) val="$define" ;;
15334         esac
15335     fi
15336     $rm -f try try.c
15337     set d_semctl_semun
15338     eval $setvar
15339     case "$d_semctl_semun" in
15340     $define)
15341         echo "You can use union semun for semctl IPC_STAT." >&4
15342         also='also'
15343         ;;
15344     *)  echo "You cannot use union semun for semctl IPC_STAT." >&4
15345         also=''
15346         ;;
15347     esac
15348
15349     : see whether semctl IPC_STAT can use struct semid_ds pointer
15350     $cat > try.c <<'END'
15351 #include <sys/types.h>
15352 #include <sys/ipc.h>
15353 #include <sys/sem.h>
15354 #include <sys/stat.h>
15355 #include "try.h"
15356 #include <stdio.h>
15357 #include <errno.h>
15358 #ifndef errno
15359 extern int errno;
15360 #endif
15361 int main() {
15362     struct semid_ds arg;
15363     int sem, st;
15364
15365 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) &&  defined(S_IRWXO) && defined(IPC_CREAT)
15366     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
15367     if (sem > -1) {
15368 #       ifdef IPC_STAT
15369         st = semctl(sem, 0, IPC_STAT, &arg);
15370         if (st == 0)
15371             printf("semid_ds\n");
15372         else
15373 #       endif /* IPC_STAT */
15374             printf("semctl IPC_STAT failed: errno = %d\n", errno);
15375 #       ifdef IPC_RMID
15376         if (semctl(sem, 0, IPC_RMID, &arg) != 0)
15377 #       endif /* IPC_RMID */
15378             printf("semctl IPC_RMID failed: errno = %d\n", errno);
15379     } else
15380 #endif /* IPC_PRIVATE && ... */
15381         printf("semget failed: errno = %d\n", errno);
15382
15383     return 0;
15384 }
15385 END
15386     val="$undef"
15387     set try
15388     if eval $compile; then
15389         xxx=`$run ./try`
15390         case "$xxx" in
15391         semid_ds) val="$define" ;;
15392         esac
15393     fi
15394     $rm -f try try.c
15395     set d_semctl_semid_ds
15396     eval $setvar
15397     case "$d_semctl_semid_ds" in
15398     $define)
15399         echo "You can $also use struct semid_ds* for semctl IPC_STAT." >&4
15400         ;;
15401     *)  echo "You cannot use struct semid_ds* for semctl IPC_STAT." >&4
15402         ;;
15403     esac
15404     $rm -f try.h
15405     ;;
15406 *)  val="$undef"
15407
15408     # We do not have the full sem*(2) library, so assume we can not
15409     # use either.
15410
15411     set d_semctl_semun
15412     eval $setvar
15413
15414     set d_semctl_semid_ds
15415     eval $setvar
15416     ;;
15417 esac
15418
15419 : see if sendmsg exists
15420 set sendmsg d_sendmsg
15421 eval $inlibc
15422
15423 : see if setegid exists
15424 set setegid d_setegid
15425 eval $inlibc
15426
15427 : see if seteuid exists
15428 set seteuid d_seteuid
15429 eval $inlibc
15430
15431 : see if setgrent exists
15432 set setgrent d_setgrent
15433 eval $inlibc
15434
15435 : see if setgrent_r exists
15436 set setgrent_r d_setgrent_r
15437 eval $inlibc
15438 case "$d_setgrent_r" in
15439 "$define")
15440         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
15441         case "$d_setgrent_r_proto:$usethreads" in
15442         ":define")      d_setgrent_r_proto=define
15443                 set d_setgrent_r_proto setgrent_r $hdrs
15444                 eval $hasproto ;;
15445         *)      ;;
15446         esac
15447         case "$d_setgrent_r_proto" in
15448         define)
15449         case "$setgrent_r_proto" in
15450         ''|0) try='int setgrent_r(FILE**);'
15451         ./protochk "extern $try" $hdrs && setgrent_r_proto=I_H ;;
15452         esac
15453         case "$setgrent_r_proto" in
15454         ''|0) try='void setgrent_r(FILE**);'
15455         ./protochk "extern $try" $hdrs && setgrent_r_proto=V_H ;;
15456         esac
15457         case "$setgrent_r_proto" in
15458         ''|0)   d_setgrent_r=undef
15459                 setgrent_r_proto=0
15460                 echo "Disabling setgrent_r, cannot determine prototype." >&4 ;;
15461         * )     case "$setgrent_r_proto" in
15462                 REENTRANT_PROTO*) ;;
15463                 *) setgrent_r_proto="REENTRANT_PROTO_$setgrent_r_proto" ;;
15464                 esac
15465                 echo "Prototype: $try" ;;
15466         esac
15467         ;;
15468         *)      case "$usethreads" in
15469                 define) echo "setgrent_r has no prototype, not using it." >&4 ;;
15470                 esac
15471                 d_setgrent_r=undef
15472                 setgrent_r_proto=0
15473                 ;;
15474         esac
15475         ;;
15476 *)      setgrent_r_proto=0
15477         ;;
15478 esac
15479
15480 : see if sethostent exists
15481 set sethostent d_sethent
15482 eval $inlibc
15483
15484 : see if sethostent_r exists
15485 set sethostent_r d_sethostent_r
15486 eval $inlibc
15487 case "$d_sethostent_r" in
15488 "$define")
15489         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15490         case "$d_sethostent_r_proto:$usethreads" in
15491         ":define")      d_sethostent_r_proto=define
15492                 set d_sethostent_r_proto sethostent_r $hdrs
15493                 eval $hasproto ;;
15494         *)      ;;
15495         esac
15496         case "$d_sethostent_r_proto" in
15497         define)
15498         case "$sethostent_r_proto" in
15499         ''|0) try='int sethostent_r(int, struct hostent_data*);'
15500         ./protochk "extern $try" $hdrs && sethostent_r_proto=I_ID ;;
15501         esac
15502         case "$sethostent_r_proto" in
15503         ''|0) try='void sethostent_r(int, struct hostent_data*);'
15504         ./protochk "extern $try" $hdrs && sethostent_r_proto=V_ID ;;
15505         esac
15506         case "$sethostent_r_proto" in
15507         ''|0)   d_sethostent_r=undef
15508                 sethostent_r_proto=0
15509                 echo "Disabling sethostent_r, cannot determine prototype." >&4 ;;
15510         * )     case "$sethostent_r_proto" in
15511                 REENTRANT_PROTO*) ;;
15512                 *) sethostent_r_proto="REENTRANT_PROTO_$sethostent_r_proto" ;;
15513                 esac
15514                 echo "Prototype: $try" ;;
15515         esac
15516         ;;
15517         *)      case "$usethreads" in
15518                 define) echo "sethostent_r has no prototype, not using it." >&4 ;;
15519                 esac
15520                 d_sethostent_r=undef
15521                 sethostent_r_proto=0
15522                 ;;
15523         esac
15524         ;;
15525 *)      sethostent_r_proto=0
15526         ;;
15527 esac
15528
15529 : see if setitimer exists
15530 set setitimer d_setitimer
15531 eval $inlibc
15532
15533 : see if setlinebuf exists
15534 set setlinebuf d_setlinebuf
15535 eval $inlibc
15536
15537 : see if setlocale exists
15538 set setlocale d_setlocale
15539 eval $inlibc
15540
15541 : see if locale.h is available
15542 set locale.h i_locale
15543 eval $inhdr
15544
15545 : see if setlocale_r exists
15546 set setlocale_r d_setlocale_r
15547 eval $inlibc
15548 case "$d_setlocale_r" in
15549 "$define")
15550         hdrs="$i_systypes sys/types.h define stdio.h $i_locale locale.h"
15551         case "$d_setlocale_r_proto:$usethreads" in
15552         ":define")      d_setlocale_r_proto=define
15553                 set d_setlocale_r_proto setlocale_r $hdrs
15554                 eval $hasproto ;;
15555         *)      ;;
15556         esac
15557         case "$d_setlocale_r_proto" in
15558         define)
15559         case "$setlocale_r_proto" in
15560         ''|0) try='int setlocale_r(int, const char*, char*, int);'
15561         ./protochk "extern $try" $hdrs && setlocale_r_proto=I_ICBI ;;
15562         esac
15563         case "$setlocale_r_proto" in
15564         ''|0)   d_setlocale_r=undef
15565                 setlocale_r_proto=0
15566                 echo "Disabling setlocale_r, cannot determine prototype." >&4 ;;
15567         * )     case "$setlocale_r_proto" in
15568                 REENTRANT_PROTO*) ;;
15569                 *) setlocale_r_proto="REENTRANT_PROTO_$setlocale_r_proto" ;;
15570                 esac
15571                 echo "Prototype: $try" ;;
15572         esac
15573         ;;
15574         *)      case "$usethreads" in
15575                 define) echo "setlocale_r has no prototype, not using it." >&4 ;;
15576                 esac
15577                 d_setlocale_r=undef
15578                 setlocale_r_proto=0
15579                 ;;
15580         esac
15581         ;;
15582 *)      setlocale_r_proto=0
15583         ;;
15584 esac
15585
15586 : see if setnetent exists
15587 set setnetent d_setnent
15588 eval $inlibc
15589
15590 : see if setnetent_r exists
15591 set setnetent_r d_setnetent_r
15592 eval $inlibc
15593 case "$d_setnetent_r" in
15594 "$define")
15595         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15596         case "$d_setnetent_r_proto:$usethreads" in
15597         ":define")      d_setnetent_r_proto=define
15598                 set d_setnetent_r_proto setnetent_r $hdrs
15599                 eval $hasproto ;;
15600         *)      ;;
15601         esac
15602         case "$d_setnetent_r_proto" in
15603         define)
15604         case "$setnetent_r_proto" in
15605         ''|0) try='int setnetent_r(int, struct netent_data*);'
15606         ./protochk "extern $try" $hdrs && setnetent_r_proto=I_ID ;;
15607         esac
15608         case "$setnetent_r_proto" in
15609         ''|0) try='void setnetent_r(int, struct netent_data*);'
15610         ./protochk "extern $try" $hdrs && setnetent_r_proto=V_ID ;;
15611         esac
15612         case "$setnetent_r_proto" in
15613         ''|0)   d_setnetent_r=undef
15614                 setnetent_r_proto=0
15615                 echo "Disabling setnetent_r, cannot determine prototype." >&4 ;;
15616         * )     case "$setnetent_r_proto" in
15617                 REENTRANT_PROTO*) ;;
15618                 *) setnetent_r_proto="REENTRANT_PROTO_$setnetent_r_proto" ;;
15619                 esac
15620                 echo "Prototype: $try" ;;
15621         esac
15622         ;;
15623         *)      case "$usethreads" in
15624                 define) echo "setnetent_r has no prototype, not using it." >&4 ;;
15625                 esac
15626                 d_setnetent_r=undef
15627                 setnetent_r_proto=0
15628                 ;;
15629         esac
15630         ;;
15631 *)      setnetent_r_proto=0
15632         ;;
15633 esac
15634
15635 : see if setprotoent exists
15636 set setprotoent d_setpent
15637 eval $inlibc
15638
15639 : see if setpgid exists
15640 set setpgid d_setpgid
15641 eval $inlibc
15642
15643 : see if setpgrp2 exists
15644 set setpgrp2 d_setpgrp2
15645 eval $inlibc
15646
15647 : see if setpriority exists
15648 set setpriority d_setprior
15649 eval $inlibc
15650
15651 : see if setproctitle exists
15652 set setproctitle d_setproctitle
15653 eval $inlibc
15654
15655 : see if setprotoent_r exists
15656 set setprotoent_r d_setprotoent_r
15657 eval $inlibc
15658 case "$d_setprotoent_r" in
15659 "$define")
15660         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15661         case "$d_setprotoent_r_proto:$usethreads" in
15662         ":define")      d_setprotoent_r_proto=define
15663                 set d_setprotoent_r_proto setprotoent_r $hdrs
15664                 eval $hasproto ;;
15665         *)      ;;
15666         esac
15667         case "$d_setprotoent_r_proto" in
15668         define)
15669         case "$setprotoent_r_proto" in
15670         ''|0) try='int setprotoent_r(int, struct protoent_data*);'
15671         ./protochk "extern $try" $hdrs && setprotoent_r_proto=I_ID ;;
15672         esac
15673         case "$setprotoent_r_proto" in
15674         ''|0) try='void setprotoent_r(int, struct protoent_data*);'
15675         ./protochk "extern $try" $hdrs && setprotoent_r_proto=V_ID ;;
15676         esac
15677         case "$setprotoent_r_proto" in
15678         ''|0)   d_setprotoent_r=undef
15679                 setprotoent_r_proto=0
15680                 echo "Disabling setprotoent_r, cannot determine prototype." >&4 ;;
15681         * )     case "$setprotoent_r_proto" in
15682                 REENTRANT_PROTO*) ;;
15683                 *) setprotoent_r_proto="REENTRANT_PROTO_$setprotoent_r_proto" ;;
15684                 esac
15685                 echo "Prototype: $try" ;;
15686         esac
15687         ;;
15688         *)      case "$usethreads" in
15689                 define) echo "setprotoent_r has no prototype, not using it." >&4 ;;
15690                 esac
15691                 d_setprotoent_r=undef
15692                 setprotoent_r_proto=0
15693                 ;;
15694         esac
15695         ;;
15696 *)      setprotoent_r_proto=0
15697         ;;
15698 esac
15699
15700 : see if setpwent exists
15701 set setpwent d_setpwent
15702 eval $inlibc
15703
15704 : see if setpwent_r exists
15705 set setpwent_r d_setpwent_r
15706 eval $inlibc
15707 case "$d_setpwent_r" in
15708 "$define")
15709         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
15710         case "$d_setpwent_r_proto:$usethreads" in
15711         ":define")      d_setpwent_r_proto=define
15712                 set d_setpwent_r_proto setpwent_r $hdrs
15713                 eval $hasproto ;;
15714         *)      ;;
15715         esac
15716         case "$d_setpwent_r_proto" in
15717         define)
15718         case "$setpwent_r_proto" in
15719         ''|0) try='int setpwent_r(FILE**);'
15720         ./protochk "extern $try" $hdrs && setpwent_r_proto=I_H ;;
15721         esac
15722         case "$setpwent_r_proto" in
15723         ''|0) try='void setpwent_r(FILE**);'
15724         ./protochk "extern $try" $hdrs && setpwent_r_proto=V_H ;;
15725         esac
15726         case "$setpwent_r_proto" in
15727         ''|0)   d_setpwent_r=undef
15728                 setpwent_r_proto=0
15729                 echo "Disabling setpwent_r, cannot determine prototype." >&4 ;;
15730         * )     case "$setpwent_r_proto" in
15731                 REENTRANT_PROTO*) ;;
15732                 *) setpwent_r_proto="REENTRANT_PROTO_$setpwent_r_proto" ;;
15733                 esac
15734                 echo "Prototype: $try" ;;
15735         esac
15736         ;;
15737         *)      case "$usethreads" in
15738                 define) echo "setpwent_r has no prototype, not using it." >&4 ;;
15739                 esac
15740                 d_setpwent_r=undef
15741                 setpwent_r_proto=0
15742                 ;;
15743         esac
15744         ;;
15745 *)      setpwent_r_proto=0
15746         ;;
15747 esac
15748
15749 : see if setregid exists
15750 set setregid d_setregid
15751 eval $inlibc
15752 set setresgid d_setresgid
15753 eval $inlibc
15754
15755 : see if setreuid exists
15756 set setreuid d_setreuid
15757 eval $inlibc
15758 set setresuid d_setresuid
15759 eval $inlibc
15760
15761 : see if setrgid exists
15762 set setrgid d_setrgid
15763 eval $inlibc
15764
15765 : see if setruid exists
15766 set setruid d_setruid
15767 eval $inlibc
15768
15769 : see if setservent exists
15770 set setservent d_setsent
15771 eval $inlibc
15772
15773 : see if setservent_r exists
15774 set setservent_r d_setservent_r
15775 eval $inlibc
15776 case "$d_setservent_r" in
15777 "$define")
15778         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15779         case "$d_setservent_r_proto:$usethreads" in
15780         ":define")      d_setservent_r_proto=define
15781                 set d_setservent_r_proto setservent_r $hdrs
15782                 eval $hasproto ;;
15783         *)      ;;
15784         esac
15785         case "$d_setservent_r_proto" in
15786         define)
15787         case "$setservent_r_proto" in
15788         ''|0) try='int setservent_r(int, struct servent_data*);'
15789         ./protochk "extern $try" $hdrs && setservent_r_proto=I_ID ;;
15790         esac
15791         case "$setservent_r_proto" in
15792         ''|0) try='void setservent_r(int, struct servent_data*);'
15793         ./protochk "extern $try" $hdrs && setservent_r_proto=V_ID ;;
15794         esac
15795         case "$setservent_r_proto" in
15796         ''|0)   d_setservent_r=undef
15797                 setservent_r_proto=0
15798                 echo "Disabling setservent_r, cannot determine prototype." >&4 ;;
15799         * )     case "$setservent_r_proto" in
15800                 REENTRANT_PROTO*) ;;
15801                 *) setservent_r_proto="REENTRANT_PROTO_$setservent_r_proto" ;;
15802                 esac
15803                 echo "Prototype: $try" ;;
15804         esac
15805         ;;
15806         *)      case "$usethreads" in
15807                 define) echo "setservent_r has no prototype, not using it." >&4 ;;
15808                 esac
15809                 d_setservent_r=undef
15810                 setservent_r_proto=0
15811                 ;;
15812         esac
15813         ;;
15814 *)      setservent_r_proto=0
15815         ;;
15816 esac
15817
15818 : see if setsid exists
15819 set setsid d_setsid
15820 eval $inlibc
15821
15822 : see if setvbuf exists
15823 set setvbuf d_setvbuf
15824 eval $inlibc
15825
15826 : see if sfio.h is available
15827 set sfio.h i_sfio
15828 eval $inhdr
15829
15830
15831 : see if sfio library is available
15832 case "$i_sfio" in
15833 $define)
15834         val=''
15835         set sfreserve val
15836         eval $inlibc
15837         ;;
15838 *)
15839         val="$undef"
15840         ;;
15841 esac
15842 : Ok, but do we want to use it.
15843 case "$val" in
15844 $define)
15845         case "$usesfio" in
15846         true|$define|[yY]*) dflt='y';;
15847         *) dflt='n';;
15848         esac
15849         echo "$package can use the sfio library, but it is experimental."
15850         case "$useperlio" in
15851         "$undef")
15852             echo "For sfio also the PerlIO abstraction layer is needed."
15853             echo "Earlier you said you wouldn't want that."
15854             ;;
15855         esac
15856         rp="You seem to have sfio available, do you want to try using it?"
15857         . ./myread
15858         case "$ans" in
15859         y|Y)    echo "Ok, turning on both sfio and PerlIO, then."
15860                 useperlio="$define"
15861                 val="$define"
15862                 ;;
15863         *)      echo "Ok, avoiding sfio this time.  I'll use stdio instead."
15864                 val="$undef"
15865                 ;;
15866         esac
15867         ;;
15868 *)      case "$usesfio" in
15869         true|$define|[yY]*)
15870                 echo "Sorry, cannot find sfio on this machine." >&4
15871                 echo "Ignoring your setting of usesfio=$usesfio." >&4
15872                 val="$undef"
15873                 ;;
15874         esac
15875         ;;
15876 esac
15877 set d_sfio
15878 eval $setvar
15879 case "$d_sfio" in
15880 $define) usesfio='true';;
15881 *) usesfio='false';;
15882 esac
15883 case "$d_sfio" in
15884 $define) ;;
15885 *)      : Remove sfio from list of libraries to use
15886         case "$libs" in
15887         *-lsfio*)
15888                 echo "Removing unneeded -lsfio from library list" >&4
15889                 set `echo X $libs | $sed -e 's/-lsfio / /' -e 's/-lsfio$//'`
15890                 shift
15891                 libs="$*"
15892                 echo "libs = $libs" >&4
15893                 ;;
15894         esac
15895 ;;
15896 esac
15897
15898
15899 : see if shmctl exists
15900 set shmctl d_shmctl
15901 eval $inlibc
15902
15903 : see if shmget exists
15904 set shmget d_shmget
15905 eval $inlibc
15906
15907 : see if shmat exists
15908 set shmat d_shmat
15909 eval $inlibc
15910 : see what shmat returns
15911 case "$d_shmat" in
15912 "$define")
15913         $cat >shmat.c <<'END'
15914 #include <sys/shm.h>
15915 void *shmat();
15916 END
15917         if $cc $ccflags -c shmat.c >/dev/null 2>&1; then
15918                 shmattype='void *'
15919         else
15920                 shmattype='char *'
15921         fi
15922         echo "and it returns ($shmattype)." >&4
15923         : see if a prototype for shmat is available
15924         xxx=`./findhdr sys/shm.h`
15925         $cppstdin $cppflags $cppminus < $xxx > shmat.c 2>/dev/null
15926         if $contains 'shmat.*(' shmat.c >/dev/null 2>&1; then
15927                 val="$define"
15928         else
15929                 val="$undef"
15930         fi
15931         $rm -f shmat.[co]
15932         ;;
15933 *)
15934         val="$undef"
15935         ;;
15936 esac
15937 set d_shmatprototype
15938 eval $setvar
15939
15940 : see if shmdt exists
15941 set shmdt d_shmdt
15942 eval $inlibc
15943
15944 : see how much of the 'shm*(2)' library is present.
15945 h_shm=true
15946 echo " "
15947 case "$d_shmctl$d_shmget$d_shmat$d_shmdt" in
15948 *"$undef"*) h_shm=false;;
15949 esac
15950 case "$osname" in
15951 freebsd)
15952     case "`ipcs 2>&1`" in
15953     "SVID shared memory"*"not configured"*)
15954         echo "Your $osname does not have the shm*(2) configured." >&4
15955         h_shm=false
15956         val="$undef"
15957         set shmctl d_shmctl
15958         evat $setvar
15959         set shmget d_shmget
15960         evat $setvar
15961         set shmat d_shmat
15962         evat $setvar
15963         set shmdt d_shmdt
15964         evat $setvar
15965         ;;
15966     esac
15967     ;;
15968 esac
15969 : we could also check for sys/ipc.h ...
15970 if $h_shm && $test `./findhdr sys/shm.h`; then
15971         echo "You have the full shm*(2) library." >&4
15972         val="$define"
15973 else
15974         echo "You don't have the full shm*(2) library." >&4
15975         val="$undef"
15976 fi
15977 set d_shm
15978 eval $setvar
15979
15980 echo " "
15981 : see if we have sigaction
15982 if set sigaction val -f d_sigaction; eval $csym; $val; then
15983         echo 'sigaction() found.' >&4
15984         $cat > try.c <<EOP
15985 #include <stdio.h>
15986 #include <sys/types.h>
15987 #include <signal.h>
15988 #$i_stdlib I_STDLIB
15989 #ifdef I_STDLIB
15990 #include <stdlib.h>
15991 #endif
15992 int main()
15993 {
15994     struct sigaction act, oact;
15995     act.sa_flags = 0;
15996     oact.sa_handler = 0;
15997     /* so that act and oact are used */
15998     exit(act.sa_flags == 0 &&  oact.sa_handler == 0);
15999 }
16000 EOP
16001         set try
16002         if eval $compile_ok; then
16003                 val="$define"
16004         else
16005                 echo "But you don't seem to have a useable struct sigaction." >&4
16006                 val="$undef"
16007         fi
16008 else
16009         echo 'sigaction NOT found.' >&4
16010         val="$undef"
16011 fi
16012 set d_sigaction; eval $setvar
16013 $rm -f try try$_o try.c
16014
16015 : see if sigprocmask exists
16016 set sigprocmask d_sigprocmask
16017 eval $inlibc
16018
16019 : see if sigsetjmp exists
16020 echo " "
16021 case "$d_sigsetjmp" in
16022 '')
16023         $cat >try.c <<EOP
16024 #include <setjmp.h>
16025 #$i_stdlib I_STDLIB
16026 #ifdef I_STDLIB
16027 #include <stdlib.h>
16028 #endif
16029 sigjmp_buf env;
16030 int set = 1;
16031 int main()
16032 {
16033         if (sigsetjmp(env,1))
16034                 exit(set);
16035         set = 0;
16036         siglongjmp(env, 1);
16037         exit(1);
16038 }
16039 EOP
16040         set try
16041         if eval $compile; then
16042                 if $run ./try >/dev/null 2>&1; then
16043                         echo "POSIX sigsetjmp found." >&4
16044                         val="$define"
16045                 else
16046                         $cat >&4 <<EOM
16047 Uh-Oh! You have POSIX sigsetjmp and siglongjmp, but they do not work properly!!
16048 I'll ignore them.
16049 EOM
16050                         val="$undef"
16051                 fi
16052         else
16053                 echo "sigsetjmp not found." >&4
16054                 val="$undef"
16055         fi
16056         ;;
16057 *) val="$d_sigsetjmp"
16058         case "$d_sigsetjmp" in
16059         $define) echo "POSIX sigsetjmp found." >&4;;
16060         $undef) echo "sigsetjmp not found." >&4;;
16061         esac
16062         ;;
16063 esac
16064 set d_sigsetjmp
16065 eval $setvar
16066 $rm -f try.c try
16067
16068 : see if sockatmark exists
16069 set sockatmark d_sockatmark
16070 eval $inlibc
16071
16072 : see if prototype for sockatmark is available
16073 echo " "
16074 set d_sockatmarkproto sockatmark $d_socket sys/socket.h
16075 eval $hasproto
16076
16077 : see if socks5_init exists
16078 set socks5_init d_socks5_init
16079 eval $inlibc
16080
16081 : see if srand48_r exists
16082 set srand48_r d_srand48_r
16083 eval $inlibc
16084 case "$d_srand48_r" in
16085 "$define")
16086         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
16087         case "$d_srand48_r_proto:$usethreads" in
16088         ":define")      d_srand48_r_proto=define
16089                 set d_srand48_r_proto srand48_r $hdrs
16090                 eval $hasproto ;;
16091         *)      ;;
16092         esac
16093         case "$d_srand48_r_proto" in
16094         define)
16095         case "$srand48_r_proto" in
16096         ''|0) try='int srand48_r(long, struct drand48_data*);'
16097         ./protochk "extern $try" $hdrs && srand48_r_proto=I_LS ;;
16098         esac
16099         case "$srand48_r_proto" in
16100         ''|0)   d_srand48_r=undef
16101                 srand48_r_proto=0
16102                 echo "Disabling srand48_r, cannot determine prototype." >&4 ;;
16103         * )     case "$srand48_r_proto" in
16104                 REENTRANT_PROTO*) ;;
16105                 *) srand48_r_proto="REENTRANT_PROTO_$srand48_r_proto" ;;
16106                 esac
16107                 echo "Prototype: $try" ;;
16108         esac
16109         ;;
16110         *)      case "$usethreads" in
16111                 define) echo "srand48_r has no prototype, not using it." >&4 ;;
16112                 esac
16113                 d_srand48_r=undef
16114                 srand48_r_proto=0
16115                 ;;
16116         esac
16117         ;;
16118 *)      srand48_r_proto=0
16119         ;;
16120 esac
16121
16122 : see if srandom_r exists
16123 set srandom_r d_srandom_r
16124 eval $inlibc
16125 case "$d_srandom_r" in
16126 "$define")
16127         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
16128         case "$d_srandom_r_proto:$usethreads" in
16129         ":define")      d_srandom_r_proto=define
16130                 set d_srandom_r_proto srandom_r $hdrs
16131                 eval $hasproto ;;
16132         *)      ;;
16133         esac
16134         case "$d_srandom_r_proto" in
16135         define)
16136         case "$srandom_r_proto" in
16137         ''|0) try='int srandom_r(unsigned int, struct random_data*);'
16138         ./protochk "extern $try" $hdrs && srandom_r_proto=I_TS ;;
16139         esac
16140         case "$srandom_r_proto" in
16141         ''|0)   d_srandom_r=undef
16142                 srandom_r_proto=0
16143                 echo "Disabling srandom_r, cannot determine prototype." >&4 ;;
16144         * )     case "$srandom_r_proto" in
16145                 REENTRANT_PROTO*) ;;
16146                 *) srandom_r_proto="REENTRANT_PROTO_$srandom_r_proto" ;;
16147                 esac
16148                 echo "Prototype: $try" ;;
16149         esac
16150         ;;
16151         *)      case "$usethreads" in
16152                 define) echo "srandom_r has no prototype, not using it." >&4 ;;
16153                 esac
16154                 d_srandom_r=undef
16155                 srandom_r_proto=0
16156                 ;;
16157         esac
16158         ;;
16159 *)      srandom_r_proto=0
16160         ;;
16161 esac
16162
16163 : see if prototype for setresgid is available
16164 echo " "
16165 set d_sresgproto setresgid $i_unistd unistd.h
16166 eval $hasproto
16167
16168 : see if prototype for setresuid is available
16169 echo " "
16170 set d_sresuproto setresuid $i_unistd unistd.h
16171 eval $hasproto
16172
16173 : see if sys/stat.h is available
16174 set sys/stat.h i_sysstat
16175 eval $inhdr
16176
16177
16178 : see if stat knows about block sizes
16179 echo " "
16180 echo "Checking to see if your struct stat has st_blocks field..." >&4
16181 set d_statblks stat st_blocks $i_sysstat sys/stat.h
16182 eval $hasfield
16183
16184
16185 : see if this is a sys/vfs.h system
16186 set sys/vfs.h i_sysvfs
16187 eval $inhdr
16188
16189
16190 : see if this is a sys/statfs.h system
16191 set sys/statfs.h i_sysstatfs
16192 eval $inhdr
16193
16194
16195 echo " "
16196 echo "Checking to see if your system supports struct statfs..." >&4
16197 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
16198 eval $hasstruct
16199 case "$d_statfs_s" in
16200 "$define")      echo "Yes, it does."   ;;
16201 *)              echo "No, it doesn't." ;;
16202 esac
16203
16204
16205
16206 : see if struct statfs knows about f_flags
16207 case "$d_statfs_s" in
16208 define) 
16209         echo " "
16210         echo "Checking to see if your struct statfs has f_flags field..." >&4
16211         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
16212         eval $hasfield
16213         ;;
16214 *)      val="$undef"
16215         set d_statfs_f_flags
16216         eval $setvar
16217         ;;
16218 esac
16219 case "$d_statfs_f_flags" in
16220 "$define")      echo "Yes, it does."   ;;
16221 *)              echo "No, it doesn't." ;;
16222 esac
16223
16224 $cat >&4 <<EOM
16225 Checking how to access stdio streams by file descriptor number...
16226 EOM
16227 case "$stdio_stream_array" in
16228 '')     $cat >try.c <<EOCP
16229 #include <stdio.h>
16230 int main() {
16231   if (&STDIO_STREAM_ARRAY[fileno(stdin)] == stdin)
16232     printf("yes\n");
16233 }
16234 EOCP
16235         for s in _iob __iob __sF
16236         do
16237                 set try -DSTDIO_STREAM_ARRAY=$s
16238                 if eval $compile; then
16239                         case "`$run ./try`" in
16240                         yes)    stdio_stream_array=$s; break ;;
16241                         esac
16242                 fi
16243         done
16244         $rm -f try.* try$exe_ext
16245 esac
16246 case "$stdio_stream_array" in
16247 '')     $cat >&4 <<EOM
16248 I can't figure out how to access stdio streams by file descriptor number.
16249 EOM
16250         d_stdio_stream_array="$undef"
16251         ;;
16252 *)      $cat >&4 <<EOM
16253 You can access stdio streams by file descriptor number by the $stdio_stream_array array.
16254 EOM
16255         d_stdio_stream_array="$define"
16256         ;;
16257 esac
16258
16259 : see if strcoll exists
16260 set strcoll d_strcoll
16261 eval $inlibc
16262
16263 : check for structure copying
16264 echo " "
16265 echo "Checking to see if your C compiler can copy structs..." >&4
16266 $cat >try.c <<'EOCP'
16267 int main()
16268 {
16269         struct blurfl {
16270                 int dyick;
16271         } foo, bar;
16272
16273         foo = bar;
16274 }
16275 EOCP
16276 if $cc -c try.c >/dev/null 2>&1 ; then
16277         val="$define"
16278         echo "Yup, it can."
16279 else
16280         val="$undef"
16281         echo "Nope, it can't."
16282 fi
16283 set d_strctcpy
16284 eval $setvar
16285 $rm -f try.*
16286
16287 : see if strerror and/or sys_errlist[] exist
16288 echo " "
16289 if test "X$d_strerror" = X -o "X$d_syserrlst" = X; then
16290     if set strerror val -f d_strerror; eval $csym; $val; then
16291                 echo 'strerror() found.' >&4
16292                 d_strerror="$define"
16293                 d_strerrm='strerror(e)'
16294                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
16295                         echo "(You also have sys_errlist[], so we could roll our own strerror.)" 
16296                         d_syserrlst="$define"
16297                 else
16298                         echo "(Since you don't have sys_errlist[], sterror() is welcome.)"
16299                         d_syserrlst="$undef"
16300                 fi
16301     elif xxx=`./findhdr string.h`; test "$xxx" || xxx=`./findhdr strings.h`; \
16302                         $contains '#[   ]*define.*strerror' "$xxx" >/dev/null 2>&1; then
16303                 echo 'strerror() found in string header.' >&4
16304                 d_strerror="$define"
16305                 d_strerrm='strerror(e)'
16306                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
16307                         echo "(Most probably, strerror() uses sys_errlist[] for descriptions.)"
16308                                 d_syserrlst="$define"
16309                 else
16310                         echo "(You don't appear to have any sys_errlist[], how can this be?)"
16311                         d_syserrlst="$undef"
16312                 fi
16313     elif set sys_errlist val -a d_syserrlst; eval $csym; $val; then
16314                 echo "strerror() not found, but you have sys_errlist[] so we'll use that." >&4
16315                 d_strerror="$undef"
16316                 d_syserrlst="$define"
16317                 d_strerrm='((e)<0||(e)>=sys_nerr?"unknown":sys_errlist[e])'
16318     else
16319                 echo 'strerror() and sys_errlist[] NOT found.' >&4
16320                 d_strerror="$undef"
16321                 d_syserrlst="$undef"
16322                 d_strerrm='"unknown"'
16323     fi
16324 fi
16325
16326 : see if strerror_r exists
16327 set strerror_r d_strerror_r
16328 eval $inlibc
16329 case "$d_strerror_r" in
16330 "$define")
16331         hdrs="$i_systypes sys/types.h define stdio.h $i_string string.h"
16332         case "$d_strerror_r_proto:$usethreads" in
16333         ":define")      d_strerror_r_proto=define
16334                 set d_strerror_r_proto strerror_r $hdrs
16335                 eval $hasproto ;;
16336         *)      ;;
16337         esac
16338         case "$d_strerror_r_proto" in
16339         define)
16340         case "$strerror_r_proto" in
16341         ''|0) try='int strerror_r(int, char*, size_t);'
16342         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBW ;;
16343         esac
16344         case "$strerror_r_proto" in
16345         ''|0) try='int strerror_r(int, char*, int);'
16346         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBI ;;
16347         esac
16348         case "$strerror_r_proto" in
16349         ''|0) try='char* strerror_r(int, char*, size_t);'
16350         ./protochk "extern $try" $hdrs && strerror_r_proto=B_IBW ;;
16351         esac
16352         case "$strerror_r_proto" in
16353         ''|0)   d_strerror_r=undef
16354                 strerror_r_proto=0
16355                 echo "Disabling strerror_r, cannot determine prototype." >&4 ;;
16356         * )     case "$strerror_r_proto" in
16357                 REENTRANT_PROTO*) ;;
16358                 *) strerror_r_proto="REENTRANT_PROTO_$strerror_r_proto" ;;
16359                 esac
16360                 echo "Prototype: $try" ;;
16361         esac
16362         ;;
16363         *)      case "$usethreads" in
16364                 define) echo "strerror_r has no prototype, not using it." >&4 ;;
16365                 esac
16366                 d_strerror_r=undef
16367                 strerror_r_proto=0
16368                 ;;
16369         esac
16370         ;;
16371 *)      strerror_r_proto=0
16372         ;;
16373 esac
16374
16375 : see if strftime exists
16376 set strftime d_strftime
16377 eval $inlibc
16378
16379 : see if strtod exists
16380 set strtod d_strtod
16381 eval $inlibc
16382
16383 : see if strtol exists
16384 set strtol d_strtol
16385 eval $inlibc
16386
16387 : see if strtold exists
16388 set strtold d_strtold
16389 eval $inlibc
16390
16391 : see if strtoll exists
16392 set strtoll d_strtoll
16393 eval $inlibc
16394
16395 case "$d_longlong-$d_strtoll" in
16396 "$define-$define")
16397         $cat <<EOM
16398 Checking whether your strtoll() works okay...
16399 EOM
16400         $cat >try.c <<'EOCP'
16401 #include <errno.h>
16402 #ifdef __hpux
16403 #define strtoll __strtoll
16404 #endif
16405 #ifdef __EMX__
16406 #define strtoll _strtoll
16407 #endif
16408 #include <stdio.h>
16409 extern long long int strtoll(char *s, char **, int); 
16410 static int bad = 0;
16411 int check(char *s, long long ell, int een) {
16412         long long gll;
16413         errno = 0;
16414         gll = strtoll(s, 0, 10);
16415         if (!((gll == ell) && (errno == een)))
16416                 bad++;
16417 }
16418 int main() {
16419         check(" 1",                                      1LL, 0);
16420         check(" 0",                                      0LL, 0);
16421         check("-1",                                     -1LL, 0);
16422         check("-9223372036854775808", -9223372036854775808LL, 0);
16423         check("-9223372036854775808", -9223372036854775808LL, 0);
16424         check(" 9223372036854775807",  9223372036854775807LL, 0);
16425         check("-9223372036854775808", -9223372036854775808LL, 0);
16426         check(" 9223372036854775808",  9223372036854775807LL, ERANGE);
16427         check("-9223372036854775809", -9223372036854775808LL, ERANGE);
16428         if (!bad)
16429                 printf("ok\n");
16430 }
16431 EOCP
16432         set try
16433         if eval $compile; then
16434                 yyy=`$run ./try`
16435                 case "$yyy" in
16436                 ok) echo "Your strtoll() seems to be working okay." ;;
16437                 *) cat <<EOM >&4
16438 Your strtoll() doesn't seem to be working okay.
16439 EOM
16440                    d_strtoll="$undef"
16441                    ;;
16442                 esac
16443         else
16444                 echo "(I can't seem to compile the test program--assuming it doesn't)"
16445                 d_strtoll="$undef"
16446         fi
16447         ;;
16448 esac
16449
16450 : see if strtoq exists
16451 set strtoq d_strtoq
16452 eval $inlibc
16453
16454 : see if strtoul exists
16455 set strtoul d_strtoul
16456 eval $inlibc
16457
16458 case "$d_strtoul" in
16459 "$define")
16460         $cat <<EOM
16461 Checking whether your strtoul() works okay...
16462 EOM
16463         $cat >try.c <<'EOCP'
16464 #include <errno.h>
16465 #include <stdio.h>
16466 extern unsigned long int strtoul(char *s, char **, int); 
16467 static int bad = 0;
16468 void check(char *s, unsigned long eul, int een) {
16469         unsigned long gul;
16470         errno = 0;
16471         gul = strtoul(s, 0, 10);
16472         if (!((gul == eul) && (errno == een)))
16473                 bad++;
16474 }
16475 int main() {
16476         check(" 1", 1L, 0);
16477         check(" 0", 0L, 0);
16478 EOCP
16479         case "$longsize" in
16480         8)
16481             $cat >>try.c <<'EOCP'
16482         check("18446744073709551615", 18446744073709551615UL, 0);
16483         check("18446744073709551616", 18446744073709551615UL, ERANGE);
16484 #if 0 /* strtoul() for /^-/ strings is undefined. */
16485         check("-1", 18446744073709551615UL, 0);
16486         check("-18446744073709551614", 2, 0);
16487         check("-18446744073709551615", 1, 0);
16488         check("-18446744073709551616", 18446744073709551615UL, ERANGE);
16489         check("-18446744073709551617", 18446744073709551615UL, ERANGE);
16490 #endif
16491 EOCP
16492                 ;;
16493         4)
16494                     $cat >>try.c <<'EOCP'
16495         check("4294967295", 4294967295UL, 0);
16496         check("4294967296", 4294967295UL, ERANGE);
16497 #if 0 /* strtoul() for /^-/ strings is undefined. */
16498         check("-1", 4294967295UL, 0);
16499         check("-4294967294", 2, 0);
16500         check("-4294967295", 1, 0);
16501         check("-4294967296", 4294967295UL, ERANGE);
16502         check("-4294967297", 4294967295UL, ERANGE);
16503 #endif
16504 EOCP
16505                 ;;
16506         *)
16507 : Should we write these tests to be more portable by sprintf-ing
16508 : ~0 and then manipulating that char string as input for strtol?
16509                 ;;
16510         esac
16511         $cat >>try.c <<'EOCP'
16512         if (!bad)
16513                 printf("ok\n");
16514         return 0;
16515 }
16516 EOCP
16517         set try
16518         if eval $compile; then
16519                 case "`$run ./try`" in
16520                 ok) echo "Your strtoul() seems to be working okay." ;;
16521                 *) cat <<EOM >&4
16522 Your strtoul() doesn't seem to be working okay.
16523 EOM
16524                    d_strtoul="$undef"
16525                    ;;
16526                 esac
16527         fi
16528         ;;
16529 esac
16530
16531 : see if strtoull exists
16532 set strtoull d_strtoull
16533 eval $inlibc
16534
16535 case "$d_longlong-$d_strtoull" in
16536 "$define-$define")
16537         $cat <<EOM
16538 Checking whether your strtoull() works okay...
16539 EOM
16540         $cat >try.c <<'EOCP'
16541 #include <errno.h>
16542 #ifdef __hpux
16543 #define strtoull __strtoull
16544 #endif
16545 #include <stdio.h>
16546 extern unsigned long long int strtoull(char *s, char **, int); 
16547 static int bad = 0;
16548 int check(char *s, long long eull, int een) {
16549         long long gull;
16550         errno = 0;
16551         gull = strtoull(s, 0, 10);
16552         if (!((gull == eull) && (errno == een)))
16553                 bad++;
16554 }
16555 int main() {
16556         check(" 1",                                        1LL, 0);
16557         check(" 0",                                        0LL, 0);
16558         check("18446744073709551615",  18446744073709551615ULL, 0);
16559         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
16560 #if 0 /* strtoull() for /^-/ strings is undefined. */
16561         check("-1",                    18446744073709551615ULL, 0);
16562         check("-18446744073709551614",                     2LL, 0);
16563         check("-18446744073709551615",                     1LL, 0);
16564         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
16565         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
16566 #endif
16567         if (!bad)
16568                 printf("ok\n");
16569 }
16570 EOCP
16571         set try
16572         if eval $compile; then
16573                 case "`$run ./try`" in
16574                 ok) echo "Your strtoull() seems to be working okay." ;;
16575                 *) cat <<EOM >&4
16576 Your strtoull() doesn't seem to be working okay.
16577 EOM
16578                    d_strtoull="$undef"
16579                    ;;
16580                 esac
16581         fi
16582         ;;
16583 esac
16584
16585 : see if strtouq exists
16586 set strtouq d_strtouq
16587 eval $inlibc
16588
16589 case "$d_strtouq" in
16590 "$define")
16591         $cat <<EOM
16592 Checking whether your strtouq() works okay...
16593 EOM
16594         $cat >try.c <<'EOCP'
16595 #include <errno.h>
16596 #include <stdio.h>
16597 extern unsigned long long int strtouq(char *s, char **, int); 
16598 static int bad = 0;
16599 void check(char *s, unsigned long long eull, int een) {
16600         unsigned long long gull;
16601         errno = 0;
16602         gull = strtouq(s, 0, 10);
16603         if (!((gull == eull) && (errno == een)))
16604                 bad++;
16605 }
16606 int main() {
16607         check(" 1",                                        1LL, 0);
16608         check(" 0",                                        0LL, 0);
16609         check("18446744073709551615",  18446744073709551615ULL, 0);
16610         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
16611 #if 0 /* strtouq() for /^-/ strings is undefined. */
16612         check("-1",                    18446744073709551615ULL, 0);
16613         check("-18446744073709551614",                     2LL, 0);
16614         check("-18446744073709551615",                     1LL, 0);
16615         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
16616         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
16617 #endif
16618         if (!bad)
16619                 printf("ok\n");
16620         return 0;
16621 }
16622 EOCP
16623         set try
16624         if eval $compile; then
16625                 case "`$run ./try`" in
16626                 ok) echo "Your strtouq() seems to be working okay." ;;
16627                 *) cat <<EOM >&4
16628 Your strtouq() doesn't seem to be working okay.
16629 EOM
16630                    d_strtouq="$undef"
16631                    ;;
16632                 esac
16633         fi
16634         ;;
16635 esac
16636
16637 : see if strxfrm exists
16638 set strxfrm d_strxfrm
16639 eval $inlibc
16640
16641 : see if symlink exists
16642 set symlink d_symlink
16643 eval $inlibc
16644
16645 : see if syscall exists
16646 set syscall d_syscall
16647 eval $inlibc
16648
16649 : see if prototype for syscall is available
16650 echo " "
16651 set d_syscallproto syscall $i_unistd unistd.h
16652 eval $hasproto
16653
16654 : see if sysconf exists
16655 set sysconf d_sysconf
16656 eval $inlibc
16657
16658 : see if system exists
16659 set system d_system
16660 eval $inlibc
16661
16662 : see if tcgetpgrp exists
16663 set tcgetpgrp d_tcgetpgrp
16664 eval $inlibc
16665
16666 : see if tcsetpgrp exists
16667 set tcsetpgrp d_tcsetpgrp
16668 eval $inlibc
16669
16670 : see if prototype for telldir is available
16671 echo " "
16672 set d_telldirproto telldir $i_systypes sys/types.h $i_dirent dirent.h
16673 eval $hasproto
16674
16675 : see if time exists
16676 echo " "
16677 if test "X$d_time" = X -o X"$timetype" = X; then
16678     if set time val -f d_time; eval $csym; $val; then
16679                 echo 'time() found.' >&4
16680                 val="$define"
16681                 rp="What is the type returned by time() on this system?"
16682                 set time_t timetype long stdio.h sys/types.h
16683                 eval $typedef_ask
16684     else
16685                 echo 'time() not found, hope that will do.' >&4
16686                 val="$undef"
16687                 timetype='int';
16688     fi
16689     set d_time
16690     eval $setvar
16691 fi
16692
16693 : see if this is a sys/times.h system
16694 set sys/times.h i_systimes
16695 eval $inhdr
16696
16697 : see if times exists
16698 echo " "
16699 if set times val -f d_times; eval $csym; $val; then
16700         echo 'times() found.' >&4
16701         d_times="$define"
16702         inc=''
16703         case "$i_systimes" in
16704         "$define") inc='sys/times.h';;
16705         esac
16706         rp="What is the type returned by times() on this system?"
16707         set clock_t clocktype long stdio.h sys/types.h $inc
16708         eval $typedef_ask
16709 else
16710         echo 'times() NOT found, hope that will do.' >&4
16711         d_times="$undef"
16712         clocktype='int'
16713 fi
16714
16715 : see if tmpnam_r exists
16716 set tmpnam_r d_tmpnam_r
16717 eval $inlibc
16718 case "$d_tmpnam_r" in
16719 "$define")
16720         hdrs="$i_systypes sys/types.h define stdio.h "
16721         case "$d_tmpnam_r_proto:$usethreads" in
16722         ":define")      d_tmpnam_r_proto=define
16723                 set d_tmpnam_r_proto tmpnam_r $hdrs
16724                 eval $hasproto ;;
16725         *)      ;;
16726         esac
16727         case "$d_tmpnam_r_proto" in
16728         define)
16729         case "$tmpnam_r_proto" in
16730         ''|0) try='char* tmpnam_r(char*);'
16731         ./protochk "extern $try" $hdrs && tmpnam_r_proto=B_B ;;
16732         esac
16733         case "$tmpnam_r_proto" in
16734         ''|0)   d_tmpnam_r=undef
16735                 tmpnam_r_proto=0
16736                 echo "Disabling tmpnam_r, cannot determine prototype." >&4 ;;
16737         * )     case "$tmpnam_r_proto" in
16738                 REENTRANT_PROTO*) ;;
16739                 *) tmpnam_r_proto="REENTRANT_PROTO_$tmpnam_r_proto" ;;
16740                 esac
16741                 echo "Prototype: $try" ;;
16742         esac
16743         ;;
16744         *)      case "$usethreads" in
16745                 define) echo "tmpnam_r has no prototype, not using it." >&4 ;;
16746                 esac
16747                 d_tmpnam_r=undef
16748                 tmpnam_r_proto=0
16749                 ;;
16750         esac
16751         ;;
16752 *)      tmpnam_r_proto=0
16753         ;;
16754 esac
16755
16756 : see if truncate exists
16757 set truncate d_truncate
16758 eval $inlibc
16759
16760 : see if ttyname_r exists
16761 set ttyname_r d_ttyname_r
16762 eval $inlibc
16763 case "$d_ttyname_r" in
16764 "$define")
16765         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
16766         case "$d_ttyname_r_proto:$usethreads" in
16767         ":define")      d_ttyname_r_proto=define
16768                 set d_ttyname_r_proto ttyname_r $hdrs
16769                 eval $hasproto ;;
16770         *)      ;;
16771         esac
16772         case "$d_ttyname_r_proto" in
16773         define)
16774         case "$ttyname_r_proto" in
16775         ''|0) try='int ttyname_r(int, char*, size_t);'
16776         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBW ;;
16777         esac
16778         case "$ttyname_r_proto" in
16779         ''|0) try='int ttyname_r(int, char*, int);'
16780         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBI ;;
16781         esac
16782         case "$ttyname_r_proto" in
16783         ''|0) try='char* ttyname_r(int, char*, int);'
16784         ./protochk "extern $try" $hdrs && ttyname_r_proto=B_IBI ;;
16785         esac
16786         case "$ttyname_r_proto" in
16787         ''|0)   d_ttyname_r=undef
16788                 ttyname_r_proto=0
16789                 echo "Disabling ttyname_r, cannot determine prototype." >&4 ;;
16790         * )     case "$ttyname_r_proto" in
16791                 REENTRANT_PROTO*) ;;
16792                 *) ttyname_r_proto="REENTRANT_PROTO_$ttyname_r_proto" ;;
16793                 esac
16794                 echo "Prototype: $try" ;;
16795         esac
16796         ;;
16797         *)      case "$usethreads" in
16798                 define) echo "ttyname_r has no prototype, not using it." >&4 ;;
16799                 esac
16800                 d_ttyname_r=undef
16801                 ttyname_r_proto=0
16802                 ;;
16803         esac
16804         ;;
16805 *)      ttyname_r_proto=0
16806         ;;
16807 esac
16808
16809 : see if tzname[] exists
16810 echo " "
16811 if set tzname val -a d_tzname; eval $csym; $val; then
16812         val="$define"
16813         echo 'tzname[] found.' >&4
16814 else
16815         val="$undef"
16816         echo 'tzname[] NOT found.' >&4
16817 fi
16818 set d_tzname
16819 eval $setvar
16820
16821 case "$osname" in
16822 next|rhapsody|darwin) multiarch="$define" ;;
16823 esac
16824 case "$multiarch" in
16825 ''|[nN]*) multiarch="$undef" ;;
16826 esac
16827
16828 : check for ordering of bytes in a UV
16829 echo " "
16830 case "$usecrosscompile$multiarch" in
16831 *$define*)
16832         $cat <<EOM
16833 You seem to be either cross-compiling or doing a multiarchitecture build,
16834 skipping the byteorder check.
16835
16836 EOM
16837         byteorder='ffff'
16838         ;;
16839 *)
16840         case "$byteorder" in
16841         '')
16842                 $cat <<'EOM'
16843 In the following, larger digits indicate more significance.  A big-endian
16844 machine like a Pyramid or a Motorola 680?0 chip will come out to 4321. A
16845 little-endian machine like a Vax or an Intel 80?86 chip would be 1234. Other
16846 machines may have weird orders like 3412.  A Cray will report 87654321,
16847 an Alpha will report 12345678. If the test program works the default is
16848 probably right.
16849 I'm now running the test program...
16850 EOM
16851                 $cat >try.c <<EOCP
16852 #include <stdio.h>
16853 #$i_stdlib I_STDLIB
16854 #ifdef I_STDLIB
16855 #include <stdlib.h>
16856 #endif
16857 #include <sys/types.h>
16858 typedef $uvtype UV;
16859 int main()
16860 {
16861         int i;
16862         union {
16863                 UV l;
16864                 char c[$uvsize];
16865         } u;
16866
16867         if ($uvsize > 4)
16868                 u.l = (((UV)0x08070605) << 32) | (UV)0x04030201;
16869         else
16870                 u.l = (UV)0x04030201;
16871         for (i = 0; i < $uvsize; i++)
16872                 printf("%c", u.c[i]+'0');
16873         printf("\n");
16874         exit(0);
16875 }
16876 EOCP
16877                 xxx_prompt=y
16878                 set try
16879                 if eval $compile && ./try > /dev/null; then
16880                         dflt=`$run ./try`
16881                         case "$dflt" in
16882                         [1-4][1-4][1-4][1-4]|12345678|87654321)
16883                                 echo "(The test program ran ok.)"
16884                                 echo "byteorder=$dflt"
16885                                 xxx_prompt=n
16886                         ;;
16887                         ????|????????) echo "(The test program ran ok.)" ;;
16888                         *) echo "(The test program didn't run right for some reason.)" ;;
16889                         esac
16890                 else
16891                         dflt='4321'
16892                         cat <<'EOM'
16893 (I can't seem to compile the test program.  Guessing big-endian...)
16894 EOM
16895                 fi
16896                 case "$xxx_prompt" in
16897                 y)
16898                         rp="What is the order of bytes in $uvtype?"
16899                         . ./myread
16900                         byteorder="$ans"
16901                         ;;
16902                 *)      byteorder=$dflt
16903                         ;;
16904                 esac
16905                 ;;
16906         esac
16907         $rm -f try.c try
16908         ;;
16909 esac
16910
16911
16912 $cat <<EOM
16913
16914 Checking to see whether you can access character data unalignedly...
16915 EOM
16916 case "$d_u32align" in
16917 '')   $cat >try.c <<EOCP
16918 #include <stdio.h>
16919 #$i_stdlib I_STDLIB
16920 #ifdef I_STDLIB
16921 #include <stdlib.h>
16922 #endif
16923 #define U32 $u32type
16924 #define BYTEORDER 0x$byteorder
16925 #define U8 $u8type
16926 #include <signal.h>
16927 #ifdef SIGBUS
16928 $signal_t bletch(s) int s; { exit(4); }
16929 #endif
16930 int main() {
16931 #if BYTEORDER == 0x1234 || BYTEORDER == 0x4321
16932     U8 buf[8];
16933     U32 *up;
16934     int i;
16935
16936     if (sizeof(U32) != 4) {
16937         printf("sizeof(U32) is not 4, but %d\n", sizeof(U32));
16938         exit(1);
16939     }
16940
16941     fflush(stdout);
16942
16943 #ifdef SIGBUS
16944     signal(SIGBUS, bletch);
16945 #endif
16946
16947     buf[0] = 0;
16948     buf[1] = 0;
16949     buf[2] = 0;
16950     buf[3] = 1;
16951     buf[5] = 0;
16952     buf[6] = 0;
16953     buf[7] = 0;
16954     buf[8] = 1;
16955
16956     for (i = 0; i < 4; i++) {
16957         up = (U32*)(buf + i);
16958         if (! ((*up == 1 << (8*i)) ||   /* big-endian */
16959                (*up == 1 << (8*(3-i)))  /* little-endian */
16960               )
16961            )
16962         {
16963             printf("read failed (%x)\n", *up);
16964             exit(2);
16965         }
16966     }
16967
16968     /* write test */
16969     for (i = 0; i < 4; i++) {
16970         up = (U32*)(buf + i);
16971         *up = 0xBeef;
16972         if (*up != 0xBeef) {
16973             printf("write failed (%x)\n", *up);
16974             exit(3);
16975         }
16976     }
16977
16978     exit(0);
16979 #else
16980     printf("1\n");
16981     exit(1);
16982 #endif
16983     return 0;
16984 }
16985 EOCP
16986 set try
16987 if eval $compile_ok; then
16988         echo "(Testing for character data alignment may crash the test.  That's okay.)" >&4
16989         $run ./try 2>&1 >/dev/null
16990         case "$?" in
16991         0)      cat >&4 <<EOM
16992 You can access character data pretty unalignedly.
16993 EOM
16994                 d_u32align="$undef"
16995                 ;;
16996         *)      cat >&4 <<EOM
16997 It seems that you must access character data in an aligned manner.
16998 EOM
16999                 d_u32align="$define"
17000                 ;;
17001         esac
17002 else
17003         rp='Can you access character data at unaligned addresses?'
17004         dflt='n'
17005         . ./myread
17006         case "$ans" in
17007         [yY]*)  d_u32align="$undef"  ;;
17008         *)      d_u32align="$define" ;;
17009         esac
17010 fi
17011 $rm -f core core.try.* try.core
17012 ;;
17013 esac
17014
17015 : see if ualarm exists
17016 set ualarm d_ualarm
17017 eval $inlibc
17018
17019 : see if umask exists
17020 set umask d_umask
17021 eval $inlibc
17022
17023 : see if unordered exists
17024 set unordered d_unordered
17025 eval $inlibc
17026
17027 : see if usleep exists
17028 set usleep d_usleep
17029 eval $inlibc
17030
17031 : see if prototype for usleep is available
17032 echo " "
17033 set d_usleepproto usleep $i_unistd unistd.h
17034 eval $hasproto
17035
17036 : see if ustat exists
17037 set ustat d_ustat
17038 eval $inlibc
17039
17040 : backward compatibility for d_hvfork
17041 if test X$d_hvfork != X; then
17042         d_vfork="$d_hvfork"
17043         d_hvfork=''
17044 fi
17045 : see if there is a vfork
17046 val=''
17047 set vfork val
17048 eval $inlibc
17049
17050 : Ok, but do we want to use it. vfork is reportedly unreliable in 
17051 : perl on Solaris 2.x, and probably elsewhere.
17052 case "$val" in
17053 $define)
17054         echo " "
17055         case "$usevfork" in
17056         false) dflt='n';;
17057         *) dflt='y';;
17058         esac
17059         cat <<'EOM'
17060  
17061 Perl can only use a vfork() that doesn't suffer from strict
17062 restrictions on calling functions or modifying global data in
17063 the child.  For example, glibc-2.1 contains such a vfork()
17064 that is unsuitable.  If your system provides a proper fork()
17065 call, chances are that you do NOT want perl to use vfork().
17066
17067 EOM
17068         rp="Do you still want to use vfork()?"
17069         . ./myread
17070         case "$ans" in
17071         y|Y) ;;
17072         *)
17073                 echo "Ok, we won't use vfork()."
17074                 val="$undef"
17075                 ;;
17076         esac
17077         ;;
17078 esac
17079 set d_vfork
17080 eval $setvar
17081 case "$d_vfork" in
17082 $define) usevfork='true';;
17083 *) usevfork='false';;
17084 esac
17085
17086 : see if closedir exists
17087 set closedir d_closedir
17088 eval $inlibc
17089
17090 case "$d_closedir" in
17091 "$define")
17092         echo " "
17093         echo "Checking whether closedir() returns a status..." >&4
17094         cat > try.c <<EOM
17095 #$i_dirent I_DIRENT             /**/
17096 #$i_sysdir I_SYS_DIR            /**/
17097 #$i_sysndir I_SYS_NDIR          /**/
17098 #$i_systypes I_SYS_TYPES        /**/
17099
17100 #if defined(I_SYS_TYPES)
17101 #include <sys/types.h>
17102 #endif
17103 #if defined(I_DIRENT)
17104 #include <dirent.h>
17105 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
17106 #include <sys/dir.h>
17107 #endif
17108 #else
17109 #ifdef I_SYS_NDIR
17110 #include <sys/ndir.h>
17111 #else
17112 #ifdef I_SYS_DIR
17113 #ifdef hp9000s500
17114 #include <ndir.h>       /* may be wrong in the future */
17115 #else
17116 #include <sys/dir.h>
17117 #endif
17118 #endif
17119 #endif
17120 #endif 
17121 int main() { return closedir(opendir(".")); }
17122 EOM
17123         set try
17124         if eval $compile_ok; then
17125                 if $run ./try > /dev/null 2>&1 ; then
17126                         echo "Yes, it does."
17127                         val="$undef"
17128                 else
17129                         echo "No, it doesn't."
17130                         val="$define"
17131                 fi
17132         else
17133                 echo "(I can't seem to compile the test program--assuming it doesn't)"
17134                 val="$define"
17135         fi
17136         ;;
17137 *)
17138         val="$undef";
17139         ;;
17140 esac
17141 set d_void_closedir
17142 eval $setvar
17143 $rm -f try try.*
17144 : see if there is a wait4
17145 set wait4 d_wait4
17146 eval $inlibc
17147
17148 : see if waitpid exists
17149 set waitpid d_waitpid
17150 eval $inlibc
17151
17152 : see if wcstombs exists
17153 set wcstombs d_wcstombs
17154 eval $inlibc
17155
17156 : see if wctomb exists
17157 set wctomb d_wctomb
17158 eval $inlibc
17159
17160 : see if writev exists
17161 set writev d_writev
17162 eval $inlibc
17163
17164 : preserve RCS keywords in files with variable substitution, grrr
17165 Date='$Date'
17166 Id='$Id'
17167 Log='$Log'
17168 RCSfile='$RCSfile'
17169 Revision='$Revision'
17170
17171 : check for alignment requirements
17172 echo " "
17173 case "$usecrosscompile$multiarch" in
17174 *$define*)
17175         $cat <<EOM
17176 You seem to be either cross-compiling or doing a multiarchitecture build,
17177 skipping the memory alignment check.
17178
17179 EOM
17180         case "$alignbytes" in
17181         '') alignbytes=8 ;;
17182         esac
17183         ;;
17184 *)
17185         case "$alignbytes" in
17186         '') echo "Checking alignment constraints..." >&4
17187                 if $test "X$uselongdouble" = Xdefine -a "X$d_longdbl" = Xdefine; then
17188                         $cat >try.c <<'EOCP'
17189 typedef long double NV;
17190 EOCP
17191                 else
17192                         $cat >try.c <<'EOCP'
17193 typedef double NV;
17194 EOCP
17195                 fi
17196                 $cat >>try.c <<'EOCP'
17197 #include <stdio.h>
17198 struct foobar {
17199         char foo;
17200         NV bar;
17201 } try_algn;
17202 int main()
17203 {
17204     printf("%d\n", (int)((char *)&try_algn.bar - (char *)&try_algn.foo));
17205     return(0);
17206 }
17207 EOCP
17208                 set try
17209                 if eval $compile_ok; then
17210                         dflt=`$run ./try`
17211                 else
17212                         dflt='8'
17213                         echo "(I can't seem to compile the test program...)"
17214                 fi
17215                 ;;
17216         *) dflt="$alignbytes"
17217                 ;;
17218         esac
17219         rp="Doubles must be aligned on a how-many-byte boundary?"
17220         . ./myread
17221         alignbytes="$ans"
17222         $rm -f try.c try
17223         ;;
17224 esac
17225
17226
17227 : set the base revision
17228 baserev=5.0
17229
17230 : how do we concatenate cpp tokens here?
17231 echo " "
17232 echo "Checking to see how your cpp does stuff like concatenate tokens..." >&4
17233 $cat >cpp_stuff.c <<'EOCP'
17234 #define RCAT(a,b)a/**/b
17235 #define ACAT(a,b)a ## b
17236 RCAT(Rei,ser)
17237 ACAT(Cir,cus)
17238 EOCP
17239 $cppstdin $cppflags $cppminus <cpp_stuff.c >cpp_stuff.out 2>&1
17240 if $contains 'Circus' cpp_stuff.out >/dev/null 2>&1; then
17241         echo "Oh!  Smells like ANSI's been here." >&4
17242         echo "We can catify or stringify, separately or together!"
17243         cpp_stuff=42
17244 elif $contains 'Reiser' cpp_stuff.out >/dev/null 2>&1; then
17245         echo "Ah, yes!  The good old days!" >&4
17246         echo "However, in the good old days we don't know how to stringify and"
17247         echo "catify at the same time."
17248         cpp_stuff=1
17249 else
17250         $cat >&4 <<EOM
17251 Hmm, I don't seem to be able to concatenate tokens with your cpp.
17252 You're going to have to edit the values of CAT[2-5] in config.h...
17253 EOM
17254         cpp_stuff="/* Help! How do we handle cpp_stuff? */*/"
17255 fi
17256 $rm -f cpp_stuff.*
17257
17258 : see if this is a db.h system
17259 set db.h i_db
17260 eval $inhdr
17261
17262 case "$i_db" in
17263 $define)
17264         : Check db version.
17265         echo " "
17266         echo "Checking Berkeley DB version ..." >&4
17267         $cat >try.c <<EOCP
17268 #$d_const HASCONST
17269 #ifndef HASCONST
17270 #define const
17271 #endif
17272 #include <sys/types.h>
17273 #include <stdio.h>
17274 #$i_stdlib I_STDLIB
17275 #ifdef I_STDLIB
17276 #include <stdlib.h>
17277 #endif
17278 #include <db.h>
17279 int main(int argc, char *argv[])
17280 {
17281 #ifdef DB_VERSION_MAJOR /* DB version >= 2 */
17282     int Major, Minor, Patch ;
17283     unsigned long Version ;
17284     (void)db_version(&Major, &Minor, &Patch) ;
17285     if (argc == 2) {
17286         printf("%d %d %d %d %d %d\n",
17287                DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH,
17288                Major, Minor, Patch);
17289         exit(0);
17290     }
17291     printf("You have Berkeley DB Version 2 or greater.\n");
17292
17293     printf("db.h is from Berkeley DB Version %d.%d.%d\n",
17294                 DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH);
17295     printf("libdb is from Berkeley DB Version %d.%d.%d\n",
17296                 Major, Minor, Patch) ;
17297
17298     /* check that db.h & libdb are compatible */
17299     if (DB_VERSION_MAJOR != Major || DB_VERSION_MINOR != Minor || DB_VERSION_PATCH != Patch) {
17300         printf("db.h and libdb are incompatible.\n") ;
17301         exit(3);        
17302     }
17303
17304     printf("db.h and libdb are compatible.\n") ;
17305
17306     Version = DB_VERSION_MAJOR * 1000000 + DB_VERSION_MINOR * 1000
17307                 + DB_VERSION_PATCH ;
17308
17309     /* needs to be >= 2.3.4 */
17310     if (Version < 2003004) {
17311     /* if (DB_VERSION_MAJOR == 2 && DB_VERSION_MINOR == 0 && DB_VERSION_PATCH < 5) { */
17312         printf("Perl needs Berkeley DB 2.3.4 or greater.\n") ;
17313         exit(2);        
17314     }
17315
17316     exit(0);
17317 #else
17318 #if defined(_DB_H_) && defined(BTREEMAGIC) && defined(HASHMAGIC)
17319     if (argc == 2) {
17320         printf("1 0 0\n");
17321         exit(0);
17322     }
17323     printf("You have Berkeley DB Version 1.\n");
17324     exit(0);    /* DB version < 2: the coast is clear. */
17325 #else
17326     exit(1);    /* <db.h> not Berkeley DB? */
17327 #endif
17328 #endif
17329 }
17330 EOCP
17331         set try
17332         if eval $compile_ok && $run ./try; then
17333                 echo 'Looks OK.' >&4
17334                 set `$run ./try 1`
17335                 db_version_major=$1
17336                 db_version_minor=$2
17337                 db_version_patch=$3
17338         else
17339                 echo "I can't use Berkeley DB with your <db.h>.  I'll disable Berkeley DB." >&4
17340                 i_db=$undef
17341                 case " $libs " in
17342                 *"-ldb "*)
17343                         : Remove db from list of libraries to use
17344                         echo "Removing unusable -ldb from library list" >&4
17345                         set `echo X $libs | $sed -e 's/-ldb / /' -e 's/-ldb$//'`
17346                         shift
17347                         libs="$*"
17348                         echo "libs = $libs" >&4
17349                         ;;
17350                 esac
17351         fi
17352         $rm -f try.*
17353         ;;
17354 esac
17355
17356 case "$i_db" in
17357 define)
17358         : Check the return type needed for hash 
17359         echo " "
17360         echo "Checking return type needed for hash for Berkeley DB ..." >&4
17361         $cat >try.c <<EOCP
17362 #$d_const HASCONST
17363 #ifndef HASCONST
17364 #define const
17365 #endif
17366 #include <sys/types.h>
17367 #include <db.h>
17368
17369 #ifndef DB_VERSION_MAJOR
17370 u_int32_t hash_cb (ptr, size)
17371 const void *ptr;
17372 size_t size;
17373 {
17374 }
17375 HASHINFO info;
17376 int main()
17377 {
17378         info.hash = hash_cb;
17379 }
17380 #endif
17381 EOCP
17382         if $cc $ccflags -c try.c >try.out 2>&1 ; then
17383                 if $contains warning try.out >>/dev/null 2>&1 ; then
17384                         db_hashtype='int'
17385                 else
17386                         db_hashtype='u_int32_t'
17387                 fi
17388         else
17389                 : XXX Maybe we should just give up here.
17390                 db_hashtype=u_int32_t
17391                 $cat try.out >&4
17392                 echo "Help:  I can't seem to compile the db test program." >&4
17393                 echo "Something's wrong, but I'll assume you use $db_hashtype." >&4
17394         fi
17395         $rm -f try.*
17396         echo "Your version of Berkeley DB uses $db_hashtype for hash."
17397         ;;
17398 *)      db_hashtype=u_int32_t
17399         ;;
17400 esac
17401 case "$i_db" in
17402 define)
17403         : Check the return type needed for prefix 
17404         echo " "
17405         echo "Checking return type needed for prefix for Berkeley DB ..." >&4
17406         cat >try.c <<EOCP
17407 #$d_const HASCONST
17408 #ifndef HASCONST
17409 #define const
17410 #endif
17411 #include <sys/types.h>
17412 #include <db.h>
17413
17414 #ifndef DB_VERSION_MAJOR
17415 size_t prefix_cb (key1, key2)
17416 const DBT *key1;
17417 const DBT *key2;
17418 {
17419 }
17420 BTREEINFO info;
17421 int main()
17422 {
17423         info.prefix = prefix_cb;
17424 }
17425 #endif
17426 EOCP
17427         if $cc $ccflags -c try.c  >try.out 2>&1 ; then
17428                 if $contains warning try.out >>/dev/null 2>&1 ; then
17429                         db_prefixtype='int'
17430                 else
17431                         db_prefixtype='size_t'
17432                 fi
17433         else
17434                 db_prefixtype='size_t'
17435                 : XXX Maybe we should just give up here.
17436                 $cat try.out >&4
17437                 echo "Help:  I can't seem to compile the db test program." >&4
17438                 echo "Something's wrong, but I'll assume you use $db_prefixtype." >&4
17439         fi
17440         $rm -f try.*
17441         echo "Your version of Berkeley DB uses $db_prefixtype for prefix."
17442         ;;
17443 *)      db_prefixtype='size_t'
17444         ;;
17445 esac
17446
17447
17448 : How can we generate normalized random numbers ?
17449 echo " "
17450 echo "Looking for a random number function..." >&4
17451 case "$randfunc" in
17452 '')
17453         if set drand48 val -f; eval $csym; $val; then
17454                 dflt="drand48"
17455                 echo "Good, found drand48()." >&4
17456         elif set random val -f; eval $csym; $val; then
17457                 dflt="random"
17458                 echo "OK, found random()." >&4
17459         else
17460                 dflt="rand"
17461                 echo "Yick, looks like I have to use rand()." >&4
17462         fi
17463         echo " "
17464         ;;
17465 *)
17466         dflt="$randfunc"
17467         ;;
17468 esac
17469 cont=true
17470
17471 case "$ccflags" in
17472 *-Dmy_rand=*|*-Dmy_srand=*)
17473         echo "Removing obsolete -Dmy_rand, -Dmy_srand, and -Drandbits from ccflags." >&4
17474         ccflags="`echo $ccflags | sed -e 's/-Dmy_rand=random/ /'`"
17475         ccflags="`echo $ccflags | sed -e 's/-Dmy_srand=srandom/ /'`"
17476         ccflags="`echo $ccflags | sed -e 's/-Drandbits=[0-9][0-9]*/ /'`"
17477         ;;
17478 esac
17479
17480 while $test "$cont"; do
17481         rp="Use which function to generate random numbers?"
17482         . ./myread
17483         if $test "$ans" = "$dflt"; then
17484                 : null
17485         else
17486                 randbits=''
17487         fi
17488         randfunc="$ans"
17489         if set $ans val -f; eval $csym; $val; then
17490                 cont=''
17491         else
17492                 dflt=y
17493                 rp="I cannot find function $ans. Use that name anyway?"
17494                 . ./myread
17495                 dflt=rand
17496                 case "$ans" in
17497                         [yY]*) cont='';;
17498                 esac
17499         fi
17500         case "$cont" in
17501         '')
17502                 case "$randfunc" in
17503                 drand48)
17504                         drand01="drand48()"
17505                         seedfunc="srand48"
17506                         randbits=48
17507                         randseedtype=long
17508                         ;;
17509                 rand|random)
17510                         case "$randbits" in
17511                         '')
17512 echo "Checking to see how many bits your $randfunc() function produces..." >&4
17513                                 $cat >try.c <<EOCP
17514 #$i_unistd I_UNISTD
17515 #$i_stdlib I_STDLIB
17516 #include <stdio.h>
17517 #ifdef I_UNISTD
17518 #  include <unistd.h>
17519 #endif
17520 #ifdef I_STDLIB
17521 #  include <stdlib.h>
17522 #endif
17523 int main()
17524 {
17525         register int i;
17526         register unsigned long tmp;
17527         register unsigned long max = 0L;
17528
17529         for (i = 1000; i; i--) {
17530                 tmp = (unsigned long) $randfunc();
17531                 if (tmp > max) max = tmp;
17532         }
17533         for (i = 0; max; i++)
17534                 max /= 2;
17535         printf("%d\n",i);
17536 }
17537 EOCP
17538                                 set try
17539                                 if eval $compile_ok; then
17540                                         dflt=`try`
17541                                 else
17542                                         dflt='?'
17543                                         echo "(I can't seem to compile the test program...)"
17544                                 fi
17545                                 ;;
17546                         *)
17547                                 dflt="$randbits"
17548                                 ;;
17549                         esac
17550                         rp="How many bits does your $randfunc() function produce?"
17551                         . ./myread
17552                         randbits="$ans"
17553                         $rm -f try.c try
17554                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
17555                         seedfunc="s$randfunc"
17556                         randseedtype=unsigned
17557                         ;;
17558                 *)
17559                         dflt="31"
17560                         rp="How many bits does your $randfunc() function produce?"
17561                         . ./myread
17562                         randbits="$ans"
17563                         seedfunc="s$randfunc"
17564                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
17565                         if set $seedfunc val -f; eval $csym; $val; then
17566                                 echo "(Using $seedfunc() to seed random generator)"
17567                         else
17568                                 echo "(Warning: no $seedfunc() to seed random generator)"
17569                                 seedfunc=rand
17570                         fi
17571                         randseedtype=unsigned
17572                         ;;
17573                 esac
17574                 ;;
17575         esac
17576 done
17577
17578 echo " "
17579 echo "Determining whether or not we are on an EBCDIC system..." >&4
17580 $cat >try.c <<'EOM'
17581 int main()
17582 {
17583   if ('M'==0xd4) return 0;
17584   return 1;
17585 }
17586 EOM
17587
17588 val=$undef
17589 set try
17590 if eval $compile_ok; then
17591         if $run ./try; then
17592                 echo "You seem to speak EBCDIC." >&4
17593                 val="$define"
17594         else
17595                 echo "Nope, no EBCDIC, probably ASCII or some ISO Latin. Or UTF-8." >&4
17596         fi
17597 else
17598         echo "I'm unable to compile the test program." >&4
17599         echo "I'll assume ASCII or some ISO Latin. Or UTF8." >&4
17600 fi
17601 $rm -f try try.*
17602 set ebcdic
17603 eval $setvar
17604
17605 echo " "
17606 $cat >&4 <<EOM
17607 Checking how to flush all pending stdio output...
17608 EOM
17609 # I only know how to find the first 32 possibly open files on SunOS.
17610 # See also hints/sunos_4_1.sh and util.c  --AD
17611 case "$osname" in
17612 sunos) $echo '#define PERL_FFLUSH_ALL_FOPEN_MAX 32' > try.c ;;
17613 esac
17614 $cat >>try.c <<EOCP
17615 #include <stdio.h>
17616 #$i_stdlib I_STDLIB
17617 #ifdef I_STDLIB
17618 #include <stdlib.h>
17619 #endif
17620 #$i_unistd I_UNISTD
17621 #ifdef I_UNISTD
17622 # include <unistd.h>
17623 #endif
17624 #$d_sysconf HAS_SYSCONF
17625 #$d_stdio_stream_array HAS_STDIO_STREAM_ARRAY
17626 #ifdef HAS_STDIO_STREAM_ARRAY
17627 # define STDIO_STREAM_ARRAY $stdio_stream_array
17628 #endif
17629 int main() {
17630   FILE* p;
17631   unlink("try.out");
17632   p = fopen("try.out", "w");
17633 #ifdef TRY_FPUTC
17634   fputc('x', p);
17635 #else
17636 # ifdef TRY_FPRINTF
17637   fprintf(p, "x");
17638 # endif
17639 #endif
17640 #ifdef TRY_FFLUSH_NULL
17641   fflush(NULL);
17642 #endif
17643 #ifdef TRY_FFLUSH_ALL
17644   {
17645     long open_max = -1;
17646 # ifdef PERL_FFLUSH_ALL_FOPEN_MAX
17647     open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
17648 # else
17649 #  if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
17650     open_max = sysconf(_SC_OPEN_MAX);
17651 #  else
17652 #   ifdef FOPEN_MAX
17653     open_max = FOPEN_MAX;
17654 #   else
17655 #    ifdef OPEN_MAX
17656     open_max = OPEN_MAX;
17657 #    else
17658 #     ifdef _NFILE
17659     open_max = _NFILE;
17660 #     endif
17661 #    endif
17662 #   endif
17663 #  endif
17664 # endif 
17665 # ifdef HAS_STDIO_STREAM_ARRAY
17666     if (open_max > 0) {
17667       long i;
17668       for (i = 0; i < open_max; i++)
17669             if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
17670                 STDIO_STREAM_ARRAY[i]._file < open_max &&
17671                 STDIO_STREAM_ARRAY[i]._flag)
17672                 fflush(&STDIO_STREAM_ARRAY[i]);
17673     }   
17674   }
17675 # endif
17676 #endif
17677   _exit(42);
17678 }
17679 EOCP
17680 : first we have to find out how _not_ to flush
17681 $to try.c
17682 if $test "X$fflushNULL" = X -o "X$fflushall" = X; then
17683     output=''
17684     set try -DTRY_FPUTC
17685     if eval $compile; then
17686             $run ./try 2>/dev/null
17687             code="$?"
17688             $from try.out
17689             if $test ! -s try.out -a "X$code" = X42; then
17690                 output=-DTRY_FPUTC
17691             fi
17692     fi
17693     case "$output" in
17694     '')
17695             set try -DTRY_FPRINTF
17696             if eval $compile; then
17697                     $run ./try 2>/dev/null
17698                     code="$?"
17699                     $from try.out
17700                     if $test ! -s try.out -a "X$code" = X42; then
17701                         output=-DTRY_FPRINTF
17702                     fi
17703             fi
17704         ;;
17705     esac
17706 fi
17707 : check for fflush NULL behaviour
17708 case "$fflushNULL" in
17709 '')     set try -DTRY_FFLUSH_NULL $output
17710         if eval $compile; then
17711                 $run ./try 2>/dev/null
17712                 code="$?"
17713                 $from try.out
17714                 if $test -s try.out -a "X$code" = X42; then
17715                         fflushNULL="`$cat try.out`"
17716                 else
17717                         if $test "X$code" != X42; then
17718                                 $cat >&4 <<EOM
17719 (If this test failed, don't worry, we'll try another method shortly.)
17720 EOM
17721                         fi
17722                 fi
17723         fi
17724         $rm -f core try.core core.try.*
17725         case "$fflushNULL" in
17726         x)      $cat >&4 <<EOM
17727 Your fflush(NULL) works okay for output streams.
17728 Let's see if it clobbers input pipes...
17729 EOM
17730 # As of mid-March 2000 all versions of Solaris appear to have a stdio
17731 # bug that improperly flushes the input end of pipes.  So we avoid the
17732 # autoflush on fork/system/exec support for now. :-(
17733 $cat >tryp.c <<EOCP
17734 #include <stdio.h>
17735 int
17736 main(int argc, char **argv)
17737 {
17738     char buf[1024];
17739     int i;
17740     char *bp = buf;
17741     while (1) {
17742         while ((i = getc(stdin)) != -1
17743                && (*bp++ = i) != '\n'
17744                && bp < &buf[1024])
17745         /* DO NOTHING */ ;
17746         *bp = '\0';
17747         fprintf(stdout, "%s", buf);
17748         fflush(NULL);
17749         if (i == -1)
17750             return 0;
17751         bp = buf;
17752     }
17753 }
17754 EOCP
17755                 fflushNULL="$define"
17756                 set tryp
17757                 if eval $compile; then
17758                     $rm -f tryp.out
17759                     $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
17760                     if cmp tryp.c tryp.out >/dev/null 2>&1; then
17761                        $cat >&4 <<EOM
17762 fflush(NULL) seems to behave okay with input streams.
17763 EOM
17764                         fflushNULL="$define"
17765                     else
17766                         $cat >&4 <<EOM
17767 Ouch, fflush(NULL) clobbers input pipes!  We will not use it.
17768 EOM
17769                         fflushNULL="$undef"
17770                     fi
17771                 fi
17772                 $rm -f core tryp.c tryp.core core.tryp.*
17773                 ;;
17774         '')     $cat >&4 <<EOM
17775 Your fflush(NULL) isn't working (contrary to ANSI C).
17776 EOM
17777                 fflushNULL="$undef"
17778                 ;;
17779         *)      $cat >&4 <<EOM
17780 Cannot figure out whether your fflush(NULL) works or not.
17781 I'm assuming it doesn't (contrary to ANSI C).
17782 EOM
17783                 fflushNULL="$undef"
17784                 ;;
17785         esac
17786         ;;
17787 $define|true|[yY]*)
17788         fflushNULL="$define"
17789         ;;
17790 *)
17791         fflushNULL="$undef"
17792         ;;
17793 esac
17794 : check explicit looping only if NULL did not work, and if the pipe
17795 : bug does not show up on an explicit flush too
17796 case "$fflushNULL" in
17797 "$undef")
17798         $cat >tryp.c <<EOCP
17799 #include <stdio.h>
17800 int
17801 main(int argc, char **argv)
17802 {
17803     char buf[1024];
17804     int i;
17805     char *bp = buf;
17806     while (1) {
17807         while ((i = getc(stdin)) != -1
17808                && (*bp++ = i) != '\n'
17809                && bp < &buf[1024])
17810         /* DO NOTHING */ ;
17811         *bp = '\0';
17812         fprintf(stdout, "%s", buf);
17813         fflush(stdin);
17814         if (i == -1)
17815             return 0;
17816         bp = buf;
17817     }
17818 }
17819 EOCP
17820         set tryp
17821         if eval $compile; then
17822             $rm -f tryp.out
17823             $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
17824             if cmp tryp.c tryp.out >/dev/null 2>&1; then
17825                $cat >&4 <<EOM
17826 Good, at least fflush(stdin) seems to behave okay when stdin is a pipe.
17827 EOM
17828                 : now check for fflushall behaviour
17829                 case "$fflushall" in
17830                 '')     set try -DTRY_FFLUSH_ALL $output
17831                         if eval $compile; then
17832                                 $cat >&4 <<EOM
17833 (Now testing the other method--but note that this also may fail.)
17834 EOM
17835                                 $run ./try 2>/dev/null
17836                                 code=$?
17837                                 $from try.out
17838                                 if $test -s try.out -a "X$code" = X42; then
17839                                         fflushall="`$cat try.out`"
17840                                 fi
17841                         fi
17842                         $rm -f core try.core core.try.*
17843                         case "$fflushall" in
17844                         x)      $cat >&4 <<EOM
17845 Whew. Flushing explicitly all the stdio streams works.
17846 EOM
17847                                 fflushall="$define"
17848                                 ;;
17849                         '')     $cat >&4 <<EOM
17850 Sigh. Flushing explicitly all the stdio streams doesn't work.
17851 EOM
17852                                 fflushall="$undef"
17853                                 ;;
17854                         *)      $cat >&4 <<EOM
17855 Cannot figure out whether flushing stdio streams explicitly works or not.
17856 I'm assuming it doesn't.
17857 EOM
17858                                 fflushall="$undef"
17859                                 ;;
17860                         esac
17861                         ;;
17862                 "$define"|true|[yY]*)
17863                         fflushall="$define"
17864                         ;;
17865                 *)
17866                         fflushall="$undef"
17867                         ;;
17868                 esac
17869             else
17870                 $cat >&4 <<EOM
17871 All is futile.  Even fflush(stdin) clobbers input pipes!
17872 EOM
17873                 fflushall="$undef"
17874             fi
17875         else
17876             fflushall="$undef"
17877         fi
17878         $rm -f core tryp.c tryp.core core.tryp.*
17879         ;;
17880 *)      fflushall="$undef"
17881         ;;
17882 esac
17883
17884 case "$fflushNULL$fflushall" in
17885 undefundef)
17886         $cat <<EOM
17887 OK, I give up.  I cannot figure out how to flush pending stdio output.
17888 We won't be flushing handles at all before fork/exec/popen.
17889 EOM
17890         ;;
17891 esac
17892 $rm -f try.* try$exe_ext
17893
17894 : Store the full pathname to the ar program for use in the C program
17895 : Respect a hint or command line value for full_ar.
17896 case "$full_ar" in
17897 '') full_ar=$ar ;;
17898 esac
17899
17900 : Store the full pathname to the sed program for use in the C program
17901 full_sed=$sed
17902
17903 : see what type gids are declared as in the kernel
17904 echo " "
17905 echo "Looking for the type for group ids returned by getgid()."
17906 set gid_t gidtype xxx stdio.h sys/types.h
17907 eval $typedef
17908 case "$gidtype" in
17909 xxx)
17910         xxx=`./findhdr sys/user.h`
17911         set `grep 'groups\[NGROUPS\];' "$xxx" 2>/dev/null` unsigned short
17912         case $1 in
17913         unsigned) dflt="$1 $2" ;;
17914         *) dflt="$1" ;;
17915         esac
17916         ;;
17917 *) dflt="$gidtype";;
17918 esac
17919 case "$gidtype" in
17920 gid_t) echo "gid_t found." ;;
17921 *)      rp="What is the type for group ids returned by getgid()?"
17922         . ./myread
17923         gidtype="$ans"
17924         ;;
17925 esac
17926
17927 echo " "
17928 case "$gidtype" in
17929 *_t) zzz="$gidtype"     ;;
17930 *)   zzz="gid"          ;;
17931 esac
17932 echo "Checking the size of $zzz..." >&4 
17933 cat > try.c <<EOCP
17934 #include <sys/types.h>
17935 #include <stdio.h>
17936 #$i_stdlib I_STDLIB
17937 #ifdef I_STDLIB
17938 #include <stdlib.h>
17939 #endif
17940 int main() {
17941     printf("%d\n", (int)sizeof($gidtype));
17942     exit(0);
17943 }
17944 EOCP
17945 set try
17946 if eval $compile_ok; then
17947         yyy=`$run ./try`
17948         case "$yyy" in
17949         '')     gidsize=4
17950                 echo "(I can't execute the test program--guessing $gidsize.)" >&4
17951                 ;;
17952         *)      gidsize=$yyy
17953                 echo "Your $zzz is $gidsize bytes long."
17954                 ;;
17955         esac
17956 else
17957         gidsize=4
17958         echo "(I can't compile the test program--guessing $gidsize.)" >&4
17959 fi
17960
17961
17962 echo " "
17963 case "$gidtype" in
17964 *_t) zzz="$gidtype"     ;;
17965 *)   zzz="gid"          ;;
17966 esac
17967 echo "Checking the sign of $zzz..." >&4 
17968 cat > try.c <<EOCP
17969 #include <sys/types.h>
17970 #include <stdio.h>
17971 int main() {
17972         $gidtype foo = -1;
17973         if (foo < 0)
17974                 printf("-1\n");
17975         else
17976                 printf("1\n");
17977 }
17978 EOCP
17979 set try
17980 if eval $compile; then
17981         yyy=`$run ./try`
17982         case "$yyy" in
17983         '')     gidsign=1
17984                 echo "(I can't execute the test program--guessing unsigned.)" >&4
17985                 ;;
17986         *)      gidsign=$yyy
17987                 case "$gidsign" in
17988                  1) echo "Your $zzz is unsigned." ;;
17989                 -1) echo "Your $zzz is signed."   ;;
17990                 esac
17991                 ;;
17992         esac
17993 else
17994         gidsign=1
17995         echo "(I can't compile the test program--guessing unsigned.)" >&4
17996 fi
17997
17998
17999 echo " "
18000
18001 if $test X"$quadtype" != X; then
18002
18003 echo "Checking how to print 64-bit integers..." >&4
18004
18005 if $test X"$sPRId64" = X -a X"$quadtype" = Xint; then
18006         $cat >try.c <<'EOCP'
18007 #include <sys/types.h>
18008 #include <stdio.h>
18009 int main() {
18010   int q = 12345678901;
18011   printf("%ld\n", q);
18012 }
18013 EOCP
18014         set try
18015         if eval $compile; then
18016                 yyy=`$run ./try`
18017                 case "$yyy" in
18018                 12345678901)
18019                         sPRId64='"d"'; sPRIi64='"i"'; sPRIu64='"u"';
18020                         sPRIo64='"o"'; sPRIx64='"x"'; sPRIXU64='"X"';
18021                         echo "We will use %d."
18022                         ;;
18023                 esac
18024         fi
18025 fi
18026
18027 if $test X"$sPRId64" = X -a X"$quadtype" = Xlong; then
18028         $cat >try.c <<'EOCP'
18029 #include <sys/types.h>
18030 #include <stdio.h>
18031 int main() {
18032   long q = 12345678901;
18033   printf("%ld\n", q);
18034 }
18035 EOCP
18036         set try
18037         if eval $compile; then
18038                 yyy=`$run ./try`
18039                 case "$yyy" in
18040                 12345678901)
18041                         sPRId64='"ld"'; sPRIi64='"li"'; sPRIu64='"lu"';
18042                         sPRIo64='"lo"'; sPRIx64='"lx"'; sPRIXU64='"lX"';
18043                         echo "We will use %ld."
18044                         ;;
18045                 esac
18046         fi
18047 fi
18048
18049 if $test X"$sPRId64" = X -a X"$i_inttypes" = X"$define" -a X"$quadtype" = Xint64_t; then
18050         $cat >try.c <<'EOCP'
18051 #include <sys/types.h>
18052 #include <inttypes.h>
18053 #include <stdio.h>
18054 int main() {
18055   int64_t q = 12345678901;
18056   printf("%" PRId64 "\n", q);
18057 }
18058 EOCP
18059         set try
18060         if eval $compile; then
18061                 yyy=`$run ./try`
18062                 case "$yyy" in
18063                 12345678901)
18064                         sPRId64=PRId64; sPRIi64=PRIi64; sPRIu64=PRIu64;
18065                         sPRIo64=PRIo64; sPRIx64=PRIx64; sPRIXU64=PRIXU64;
18066                         echo "We will use the C9X style."
18067                         ;;
18068                 esac
18069         fi
18070 fi
18071
18072 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
18073         $cat >try.c <<EOCP
18074 #include <sys/types.h>
18075 #include <stdio.h>
18076 int main() {
18077   $quadtype q = 12345678901;
18078   printf("%Ld\n", q);
18079 }
18080 EOCP
18081         set try
18082         if eval $compile; then
18083                 yyy=`$run ./try`
18084                 case "$yyy" in
18085                 12345678901)
18086                         sPRId64='"Ld"'; sPRIi64='"Li"'; sPRIu64='"Lu"';
18087                         sPRIo64='"Lo"'; sPRIx64='"Lx"'; sPRIXU64='"LX"';
18088                         echo "We will use %Ld."
18089                         ;;
18090                 esac
18091         fi
18092 fi
18093
18094 if $test X"$sPRId64" = X -a X"$quadtype" = X"long long"; then
18095         $cat >try.c <<'EOCP'
18096 #include <sys/types.h>
18097 #include <stdio.h>
18098 int main() {
18099   long long q = 12345678901LL; /* AIX cc requires the LL suffix. */
18100   printf("%lld\n", q);
18101 }
18102 EOCP
18103         set try
18104         if eval $compile; then
18105                 yyy=`$run ./try`
18106                 case "$yyy" in
18107                 12345678901)
18108                         sPRId64='"lld"'; sPRIi64='"lli"'; sPRIu64='"llu"';
18109                         sPRIo64='"llo"'; sPRIx64='"llx"'; sPRIXU64='"llX"';
18110                         echo "We will use the %lld style."
18111                         ;;
18112                 esac
18113         fi
18114 fi
18115
18116 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
18117         $cat >try.c <<EOCP
18118 #include <sys/types.h>
18119 #include <stdio.h>
18120 int main() {
18121   $quadtype q = 12345678901;
18122   printf("%qd\n", q);
18123 }
18124 EOCP
18125         set try
18126         if eval $compile; then
18127                 yyy=`$run ./try`
18128                 case "$yyy" in
18129                 12345678901)
18130                         sPRId64='"qd"'; sPRIi64='"qi"'; sPRIu64='"qu"';
18131                         sPRIo64='"qo"'; sPRIx64='"qx"'; sPRIXU64='"qX"';
18132                         echo "We will use %qd."
18133                         ;;
18134                 esac
18135         fi
18136 fi
18137
18138 if $test X"$sPRId64" = X; then
18139         echo "Cannot figure out how to print 64-bit integers." >&4
18140 fi
18141
18142 $rm -f try try.*
18143
18144 fi
18145
18146 case "$sPRId64" in
18147 '')     d_PRId64="$undef"; d_PRIi64="$undef"; d_PRIu64="$undef"; 
18148         d_PRIo64="$undef"; d_PRIx64="$undef"; d_PRIXU64="$undef"; 
18149         ;;
18150 *)      d_PRId64="$define"; d_PRIi64="$define"; d_PRIu64="$define"; 
18151         d_PRIo64="$define"; d_PRIx64="$define"; d_PRIXU64="$define"; 
18152         ;;
18153 esac
18154
18155
18156 echo " "
18157 $echo "Checking the format strings to be used for Perl's internal types..." >&4
18158
18159 if $test X"$ivsize" = X8; then
18160         ivdformat="$sPRId64"
18161         uvuformat="$sPRIu64"
18162         uvoformat="$sPRIo64"
18163         uvxformat="$sPRIx64"
18164         uvXUformat="$sPRIXU64"
18165 else
18166         if $test X"$ivsize" = X"$longsize"; then
18167                 ivdformat='"ld"'
18168                 uvuformat='"lu"'
18169                 uvoformat='"lo"'
18170                 uvxformat='"lx"'
18171                 uvXUformat='"lX"'
18172         else
18173                 if $test X"$ivsize" = X"$intsize"; then
18174                         ivdformat='"d"'
18175                         uvuformat='"u"'
18176                         uvoformat='"o"'
18177                         uvxformat='"x"'
18178                         uvXUformat='"X"'
18179                 else
18180                         : far out
18181                         if $test X"$ivsize" = X"$shortsize"; then
18182                                 ivdformat='"hd"'
18183                                 uvuformat='"hu"'
18184                                 uvoformat='"ho"'
18185                                 uvxformat='"hx"'
18186                                 uvXUformat='"hX"'
18187                         fi
18188                 fi
18189         fi
18190 fi
18191
18192 if $test X"$uselongdouble" = X"$define" -a X"$d_longdbl" = X"$define" -a X"$d_PRIgldbl" = X"$define"; then
18193         nveformat="$sPRIeldbl"
18194         nvfformat="$sPRIfldbl"
18195         nvgformat="$sPRIgldbl"
18196         nvEUformat="$sPRIEUldbl"
18197         nvFUformat="$sPRIFUldbl"
18198         nvGUformat="$sPRIGUldbl"
18199 else
18200         nveformat='"e"'
18201         nvfformat='"f"'
18202         nvgformat='"g"'
18203         nvEUformat='"E"'
18204         nvFUformat='"F"'
18205         nvGUformat='"G"'
18206 fi
18207
18208 case "$ivdformat" in
18209 '') echo "$0: Fatal: failed to find format strings, cannot continue." >&4
18210     exit 1
18211     ;;
18212 esac
18213
18214
18215 echo " "
18216 $echo "Checking the format string to be used for gids..." >&4
18217
18218 case "$gidsign" in
18219 -1)     if $test X"$gidsize" = X"$ivsize"; then
18220                 gidformat="$ivdformat"
18221         else
18222                 if $test X"$gidsize" = X"$longsize"; then
18223                         gidformat='"ld"'
18224                 else
18225                         if $test X"$gidsize" = X"$intsize"; then
18226                                 gidformat='"d"'
18227                         else
18228                                 if $test X"$gidsize" = X"$shortsize"; then
18229                                         gidformat='"hd"'
18230                                 fi
18231                         fi
18232                 fi
18233         fi
18234         ;;
18235 *)      if $test X"$gidsize" = X"$uvsize"; then
18236                 gidformat="$uvuformat"
18237         else
18238                 if $test X"$gidsize" = X"$longsize"; then
18239                         gidformat='"lu"'
18240                 else
18241                         if $test X"$gidsize" = X"$intsize"; then
18242                                 gidformat='"u"'
18243                         else
18244                                 if $test X"$gidsize" = X"$shortsize"; then
18245                                         gidformat='"hu"'
18246                                 fi
18247                         fi
18248                 fi
18249         fi
18250         ;;
18251 esac
18252
18253 : see if getgroups exists
18254 set getgroups d_getgrps
18255 eval $inlibc
18256
18257 : see if setgroups exists
18258 set setgroups d_setgrps
18259 eval $inlibc
18260
18261
18262 : Find type of 2nd arg to 'getgroups()' and 'setgroups()'
18263 echo " "
18264 case "$d_getgrps$d_setgrps" in
18265 *define*)
18266         case "$groupstype" in
18267         '') dflt="$gidtype" ;;
18268         *)  dflt="$groupstype" ;;
18269         esac
18270         $cat <<EOM
18271 What type of pointer is the second argument to getgroups() and setgroups()?
18272 Usually this is the same as group ids, $gidtype, but not always.
18273
18274 EOM
18275         rp='What type pointer is the second argument to getgroups() and setgroups()?'
18276         . ./myread
18277         groupstype="$ans"
18278         ;;
18279 *)  groupstype="$gidtype";;
18280 esac
18281
18282 echo " "
18283 echo "Checking if your $make program sets \$(MAKE)..." >&4
18284 case "$make_set_make" in
18285 '')
18286         $sed 's/^X //' > testmake.mak << 'EOF'
18287 Xall:
18288 X       @echo 'maketemp="$(MAKE)"'
18289 EOF
18290         case "`$make -f testmake.mak 2>/dev/null`" in
18291         *maketemp=*) make_set_make='#' ;;
18292         *)      make_set_make="MAKE=$make" ;;
18293         esac
18294         $rm -f testmake.mak
18295         ;;
18296 esac
18297 case "$make_set_make" in
18298 '#') echo "Yup, it does.";;
18299 *) echo "Nope, it doesn't.";;
18300 esac
18301
18302 : see what type is used for mode_t
18303 rp="What is the type used for file modes for system calls (e.g. fchmod())?"
18304 set mode_t modetype int stdio.h sys/types.h
18305 eval $typedef_ask
18306
18307 : see if stdarg is available
18308 echo " "
18309 if $test `./findhdr stdarg.h`; then
18310         echo "<stdarg.h> found." >&4
18311         valstd="$define"
18312 else
18313         echo "<stdarg.h> NOT found." >&4
18314         valstd="$undef"
18315 fi
18316
18317 : see if varags is available
18318 echo " "
18319 if $test `./findhdr varargs.h`; then
18320         echo "<varargs.h> found." >&4
18321 else
18322         echo "<varargs.h> NOT found, but that's ok (I hope)." >&4
18323 fi
18324
18325 : set up the varargs testing programs
18326 $cat > varargs.c <<EOP
18327 #ifdef I_STDARG
18328 #include <stdarg.h>
18329 #endif
18330 #ifdef I_VARARGS
18331 #include <varargs.h>
18332 #endif
18333
18334 #ifdef I_STDARG
18335 int f(char *p, ...)
18336 #else
18337 int f(va_alist)
18338 va_dcl
18339 #endif
18340 {
18341         va_list ap;
18342 #ifndef I_STDARG
18343         char *p;
18344 #endif
18345 #ifdef I_STDARG
18346         va_start(ap,p);
18347 #else
18348         va_start(ap);
18349         p = va_arg(ap, char *);
18350 #endif
18351         va_end(ap);
18352 }
18353 EOP
18354 $cat > varargs <<EOP
18355 $startsh
18356 if $cc -c $ccflags -D\$1 varargs.c >/dev/null 2>&1; then
18357         echo "true"
18358 else
18359         echo "false"
18360 fi
18361 $rm -f varargs$_o
18362 EOP
18363 chmod +x varargs
18364
18365 : now check which varargs header should be included
18366 echo " "
18367 i_varhdr=''
18368 case "$valstd" in
18369 "$define")
18370         if `./varargs I_STDARG`; then
18371                 val='stdarg.h'
18372         elif `./varargs I_VARARGS`; then
18373                 val='varargs.h'
18374         fi
18375         ;;
18376 *)
18377         if `./varargs I_VARARGS`; then
18378                 val='varargs.h'
18379         fi
18380         ;;
18381 esac
18382 case "$val" in
18383 '')
18384 echo "I could not find the definition for va_dcl... You have problems..." >&4
18385         val="$undef"; set i_stdarg; eval $setvar
18386         val="$undef"; set i_varargs; eval $setvar
18387         ;;
18388 *) 
18389         set i_varhdr
18390         eval $setvar
18391         case "$i_varhdr" in
18392         stdarg.h)
18393                 val="$define"; set i_stdarg; eval $setvar
18394                 val="$undef"; set i_varargs; eval $setvar
18395                 ;;
18396         varargs.h)
18397                 val="$undef"; set i_stdarg; eval $setvar
18398                 val="$define"; set i_varargs; eval $setvar
18399                 ;;
18400         esac
18401         echo "We'll include <$i_varhdr> to get va_dcl definition." >&4;;
18402 esac
18403 $rm -f varargs*
18404
18405 : see if we need va_copy
18406 echo " "
18407 case "$i_stdarg" in
18408 "$define")
18409         $cat >try.c <<EOCP
18410 #include <stdarg.h>
18411 #include <stdio.h>
18412 #$i_stdlib I_STDLIB
18413 #ifdef I_STDLIB
18414 #include <stdlib.h>
18415 #endif
18416 #include <signal.h>
18417
18418 int
18419 ivfprintf(FILE *f, const char *fmt, va_list *valp)
18420 {
18421   return vfprintf(f, fmt, *valp);
18422 }
18423  
18424 int    
18425 myvfprintf(FILE *f, const  char *fmt, va_list val)
18426 {
18427   return ivfprintf(f, fmt, &val);
18428 }
18429       
18430 int
18431 myprintf(char *fmt, ...) 
18432 {
18433   va_list val;
18434   va_start(val, fmt);
18435   return myvfprintf(stdout, fmt, val); 
18436 }         
18437
18438 int
18439 main(int ac, char **av)
18440 {
18441   signal(SIGSEGV, exit);
18442
18443   myprintf("%s%cs all right, then\n", "that", '\'');                            
18444   exit(0);      
18445 }
18446 EOCP
18447         set try
18448         if eval $compile && $run ./try 2>&1 >/dev/null; then
18449                 case "`$run ./try`" in
18450                 "that's all right, then")
18451                         okay=yes
18452                         ;;
18453                 esac
18454         fi
18455         case "$okay" in
18456         yes)    echo "It seems that you don't need va_copy()." >&4
18457                 need_va_copy="$undef"
18458                 ;;
18459         *)      echo "It seems that va_copy() or similar will be needed." >&4
18460                 need_va_copy="$define"
18461                 ;;
18462         esac
18463         $rm -f try.* core core.* *.core *.core.*
18464         ;;
18465 *)      echo "You don't have <stdarg.h>, not checking for va_copy()." >&4
18466         ;;
18467 esac
18468
18469 : see what type is used for size_t
18470 rp="What is the type used for the length parameter for string functions?"
18471 set size_t sizetype 'unsigned int' stdio.h sys/types.h
18472 eval $typedef_ask
18473
18474 : check for type of arguments to gethostbyaddr. 
18475 if test "X$netdb_host_type" = X -o "X$netdb_hlen_type" = X; then
18476         case "$d_gethbyaddr" in
18477         $define)
18478                 $cat <<EOM
18479
18480 Checking to see what type of arguments are accepted by gethostbyaddr().
18481 EOM
18482                 hdrs="$define sys/types.h
18483                         $d_socket sys/socket.h 
18484                         $i_niin netinet/in.h 
18485                         $i_netdb netdb.h
18486                         $i_unistd unistd.h"
18487                 : The first arg can 'char *' or 'void *'
18488                 : The second arg is some of integral type
18489                 for xxx in in_addr_t 'const void *' 'const char *' 'void *' 'char *'; do
18490                         for yyy in size_t long int; do
18491                                 case "$netdb_host_type" in
18492                                 '')     try="extern struct hostent *gethostbyaddr($xxx, $yyy, int);"
18493                                         if ./protochk "$try" $hdrs; then
18494                                                 echo "Your system accepts $xxx for the first arg."
18495                                                 echo "...and $yyy for the second arg."
18496                                                 netdb_host_type="$xxx"
18497                                                 netdb_hlen_type="$yyy"
18498                                         fi
18499                                         ;;
18500                                 esac
18501                         done
18502                 done
18503                 : In case none of those worked, prompt the user.
18504                 case "$netdb_host_type" in
18505                 '')     rp='What is the type for the 1st argument to gethostbyaddr?'
18506                         dflt='char *'
18507                         . ./myread
18508                         netdb_host_type=$ans
18509                         rp='What is the type for the 2nd argument to gethostbyaddr?'
18510                         dflt="$sizetype"
18511                         . ./myread
18512                         netdb_hlen_type=$ans
18513                         ;;
18514                 esac
18515                 ;;
18516         *)      : no gethostbyaddr, so pick harmless defaults
18517                 netdb_host_type='char *'
18518                 netdb_hlen_type="$sizetype"
18519                 ;;
18520         esac
18521         # Remove the "const" if needed. -- but then we'll have a 
18522         # prototype clash!
18523         # netdb_host_type=`echo "$netdb_host_type" | sed 's/^const //'`
18524 fi
18525
18526 : check for type of argument to gethostbyname. 
18527 if test "X$netdb_name_type" = X ; then
18528         case "$d_gethbyname" in
18529         $define)
18530                 $cat <<EOM
18531
18532 Checking to see what type of argument is accepted by gethostbyname().
18533 EOM
18534                 hdrs="$define sys/types.h
18535                         $d_socket sys/socket.h 
18536                         $i_niin netinet/in.h 
18537                         $i_netdb netdb.h
18538                         $i_unistd unistd.h"
18539                 for xxx in "const char *" "char *"; do
18540                         case "$netdb_name_type" in
18541                         '')     try="extern struct hostent *gethostbyname($xxx);"
18542                                 if ./protochk "$try" $hdrs; then
18543                                         echo "Your system accepts $xxx."
18544                                         netdb_name_type="$xxx"
18545                                 fi
18546                                 ;;
18547                         esac
18548                 done
18549                 : In case none of those worked, prompt the user.
18550                 case "$netdb_name_type" in
18551                 '')     rp='What is the type for the 1st argument to gethostbyname?'
18552                         dflt='char *'
18553                         . ./myread
18554                         netdb_name_type=$ans
18555                         ;;
18556                 esac
18557                 ;;
18558         *)      : no gethostbyname, so pick harmless default
18559                 netdb_name_type='char *'
18560                 ;;
18561         esac
18562 fi
18563
18564 : check for type of 1st argument to getnetbyaddr. 
18565 if test "X$netdb_net_type" = X ; then
18566         case "$d_getnbyaddr" in
18567         $define)
18568                 $cat <<EOM
18569
18570 Checking to see what type of 1st argument is accepted by getnetbyaddr().
18571 EOM
18572                 hdrs="$define sys/types.h
18573                         $d_socket sys/socket.h 
18574                         $i_niin netinet/in.h 
18575                         $i_netdb netdb.h
18576                         $i_unistd unistd.h"
18577                 for xxx in in_addr_t "unsigned long" long "unsigned int" int; do
18578                         case "$netdb_net_type" in
18579                         '')     try="extern struct netent *getnetbyaddr($xxx, int);"
18580                                 if ./protochk "$try" $hdrs; then
18581                                         echo "Your system accepts $xxx."
18582                                         netdb_net_type="$xxx"
18583                                 fi
18584                                 ;;
18585                         esac
18586                 done
18587                 : In case none of those worked, prompt the user.
18588                 case "$netdb_net_type" in
18589                 '')     rp='What is the type for the 1st argument to getnetbyaddr?'
18590                         dflt='long'
18591                         . ./myread
18592                         netdb_net_type=$ans
18593                         ;;
18594                 esac
18595                 ;;
18596         *)      : no getnetbyaddr, so pick harmless default
18597                 netdb_net_type='long'
18598                 ;;
18599         esac
18600 fi
18601 : locate the preferred pager for this system
18602 fn=f/
18603 case "$pager" in
18604 '')
18605         dflt=''
18606         case "$pg" in
18607         /*) dflt=$pg;;
18608         [a-zA-Z]:/*) dflt=$pg;;
18609         esac
18610         case "$more" in
18611         /*) dflt=$more;;
18612         [a-zA-Z]:/*) dflt=$more;;
18613         esac
18614         case "$less" in
18615         /*) dflt=$less;;
18616         [a-zA-Z]:/*) dflt=$less;;
18617         esac
18618         case "$dflt" in
18619         '') dflt=/usr/ucb/more;;
18620         esac
18621         ;;
18622 *)      dflt="$pager"
18623         : Instruct ./getfile to trust the hinted or previous pager value,
18624         : even if it does not begin with a slash.  For example, on os2,
18625         : pager might be cmd /c more.  See comments in UU/getfile.
18626         fn="f/($pager)"
18627         ;;
18628 esac
18629 echo " "
18630 rp='What pager is used on your system?'
18631 . ./getfile
18632 pager="$ans"
18633
18634 : see what type pids are declared as in the kernel
18635 rp="What is the type of process ids on this system?"
18636 set pid_t pidtype int stdio.h sys/types.h
18637 eval $typedef_ask
18638
18639 : Find earliest binary compatible site_perl subdirectory perl can use.
18640 xs_apiversion=$version # The current site_perl version.
18641 : Find earliest pure perl site_perl subdirectory perl can use.
18642 : The versioned directories started at 5.005.
18643 pm_apiversion='5.005'
18644
18645 : see if ar generates random libraries by itself
18646 echo " "
18647 echo "Checking how to generate random libraries on your machine..." >&4
18648 echo 'int bar1() { return bar2(); }' > bar1.c
18649 echo 'int bar2() { return 2; }' > bar2.c
18650 $cat > foo.c <<EOP
18651 #$i_stdlib I_STDLIB
18652 #ifdef I_STDLIB
18653 #include <stdlib.h>
18654 #endif
18655 int main() { printf("%d\n", bar1()); exit(0); }
18656 EOP
18657 $cc $ccflags -c bar1.c >/dev/null 2>&1
18658 $cc $ccflags -c bar2.c >/dev/null 2>&1
18659 $cc $ccflags -c foo.c >/dev/null 2>&1
18660 $ar rc bar$_a bar2$_o bar1$_o >/dev/null 2>&1
18661 if $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
18662         $run ./foobar >/dev/null 2>&1; then
18663         echo "$ar appears to generate random libraries itself."
18664         orderlib=false
18665         ranlib=":"
18666 elif $ar ts bar$_a >/dev/null 2>&1 &&
18667         $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
18668         $run ./foobar >/dev/null 2>&1; then
18669                 echo "a table of contents needs to be added with '$ar ts'."
18670                 orderlib=false
18671                 ranlib="$ar ts"
18672 else
18673         case "$ranlib" in
18674         :) ranlib='';;
18675         '')
18676                 ranlib=`./loc ranlib X /usr/bin /bin /usr/local/bin`
18677                 $test -f $ranlib || ranlib=''
18678                 ;;
18679         esac
18680         if $test -n "$ranlib"; then
18681                 echo "your system has '$ranlib'; we'll use that."
18682                 orderlib=false
18683         else
18684                 echo "your system doesn't seem to support random libraries"
18685                 echo "so we'll use lorder and tsort to order the libraries."
18686                 orderlib=true
18687                 ranlib=":"
18688         fi
18689 fi
18690 $rm -f foo* bar* 
18691
18692 : check for type of arguments to select. 
18693 case "$selecttype" in
18694 '') case "$d_select" in
18695         $define)
18696                 echo " "
18697                 $cat <<EOM
18698 Checking to see what type of arguments are accepted by select().
18699 EOM
18700                 hdrs="$define sys/types.h
18701                         $i_systime sys/time.h 
18702                         $i_sysselct sys/select.h
18703                         $d_socket sys/socket.h"
18704                 : The first arg can be int, unsigned, or size_t
18705                 : The last arg may or may not be 'const'
18706                 val=''
18707                 : void pointer has been seen but using that
18708                 : breaks the selectminbits test
18709                 for xxx in 'fd_set *' 'int *'; do
18710                         for nfd in 'int' 'size_t' 'unsigned long' 'unsigned' ; do
18711                                 for tmo in 'struct timeval *' 'const struct timeval *'; do
18712                                         case "$val" in
18713                                         '')     try="extern select _(($nfd, $xxx, $xxx, $xxx, $tmo));"
18714                                                 if ./protochk "$try" $hdrs; then
18715                                                         echo "Your system accepts $xxx."
18716                                                         val="$xxx"
18717                                                 fi
18718                                                 ;;
18719                                         esac
18720                                 done
18721                         done
18722                 done
18723                 case "$val" in
18724                 '')     rp='What is the type for the 2nd, 3rd, and 4th arguments to select?'
18725                         case "$d_fd_set" in
18726                                 $define) dflt="fd_set *" ;;
18727                                 *)              dflt="int *" ;;
18728                         esac
18729                         . ./myread
18730                         val=$ans
18731                         ;;
18732                 esac
18733                 selecttype="$val"
18734                 ;;
18735         *)      : no select, so pick a harmless default
18736                 selecttype='int *'
18737                 ;;
18738         esac
18739         ;;
18740 esac
18741
18742 : check for the select 'width'
18743 case "$selectminbits" in
18744 '') safebits=`expr $ptrsize \* 8`
18745     case "$d_select" in
18746         $define)
18747                 $cat <<EOM
18748
18749 Checking to see on how many bits at a time your select() operates...
18750 EOM
18751                 $cat >try.c <<EOCP
18752 #include <sys/types.h>
18753 #$i_time I_TIME
18754 #$i_systime I_SYS_TIME
18755 #$i_systimek I_SYS_TIME_KERNEL
18756 #ifdef I_TIME
18757 #   include <time.h>
18758 #endif
18759 #ifdef I_SYS_TIME
18760 #   ifdef I_SYS_TIME_KERNEL
18761 #       define KERNEL
18762 #   endif
18763 #   include <sys/time.h>
18764 #   ifdef I_SYS_TIME_KERNEL
18765 #       undef KERNEL
18766 #   endif
18767 #endif
18768 #$i_sysselct I_SYS_SELECT
18769 #ifdef I_SYS_SELECT
18770 #include <sys/select.h>
18771 #endif
18772 #$d_socket HAS_SOCKET
18773 #ifdef HAS_SOCKET
18774 #   include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
18775 #endif
18776 #include <stdio.h>
18777 #$i_stdlib I_STDLIB
18778 #ifdef I_STDLIB
18779 #include <stdlib.h>
18780 #endif
18781 $selecttype b;
18782 #define S sizeof(*(b))
18783 #define MINBITS 64
18784 #define NBYTES (S * 8 > MINBITS ? S : MINBITS/8)
18785 #define NBITS  (NBYTES * 8)
18786 int main() {
18787     char *s = malloc(NBYTES);
18788     struct timeval t;
18789     int i;
18790     FILE* fp;
18791     int fd;
18792
18793     if (!s)
18794         exit(1);
18795     fclose(stdin);
18796     fp = fopen("try.c", "r");
18797     if (fp == 0)
18798       exit(2);
18799     fd = fileno(fp);
18800     if (fd < 0)
18801       exit(3);
18802     b = ($selecttype)s;
18803     for (i = 0; i < NBITS; i++)
18804         FD_SET(i, b);
18805     t.tv_sec  = 0;
18806     t.tv_usec = 0;
18807     select(fd + 1, b, 0, 0, &t);
18808     for (i = NBITS - 1; i > fd && FD_ISSET(i, b); i--);
18809     free(s);
18810     printf("%d\n", i + 1);
18811     return 0;
18812 }
18813 EOCP
18814                 set try
18815                 if eval $compile_ok; then
18816                         selectminbits=`$run ./try`
18817                         case "$selectminbits" in
18818                         '')     cat >&4 <<EOM
18819 Cannot figure out on how many bits at a time your select() operates.
18820 I'll play safe and guess it is $safebits bits.
18821 EOM
18822                                 selectminbits=$safebits
18823                                 bits="$safebits bits"
18824                                 ;;
18825                         1)      bits="1 bit" ;;
18826                         *)      bits="$selectminbits bits" ;;
18827                         esac
18828                         echo "Your select() operates on $bits at a time." >&4
18829                 else
18830                         rp='What is the minimum number of bits your select() operates on?'
18831                         case "$byteorder" in
18832                         12345678)       dflt=64 ;;
18833                         1234)           dflt=32 ;;
18834                         *)              dflt=1  ;;
18835                         esac
18836                         . ./myread
18837                         val=$ans
18838                         selectminbits="$val"
18839                 fi
18840                 $rm -f try.* try
18841                 ;;
18842         *)      : no select, so pick a harmless default
18843                 selectminbits=$safebits
18844                 ;;
18845         esac
18846         ;;
18847 esac
18848
18849 : Trace out the files included by signal.h, then look for SIGxxx names.
18850 : Remove SIGARRAYSIZE used by HPUX.
18851 : Remove SIGSTKSIZE used by Linux.
18852 : Remove SIGSTKSZ used by Posix.
18853 : Remove SIGTYP void lines used by OS2.
18854 : Some cpps, like os390, dont give the file name anywhere
18855 if [ "X$fieldn" = X ]; then
18856         : Just make some guesses.  We check them later.
18857         xxx='/usr/include/signal.h /usr/include/sys/signal.h'
18858 else
18859         xxx=`echo '#include <signal.h>' |
18860         $cppstdin $cppminus $cppflags 2>/dev/null |
18861         $grep '^[       ]*#.*include' | 
18862         $awk "{print \\$$fieldn}" | $sed 's!"!!g' | $sed 's!\\\\\\\\!/!g' | $sort | $uniq`
18863 fi
18864 : Check this list of files to be sure we have parsed the cpp output ok.
18865 : This will also avoid potentially non-existent files, such 
18866 : as ../foo/bar.h
18867 xxxfiles=''
18868 for xx in $xxx /dev/null ; do
18869         $test -f "$xx" && xxxfiles="$xxxfiles $xx"
18870 done
18871 : If we have found no files, at least try signal.h
18872 case "$xxxfiles" in
18873 '')     xxxfiles=`./findhdr signal.h` ;;
18874 esac
18875 xxx=`awk '
18876 $1 ~ /^#define$/ && $2 ~ /^SIG[A-Z0-9]*$/ && $2 !~ /SIGARRAYSIZE/ && $2 !~ /SIGSTKSIZE/ && $2 !~ /SIGSTKSZ/ && $3 !~ /void/ {
18877         print substr($2, 4, 20)
18878 }
18879 $1 == "#" && $2 ~ /^define$/ && $3 ~ /^SIG[A-Z0-9]*$/ && $3 !~ /SIGARRAYSIZE/ && $4 !~ /void/ {
18880         print substr($3, 4, 20)
18881 }' $xxxfiles`
18882 : Append some common names just in case the awk scan failed.
18883 xxx="$xxx ABRT ALRM BUS CANCEL CHLD CLD CONT DIL EMT FPE"
18884 xxx="$xxx FREEZE HUP ILL INT IO IOT KILL LOST LWP PHONE"
18885 xxx="$xxx PIPE POLL PROF PWR QUIT RTMAX RTMIN SEGV STKFLT STOP"
18886 xxx="$xxx SYS TERM THAW TRAP TSTP TTIN TTOU URG USR1 USR2"
18887 xxx="$xxx USR3 USR4 VTALRM WAITING WINCH WIND WINDOW XCPU XFSZ"
18888
18889 : generate a few handy files for later
18890 $cat > signal.c <<EOCP
18891 #include <sys/types.h>
18892 #include <signal.h>
18893 #$i_stdlib I_STDLIB
18894 #ifdef I_STDLIB
18895 #include <stdlib.h>
18896 #endif
18897 #include <stdio.h>
18898 int main() {
18899
18900 /* Strange style to avoid deeply-nested #if/#else/#endif */
18901 #ifndef NSIG
18902 #  ifdef _NSIG
18903 #    define NSIG (_NSIG)
18904 #  endif
18905 #endif
18906
18907 #ifndef NSIG
18908 #  ifdef SIGMAX
18909 #    define NSIG (SIGMAX+1)
18910 #  endif
18911 #endif
18912
18913 #ifndef NSIG
18914 #  ifdef SIG_MAX
18915 #    define NSIG (SIG_MAX+1)
18916 #  endif
18917 #endif
18918
18919 #ifndef NSIG
18920 #  ifdef MAXSIG
18921 #    define NSIG (MAXSIG+1)
18922 #  endif
18923 #endif
18924
18925 #ifndef NSIG
18926 #  ifdef MAX_SIG
18927 #    define NSIG (MAX_SIG+1)
18928 #  endif
18929 #endif
18930
18931 #ifndef NSIG
18932 #  ifdef SIGARRAYSIZE
18933 #    define NSIG (SIGARRAYSIZE+1) /* Not sure of the +1 */
18934 #  endif
18935 #endif
18936
18937 #ifndef NSIG
18938 #  ifdef _sys_nsig
18939 #    define NSIG (_sys_nsig) /* Solaris 2.5 */
18940 #  endif
18941 #endif
18942
18943 /* Default to some arbitrary number that's big enough to get most
18944    of the common signals.
18945 */
18946 #ifndef NSIG
18947 #    define NSIG 50
18948 #endif
18949
18950 printf("NSIG %d\n", NSIG);
18951
18952 #ifndef JUST_NSIG
18953
18954 EOCP
18955
18956 echo $xxx | $tr ' ' $trnl | $sort | $uniq | $awk '
18957 {
18958         printf "#ifdef SIG"; printf $1; printf "\n"
18959         printf "printf(\""; printf $1; printf " %%d\\n\",SIG";
18960         printf $1; printf ");\n"
18961         printf "#endif\n"
18962 }
18963 END {
18964         printf "#endif /* JUST_NSIG */\n";
18965         printf "exit(0);\n}\n";
18966 }
18967 ' >>signal.c
18968 $cat >signal.awk <<'EOP'
18969 BEGIN { ndups = 0 }
18970 $1 ~ /^NSIG$/ { nsig = $2 }
18971 ($1 !~ /^NSIG$/) && (NF == 2) && ($2 ~ /^[0-9][0-9]*$/) {
18972     if ($2 > maxsig) { maxsig = $2 }
18973     if (sig_name[$2]) {
18974         dup_name[ndups] = $1
18975         dup_num[ndups] = $2
18976         ndups++ 
18977     }
18978     else {
18979         sig_name[$2] = $1
18980         sig_num[$2] = $2
18981     }
18982 }
18983 END { 
18984     if (nsig == 0) {
18985         nsig = maxsig + 1
18986     }
18987     printf("NSIG %d\n", nsig);
18988     for (n = 1; n < nsig; n++) {
18989         if (sig_name[n]) {
18990             printf("%s %d\n", sig_name[n], sig_num[n])
18991         }
18992         else {
18993             printf("NUM%d %d\n", n, n) 
18994         }
18995     }
18996     for (n = 0; n < ndups; n++) {
18997         printf("%s %d\n", dup_name[n], dup_num[n])
18998     }
18999 }
19000 EOP
19001 $cat >signal_cmd <<EOS
19002 $startsh
19003 if $test -s signal.lst; then
19004     echo "Using your existing signal.lst file"
19005         exit 0
19006 fi
19007 xxx="$xxx"
19008 EOS
19009 $cat >>signal_cmd <<'EOS'
19010
19011 set signal
19012 if eval $compile_ok; then
19013         $run ./signal$_exe | ($sort -n -k 2 2>/dev/null || $sort -n +1) | $uniq | $awk -f signal.awk >signal.lst
19014 else
19015         echo "(I can't seem be able to compile the whole test program)" >&4
19016         echo "(I'll try it in little pieces.)" >&4
19017         set signal -DJUST_NSIG
19018         if eval $compile_ok; then
19019                 $run ./signal$_exe > signal.nsg
19020                 $cat signal.nsg
19021         else
19022                 echo "I can't seem to figure out how many signals you have." >&4
19023                 echo "Guessing 50." >&4
19024                 echo 'NSIG 50' > signal.nsg
19025         fi
19026         : Now look at all the signal names, one at a time.
19027         for xx in `echo $xxx | $tr ' ' $trnl | $sort | $uniq`; do
19028                 $cat > signal.c <<EOCP
19029 #include <sys/types.h>
19030 #include <signal.h>
19031 #include <stdio.h>
19032 int main() {
19033 printf("$xx %d\n", SIG${xx});
19034 return 0;
19035 }
19036 EOCP
19037                 set signal
19038                 if eval $compile; then
19039                         echo "SIG${xx} found."
19040                         $run ./signal$_exe  >> signal.ls1
19041                 else
19042                         echo "SIG${xx} NOT found."
19043                 fi
19044         done
19045         if $test -s signal.ls1; then
19046                 $cat signal.nsg signal.ls1 |
19047                         $sort -n | $uniq | $awk -f signal.awk >signal.lst
19048         fi
19049
19050 fi
19051 if $test -s signal.lst; then
19052         :
19053 else
19054         echo "(AAK! I can't compile the test programs -- Guessing)" >&4
19055         echo 'kill -l' >signal
19056         set X `csh -f <signal`
19057         $rm -f signal
19058         shift
19059         case $# in
19060         0) set HUP INT QUIT ILL TRAP ABRT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM;;
19061         esac
19062         echo $@ | $tr ' ' $trnl | \
19063             $awk '{ printf "%s %d\n", $1, ++s; }
19064                   END { printf "NSIG %d\n", ++s }' >signal.lst
19065 fi
19066 $rm -f signal.c signal$_exe signal$_o signal.nsg signal.ls1
19067 EOS
19068 chmod a+x signal_cmd
19069 $eunicefix signal_cmd
19070
19071 : generate list of signal names
19072 echo " "
19073 case "$sig_name_init" in
19074 '') doinit=yes ;;
19075 *)  case "$sig_num_init" in
19076     ''|*,*) doinit=yes ;;
19077     esac ;;
19078 esac
19079 case "$doinit" in
19080 yes)
19081         echo "Generating a list of signal names and numbers..." >&4
19082         . ./signal_cmd
19083         sig_count=`$awk '/^NSIG/ { printf "%d", $2 }' signal.lst`
19084         sig_name=`$awk 'BEGIN { printf "ZERO " }
19085                         !/^NSIG/ { printf "%s ", $1 }' signal.lst`
19086         sig_num=`$awk  'BEGIN { printf "0 " }
19087                         !/^NSIG/ { printf "%d ", $2 }' signal.lst`
19088         sig_name_init=`$awk 'BEGIN      { printf "\"ZERO\", " }
19089                              !/^NSIG/   { printf "\"%s\", ", $1 }
19090                              END        { printf "0\n" }' signal.lst`
19091         sig_num_init=`$awk  'BEGIN      { printf "0, " }
19092                              !/^NSIG/   { printf "%d, ", $2}
19093                              END        { printf "0\n"}' signal.lst`
19094         ;;
19095 esac
19096 echo "The following $sig_count signals are available:"
19097 echo " "
19098 echo $sig_name | $awk \
19099 'BEGIN { linelen = 0 }
19100 {
19101         for (i = 1; i <= NF; i++) {
19102                 name = "SIG" $i " "
19103                 linelen = linelen + length(name)
19104                 if (linelen > 70) {
19105                         printf "\n"
19106                         linelen = length(name)
19107                 }
19108                 printf "%s", name
19109         }
19110         printf "\n"
19111 }'
19112 sig_size=`echo $sig_name | awk '{print NF}'`
19113 $rm -f signal signal.c signal.awk signal.lst signal_cmd 
19114
19115 echo " "
19116 case "$sizetype" in
19117 *_t) zzz="$sizetype"    ;;
19118 *)   zzz="filesize"     ;;
19119 esac
19120 echo "Checking the size of $zzz..." >&4 
19121 cat > try.c <<EOCP
19122 #include <sys/types.h>
19123 #include <stdio.h>
19124 #$i_stdlib I_STDLIB
19125 #ifdef I_STDLIB
19126 #include <stdlib.h>
19127 #endif
19128 int main() {
19129     printf("%d\n", (int)sizeof($sizetype));
19130     exit(0);
19131 }
19132 EOCP
19133 set try
19134 if eval $compile_ok; then
19135         yyy=`$run ./try`
19136         case "$yyy" in
19137         '')     sizesize=4
19138                 echo "(I can't execute the test program--guessing $sizesize.)" >&4
19139                 ;;
19140         *)      sizesize=$yyy
19141                 echo "Your $zzz size is $sizesize bytes."
19142                 ;;
19143         esac
19144 else
19145         sizesize=4
19146         echo "(I can't compile the test program--guessing $sizesize.)" >&4
19147 fi
19148
19149
19150 : check for socklen_t
19151 echo " "
19152 echo "Checking to see if you have socklen_t..." >&4
19153 $cat >try.c <<EOCP
19154 #include <sys/types.h>
19155 #$d_socket HAS_SOCKET
19156 #ifdef HAS_SOCKET
19157 #include <sys/socket.h>
19158 #endif
19159 int main() { socklen_t x = 16; }
19160 EOCP
19161 set try
19162 if eval $compile; then
19163         val="$define"
19164         echo "You have socklen_t."
19165 else
19166         val="$undef"
19167         echo "You do not have socklen_t."
19168         case "$sizetype" in
19169         size_t) echo "(You do have size_t, that might work. Some people are happy with just an int.)" ;;
19170         esac
19171 fi
19172 $rm -f try try.*
19173 set d_socklen_t
19174 eval $setvar
19175
19176 : see if this is a socks.h system
19177 set socks.h i_socks
19178 eval $inhdr
19179
19180 : check for type of the size argument to socket calls
19181 case "$d_socket" in
19182 "$define")
19183         $cat <<EOM
19184
19185 Checking to see what type is the last argument of accept().
19186 EOM
19187         yyy=''
19188         case "$d_socklen_t" in
19189         "$define") yyy="$yyy socklen_t"
19190         esac
19191         yyy="$yyy $sizetype int long unsigned"
19192         for xxx in $yyy; do
19193                 case "$socksizetype" in
19194                 '')     try="extern int accept(int, struct sockaddr *, $xxx *);"
19195                         case "$usesocks" in
19196                         "$define")
19197                                 if ./protochk "$try" $i_systypes sys/types.h $d_socket sys/socket.h literal '#define INCLUDE_PROTOTYPES' $i_socks socks.h.; then
19198                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
19199                                         socksizetype="$xxx"
19200                                 fi
19201                                 ;;
19202                         *)      if ./protochk "$try"  $i_systypes sys/types.h $d_socket sys/socket.h; then
19203                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
19204                                         socksizetype="$xxx"
19205                                 fi
19206                                 ;;
19207                         esac
19208                         ;;
19209                 esac
19210         done
19211 : In case none of those worked, prompt the user.
19212         case "$socksizetype" in
19213         '')     rp='What is the type for socket address structure sizes?'
19214                 dflt='int'
19215                 . ./myread
19216                 socksizetype=$ans
19217                 ;;
19218         esac
19219         ;;
19220 *)      : no sockets, so pick relatively harmless default
19221         socksizetype='int'
19222         ;;
19223 esac
19224
19225 : see what type is used for signed size_t
19226 set ssize_t ssizetype int stdio.h sys/types.h
19227 eval $typedef
19228 dflt="$ssizetype"
19229 $cat > try.c <<EOM
19230 #include <stdio.h>
19231 #$i_stdlib I_STDLIB
19232 #ifdef I_STDLIB
19233 #include <stdlib.h>
19234 #endif
19235 #include <sys/types.h>
19236 #define Size_t $sizetype
19237 #define SSize_t $dflt
19238 int main()
19239 {
19240         if (sizeof(Size_t) == sizeof(SSize_t))
19241                 printf("$dflt\n");
19242         else if (sizeof(Size_t) == sizeof(int))
19243                 printf("int\n");
19244         else 
19245                 printf("long\n");
19246         exit(0);
19247 }
19248 EOM
19249 echo " "
19250 set try
19251 if eval $compile_ok && $run ./try > /dev/null; then
19252         ssizetype=`$run ./try`
19253         echo "I'll be using $ssizetype for functions returning a byte count." >&4
19254 else
19255         $cat >&4 <<EOM
19256 Help! I can't compile and run the ssize_t test program: please enlighten me!
19257 (This is probably a misconfiguration in your system or libraries, and
19258 you really ought to fix it.  Still, I'll try anyway.)
19259
19260 I need a type that is the same size as $sizetype, but is guaranteed to
19261 be signed.  Common values are ssize_t, int and long.
19262
19263 EOM
19264         rp="What signed type is the same size as $sizetype?"
19265         . ./myread
19266         ssizetype="$ans"
19267 fi
19268 $rm -f try try.*
19269
19270 : see what type of char stdio uses.
19271 echo " "
19272 echo '#include <stdio.h>' | $cppstdin $cppminus > stdioh
19273 if $contains 'unsigned.*char.*_ptr;' stdioh >/dev/null 2>&1 ; then
19274         echo "Your stdio uses unsigned chars." >&4
19275         stdchar="unsigned char"
19276 else
19277         echo "Your stdio uses signed chars." >&4
19278         stdchar="char"
19279 fi
19280 $rm -f stdioh
19281
19282
19283
19284 : see what type uids are declared as in the kernel
19285 echo " "
19286 echo "Looking for the type for user ids returned by getuid()."
19287 set uid_t uidtype xxx stdio.h sys/types.h
19288 eval $typedef
19289 case "$uidtype" in
19290 xxx)
19291         xxx=`./findhdr sys/user.h`
19292         set `grep '_ruid;' "$xxx" 2>/dev/null` unsigned short
19293         case $1 in
19294         unsigned) dflt="$1 $2" ;;
19295         *) dflt="$1" ;;
19296         esac
19297         ;;
19298 *) dflt="$uidtype";;
19299 esac
19300 case "$uidtype" in
19301 uid_t)  echo "uid_t found." ;;
19302 *)      rp="What is the type for user ids returned by getuid()?"
19303         . ./myread
19304         uidtype="$ans"
19305         ;;
19306 esac
19307
19308 echo " "
19309 case "$uidtype" in
19310 *_t) zzz="$uidtype"     ;;
19311 *)   zzz="uid"          ;;
19312 esac
19313 echo "Checking the size of $zzz..." >&4 
19314 cat > try.c <<EOCP
19315 #include <sys/types.h>
19316 #include <stdio.h>
19317 #$i_stdlib I_STDLIB
19318 #ifdef I_STDLIB
19319 #include <stdlib.h>
19320 #endif
19321 int main() {
19322     printf("%d\n", (int)sizeof($uidtype));
19323     exit(0);
19324 }
19325 EOCP
19326 set try
19327 if eval $compile_ok; then
19328         yyy=`$run ./try`
19329         case "$yyy" in
19330         '')     uidsize=4
19331                 echo "(I can't execute the test program--guessing $uidsize.)" >&4
19332                 ;;
19333         *)      uidsize=$yyy
19334                 echo "Your $zzz is $uidsize bytes long."
19335                 ;;
19336         esac
19337 else
19338         uidsize=4
19339         echo "(I can't compile the test program--guessing $uidsize.)" >&4
19340 fi
19341
19342 echo " "
19343 case "$uidtype" in
19344 *_t) zzz="$uidtype"     ;;
19345 *)   zzz="uid"          ;;
19346 esac
19347 echo "Checking the sign of $zzz..." >&4
19348 cat > try.c <<EOCP
19349 #include <sys/types.h>
19350 #include <stdio.h>
19351 int main() {
19352         $uidtype foo = -1;
19353         if (foo < 0)
19354                 printf("-1\n");
19355         else
19356                 printf("1\n");
19357 }
19358 EOCP
19359 set try
19360 if eval $compile; then
19361         yyy=`$run ./try`
19362         case "$yyy" in
19363         '')     uidsign=1
19364                 echo "(I can't execute the test program--guessing unsigned.)" >&4
19365                 ;;
19366         *)      uidsign=$yyy
19367                 case "$uidsign" in
19368                  1) echo "Your $zzz is unsigned." ;;
19369                 -1) echo "Your $zzz is signed."   ;;
19370                 esac
19371                 ;;
19372         esac
19373 else
19374         uidsign=1
19375         echo "(I can't compile the test program--guessing unsigned.)" >&4
19376 fi
19377
19378
19379
19380 echo " "
19381 $echo "Checking the format string to be used for uids..." >&4
19382
19383 case "$uidsign" in
19384 -1)     if $test X"$uidsize" = X"$ivsize"; then
19385                 uidformat="$ivdformat"
19386         else
19387                 if $test X"$uidsize" = X"$longsize"; then
19388                         uidformat='"ld"'
19389                 else
19390                         if $test X"$uidsize" = X"$intsize"; then
19391                                 uidformat='"d"'
19392                         else
19393                                 if $test X"$uidsize" = X"$shortsize"; then
19394                                         uidformat='"hd"'
19395                                 fi
19396                         fi
19397                 fi
19398         fi
19399         ;;
19400 *)      if $test X"$uidsize" = X"$uvsize"; then
19401                 uidformat="$uvuformat"
19402         else
19403                 if $test X"$uidsize" = X"$longsize"; then
19404                         uidformat='"lu"'
19405                 else
19406                         if $test X"$uidsize" = X"$intsize"; then
19407                                 uidformat='"u"'
19408                         else
19409                                 if $test X"$uidsize" = X"$shortsize"; then
19410                                         uidformat='"hu"'
19411                                 fi
19412                         fi
19413                 fi
19414         fi
19415         ;;
19416 esac
19417
19418 : determine compiler compiler
19419 case "$yacc" in
19420 '')
19421         dflt=yacc;;
19422 *)
19423         dflt="$yacc";;
19424 esac
19425 echo " "
19426 comp='yacc'
19427 if $test -f "$byacc$_exe"; then
19428         dflt="$byacc"
19429         comp="byacc or $comp"
19430 fi
19431 if $test -f "$bison$_exe"; then
19432         comp="$comp or bison -y"
19433 fi
19434 rp="Which compiler compiler ($comp) shall I use?"
19435 . ./myread
19436 yacc="$ans"
19437 case "$yacc" in
19438 *bis*)
19439         case "$yacc" in
19440         *-y*) ;;
19441         *)
19442                 yacc="$yacc -y"
19443                 echo "(Adding -y option to bison to get yacc-compatible behaviour.)"
19444                 ;;
19445         esac
19446         ;;
19447 esac
19448
19449 : see if this is a fp.h system
19450 set fp.h i_fp
19451 eval $inhdr
19452
19453 : see if this is a fp_class.h system
19454 set fp_class.h i_fp_class
19455 eval $inhdr
19456
19457 : see if this is a ieeefp.h system
19458 case "$i_ieeefp" in
19459 '' ) set ieeefp.h i_ieeefp
19460      eval $inhdr
19461      ;;
19462 esac
19463
19464 : see if this is a libutil.h system
19465 set libutil.h i_libutil
19466 eval $inhdr
19467
19468 : see if mach cthreads are available
19469 if test "X$usethreads" = "X$define"; then
19470         set mach/cthreads.h i_machcthr
19471         eval $inhdr
19472 else
19473         i_machcthr="$undef"
19474 fi
19475
19476
19477
19478 : see if this is a math.h system
19479 set math.h i_math
19480 eval $inhdr
19481
19482 : see if this is a mntent.h system
19483 set mntent.h i_mntent
19484 eval $inhdr
19485
19486 : see if ndbm.h is available
19487 set ndbm.h t_ndbm
19488 eval $inhdr
19489
19490 case "$t_ndbm" in
19491 $undef)
19492     # Some Linux distributions such as RedHat 7.1 put the
19493     # ndbm.h header in /usr/include/gdbm/ndbm.h.
19494     if $test -f /usr/include/gdbm/ndbm.h; then
19495         echo '<gdbm/ndbm.h> found.'
19496         ccflags="$ccflags -I/usr/include/gdbm"
19497         cppflags="$cppflags -I/usr/include/gdbm"
19498         t_ndbm=$define
19499     fi
19500     ;;
19501 esac
19502
19503 case "$t_ndbm" in
19504 $define)
19505         : see if dbm_open exists
19506         set dbm_open d_dbm_open
19507         eval $inlibc
19508         case "$d_dbm_open" in
19509         $undef)
19510                 t_ndbm="$undef"
19511                 echo "We won't be including <ndbm.h>"
19512                 ;;
19513         esac
19514         ;;
19515 esac
19516 val="$t_ndbm"
19517 set i_ndbm
19518 eval $setvar
19519
19520 : see if net/errno.h is available
19521 val=''
19522 set net/errno.h val
19523 eval $inhdr
19524
19525 : Unfortunately, it causes problems on some systems.  Arrgh.
19526 case "$val" in
19527 $define)
19528         cat > try.c <<'EOM'
19529 #include <stdio.h>
19530 #include <errno.h>
19531 #include <net/errno.h>
19532 int func()
19533 {
19534         return ENOTSOCK;
19535 }
19536 EOM
19537         if $cc $ccflags -c try.c >/dev/null 2>&1; then
19538                 echo "We'll be including <net/errno.h>." >&4
19539         else
19540                 echo "We won't be including <net/errno.h>." >&4
19541                 val="$undef"
19542         fi
19543         $rm -f try.* try
19544         ;;
19545 esac
19546 set i_neterrno
19547 eval $setvar
19548
19549 : see if netinet/tcp.h is available
19550 set netinet/tcp.h i_netinettcp
19551 eval $inhdr
19552
19553 : see if this is a poll.h system
19554 set poll.h i_poll
19555 eval $inhdr
19556
19557 : see if this is a prot.h system
19558 set prot.h i_prot
19559 eval $inhdr
19560
19561 echo " "
19562 $echo "Guessing which symbols your C compiler and preprocessor define..." >&4 
19563 $cat <<'EOSH' > Cppsym.know
19564 a29k ABI64 aegis AES_SOURCE AIX AIX32 AIX370
19565 AIX41 AIX42 AIX43 AIX_SOURCE aixpc ALL_SOURCE
19566 alliant alpha am29000 AM29000 AMD64 amiga AMIGAOS AMIX
19567 ansi ANSI_C_SOURCE apollo ardent ARM32 atarist att386 att3b
19568 BeOS BIG_ENDIAN BIT_MSF bsd BSD bsd43 bsd4_2 bsd4_3 BSD4_3 bsd4_4
19569 BSD_4_3 BSD_4_4 BSD_NET2 BSD_TIME BSD_TYPES BSDCOMPAT bsdi
19570 bull c cadmus clipper CMU COFF COMPILER_VERSION
19571 concurrent convex cpu cray CRAY CRAYMPP ctix CX_UX
19572 CYGWIN DGUX DGUX_SOURCE DJGPP dmert DOLPHIN DPX2 DSO
19573 Dynix DynixPTX ELF encore EPI EXTENSIONS FAVOR_BSD
19574 FILE_OFFSET_BITS FreeBSD GCC_NEW_VARARGS gcos gcx gimpel
19575 GLIBC GLIBC_MINOR
19576 GNU_SOURCE GNUC GNUC_MINOR GNU_LIBRARY GO32 gould GOULD_PN
19577 H3050R H3050RX hbullx20 hcx host_mips
19578 hp200 hp300 hp700 HP700 hp800 hp9000
19579 hp9000s200 hp9000s300 hp9000s400 hp9000s500
19580 hp9000s700 hp9000s800 hp9k8 hp_osf hppa hpux HPUX_SOURCE
19581 i186 i286 i386 i486 i586 i686 i8086 i80960 i860 I960
19582 IA64 iAPX286 ibm ibm032 ibmesa IBMR2 ibmrt ILP32 ILP64
19583 INLINE_INTRINSICS INTRINSICS INT64 interdata is68k ksr1
19584 LANGUAGE_C LARGE_FILE_API LARGEFILE64_SOURCE
19585 LARGEFILE_SOURCE LFS64_LARGEFILE LFS_LARGEFILE
19586 Linux LITTLE_ENDIAN LONG64 LONG_DOUBLE LONG_LONG
19587 LONGDOUBLE LONGLONG LP64 luna luna88k Lynx
19588 M68000 m68k m88100 m88k M88KBCS_TARGET M_COFF
19589 M_I186 M_I286 M_I386 M_I8086 M_I86 M_I86SM M_SYS3
19590 M_SYS5 M_SYSIII M_SYSV M_UNIX M_XENIX MACH machine MachTen
19591 MATH_HAS_NO_SIDE_EFFECTS
19592 mc300 mc500 mc68000 mc68010 mc68020 mc68030 mc68040
19593 mc68060 mc68k mc68k32 mc700 mc88000 mc88100 merlin
19594 mert MiNT mips MIPS_FPSET MIPS_ISA MIPS_SIM MIPS_SZINT
19595 MIPS_SZLONG MIPS_SZPTR MIPSEB MIPSEL MODERN_C motorola
19596 mpeix MSDOS MTXINU MULTIMAX mvs MVS n16 ncl_el ncl_mr
19597 NetBSD news1500 news1700 news1800 news1900 news3700
19598 news700 news800 news900 NeXT NLS nonstopux ns16000 ns32000
19599 ns32016 ns32332 ns32k nsc32000
19600 OCS88 OEMVS OpenBSD os OS2 OS390 osf OSF1 OSF_SOURCE
19601 pa_risc PA_RISC1_1 PA_RISC2_0 PARAGON parisc
19602 pc532 pdp11 PGC PIC plexus PORTAR posix
19603 POSIX1B_SOURCE POSIX2_SOURCE POSIX4_SOURCE
19604 POSIX_C_SOURCE POSIX_SOURCE POWER
19605 PROTOTYPES PWB pyr QNX R3000 REENTRANT RES Rhapsody RISC6000
19606 riscix riscos RT S390 SA110 scs SCO sequent sgi SGI_SOURCE SH3 sinix
19607 SIZE_INT SIZE_LONG SIZE_PTR SOCKET_SOURCE SOCKETS_SOURCE
19608 sony sony_news sonyrisc sparc sparclite spectrum
19609 stardent stdc STDC_EXT stratos sun sun3 sun386
19610 Sun386i svr3 svr4 SVR4_2 SVR4_SOURCE svr5
19611 SX system SYSTYPE_BSD SYSTYPE_BSD43 SYSTYPE_BSD44
19612 SYSTYPE_SVR4 SYSTYPE_SVR5 SYSTYPE_SYSV SYSV SYSV3 SYSV4 SYSV5
19613 sysV68 sysV88 Tek4132 Tek4300 titan
19614 TM3200 TM5400 TM5600
19615 tower tower32 tower32_200 tower32_600 tower32_700
19616 tower32_800 tower32_850 tss
19617 u370 u3b u3b2 u3b20 u3b200 u3b20d u3b5
19618 ultrix UMAXV UnicomPBB UnicomPBD UNICOS UNICOSMK
19619 unix UNIX95 UNIX99 unixpc unos
19620 USE_BSD USE_FILE_OFFSET64 USE_GNU USE_ISOC9X USE_LARGEFILE USE_LARGEFILE64
19621 USE_MISC USE_POSIX USE_POSIX199309 USE_POSIX199506 USE_POSIX2
19622 USE_REENTRANT USE_SVID USE_UNIX98 USE_XOPEN USE_XOPEN_EXTENDED
19623 USGr4 USGr4_2
19624 Utek UTek UTS UWIN uxpm uxps vax venix VMESA vms xenix Xenix286
19625 XOPEN_SOURCE XOPEN_SOURCE_EXTENDED XPG2 XPG2_EXTENDED
19626 XPG3 XPG3_EXTENDED XPG4 XPG4_EXTENDED
19627 z8000
19628 EOSH
19629 # Maybe put other stuff here too.
19630 cat <<EOSH >>Cppsym.know
19631 $osname
19632 EOSH
19633 ./tr '[a-z]' '[A-Z]' < Cppsym.know > Cppsym.a
19634 ./tr '[A-Z]' '[a-z]' < Cppsym.know > Cppsym.b
19635 $cat Cppsym.know > Cppsym.c
19636 $cat Cppsym.a Cppsym.b Cppsym.c | $tr ' ' $trnl | $sort | $uniq > Cppsym.know
19637 $rm -f Cppsym.a Cppsym.b Cppsym.c
19638 cat <<EOSH > Cppsym
19639 $startsh
19640 if $test \$# -gt 0; then
19641     echo \$* | $tr " " "$trnl" | ./Cppsym.try > Cppsym.got
19642     if $test -s Cppsym.got; then
19643         $rm -f Cppsym.got
19644         exit 0
19645     fi
19646     $rm -f Cppsym.got
19647     exit 1
19648 else
19649     $tr " " "$trnl" | ./Cppsym.try
19650     exit 0
19651 fi
19652 EOSH
19653 chmod +x Cppsym
19654 $eunicefix Cppsym
19655 cat <<EOSH > Cppsym.try
19656 $startsh
19657 cat <<'EOCP' > try.c
19658 #include <stdio.h>
19659 int main() {
19660 EOCP
19661 $awk \\
19662 EOSH
19663 cat <<'EOSH' >> Cppsym.try
19664 'length($1) > 0 {
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     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
19668     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
19669 }'       >> try.c
19670 echo 'return 0;}' >> try.c
19671 EOSH
19672 cat <<EOSH >> Cppsym.try
19673 ccflags="$ccflags"
19674 case "$osname-$gccversion" in
19675 irix-) ccflags="\$ccflags -woff 1178" ;;
19676 os2-*) ccflags="\$ccflags -Zlinker /PM:VIO" ;;
19677 esac
19678 $cc -o try $optimize \$ccflags $ldflags try.c $libs && $run ./try
19679 EOSH
19680 chmod +x Cppsym.try
19681 $eunicefix Cppsym.try
19682 ./Cppsym < Cppsym.know > Cppsym.true
19683 : now check the C compiler for additional symbols
19684 postprocess_cc_v=''
19685 case "$osname" in
19686 aix) postprocess_cc_v="|$tr , ' '" ;;
19687 esac
19688 $cat >ccsym <<EOS
19689 $startsh
19690 $cat >tmp.c <<EOF
19691 extern int foo;
19692 EOF
19693 for i in \`$cc -v -c tmp.c 2>&1 $postprocess_cc_v\`
19694 do
19695         case "\$i" in
19696         -D*) echo "\$i" | $sed 's/^-D//';;
19697         -A*) $test "$gccversion" && echo "\$i" | $sed 's/^-A//' | $sed 's/\(.*\)(\(.*\))/\1=\2/';;
19698         esac
19699 done
19700 $rm -f try.c
19701 EOS
19702 postprocess_cc_v=''
19703 chmod +x ccsym
19704 $eunicefix ccsym
19705 ./ccsym > ccsym1.raw
19706 if $test -s ccsym1.raw; then
19707        $sort ccsym1.raw | $uniq >ccsym.raw
19708 else
19709        mv ccsym1.raw ccsym.raw
19710 fi
19711
19712 $awk '/\=/ { print $0; next }
19713         { print $0"=1" }' ccsym.raw >ccsym.list
19714 $awk '/\=/ { print $0; next }
19715         { print $0"=1" }' Cppsym.true >ccsym.true
19716 $comm -13 ccsym.true ccsym.list >ccsym.own
19717 $comm -12 ccsym.true ccsym.list >ccsym.com
19718 $comm -23 ccsym.true ccsym.list >ccsym.cpp
19719 also=''
19720 if $test -z ccsym.raw; then
19721         echo "Your C compiler doesn't seem to define any symbols!" >&4
19722         echo " "
19723         echo "However, your C preprocessor defines the following symbols:"
19724         $cat Cppsym.true
19725         ccsymbols=''
19726         cppsymbols=`$cat Cppsym.true`
19727         cppsymbols=`echo $cppsymbols`
19728         cppccsymbols="$cppsymbols"
19729 else
19730         if $test -s ccsym.com; then
19731                 echo "Your C compiler and pre-processor define these symbols:"
19732                 $sed -e 's/\(..*\)=.*/\1/' ccsym.com
19733                 also='also '
19734                 symbols='ones'
19735                 cppccsymbols=`$cat ccsym.com`
19736                 cppccsymbols=`echo $cppccsymbols`
19737                 $test "$silent" || sleep 1
19738         fi
19739         if $test -s ccsym.cpp; then
19740                 $test "$also" && echo " "
19741                 echo "Your C pre-processor ${also}defines the following symbols:"
19742                 $sed -e 's/\(..*\)=.*/\1/' ccsym.cpp
19743                 also='further '
19744                 cppsymbols=`$cat ccsym.cpp`
19745                 cppsymbols=`echo $cppsymbols`
19746                 $test "$silent" || sleep 1
19747         fi
19748         if $test -s ccsym.own; then
19749                 $test "$also" && echo " "
19750                 echo "Your C compiler ${also}defines the following cpp symbols:"
19751                 $sed -e 's/\(..*\)=1/\1/' ccsym.own
19752                 $sed -e 's/\(..*\)=.*/\1/' ccsym.own | $uniq >>Cppsym.true
19753                 ccsymbols=`$cat ccsym.own`
19754                 ccsymbols=`echo $ccsymbols`
19755                 $test "$silent" || sleep 1
19756         fi
19757 fi
19758
19759 : see if this is a termio system
19760 val="$undef"
19761 val2="$undef"
19762 val3="$undef"
19763 if $test `./findhdr termios.h`; then
19764         set tcsetattr i_termios
19765         eval $inlibc
19766         val3="$i_termios"
19767 fi
19768 echo " "
19769 case "$val3" in
19770 "$define") echo "You have POSIX termios.h... good!" >&4;;
19771 *) if ./Cppsym pyr; then
19772                 case "`/bin/universe`" in
19773                 ucb) if $test `./findhdr sgtty.h`; then
19774                                 val2="$define"
19775                                 echo "<sgtty.h> found." >&4
19776                         else
19777                                 echo "System is pyramid with BSD universe."
19778                                 echo "<sgtty.h> not found--you could have problems." >&4
19779                         fi;;
19780                 *) if $test `./findhdr termio.h`; then
19781                                 val="$define"
19782                                 echo "<termio.h> found." >&4
19783                         else
19784                                 echo "System is pyramid with USG universe."
19785                                 echo "<termio.h> not found--you could have problems." >&4
19786                         fi;;
19787                 esac
19788         elif ./usg; then
19789                 if $test `./findhdr termio.h`; then
19790                         echo "<termio.h> found." >&4
19791                         val="$define"
19792                 elif $test `./findhdr sgtty.h`; then
19793                         echo "<sgtty.h> found." >&4
19794                         val2="$define"
19795                 else
19796 echo "Neither <termio.h> nor <sgtty.h> found--you could have problems." >&4
19797                 fi
19798         else
19799                 if $test `./findhdr sgtty.h`; then
19800                         echo "<sgtty.h> found." >&4
19801                         val2="$define"
19802                 elif $test `./findhdr termio.h`; then
19803                         echo "<termio.h> found." >&4
19804                         val="$define"
19805                 else
19806 echo "Neither <sgtty.h> nor <termio.h> found--you could have problems." >&4
19807                 fi
19808         fi;;
19809 esac
19810 set i_termio; eval $setvar
19811 val=$val2; set i_sgtty; eval $setvar
19812 val=$val3; set i_termios; eval $setvar
19813
19814 : see if stddef is available
19815 set stddef.h i_stddef
19816 eval $inhdr
19817
19818 : see if this is a sunmath.h system
19819 set sunmath.h i_sunmath
19820 eval $inhdr
19821
19822 : see if sys/access.h is available
19823 set sys/access.h i_sysaccess
19824 eval $inhdr
19825
19826 : see if ioctl defs are in sgtty, termio, sys/filio or sys/ioctl
19827 set sys/filio.h i_sysfilio
19828 eval $inhdr
19829 echo " "
19830 if $test `./findhdr sys/ioctl.h`; then
19831         val="$define"
19832         echo '<sys/ioctl.h> found.' >&4
19833 else
19834         val="$undef"
19835         if $test $i_sysfilio = "$define"; then
19836             echo '<sys/ioctl.h> NOT found.' >&4
19837         else
19838                 $test $i_sgtty = "$define" && xxx="sgtty.h"
19839                 $test $i_termio = "$define" && xxx="termio.h"
19840                 $test $i_termios = "$define" && xxx="termios.h"
19841 echo "No <sys/ioctl.h> found, assuming ioctl args are defined in <$xxx>." >&4
19842         fi
19843 fi
19844 set i_sysioctl
19845 eval $setvar
19846
19847 : see if socket ioctl defs are in sys/sockio.h
19848 echo " "
19849 xxx=`./findhdr sys/sockio.h`
19850 if $test "$xxx"; then
19851         if $contains SIOCATMARK $xxx >/dev/null 2>&1; then
19852                 val="$define"
19853                 echo "You have socket ioctls defined in <sys/sockio.h>." >&4
19854         else
19855                 val="$undef"
19856                 echo "No socket ioctls found in <sys/sockio.h>." >&4
19857         fi
19858 else
19859         val="$undef"
19860         $cat <<EOM
19861 <sys/sockio.h> not found, assuming socket ioctls are in <sys/ioctl.h>.
19862 EOM
19863 fi
19864 set i_syssockio
19865 eval $setvar
19866
19867
19868 : see if this is a syslog.h system
19869 set syslog.h i_syslog
19870 eval $inhdr
19871
19872
19873 : see if this is a sys/mode.h system
19874 set sys/mode.h i_sysmode
19875 eval $inhdr
19876
19877 : see if sys/resource.h has to be included
19878 set sys/resource.h i_sysresrc
19879 eval $inhdr
19880
19881 : see if sys/security.h is available
19882 set sys/security.h i_syssecrt
19883 eval $inhdr
19884
19885 : see if this is a sys/statvfs.h system
19886 set sys/statvfs.h i_sysstatvfs
19887 eval $inhdr
19888
19889 : see if this is a sys/un.h system
19890 set sys/un.h i_sysun
19891 eval $inhdr
19892
19893
19894 : see if this is a sys/utsname.h system
19895 set sys/utsname.h i_sysutsname
19896 eval $inhdr
19897
19898 : see if this is a syswait system
19899 set sys/wait.h i_syswait
19900 eval $inhdr
19901
19902 : see if this is a ustat.h system
19903 set ustat.h i_ustat
19904 eval $inhdr
19905
19906 : see if this is an utime system
19907 set utime.h i_utime
19908 eval $inhdr
19909
19910 : see if this is a values.h system
19911 set values.h i_values
19912 eval $inhdr
19913
19914 : see if this is a vfork system
19915 case "$d_vfork" in
19916 "$define")
19917         set vfork.h i_vfork
19918         eval $inhdr
19919         ;;
19920 *)
19921         i_vfork="$undef"
19922         ;;
19923 esac
19924
19925 : see if gdbm.h is available
19926 set gdbm.h t_gdbm
19927 eval $inhdr
19928 case "$t_gdbm" in
19929 $define)
19930         : see if gdbm_open exists
19931         set gdbm_open d_gdbm_open
19932         eval $inlibc
19933         case "$d_gdbm_open" in
19934         $undef)
19935                 t_gdbm="$undef"
19936                 echo "We won't be including <gdbm.h>"
19937                 ;;
19938         esac
19939         ;;
19940 esac
19941 val="$t_gdbm"
19942 set i_gdbm
19943 eval $setvar
19944
19945 echo " "
19946 echo "Looking for extensions..." >&4
19947 : If we are using the old config.sh, known_extensions may contain
19948 : old or inaccurate or duplicate values.
19949 known_extensions=''
19950 nonxs_extensions=''
19951 : We do not use find because it might not be available.
19952 : We do not just use MANIFEST because the user may have dropped
19953 : some additional extensions into the source tree and expect them
19954 : to be built.
19955
19956 : Function to recursively find available extensions, ignoring DynaLoader
19957 : NOTE: recursion limit of 10 to prevent runaway in case of symlink madness
19958 find_extensions='
19959     for xxx in *; do
19960        case "$xxx" in
19961            DynaLoader|dynaload) ;;
19962            *)
19963            if $test -f $xxx/$xxx.xs; then
19964                known_extensions="$known_extensions $1$xxx";
19965            elif $test -f $xxx/Makefile.PL; then
19966                nonxs_extensions="$nonxs_extensions $1$xxx";
19967            else
19968                if $test -d $xxx -a $# -lt 10; then
19969                    set $1$xxx/ $*;
19970                    cd "$xxx";
19971                    eval $find_extensions;
19972                    cd ..;
19973                    shift;
19974                fi;
19975            fi
19976            ;;
19977        esac;
19978     done'
19979 tdir=`pwd`
19980 cd "$rsrc/ext"
19981 set X
19982 shift
19983 eval $find_extensions
19984 # Special case:  Add in threads/shared since it is not picked up by the
19985 # recursive find above (and adding in general recursive finding breaks
19986 # SDBM_File/sdbm).  A.D.  10/25/2001.
19987 known_extensions="$known_extensions threads/shared"
19988 set X $nonxs_extensions
19989 shift
19990 nonxs_extensions="$*"
19991 set X $known_extensions
19992 shift
19993 known_extensions="$*"
19994 cd "$tdir"
19995
19996 : Now see which are supported on this system.
19997 avail_ext=''
19998 for xxx in $known_extensions ; do
19999         case "$xxx" in
20000         DB_File|db_file)
20001                 case "$i_db" in
20002                 $define) avail_ext="$avail_ext $xxx" ;;
20003                 esac
20004                 ;;
20005         GDBM_File|gdbm_fil)
20006                 case "$i_gdbm" in 
20007                 $define) avail_ext="$avail_ext $xxx" ;;
20008                 esac
20009                 ;;
20010         I18N/Langinfo|i18n_lan)
20011                 case "$i_langinfo$d_nl_langinfo" in 
20012                 $define$define) avail_ext="$avail_ext $xxx" ;;
20013                 esac
20014                 ;;
20015         NDBM_File|ndbm_fil)
20016                 case "$i_ndbm" in
20017                 $define)
20018                     case "$osname-$use64bitint" in
20019                     hpux-define)
20020                         case "$libs" in
20021                         *-lndbm*) avail_ext="$avail_ext $xxx" ;;
20022                         esac
20023                         ;;
20024                     *) avail_ext="$avail_ext $xxx" ;;
20025                     esac
20026                     ;;
20027                 esac
20028                 ;;
20029         ODBM_File|odbm_fil) 
20030                 case "${i_dbm}${i_rpcsvcdbm}" in
20031                 *"${define}"*)
20032                     case "$osname-$use64bitint" in
20033                     hpux-define)
20034                         case "$libs" in
20035                         *-ldbm*) avail_ext="$avail_ext $xxx" ;;
20036                         esac
20037                         ;;
20038                     *) avail_ext="$avail_ext $xxx" ;;
20039                     esac
20040                     ;;
20041                 esac
20042                 ;;
20043         POSIX|posix)
20044                 case "$useposix" in
20045                 true|define|y) avail_ext="$avail_ext $xxx" ;;
20046                 esac
20047                 ;;
20048         Opcode|opcode)
20049                 case "$useopcode" in
20050                 true|define|y) avail_ext="$avail_ext $xxx" ;;
20051                 esac
20052                 ;;
20053         Socket|socket)
20054                 case "$d_socket" in 
20055                 true|$define|y)
20056                     case "$osname" in
20057                     beos) ;; # not unless BONE
20058                     *) avail_ext="$avail_ext $xxx" ;;
20059                     esac
20060                     ;;
20061                 esac
20062                 ;;
20063         Sys/Syslog|sys/syslog)
20064                 : XXX syslog requires socket
20065                 case "$d_socket" in 
20066                 true|$define|y) avail_ext="$avail_ext $xxx" ;;
20067                 esac
20068                 ;;
20069         Thread|thread)
20070                 case "$usethreads" in
20071                 true|$define|y)
20072                         case "$useithreads" in
20073                         $undef|false|[nN]*) avail_ext="$avail_ext $xxx" ;;
20074                         esac
20075                 esac
20076                 ;;
20077         XS/APItest|xs/apitest)
20078                 # This is just for testing.  Skip it unless we have dynamic loading.
20079
20080                 case "$usedl" in
20081                 $define) avail_ext="$avail_ext $xxx" ;;
20082                 esac
20083                 ;;
20084         XS/Typemap|xs/typemap)
20085                 # This is just for testing.  Skip it unless we have dynamic loading.
20086                 case "$usedl" in
20087                 $define) avail_ext="$avail_ext $xxx" ;;
20088                 esac
20089                 ;;
20090         threads|threads/shared)
20091                 # threads and threads::shared are special cases.
20092                 # To stop people from asking "Perl 5.8.0 was supposed
20093                 # to have this new fancy threads implementation but my
20094                 # perl doesn't have it" and from people trying to
20095                 # (re)install the threads module using CPAN.pm and
20096                 # CPAN.pm then offering to reinstall Perl 5.8.0,
20097                 # the threads.pm and threads/shared.pm will always be
20098                 # there, croaking informatively ("you need to rebuild
20099                 # all of Perl with threads, sorry") when threads haven't
20100                 # been compiled in.
20101                 # --jhi
20102                 avail_ext="$avail_ext $xxx"
20103                 ;;
20104         IPC/SysV|ipc/sysv)
20105                 : XXX Do we need a useipcsysv variable here
20106                 case "${d_msg}${d_sem}${d_shm}" in 
20107                 *"${define}"*) avail_ext="$avail_ext $xxx" ;;
20108                 esac
20109                 ;;
20110         *)      avail_ext="$avail_ext $xxx"
20111                 ;;
20112         esac
20113 done
20114
20115 set X $avail_ext
20116 shift
20117 avail_ext="$*"
20118
20119 case "$onlyextensions" in
20120 '') ;;
20121 *)  keepextensions=''
20122     echo "You have requested that only certains extensions be included..." >&4
20123     for i in $onlyextensions; do
20124         case " $avail_ext " in
20125         *" $i "*)
20126             echo "Keeping extension $i."
20127             keepextensions="$keepextensions $i"
20128             ;;
20129         *) echo "Ignoring extension $i." ;;
20130         esac
20131     done
20132     avail_ext="$keepextensions"
20133     ;;
20134 esac
20135
20136 case "$noextensions" in
20137 '') ;;
20138 *)  keepextensions=''
20139     echo "You have requested that certain extensions be ignored..." >&4
20140     for i in $avail_ext; do
20141         case " $i " in
20142         " $noextensions ") echo "Ignoring extension $i." ;;
20143         *) echo "Keeping extension $i.";
20144            keepextensions="$keepextensions $i"
20145            ;;
20146         esac
20147     done
20148     avail_ext="$keepextensions"
20149     ;;
20150 esac
20151
20152 : Now see which nonxs extensions are supported on this system.
20153 : For now assume all are.
20154 nonxs_ext=''
20155 for xxx in $nonxs_extensions ; do
20156         case "$xxx" in
20157         *)      nonxs_ext="$nonxs_ext $xxx"
20158                 ;;
20159         esac
20160 done
20161
20162 set X $nonxs_ext
20163 shift
20164 nonxs_ext="$*"
20165
20166 case $usedl in
20167 $define)
20168         $cat <<EOM
20169 A number of extensions are supplied with $package.  You may choose to
20170 compile these extensions for dynamic loading (the default), compile
20171 them into the $package executable (static loading), or not include
20172 them at all.  Answer "none" to include no extensions.
20173 Note that DynaLoader is always built and need not be mentioned here.
20174
20175 EOM
20176         case "$dynamic_ext" in
20177         '')
20178                 : Exclude those listed in static_ext
20179                 dflt=''
20180                 for xxx in $avail_ext; do
20181                         case " $static_ext " in
20182                         *" $xxx "*) ;;
20183                         *) dflt="$dflt $xxx" ;;
20184                         esac
20185                 done
20186                 set X $dflt
20187                 shift
20188                 dflt="$*"
20189                 ;;
20190         *)      dflt="$dynamic_ext"
20191                 # Perhaps we are reusing an old out-of-date config.sh.
20192                 case "$hint" in
20193                 previous)
20194                         if test X"$dynamic_ext" != X"$avail_ext"; then
20195                                 $cat <<EOM
20196 NOTICE:  Your previous config.sh list may be incorrect. 
20197 The extensions now available to you are 
20198         ${avail_ext}
20199 but the default list from your previous config.sh is
20200         ${dynamic_ext} 
20201
20202 EOM
20203                         fi
20204                         ;;
20205                 esac
20206                 ;;
20207         esac
20208         case "$dflt" in
20209         '')     dflt=none;;
20210         esac
20211         rp="What extensions do you wish to load dynamically?"
20212         . ./myread
20213         case "$ans" in
20214         none) dynamic_ext=' ' ;;
20215         *) dynamic_ext="$ans" ;;
20216         esac
20217
20218         case "$static_ext" in
20219         '')
20220                 : Exclude those already listed in dynamic linking
20221                 dflt=''
20222                 for xxx in $avail_ext; do
20223                         case " $dynamic_ext " in
20224                         *" $xxx "*) ;;
20225                         *) dflt="$dflt $xxx" ;;
20226                         esac
20227                 done
20228                 set X $dflt
20229                 shift
20230                 dflt="$*"
20231                 ;;
20232         *)  dflt="$static_ext" 
20233                 ;;
20234         esac
20235
20236         case "$dflt" in
20237         '')     dflt=none;;
20238         esac
20239         rp="What extensions do you wish to load statically?"
20240         . ./myread
20241         case "$ans" in
20242         none) static_ext=' ' ;;
20243         *) static_ext="$ans" ;;
20244         esac
20245         ;;
20246 *)
20247         $cat <<EOM
20248 A number of extensions are supplied with $package.  Answer "none" 
20249 to include no extensions. 
20250 Note that DynaLoader is always built and need not be mentioned here.
20251
20252 EOM
20253         case "$static_ext" in
20254         '') dflt="$avail_ext" ;;
20255         *)      dflt="$static_ext"
20256                 # Perhaps we are reusing an old out-of-date config.sh.
20257                 case "$hint" in
20258                 previous)
20259                         if test X"$static_ext" != X"$avail_ext"; then
20260                                 $cat <<EOM
20261 NOTICE:  Your previous config.sh list may be incorrect. 
20262 The extensions now available to you are 
20263         ${avail_ext}
20264 but the default list from your previous config.sh is
20265         ${static_ext} 
20266
20267 EOM
20268                         fi
20269                         ;;
20270                 esac
20271                 ;;
20272         esac
20273         : Exclude those that are not xs extensions
20274         case "$dflt" in
20275         '')     dflt=none;;
20276         esac
20277         rp="What extensions do you wish to include?"
20278         . ./myread
20279         case "$ans" in
20280         none) static_ext=' ' ;;
20281         *) static_ext="$ans" ;;
20282         esac
20283         ;;
20284 esac
20285 #        
20286 # Encode is a special case.  If we are building Encode as a static
20287 # extension, we need to explicitly list its subextensions as well.
20288 # For other nested extensions, this is handled automatically by
20289 # the appropriate Makefile.PL.
20290 case " $static_ext " in
20291         *" Encode "*) # Add the subextensions of Encode
20292         cd "$rsrc/ext"
20293         for xxx in `ls Encode/*/Makefile.PL|awk -F/ '{print $2}'`; do
20294                 static_ext="$static_ext Encode/$xxx"
20295         done
20296         cd "$tdir"
20297         ;;
20298 esac
20299
20300 set X $dynamic_ext $static_ext $nonxs_ext
20301 shift
20302 extensions="$*"
20303
20304 # Sanity check:  We require an extension suitable for use with
20305 # AnyDBM_File, as well as Fcntl and IO.  (Failure to have these
20306 # should show up as failures in the test suite, but it's helpful to
20307 # catch them now.) The 'extensions' list is normally sorted
20308 # alphabetically, so we need to accept either
20309 #    DB_File ... Fcntl ... IO  ....
20310 # or something like
20311 #    Fcntl ... NDBM_File ... IO  ....
20312 case " $extensions"  in
20313 *"_File "*" Fcntl "*" IO "*) ;; # DB_File
20314 *" Fcntl "*"_File "*" IO "*) ;; # GDBM_File
20315 *" Fcntl "*" IO "*"_File "*) ;; # NDBM_File
20316 *) echo "WARNING: Extensions DB_File or *DBM_File, Fcntl, and IO not configured." >&4
20317    echo "WARNING: The Perl you are building will be quite crippled." >& 4
20318    ;;
20319 esac
20320
20321 : Remove libraries needed only for extensions
20322 : The appropriate ext/Foo/Makefile.PL will add them back in, if necessary.
20323 : The exception is SunOS 4.x, which needs them.
20324 case "${osname}X${osvers}" in
20325 sunos*X4*)
20326     perllibs="$libs"
20327     ;;
20328 *) case "$usedl" in
20329     $define|true|[yY]*)
20330             set X `echo " $libs " | sed -e 's@ -lndbm @ @' -e 's@ -lgdbm @ @' -e 's@ -ldbm @ @' -e 's@ -ldb @ @'` 
20331             shift
20332             perllibs="$*"
20333             ;;
20334     *)  perllibs="$libs"
20335             ;;
20336     esac
20337     ;;
20338 esac
20339
20340 : Remove build directory name from cppstdin so it can be used from
20341 : either the present location or the final installed location.
20342 echo " "
20343 : Get out of the UU directory to get correct path name.
20344 cd ..
20345 case "$cppstdin" in
20346 `pwd`/cppstdin)
20347         echo "Stripping down cppstdin path name"
20348         cppstdin=cppstdin
20349         ;;
20350 esac
20351 cd UU
20352
20353 : end of configuration questions
20354 echo " "
20355 echo "End of configuration questions."
20356 echo " "
20357
20358 : back to where it started
20359 if test -d ../UU; then
20360         cd ..
20361 fi
20362
20363 : configuration may be patched via a 'config.arch' file
20364 if $test -f config.arch; then
20365         echo "I see a config.arch file, loading it."
20366         . ./config.arch
20367 fi
20368
20369 : configuration may be patched via a 'config.over' file
20370 if $test -f config.over; then
20371         echo " "
20372         dflt=y
20373         rp='I see a config.over file.  Do you wish to load it?'
20374         . UU/myread
20375         case "$ans" in
20376         n*) echo "OK, I'll ignore it.";;
20377         *)      . ./config.over
20378                 echo "Configuration override changes have been loaded."
20379                 ;;
20380         esac
20381 fi
20382
20383 : in case they want portability, strip down executable paths
20384 case "$d_portable" in
20385 "$define")
20386         echo " "
20387         echo "Stripping down executable paths..." >&4
20388         for file in $loclist $trylist; do
20389                 eval temp=\$$file
20390                 eval $file=`basename $temp`
20391         done
20392         ;;
20393 esac
20394
20395 : create config.sh file
20396 echo " "
20397 echo "Creating config.sh..." >&4
20398 $spitshell <<EOT >config.sh
20399 $startsh
20400 #
20401 # This file was produced by running the Configure script. It holds all the
20402 # definitions figured out by Configure. Should you modify one of these values,
20403 # do not forget to propagate your changes by running "Configure -der". You may
20404 # instead choose to run each of the .SH files by yourself, or "Configure -S".
20405 #
20406
20407 # Package name      : $package
20408 # Source directory  : $src
20409 # Configuration time: $cf_time
20410 # Configured by     : $cf_by
20411 # Target system     : $myuname
20412
20413 Author='$Author'
20414 Date='$Date'
20415 Header='$Header'
20416 Id='$Id'
20417 Locker='$Locker'
20418 Log='$Log'
20419 Mcc='$Mcc'
20420 RCSfile='$RCSfile'
20421 Revision='$Revision'
20422 Source='$Source'
20423 State='$State'
20424 _a='$_a'
20425 _exe='$_exe'
20426 _o='$_o'
20427 afs='$afs'
20428 afsroot='$afsroot'
20429 alignbytes='$alignbytes'
20430 ansi2knr='$ansi2knr'
20431 aphostname='$aphostname'
20432 api_revision='$api_revision'
20433 api_subversion='$api_subversion'
20434 api_version='$api_version'
20435 api_versionstring='$api_versionstring'
20436 ar='$ar'
20437 archlib='$archlib'
20438 archlibexp='$archlibexp'
20439 archname64='$archname64'
20440 archname='$archname'
20441 archobjs='$archobjs'
20442 asctime_r_proto='$asctime_r_proto'
20443 awk='$awk'
20444 baserev='$baserev'
20445 bash='$bash'
20446 bin='$bin'
20447 binexp='$binexp'
20448 bison='$bison'
20449 byacc='$byacc'
20450 byteorder='$byteorder'
20451 c='$c'
20452 castflags='$castflags'
20453 cat='$cat'
20454 cc='$cc'
20455 cccdlflags='$cccdlflags'
20456 ccdlflags='$ccdlflags'
20457 ccflags='$ccflags'
20458 ccflags_uselargefiles='$ccflags_uselargefiles'
20459 ccname='$ccname'
20460 ccsymbols='$ccsymbols'
20461 ccversion='$ccversion'
20462 cf_by='$cf_by'
20463 cf_email='$cf_email'
20464 cf_time='$cf_time'
20465 charsize='$charsize'
20466 chgrp='$chgrp'
20467 chmod='$chmod'
20468 chown='$chown'
20469 clocktype='$clocktype'
20470 comm='$comm'
20471 compress='$compress'
20472 contains='$contains'
20473 cp='$cp'
20474 cpio='$cpio'
20475 cpp='$cpp'
20476 cpp_stuff='$cpp_stuff'
20477 cppccsymbols='$cppccsymbols'
20478 cppflags='$cppflags'
20479 cpplast='$cpplast'
20480 cppminus='$cppminus'
20481 cpprun='$cpprun'
20482 cppstdin='$cppstdin'
20483 cppsymbols='$cppsymbols'
20484 crypt_r_proto='$crypt_r_proto'
20485 cryptlib='$cryptlib'
20486 csh='$csh'
20487 ctermid_r_proto='$ctermid_r_proto'
20488 ctime_r_proto='$ctime_r_proto'
20489 d_Gconvert='$d_Gconvert'
20490 d_PRIEUldbl='$d_PRIEUldbl'
20491 d_PRIFUldbl='$d_PRIFUldbl'
20492 d_PRIGUldbl='$d_PRIGUldbl'
20493 d_PRIXU64='$d_PRIXU64'
20494 d_PRId64='$d_PRId64'
20495 d_PRIeldbl='$d_PRIeldbl'
20496 d_PRIfldbl='$d_PRIfldbl'
20497 d_PRIgldbl='$d_PRIgldbl'
20498 d_PRIi64='$d_PRIi64'
20499 d_PRIo64='$d_PRIo64'
20500 d_PRIu64='$d_PRIu64'
20501 d_PRIx64='$d_PRIx64'
20502 d_SCNfldbl='$d_SCNfldbl'
20503 d__fwalk='$d__fwalk'
20504 d_access='$d_access'
20505 d_accessx='$d_accessx'
20506 d_aintl='$d_aintl'
20507 d_alarm='$d_alarm'
20508 d_archlib='$d_archlib'
20509 d_asctime_r='$d_asctime_r'
20510 d_atolf='$d_atolf'
20511 d_atoll='$d_atoll'
20512 d_attribut='$d_attribut'
20513 d_bcmp='$d_bcmp'
20514 d_bcopy='$d_bcopy'
20515 d_bsd='$d_bsd'
20516 d_bsdgetpgrp='$d_bsdgetpgrp'
20517 d_bsdsetpgrp='$d_bsdsetpgrp'
20518 d_bzero='$d_bzero'
20519 d_casti32='$d_casti32'
20520 d_castneg='$d_castneg'
20521 d_charvspr='$d_charvspr'
20522 d_chown='$d_chown'
20523 d_chroot='$d_chroot'
20524 d_chsize='$d_chsize'
20525 d_class='$d_class'
20526 d_closedir='$d_closedir'
20527 d_cmsghdr_s='$d_cmsghdr_s'
20528 d_const='$d_const'
20529 d_copysignl='$d_copysignl'
20530 d_crypt='$d_crypt'
20531 d_crypt_r='$d_crypt_r'
20532 d_csh='$d_csh'
20533 d_ctermid_r='$d_ctermid_r'
20534 d_ctime_r='$d_ctime_r'
20535 d_cuserid='$d_cuserid'
20536 d_dbl_dig='$d_dbl_dig'
20537 d_dbminitproto='$d_dbminitproto'
20538 d_difftime='$d_difftime'
20539 d_dirfd='$d_dirfd'
20540 d_dirnamlen='$d_dirnamlen'
20541 d_dlerror='$d_dlerror'
20542 d_dlopen='$d_dlopen'
20543 d_dlsymun='$d_dlsymun'
20544 d_dosuid='$d_dosuid'
20545 d_drand48_r='$d_drand48_r'
20546 d_drand48proto='$d_drand48proto'
20547 d_dup2='$d_dup2'
20548 d_eaccess='$d_eaccess'
20549 d_endgrent='$d_endgrent'
20550 d_endgrent_r='$d_endgrent_r'
20551 d_endhent='$d_endhent'
20552 d_endhostent_r='$d_endhostent_r'
20553 d_endnent='$d_endnent'
20554 d_endnetent_r='$d_endnetent_r'
20555 d_endpent='$d_endpent'
20556 d_endprotoent_r='$d_endprotoent_r'
20557 d_endpwent='$d_endpwent'
20558 d_endpwent_r='$d_endpwent_r'
20559 d_endsent='$d_endsent'
20560 d_endservent_r='$d_endservent_r'
20561 d_eofnblk='$d_eofnblk'
20562 d_eunice='$d_eunice'
20563 d_faststdio='$d_faststdio'
20564 d_fchdir='$d_fchdir'
20565 d_fchmod='$d_fchmod'
20566 d_fchown='$d_fchown'
20567 d_fcntl='$d_fcntl'
20568 d_fcntl_can_lock='$d_fcntl_can_lock'
20569 d_fd_macros='$d_fd_macros'
20570 d_fd_set='$d_fd_set'
20571 d_fds_bits='$d_fds_bits'
20572 d_fgetpos='$d_fgetpos'
20573 d_finite='$d_finite'
20574 d_finitel='$d_finitel'
20575 d_flexfnam='$d_flexfnam'
20576 d_flock='$d_flock'
20577 d_flockproto='$d_flockproto'
20578 d_fork='$d_fork'
20579 d_fp_class='$d_fp_class'
20580 d_fpathconf='$d_fpathconf'
20581 d_fpclass='$d_fpclass'
20582 d_fpclassify='$d_fpclassify'
20583 d_fpclassl='$d_fpclassl'
20584 d_fpos64_t='$d_fpos64_t'
20585 d_frexpl='$d_frexpl'
20586 d_fs_data_s='$d_fs_data_s'
20587 d_fseeko='$d_fseeko'
20588 d_fsetpos='$d_fsetpos'
20589 d_fstatfs='$d_fstatfs'
20590 d_fstatvfs='$d_fstatvfs'
20591 d_fsync='$d_fsync'
20592 d_ftello='$d_ftello'
20593 d_ftime='$d_ftime'
20594 d_getcwd='$d_getcwd'
20595 d_getespwnam='$d_getespwnam'
20596 d_getfsstat='$d_getfsstat'
20597 d_getgrent='$d_getgrent'
20598 d_getgrent_r='$d_getgrent_r'
20599 d_getgrgid_r='$d_getgrgid_r'
20600 d_getgrnam_r='$d_getgrnam_r'
20601 d_getgrps='$d_getgrps'
20602 d_gethbyaddr='$d_gethbyaddr'
20603 d_gethbyname='$d_gethbyname'
20604 d_gethent='$d_gethent'
20605 d_gethname='$d_gethname'
20606 d_gethostbyaddr_r='$d_gethostbyaddr_r'
20607 d_gethostbyname_r='$d_gethostbyname_r'
20608 d_gethostent_r='$d_gethostent_r'
20609 d_gethostprotos='$d_gethostprotos'
20610 d_getitimer='$d_getitimer'
20611 d_getlogin='$d_getlogin'
20612 d_getlogin_r='$d_getlogin_r'
20613 d_getmnt='$d_getmnt'
20614 d_getmntent='$d_getmntent'
20615 d_getnbyaddr='$d_getnbyaddr'
20616 d_getnbyname='$d_getnbyname'
20617 d_getnent='$d_getnent'
20618 d_getnetbyaddr_r='$d_getnetbyaddr_r'
20619 d_getnetbyname_r='$d_getnetbyname_r'
20620 d_getnetent_r='$d_getnetent_r'
20621 d_getnetprotos='$d_getnetprotos'
20622 d_getpagsz='$d_getpagsz'
20623 d_getpbyname='$d_getpbyname'
20624 d_getpbynumber='$d_getpbynumber'
20625 d_getpent='$d_getpent'
20626 d_getpgid='$d_getpgid'
20627 d_getpgrp2='$d_getpgrp2'
20628 d_getpgrp='$d_getpgrp'
20629 d_getppid='$d_getppid'
20630 d_getprior='$d_getprior'
20631 d_getprotobyname_r='$d_getprotobyname_r'
20632 d_getprotobynumber_r='$d_getprotobynumber_r'
20633 d_getprotoent_r='$d_getprotoent_r'
20634 d_getprotoprotos='$d_getprotoprotos'
20635 d_getprpwnam='$d_getprpwnam'
20636 d_getpwent='$d_getpwent'
20637 d_getpwent_r='$d_getpwent_r'
20638 d_getpwnam_r='$d_getpwnam_r'
20639 d_getpwuid_r='$d_getpwuid_r'
20640 d_getsbyname='$d_getsbyname'
20641 d_getsbyport='$d_getsbyport'
20642 d_getsent='$d_getsent'
20643 d_getservbyname_r='$d_getservbyname_r'
20644 d_getservbyport_r='$d_getservbyport_r'
20645 d_getservent_r='$d_getservent_r'
20646 d_getservprotos='$d_getservprotos'
20647 d_getspnam='$d_getspnam'
20648 d_getspnam_r='$d_getspnam_r'
20649 d_gettimeod='$d_gettimeod'
20650 d_gmtime_r='$d_gmtime_r'
20651 d_gnulibc='$d_gnulibc'
20652 d_grpasswd='$d_grpasswd'
20653 d_hasmntopt='$d_hasmntopt'
20654 d_htonl='$d_htonl'
20655 d_ilogbl='$d_ilogbl'
20656 d_index='$d_index'
20657 d_inetaton='$d_inetaton'
20658 d_int64_t='$d_int64_t'
20659 d_isascii='$d_isascii'
20660 d_isfinite='$d_isfinite'
20661 d_isinf='$d_isinf'
20662 d_isnan='$d_isnan'
20663 d_isnanl='$d_isnanl'
20664 d_killpg='$d_killpg'
20665 d_lchown='$d_lchown'
20666 d_ldbl_dig='$d_ldbl_dig'
20667 d_link='$d_link'
20668 d_localtime_r='$d_localtime_r'
20669 d_locconv='$d_locconv'
20670 d_lockf='$d_lockf'
20671 d_longdbl='$d_longdbl'
20672 d_longlong='$d_longlong'
20673 d_lseekproto='$d_lseekproto'
20674 d_lstat='$d_lstat'
20675 d_madvise='$d_madvise'
20676 d_mblen='$d_mblen'
20677 d_mbstowcs='$d_mbstowcs'
20678 d_mbtowc='$d_mbtowc'
20679 d_memchr='$d_memchr'
20680 d_memcmp='$d_memcmp'
20681 d_memcpy='$d_memcpy'
20682 d_memmove='$d_memmove'
20683 d_memset='$d_memset'
20684 d_mkdir='$d_mkdir'
20685 d_mkdtemp='$d_mkdtemp'
20686 d_mkfifo='$d_mkfifo'
20687 d_mkstemp='$d_mkstemp'
20688 d_mkstemps='$d_mkstemps'
20689 d_mktime='$d_mktime'
20690 d_mmap='$d_mmap'
20691 d_modfl='$d_modfl'
20692 d_modfl_pow32_bug='$d_modfl_pow32_bug'
20693 d_modflproto='$d_modflproto'
20694 d_mprotect='$d_mprotect'
20695 d_msg='$d_msg'
20696 d_msg_ctrunc='$d_msg_ctrunc'
20697 d_msg_dontroute='$d_msg_dontroute'
20698 d_msg_oob='$d_msg_oob'
20699 d_msg_peek='$d_msg_peek'
20700 d_msg_proxy='$d_msg_proxy'
20701 d_msgctl='$d_msgctl'
20702 d_msgget='$d_msgget'
20703 d_msghdr_s='$d_msghdr_s'
20704 d_msgrcv='$d_msgrcv'
20705 d_msgsnd='$d_msgsnd'
20706 d_msync='$d_msync'
20707 d_munmap='$d_munmap'
20708 d_mymalloc='$d_mymalloc'
20709 d_nanosleep='$d_nanosleep'
20710 d_nice='$d_nice'
20711 d_nl_langinfo='$d_nl_langinfo'
20712 d_nv_preserves_uv='$d_nv_preserves_uv'
20713 d_off64_t='$d_off64_t'
20714 d_old_pthread_create_joinable='$d_old_pthread_create_joinable'
20715 d_oldpthreads='$d_oldpthreads'
20716 d_oldsock='$d_oldsock'
20717 d_open3='$d_open3'
20718 d_pathconf='$d_pathconf'
20719 d_pause='$d_pause'
20720 d_perl_otherlibdirs='$d_perl_otherlibdirs'
20721 d_phostname='$d_phostname'
20722 d_pipe='$d_pipe'
20723 d_poll='$d_poll'
20724 d_portable='$d_portable'
20725 d_procselfexe='$d_procselfexe'
20726 d_pthread_atfork='$d_pthread_atfork'
20727 d_pthread_yield='$d_pthread_yield'
20728 d_pwage='$d_pwage'
20729 d_pwchange='$d_pwchange'
20730 d_pwclass='$d_pwclass'
20731 d_pwcomment='$d_pwcomment'
20732 d_pwexpire='$d_pwexpire'
20733 d_pwgecos='$d_pwgecos'
20734 d_pwpasswd='$d_pwpasswd'
20735 d_pwquota='$d_pwquota'
20736 d_qgcvt='$d_qgcvt'
20737 d_quad='$d_quad'
20738 d_random_r='$d_random_r'
20739 d_readdir64_r='$d_readdir64_r'
20740 d_readdir='$d_readdir'
20741 d_readdir_r='$d_readdir_r'
20742 d_readlink='$d_readlink'
20743 d_readv='$d_readv'
20744 d_recvmsg='$d_recvmsg'
20745 d_rename='$d_rename'
20746 d_rewinddir='$d_rewinddir'
20747 d_rmdir='$d_rmdir'
20748 d_safebcpy='$d_safebcpy'
20749 d_safemcpy='$d_safemcpy'
20750 d_sanemcmp='$d_sanemcmp'
20751 d_sbrkproto='$d_sbrkproto'
20752 d_scalbnl='$d_scalbnl'
20753 d_sched_yield='$d_sched_yield'
20754 d_scm_rights='$d_scm_rights'
20755 d_seekdir='$d_seekdir'
20756 d_select='$d_select'
20757 d_sem='$d_sem'
20758 d_semctl='$d_semctl'
20759 d_semctl_semid_ds='$d_semctl_semid_ds'
20760 d_semctl_semun='$d_semctl_semun'
20761 d_semget='$d_semget'
20762 d_semop='$d_semop'
20763 d_sendmsg='$d_sendmsg'
20764 d_setegid='$d_setegid'
20765 d_seteuid='$d_seteuid'
20766 d_setgrent='$d_setgrent'
20767 d_setgrent_r='$d_setgrent_r'
20768 d_setgrps='$d_setgrps'
20769 d_sethent='$d_sethent'
20770 d_sethostent_r='$d_sethostent_r'
20771 d_setitimer='$d_setitimer'
20772 d_setlinebuf='$d_setlinebuf'
20773 d_setlocale='$d_setlocale'
20774 d_setlocale_r='$d_setlocale_r'
20775 d_setnent='$d_setnent'
20776 d_setnetent_r='$d_setnetent_r'
20777 d_setpent='$d_setpent'
20778 d_setpgid='$d_setpgid'
20779 d_setpgrp2='$d_setpgrp2'
20780 d_setpgrp='$d_setpgrp'
20781 d_setprior='$d_setprior'
20782 d_setproctitle='$d_setproctitle'
20783 d_setprotoent_r='$d_setprotoent_r'
20784 d_setpwent='$d_setpwent'
20785 d_setpwent_r='$d_setpwent_r'
20786 d_setregid='$d_setregid'
20787 d_setresgid='$d_setresgid'
20788 d_setresuid='$d_setresuid'
20789 d_setreuid='$d_setreuid'
20790 d_setrgid='$d_setrgid'
20791 d_setruid='$d_setruid'
20792 d_setsent='$d_setsent'
20793 d_setservent_r='$d_setservent_r'
20794 d_setsid='$d_setsid'
20795 d_setvbuf='$d_setvbuf'
20796 d_sfio='$d_sfio'
20797 d_shm='$d_shm'
20798 d_shmat='$d_shmat'
20799 d_shmatprototype='$d_shmatprototype'
20800 d_shmctl='$d_shmctl'
20801 d_shmdt='$d_shmdt'
20802 d_shmget='$d_shmget'
20803 d_sigaction='$d_sigaction'
20804 d_sigprocmask='$d_sigprocmask'
20805 d_sigsetjmp='$d_sigsetjmp'
20806 d_sockatmark='$d_sockatmark'
20807 d_sockatmarkproto='$d_sockatmarkproto'
20808 d_socket='$d_socket'
20809 d_socklen_t='$d_socklen_t'
20810 d_sockpair='$d_sockpair'
20811 d_socks5_init='$d_socks5_init'
20812 d_sqrtl='$d_sqrtl'
20813 d_srand48_r='$d_srand48_r'
20814 d_srandom_r='$d_srandom_r'
20815 d_sresgproto='$d_sresgproto'
20816 d_sresuproto='$d_sresuproto'
20817 d_statblks='$d_statblks'
20818 d_statfs_f_flags='$d_statfs_f_flags'
20819 d_statfs_s='$d_statfs_s'
20820 d_statvfs='$d_statvfs'
20821 d_stdio_cnt_lval='$d_stdio_cnt_lval'
20822 d_stdio_ptr_lval='$d_stdio_ptr_lval'
20823 d_stdio_ptr_lval_nochange_cnt='$d_stdio_ptr_lval_nochange_cnt'
20824 d_stdio_ptr_lval_sets_cnt='$d_stdio_ptr_lval_sets_cnt'
20825 d_stdio_stream_array='$d_stdio_stream_array'
20826 d_stdiobase='$d_stdiobase'
20827 d_stdstdio='$d_stdstdio'
20828 d_strchr='$d_strchr'
20829 d_strcoll='$d_strcoll'
20830 d_strctcpy='$d_strctcpy'
20831 d_strerrm='$d_strerrm'
20832 d_strerror='$d_strerror'
20833 d_strerror_r='$d_strerror_r'
20834 d_strftime='$d_strftime'
20835 d_strtod='$d_strtod'
20836 d_strtol='$d_strtol'
20837 d_strtold='$d_strtold'
20838 d_strtoll='$d_strtoll'
20839 d_strtoq='$d_strtoq'
20840 d_strtoul='$d_strtoul'
20841 d_strtoull='$d_strtoull'
20842 d_strtouq='$d_strtouq'
20843 d_strxfrm='$d_strxfrm'
20844 d_suidsafe='$d_suidsafe'
20845 d_symlink='$d_symlink'
20846 d_syscall='$d_syscall'
20847 d_syscallproto='$d_syscallproto'
20848 d_sysconf='$d_sysconf'
20849 d_sysernlst='$d_sysernlst'
20850 d_syserrlst='$d_syserrlst'
20851 d_system='$d_system'
20852 d_tcgetpgrp='$d_tcgetpgrp'
20853 d_tcsetpgrp='$d_tcsetpgrp'
20854 d_telldir='$d_telldir'
20855 d_telldirproto='$d_telldirproto'
20856 d_time='$d_time'
20857 d_times='$d_times'
20858 d_tm_tm_gmtoff='$d_tm_tm_gmtoff'
20859 d_tm_tm_zone='$d_tm_tm_zone'
20860 d_tmpnam_r='$d_tmpnam_r'
20861 d_truncate='$d_truncate'
20862 d_ttyname_r='$d_ttyname_r'
20863 d_tzname='$d_tzname'
20864 d_u32align='$d_u32align'
20865 d_ualarm='$d_ualarm'
20866 d_umask='$d_umask'
20867 d_uname='$d_uname'
20868 d_union_semun='$d_union_semun'
20869 d_unordered='$d_unordered'
20870 d_usleep='$d_usleep'
20871 d_usleepproto='$d_usleepproto'
20872 d_ustat='$d_ustat'
20873 d_vendorarch='$d_vendorarch'
20874 d_vendorbin='$d_vendorbin'
20875 d_vendorlib='$d_vendorlib'
20876 d_vendorscript='$d_vendorscript'
20877 d_vfork='$d_vfork'
20878 d_void_closedir='$d_void_closedir'
20879 d_voidsig='$d_voidsig'
20880 d_voidtty='$d_voidtty'
20881 d_volatile='$d_volatile'
20882 d_vprintf='$d_vprintf'
20883 d_wait4='$d_wait4'
20884 d_waitpid='$d_waitpid'
20885 d_wcstombs='$d_wcstombs'
20886 d_wctomb='$d_wctomb'
20887 d_writev='$d_writev'
20888 d_xenix='$d_xenix'
20889 date='$date'
20890 db_hashtype='$db_hashtype'
20891 db_prefixtype='$db_prefixtype'
20892 db_version_major='$db_version_major'
20893 db_version_minor='$db_version_minor'
20894 db_version_patch='$db_version_patch'
20895 defvoidused='$defvoidused'
20896 direntrytype='$direntrytype'
20897 dlext='$dlext'
20898 dlsrc='$dlsrc'
20899 doublesize='$doublesize'
20900 drand01='$drand01'
20901 drand48_r_proto='$drand48_r_proto'
20902 dynamic_ext='$dynamic_ext'
20903 eagain='$eagain'
20904 ebcdic='$ebcdic'
20905 echo='$echo'
20906 egrep='$egrep'
20907 emacs='$emacs'
20908 endgrent_r_proto='$endgrent_r_proto'
20909 endhostent_r_proto='$endhostent_r_proto'
20910 endnetent_r_proto='$endnetent_r_proto'
20911 endprotoent_r_proto='$endprotoent_r_proto'
20912 endpwent_r_proto='$endpwent_r_proto'
20913 endservent_r_proto='$endservent_r_proto'
20914 eunicefix='$eunicefix'
20915 exe_ext='$exe_ext'
20916 expr='$expr'
20917 extensions='$extensions'
20918 extras='$extras'
20919 fflushNULL='$fflushNULL'
20920 fflushall='$fflushall'
20921 find='$find'
20922 firstmakefile='$firstmakefile'
20923 flex='$flex'
20924 fpossize='$fpossize'
20925 fpostype='$fpostype'
20926 freetype='$freetype'
20927 from='$from'
20928 full_ar='$full_ar'
20929 full_csh='$full_csh'
20930 full_sed='$full_sed'
20931 gccansipedantic='$gccansipedantic'
20932 gccosandvers='$gccosandvers'
20933 gccversion='$gccversion'
20934 getgrent_r_proto='$getgrent_r_proto'
20935 getgrgid_r_proto='$getgrgid_r_proto'
20936 getgrnam_r_proto='$getgrnam_r_proto'
20937 gethostbyaddr_r_proto='$gethostbyaddr_r_proto'
20938 gethostbyname_r_proto='$gethostbyname_r_proto'
20939 gethostent_r_proto='$gethostent_r_proto'
20940 getlogin_r_proto='$getlogin_r_proto'
20941 getnetbyaddr_r_proto='$getnetbyaddr_r_proto'
20942 getnetbyname_r_proto='$getnetbyname_r_proto'
20943 getnetent_r_proto='$getnetent_r_proto'
20944 getprotobyname_r_proto='$getprotobyname_r_proto'
20945 getprotobynumber_r_proto='$getprotobynumber_r_proto'
20946 getprotoent_r_proto='$getprotoent_r_proto'
20947 getpwent_r_proto='$getpwent_r_proto'
20948 getpwnam_r_proto='$getpwnam_r_proto'
20949 getpwuid_r_proto='$getpwuid_r_proto'
20950 getservbyname_r_proto='$getservbyname_r_proto'
20951 getservbyport_r_proto='$getservbyport_r_proto'
20952 getservent_r_proto='$getservent_r_proto'
20953 getspnam_r_proto='$getspnam_r_proto'
20954 gidformat='$gidformat'
20955 gidsign='$gidsign'
20956 gidsize='$gidsize'
20957 gidtype='$gidtype'
20958 glibpth='$glibpth'
20959 gmake='$gmake'
20960 gmtime_r_proto='$gmtime_r_proto'
20961 gnulibc_version='$gnulibc_version'
20962 grep='$grep'
20963 groupcat='$groupcat'
20964 groupstype='$groupstype'
20965 gzip='$gzip'
20966 h_fcntl='$h_fcntl'
20967 h_sysfile='$h_sysfile'
20968 hint='$hint'
20969 hostcat='$hostcat'
20970 html1dir='$html1dir'
20971 html1direxp='$html1direxp'
20972 html3dir='$html3dir'
20973 html3direxp='$html3direxp'
20974 i16size='$i16size'
20975 i16type='$i16type'
20976 i32size='$i32size'
20977 i32type='$i32type'
20978 i64size='$i64size'
20979 i64type='$i64type'
20980 i8size='$i8size'
20981 i8type='$i8type'
20982 i_arpainet='$i_arpainet'
20983 i_bsdioctl='$i_bsdioctl'
20984 i_crypt='$i_crypt'
20985 i_db='$i_db'
20986 i_dbm='$i_dbm'
20987 i_dirent='$i_dirent'
20988 i_dld='$i_dld'
20989 i_dlfcn='$i_dlfcn'
20990 i_fcntl='$i_fcntl'
20991 i_float='$i_float'
20992 i_fp='$i_fp'
20993 i_fp_class='$i_fp_class'
20994 i_gdbm='$i_gdbm'
20995 i_grp='$i_grp'
20996 i_ieeefp='$i_ieeefp'
20997 i_inttypes='$i_inttypes'
20998 i_langinfo='$i_langinfo'
20999 i_libutil='$i_libutil'
21000 i_limits='$i_limits'
21001 i_locale='$i_locale'
21002 i_machcthr='$i_machcthr'
21003 i_malloc='$i_malloc'
21004 i_math='$i_math'
21005 i_memory='$i_memory'
21006 i_mntent='$i_mntent'
21007 i_ndbm='$i_ndbm'
21008 i_netdb='$i_netdb'
21009 i_neterrno='$i_neterrno'
21010 i_netinettcp='$i_netinettcp'
21011 i_niin='$i_niin'
21012 i_poll='$i_poll'
21013 i_prot='$i_prot'
21014 i_pthread='$i_pthread'
21015 i_pwd='$i_pwd'
21016 i_rpcsvcdbm='$i_rpcsvcdbm'
21017 i_sfio='$i_sfio'
21018 i_sgtty='$i_sgtty'
21019 i_shadow='$i_shadow'
21020 i_socks='$i_socks'
21021 i_stdarg='$i_stdarg'
21022 i_stddef='$i_stddef'
21023 i_stdlib='$i_stdlib'
21024 i_string='$i_string'
21025 i_sunmath='$i_sunmath'
21026 i_sysaccess='$i_sysaccess'
21027 i_sysdir='$i_sysdir'
21028 i_sysfile='$i_sysfile'
21029 i_sysfilio='$i_sysfilio'
21030 i_sysin='$i_sysin'
21031 i_sysioctl='$i_sysioctl'
21032 i_syslog='$i_syslog'
21033 i_sysmman='$i_sysmman'
21034 i_sysmode='$i_sysmode'
21035 i_sysmount='$i_sysmount'
21036 i_sysndir='$i_sysndir'
21037 i_sysparam='$i_sysparam'
21038 i_sysresrc='$i_sysresrc'
21039 i_syssecrt='$i_syssecrt'
21040 i_sysselct='$i_sysselct'
21041 i_syssockio='$i_syssockio'
21042 i_sysstat='$i_sysstat'
21043 i_sysstatfs='$i_sysstatfs'
21044 i_sysstatvfs='$i_sysstatvfs'
21045 i_systime='$i_systime'
21046 i_systimek='$i_systimek'
21047 i_systimes='$i_systimes'
21048 i_systypes='$i_systypes'
21049 i_sysuio='$i_sysuio'
21050 i_sysun='$i_sysun'
21051 i_sysutsname='$i_sysutsname'
21052 i_sysvfs='$i_sysvfs'
21053 i_syswait='$i_syswait'
21054 i_termio='$i_termio'
21055 i_termios='$i_termios'
21056 i_time='$i_time'
21057 i_unistd='$i_unistd'
21058 i_ustat='$i_ustat'
21059 i_utime='$i_utime'
21060 i_values='$i_values'
21061 i_varargs='$i_varargs'
21062 i_varhdr='$i_varhdr'
21063 i_vfork='$i_vfork'
21064 ignore_versioned_solibs='$ignore_versioned_solibs'
21065 inc_version_list='$inc_version_list'
21066 inc_version_list_init='$inc_version_list_init'
21067 incpath='$incpath'
21068 inews='$inews'
21069 installarchlib='$installarchlib'
21070 installbin='$installbin'
21071 installhtml1dir='$installhtml1dir'
21072 installhtml3dir='$installhtml3dir'
21073 installman1dir='$installman1dir'
21074 installman3dir='$installman3dir'
21075 installprefix='$installprefix'
21076 installprefixexp='$installprefixexp'
21077 installprivlib='$installprivlib'
21078 installscript='$installscript'
21079 installsitearch='$installsitearch'
21080 installsitebin='$installsitebin'
21081 installsitehtml1='$installsitehtml1'
21082 installsitehtml3='$installsitehtml3'
21083 installsitelib='$installsitelib'
21084 installsiteman1='$installsiteman1'
21085 installsiteman3='$installsiteman3'
21086 installsitescript='$installsitescript'
21087 installstyle='$installstyle'
21088 installusrbinperl='$installusrbinperl'
21089 installvendorarch='$installvendorarch'
21090 installvendorbin='$installvendorbin'
21091 installvendorhtml1='$installvendorhtml1'
21092 installvendorhtml3='$installvendorhtml3'
21093 installvendorlib='$installvendorlib'
21094 installvendorman1='$installvendorman1'
21095 installvendorman3='$installvendorman3'
21096 installvendorscript='$installvendorscript'
21097 intsize='$intsize'
21098 issymlink='$issymlink'
21099 ivdformat='$ivdformat'
21100 ivsize='$ivsize'
21101 ivtype='$ivtype'
21102 known_extensions='$known_extensions'
21103 ksh='$ksh'
21104 ld='$ld'
21105 lddlflags='$lddlflags'
21106 ldflags='$ldflags'
21107 ldflags_uselargefiles='$ldflags_uselargefiles'
21108 ldlibpthname='$ldlibpthname'
21109 less='$less'
21110 lib_ext='$lib_ext'
21111 libc='$libc'
21112 libperl='$libperl'
21113 libpth='$libpth'
21114 libs='$libs'
21115 libsdirs='$libsdirs'
21116 libsfiles='$libsfiles'
21117 libsfound='$libsfound'
21118 libspath='$libspath'
21119 libswanted='$libswanted'
21120 libswanted_uselargefiles='$libswanted_uselargefiles'
21121 line='$line'
21122 lint='$lint'
21123 lkflags='$lkflags'
21124 ln='$ln'
21125 lns='$lns'
21126 localtime_r_proto='$localtime_r_proto'
21127 locincpth='$locincpth'
21128 loclibpth='$loclibpth'
21129 longdblsize='$longdblsize'
21130 longlongsize='$longlongsize'
21131 longsize='$longsize'
21132 lp='$lp'
21133 lpr='$lpr'
21134 ls='$ls'
21135 lseeksize='$lseeksize'
21136 lseektype='$lseektype'
21137 mail='$mail'
21138 mailx='$mailx'
21139 make='$make'
21140 make_set_make='$make_set_make'
21141 mallocobj='$mallocobj'
21142 mallocsrc='$mallocsrc'
21143 malloctype='$malloctype'
21144 man1dir='$man1dir'
21145 man1direxp='$man1direxp'
21146 man1ext='$man1ext'
21147 man3dir='$man3dir'
21148 man3direxp='$man3direxp'
21149 man3ext='$man3ext'
21150 mips_type='$mips_type'
21151 mkdir='$mkdir'
21152 mmaptype='$mmaptype'
21153 modetype='$modetype'
21154 more='$more'
21155 multiarch='$multiarch'
21156 mv='$mv'
21157 myarchname='$myarchname'
21158 mydomain='$mydomain'
21159 myhostname='$myhostname'
21160 myuname='$myuname'
21161 n='$n'
21162 need_va_copy='$need_va_copy'
21163 netdb_hlen_type='$netdb_hlen_type'
21164 netdb_host_type='$netdb_host_type'
21165 netdb_name_type='$netdb_name_type'
21166 netdb_net_type='$netdb_net_type'
21167 nm='$nm'
21168 nm_opt='$nm_opt'
21169 nm_so_opt='$nm_so_opt'
21170 nonxs_ext='$nonxs_ext'
21171 nroff='$nroff'
21172 nvEUformat='$nvEUformat'
21173 nvFUformat='$nvFUformat'
21174 nvGUformat='$nvGUformat'
21175 nv_preserves_uv_bits='$nv_preserves_uv_bits'
21176 nveformat='$nveformat'
21177 nvfformat='$nvfformat'
21178 nvgformat='$nvgformat'
21179 nvsize='$nvsize'
21180 nvtype='$nvtype'
21181 o_nonblock='$o_nonblock'
21182 obj_ext='$obj_ext'
21183 old_pthread_create_joinable='$old_pthread_create_joinable'
21184 optimize='$optimize'
21185 orderlib='$orderlib'
21186 osname='$osname'
21187 osvers='$osvers'
21188 otherlibdirs='$otherlibdirs'
21189 package='$package'
21190 pager='$pager'
21191 passcat='$passcat'
21192 patchlevel='$patchlevel'
21193 path_sep='$path_sep'
21194 perl5='$perl5'
21195 perl='$perl'
21196 perl_patchlevel='$perl_patchlevel'
21197 perladmin='$perladmin'
21198 perllibs='$perllibs'
21199 perlpath='$perlpath'
21200 pg='$pg'
21201 phostname='$phostname'
21202 pidtype='$pidtype'
21203 plibpth='$plibpth'
21204 pm_apiversion='$pm_apiversion'
21205 pmake='$pmake'
21206 pr='$pr'
21207 prefix='$prefix'
21208 prefixexp='$prefixexp'
21209 privlib='$privlib'
21210 privlibexp='$privlibexp'
21211 procselfexe='$procselfexe'
21212 prototype='$prototype'
21213 ptrsize='$ptrsize'
21214 quadkind='$quadkind'
21215 quadtype='$quadtype'
21216 randbits='$randbits'
21217 randfunc='$randfunc'
21218 random_r_proto='$random_r_proto'
21219 randseedtype='$randseedtype'
21220 ranlib='$ranlib'
21221 rd_nodata='$rd_nodata'
21222 readdir64_r_proto='$readdir64_r_proto'
21223 readdir_r_proto='$readdir_r_proto'
21224 revision='$revision'
21225 rm='$rm'
21226 rmail='$rmail'
21227 run='$run'
21228 runnm='$runnm'
21229 sPRIEUldbl='$sPRIEUldbl'
21230 sPRIFUldbl='$sPRIFUldbl'
21231 sPRIGUldbl='$sPRIGUldbl'
21232 sPRIXU64='$sPRIXU64'
21233 sPRId64='$sPRId64'
21234 sPRIeldbl='$sPRIeldbl'
21235 sPRIfldbl='$sPRIfldbl'
21236 sPRIgldbl='$sPRIgldbl'
21237 sPRIi64='$sPRIi64'
21238 sPRIo64='$sPRIo64'
21239 sPRIu64='$sPRIu64'
21240 sPRIx64='$sPRIx64'
21241 sSCNfldbl='$sSCNfldbl'
21242 sched_yield='$sched_yield'
21243 scriptdir='$scriptdir'
21244 scriptdirexp='$scriptdirexp'
21245 sed='$sed'
21246 seedfunc='$seedfunc'
21247 selectminbits='$selectminbits'
21248 selecttype='$selecttype'
21249 sendmail='$sendmail'
21250 setgrent_r_proto='$setgrent_r_proto'
21251 sethostent_r_proto='$sethostent_r_proto'
21252 setlocale_r_proto='$setlocale_r_proto'
21253 setnetent_r_proto='$setnetent_r_proto'
21254 setprotoent_r_proto='$setprotoent_r_proto'
21255 setpwent_r_proto='$setpwent_r_proto'
21256 setservent_r_proto='$setservent_r_proto'
21257 sh='$sh'
21258 shar='$shar'
21259 sharpbang='$sharpbang'
21260 shmattype='$shmattype'
21261 shortsize='$shortsize'
21262 shrpenv='$shrpenv'
21263 shsharp='$shsharp'
21264 sig_count='$sig_count'
21265 sig_name='$sig_name'
21266 sig_name_init='$sig_name_init'
21267 sig_num='$sig_num'
21268 sig_num_init='$sig_num_init'
21269 sig_size='$sig_size'
21270 signal_t='$signal_t'
21271 sitearch='$sitearch'
21272 sitearchexp='$sitearchexp'
21273 sitebin='$sitebin'
21274 sitebinexp='$sitebinexp'
21275 sitehtml1='$sitehtml1'
21276 sitehtml1exp='$sitehtml1exp'
21277 sitehtml3='$sitehtml3'
21278 sitehtml3exp='$sitehtml3exp'
21279 sitelib='$sitelib'
21280 sitelib_stem='$sitelib_stem'
21281 sitelibexp='$sitelibexp'
21282 siteman1='$siteman1'
21283 siteman1exp='$siteman1exp'
21284 siteman3='$siteman3'
21285 siteman3exp='$siteman3exp'
21286 siteprefix='$siteprefix'
21287 siteprefixexp='$siteprefixexp'
21288 sitescript='$sitescript'
21289 sitescriptexp='$sitescriptexp'
21290 sizesize='$sizesize'
21291 sizetype='$sizetype'
21292 sleep='$sleep'
21293 smail='$smail'
21294 so='$so'
21295 sockethdr='$sockethdr'
21296 socketlib='$socketlib'
21297 socksizetype='$socksizetype'
21298 sort='$sort'
21299 spackage='$spackage'
21300 spitshell='$spitshell'
21301 srand48_r_proto='$srand48_r_proto'
21302 srandom_r_proto='$srandom_r_proto'
21303 src='$src'
21304 ssizetype='$ssizetype'
21305 startperl='$startperl'
21306 startsh='$startsh'
21307 static_ext='$static_ext'
21308 stdchar='$stdchar'
21309 stdio_base='$stdio_base'
21310 stdio_bufsiz='$stdio_bufsiz'
21311 stdio_cnt='$stdio_cnt'
21312 stdio_filbuf='$stdio_filbuf'
21313 stdio_ptr='$stdio_ptr'
21314 stdio_stream_array='$stdio_stream_array'
21315 strerror_r_proto='$strerror_r_proto'
21316 strings='$strings'
21317 submit='$submit'
21318 subversion='$subversion'
21319 sysman='$sysman'
21320 tail='$tail'
21321 tar='$tar'
21322 targetarch='$targetarch'
21323 tbl='$tbl'
21324 tee='$tee'
21325 test='$test'
21326 timeincl='$timeincl'
21327 timetype='$timetype'
21328 tmpnam_r_proto='$tmpnam_r_proto'
21329 to='$to'
21330 touch='$touch'
21331 tr='$tr'
21332 trnl='$trnl'
21333 troff='$troff'
21334 ttyname_r_proto='$ttyname_r_proto'
21335 u16size='$u16size'
21336 u16type='$u16type'
21337 u32size='$u32size'
21338 u32type='$u32type'
21339 u64size='$u64size'
21340 u64type='$u64type'
21341 u8size='$u8size'
21342 u8type='$u8type'
21343 uidformat='$uidformat'
21344 uidsign='$uidsign'
21345 uidsize='$uidsize'
21346 uidtype='$uidtype'
21347 uname='$uname'
21348 uniq='$uniq'
21349 uquadtype='$uquadtype'
21350 use5005threads='$use5005threads'
21351 use64bitall='$use64bitall'
21352 use64bitint='$use64bitint'
21353 usecrosscompile='$usecrosscompile'
21354 usedl='$usedl'
21355 usefaststdio='$usefaststdio'
21356 useithreads='$useithreads'
21357 uselargefiles='$uselargefiles'
21358 uselongdouble='$uselongdouble'
21359 usemorebits='$usemorebits'
21360 usemultiplicity='$usemultiplicity'
21361 usemymalloc='$usemymalloc'
21362 usenm='$usenm'
21363 useopcode='$useopcode'
21364 useperlio='$useperlio'
21365 useposix='$useposix'
21366 usereentrant='$usereentrant'
21367 usesfio='$usesfio'
21368 useshrplib='$useshrplib'
21369 usesocks='$usesocks'
21370 usethreads='$usethreads'
21371 usevendorprefix='$usevendorprefix'
21372 usevfork='$usevfork'
21373 usrinc='$usrinc'
21374 uuname='$uuname'
21375 uvXUformat='$uvXUformat'
21376 uvoformat='$uvoformat'
21377 uvsize='$uvsize'
21378 uvtype='$uvtype'
21379 uvuformat='$uvuformat'
21380 uvxformat='$uvxformat'
21381 vendorarch='$vendorarch'
21382 vendorarchexp='$vendorarchexp'
21383 vendorbin='$vendorbin'
21384 vendorbinexp='$vendorbinexp'
21385 vendorhtml1='$vendorhtml1'
21386 vendorhtml1exp='$vendorhtml1exp'
21387 vendorhtml3='$vendorhtml3'
21388 vendorhtml3exp='$vendorhtml3exp'
21389 vendorlib='$vendorlib'
21390 vendorlib_stem='$vendorlib_stem'
21391 vendorlibexp='$vendorlibexp'
21392 vendorman1='$vendorman1'
21393 vendorman1exp='$vendorman1exp'
21394 vendorman3='$vendorman3'
21395 vendorman3exp='$vendorman3exp'
21396 vendorprefix='$vendorprefix'
21397 vendorprefixexp='$vendorprefixexp'
21398 vendorscript='$vendorscript'
21399 vendorscriptexp='$vendorscriptexp'
21400 version='$version'
21401 version_patchlevel_string='$version_patchlevel_string'
21402 versiononly='$versiononly'
21403 vi='$vi'
21404 voidflags='$voidflags'
21405 xlibpth='$xlibpth'
21406 xs_apiversion='$xs_apiversion'
21407 yacc='$yacc'
21408 yaccflags='$yaccflags'
21409 zcat='$zcat'
21410 zip='$zip'
21411 EOT
21412
21413 : Add in command line options if available
21414 $test -f UU/cmdline.opt && $cat UU/cmdline.opt >> config.sh
21415
21416 : add special variables
21417 $test -f $src/patchlevel.h && \
21418 awk '/^#define[         ]+PERL_/ {printf "%s=%s\n",$2,$3}' $src/patchlevel.h >>config.sh
21419 echo "PERL_PATCHLEVEL=$perl_patchlevel" >>config.sh
21420 echo "PERL_CONFIG_SH=true" >>config.sh
21421
21422 : propagate old symbols
21423 if $test -f UU/config.sh; then
21424         <UU/config.sh $sort | $uniq >UU/oldconfig.sh
21425         sed -n 's/^\([a-zA-Z_0-9]*\)=.*/\1/p' config.sh config.sh UU/oldconfig.sh |\
21426         $sort | $uniq -u >UU/oldsyms
21427         set X `cat UU/oldsyms`
21428         shift
21429         case $# in
21430         0) ;;
21431         *)
21432                 cat <<EOM
21433 Hmm...You had some extra variables I don't know about...I'll try to keep 'em...
21434 EOM
21435                 echo "# Variables propagated from previous config.sh file." >>config.sh
21436                 for sym in `cat UU/oldsyms`; do
21437                         echo "    Propagating $hint variable "'$'"$sym..."
21438                         eval 'tmp="$'"${sym}"'"'
21439                         echo "$tmp" | \
21440                                 sed -e "s/'/'\"'\"'/g" -e "s/^/$sym='/" -e "s/$/'/" >>config.sh
21441                 done
21442                 ;;
21443         esac
21444 fi
21445
21446 : Finish up by extracting the .SH files
21447 case "$alldone" in
21448 exit)
21449         $rm -rf UU
21450         echo "Extraction done."
21451         exit 0
21452         ;;
21453 cont)
21454         ;;
21455 '')
21456         dflt=''
21457         nostick=true
21458         $cat <<EOM
21459
21460 If you'd like to make any changes to the config.sh file before I begin
21461 to configure things, do it as a shell escape now (e.g. !vi config.sh).
21462
21463 EOM
21464         rp="Press return or use a shell escape to edit config.sh:"
21465         . UU/myread
21466         nostick=''
21467         case "$ans" in
21468         '') ;;
21469         *) : in case they cannot read
21470                 sh 1>&4 -c "$ans";;
21471         esac
21472         ;;
21473 esac
21474
21475 : if this fails, just run all the .SH files by hand
21476 . ./config.sh
21477
21478 echo " "
21479 exec 1>&4
21480 pwd=`pwd`
21481 . ./UU/extract
21482 cd "$pwd"
21483
21484 if $contains '^depend:' [Mm]akefile >/dev/null 2>&1; then
21485         dflt=y
21486         case "$silent" in
21487         true) ;;
21488         *)
21489                 $cat <<EOM
21490
21491 Now you need to generate make dependencies by running "$make depend".
21492 You might prefer to run it in background: "$make depend > makedepend.out &"
21493 It can take a while, so you might not want to run it right now.
21494
21495 EOM
21496                 ;;
21497         esac
21498         rp="Run $make depend now?"
21499         . UU/myread
21500         case "$ans" in
21501         y*)
21502                 $make depend && echo "Now you must run '$make'."
21503                 ;;
21504         *)
21505                 echo "You must run '$make depend' then '$make'."
21506                 ;;
21507         esac
21508 elif test -f [Mm]akefile; then
21509         echo " "
21510         echo "Now you must run a $make."
21511 else
21512         echo "Configure done."
21513 fi
21514
21515 if $test -f Policy.sh; then
21516     $cat <<EOM
21517
21518 If you compile $package on a different machine or from a different object
21519 directory, copy the Policy.sh file from this object directory to the
21520 new one before you run Configure -- this will help you with most of
21521 the policy defaults.
21522
21523 EOM
21524 fi
21525 if $test -f config.msg; then
21526     echo "Hmm.  I also noted the following information while running:"
21527     echo " "
21528     $cat config.msg >&4
21529     $rm -f config.msg
21530 fi
21531 $rm -f kit*isdone ark*isdone
21532 $rm -rf UU
21533
21534 : End of Configure
21535