147a2ff230f4835015bb3b4d5d7eb162a929f7a8
[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 Dec 29 14:05:06 MET 2004 [metaconfig 3.0 PL70]
24 # (with additional metaconfig patches by perlbug@perl.org)
25
26 cat >c1$$ <<EOF
27 ARGGGHHHH!!!!!
28
29 SCO csh still thinks true is false.  Write to SCO today and tell them that next
30 year Configure ought to "rm /bin/csh" unless they fix their blasted shell. :-)
31
32 (Actually, Configure ought to just patch csh in place.  Hmm.  Hmmmmm.  All
33 we'd have to do is go in and swap the && and || tokens, wherever they are.)
34
35 [End of diatribe. We now return you to your regularly scheduled programming...]
36 EOF
37 cat >c2$$ <<EOF
38
39 OOPS!  You naughty creature!  You didn't run Configure with sh!
40 I will attempt to remedy the situation by running sh for you...
41 EOF
42
43 true || cat c1$$ c2$$
44 true || exec sh $0 $argv:q
45
46 (exit $?0) || cat c2$$
47 (exit $?0) || exec sh $0 $argv:q
48 rm -f c1$$ c2$$
49
50 if test -f /dev/cputype -a -f /dev/drivers -a -f /dev/osversion; then
51         cat >&4 <<EOF
52 ***
53 *** I'm sorry but this system looks like Plan 9 and Plan 9 doesn't do
54 *** Configure that well.  (Plan 9 is close to UNIX but not close enough.)
55 *** Please read the README.plan9 for further instructions.
56 *** Cannot continue, aborting.
57 ***
58 EOF
59         exit 1
60 fi
61
62 : compute my invocation name
63 me=$0
64 case "$0" in
65 */*)
66         me=`echo $0 | sed -e 's!.*/\(.*\)!\1!' 2>/dev/null`
67         test "$me" || me=$0
68         ;;
69 esac
70
71 : Proper separator for the PATH environment variable
72 p_=:
73 : On OS/2 this directory should exist if this is not floppy only system :-]
74 if test -d c:/. || ( uname -a | grep -i 'os\(/\|\)2' ) 2>&1 >/dev/null ; then
75     if test -n "$OS2_SHELL"; then
76                 p_=\;
77                 PATH=`cmd /c "echo %PATH%" | tr '\\\\' / `
78                 OS2_SHELL=`cmd /c "echo %OS2_SHELL%" | tr '\\\\' / | tr '[A-Z]' '[a-z]'`
79                 is_os2=yes
80         elif test -n "$DJGPP"; then
81                 case "X${MACHTYPE:-nonesuchmach}" in
82                 *cygwin) ;;
83                 *) p_=\; ;;
84                 esac
85         fi
86 fi
87
88 : Proper PATH setting
89 paths='/bin /usr/bin /usr/local/bin /usr/ucb /usr/local /usr/lbin'
90 paths="$paths /opt/bin /opt/local/bin /opt/local /opt/lbin"
91 paths="$paths /usr/5bin /etc /usr/gnu/bin /usr/new /usr/new/bin /usr/nbin"
92 paths="$paths /opt/gnu/bin /opt/new /opt/new/bin /opt/nbin"
93 paths="$paths /sys5.3/bin /sys5.3/usr/bin /bsd4.3/bin /bsd4.3/usr/ucb"
94 paths="$paths /bsd4.3/usr/bin /usr/bsd /bsd43/bin /opt/ansic/bin /usr/ccs/bin"
95 paths="$paths /etc /usr/lib /usr/ucblib /lib /usr/ccs/lib"
96 paths="$paths /sbin /usr/sbin /usr/libexec"
97 paths="$paths /system/gnu_library/bin"
98
99 for p in $paths
100 do
101         case "$p_$PATH$p_" in
102         *$p_$p$p_*) ;;
103         *) test -d $p && PATH=$PATH$p_$p ;;
104         esac
105 done
106
107 PATH=.$p_$PATH
108 export PATH
109
110 : shall we be using ksh?
111 inksh=''
112 needksh=''
113 avoidksh=''
114 newsh=/bin/ksh
115 changesh=''
116 if (PATH=.; alias -x) >/dev/null 2>&1; then
117                 inksh=true
118 fi
119 if test -f /hp-ux -a -f /bin/ksh; then
120         needksh='to avoid sh bug in "here document" expansion'
121 fi
122 if test -d /usr/lpp -a -f /usr/bin/bsh -a -f /usr/bin/uname; then
123         if test X`/usr/bin/uname -v` = X4; then
124                 avoidksh="to avoid AIX 4's /bin/sh"
125                 newsh=/usr/bin/bsh
126         fi
127 fi
128 if test -f /osf_boot -a -f /usr/sbin/setld; then
129         if test X`/usr/bin/uname -s` = XOSF1; then
130                 avoidksh="to avoid Digital UNIX' ksh"
131                 newsh=/bin/sh
132                 unset BIN_SH # if this is 'xpg4' sh will start up ksh
133         fi
134 fi
135 case "$inksh/$needksh" in
136 /[a-z]*)
137                 ENV=''
138                 changesh=true
139                 reason="$needksh"
140         ;;
141 esac
142 case "$inksh/$avoidksh" in
143 true/[a-z]*)
144         changesh=true
145         reason="$avoidksh"
146         ;;
147 esac
148 case "$inksh/$needksh-$avoidksh-" in
149 true/--)
150                 cat <<EOM
151 (I see you are using the Korn shell.  Some ksh's blow up on $me,
152 mainly on older exotic systems.  If yours does, try the Bourne shell instead.)
153 EOM
154         ;;
155 esac
156 case "$changesh" in
157 true)
158         export newsh
159         echo "(Feeding myself to $newsh $reason.)"
160         case "$0" in
161         Configure|*/Configure) exec $newsh $0 "$@";;
162         *) exec $newsh Configure "$@";;
163         esac
164         ;;
165 esac
166
167 : if needed set CDPATH to a harmless value that is not chatty
168 : avoid bash 2.02 problems with empty CDPATH.
169 case "$CDPATH" in
170 '')     ;;
171 *)      case "$SHELL" in
172         *bash*) CDPATH='.' ;;
173         *)              CDPATH='' ;;
174         esac
175         ;;
176 esac
177 : Configure runs within the UU subdirectory
178 test -d UU || mkdir UU
179 cd UU && rm -f ./*
180
181 ccname=''
182 ccversion=''
183 ccsymbols=''
184 cppccsymbols=''
185 cppsymbols=''
186 from=''
187 run=''
188 targetarch=''
189 to=''
190 usecrosscompile=''
191 mistrustnm=''
192 perllibs=''
193 dynamic_ext=''
194 extensions=''
195 known_extensions=''
196 nonxs_ext=''
197 static_ext=''
198 useopcode=''
199 useposix=''
200 extras=''
201 d_bsd=''
202 d_eunice=''
203 d_xenix=''
204 eunicefix=''
205 Mcc=''
206 ar=''
207 awk=''
208 bash=''
209 bison=''
210 byacc=''
211 cat=''
212 chgrp=''
213 chmod=''
214 chown=''
215 comm=''
216 compress=''
217 cp=''
218 cpio=''
219 cpp=''
220 csh=''
221 date=''
222 echo=''
223 egrep=''
224 emacs=''
225 expr=''
226 find=''
227 flex=''
228 gmake=''
229 grep=''
230 gzip=''
231 inews=''
232 ksh=''
233 less=''
234 line=''
235 lint=''
236 ln=''
237 lp=''
238 lpr=''
239 ls=''
240 mail=''
241 mailx=''
242 make=''
243 mkdir=''
244 more=''
245 mv=''
246 nm=''
247 nroff=''
248 perl=''
249 pg=''
250 pmake=''
251 pr=''
252 rm=''
253 rmail=''
254 sed=''
255 sendmail=''
256 shar=''
257 sleep=''
258 smail=''
259 sort=''
260 submit=''
261 tail=''
262 tar=''
263 tbl=''
264 tee=''
265 test=''
266 touch=''
267 tr=''
268 troff=''
269 uname=''
270 uniq=''
271 uuname=''
272 vi=''
273 zcat=''
274 zip=''
275 full_ar=''
276 full_sed=''
277 libswanted=''
278 hint=''
279 myuname=''
280 osname=''
281 osvers=''
282 Author=''
283 Date=''
284 Header=''
285 Id=''
286 Locker=''
287 Log=''
288 RCSfile=''
289 Revision=''
290 Source=''
291 State=''
292 _a=''
293 _exe=''
294 _o=''
295 archobjs=''
296 exe_ext=''
297 firstmakefile=''
298 lib_ext=''
299 obj_ext=''
300 path_sep=''
301 afs=''
302 afsroot=''
303 alignbytes=''
304 ansi2knr=''
305 archlib=''
306 archlibexp=''
307 d_archlib=''
308 installarchlib=''
309 archname=''
310 myarchname=''
311 d_atolf=''
312 d_atoll=''
313 baserev=''
314 bin=''
315 binexp=''
316 installbin=''
317 byteorder=''
318 cc=''
319 ccflags=''
320 cppflags=''
321 ldflags=''
322 lkflags=''
323 locincpth=''
324 optimize=''
325 cf_email=''
326 cf_by=''
327 cf_time=''
328 charsize=''
329 contains=''
330 cpp_stuff=''
331 cpplast=''
332 cppminus=''
333 cpprun=''
334 cppstdin=''
335 d__fwalk=''
336 d_access=''
337 d_accessx=''
338 d_aintl=''
339 d_alarm=''
340 asctime_r_proto=''
341 d_asctime_r=''
342 d_attribut=''
343 d_bcmp=''
344 d_bcopy=''
345 d_bzero=''
346 d_casti32=''
347 castflags=''
348 d_castneg=''
349 d_chown=''
350 d_chroot=''
351 d_chsize=''
352 d_class=''
353 d_closedir=''
354 d_void_closedir=''
355 d_cmsghdr_s=''
356 d_const=''
357 d_copysignl=''
358 cryptlib=''
359 d_crypt=''
360 crypt_r_proto=''
361 d_crypt_r=''
362 d_csh=''
363 full_csh=''
364 ctermid_r_proto=''
365 d_ctermid_r=''
366 ctime_r_proto=''
367 d_ctime_r=''
368 d_cuserid=''
369 d_dbl_dig=''
370 d_dbminitproto=''
371 d_difftime=''
372 d_dirfd=''
373 d_dlerror=''
374 d_dlopen=''
375 d_dlsymun=''
376 d_dosuid=''
377 d_suidsafe=''
378 d_drand48_r=''
379 drand48_r_proto=''
380 d_drand48proto=''
381 d_dup2=''
382 d_eaccess=''
383 d_endgrent=''
384 d_endgrent_r=''
385 endgrent_r_proto=''
386 d_endhent=''
387 d_endhostent_r=''
388 endhostent_r_proto=''
389 d_endnent=''
390 d_endnetent_r=''
391 endnetent_r_proto=''
392 d_endpent=''
393 d_endprotoent_r=''
394 endprotoent_r_proto=''
395 d_endpwent=''
396 d_endpwent_r=''
397 endpwent_r_proto=''
398 d_endsent=''
399 d_endservent_r=''
400 endservent_r_proto=''
401 d_faststdio=''
402 d_fchdir=''
403 d_fchmod=''
404 d_fchown=''
405 d_fcntl=''
406 d_fcntl_can_lock=''
407 d_fd_macros=''
408 d_fd_set=''
409 d_fds_bits=''
410 d_fgetpos=''
411 d_finite=''
412 d_finitel=''
413 d_flexfnam=''
414 d_flock=''
415 d_flockproto=''
416 d_fork=''
417 d_fp_class=''
418 d_fpclass=''
419 d_fpclassify=''
420 d_fpclassl=''
421 d_fpos64_t=''
422 d_frexpl=''
423 d_fs_data_s=''
424 d_fseeko=''
425 d_fsetpos=''
426 d_fstatfs=''
427 d_fsync=''
428 d_ftello=''
429 d_ftime=''
430 d_gettimeod=''
431 d_Gconvert=''
432 d_getcwd=''
433 d_getespwnam=''
434 d_getfsstat=''
435 d_getgrent=''
436 d_getgrent_r=''
437 getgrent_r_proto=''
438 d_getgrgid_r=''
439 getgrgid_r_proto=''
440 d_getgrnam_r=''
441 getgrnam_r_proto=''
442 d_getgrps=''
443 d_gethbyaddr=''
444 d_gethbyname=''
445 d_gethent=''
446 aphostname=''
447 d_gethname=''
448 d_phostname=''
449 d_uname=''
450 d_gethostbyaddr_r=''
451 gethostbyaddr_r_proto=''
452 d_gethostbyname_r=''
453 gethostbyname_r_proto=''
454 d_gethostent_r=''
455 gethostent_r_proto=''
456 d_gethostprotos=''
457 d_getitimer=''
458 d_getlogin=''
459 d_getlogin_r=''
460 getlogin_r_proto=''
461 d_getmnt=''
462 d_getmntent=''
463 d_getnbyaddr=''
464 d_getnbyname=''
465 d_getnent=''
466 d_getnetbyaddr_r=''
467 getnetbyaddr_r_proto=''
468 d_getnetbyname_r=''
469 getnetbyname_r_proto=''
470 d_getnetent_r=''
471 getnetent_r_proto=''
472 d_getnetprotos=''
473 d_getpagsz=''
474 d_getpent=''
475 d_getpgid=''
476 d_getpgrp2=''
477 d_bsdgetpgrp=''
478 d_getpgrp=''
479 d_getppid=''
480 d_getprior=''
481 d_getpbyname=''
482 d_getpbynumber=''
483 d_getprotobyname_r=''
484 getprotobyname_r_proto=''
485 d_getprotobynumber_r=''
486 getprotobynumber_r_proto=''
487 d_getprotoent_r=''
488 getprotoent_r_proto=''
489 d_getprotoprotos=''
490 d_getprpwnam=''
491 d_getpwent=''
492 d_getpwent_r=''
493 getpwent_r_proto=''
494 d_getpwnam_r=''
495 getpwnam_r_proto=''
496 d_getpwuid_r=''
497 getpwuid_r_proto=''
498 d_getsent=''
499 d_getservbyname_r=''
500 getservbyname_r_proto=''
501 d_getservbyport_r=''
502 getservbyport_r_proto=''
503 d_getservent_r=''
504 getservent_r_proto=''
505 d_getservprotos=''
506 d_getspnam=''
507 d_getspnam_r=''
508 getspnam_r_proto=''
509 d_getsbyname=''
510 d_getsbyport=''
511 d_gmtime_r=''
512 gmtime_r_proto=''
513 d_gnulibc=''
514 gnulibc_version=''
515 d_hasmntopt=''
516 d_htonl=''
517 d_ilogbl=''
518 d_inetaton=''
519 d_int64_t=''
520 d_isascii=''
521 d_isfinite=''
522 d_isinf=''
523 d_isnan=''
524 d_isnanl=''
525 d_killpg=''
526 d_lchown=''
527 d_ldbl_dig=''
528 d_link=''
529 d_localtime_r=''
530 localtime_r_proto=''
531 d_locconv=''
532 d_lockf=''
533 d_longdbl=''
534 longdblsize=''
535 d_longlong=''
536 longlongsize=''
537 d_lseekproto=''
538 d_lstat=''
539 d_madvise=''
540 d_mblen=''
541 d_mbstowcs=''
542 d_mbtowc=''
543 d_memchr=''
544 d_memcmp=''
545 d_memcpy=''
546 d_memmove=''
547 d_memset=''
548 d_mkdir=''
549 d_mkdtemp=''
550 d_mkfifo=''
551 d_mkstemp=''
552 d_mkstemps=''
553 d_mktime=''
554 d_mmap=''
555 mmaptype=''
556 d_modfl=''
557 d_modfl_pow32_bug=''
558 d_modflproto=''
559 d_mprotect=''
560 d_msg=''
561 d_msgctl=''
562 d_msgget=''
563 d_msghdr_s=''
564 d_msgrcv=''
565 d_msgsnd=''
566 d_msync=''
567 d_munmap=''
568 d_nice=''
569 d_nl_langinfo=''
570 d_off64_t=''
571 d_open3=''
572 d_fpathconf=''
573 d_pathconf=''
574 d_pause=''
575 d_pipe=''
576 d_poll=''
577 d_portable=''
578 d_procselfexe=''
579 procselfexe=''
580 d_old_pthread_create_joinable=''
581 old_pthread_create_joinable=''
582 d_pthread_atfork=''
583 d_pthread_attr_setscope=''
584 d_pthread_yield=''
585 d_sched_yield=''
586 sched_yield=''
587 d_qgcvt=''
588 d_random_r=''
589 random_r_proto=''
590 d_readdir64_r=''
591 readdir64_r_proto=''
592 d_readdir=''
593 d_rewinddir=''
594 d_seekdir=''
595 d_telldir=''
596 d_readdir_r=''
597 readdir_r_proto=''
598 d_readlink=''
599 d_readv=''
600 d_recvmsg=''
601 d_rename=''
602 d_rmdir=''
603 d_safebcpy=''
604 d_safemcpy=''
605 d_sanemcmp=''
606 d_sbrkproto=''
607 d_scalbnl=''
608 d_select=''
609 d_sem=''
610 d_semctl=''
611 d_semget=''
612 d_semop=''
613 d_sendmsg=''
614 d_setegid=''
615 d_seteuid=''
616 d_setgrent=''
617 d_setgrent_r=''
618 setgrent_r_proto=''
619 d_setgrps=''
620 d_sethent=''
621 d_sethostent_r=''
622 sethostent_r_proto=''
623 d_setitimer=''
624 d_setlinebuf=''
625 d_setlocale=''
626 d_setlocale_r=''
627 setlocale_r_proto=''
628 d_setnent=''
629 d_setnetent_r=''
630 setnetent_r_proto=''
631 d_setpent=''
632 d_setpgid=''
633 d_setpgrp2=''
634 d_bsdsetpgrp=''
635 d_setpgrp=''
636 d_setprior=''
637 d_setproctitle=''
638 d_setprotoent_r=''
639 setprotoent_r_proto=''
640 d_setpwent=''
641 d_setpwent_r=''
642 setpwent_r_proto=''
643 d_setregid=''
644 d_setresgid=''
645 d_setresuid=''
646 d_setreuid=''
647 d_setrgid=''
648 d_setruid=''
649 d_setsent=''
650 d_setservent_r=''
651 setservent_r_proto=''
652 d_setsid=''
653 d_setvbuf=''
654 d_sfio=''
655 usesfio=''
656 d_shm=''
657 d_shmat=''
658 d_shmatprototype=''
659 shmattype=''
660 d_shmctl=''
661 d_shmdt=''
662 d_shmget=''
663 d_sigaction=''
664 d_sigprocmask=''
665 d_sigsetjmp=''
666 d_sockatmark=''
667 d_sockatmarkproto=''
668 d_msg_ctrunc=''
669 d_msg_dontroute=''
670 d_msg_oob=''
671 d_msg_peek=''
672 d_msg_proxy=''
673 d_oldsock=''
674 d_scm_rights=''
675 d_socket=''
676 d_sockpair=''
677 sockethdr=''
678 socketlib=''
679 d_socklen_t=''
680 d_socks5_init=''
681 d_sqrtl=''
682 d_srand48_r=''
683 srand48_r_proto=''
684 d_srandom_r=''
685 srandom_r_proto=''
686 d_sresgproto=''
687 d_sresuproto=''
688 d_statblks=''
689 d_statfs_f_flags=''
690 d_statfs_s=''
691 d_fstatvfs=''
692 d_statvfs=''
693 d_stdio_cnt_lval=''
694 d_stdio_ptr_lval=''
695 d_stdio_ptr_lval_nochange_cnt=''
696 d_stdio_ptr_lval_sets_cnt=''
697 d_stdiobase=''
698 d_stdstdio=''
699 stdio_base=''
700 stdio_bufsiz=''
701 stdio_cnt=''
702 stdio_filbuf=''
703 stdio_ptr=''
704 d_index=''
705 d_strchr=''
706 d_strcoll=''
707 d_strctcpy=''
708 d_strerrm=''
709 d_strerror=''
710 d_sysernlst=''
711 d_syserrlst=''
712 d_strerror_r=''
713 strerror_r_proto=''
714 d_strftime=''
715 d_strlcat=''
716 d_strlcpy=''
717 d_strtod=''
718 d_strtol=''
719 d_strtold=''
720 d_strtoll=''
721 d_strtoq=''
722 d_strtoul=''
723 d_strtoull=''
724 d_strtouq=''
725 d_strxfrm=''
726 d_symlink=''
727 d_syscall=''
728 d_syscallproto=''
729 d_sysconf=''
730 d_system=''
731 d_tcgetpgrp=''
732 d_tcsetpgrp=''
733 d_telldirproto=''
734 d_time=''
735 timetype=''
736 clocktype=''
737 d_times=''
738 d_tmpnam_r=''
739 tmpnam_r_proto=''
740 d_truncate=''
741 d_ttyname_r=''
742 ttyname_r_proto=''
743 d_tzname=''
744 d_u32align=''
745 d_ualarm=''
746 d_umask=''
747 d_semctl_semid_ds=''
748 d_semctl_semun=''
749 d_union_semun=''
750 d_unordered=''
751 d_usleep=''
752 d_usleepproto=''
753 d_ustat=''
754 d_vfork=''
755 usevfork=''
756 d_voidsig=''
757 signal_t=''
758 d_volatile=''
759 d_charvspr=''
760 d_vprintf=''
761 d_wait4=''
762 d_waitpid=''
763 d_wcstombs=''
764 d_wctomb=''
765 d_writev=''
766 dlext=''
767 cccdlflags=''
768 ccdlflags=''
769 dlsrc=''
770 ld=''
771 lddlflags=''
772 usedl=''
773 doublesize=''
774 ebcdic=''
775 fflushNULL=''
776 fflushall=''
777 fpossize=''
778 fpostype=''
779 gccansipedantic=''
780 gccosandvers=''
781 gccversion=''
782 gidformat=''
783 gidsign=''
784 gidsize=''
785 gidtype=''
786 groupstype=''
787 h_fcntl=''
788 h_sysfile=''
789 html1dir=''
790 html1direxp=''
791 installhtml1dir=''
792 html3dir=''
793 html3direxp=''
794 installhtml3dir=''
795 i_arpainet=''
796 i_crypt=''
797 db_hashtype=''
798 db_prefixtype=''
799 db_version_major=''
800 db_version_minor=''
801 db_version_patch=''
802 i_db=''
803 i_dbm=''
804 i_rpcsvcdbm=''
805 d_dirnamlen=''
806 direntrytype=''
807 i_dirent=''
808 i_dld=''
809 i_dlfcn=''
810 i_fcntl=''
811 i_float=''
812 i_fp=''
813 i_fp_class=''
814 i_gdbm=''
815 d_grpasswd=''
816 i_grp=''
817 i_ieeefp=''
818 i_inttypes=''
819 i_langinfo=''
820 i_libutil=''
821 i_limits=''
822 i_locale=''
823 i_machcthr=''
824 i_malloc=''
825 i_math=''
826 i_memory=''
827 i_mntent=''
828 i_ndbm=''
829 i_netdb=''
830 i_neterrno=''
831 i_netinettcp=''
832 i_niin=''
833 i_sysin=''
834 i_poll=''
835 i_prot=''
836 i_pthread=''
837 d_pwage=''
838 d_pwchange=''
839 d_pwclass=''
840 d_pwcomment=''
841 d_pwexpire=''
842 d_pwgecos=''
843 d_pwpasswd=''
844 d_pwquota=''
845 i_pwd=''
846 i_sfio=''
847 i_shadow=''
848 i_socks=''
849 i_stddef=''
850 i_stdlib=''
851 i_string=''
852 strings=''
853 i_sunmath=''
854 i_sysaccess=''
855 i_sysdir=''
856 i_sysfile=''
857 d_voidtty=''
858 i_bsdioctl=''
859 i_sysfilio=''
860 i_sysioctl=''
861 i_syssockio=''
862 i_syslog=''
863 i_sysmman=''
864 i_sysmode=''
865 i_sysmount=''
866 i_sysndir=''
867 i_sysparam=''
868 i_sysresrc=''
869 i_syssecrt=''
870 i_sysselct=''
871 i_sysstat=''
872 i_sysstatfs=''
873 i_sysstatvfs=''
874 i_systimes=''
875 i_systypes=''
876 i_sysuio=''
877 i_sysun=''
878 i_sysutsname=''
879 i_sysvfs=''
880 i_syswait=''
881 i_sgtty=''
882 i_termio=''
883 i_termios=''
884 d_tm_tm_gmtoff=''
885 d_tm_tm_zone=''
886 i_systime=''
887 i_systimek=''
888 i_time=''
889 timeincl=''
890 i_unistd=''
891 i_ustat=''
892 i_utime=''
893 i_values=''
894 i_stdarg=''
895 i_varargs=''
896 i_varhdr=''
897 i_vfork=''
898 inc_version_list=''
899 inc_version_list_init=''
900 installprefix=''
901 installprefixexp=''
902 installstyle=''
903 installusrbinperl=''
904 intsize=''
905 longsize=''
906 shortsize=''
907 issymlink=''
908 libc=''
909 ldlibpthname=''
910 libperl=''
911 shrpenv=''
912 useshrplib=''
913 glibpth=''
914 libpth=''
915 loclibpth=''
916 plibpth=''
917 xlibpth=''
918 ignore_versioned_solibs=''
919 libs=''
920 libsdirs=''
921 libsfiles=''
922 libsfound=''
923 libspath=''
924 lns=''
925 d_PRIEUldbl=''
926 d_PRIFUldbl=''
927 d_PRIGUldbl=''
928 d_PRIeldbl=''
929 d_PRIfldbl=''
930 d_PRIgldbl=''
931 d_SCNfldbl=''
932 sPRIEUldbl=''
933 sPRIFUldbl=''
934 sPRIGUldbl=''
935 sPRIeldbl=''
936 sPRIfldbl=''
937 sPRIgldbl=''
938 sSCNfldbl=''
939 lseeksize=''
940 lseektype=''
941 make_set_make=''
942 d_mymalloc=''
943 freetype=''
944 mallocobj=''
945 mallocsrc=''
946 malloctype=''
947 usemallocwrap=''
948 usemymalloc=''
949 installman1dir=''
950 man1dir=''
951 man1direxp=''
952 man1ext=''
953 installman3dir=''
954 man3dir=''
955 man3direxp=''
956 man3ext=''
957 modetype=''
958 multiarch=''
959 mydomain=''
960 myhostname=''
961 phostname=''
962 c=''
963 n=''
964 d_eofnblk=''
965 eagain=''
966 o_nonblock=''
967 rd_nodata=''
968 need_va_copy=''
969 netdb_hlen_type=''
970 netdb_host_type=''
971 netdb_name_type=''
972 netdb_net_type=''
973 groupcat=''
974 hostcat=''
975 passcat=''
976 orderlib=''
977 ranlib=''
978 d_perl_otherlibdirs=''
979 otherlibdirs=''
980 package=''
981 spackage=''
982 pager=''
983 api_revision=''
984 api_subversion=''
985 api_version=''
986 api_versionstring=''
987 patchlevel=''
988 perl_patchlevel=''
989 revision=''
990 subversion=''
991 version=''
992 version_patchlevel_string=''
993 perl5=''
994 perladmin=''
995 perlpath=''
996 d_nv_preserves_uv=''
997 i16size=''
998 i16type=''
999 i32size=''
1000 i32type=''
1001 i64size=''
1002 i64type=''
1003 i8size=''
1004 i8type=''
1005 ivsize=''
1006 ivtype=''
1007 nv_preserves_uv_bits=''
1008 nvsize=''
1009 nvtype=''
1010 u16size=''
1011 u16type=''
1012 u32size=''
1013 u32type=''
1014 u64size=''
1015 u64type=''
1016 u8size=''
1017 u8type=''
1018 uvsize=''
1019 uvtype=''
1020 ivdformat=''
1021 nvEUformat=''
1022 nvFUformat=''
1023 nvGUformat=''
1024 nveformat=''
1025 nvfformat=''
1026 nvgformat=''
1027 uvXUformat=''
1028 uvoformat=''
1029 uvuformat=''
1030 uvxformat=''
1031 pidtype=''
1032 prefix=''
1033 prefixexp=''
1034 installprivlib=''
1035 privlib=''
1036 privlibexp=''
1037 prototype=''
1038 ptrsize=''
1039 d_PRIXU64=''
1040 d_PRId64=''
1041 d_PRIi64=''
1042 d_PRIo64=''
1043 d_PRIu64=''
1044 d_PRIx64=''
1045 sPRIXU64=''
1046 sPRId64=''
1047 sPRIi64=''
1048 sPRIo64=''
1049 sPRIu64=''
1050 sPRIx64=''
1051 d_quad=''
1052 quadkind=''
1053 quadtype=''
1054 uquadtype=''
1055 drand01=''
1056 randbits=''
1057 randfunc=''
1058 randseedtype=''
1059 seedfunc=''
1060 installscript=''
1061 scriptdir=''
1062 scriptdirexp=''
1063 selectminbits=''
1064 selecttype=''
1065 sh=''
1066 sig_count=''
1067 sig_name=''
1068 sig_name_init=''
1069 sig_num=''
1070 sig_num_init=''
1071 sig_size=''
1072 installsitearch=''
1073 sitearch=''
1074 sitearchexp=''
1075 installsitebin=''
1076 sitebin=''
1077 sitebinexp=''
1078 installsitehtml1dir=''
1079 sitehtml1dir=''
1080 sitehtml1direxp=''
1081 installsitehtml3dir=''
1082 sitehtml3dir=''
1083 sitehtml3direxp=''
1084 installsitelib=''
1085 sitelib=''
1086 sitelib_stem=''
1087 sitelibexp=''
1088 installsiteman1dir=''
1089 siteman1dir=''
1090 siteman1direxp=''
1091 installsiteman3dir=''
1092 siteman3dir=''
1093 siteman3direxp=''
1094 siteprefix=''
1095 siteprefixexp=''
1096 installsitescript=''
1097 sitescript=''
1098 sitescriptexp=''
1099 sizesize=''
1100 sizetype=''
1101 so=''
1102 socksizetype=''
1103 sharpbang=''
1104 shsharp=''
1105 spitshell=''
1106 src=''
1107 ssizetype=''
1108 startperl=''
1109 startsh=''
1110 stdchar=''
1111 d_stdio_stream_array=''
1112 stdio_stream_array=''
1113 sysman=''
1114 trnl=''
1115 uidformat=''
1116 uidsign=''
1117 uidsize=''
1118 uidtype=''
1119 archname64=''
1120 use64bitall=''
1121 use64bitint=''
1122 usefaststdio=''
1123 ccflags_uselargefiles=''
1124 ldflags_uselargefiles=''
1125 libswanted_uselargefiles=''
1126 uselargefiles=''
1127 uselongdouble=''
1128 usemorebits=''
1129 usemultiplicity=''
1130 nm_opt=''
1131 nm_so_opt=''
1132 runnm=''
1133 usenm=''
1134 useperlio=''
1135 userelocatableinc=''
1136 usesocks=''
1137 d_oldpthreads=''
1138 use5005threads=''
1139 useithreads=''
1140 usereentrant=''
1141 usethreads=''
1142 incpath=''
1143 mips_type=''
1144 usrinc=''
1145 d_vendorarch=''
1146 installvendorarch=''
1147 vendorarch=''
1148 vendorarchexp=''
1149 d_vendorbin=''
1150 installvendorbin=''
1151 vendorbin=''
1152 vendorbinexp=''
1153 installvendorhtml1dir=''
1154 vendorhtml1dir=''
1155 vendorhtml1direxp=''
1156 installvendorhtml3dir=''
1157 vendorhtml3dir=''
1158 vendorhtml3direxp=''
1159 d_vendorlib=''
1160 installvendorlib=''
1161 vendorlib=''
1162 vendorlib_stem=''
1163 vendorlibexp=''
1164 installvendorman1dir=''
1165 vendorman1dir=''
1166 vendorman1direxp=''
1167 installvendorman3dir=''
1168 vendorman3dir=''
1169 vendorman3direxp=''
1170 usevendorprefix=''
1171 vendorprefix=''
1172 vendorprefixexp=''
1173 d_vendorscript=''
1174 installvendorscript=''
1175 vendorscript=''
1176 vendorscriptexp=''
1177 versiononly=''
1178 defvoidused=''
1179 voidflags=''
1180 yacc=''
1181 yaccflags=''
1182 CONFIG=''
1183
1184 define='define'
1185 undef='undef'
1186 smallmach='pdp11 i8086 z8000 i80286 iAPX286'
1187 rmlist=''
1188
1189 : We must find out about Eunice early
1190 eunicefix=':'
1191 if test -f /etc/unixtovms; then
1192         eunicefix=/etc/unixtovms
1193 fi
1194 if test -f /etc/unixtovms.exe; then
1195         eunicefix=/etc/unixtovms.exe
1196 fi
1197
1198 : Set executable suffix now -- needed before hints available
1199 if test -f "/libs/version.library"; then
1200 : Amiga OS
1201     _exe=""
1202 elif test -f "/system/gnu_library/bin/ar.pm"; then
1203 : Stratus VOS
1204     _exe=".pm"
1205 elif test -n "$DJGPP"; then
1206 : DOS DJGPP
1207     _exe=".exe"
1208 elif test -d c:/. -o -n "$is_os2" ; then
1209 : OS/2 or cygwin
1210     _exe=".exe"
1211 fi
1212
1213 i_whoami=''
1214 ccname=''
1215 ccversion=''
1216 perllibs=''
1217 : set useposix=false in your hint file to disable the POSIX extension.
1218 useposix=true
1219 : set useopcode=false in your hint file to disable the Opcode extension.
1220 useopcode=true
1221 : Trailing extension.  Override this in a hint file, if needed.
1222 : Extra object files, if any, needed on this platform.
1223 archobjs=''
1224 archname=''
1225 : Possible local include directories to search.
1226 : Set locincpth to "" in a hint file to defeat local include searches.
1227 locincpth="/usr/local/include /opt/local/include /usr/gnu/include"
1228 locincpth="$locincpth /opt/gnu/include /usr/GNU/include /opt/GNU/include"
1229 :
1230 : no include file wanted by default
1231 inclwanted=''
1232
1233 groupstype=''
1234 libnames=''
1235 : change the next line if compiling for Xenix/286 on Xenix/386
1236 xlibpth='/usr/lib/386 /lib/386'
1237 : Possible local library directories to search.
1238 loclibpth="/usr/local/lib /opt/local/lib /usr/gnu/lib"
1239 loclibpth="$loclibpth /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib"
1240
1241 : general looking path for locating libraries
1242 glibpth="/lib /usr/lib $xlibpth"
1243 glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/local/lib"
1244 test -f /usr/shlib/libc.so && glibpth="/usr/shlib $glibpth"
1245 test -f /shlib/libc.so     && glibpth="/shlib $glibpth"
1246
1247 : Private path used by Configure to find libraries.  Its value
1248 : is prepended to libpth. This variable takes care of special
1249 : machines, like the mips.  Usually, it should be empty.
1250 plibpth=''
1251
1252 : default library list
1253 libswanted=''
1254 : some systems want to use only the non-versioned libso:s
1255 ignore_versioned_solibs=''
1256 siteman1dir=''
1257 siteman3dir=''
1258 sitescript=''
1259 archname64=''
1260 ccflags_uselargefiles=''
1261 ldflags_uselargefiles=''
1262 libswanted_uselargefiles=''
1263 : set usemultiplicity on the Configure command line to enable multiplicity.
1264 : set usesocks on the Configure command line to enable socks.
1265 : set usethreads on the Configure command line to enable threads.
1266 usereentrant='undef'
1267 : full support for void wanted by default
1268 defvoidused=15
1269
1270 : List of libraries we want.
1271 : If anyone needs extra -lxxx, put those in a hint file.
1272 libswanted="sfio socket bind inet nsl nm ndbm gdbm dbm db malloc dl dld ld sun"
1273 libswanted="$libswanted m crypt sec util c cposix posix ucb bsd BSD"
1274 : We probably want to search /usr/shlib before most other libraries.
1275 : This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist.
1276 glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'`
1277 glibpth="/usr/shlib $glibpth"
1278 : Do not use vfork unless overridden by a hint file.
1279 usevfork=false
1280
1281 : Find the basic shell for Bourne shell scripts
1282 case "$sh" in
1283 '')
1284         case "$SYSTYPE" in
1285         *bsd*|sys5*) xxx="/$SYSTYPE/bin/sh";;
1286         *) xxx='/bin/sh';;
1287         esac
1288         if test -f "$xxx"; then
1289                 sh="$xxx"
1290         else
1291                 : Build up a list and do a single loop so we can 'break' out.
1292                 pth=`echo $PATH | sed -e "s/$p_/ /g"`
1293                 for xxx in sh bash ksh pdksh ash; do
1294                         for p in $pth; do
1295                                 try="$try ${p}/${xxx}"
1296                         done
1297                 done
1298                 for xxx in $try; do
1299                         if test -f "$xxx"; then
1300                                 sh="$xxx";
1301                                 break
1302                         elif test "X$_exe" != X -a -f "$xxx$_exe"; then
1303                                 sh="$xxx";
1304                                 break
1305                         elif test -f "$xxx.exe"; then
1306                                 sh="$xxx";
1307                                 break
1308                         fi
1309                 done
1310         fi
1311         ;;
1312 esac
1313
1314 case "$sh" in
1315 '')     cat >&2 <<EOM
1316 $me:  Fatal Error:  I can't find a Bourne Shell anywhere.  
1317
1318 Usually it's in /bin/sh.  How did you even get this far?
1319 Please contact me (Perl Maintainers) at perlbug@perl.org and 
1320 we'll try to straighten this all out.
1321 EOM
1322         exit 1
1323         ;;
1324 esac
1325
1326 : see if sh knows # comments
1327 if `$sh -c '#' >/dev/null 2>&1`; then
1328         shsharp=true
1329         spitshell=cat
1330         xcat=/bin/cat
1331         test -f $xcat$_exe || xcat=/usr/bin/cat
1332         if test ! -f $xcat$_exe; then
1333                 for p in `echo $PATH | sed -e "s/$p_/ /g"` $paths; do
1334                         if test -f $p/cat$_exe; then
1335                                 xcat=$p/cat
1336                                 break
1337                         fi
1338                 done
1339                 if test ! -f $xcat$_exe; then
1340                         echo "Can't find cat anywhere!"
1341                         exit 1
1342                 fi
1343         fi
1344         echo "#!$xcat" >sharp
1345         $eunicefix sharp
1346         chmod +x sharp
1347         ./sharp > today
1348         if test -s today; then
1349                 sharpbang='#!'
1350         else
1351                 echo "#! $xcat" > sharp
1352                 $eunicefix sharp
1353                 chmod +x sharp
1354                 ./sharp > today
1355                 if test -s today; then
1356                         sharpbang='#! '
1357                 else
1358                         sharpbang=': use '
1359                 fi
1360         fi
1361 else
1362         echo " "
1363         echo "Your $sh doesn't grok # comments--I will strip them later on."
1364         shsharp=false
1365         cd ..
1366         echo "exec grep -v '^[  ]*#'" >spitshell
1367         chmod +x spitshell
1368         $eunicefix spitshell
1369         spitshell=`pwd`/spitshell
1370         cd UU
1371         echo "I presume that if # doesn't work, #! won't work either!"
1372         sharpbang=': use '
1373 fi
1374 rm -f sharp today
1375
1376 : figure out how to guarantee sh startup
1377 case "$startsh" in
1378 '') startsh=${sharpbang}${sh} ;;
1379 *)
1380 esac
1381 cat >sharp <<EOSS
1382 $startsh
1383 set abc
1384 test "$?abc" != 1
1385 EOSS
1386
1387 chmod +x sharp
1388 $eunicefix sharp
1389 if ./sharp; then
1390         : echo "Yup, it does."
1391 else
1392         echo "Hmm... '$startsh' does not guarantee sh startup..."
1393         echo "You may have to fix up the shell scripts to make sure $sh runs them."
1394 fi
1395 rm -f sharp
1396
1397
1398 : Save command line options in file UU/cmdline.opt for later use in
1399 : generating config.sh.
1400 cat > cmdline.opt <<EOSH
1401 # Configure command line arguments.
1402 config_arg0='$0'
1403 config_args='$*'
1404 config_argc=$#
1405 EOSH
1406 argn=1
1407 args_exp=''
1408 args_sep=''
1409 for arg in "$@"; do
1410         cat >>cmdline.opt <<EOSH
1411 config_arg$argn='$arg'
1412 EOSH
1413         # Extreme backslashitis: replace each ' by '"'"'
1414         cat <<EOC | sed -e "s/'/'"'"'"'"'"'"'/g" > cmdl.opt
1415 $arg
1416 EOC
1417         arg_exp=`cat cmdl.opt`
1418         args_exp="$args_exp$args_sep'$arg_exp'"
1419         argn=`expr $argn + 1`
1420         args_sep=' '
1421 done
1422 # args_exp is good for restarting self: eval "set X $args_exp"; shift; $0 "$@"
1423 # used by ./hints/os2.sh
1424 rm -f cmdl.opt
1425
1426 : produce awk script to parse command line options
1427 cat >options.awk <<'EOF'
1428 BEGIN {
1429         optstr = "A:dD:eEf:hKOrsSU:V";  # getopt-style specification
1430
1431         len = length(optstr);
1432         for (i = 1; i <= len; i++) {
1433                 c = substr(optstr, i, 1);
1434                 if (i < len) a = substr(optstr, i + 1, 1); else a = "";
1435                 if (a == ":") {
1436                         arg[c] = 1;
1437                         i++;
1438                 }
1439                 opt[c] = 1;
1440         }
1441 }
1442 {
1443         expect = 0;
1444         str = $0;
1445         if (substr(str, 1, 1) != "-") {
1446                 printf("'%s'\n", str);
1447                 next;
1448         }
1449         len = length($0);
1450         for (i = 2; i <= len; i++) {
1451                 c = substr(str, i, 1);
1452                 if (!opt[c]) {
1453                         printf("-%s\n", substr(str, i));
1454                         next;
1455                 }
1456                 printf("-%s\n", c);
1457                 if (arg[c]) {
1458                         if (i < len)
1459                                 printf("'%s'\n", substr(str, i + 1));
1460                         else
1461                                 expect = 1;
1462                         next;
1463                 }
1464         }
1465 }
1466 END {
1467         if (expect)
1468                 print "?";
1469 }
1470 EOF
1471
1472 : process the command line options
1473 set X `for arg in "$@"; do echo "X$arg"; done |
1474         sed -e s/X// | awk -f options.awk`
1475 eval "set $*"
1476 shift
1477 rm -f options.awk
1478
1479 : set up default values
1480 fastread=''
1481 reuseval=false
1482 config_sh=''
1483 alldone=''
1484 error=''
1485 silent=''
1486 extractsh=''
1487 override=''
1488 knowitall=''
1489 rm -f optdef.sh posthint.sh
1490 cat >optdef.sh <<EOS
1491 $startsh
1492 EOS
1493
1494
1495 : option parsing
1496 while test $# -gt 0; do
1497         case "$1" in
1498         -d) shift; fastread=yes;;
1499         -e) shift; alldone=cont;;
1500         -f)
1501                 shift
1502                 cd ..
1503                 if test -r "$1"; then
1504                         config_sh="$1"
1505                 else
1506                         echo "$me: cannot read config file $1." >&2
1507                         error=true
1508                 fi
1509                 cd UU
1510                 shift;;
1511         -h) shift; error=true;;
1512         -r) shift; reuseval=true;;
1513         -s) shift; silent=true; realsilent=true;;
1514         -E) shift; alldone=exit;;
1515         -K) shift; knowitall=true;;
1516         -O) shift; override=true;;
1517         -S) shift; silent=true; extractsh=true;;
1518         -D)
1519                 shift
1520                 case "$1" in
1521                 *=)
1522                         echo "$me: use '-U symbol=', not '-D symbol='." >&2
1523                         echo "$me: ignoring -D $1" >&2
1524                         ;;
1525                 *=*) echo "$1" | \
1526                                 sed -e "s/'/'\"'\"'/g" -e "s/=\(.*\)/='\1'/" >> optdef.sh;;
1527                 *) echo "$1='define'" >> optdef.sh;;
1528                 esac
1529                 shift
1530                 ;;
1531         -U)
1532                 shift
1533                 case "$1" in
1534                 *=) echo "$1" >> optdef.sh;;
1535                 *=*)
1536                         echo "$me: use '-D symbol=val', not '-U symbol=val'." >&2
1537                         echo "$me: ignoring -U $1" >&2
1538                         ;;
1539                 *) echo "$1='undef'" >> optdef.sh;;
1540                 esac
1541                 shift
1542                 ;;
1543         -A)
1544             shift
1545             xxx=''
1546             yyy="$1"
1547             zzz=''
1548             uuu=undef
1549             case "$yyy" in
1550             *=*) zzz=`echo "$yyy"|sed 's!=.*!!'`
1551                  case "$zzz" in
1552                  *:*) zzz='' ;;
1553                  *)   xxx=append
1554                       zzz=" "`echo "$yyy"|sed 's!^[^=]*=!!'` 
1555                       yyy=`echo "$yyy"|sed 's!=.*!!'` ;;
1556                  esac
1557                  ;;
1558             esac
1559             case "$xxx" in
1560             '')  case "$yyy" in
1561                  *:*) xxx=`echo "$yyy"|sed 's!:.*!!'`
1562                       yyy=`echo "$yyy"|sed 's!^[^:]*:!!'`
1563                       zzz=`echo "$yyy"|sed 's!^[^=]*=!!'`
1564                       yyy=`echo "$yyy"|sed 's!=.*!!'` ;;
1565                  *)   xxx=`echo "$yyy"|sed 's!:.*!!'`
1566                       yyy=`echo "$yyy"|sed 's!^[^:]*:!!'` ;;
1567                  esac
1568                  ;;       
1569             esac
1570             case "$xxx" in
1571             append)
1572                 echo "$yyy=\"\${$yyy}$zzz\""    >> posthint.sh ;;
1573             clear)
1574                 echo "$yyy=''"                  >> posthint.sh ;;
1575             define)
1576                 case "$zzz" in
1577                 '') zzz=define ;;
1578                 esac
1579                 echo "$yyy='$zzz'"              >> posthint.sh ;;
1580             eval)
1581                 echo "eval \"$yyy=$zzz\""       >> posthint.sh ;;
1582             prepend)
1583                 echo "$yyy=\"$zzz\${$yyy}\""    >> posthint.sh ;;
1584             undef)
1585                 case "$zzz" in
1586                 '') zzz="$uuu" ;;
1587                 esac
1588                 echo "$yyy=$zzz"                >> posthint.sh ;;
1589             *)  echo "$me: unknown -A command '$xxx', ignoring -A $1" >&2 ;;
1590             esac
1591             shift
1592             ;;
1593         -V) echo "$me generated by metaconfig 3.0 PL70." >&2
1594             exit 0;;
1595         --) break;;
1596         -*) echo "$me: unknown option $1" >&2; shift; error=true;;
1597         *) break;;
1598         esac
1599 done
1600
1601 case "$error" in
1602 true)
1603         cat >&2 <<EOM
1604 Usage: $me [-dehrsEKOSV] [-f config.sh] [-D symbol] [-D symbol=value]
1605                  [-U symbol] [-U symbol=] [-A command:symbol...]
1606   -d : use defaults for all answers.
1607   -e : go on without questioning past the production of config.sh.
1608   -f : specify an alternate default configuration file.
1609   -h : print this help message and exit (with an error status).
1610   -r : reuse C symbols value if possible (skips costly nm extraction).
1611   -s : silent mode, only echoes questions and essential information.
1612   -D : define symbol to have some value:
1613          -D symbol         symbol gets the value 'define'
1614          -D symbol=value   symbol gets the value 'value'
1615   -E : stop at the end of questions, after having produced config.sh.
1616   -K : do not use unless you know what you are doing.
1617   -O : let -D and -U override definitions from loaded configuration file.
1618   -S : perform variable substitutions on all .SH files (can mix with -f)
1619   -U : undefine symbol:
1620          -U symbol    symbol gets the value 'undef'
1621          -U symbol=   symbol gets completely empty
1622   -A : manipulate symbol after the platform specific hints have been applied:
1623          -A symbol=value                append " "value to symbol
1624          -A append:symbol=value         append value to symbol
1625          -A define:symbol=value         define symbol to have value
1626          -A clear:symbol                define symbol to be ''
1627          -A define:symbol               define symbol to be 'define'
1628          -A eval:symbol=value           define symbol to be eval of value
1629          -A prepend:symbol=value        prepend value to symbol
1630          -A undef:symbol                define symbol to be 'undef'
1631          -A undef:symbol=               define symbol to be ''
1632   -V : print version number and exit (with a zero status).
1633 EOM
1634         exit 1
1635         ;;
1636 esac
1637
1638 : Sanity checks
1639 case "$fastread$alldone" in
1640 yescont|yesexit) ;;
1641 *)
1642         case "$extractsh" in
1643         true) ;;
1644         *)
1645                 if test ! -t 0; then
1646                         echo "Say 'sh Configure', not 'sh <Configure'"
1647                         exit 1
1648                 fi
1649                 ;;
1650         esac
1651         ;;
1652 esac
1653
1654 exec 4>&1
1655 case "$silent" in
1656 true) exec 1>/dev/null;;
1657 esac
1658
1659 : run the defines and the undefines, if any, but leave the file out there...
1660 touch optdef.sh
1661 . ./optdef.sh
1662 : create the posthint manipulation script and leave the file out there...
1663 touch posthint.sh
1664
1665 : set package name
1666 package=perl5
1667 first=`echo $package | sed -e 's/^\(.\).*/\1/'`
1668 last=`echo $package | sed -e 's/^.\(.*\)/\1/'`
1669 case "`echo AbyZ | tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
1670 ABYZ) spackage=`echo $first | tr '[:lower:]' '[:upper:]'`$last;;
1671 *) spackage=`echo $first | tr '[a-z]' '[A-Z]'`$last;;
1672 esac
1673
1674 : Some greps do not return status, grrr.
1675 echo "grimblepritz" >grimble
1676 if grep blurfldyick grimble >/dev/null 2>&1 ; then
1677         contains=contains
1678 elif grep grimblepritz grimble >/dev/null 2>&1 ; then
1679         contains=grep
1680 else
1681         contains=contains
1682 fi
1683 rm -f grimble
1684 : the following should work in any shell
1685 case "$contains" in
1686 contains*)
1687         echo " "
1688         echo "AGH!  Grep doesn't return a status.  Attempting remedial action."
1689         cat >contains <<'EOSS'
1690 grep "$1" "$2" >.greptmp && cat .greptmp && test -s .greptmp
1691 EOSS
1692 chmod +x contains
1693 esac
1694
1695 : Find the path to the source tree
1696 case "$src" in
1697 '') case "$0" in
1698     */*) src=`echo $0 | sed -e 's%/[^/][^/]*$%%'`
1699          case "$src" in
1700          /*)    ;;
1701          .)     ;;
1702          *)     src=`cd ../$src && pwd` ;;
1703          esac
1704          ;;
1705     *)   src='.';;
1706     esac;;
1707 esac
1708 case "$src" in
1709 '')     src=/
1710         rsrc=/
1711         ;;
1712 /*) rsrc="$src";;
1713 *) rsrc="../$src";;
1714 esac
1715 if test -f $rsrc/Configure && \
1716         $contains "^package=$package$" $rsrc/Configure >/dev/null 2>&1
1717 then
1718    : found it, so we are ok.
1719 else
1720         rsrc=''
1721         for src in . .. ../.. ../../.. ../../../..; do
1722                 if test -f ../$src/Configure && \
1723                         $contains "^package=$package$" ../$src/Configure >/dev/null 2>&1
1724                 then
1725                         rsrc=../$src
1726                         break
1727                 fi
1728         done
1729 fi
1730 case "$rsrc" in
1731 '')
1732         cat <<EOM >&4
1733
1734 Sorry, I can't seem to locate the source dir for $package.  Please start
1735 Configure with an explicit path -- i.e. /some/path/Configure.
1736
1737 EOM
1738         exit 1
1739         ;;
1740 ../.)   rsrc='..';;
1741 *)
1742         echo " "
1743         echo "Sources for $package found in \"$src\"." >&4
1744         ;;
1745 esac
1746
1747 : script used to extract .SH files with variable substitutions
1748 cat >extract <<'EOS'
1749 PERL_CONFIG_SH=true
1750 echo "Doing variable substitutions on .SH files..."
1751 if test -f MANIFEST; then
1752         set x `awk '{print $1}' < MANIFEST | grep '\.SH$'`
1753 else
1754         echo "(Looking for .SH files under the source directory.)"
1755         set x `(cd "$src"; find . -name "*.SH" -print)`
1756 fi
1757 shift
1758 case $# in
1759 0) set x `(cd "$src"; echo *.SH)`; shift;;
1760 esac
1761 if test ! -f "$src/$1"; then
1762         shift
1763 fi
1764 mkdir_p='
1765 name=$1;
1766 create="";
1767 while test $name; do
1768         if test ! -d "$name"; then
1769                 create="$name $create";
1770                 name=`echo $name | sed -e "s|^[^/]*$||"`;
1771                 name=`echo $name | sed -e "s|\(.*\)/.*|\1|"`;
1772         else
1773                 name="";
1774         fi;
1775 done;
1776 for file in $create; do
1777         mkdir $file;
1778 done
1779 '
1780 for file in $*; do
1781         case "$src" in
1782         ".")
1783                 case "$file" in
1784                 */*)
1785                         dir=`expr X$file : 'X\(.*\)/'`
1786                         file=`expr X$file : 'X.*/\(.*\)'`
1787                         (cd "$dir" && . ./$file)
1788                         ;;
1789                 *)
1790                         . ./$file
1791                         ;;
1792                 esac
1793                 ;;
1794         *)
1795                 case "$file" in
1796                 */*)
1797                         dir=`expr X$file : 'X\(.*\)/'`
1798                         file=`expr X$file : 'X.*/\(.*\)'`
1799                         (set x $dir; shift; eval $mkdir_p)
1800                         sh <"$src/$dir/$file"
1801                         ;;
1802                 *)
1803                         sh <"$src/$file"
1804                         ;;
1805                 esac
1806                 ;;
1807         esac
1808 done
1809 if test -f "$src/config_h.SH"; then
1810         if test ! -f config.h; then
1811         : oops, they left it out of MANIFEST, probably, so do it anyway.
1812         . "$src/config_h.SH"
1813         fi
1814 fi
1815 EOS
1816
1817 : extract files and exit if asked to do so
1818 case "$extractsh" in
1819 true)
1820         case "$realsilent" in
1821         true) ;;
1822         *) exec 1>&4;;
1823         esac
1824         case "$config_sh" in
1825         '') config_sh='config.sh';;
1826         esac
1827         echo " "
1828         echo "Fetching answers from $config_sh..."
1829         cd ..
1830         . $config_sh
1831         test "$override" && . ./optdef.sh
1832         echo " "
1833         . UU/extract
1834         rm -rf UU
1835         echo "Extraction done."
1836         exit 0
1837         ;;
1838 esac
1839
1840 : Eunice requires " " instead of "", can you believe it
1841 echo " "
1842 : Here we go...
1843 echo "Beginning of configuration questions for $package."
1844
1845 trap 'echo " "; test -d ../UU && rm -rf X $rmlist; exit 1' 1 2 3 15
1846
1847 : first determine how to suppress newline on echo command
1848 echo " "
1849 echo "Checking echo to see how to suppress newlines..."
1850 (echo "hi there\c" ; echo " ") >.echotmp
1851 if $contains c .echotmp >/dev/null 2>&1 ; then
1852         echo "...using -n."
1853         n='-n'
1854         c=''
1855 else
1856         cat <<'EOM'
1857 ...using \c
1858 EOM
1859         n=''
1860         c='\c'
1861 fi
1862 echo $n "The star should be here-->$c"
1863 echo '*'
1864 rm -f .echotmp
1865
1866 : Now test for existence of everything in MANIFEST
1867 echo " "
1868 if test -f "$rsrc/MANIFEST"; then
1869         echo "First let's make sure your kit is complete.  Checking..." >&4
1870         awk '$1 !~ /PACK[A-Z]+/ {print $1}' "$rsrc/MANIFEST" | (split -l 50 2>/dev/null || split -50)
1871         rm -f missing
1872         tmppwd=`pwd`
1873         for filelist in x??; do
1874                 (cd "$rsrc"; ls `cat "$tmppwd/$filelist"` >/dev/null 2>>"$tmppwd/missing")
1875         done
1876         if test -s missing; then
1877                 cat missing >&4
1878                 cat >&4 <<'EOM'
1879
1880 THIS PACKAGE SEEMS TO BE INCOMPLETE.
1881
1882 You have the option of continuing the configuration process, despite the
1883 distinct possibility that your kit is damaged, by typing 'y'es.  If you
1884 do, don't blame me if something goes wrong.  I advise you to type 'n'o
1885 and contact the author (perlbug@perl.org).
1886
1887 EOM
1888                 echo $n "Continue? [n] $c" >&4
1889                 read ans
1890                 case "$ans" in
1891                 y*)
1892                         echo "Continuing..." >&4
1893                         rm -f missing
1894                         ;;
1895                 *)
1896                         echo "ABORTING..." >&4
1897                         kill $$
1898                         ;;
1899                 esac
1900         else
1901                 echo "Looks good..."
1902         fi
1903 else
1904         echo "There is no MANIFEST file.  I hope your kit is complete !"
1905 fi
1906 rm -f missing x??
1907
1908 echo " "
1909 : Find the appropriate value for a newline for tr
1910 if test -n "$DJGPP"; then
1911        trnl='\012'
1912 fi
1913 if test X"$trnl" = X; then
1914         case "`echo foo|tr '\n' x 2>/dev/null`" in
1915         foox) trnl='\n' ;;
1916         esac
1917 fi
1918 if test X"$trnl" = X; then
1919         case "`echo foo|tr '\012' x 2>/dev/null`" in
1920         foox) trnl='\012' ;;
1921         esac
1922 fi
1923 if test X"$trnl" = X; then
1924        case "`echo foo|tr '\r\n' xy 2>/dev/null`" in
1925        fooxy) trnl='\n\r' ;;
1926        esac
1927 fi
1928 if test X"$trnl" = X; then
1929         cat <<EOM >&2
1930
1931 $me: Fatal Error: cannot figure out how to translate newlines with 'tr'.
1932
1933 EOM
1934         exit 1
1935 fi
1936
1937 : compute the number of columns on the terminal for proper question formatting
1938 case "$COLUMNS" in
1939 '') COLUMNS='80';;
1940 esac
1941
1942 : set up the echo used in my read
1943 myecho="case \"\$xxxm\" in
1944 '') echo $n \"\$rp $c\" >&4;;
1945 *) case \"\$rp\" in
1946         '') echo $n \"[\$xxxm] $c\";;
1947         *)
1948                 if test \`echo \"\$rp [\$xxxm]  \" | wc -c\` -ge $COLUMNS; then
1949                         echo \"\$rp\" >&4
1950                         echo $n \"[\$xxxm] $c\" >&4
1951                 else
1952                         echo $n \"\$rp [\$xxxm] $c\" >&4
1953                 fi
1954                 ;;
1955         esac;;
1956 esac"
1957
1958 : now set up to do reads with possible shell escape and default assignment
1959 cat <<EOSC >myread
1960 $startsh
1961 xxxm=\$dflt
1962 $myecho
1963 ans='!'
1964 case "\$fastread" in
1965 yes) case "\$dflt" in
1966         '') ;;
1967         *) ans='';
1968                 case "\$silent-\$rp" in
1969                 true-) ;;
1970                 *) echo " " >&4;;
1971                 esac;;
1972         esac;;
1973 *) case "\$silent" in
1974         true) case "\$rp" in
1975                 '') ans='';;
1976                 esac;;
1977         esac;;
1978 esac
1979 while expr "X\$ans" : "X!" >/dev/null; do
1980         read answ
1981         set x \$xxxm
1982         shift
1983         aok=''; eval "ans=\\"\$answ\\"" && aok=y
1984         case  "\$answ" in
1985         "!")
1986                 sh 1>&4
1987                 echo " "
1988                 $myecho
1989                 ;;
1990         !*)
1991                 set x \`expr "X\$ans" : "X!\(.*\)\$"\`
1992                 shift
1993                 sh 1>&4 -c "\$*"
1994                 echo " "
1995                 $myecho
1996                 ;;
1997         "\$ans")
1998                 case "\$ans" in
1999                 \\&*)
2000                         set x \`expr "X\$ans" : "X&\(.*\)\$"\`
2001                         shift
2002                         case "\$1" in
2003                         -d)
2004                                 fastread=yes
2005                                 echo "(OK, I'll run with -d after this question.)" >&4
2006                                 ;;
2007                         -*)
2008                                 echo "*** Sorry, \$1 not supported yet." >&4
2009                                 ;;
2010                         esac
2011                         $myecho
2012                         ans=!
2013                         ;;
2014                 esac;;
2015         *)
2016                 case "\$aok" in
2017                 y)
2018                         echo "*** Substitution done -- please confirm."
2019                         xxxm="\$ans"
2020                         ans=\`echo $n "\$ans$c" | tr '$trnl' ' '\`
2021                         xxxm="\$ans"
2022                         ans=!
2023                         ;;
2024                 *)
2025                         echo "*** Error -- try again."
2026                         ans=!
2027                         ;;
2028                 esac
2029                 $myecho
2030                 ;;
2031         esac
2032         case "\$ans\$xxxm\$nostick" in
2033         '')
2034                 ans=!
2035                 $myecho
2036                 ;;
2037         esac
2038 done
2039 case "\$ans" in
2040 '') ans="\$xxxm";;
2041 esac
2042 EOSC
2043
2044 : create .config dir to save info across Configure sessions
2045 test -d ../.config || mkdir ../.config
2046 cat >../.config/README <<EOF
2047 This directory created by Configure to save information that should
2048 persist across sessions for $package.
2049
2050 You may safely delete it if you wish.
2051 EOF
2052
2053 xversion=`awk '/define[         ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
2054 case "$usedevel" in
2055 $define|true|[yY]*) ;;
2056 *) case "$xversion" in
2057    *[13579])
2058         cat >&4 <<EOH
2059 *** WHOA THERE!!! ***
2060
2061     This is an UNSTABLE DEVELOPMENT release.
2062     The version of this $package distribution is $xversion, that is, odd,
2063     (as opposed to even) and that signifies a development release.
2064     If you want a maintenance release, you want an even-numbered version.
2065
2066     Do ***NOT*** install this into production use.
2067     Data corruption and crashes are possible.
2068
2069     It is most seriously suggested that you do not continue any further
2070     unless you want to help in developing and debugging Perl.
2071
2072     If you *still* want to build perl, you can answer 'y' now,
2073     or pass -Dusedevel to Configure.
2074
2075 EOH
2076         rp='Do you really want to continue?'
2077         dflt='n'
2078         . ./myread
2079         case "$ans" in
2080         [yY]) echo >&4 "Okay, continuing."
2081               usedevel="$define" ;;
2082         *) echo >&4 "Okay, bye."
2083            exit 1
2084            ;;
2085         esac
2086         ;;
2087     esac
2088     ;;
2089 esac
2090 case "$usedevel" in
2091 $define|true|[yY]*)
2092         case "$versiononly" in
2093         '') versiononly="$define" ;;
2094         esac
2095         case "$installusrbinperl" in
2096         '') installusrbinperl="$undef" ;;
2097         esac
2098         ;;
2099 esac
2100
2101 : general instructions
2102 needman=true
2103 firsttime=true
2104 user=`(logname) 2>/dev/null`
2105 case "$user" in
2106 '') user=`whoami 2>&1`;;
2107 esac
2108 if $contains "^$user\$" ../.config/instruct >/dev/null 2>&1; then
2109         firsttime=false
2110         echo " "
2111         rp='Would you like to see the instructions?'
2112         dflt=n
2113         . ./myread
2114         case "$ans" in
2115         [yY]*) ;;
2116         *) needman=false;;
2117         esac
2118 fi
2119 if $needman; then
2120         cat <<EOH
2121
2122 This installation shell script will examine your system and ask you questions
2123 to determine how the perl5 package should be installed. If you get
2124 stuck on a question, you may use a ! shell escape to start a subshell or
2125 execute a command.  Many of the questions will have default answers in square
2126 brackets; typing carriage return will give you the default.
2127
2128 On some of the questions which ask for file or directory names you are allowed
2129 to use the ~name construct to specify the login directory belonging to "name",
2130 even if you don't have a shell which knows about that.  Questions where this is
2131 allowed will be marked "(~name ok)".
2132
2133 EOH
2134         rp=''
2135         dflt='Type carriage return to continue'
2136         . ./myread
2137         cat <<'EOH'
2138
2139 The prompter used in this script allows you to use shell variables and
2140 backticks in your answers.  You may use $1, $2, etc...  to refer to the words
2141 in the default answer, as if the default line was a set of arguments given to a
2142 script shell.  This means you may also use $* to repeat the whole default line,
2143 so you do not have to re-type everything to add something to the default.
2144
2145 Everytime there is a substitution, you will have to confirm.  If there is an
2146 error (e.g. an unmatched backtick), the default answer will remain unchanged
2147 and you will be prompted again.
2148
2149 If you are in a hurry, you may run 'Configure -d'.  This will bypass nearly all
2150 the questions and use the computed defaults (or the previous answers if there
2151 was already a config.sh file). Type 'Configure -h' for a list of options.
2152 You may also start interactively and then answer '& -d' at any prompt to turn
2153 on the non-interactive behaviour for the remainder of the execution.
2154
2155 EOH
2156         . ./myread
2157         cat <<EOH
2158
2159 Much effort has been expended to ensure that this shell script will run on any
2160 Unix system.  If despite that it blows up on yours, your best bet is to edit
2161 Configure and run it again.  If you can't run Configure for some reason,
2162 you'll have to generate a config.sh file by hand.  Whatever problems you
2163 have, let me (perlbug@perl.org) know how I blew it.
2164
2165 This installation script affects things in two ways:
2166
2167 1) it may do direct variable substitutions on some of the files included
2168    in this kit.
2169 2) it builds a config.h file for inclusion in C programs.  You may edit
2170    any of these files as the need arises after running this script.
2171
2172 If you make a mistake on a question, there is no easy way to back up to it
2173 currently.  The easiest thing to do is to edit config.sh and rerun all the SH
2174 files.  Configure will offer to let you do this before it runs the SH files.
2175
2176 EOH
2177         dflt='Type carriage return to continue'
2178         . ./myread
2179         case "$firsttime" in
2180         true) echo $user >>../.config/instruct;;
2181         esac
2182 fi
2183
2184 : find out where common programs are
2185 echo " "
2186 echo "Locating common programs..." >&4
2187 cat <<EOSC >loc
2188 $startsh
2189 case \$# in
2190 0) exit 1;;
2191 esac
2192 thing=\$1
2193 shift
2194 dflt=\$1
2195 shift
2196 for dir in \$*; do
2197         case "\$thing" in
2198         .)
2199         if test -d \$dir/\$thing; then
2200                 echo \$dir
2201                 exit 0
2202         fi
2203         ;;
2204         *)
2205         for thisthing in \$dir/\$thing; do
2206                 : just loop through to pick last item
2207         done
2208         if test -f \$thisthing; then
2209                 echo \$thisthing
2210                 exit 0
2211         elif test "X$_exe" != X -a -f \$thisthing$_exe; then
2212                 echo \$thisthing
2213                 exit 0
2214         elif test -f \$dir/\$thing.exe; then
2215                 if test -n "$DJGPP"; then
2216                         echo \$dir/\$thing.exe
2217                 elif test "$eunicefix" != ":"; then
2218                         : on Eunice apparently
2219                         echo \$dir/\$thing
2220                         exit 0
2221                 fi
2222                 exit 0
2223         fi
2224         ;;
2225         esac
2226 done
2227 echo \$dflt
2228 exit 1
2229 EOSC
2230 chmod +x loc
2231 $eunicefix loc
2232 loclist="
2233 awk
2234 cat
2235 chmod
2236 comm
2237 cp
2238 echo
2239 expr
2240 grep
2241 ls
2242 mkdir
2243 rm
2244 sed
2245 sort
2246 touch
2247 tr
2248 uniq
2249 "
2250 trylist="
2251 Mcc
2252 ar
2253 bison
2254 byacc
2255 cpp
2256 csh
2257 date
2258 egrep
2259 gmake
2260 gzip
2261 less
2262 ln
2263 make
2264 more
2265 nm
2266 nroff
2267 pg
2268 test
2269 uname
2270 zip
2271 "
2272 pth=`echo $PATH | sed -e "s/$p_/ /g"`
2273 pth="$pth /lib /usr/lib"
2274 for file in $loclist; do
2275         eval xxx=\$$file
2276         case "$xxx" in
2277         /*|?:[\\/]*)
2278                 if test -f "$xxx"; then
2279                         : ok
2280                 else
2281                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
2282                         xxx=`./loc $file $file $pth`
2283                 fi
2284                 ;;
2285         '') xxx=`./loc $file $file $pth`;;
2286         *) xxx=`./loc $xxx $xxx $pth`;;
2287         esac
2288         eval $file=$xxx$_exe
2289         eval _$file=$xxx
2290         case "$xxx" in
2291         /*)
2292                 echo $file is in $xxx.
2293                 ;;
2294         ?:[\\/]*)
2295                 echo $file is in $xxx.
2296                 ;;
2297         *)
2298                 echo "I don't know where '$file' is, and my life depends on it." >&4
2299                 echo "Go find a public domain implementation or fix your PATH setting!" >&4
2300                 exit 1
2301                 ;;
2302         esac
2303 done
2304 echo " "
2305 echo "Don't worry if any of the following aren't found..."
2306 say=offhand
2307 for file in $trylist; do
2308         eval xxx=\$$file
2309         case "$xxx" in
2310         /*|?:[\\/]*)
2311                 if test -f "$xxx"; then
2312                         : ok
2313                 else
2314                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
2315                         xxx=`./loc $file $file $pth`
2316                 fi
2317                 ;;
2318         '') xxx=`./loc $file $file $pth`;;
2319         *) xxx=`./loc $xxx $xxx $pth`;;
2320         esac
2321         eval $file=$xxx$_exe
2322         eval _$file=$xxx
2323         case "$xxx" in
2324         /*)
2325                 echo $file is in $xxx.
2326                 ;;
2327         ?:[\\/]*)
2328                 echo $file is in $xxx.
2329                 ;;
2330         *)
2331                 echo "I don't see $file out there, $say."
2332                 say=either
2333                 ;;
2334         esac
2335 done
2336 case "$egrep" in
2337 egrep)
2338         echo "Substituting grep for egrep."
2339         egrep=$grep
2340         _egrep=$grep
2341         ;;
2342 esac
2343 case "$ln" in
2344 ln)
2345         echo "Substituting cp for ln."
2346         ln=$cp
2347         _ln=$cp
2348         ;;
2349 esac
2350 case "$make" in
2351 make)   
2352         case "$gmake" in
2353         gmake)
2354         echo "I can't find make or gmake, and my life depends on it." >&4
2355         echo "Go find a public domain implementation or fix your PATH setting!" >&4
2356         exit 1
2357         ;;
2358         esac
2359         ;;
2360 esac    
2361 case "$gmake" in
2362 gmake)  ;;
2363 *)      # We can't have osname yet.
2364         if test -f "/system/gnu_library/bin/ar.pm"; then # Stratus VOS
2365                 # Assume that gmake, if found, is definitely GNU make
2366                 # and prefer it over the system make.
2367                 echo "Substituting gmake for make."
2368                 make=$gmake
2369                 _make=$gmake
2370         fi
2371         ;;
2372 esac
2373 case "$test" in
2374 test)
2375         echo "Hopefully test is built into your sh."
2376         ;;
2377 *)
2378         if `sh -c "PATH= test true" >/dev/null 2>&1`; then
2379                 echo "Using the test built into your sh."
2380                 test=test
2381                 _test=test
2382         fi
2383         ;;
2384 esac
2385 case "$echo" in
2386 echo)
2387         echo "Hopefully echo is built into your sh."
2388         ;;
2389 '') ;;
2390 *)
2391         echo " "
2392 echo "Checking compatibility between $echo and builtin echo (if any)..." >&4
2393         $echo $n "hi there$c" >foo1
2394         echo $n "hi there$c" >foo2
2395         if cmp foo1 foo2 >/dev/null 2>&1; then
2396                 echo "They are compatible.  In fact, they may be identical."
2397         else
2398                 case "$n" in
2399                 '-n') n='' c='\c';;
2400                 *) n='-n' c='';;
2401                 esac
2402                 cat <<FOO
2403 They are not compatible!  You are probably running ksh on a non-USG system.
2404 I'll have to use $echo instead of the builtin, since Bourne shell doesn't
2405 have echo built in and we may have to run some Bourne shell scripts.  That
2406 means I'll have to use '$n$c' to suppress newlines now.  Life is ridiculous.
2407
2408 FOO
2409                 $echo $n "The star should be here-->$c"
2410                 $echo "*"
2411         fi
2412         $rm -f foo1 foo2
2413         ;;
2414 esac
2415
2416 cat <<EOS >trygcc
2417 $startsh
2418 EOS
2419 cat <<'EOSC' >>trygcc
2420 case "$cc" in
2421 '') ;;
2422 *)  $rm -f try try.*
2423     $cat >try.c <<EOM
2424 int main(int argc, char *argv[]) {
2425   return 0;
2426 }
2427 EOM
2428     if $cc -o try $ccflags $ldflags try.c; then
2429        :
2430     else
2431         echo "Uh-oh, the C compiler '$cc' doesn't seem to be working." >&4
2432         despair=yes
2433         trygcc=yes
2434         case "$cc" in
2435         *gcc*) trygcc=no ;;
2436         esac
2437         case "`$cc -v -c try.c 2>&1`" in
2438         *gcc*) trygcc=no ;;
2439         esac
2440         if $test X"$trygcc" = Xyes; then
2441             if gcc -o try -c try.c; then
2442                 echo " "
2443                 echo "You seem to have a working gcc, though." >&4
2444                 rp="Would you like to use it?"
2445                 dflt=y
2446                 if $test -f myread; then
2447                     . ./myread
2448                 else
2449                     if $test -f UU/myread; then
2450                         . ./UU/myread
2451                     else
2452                         echo "Cannot find myread, sorry.  Aborting." >&2
2453                         exit 1
2454                     fi
2455                 fi  
2456                 case "$ans" in
2457                 [yY]*) cc=gcc; ccname=gcc; ccflags=''; despair=no;
2458                        if $test -f usethreads.cbu; then
2459                            $cat >&4 <<EOM 
2460
2461 *** However, any setting of the C compiler flags (e.g. for thread support)
2462 *** has been lost.  It may be necessary to pass -Dcc=gcc to Configure
2463 *** (together with e.g. -Dusethreads).
2464
2465 EOM
2466                        fi;;
2467                 esac
2468             fi
2469         fi
2470     fi
2471     $rm -f try try.*
2472     ;;
2473 esac
2474 EOSC
2475
2476 cat <<EOS >checkcc
2477 $startsh
2478 EOS
2479 cat <<'EOSC' >>checkcc
2480 case "$cc" in        
2481 '') ;;
2482 *)  $rm -f try try.*              
2483     $cat >try.c <<EOM
2484 int main(int argc, char *argv[]) {
2485   return 0;
2486 }
2487 EOM
2488     if $cc -o try $ccflags $ldflags try.c; then
2489        :
2490     else
2491         if $test X"$despair" = Xyes; then
2492            echo "Uh-oh, the C compiler '$cc' doesn't seem to be working." >&4
2493         fi
2494         $cat >&4 <<EOM         
2495 You need to find a working C compiler.
2496 Either (purchase and) install the C compiler supplied by your OS vendor,
2497 or for a free C compiler try http://gcc.gnu.org/
2498 I cannot continue any further, aborting.
2499 EOM
2500         exit 1
2501     fi
2502     $rm -f try try.*
2503     ;;
2504 esac
2505 EOSC
2506
2507 : determine whether symbolic links are supported
2508 echo " "
2509 $touch blurfl
2510 if $ln -s blurfl sym > /dev/null 2>&1 ; then
2511         echo "Symbolic links are supported." >&4
2512         lns="$ln -s"
2513 else
2514         echo "Symbolic links are NOT supported." >&4
2515         lns="$ln"
2516 fi
2517 $rm -f blurfl sym
2518
2519 : determine whether symbolic links are supported
2520 echo " "
2521 case "$lns" in
2522 *"ln"*" -s")
2523         echo "Checking how to test for symbolic links..." >&4
2524         $lns blurfl sym
2525         if $test "X$issymlink" = X; then
2526                 case "$newsh" in
2527                 '') sh     -c "PATH= test -h sym" >/dev/null 2>&1 ;;
2528                 *)  $newsh -c "PATH= test -h sym" >/dev/null 2>&1 ;;
2529                 esac
2530                 if test $? = 0; then
2531                         issymlink="test -h"
2532                 else
2533                         echo "Your builtin 'test -h' may be broken." >&4
2534                         case "$test" in
2535                         /*)     ;;
2536                         *)      pth=`echo $PATH | sed -e "s/$p_/ /g"`
2537                                 for p in $pth
2538                                 do
2539                                         if test -f "$p/$test"; then
2540                                                 test="$p/$test"
2541                                                 break
2542                                         fi
2543                                 done
2544                                 ;;
2545                         esac
2546                         case "$test" in
2547                         /*)
2548                                 echo "Trying external '$test -h'." >&4
2549                                 issymlink="$test -h"
2550                                 if $test ! -h sym >/dev/null 2>&1; then
2551                                         echo "External '$test -h' is broken, too." >&4
2552                                         issymlink=''
2553                                 fi
2554                                 ;;
2555                         *)      issymlink='' ;;
2556                         esac
2557                 fi              
2558         fi
2559         if $test "X$issymlink" = X; then
2560                 if $test -L sym 2>/dev/null; then
2561                         issymlink="$test -L"
2562                         echo "The builtin '$test -L' worked." >&4
2563                 fi
2564         fi
2565         if $test "X$issymlink" != X; then
2566                 echo "You can test for symbolic links with '$issymlink'." >&4
2567         else
2568                 echo "I do not know how you can test for symbolic links." >&4
2569         fi
2570         $rm -f blurfl sym
2571         ;;
2572 *)      echo "No symbolic links, so not testing for their testing..." >&4
2573         ;;
2574 esac
2575 echo " "
2576
2577
2578 case "$mksymlinks" in
2579 $define|true|[yY]*)
2580         case "$src" in
2581         ''|'.') echo "Cannot create symlinks in the original directory." >&4
2582                 exit 1
2583                 ;;
2584         *)      case "$lns:$issymlink" in
2585                 *"ln"*" -s:"*"test -"?)
2586                         echo "Creating the symbolic links..." >&4
2587                         echo "(First creating the subdirectories...)" >&4
2588                         cd ..
2589                         awk '{print $1}' $src/MANIFEST | grep / | sed 's:/[^/]*$::' | sort -u | while true; do
2590                                 read directory
2591                                 test -z "$directory" && break
2592                                 mkdir -p $directory
2593                         done
2594                         # Sanity check 1.
2595                         if test ! -d t/base; then
2596                                 echo "Failed to create the subdirectories.  Aborting." >&4
2597                                 exit 1
2598                         fi
2599                         echo "(Then creating the symlinks...)" >&4
2600                         awk '{print $1}' $src/MANIFEST | while true; do
2601                                 read filename
2602                                 test -z "$filename" && break
2603                                 if test -f $filename; then
2604                                         if $issymlink $filename; then
2605                                                 rm -f $filename
2606                                         fi
2607                                 fi
2608                                 if test -f $filename; then
2609                                         echo "$filename already exists, not symlinking."
2610                                 else
2611                                         ln -s $src/$filename $filename
2612                                 fi
2613                         done
2614                         # Sanity check 2.
2615                         if test ! -f t/base/lex.t; then
2616                                 echo "Failed to create the symlinks (t/base/lex.t missing).  Aborting." >&4
2617                                 exit 1
2618                         fi
2619                         cd UU
2620                         ;;
2621                 *)      echo "(I cannot figure out how to do symbolic links, ignoring mksymlinks)." >&4
2622                         ;;
2623                 esac
2624                 ;;
2625         esac
2626         ;;
2627 esac
2628
2629
2630 case "$usecrosscompile" in
2631 $define|true|[yY]*)
2632         $echo "Cross-compiling..."
2633         croak=''
2634         case "$cc" in
2635         *-*-gcc) # A cross-compiling gcc, probably.
2636             targetarch=`$echo $cc|$sed 's/-gcc$//'`
2637             ar=$targetarch-ar
2638             # leave out ld, choosing it is more complex
2639             nm=$targetarch-nm
2640             ranlib=$targetarch-ranlib
2641             $echo 'extern int foo;' > try.c
2642             set X `$cc -v -E try.c 2>&1 | $awk '/^#include </,/^End of search /'|$grep '/include'`
2643             shift
2644             if $test $# -gt 0; then
2645                 incpth="$incpth $*"
2646                 incpth="`$echo $incpth|$sed 's/^ //'`"
2647                 echo "Guessing incpth '$incpth'." >&4
2648                 for i in $*; do
2649                     j="`$echo $i|$sed 's,/include$,/lib,'`"
2650                     if $test -d $j; then
2651                         libpth="$libpth $j"
2652                     fi
2653                 done   
2654                 libpth="`$echo $libpth|$sed 's/^ //'`"
2655                 echo "Guessing libpth '$libpth'." >&4
2656             fi
2657             $rm -f try.c
2658             ;;
2659         esac
2660         case "$targetarch" in
2661         '') echo "Targetarch not defined." >&4; croak=y ;;
2662         *)  echo "Using targetarch $targetarch." >&4 ;;
2663         esac
2664         case "$incpth" in
2665         '') echo "Incpth not defined." >&4; croak=y ;;
2666         *)  echo "Using incpth '$incpth'." >&4 ;;
2667         esac
2668         case "$libpth" in
2669         '') echo "Libpth not defined." >&4; croak=y ;;
2670         *)  echo "Using libpth '$libpth'." >&4 ;;
2671         esac
2672         case "$usrinc" in
2673         '') for i in $incpth; do
2674                 if $test -f $i/errno.h -a -f $i/stdio.h -a -f $i/time.h; then
2675                     usrinc=$i
2676                     echo "Guessing usrinc $usrinc." >&4
2677                     break
2678                 fi
2679             done
2680             case "$usrinc" in
2681             '') echo "Usrinc not defined." >&4; croak=y ;;
2682             esac
2683             ;;
2684         *)  echo "Using usrinc $usrinc." >&4 ;;
2685         esac
2686         case "$targethost" in
2687         '') echo "Targethost not defined." >&4; croak=y ;;
2688         *)  echo "Using targethost $targethost." >&4
2689         esac
2690         locincpth=' '
2691         loclibpth=' '
2692         case "$croak" in
2693         y) echo "Cannot continue, aborting." >&4; exit 1 ;;
2694         esac
2695         case "$src" in
2696         /*) run=$src/Cross/run
2697             targetmkdir=$src/Cross/mkdir
2698             to=$src/Cross/to
2699             from=$src/Cross/from
2700             ;;
2701         *)  pwd=`$test -f ../Configure & cd ..; pwd`
2702             run=$pwd/Cross/run
2703             targetmkdir=$pwd/Cross/mkdir
2704             to=$pwd/Cross/to
2705             from=$pwd/Cross/from
2706             ;;
2707         esac
2708         case "$targetrun" in
2709         '') targetrun=ssh ;;
2710         esac
2711         case "$targetto" in
2712         '') targetto=scp ;;
2713         esac
2714         case "$targetfrom" in
2715         '') targetfrom=scp ;;
2716         esac
2717         run=$run-$targetrun
2718         to=$to-$targetto
2719         from=$from-$targetfrom
2720         case "$targetdir" in
2721         '')  targetdir=/tmp
2722              echo "Guessing targetdir $targetdir." >&4
2723              ;;
2724         esac
2725         case "$targetuser" in
2726         '')  targetuser=root
2727              echo "Guessing targetuser $targetuser." >&4
2728              ;;
2729         esac
2730         case "$targetfrom" in
2731         scp)    q=-q ;;
2732         *)      q='' ;;
2733         esac
2734         case "$targetrun" in
2735         ssh|rsh)
2736             cat >$run <<EOF
2737 #!/bin/sh
2738 case "\$1" in
2739 -cwd)
2740   shift
2741   cwd=\$1
2742   shift
2743   ;;
2744 esac
2745 case "\$cwd" in
2746 '') cwd=$targetdir ;;
2747 esac
2748 exe=\$1
2749 shift
2750 if $test ! -f \$exe.xok; then
2751   $to \$exe
2752   $touch \$exe.xok
2753 fi
2754 $targetrun -l $targetuser $targethost "cd \$cwd && ./\$exe \$@"
2755 EOF
2756             ;;
2757         *)  echo "Unknown targetrun '$targetrun'" >&4
2758             exit 1
2759             ;;
2760         esac
2761         case "$targetmkdir" in
2762         */Cross/mkdir)
2763             cat >$targetmkdir <<EOF
2764 #!/bin/sh
2765 $targetrun -l $targetuser $targethost "mkdir -p \$@"
2766 EOF
2767             $chmod a+rx $targetmkdir
2768             ;;
2769         *)  echo "Unknown targetmkdir '$targetmkdir'" >&4
2770             exit 1
2771             ;;
2772         esac
2773         case "$targetto" in
2774         scp|rcp)
2775             cat >$to <<EOF
2776 #!/bin/sh
2777 for f in \$@
2778 do
2779   case "\$f" in
2780   /*)
2781     $targetmkdir \`dirname \$f\`
2782     $targetto $q \$f $targetuser@$targethost:\$f            || exit 1
2783     ;;
2784   *)
2785     $targetmkdir $targetdir/\`dirname \$f\`
2786     $targetto $q \$f $targetuser@$targethost:$targetdir/\$f || exit 1
2787     ;;
2788   esac
2789 done
2790 exit 0
2791 EOF
2792             ;;
2793         cp) cat >$to <<EOF
2794 #!/bin/sh
2795 for f in \$@
2796 do
2797   case "\$f" in
2798   /*)
2799     $mkdir -p $targetdir/\`dirname \$f\`
2800     $cp \$f $targetdir/\$f || exit 1
2801     ;;
2802   *)
2803     $targetmkdir $targetdir/\`dirname \$f\`
2804     $cp \$f $targetdir/\$f || exit 1
2805     ;;
2806   esac
2807 done
2808 exit 0
2809 EOF
2810             ;;
2811         *)  echo "Unknown targetto '$targetto'" >&4
2812             exit 1
2813             ;;
2814         esac
2815         case "$targetfrom" in
2816         scp|rcp)
2817           cat >$from <<EOF
2818 #!/bin/sh
2819 for f in \$@
2820 do
2821   $rm -f \$f
2822   $targetfrom $q $targetuser@$targethost:$targetdir/\$f . || exit 1
2823 done
2824 exit 0
2825 EOF
2826             ;;
2827         cp) cat >$from <<EOF
2828 #!/bin/sh
2829 for f in \$@
2830 do
2831   $rm -f \$f
2832   cp $targetdir/\$f . || exit 1
2833 done
2834 exit 0
2835 EOF
2836             ;;
2837         *)  echo "Unknown targetfrom '$targetfrom'" >&4
2838             exit 1
2839             ;;
2840         esac
2841         if $test ! -f $run; then
2842             echo "Target 'run' script '$run' not found." >&4
2843         else
2844             $chmod a+rx $run
2845         fi
2846         if $test ! -f $to; then
2847             echo "Target 'to' script '$to' not found." >&4
2848         else
2849             $chmod a+rx $to
2850         fi
2851         if $test ! -f $from; then
2852             echo "Target 'from' script '$from' not found." >&4
2853         else
2854             $chmod a+rx $from
2855         fi
2856         if $test ! -f $run -o ! -f $to -o ! -f $from; then
2857             exit 1
2858         fi
2859         cat >&4 <<EOF
2860 Using '$run' for remote execution,
2861 and '$from' and '$to'
2862 for remote file transfer.
2863 EOF
2864         ;;
2865 *)      run=''
2866         to=:
2867         from=:
2868         usecrosscompile='undef'
2869         targetarch=''
2870         ;;
2871 esac
2872
2873 : see whether [:lower:] and [:upper:] are supported character classes
2874 echo " "
2875 case "`echo AbyZ | $tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
2876 ABYZ)
2877         echo "Good, your tr supports [:lower:] and [:upper:] to convert case." >&4
2878         up='[:upper:]'
2879         low='[:lower:]'
2880         ;;
2881 *)      # There is a discontinuity in EBCDIC between 'R' and 'S'
2882         # (0xd9 and 0xe2), therefore that is a nice testing point.
2883         if test "X$up" = X -o "X$low" = X; then
2884             case "`echo RS | $tr '[R-S]' '[r-s]' 2>/dev/null`" in
2885             rs) up='[A-Z]'
2886                 low='[a-z]'
2887                 ;;
2888             esac
2889         fi
2890         if test "X$up" = X -o "X$low" = X; then
2891             case "`echo RS | $tr R-S r-s 2>/dev/null`" in
2892             rs) up='A-Z'
2893                 low='a-z'
2894                 ;;
2895             esac
2896         fi
2897         if test "X$up" = X -o "X$low" = X; then
2898             case "`echo RS | od -x 2>/dev/null`" in
2899             *D9E2*|*d9e2*)
2900                 echo "Hey, this might be EBCDIC." >&4
2901                 if test "X$up" = X -o "X$low" = X; then
2902                     case "`echo RS | $tr '[A-IJ-RS-Z]' '[a-ij-rs-z]' 2>/dev/null`" in
2903                     rs) up='[A-IJ-RS-Z]'
2904                         low='[a-ij-rs-z]'
2905                         ;;
2906                     esac
2907                 fi
2908                 if test "X$up" = X -o "X$low" = X; then
2909                     case "`echo RS | $tr A-IJ-RS-Z a-ij-rs-z 2>/dev/null`" in
2910                     rs) up='A-IJ-RS-Z'
2911                         low='a-ij-rs-z'
2912                         ;;
2913                     esac
2914                 fi
2915                 ;;
2916             esac
2917         fi
2918 esac
2919 case "`echo RS | $tr \"$up\" \"$low\" 2>/dev/null`" in
2920 rs)
2921     echo "Using $up and $low to convert case." >&4
2922     ;;
2923 *)
2924     echo "I don't know how to translate letters from upper to lower case." >&4
2925     echo "Your tr is not acting any way I know of." >&4
2926     exit 1
2927     ;;
2928 esac
2929 : set up the translation script tr, must be called with ./tr of course
2930 cat >tr <<EOSC
2931 $startsh
2932 case "\$1\$2" in
2933 '[A-Z][a-z]') exec $tr '$up' '$low';;
2934 '[a-z][A-Z]') exec $tr '$low' '$up';;
2935 esac
2936 exec $tr "\$@"
2937 EOSC
2938 chmod +x tr
2939 $eunicefix tr
2940
2941 : Try to determine whether config.sh was made on this system
2942 case "$config_sh" in
2943 '')
2944 myuname=`$uname -a 2>/dev/null`
2945 $test -z "$myuname" && myuname=`hostname 2>/dev/null`
2946 # tr '[A-Z]' '[a-z]' would not work in EBCDIC
2947 # because the A-Z/a-z are not consecutive.
2948 myuname=`echo $myuname | $sed -e 's/^[^=]*=//' -e 's/\///g' | \
2949         ./tr '[A-Z]' '[a-z]' | $tr $trnl ' '`
2950 newmyuname="$myuname"
2951 dflt=n
2952 case "$knowitall" in
2953 '')
2954         if test -f ../config.sh; then
2955                 if $contains myuname= ../config.sh >/dev/null 2>&1; then
2956                         eval "`grep myuname= ../config.sh`"
2957                 fi
2958                 if test "X$myuname" = "X$newmyuname"; then
2959                         dflt=y
2960                 fi
2961         fi
2962         ;;
2963 *) dflt=y;;
2964 esac
2965
2966 : Get old answers from old config file if Configure was run on the
2967 : same system, otherwise use the hints.
2968 hint=default
2969 cd ..
2970 if test -f config.sh; then
2971         echo " "
2972         rp="I see a config.sh file.  Shall I use it to set the defaults?"
2973         . UU/myread
2974         case "$ans" in
2975         n*|N*) echo "OK, I'll ignore it."
2976                 mv config.sh config.sh.old
2977                 myuname="$newmyuname"
2978                 ;;
2979         *)  echo "Fetching default answers from your old config.sh file..." >&4
2980                 tmp_n="$n"
2981                 tmp_c="$c"
2982                 tmp_sh="$sh"
2983                 . ./config.sh
2984                 cp config.sh UU
2985                 n="$tmp_n"
2986                 c="$tmp_c"
2987                 : Older versions did not always set $sh.  Catch re-use of such
2988                 : an old config.sh.
2989                 case "$sh" in
2990                 '') sh="$tmp_sh" ;;
2991                 esac
2992                 hint=previous
2993                 ;;
2994         esac
2995 fi
2996 . ./UU/checkcc
2997 if test ! -f config.sh; then
2998         $cat <<EOM
2999
3000 First time through, eh?  I have some defaults handy for some systems
3001 that need some extra help getting the Configure answers right:
3002
3003 EOM
3004         (cd $src/hints; ls -C *.sh) | $sed 's/\.sh/   /g' >&4
3005         dflt=''
3006         : Half the following guesses are probably wrong... If you have better
3007         : tests or hints, please send them to perlbug@perl.org
3008         : The metaconfig authors would also appreciate a copy...
3009         $test -f /irix && osname=irix
3010         $test -f /xenix && osname=sco_xenix
3011         $test -f /dynix && osname=dynix
3012         $test -f /dnix && osname=dnix
3013         $test -f /lynx.os && osname=lynxos
3014         $test -f /unicos && osname=unicos && osvers=`$uname -r`
3015         $test -f /unicosmk && osname=unicosmk && osvers=`$uname -r`
3016         $test -f /unicosmk.ar && osname=unicosmk && osvers=`$uname -r`
3017         $test -f /bin/mips && /bin/mips && osname=mips
3018         $test -d /NextApps && set X `hostinfo | grep 'NeXT Mach.*:' | \
3019                 $sed -e 's/://' -e 's/\./_/'` && osname=next && osvers=$4
3020         $test -d /usr/apollo/bin && osname=apollo
3021         $test -f /etc/saf/_sactab && osname=svr4
3022         $test -d /usr/include/minix && osname=minix
3023         $test -f /system/gnu_library/bin/ar.pm && osname=vos
3024         if $test -d /MachTen -o -d /MachTen_Folder; then
3025                 osname=machten
3026                 if $test -x /sbin/version; then
3027                         osvers=`/sbin/version | $awk '{print $2}' |
3028                         $sed -e 's/[A-Za-z]$//'`
3029                 elif $test -x /usr/etc/version; then
3030                         osvers=`/usr/etc/version | $awk '{print $2}' |
3031                         $sed -e 's/[A-Za-z]$//'`
3032                 else
3033                         osvers="$2.$3"
3034                 fi
3035         fi
3036
3037         $test -f /sys/posix.dll &&
3038                 $test -f /usr/bin/what &&
3039                 set X `/usr/bin/what /sys/posix.dll` &&
3040                 $test "$3" = UWIN &&
3041                 osname=uwin &&
3042                 osvers="$5"
3043
3044         if $test -f $uname; then
3045                 set X $myuname
3046                 shift
3047
3048                 case "$5" in
3049                 fps*) osname=fps ;;
3050                 mips*)
3051                         case "$4" in
3052                         umips) osname=umips ;;
3053                         *) osname=mips ;;
3054                         esac;;
3055                 [23]100) osname=mips ;;
3056                 next*) osname=next ;;
3057                 i386*)
3058                         tmp=`/bin/uname -X 2>/dev/null|awk '/3\.2v[45]/{ print $(NF) }'`
3059                         if $test "$tmp" != "" -a "$3" = "3.2" -a -f '/etc/systemid'; then
3060                                 osname='sco'
3061                                 osvers=$tmp
3062                         elif $test -f /etc/kconfig; then
3063                                 osname=isc
3064                                 if test "$lns" = "$ln -s"; then
3065                                         osvers=4
3066                                 elif $contains _SYSV3 /usr/include/stdio.h > /dev/null 2>&1 ; then
3067                                         osvers=3
3068                                 elif $contains _POSIX_SOURCE /usr/include/stdio.h > /dev/null 2>&1 ; then
3069                                         osvers=2
3070                                 fi
3071                         fi
3072                         tmp=''
3073                         ;;
3074                 pc*)
3075                         if test -n "$DJGPP"; then
3076                                 osname=dos
3077                                 osvers=djgpp
3078                         fi
3079                         ;;
3080                 esac
3081
3082                 case "$1" in
3083                 aix) osname=aix
3084                         tmp=`( (oslevel) 2>/dev/null || echo "not found") 2>&1`
3085                         case "$tmp" in
3086                         # oslevel can fail with:
3087                         # oslevel: Unable to acquire lock.
3088                         *not\ found) osvers="$4"."$3" ;;
3089                         '<3240'|'<>3240') osvers=3.2.0 ;;
3090                         '=3240'|'>3240'|'<3250'|'<>3250') osvers=3.2.4 ;;
3091                         '=3250'|'>3250') osvers=3.2.5 ;;
3092                         *) osvers=$tmp;;
3093                         esac
3094                         ;;
3095                 bsd386) osname=bsd386
3096                         osvers=`$uname -r`
3097                         ;;
3098                 cygwin*) osname=cygwin
3099                         osvers="$3"
3100                         ;;
3101                 *dc.osx) osname=dcosx
3102                         osvers="$3"
3103                         ;;
3104                 dnix) osname=dnix
3105                         osvers="$3"
3106                         ;;
3107                 domainos) osname=apollo
3108                         osvers="$3"
3109                         ;;
3110                 dgux)   osname=dgux 
3111                         osvers="$3"
3112                         ;;
3113                 dynixptx*) osname=dynixptx
3114                         osvers=`echo "$4"|sed 's/^v//'`
3115                         ;;
3116                 freebsd) osname=freebsd 
3117                         osvers="$3" ;;
3118                 genix)  osname=genix ;;
3119                 gnu)    osname=gnu
3120                         osvers="$3" ;;
3121                 hp*)    osname=hpux 
3122                         osvers=`echo "$3" | $sed 's,.*\.\([0-9]*\.[0-9]*\),\1,'`
3123                         ;;
3124                 irix*)  osname=irix
3125                         case "$3" in
3126                         4*) osvers=4 ;;
3127                         5*) osvers=5 ;;
3128                         *)      osvers="$3" ;;
3129                         esac
3130                         ;;
3131                 linux)  osname=linux
3132                         case "$3" in
3133                         *)      osvers="$3" ;;
3134                         esac
3135                         ;;
3136                 MiNT)   osname=mint
3137                         ;;
3138                 netbsd*) osname=netbsd
3139                         osvers="$3"
3140                         ;;
3141                 news-os) osvers="$3"
3142                         case "$3" in
3143                         4*) osname=newsos4 ;;
3144                         *) osname=newsos ;;
3145                         esac
3146                         ;;
3147                 next*) osname=next ;;
3148                 nonstop-ux) osname=nonstopux ;;
3149                 openbsd) osname=openbsd
3150                         osvers="$3"
3151                         ;;
3152                 os2)    osname=os2
3153                         osvers="$4"
3154                         ;;
3155                 POSIX-BC | posix-bc ) osname=posix-bc
3156                         osvers="$3"
3157                         ;;
3158                 powerux | power_ux | powermax_os | powermaxos | \
3159                 powerunix | power_unix) osname=powerux
3160                         osvers="$3"
3161                         ;;
3162                 qnx) osname=qnx
3163                         osvers="$4"
3164                         ;;
3165                 solaris) osname=solaris
3166                         case "$3" in
3167                         5*) osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3168                         *)      osvers="$3" ;;
3169                         esac
3170                         ;;
3171                 sunos) osname=sunos
3172                         case "$3" in
3173                         5*) osname=solaris
3174                                 osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3175                         *)      osvers="$3" ;;
3176                         esac
3177                         ;;
3178                 titanos) osname=titanos
3179                         case "$3" in
3180                         1*) osvers=1 ;;
3181                         2*) osvers=2 ;;
3182                         3*) osvers=3 ;;
3183                         4*) osvers=4 ;;
3184                         *)      osvers="$3" ;;
3185                         esac
3186                         ;;
3187                 ultrix) osname=ultrix
3188                         osvers="$3"
3189                         ;;
3190                 osf1|mls+)      case "$5" in
3191                                 alpha)
3192                                         osname=dec_osf
3193                                         osvers=`sizer -v | awk -FUNIX '{print $2}' | awk '{print $1}' |  tr '[A-Z]' '[a-z]' | sed 's/^[xvt]//'`
3194                                         case "$osvers" in
3195                                         [1-9].[0-9]*) ;;
3196                                         *) osvers=`echo "$3" | sed 's/^[xvt]//'` ;;
3197                                         esac
3198                                         ;;
3199                         hp*)    osname=hp_osf1  ;;
3200                         mips)   osname=mips_osf1 ;;
3201                         esac
3202                         ;;
3203                 # UnixWare 7.1.2 is known as Open UNIX 8
3204                 openunix|unixware) osname=svr5
3205                         osvers="$4"
3206                         ;;
3207                 uts)    osname=uts
3208                         osvers="$3"
3209                         ;;
3210                 vos) osvers="$3"
3211                         ;;
3212                 $2) case "$osname" in
3213                         *isc*) ;;
3214                         *freebsd*) ;;
3215                         svr*)
3216                                 : svr4.x or possibly later
3217                                 case "svr$3" in 
3218                                 ${osname}*)
3219                                         osname=svr$3
3220                                         osvers=$4
3221                                         ;;
3222                                 esac
3223                                 case "$osname" in
3224                                 svr4.0)
3225                                         : Check for ESIX
3226                                         if test -f /stand/boot ; then
3227                                                 eval `grep '^INITPROG=[a-z/0-9]*$' /stand/boot`
3228                                                 if test -n "$INITPROG" -a -f "$INITPROG"; then
3229                         isesix=`strings -a $INITPROG|grep 'ESIX SYSTEM V/386 Release 4.0'`
3230                                                         if test -n "$isesix"; then
3231                                                                 osname=esix4
3232                                                         fi
3233                                                 fi
3234                                         fi
3235                                         ;;
3236                                 esac
3237                                 ;;
3238                         *)      if test -f /etc/systemid; then
3239                                         osname=sco
3240                                         set `echo $3 | $sed 's/\./ /g'` $4
3241                                         if $test -f $src/hints/sco_$1_$2_$3.sh; then
3242                                                 osvers=$1.$2.$3
3243                                         elif $test -f $src/hints/sco_$1_$2.sh; then
3244                                                 osvers=$1.$2
3245                                         elif $test -f $src/hints/sco_$1.sh; then
3246                                                 osvers=$1
3247                                         fi
3248                                 else
3249                                         case "$osname" in
3250                                         '') : Still unknown.  Probably a generic Sys V.
3251                                                 osname="sysv"
3252                                                 osvers="$3"
3253                                                 ;;
3254                                         esac
3255                                 fi
3256                                 ;;
3257                         esac
3258                         ;;
3259                 *)      case "$osname" in
3260                         '') : Still unknown.  Probably a generic BSD.
3261                                 osname="$1"
3262                                 osvers="$3"
3263                                 ;;
3264                         esac
3265                         ;;
3266                 esac
3267         else
3268                 if test -f /vmunix -a -f $src/hints/news_os.sh; then
3269                         (what /vmunix | UU/tr '[A-Z]' '[a-z]') > UU/kernel.what 2>&1
3270                         if $contains news-os UU/kernel.what >/dev/null 2>&1; then
3271                                 osname=news_os
3272                         fi
3273                         $rm -f UU/kernel.what
3274                 elif test -d c:/. -o -n "$is_os2" ; then
3275                         set X $myuname
3276                         osname=os2
3277                         osvers="$5"
3278                 fi
3279         fi
3280         
3281         case "$targetarch" in
3282         '') ;;
3283         *)  hostarch=$osname
3284             osname=`echo $targetarch|sed 's,^[^-]*-,,'`
3285             osvers=''
3286             ;;
3287         esac
3288
3289         : Now look for a hint file osname_osvers, unless one has been
3290         : specified already.
3291         case "$hintfile" in
3292         ''|' ')
3293                 file=`echo "${osname}_${osvers}" | $sed -e 's%\.%_%g' -e 's%_$%%'`
3294                 : Also try without trailing minor version numbers.
3295                 xfile=`echo $file | $sed -e 's%_[^_]*$%%'`
3296                 xxfile=`echo $xfile | $sed -e 's%_[^_]*$%%'`
3297                 xxxfile=`echo $xxfile | $sed -e 's%_[^_]*$%%'`
3298                 xxxxfile=`echo $xxxfile | $sed -e 's%_[^_]*$%%'`
3299                 case "$file" in
3300                 '') dflt=none ;;
3301                 *)  case "$osvers" in
3302                         '') dflt=$file
3303                                 ;;
3304                         *)  if $test -f $src/hints/$file.sh ; then
3305                                         dflt=$file
3306                                 elif $test -f $src/hints/$xfile.sh ; then
3307                                         dflt=$xfile
3308                                 elif $test -f $src/hints/$xxfile.sh ; then
3309                                         dflt=$xxfile
3310                                 elif $test -f $src/hints/$xxxfile.sh ; then
3311                                         dflt=$xxxfile
3312                                 elif $test -f $src/hints/$xxxxfile.sh ; then
3313                                         dflt=$xxxxfile
3314                                 elif $test -f "$src/hints/${osname}.sh" ; then
3315                                         dflt="${osname}"
3316                                 else
3317                                         dflt=none
3318                                 fi
3319                                 ;;
3320                         esac
3321                         ;;
3322                 esac
3323                 if $test -f Policy.sh ; then
3324                         case "$dflt" in
3325                         *Policy*) ;;
3326                         none) dflt="Policy" ;;
3327                         *) dflt="Policy $dflt" ;;
3328                         esac
3329                 fi
3330                 ;;
3331         *)
3332                 dflt=`echo $hintfile | $sed 's/\.sh$//'`
3333                 ;;
3334         esac
3335
3336         if $test -f Policy.sh ; then
3337                 $cat <<EOM
3338
3339 There's also a Policy hint file available, which should make the
3340 site-specific (policy) questions easier to answer.
3341 EOM
3342
3343         fi
3344
3345         $cat <<EOM
3346
3347 You may give one or more space-separated answers, or "none" if appropriate.
3348 A well-behaved OS will have no hints, so answering "none" or just "Policy"
3349 is a good thing.  DO NOT give a wrong version or a wrong OS.
3350
3351 EOM
3352
3353         rp="Which of these apply, if any?"
3354         . UU/myread
3355         tans=$ans
3356         for file in $tans; do
3357                 if $test X$file = XPolicy -a -f Policy.sh; then
3358                         . Policy.sh
3359                         $cat Policy.sh >> UU/config.sh
3360                 elif $test -f $src/hints/$file.sh; then
3361                         . $src/hints/$file.sh
3362                         $cat $src/hints/$file.sh >> UU/config.sh
3363                 elif $test X"$tans" = X -o X"$tans" = Xnone ; then
3364                         : nothing
3365                 else
3366                         : Give one chance to correct a possible typo.
3367                         echo "$file.sh does not exist"
3368                         dflt=$file
3369                         rp="hint to use instead?"
3370                         . UU/myread
3371                         for file in $ans; do
3372                                 if $test -f "$src/hints/$file.sh"; then
3373                                         . $src/hints/$file.sh
3374                                         $cat $src/hints/$file.sh >> UU/config.sh
3375                                 elif $test X$ans = X -o X$ans = Xnone ; then
3376                                         : nothing
3377                                 else
3378                                         echo "$file.sh does not exist -- ignored."
3379                                 fi
3380                         done
3381                 fi
3382         done
3383
3384         hint=recommended
3385         : Remember our hint file for later.
3386         if $test -f "$src/hints/$file.sh" ; then
3387                 hintfile="$file"
3388         else
3389                 hintfile=''
3390         fi
3391 fi
3392 cd UU
3393 ;;
3394 *)
3395         echo " "
3396         echo "Fetching default answers from $config_sh..." >&4
3397         tmp_n="$n"
3398         tmp_c="$c"
3399         cd ..
3400         cp $config_sh config.sh 2>/dev/null
3401         chmod +w config.sh
3402         . ./config.sh
3403         cd UU
3404         cp ../config.sh .
3405         n="$tmp_n"
3406         c="$tmp_c"
3407         hint=previous
3408         ;;
3409 esac
3410 test "$override" && . ./optdef.sh
3411
3412 : Restore computed paths
3413 for file in $loclist $trylist; do
3414         eval $file="\$_$file"
3415 done
3416
3417 cat << EOM
3418
3419 Configure uses the operating system name and version to set some defaults.
3420 The default value is probably right if the name rings a bell. Otherwise,
3421 since spelling matters for me, either accept the default or answer "none"
3422 to leave it blank.
3423
3424 EOM
3425 case "$osname" in
3426         ''|' ')
3427                 case "$hintfile" in
3428                 ''|' '|none) dflt=none ;;
3429                 *)  dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/_.*$//'` ;;
3430                 esac
3431                 ;;
3432         *) dflt="$osname" ;;
3433 esac
3434 rp="Operating system name?"
3435 . ./myread
3436 case "$ans" in
3437 none)  osname='' ;;
3438 *) osname=`echo "$ans" | $sed -e 's/[   ][      ]*/_/g' | ./tr '[A-Z]' '[a-z]'`;;
3439 esac
3440 echo " "
3441 case "$osvers" in
3442         ''|' ')
3443                 case "$hintfile" in
3444                 ''|' '|none) dflt=none ;;
3445                 *)      dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/^[^_]*//'`
3446                         dflt=`echo $dflt | $sed -e 's/^_//' -e 's/_/./g'`
3447                         case "$dflt" in
3448                         ''|' ') dflt=none ;;
3449                         esac
3450                         ;;
3451                 esac
3452                 ;;
3453         *) dflt="$osvers" ;;
3454 esac
3455 rp="Operating system version?"
3456 . ./myread
3457 case "$ans" in
3458 none)  osvers='' ;;
3459 *) osvers="$ans" ;;
3460 esac
3461
3462
3463 . ./posthint.sh
3464
3465 : who configured the system
3466 cf_time=`LC_ALL=C; LANGUAGE=C; export LC_ALL; export LANGUAGE; $date 2>&1`
3467 case "$cf_by" in
3468 "")
3469         cf_by=`(logname) 2>/dev/null`
3470         case "$cf_by" in
3471         "")
3472                 cf_by=`(whoami) 2>/dev/null`
3473                 case "$cf_by" in
3474                 "") cf_by=unknown ;;
3475                 esac ;;
3476         esac ;;
3477 esac
3478
3479 : set up the script used to warn in case of inconsistency
3480 cat <<EOS >whoa
3481 $startsh
3482 EOS
3483 cat <<'EOSC' >>whoa
3484 dflt=y
3485 echo " "
3486 echo "*** WHOA THERE!!! ***" >&4
3487 echo "    The $hint value for \$$var on this machine was \"$was\"!" >&4
3488 rp="    Keep the $hint value?"
3489 . ./myread
3490 case "$ans" in
3491 y) td=$was; tu=$was;;
3492 esac
3493 EOSC
3494
3495 : function used to set $1 to $val
3496 setvar='var=$1; eval "was=\$$1"; td=$define; tu=$undef;
3497 case "$val$was" in
3498 $define$undef) . ./whoa; eval "$var=\$td";;
3499 $undef$define) . ./whoa; eval "$var=\$tu";;
3500 *) eval "$var=$val";;
3501 esac'
3502
3503 case "$usesocks" in
3504 $define|true|[yY]*)     dflt='y';;
3505 *) dflt='n';;
3506 esac
3507 cat <<EOM
3508
3509 Perl can be built to use the SOCKS proxy protocol library.  To do so,
3510 Configure must be run with -Dusesocks.  If you use SOCKS you also need
3511 to use the PerlIO abstraction layer, this will be implicitly selected.
3512
3513 If this doesn't make any sense to you, just accept the default '$dflt'.
3514 EOM
3515 rp='Build Perl for SOCKS?'
3516 . ./myread
3517 case "$ans" in
3518 y|Y)    val="$define" ;;     
3519 *)      val="$undef" ;;
3520 esac
3521 set usesocks
3522 eval $setvar
3523
3524 case "$usesocks" in
3525 $define|true|[yY]*) useperlio="$define";;
3526 esac
3527
3528 case "$useperlio" in
3529 $define|true|[yY]*|'')  dflt='y';;
3530 *) dflt='n';;
3531 esac
3532 cat <<EOM
3533
3534 Previous version of $package used the standard IO mechanisms as
3535 defined in <stdio.h>.  Versions 5.003_02 and later of $package allow
3536 alternate IO mechanisms via the PerlIO abstraction layer, but the
3537 stdio mechanism is still available if needed.  The abstraction layer
3538 can use AT&T's sfio (if you already have sfio installed) or regular stdio.
3539 Using PerlIO with sfio may cause problems with some extension modules.
3540
3541 If this doesn't make any sense to you, just accept the default '$dflt'.
3542 EOM
3543 rp='Use the PerlIO abstraction layer?'
3544 . ./myread
3545 case "$ans" in
3546 y|Y) 
3547         val="$define"
3548         ;;
3549 *)      
3550         echo "Ok, doing things the stdio way."
3551         val="$undef"
3552         ;;
3553 esac
3554 set useperlio
3555 eval $setvar 
3556
3557 case "$usesocks" in
3558 $define|true|[yY]*)
3559         case "$useperlio" in
3560         $define|true|[yY]*) ;;
3561         *)      cat >&4 <<EOM
3562
3563 You are using the SOCKS proxy protocol library which means that you
3564 should also use the PerlIO layer.  You may be headed for trouble.
3565
3566 EOM
3567                 ;;
3568         esac
3569         ;;
3570 esac
3571
3572         
3573 case "$usethreads" in
3574 $define|true|[yY]*)     dflt='y';;
3575 *)     # Catch case where user specified ithreads or 5005threads but
3576        # forgot -Dusethreads (A.D. 4/2002)
3577        case "$useithreads$use5005threads" in
3578        *$define*)      
3579                 case "$useperlio" in
3580                 "$define")      dflt='y' ;;
3581                 *)              dflt='n' ;;
3582                 esac
3583                 ;;
3584        *)       dflt='n';;
3585        esac
3586        ;;
3587 esac
3588 cat <<EOM
3589
3590 Perl can be built to take advantage of threads on some systems.
3591 To do so, Configure can be run with -Dusethreads.
3592
3593 Note that Perl built with threading support runs slightly slower
3594 and uses more memory than plain Perl. The current implementation
3595 is believed to be stable, but it is fairly new, and so should be
3596 treated with caution.
3597
3598 If this doesn't make any sense to you, just accept the default '$dflt'.
3599 EOM
3600 rp='Build a threading Perl?'
3601 . ./myread
3602 case "$ans" in
3603 y|Y)    val="$define" ;;
3604 *)      val="$undef" ;;
3605 esac
3606 set usethreads
3607 eval $setvar
3608
3609 case "$usethreads" in
3610 $define)
3611         $cat <<EOM
3612
3613 Since release 5.6, Perl has had two different threading implementations,
3614 the newer interpreter-based version (ithreads) with one interpreter per
3615 thread, and the older 5.005 version (5005threads).
3616 The 5005threads version is effectively unmaintained and will probably be
3617 removed in Perl 5.10, so there should be no need to build a Perl using it
3618 unless needed for backwards compatibility with some existing 5.005threads
3619 code.
3620
3621 EOM
3622         : Default to ithreads unless overridden on command line or with
3623         : old config.sh
3624         dflt='y'
3625         case "$use5005threads" in
3626                 $define|true|[yY]*) dflt='n';;
3627         esac
3628         case "$useithreads" in
3629                 $undef|false|[nN]*) dflt='n';;
3630         esac
3631         rp='Use the newer interpreter-based ithreads?'
3632         . ./myread
3633         case "$ans" in
3634         y|Y)    val="$define" ;;
3635         *)      val="$undef" ;;
3636         esac
3637         set useithreads
3638         eval $setvar
3639         : Now set use5005threads to the opposite value.
3640         case "$useithreads" in
3641         $define) val="$undef" ;;
3642         *) val="$define" ;;
3643         esac
3644         set use5005threads
3645         eval $setvar
3646         ;;
3647 *)
3648         useithreads="$undef"
3649         use5005threads="$undef"
3650         ;;
3651 esac
3652
3653 case "$useithreads$use5005threads" in
3654 "$define$define")
3655         $cat >&4 <<EOM
3656
3657 You cannot have both the ithreads and the 5.005 threads enabled
3658 at the same time.  Disabling the 5.005 threads since they are
3659 much less stable than the ithreads.
3660
3661 EOM
3662         use5005threads="$undef"
3663         ;;
3664 esac
3665
3666 if test X"$usethreads" = "X$define" -a "X$useperlio" = "Xundef"; then
3667         cat >&4 <<EOF
3668 ***
3669 *** To build with ithreads you must also use the PerlIO layer.
3670 *** Cannot continue, aborting.
3671 ***
3672 EOF
3673         exit 1
3674 fi
3675
3676 case "$d_oldpthreads" in
3677 '')     : Configure tests would be welcome here.  For now, assume undef.
3678         val="$undef" ;;
3679 *)      val="$d_oldpthreads" ;;
3680 esac
3681 set d_oldpthreads
3682 eval $setvar
3683
3684
3685 : Look for a hint-file generated 'call-back-unit'.  If the
3686 : user has specified that a threading perl is to be built,
3687 : we may need to set or change some other defaults.
3688 if $test -f usethreads.cbu; then
3689     echo "Your platform has some specific hints regarding threaded builds, using them..."
3690     . ./usethreads.cbu
3691 else
3692     case "$usethreads" in
3693         "$define"|true|[yY]*)
3694                 $cat <<EOM
3695 (Your platform does not have any specific hints for threaded builds.
3696  Assuming POSIX threads, then.)
3697 EOM
3698         ;;
3699     esac
3700 fi
3701
3702 cat <<EOM
3703
3704 Perl can be built so that multiple Perl interpreters can coexist
3705 within the same Perl executable.
3706 EOM
3707
3708 case "$useithreads" in
3709 $define)
3710         cat <<EOM
3711 This multiple interpreter support is required for interpreter-based threads.
3712 EOM
3713         val="$define"
3714         ;;
3715 *)      case "$usemultiplicity" in
3716         $define|true|[yY]*)     dflt='y';;
3717         *) dflt='n';;
3718         esac
3719         echo " "
3720         echo "If this doesn't make any sense to you, just accept the default '$dflt'."
3721         rp='Build Perl for multiplicity?'
3722         . ./myread
3723         case "$ans" in
3724         y|Y)    val="$define" ;;
3725         *)      val="$undef" ;;
3726         esac
3727         ;;
3728 esac
3729 set usemultiplicity
3730 eval $setvar
3731
3732
3733 case "$usemorebits" in
3734 "$define"|true|[yY]*)
3735         use64bitint="$define"
3736         uselongdouble="$define"
3737         usemorebits="$define"
3738         ;;
3739 *)      usemorebits="$undef"
3740         ;;
3741 esac
3742
3743 : make some quick guesses about what we are up against
3744 echo " "
3745 $echo $n "Hmm...  $c"
3746 echo exit 1 >bsd
3747 echo exit 1 >usg
3748 echo exit 1 >v7
3749 echo exit 1 >osf1
3750 echo exit 1 >eunice
3751 echo exit 1 >xenix
3752 echo exit 1 >venix
3753 echo exit 1 >os2
3754 d_bsd="$undef"
3755 $cat /usr/include/signal.h /usr/include/sys/signal.h >foo 2>/dev/null
3756 if test -f /osf_boot || $contains 'OSF/1' /usr/include/ctype.h >/dev/null 2>&1
3757 then
3758         echo "Looks kind of like an OSF/1 system, but we'll see..."
3759         echo exit 0 >osf1
3760 elif test `echo abc | $tr a-z A-Z` = Abc ; then
3761         xxx=`./loc addbib blurfl $pth`
3762         if $test -f $xxx; then
3763         echo "Looks kind of like a USG system with BSD features, but we'll see..."
3764                 echo exit 0 >bsd
3765                 echo exit 0 >usg
3766         else
3767                 if $contains SIGTSTP foo >/dev/null 2>&1 ; then
3768                         echo "Looks kind of like an extended USG system, but we'll see..."
3769                 else
3770                         echo "Looks kind of like a USG system, but we'll see..."
3771                 fi
3772                 echo exit 0 >usg
3773         fi
3774 elif $contains SIGTSTP foo >/dev/null 2>&1 ; then
3775         echo "Looks kind of like a BSD system, but we'll see..."
3776         d_bsd="$define"
3777         echo exit 0 >bsd
3778 else
3779         echo "Looks kind of like a Version 7 system, but we'll see..."
3780         echo exit 0 >v7
3781 fi
3782 case "$eunicefix" in
3783 *unixtovms*)
3784         $cat <<'EOI'
3785 There is, however, a strange, musty smell in the air that reminds me of
3786 something...hmm...yes...I've got it...there's a VMS nearby, or I'm a Blit.
3787 EOI
3788         echo exit 0 >eunice
3789         d_eunice="$define"
3790 : it so happens the Eunice I know will not run shell scripts in Unix format
3791         ;;
3792 *)
3793         echo " "
3794         echo "Congratulations.  You aren't running Eunice."
3795         d_eunice="$undef"
3796         ;;
3797 esac
3798 : Detect OS2.  The p_ variable is set above in the Head.U unit.
3799 : Note that this also -- wrongly -- detects e.g. dos-djgpp, which also uses
3800 : semicolon as a patch separator
3801 case "$p_" in
3802 :) ;;
3803 *)
3804         $cat <<'EOI'
3805 I have the feeling something is not exactly right, however...don't tell me...
3806 lemme think...does HAL ring a bell?...no, of course, you're only running OS/2!
3807 (Or you may be running DOS with DJGPP.)
3808 EOI
3809         echo exit 0 >os2
3810         ;;
3811 esac
3812 if test -f /xenix; then
3813         echo "Actually, this looks more like a XENIX system..."
3814         echo exit 0 >xenix
3815         d_xenix="$define"
3816 else
3817         echo " "
3818         echo "It's not Xenix..."
3819         d_xenix="$undef"
3820 fi
3821 chmod +x xenix
3822 $eunicefix xenix
3823 if test -f /venix; then
3824         echo "Actually, this looks more like a VENIX system..."
3825         echo exit 0 >venix
3826 else
3827         echo " "
3828         if ./xenix; then
3829                 : null
3830         else
3831                 echo "Nor is it Venix..."
3832         fi
3833 fi
3834 chmod +x bsd usg v7 osf1 eunice xenix venix os2
3835 $eunicefix bsd usg v7 osf1 eunice xenix venix os2
3836 $rm -f foo
3837
3838 case "$cc" in
3839 '') dflt=cc;;
3840 *) dflt="$cc";;
3841 esac
3842 rp="Use which C compiler?"
3843 . ./myread
3844 cc="$ans"
3845
3846 : See if they have not cc but they do have gcc
3847 . ./trygcc
3848 : Look for a hint-file generated 'call-back-unit'.  Now that the
3849 : user has specified the compiler, we may need to set or change some
3850 : other defaults.
3851 if $test -f cc.cbu; then
3852     . ./cc.cbu
3853 fi
3854 . ./checkcc
3855
3856 echo " "
3857 echo "Checking for GNU cc in disguise and/or its version number..." >&4
3858 $cat >try.c <<EOM
3859 #include <stdio.h>
3860 int main() {
3861 #ifdef __GNUC__
3862 #ifdef __VERSION__
3863         printf("%s\n", __VERSION__);
3864 #else
3865         printf("%s\n", "1");
3866 #endif
3867 #endif
3868         return(0);
3869 }
3870 EOM
3871 if $cc -o try $ccflags $ldflags try.c; then
3872         gccversion=`$run ./try`
3873         case "$gccversion" in
3874         '') echo "You are not using GNU cc." ;;
3875         *)  echo "You are using GNU cc $gccversion."
3876             ccname=gcc
3877             ;;
3878         esac
3879 else
3880         echo " "
3881         echo "*** WHOA THERE!!! ***" >&4
3882         echo "    Your C compiler \"$cc\" doesn't seem to be working!" >&4
3883         case "$knowitall" in
3884         '')
3885         echo "    You'd better start hunting for one and let me know about it." >&4
3886                 exit 1
3887                 ;;
3888         esac
3889 fi
3890 $rm -f try try.*
3891 case "$gccversion" in
3892 1*) cpp=`./loc gcc-cpp $cpp $pth` ;;
3893 esac
3894 case "$gccversion" in
3895 '') gccosandvers='' ;;
3896 *) gccshortvers=`echo "$gccversion"|sed 's/ .*//'`
3897    gccosandvers=`$cc -v 2>&1|grep '/specs$'|sed "s!.*/[^-/]*-[^-/]*-\([^-/]*\)/$gccshortvers/specs!\1!"`
3898    gccshortvers=''
3899    case "$gccosandvers" in
3900    $osname) gccosandvers='' ;; # linux gccs seem to have no linux osvers, grr
3901    $osname$osvers) ;; # looking good
3902    $osname*) cat <<EOM >&4
3903
3904 *** WHOA THERE!!! ***
3905
3906     Your gcc has not been compiled for the exact release of
3907     your operating system ($gccosandvers versus $osname$osvers).
3908
3909     In general it is a good idea to keep gcc synchronized with
3910     the operating system because otherwise serious problems
3911     may ensue when trying to compile software, like Perl.
3912
3913     I'm trying to be optimistic here, though, and will continue.
3914     If later during the configuration and build icky compilation
3915     problems appear (headerfile conflicts being the most common
3916     manifestation), I suggest reinstalling the gcc to match
3917     your operating system release.
3918
3919 EOM
3920       ;;
3921    *) gccosandvers='' ;; # failed to parse, better be silent
3922    esac
3923    ;;
3924 esac
3925 case "$ccname" in
3926 '') ccname="$cc" ;;
3927 esac
3928
3929 # gcc 3.* complain about adding -Idirectories that they already know about,
3930 # so we will take those off from locincpth.
3931 case "$gccversion" in
3932 3*)
3933     echo "main(){}">try.c
3934     for incdir in $locincpth; do
3935        warn=`$cc $ccflags -I$incdir -c try.c 2>&1 | \
3936              grep '^c[cp]p*[01]: warning: changing search order '`
3937        if test "X$warn" != X; then
3938            locincpth=`echo " $locincpth " | sed "s! $incdir ! !"`
3939        fi
3940     done
3941     $rm -f try try.*
3942 esac
3943
3944 : decide how portable to be.  Allow command line overrides.
3945 case "$d_portable" in
3946 "$undef") ;;
3947 *)      d_portable="$define" ;;
3948 esac
3949
3950 : set up shell script to do ~ expansion
3951 cat >filexp <<EOSS
3952 $startsh
3953 : expand filename
3954 case "\$1" in
3955  ~/*|~)
3956         echo \$1 | $sed "s|~|\${HOME-\$LOGDIR}|"
3957         ;;
3958  ~*)
3959         if $test -f /bin/csh; then
3960                 /bin/csh -f -c "glob \$1"
3961                 failed=\$?
3962                 echo ""
3963                 exit \$failed
3964         else
3965                 name=\`$expr x\$1 : '..\([^/]*\)'\`
3966                 dir=\`$sed -n -e "/^\${name}:/{s/^[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:\([^:]*\).*"'\$'"/\1/" -e p -e q -e '}' </etc/passwd\`
3967                 if $test ! -d "\$dir"; then
3968                         me=\`basename \$0\`
3969                         echo "\$me: can't locate home directory for: \$name" >&2
3970                         exit 1
3971                 fi
3972                 case "\$1" in
3973                 */*)
3974                         echo \$dir/\`$expr x\$1 : '..[^/]*/\(.*\)'\`
3975                         ;;
3976                 *)
3977                         echo \$dir
3978                         ;;
3979                 esac
3980         fi
3981         ;;
3982 *)
3983         echo \$1
3984         ;;
3985 esac
3986 EOSS
3987 chmod +x filexp
3988 $eunicefix filexp
3989
3990 : now set up to get a file name
3991 cat <<EOS >getfile
3992 $startsh
3993 EOS
3994 cat <<'EOSC' >>getfile
3995 tilde=''
3996 fullpath=''
3997 already=''
3998 skip=''
3999 none_ok=''
4000 exp_file=''
4001 nopath_ok=''
4002 orig_rp="$rp"
4003 orig_dflt="$dflt"
4004 case "$gfpth" in
4005 '') gfpth='.' ;;
4006 esac
4007
4008 case "$fn" in
4009 *\(*)
4010         : getfile will accept an answer from the comma-separated list
4011         : enclosed in parentheses even if it does not meet other criteria.
4012         expr "$fn" : '.*(\(.*\)).*' | $tr ',' $trnl >getfile.ok
4013         fn=`echo $fn | sed 's/(.*)//'`
4014         ;;
4015 esac
4016
4017 case "$fn" in
4018 *:*)
4019         loc_file=`expr $fn : '.*:\(.*\)'`
4020         fn=`expr $fn : '\(.*\):.*'`
4021         ;;
4022 esac
4023
4024 case "$fn" in
4025 *~*) tilde=true;;
4026 esac
4027 case "$fn" in
4028 */*) fullpath=true;;
4029 esac
4030 case "$fn" in
4031 *+*) skip=true;;
4032 esac
4033 case "$fn" in
4034 *n*) none_ok=true;;
4035 esac
4036 case "$fn" in
4037 *e*) exp_file=true;;
4038 esac
4039 case "$fn" in
4040 *p*) nopath_ok=true;;
4041 esac
4042
4043 case "$fn" in
4044 *f*) type='File';;
4045 *d*) type='Directory';;
4046 *l*) type='Locate';;
4047 esac
4048
4049 what="$type"
4050 case "$what" in
4051 Locate) what='File';;
4052 esac
4053
4054 case "$exp_file" in
4055 '')
4056         case "$d_portable" in
4057         "$define") ;;
4058         *) exp_file=true;;
4059         esac
4060         ;;
4061 esac
4062
4063 cd ..
4064 while test "$type"; do
4065         redo=''
4066         rp="$orig_rp"
4067         dflt="$orig_dflt"
4068         case "$tilde" in
4069         true) rp="$rp (~name ok)";;
4070         esac
4071         . UU/myread
4072         if test -f UU/getfile.ok && \
4073                 $contains "^$ans\$" UU/getfile.ok >/dev/null 2>&1
4074         then
4075                 value="$ans"
4076                 ansexp="$ans"
4077                 break
4078         fi
4079         case "$ans" in
4080         none)
4081                 value=''
4082                 ansexp=''
4083                 case "$none_ok" in
4084                 true) type='';;
4085                 esac
4086                 ;;
4087         *)
4088                 case "$tilde" in
4089                 '') value="$ans"
4090                         ansexp="$ans";;
4091                 *)
4092                         value=`UU/filexp $ans`
4093                         case $? in
4094                         0)
4095                                 if test "$ans" != "$value"; then
4096                                         echo "(That expands to $value on this system.)"
4097                                 fi
4098                                 ;;
4099                         *) value="$ans";;
4100                         esac
4101                         ansexp="$value"
4102                         case "$exp_file" in
4103                         '') value="$ans";;
4104                         esac
4105                         ;;
4106                 esac
4107                 case "$fullpath" in
4108                 true)
4109                         case "$ansexp" in
4110                         /*) value="$ansexp" ;;
4111                         [a-zA-Z]:/*) value="$ansexp" ;;
4112                         *)
4113                                 redo=true
4114                                 case "$already" in
4115                                 true)
4116                                 echo "I shall only accept a full path name, as in /bin/ls." >&4
4117                                 echo "Use a ! shell escape if you wish to check pathnames." >&4
4118                                         ;;
4119                                 *)
4120                                 echo "Please give a full path name, starting with slash." >&4
4121                                         case "$tilde" in
4122                                         true)
4123                                 echo "Note that using ~name is ok provided it expands well." >&4
4124                                                 already=true
4125                                                 ;;
4126                                         esac
4127                                 esac
4128                                 ;;
4129                         esac
4130                         ;;
4131                 esac
4132                 case "$redo" in
4133                 '')
4134                         case "$type" in
4135                         File)
4136                                 for fp in $gfpth; do
4137                                         if test "X$fp" = X.; then
4138                                             pf="$ansexp"
4139                                         else    
4140                                             pf="$fp/$ansexp"
4141                                         fi
4142                                         if test -f "$pf"; then
4143                                                 type=''
4144                                         elif test -r "$pf" || (test -h "$pf") >/dev/null 2>&1
4145                                         then
4146                                                 echo "($value is not a plain file, but that's ok.)"
4147                                                 type=''
4148                                         fi
4149                                         if test X"$type" = X; then
4150                                             value="$pf"
4151                                             break
4152                                         fi
4153                                 done
4154                                 ;;
4155                         Directory)
4156                                 for fp in $gfpth; do
4157                                         if test "X$fp" = X.; then
4158                                             dir="$ans"
4159                                             direxp="$ansexp"
4160                                         else    
4161                                             dir="$fp/$ansexp"
4162                                             direxp="$fp/$ansexp"
4163                                         fi
4164                                         if test -d "$direxp"; then
4165                                                 type=''
4166                                                 value="$dir"
4167                                                 break
4168                                         fi
4169                                 done
4170                                 ;;
4171                         Locate)
4172                                 if test -d "$ansexp"; then
4173                                         echo "(Looking for $loc_file in directory $value.)"
4174                                         value="$value/$loc_file"
4175                                         ansexp="$ansexp/$loc_file"
4176                                 fi
4177                                 if test -f "$ansexp"; then
4178                                         type=''
4179                                 fi
4180                                 case "$nopath_ok" in
4181                                 true)   case "$value" in
4182                                         */*) ;;
4183                                         *)      echo "Assuming $value will be in people's path."
4184                                                 type=''
4185                                                 ;;
4186                                         esac
4187                                         ;;
4188                                 esac
4189                                 ;;
4190                         esac
4191
4192                         case "$skip" in
4193                         true) type='';
4194                         esac
4195
4196                         case "$type" in
4197                         '') ;;
4198                         *)
4199                                 if test "$fastread" = yes; then
4200                                         dflt=y
4201                                 else
4202                                         dflt=n
4203                                 fi
4204                                 rp="$what $value doesn't exist.  Use that name anyway?"
4205                                 . UU/myread
4206                                 dflt=''
4207                                 case "$ans" in
4208                                 y*) type='';;
4209                                 *) echo " ";;
4210                                 esac
4211                                 ;;
4212                         esac
4213                         ;;
4214                 esac
4215                 ;;
4216         esac
4217 done
4218 cd UU
4219 ans="$value"
4220 rp="$orig_rp"
4221 dflt="$orig_dflt"
4222 rm -f getfile.ok
4223 test "X$gfpthkeep" != Xy && gfpth=""
4224 EOSC
4225
4226 : What should the include directory be ?
4227 echo " "
4228 $echo $n "Hmm...  $c"
4229 dflt='/usr/include'
4230 incpath=''
4231 mips_type=''
4232 if $test -f /bin/mips && /bin/mips; then
4233         echo "Looks like a MIPS system..."
4234         $cat >usr.c <<'EOCP'
4235 #ifdef SYSTYPE_BSD43
4236 /bsd43
4237 #endif
4238 EOCP
4239         if cc -E usr.c > usr.out && $contains / usr.out >/dev/null 2>&1; then
4240                 dflt='/bsd43/usr/include'
4241                 incpath='/bsd43'
4242                 mips_type='BSD 4.3'
4243         else
4244                 mips_type='System V'
4245         fi
4246         $rm -f usr.c usr.out
4247         echo "and you're compiling with the $mips_type compiler and libraries."
4248         xxx_prompt=y
4249         echo "exit 0" >mips
4250 else
4251         echo "Doesn't look like a MIPS system."
4252         xxx_prompt=n
4253         echo "exit 1" >mips
4254 fi
4255 chmod +x mips
4256 $eunicefix mips
4257 case "$usrinc" in
4258 '') ;;
4259 *) dflt="$usrinc";;
4260 esac
4261 case "$xxx_prompt" in
4262 y)      fn=d/
4263         echo " "
4264         rp='Where are the include files you want to use?'
4265         . ./getfile
4266         usrinc="$ans"
4267         ;;
4268 *)      usrinc="$dflt"
4269         ;;
4270 esac
4271
4272 : see how we invoke the C preprocessor
4273 echo " "
4274 echo "Now, how can we feed standard input to your C preprocessor..." >&4
4275 cat <<'EOT' >testcpp.c
4276 #define ABC abc
4277 #define XYZ xyz
4278 ABC.XYZ
4279 EOT
4280 cd ..
4281 if test ! -f cppstdin; then
4282         if test "X$osname" = "Xaix" -a "X$gccversion" = X; then
4283                 # AIX cc -E doesn't show the absolute headerfile
4284                 # locations but we'll cheat by using the -M flag.
4285                 echo 'cat >.$$.c; rm -f .$$.u; '"$cc"' ${1+"$@"} -M -c .$$.c 2>/dev/null; test -s .$$.u && awk '"'"'$2 ~ /\.h$/ { print "# 0 \""$2"\"" }'"'"' .$$.u; rm -f .$$.o .$$.u; '"$cc"' -E ${1+"$@"} .$$.c; rm .$$.c' > cppstdin
4286         else
4287                 echo 'cat >.$$.c; '"$cc"' -E ${1+"$@"} .$$.c; rm .$$.c' >cppstdin
4288         fi
4289 else
4290         echo "Keeping your $hint cppstdin wrapper."
4291 fi
4292 chmod 755 cppstdin
4293 wrapper=`pwd`/cppstdin
4294 ok='false'
4295 cd UU
4296
4297 if $test "X$cppstdin" != "X" && \
4298         $cppstdin $cppminus <testcpp.c >testcpp.out 2>&1 && \
4299         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4300 then
4301         echo "You used to use $cppstdin $cppminus so we'll use that again."
4302         case "$cpprun" in
4303         '') echo "But let's see if we can live without a wrapper..." ;;
4304         *)
4305                 if $cpprun $cpplast <testcpp.c >testcpp.out 2>&1 && \
4306                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4307                 then
4308                         echo "(And we'll use $cpprun $cpplast to preprocess directly.)"
4309                         ok='true'
4310                 else
4311                         echo "(However, $cpprun $cpplast does not work, let's see...)"
4312                 fi
4313                 ;;
4314         esac
4315 else
4316         case "$cppstdin" in
4317         '') ;;
4318         *)
4319                 echo "Good old $cppstdin $cppminus does not seem to be of any help..."
4320                 ;;
4321         esac
4322 fi
4323
4324 if $ok; then
4325         : nothing
4326 elif echo 'Maybe "'"$cc"' -E" will work...'; \
4327         $cc -E <testcpp.c >testcpp.out 2>&1; \
4328         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4329         echo "Yup, it does."
4330         x_cpp="$cc -E"
4331         x_minus='';
4332 elif echo 'Nope...maybe "'"$cc"' -E -" will work...'; \
4333         $cc -E - <testcpp.c >testcpp.out 2>&1; \
4334         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4335         echo "Yup, it does."
4336         x_cpp="$cc -E"
4337         x_minus='-';
4338 elif echo 'Nope...maybe "'"$cc"' -P" will work...'; \
4339         $cc -P <testcpp.c >testcpp.out 2>&1; \
4340         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4341         echo "Yipee, that works!"
4342         x_cpp="$cc -P"
4343         x_minus='';
4344 elif echo 'Nope...maybe "'"$cc"' -P -" will work...'; \
4345         $cc -P - <testcpp.c >testcpp.out 2>&1; \
4346         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4347         echo "At long last!"
4348         x_cpp="$cc -P"
4349         x_minus='-';
4350 elif echo 'No such luck, maybe "'$cpp'" will work...'; \
4351         $cpp <testcpp.c >testcpp.out 2>&1; \
4352         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4353         echo "It works!"
4354         x_cpp="$cpp"
4355         x_minus='';
4356 elif echo 'Nixed again...maybe "'$cpp' -" will work...'; \
4357         $cpp - <testcpp.c >testcpp.out 2>&1; \
4358         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4359         echo "Hooray, it works!  I was beginning to wonder."
4360         x_cpp="$cpp"
4361         x_minus='-';
4362 elif echo 'Uh-uh.  Time to get fancy.  Trying a wrapper...'; \
4363         $wrapper <testcpp.c >testcpp.out 2>&1; \
4364         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4365         x_cpp="$wrapper"
4366         x_minus=''
4367         echo "Eureka!"
4368 else
4369         dflt=''
4370         rp="No dice.  I can't find a C preprocessor.  Name one:"
4371         . ./myread
4372         x_cpp="$ans"
4373         x_minus=''
4374         $x_cpp <testcpp.c >testcpp.out 2>&1
4375         if $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4376                 echo "OK, that will do." >&4
4377         else
4378 echo "Sorry, I can't get that to work.  Go find one and rerun Configure." >&4
4379                 exit 1
4380         fi
4381 fi
4382
4383 case "$ok" in
4384 false)
4385         cppstdin="$x_cpp"
4386         cppminus="$x_minus"
4387         cpprun="$x_cpp"
4388         cpplast="$x_minus"
4389         set X $x_cpp
4390         shift
4391         case "$1" in
4392         "$cpp")
4393                 echo "Perhaps can we force $cc -E using a wrapper..."
4394                 if $wrapper <testcpp.c >testcpp.out 2>&1; \
4395                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4396                 then
4397                         echo "Yup, we can."
4398                         cppstdin="$wrapper"
4399                         cppminus='';
4400                 else
4401                         echo "Nope, we'll have to live without it..."
4402                 fi
4403                 ;;
4404         esac
4405         case "$cpprun" in
4406         "$wrapper")
4407                 cpprun=''
4408                 cpplast=''
4409                 ;;
4410         esac
4411         ;;
4412 esac
4413
4414 case "$cppstdin" in
4415 "$wrapper"|'cppstdin') ;;
4416 *) $rm -f $wrapper;;
4417 esac
4418 $rm -f testcpp.c testcpp.out
4419
4420 : Set private lib path
4421 case "$plibpth" in
4422 '') if ./mips; then
4423                 plibpth="$incpath/usr/lib /usr/local/lib /usr/ccs/lib"
4424         fi;;
4425 esac
4426 case "$libpth" in
4427 ' ') dlist='';;
4428 '') dlist="$loclibpth $plibpth $glibpth";;
4429 *) dlist="$libpth";;
4430 esac
4431
4432 : Now check and see which directories actually exist, avoiding duplicates
4433 libpth=''
4434 for xxx in $dlist
4435 do
4436     if $test -d $xxx; then
4437                 case " $libpth " in
4438                 *" $xxx "*) ;;
4439                 *) libpth="$libpth $xxx";;
4440                 esac
4441     fi
4442 done
4443 $cat <<'EOM'
4444
4445 Some systems have incompatible or broken versions of libraries.  Among
4446 the directories listed in the question below, please remove any you
4447 know not to be holding relevant libraries, and add any that are needed.
4448 Say "none" for none.
4449
4450 EOM
4451 case "$libpth" in
4452 '') dflt='none';;
4453 *)
4454         set X $libpth
4455         shift
4456         dflt=${1+"$@"}
4457         ;;
4458 esac
4459 rp="Directories to use for library searches?"
4460 . ./myread
4461 case "$ans" in
4462 none) libpth=' ';;
4463 *) libpth="$ans";;
4464 esac
4465
4466 : compute shared library extension
4467 case "$so" in
4468 '')
4469         if xxx=`./loc libc.sl X $libpth`; $test -f "$xxx"; then
4470                 dflt='sl'
4471         else
4472                 dflt='so'
4473         fi
4474         ;;
4475 *) dflt="$so";;
4476 esac
4477 $cat <<EOM
4478
4479 On some systems, shared libraries may be available.  Answer 'none' if
4480 you want to suppress searching of shared libraries for the remainder
4481 of this configuration.
4482
4483 EOM
4484 rp='What is the file extension used for shared libraries?'
4485 . ./myread
4486 so="$ans"
4487
4488 : Define several unixisms.
4489 : Hints files or command line option can be used to override them.
4490 : The convoluted testing is in case hints files set either the old
4491 : or the new name.
4492 case "$_exe" in
4493 '')     case "$exe_ext" in
4494         '')     ;;
4495         *)      _exe="$exe_ext" ;;
4496         esac
4497         ;;
4498 esac
4499 case "$_a" in
4500 '')     case "$lib_ext" in
4501     '') _a='.a';;
4502         *)      _a="$lib_ext" ;;
4503         esac
4504         ;;
4505 esac
4506 case "$_o" in
4507 '') case "$obj_ext" in
4508         '')     _o='.o';;
4509         *)      _o="$obj_ext";;
4510         esac
4511         ;;
4512 esac
4513 case "$p_" in
4514 '') case "$path_sep" in
4515         '')     p_=':';;
4516         *)      p_="$path_sep";;
4517         esac
4518         ;;
4519 esac
4520 exe_ext=$_exe
4521 lib_ext=$_a
4522 obj_ext=$_o
4523 path_sep=$p_
4524
4525 : Which makefile gets called first.  This is used by make depend.
4526 case "$firstmakefile" in
4527 '') firstmakefile='makefile';;
4528 esac
4529
4530 case "$ccflags" in
4531 *-DUSE_LONG_DOUBLE*|*-DUSE_MORE_BITS*) uselongdouble="$define" ;;
4532 esac
4533
4534 case "$uselongdouble" in
4535 $define|true|[yY]*)     dflt='y';;
4536 *) dflt='n';;
4537 esac
4538 cat <<EOM
4539
4540 Perl can be built to take advantage of long doubles which
4541 (if available) may give more accuracy and range for floating point numbers.
4542
4543 If this doesn't make any sense to you, just accept the default '$dflt'.
4544 EOM
4545 rp='Try to use long doubles if available?'
4546 . ./myread
4547 case "$ans" in
4548 y|Y)    val="$define"   ;;
4549 *)      val="$undef"    ;;
4550 esac
4551 set uselongdouble
4552 eval $setvar
4553
4554 case "$uselongdouble" in
4555 true|[yY]*) uselongdouble="$define" ;;
4556 esac
4557
4558 : Look for a hint-file generated 'call-back-unit'.  If the
4559 : user has specified that long doubles should be used,
4560 : we may need to set or change some other defaults.
4561 if $test -f uselongdouble.cbu; then
4562     echo "Your platform has some specific hints regarding long doubles, using them..."
4563     . ./uselongdouble.cbu
4564 else
4565     case "$uselongdouble" in
4566         $define)
4567                 $cat <<EOM
4568 (Your platform does not have any specific hints for long doubles.)
4569 EOM
4570         ;;
4571     esac
4572 fi
4573
4574 : Looking for optional libraries
4575 echo " "
4576 echo "Checking for optional libraries..." >&4
4577 case "$libs" in
4578 ' '|'') dflt='';;
4579 *) dflt="$libs";;
4580 esac
4581 case "$libswanted" in
4582 '') libswanted='c_s';;
4583 esac
4584 case "$usesocks" in
4585 "$define") libswanted="$libswanted socks5 socks5_sh" ;;
4586 esac
4587 libsfound=''
4588 libsfiles=''
4589 libsdirs=''
4590 libspath=''
4591 for thisdir in $libpth $xlibpth; do
4592   test -d $thisdir && libspath="$libspath $thisdir"
4593 done
4594 for thislib in $libswanted; do
4595         for thisdir in $libspath; do
4596             xxx=''
4597             if $test ! -f "$xxx" -a "X$ignore_versioned_solibs" = "X"; then
4598                 xxx=`ls $thisdir/lib$thislib.$so.[0-9] 2>/dev/null|sed -n '$p'`
4599                 $test -f "$xxx" && eval $libscheck
4600                 $test -f "$xxx" && libstyle=shared
4601             fi
4602             if test ! -f "$xxx"; then
4603                 xxx=$thisdir/lib$thislib.$so
4604                 $test -f "$xxx" && eval $libscheck
4605                 $test -f "$xxx" && libstyle=shared
4606             fi  
4607             if test ! -f "$xxx"; then
4608                 xxx=$thisdir/lib$thislib$_a
4609                 $test -f "$xxx" && eval $libscheck
4610                 $test -f "$xxx" && libstyle=static
4611             fi
4612             if test ! -f "$xxx"; then
4613                 xxx=$thisdir/$thislib$_a
4614                 $test -f "$xxx" && eval $libscheck
4615                 $test -f "$xxx" && libstyle=static
4616             fi
4617             if test ! -f "$xxx"; then
4618                 xxx=$thisdir/lib${thislib}_s$_a
4619                 $test -f "$xxx" && eval $libscheck
4620                 $test -f "$xxx" && libstyle=static
4621                 $test -f "$xxx" && thislib=${thislib}_s
4622             fi
4623             if test ! -f "$xxx"; then
4624                 xxx=$thisdir/Slib$thislib$_a
4625                 $test -f "$xxx" && eval $libscheck
4626                 $test -f "$xxx" && libstyle=static
4627             fi
4628             if $test -f "$xxx"; then
4629                 case "$libstyle" in
4630                 shared) echo "Found -l$thislib (shared)." ;;
4631                 static) echo "Found -l$thislib." ;;
4632                 *)      echo "Found -l$thislib ($libstyle)." ;;
4633                 esac
4634                 case " $dflt " in
4635                 *"-l$thislib "*);;
4636                 *) dflt="$dflt -l$thislib"
4637                    libsfound="$libsfound $xxx"
4638                    yyy=`basename $xxx`
4639                    libsfiles="$libsfiles $yyy"
4640                    yyy=`echo $xxx|$sed -e "s%/$yyy\\$%%"`
4641                    case " $libsdirs " in
4642                    *" $yyy "*) ;;
4643                    *) libsdirs="$libsdirs $yyy" ;;
4644                    esac
4645                    ;;
4646                 esac
4647                 break
4648             fi  
4649         done
4650         if $test ! -f "$xxx"; then
4651             echo "No -l$thislib."
4652         fi
4653 done
4654 set X $dflt
4655 shift
4656 dflt="$*"
4657 case "$libs" in
4658 '') dflt="$dflt";;
4659 *) dflt="$libs";;
4660 esac
4661 case "$dflt" in
4662 ' '|'') dflt='none';;
4663 esac
4664
4665 $cat <<EOM
4666
4667 In order to compile $package on your machine, a number of libraries
4668 are usually needed.  Include any other special libraries here as well.
4669 Say "none" for none.  The default list is almost always right.
4670 EOM
4671
4672 echo " "
4673 rp="What libraries to use?"
4674 . ./myread
4675 case "$ans" in
4676 none) libs=' ';;
4677 *) libs="$ans";;
4678 esac
4679
4680 : determine optimization, if desired, or use for debug flag also
4681 case "$optimize" in
4682 ' '|$undef) dflt='none';;
4683 '') dflt='-O';;
4684 *) dflt="$optimize";;
4685 esac
4686 $cat <<EOH
4687
4688 By default, $package compiles with the -O flag to use the optimizer.
4689 Alternately, you might want to use the symbolic debugger, which uses
4690 the -g flag (on traditional Unix systems).  Either flag can be
4691 specified here.  To use neither flag, specify the word "none".
4692
4693 EOH
4694 rp="What optimizer/debugger flag should be used?"
4695 . ./myread
4696 optimize="$ans"
4697 case "$optimize" in
4698 'none') optimize=" ";;
4699 esac
4700
4701 dflt=''
4702 : We will not override a previous value, but we might want to
4703 : augment a hint file
4704 case "$hint" in
4705 default|recommended)
4706         case "$gccversion" in
4707         1*) dflt='-fpcc-struct-return' ;;
4708         esac
4709         case "$optimize" in
4710         *-g*) dflt="$dflt -DDEBUGGING";;
4711         esac
4712         case "$gccversion" in
4713         2*) if test -d /etc/conf/kconfig.d &&
4714                         $contains _POSIX_VERSION $usrinc/sys/unistd.h >/dev/null 2>&1
4715                 then
4716                         # Interactive Systems (ISC) POSIX mode.
4717                         dflt="$dflt -posix"
4718                 fi
4719                 ;;
4720         esac
4721         case "$gccversion" in
4722         1*) ;;
4723         2.[0-8]*) ;;
4724         ?*)     echo " "
4725                 echo "Checking if your compiler accepts -fno-strict-aliasing" 2>&1
4726                 echo 'int main(void) { return 0; }' > gcctest.c
4727                 if $cc -O2 -fno-strict-aliasing -o gcctest gcctest.c; then
4728                         echo "Yes, it does." 2>&1
4729                         case "$ccflags" in
4730                         *strict-aliasing*)
4731                                 echo "Leaving current flags $ccflags alone." 2>&1
4732                                 ;;
4733                         *) dflt="$dflt -fno-strict-aliasing" ;;
4734                         esac
4735                 else
4736                         echo "Nope, it doesn't, but that's ok." 2>&1
4737                 fi
4738                 ;;
4739         esac
4740         # For gcc, adding -pipe speeds up compilations for some, but apparently
4741         # some assemblers can't read from stdin.  (It also slows down compilations
4742         # in other cases, but those are apparently rarer these days.)  AD 5/2004.
4743         case "$gccversion" in
4744         ?*)     echo " "
4745                 echo "Checking if your compiler accepts -pipe" 2>&1
4746                 echo 'int main(void) { return 0; }' > gcctest.c
4747                 if $cc -O2 -pipe -o gcctest gcctest.c; then
4748                         echo "Yes, it does." 2>&1
4749                         case "$ccflags" in
4750                         *-pipe*)
4751                                 echo "Leaving current flags $ccflags alone." 2>&1
4752                                 ;;
4753                         *) dflt="$dflt -pipe" ;;
4754                         esac
4755                 else
4756                         echo "Nope, it doesn't, but that's ok." 2>&1
4757                 fi
4758                 ;;
4759         esac
4760         ;;
4761 esac
4762
4763 case "$mips_type" in
4764 *BSD*|'') inclwanted="$locincpth $usrinc";;
4765 *) inclwanted="$locincpth $inclwanted $usrinc/bsd";;
4766 esac
4767 for thisincl in $inclwanted; do
4768         if $test -d $thisincl; then
4769                 if $test x$thisincl != x$usrinc; then
4770                         case "$dflt" in
4771                         *" -I$thisincl "*);;
4772                         *) dflt="$dflt -I$thisincl ";;
4773                         esac
4774                 fi
4775         fi
4776 done
4777
4778 inctest='if $contains $2 $usrinc/$1 >/dev/null 2>&1; then
4779         xxx=true;
4780 elif $contains $2 $usrinc/sys/$1 >/dev/null 2>&1; then
4781         xxx=true;
4782 else
4783         xxx=false;
4784 fi;
4785 if $xxx; then
4786         case "$dflt" in
4787         *$2*);;
4788         *) dflt="$dflt -D$2";;
4789         esac;
4790 fi'
4791
4792 set signal.h LANGUAGE_C; eval $inctest
4793
4794 case "$usesocks" in
4795 $define)
4796         ccflags="$ccflags -DSOCKS"
4797         ;;
4798 esac
4799
4800 case "$hint" in
4801 default|recommended) dflt="$ccflags $dflt" ;;
4802 *) dflt="$ccflags";;
4803 esac
4804
4805 case "$dflt" in
4806 ''|' ') dflt=none;;
4807 esac
4808
4809 $cat <<EOH
4810
4811 Your C compiler may want other flags.  For this question you should include
4812 -I/whatever and -DWHATEVER flags and any other flags used by the C compiler,
4813 but you should NOT include libraries or ld flags like -lwhatever.  If you
4814 want $package to honor its debug switch, you should include -DDEBUGGING here.
4815 Your C compiler might also need additional flags, such as -D_POSIX_SOURCE.
4816
4817 To use no flags, specify the word "none".
4818
4819 EOH
4820 set X $dflt
4821 shift
4822 dflt=${1+"$@"}
4823 rp="Any additional cc flags?"
4824 . ./myread
4825 case "$ans" in
4826 none) ccflags='';;
4827 *) ccflags="$ans";;
4828 esac
4829
4830 : the following weeds options from ccflags that are of no interest to cpp
4831 case "$cppflags" in
4832 '') cppflags="$ccflags" ;;
4833 *)  cppflags="$cppflags $ccflags" ;;
4834 esac
4835 case "$gccversion" in
4836 1*) cppflags="$cppflags -D__GNUC__"
4837 esac
4838 case "$mips_type" in
4839 '');;
4840 *BSD*) cppflags="$cppflags -DSYSTYPE_BSD43";;
4841 esac
4842 case "$cppflags" in
4843 '');;
4844 *)
4845         echo " "
4846         echo "Let me guess what the preprocessor flags are..." >&4
4847         set X $cppflags
4848         shift
4849         cppflags=''
4850         $cat >cpp.c <<'EOM'
4851 #define BLURFL foo
4852
4853 BLURFL xx LFRULB
4854 EOM
4855         previous=''
4856         for flag in $*
4857         do
4858                 case "$flag" in
4859                 -*) ftry="$flag";;
4860                 *) ftry="$previous $flag";;
4861                 esac
4862                 if $cppstdin -DLFRULB=bar $cppflags $ftry $cppminus <cpp.c \
4863                         >cpp1.out 2>/dev/null && \
4864                         $cpprun -DLFRULB=bar $cppflags $ftry $cpplast <cpp.c \
4865                         >cpp2.out 2>/dev/null && \
4866                         $contains 'foo.*xx.*bar' cpp1.out >/dev/null 2>&1 && \
4867                         $contains 'foo.*xx.*bar' cpp2.out >/dev/null 2>&1
4868                 then
4869                         cppflags="$cppflags $ftry"
4870                         previous=''
4871                 else
4872                         previous="$flag"
4873                 fi
4874         done
4875         set X $cppflags
4876         shift
4877         cppflags=${1+"$@"}
4878         case "$cppflags" in
4879         *-*)  echo "They appear to be: $cppflags";;
4880         esac
4881         $rm -f cpp.c cpp?.out
4882         ;;
4883 esac
4884
4885 : flags used in final linking phase
4886 case "$ldflags" in
4887 '') if ./venix; then
4888                 dflt='-i -z'
4889         else
4890                 dflt=''
4891         fi
4892         case "$ccflags" in
4893         *-posix*) dflt="$dflt -posix" ;;
4894         esac
4895         ;;
4896 *) dflt="$ldflags";;
4897 esac
4898
4899 : Try to guess additional flags to pick up local libraries.
4900 for thislibdir in $libpth; do
4901         case " $loclibpth " in
4902         *" $thislibdir "*)
4903                 case "$dflt " in
4904                 *"-L$thislibdir "*) ;;
4905                 *)  dflt="$dflt -L$thislibdir" ;;
4906                 esac
4907                 ;;
4908         esac
4909 done
4910
4911 case "$dflt" in
4912 '') dflt='none' ;;
4913 esac
4914
4915 $cat <<EOH
4916
4917 Your C linker may need flags.  For this question you should
4918 include -L/whatever and any other flags used by the C linker, but you
4919 should NOT include libraries like -lwhatever.
4920
4921 Make sure you include the appropriate -L/path flags if your C linker
4922 does not normally search all of the directories you specified above,
4923 namely
4924         $libpth
4925 To use no flags, specify the word "none".
4926
4927 EOH
4928
4929 rp="Any additional ld flags (NOT including libraries)?"
4930 . ./myread
4931 case "$ans" in
4932 none) ldflags='';;
4933 *) ldflags="$ans";;
4934 esac
4935 rmlist="$rmlist pdp11"
4936
4937 : coherency check
4938 echo " "
4939 echo "Checking your choice of C compiler and flags for coherency..." >&4
4940 $cat > try.c <<'EOF'
4941 #include <stdio.h>
4942 int main() { printf("Ok\n"); return(0); }
4943 EOF
4944 set X $cc -o try $optimize $ccflags $ldflags try.c $libs
4945 shift
4946 $cat >try.msg <<'EOM'
4947 I've tried to compile and run the following simple program:
4948
4949 EOM
4950 $cat try.c >> try.msg
4951
4952 $cat >> try.msg <<EOM
4953
4954 I used the command:
4955
4956         $*
4957         $run ./try
4958
4959 and I got the following output:
4960
4961 EOM
4962 dflt=y
4963 if $sh -c "$cc -o try $optimize $ccflags $ldflags try.c $libs" >>try.msg 2>&1; then
4964         if $sh -c "$run ./try" >>try.msg 2>&1; then
4965                 xxx=`$run ./try`
4966                 case "$xxx" in
4967                 "Ok") dflt=n ;;
4968                 *)      echo 'The program compiled OK, but produced no output.' >> try.msg
4969                         case " $libs " in
4970                         *" -lsfio "*)
4971                                 cat >> try.msg <<'EOQS'
4972 If $libs contains -lsfio, and sfio is mis-configured, then it
4973 sometimes (apparently) runs and exits with a 0 status, but with no
4974 output!  It may have to do with sfio's use of _exit vs. exit.
4975
4976 EOQS
4977                                 rp="You have a big problem.  Shall I abort Configure"
4978                                 dflt=y
4979                                 ;;
4980                         esac
4981                         ;;
4982                 esac
4983         else
4984                 echo "The program compiled OK, but exited with status $?." >>try.msg
4985                 rp="You have a problem.  Shall I abort Configure"
4986                 dflt=y
4987         fi
4988 else
4989         echo "I can't compile the test program." >>try.msg
4990         rp="You have a BIG problem.  Shall I abort Configure"
4991         dflt=y
4992 fi
4993 case "$dflt" in
4994 y)
4995         $cat try.msg >&4
4996         case "$knowitall" in
4997         '')
4998                 echo "(The supplied flags or libraries might be incorrect.)"
4999                 ;;
5000         *) dflt=n;;
5001         esac
5002         echo " "
5003         . ./myread
5004         case "$ans" in
5005         n*|N*) ;;
5006         *)      echo "Ok.  Stopping Configure." >&4
5007                 exit 1
5008                 ;;
5009         esac
5010         ;;
5011 n) echo "OK, that should do.";;
5012 esac
5013 $rm -f try try.* core
5014
5015 : define a shorthand compile call
5016 compile='
5017 mc_file=$1;
5018 shift;
5019 $cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs > /dev/null 2>&1;'
5020 : define a shorthand compile call for compilations that should be ok.
5021 compile_ok='
5022 mc_file=$1;
5023 shift;
5024 $cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs;'
5025
5026 : determine filename position in cpp output
5027 echo " "
5028 echo "Computing filename position in cpp output for #include directives..." >&4
5029 case "$osname" in
5030 vos) testaccess=-e ;;
5031 *)   testaccess=-r ;;
5032 esac
5033 echo '#include <stdio.h>' > foo.c
5034 $cat >fieldn <<EOF
5035 $startsh
5036 $cppstdin $cppflags $cppminus <foo.c 2>/dev/null | \
5037 $grep '^[       ]*#.*stdio\.h' | \
5038 while read cline; do
5039         pos=1
5040         set \$cline
5041         while $test \$# -gt 0; do
5042                 if $test $testaccess \`echo \$1 | $tr -d '"'\`; then
5043                         echo "\$pos"
5044                         exit 0
5045                 fi
5046                 shift
5047                 pos=\`expr \$pos + 1\`
5048         done
5049 done
5050 EOF
5051 chmod +x fieldn
5052 fieldn=`./fieldn`
5053 $rm -f foo.c fieldn
5054 case $fieldn in
5055 '') pos='???';;
5056 1) pos=first;;
5057 2) pos=second;;
5058 3) pos=third;;
5059 *) pos="${fieldn}th";;
5060 esac
5061 echo "Your cpp writes the filename in the $pos field of the line."
5062
5063 case "$osname" in
5064 vos) cppfilter="tr '\\\\>' '/' |" ;; # path component separator is >
5065 os2) cppfilter="sed -e 's|\\\\\\\\|/|g' |" ;; # path component separator is \
5066 *)   cppfilter='' ;;
5067 esac
5068 : locate header file
5069 $cat >findhdr <<EOF
5070 $startsh
5071 wanted=\$1
5072 name=''
5073 for usrincdir in $usrinc
5074 do
5075         if test -f \$usrincdir/\$wanted; then
5076                 echo "\$usrincdir/\$wanted"
5077                 exit 0
5078         fi
5079 done
5080 awkprg='{ print \$$fieldn }'
5081 echo "#include <\$wanted>" > foo\$\$.c
5082 $cppstdin $cppminus $cppflags < foo\$\$.c 2>/dev/null | \
5083 $cppfilter $grep "^[    ]*#.*\$wanted" | \
5084 while read cline; do
5085         name=\`echo \$cline | $awk "\$awkprg" | $tr -d '"'\`
5086         case "\$name" in
5087         *[/\\\\]\$wanted) echo "\$name"; exit 1;;
5088         *[\\\\/]\$wanted) echo "\$name"; exit 1;;
5089         *) exit 2;;
5090         esac;
5091 done;
5092 #
5093 # status = 0: grep returned 0 lines, case statement not executed
5094 # status = 1: headerfile found
5095 # status = 2: while loop executed, no headerfile found
5096 #
5097 status=\$?
5098 $rm -f foo\$\$.c;
5099 if test \$status -eq 1; then
5100         exit 0;
5101 fi
5102 exit 1
5103 EOF
5104 chmod +x findhdr
5105
5106 : define an alternate in-header-list? function
5107 inhdr='echo " "; td=$define; tu=$undef; yyy=$@;
5108 cont=true; xxf="echo \"<\$1> found.\" >&4";
5109 case $# in 2) xxnf="echo \"<\$1> NOT found.\" >&4";;
5110 *) xxnf="echo \"<\$1> NOT found, ...\" >&4";;
5111 esac;
5112 case $# in 4) instead=instead;; *) instead="at last";; esac;
5113 while $test "$cont"; do
5114         xxx=`./findhdr $1`
5115         var=$2; eval "was=\$$2";
5116         if $test "$xxx" && $test -r "$xxx";
5117         then eval $xxf;
5118         eval "case \"\$$var\" in $undef) . ./whoa; esac"; eval "$var=\$td";
5119                 cont="";
5120         else eval $xxnf;
5121         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu"; fi;
5122         set $yyy; shift; shift; yyy=$@;
5123         case $# in 0) cont="";;
5124         2) xxf="echo \"but I found <\$1> $instead.\" >&4";
5125                 xxnf="echo \"and I did not find <\$1> either.\" >&4";;
5126         *) xxf="echo \"but I found <\$1\> instead.\" >&4";
5127                 xxnf="echo \"there is no <\$1>, ...\" >&4";;
5128         esac;
5129 done;
5130 while $test "$yyy";
5131 do set $yyy; var=$2; eval "was=\$$2";
5132         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu";
5133         set $yyy; shift; shift; yyy=$@;
5134 done'
5135
5136 : see if stdlib is available
5137 set stdlib.h i_stdlib
5138 eval $inhdr
5139
5140 : check for lengths of integral types
5141 echo " "
5142 case "$intsize" in
5143 '')
5144         echo "Checking to see how big your integers are..." >&4
5145         $cat >try.c <<EOCP
5146 #include <stdio.h>
5147 #$i_stdlib I_STDLIB
5148 #ifdef I_STDLIB
5149 #include <stdlib.h>
5150 #endif
5151 int main()
5152 {
5153         printf("intsize=%d;\n", (int)sizeof(int));
5154         printf("longsize=%d;\n", (int)sizeof(long));
5155         printf("shortsize=%d;\n", (int)sizeof(short));
5156         exit(0);
5157 }
5158 EOCP
5159         set try
5160         if eval $compile_ok && $run ./try > /dev/null; then
5161                 eval `$run ./try`
5162                 echo "Your integers are $intsize bytes long."
5163                 echo "Your long integers are $longsize bytes long."
5164                 echo "Your short integers are $shortsize bytes long."
5165         else
5166                 $cat >&4 <<EOM
5167 !
5168 Help! I can't compile and run the intsize test program: please enlighten me!
5169 (This is probably a misconfiguration in your system or libraries, and
5170 you really ought to fix it.  Still, I'll try anyway.)
5171 !
5172 EOM
5173                 dflt=4
5174                 rp="What is the size of an integer (in bytes)?"
5175                 . ./myread
5176                 intsize="$ans"
5177                 dflt=$intsize
5178                 rp="What is the size of a long integer (in bytes)?"
5179                 . ./myread
5180                 longsize="$ans"
5181                 dflt=2
5182                 rp="What is the size of a short integer (in bytes)?"
5183                 . ./myread
5184                 shortsize="$ans"
5185         fi
5186         ;;
5187 esac
5188 $rm -f try try.*
5189
5190 : check for long long
5191 echo " "
5192 echo "Checking to see if you have long long..." >&4
5193 echo 'int main() { long long x = 7; return 0; }' > try.c
5194 set try
5195 if eval $compile; then
5196         val="$define"
5197         echo "You have long long."
5198 else
5199         val="$undef"
5200         echo "You do not have long long."
5201 fi
5202 $rm try.*
5203 set d_longlong
5204 eval $setvar
5205
5206 : check for length of long long
5207 case "${d_longlong}${longlongsize}" in
5208 $define)
5209         echo " "
5210         echo "Checking to see how big your long longs are..." >&4
5211         $cat >try.c <<'EOCP'
5212 #include <stdio.h>
5213 int main()
5214 {
5215     printf("%d\n", (int)sizeof(long long));
5216     return(0);
5217 }
5218 EOCP
5219         set try
5220         if eval $compile_ok; then
5221                 longlongsize=`$run ./try`
5222                 echo "Your long longs are $longlongsize bytes long."
5223         else
5224                 dflt='8'
5225                 echo " "
5226                 echo "(I can't seem to compile the test program.  Guessing...)"
5227                 rp="What is the size of a long long (in bytes)?"
5228                 . ./myread
5229                 longlongsize="$ans"
5230         fi
5231         if $test "X$longsize" = "X$longlongsize"; then
5232                 echo "(That isn't any different from an ordinary long.)"
5233         fi      
5234         ;;
5235 esac
5236 $rm -f try.* try
5237
5238 : see if inttypes.h is available
5239 : we want a real compile instead of Inhdr because some systems
5240 : have an inttypes.h which includes non-existent headers
5241 echo " "
5242 $cat >try.c <<EOCP
5243 #include <inttypes.h>
5244 int main() {
5245         static int32_t foo32 = 0x12345678;
5246 }
5247 EOCP
5248 set try
5249 if eval $compile; then
5250         echo "<inttypes.h> found." >&4
5251         val="$define"
5252 else
5253         echo "<inttypes.h> NOT found." >&4
5254         val="$undef"
5255 fi
5256 $rm -f try.c try
5257 set i_inttypes
5258 eval $setvar
5259
5260 : check for int64_t
5261 echo " "
5262 echo "Checking to see if you have int64_t..." >&4
5263 $cat >try.c <<EOCP
5264 #include <sys/types.h>
5265 #$i_inttypes I_INTTYPES
5266 #ifdef I_INTTYPES
5267 #include <inttypes.h>
5268 #endif
5269 int main() { int64_t x = 7; }
5270 EOCP
5271 set try
5272 if eval $compile; then
5273         val="$define"
5274         echo "You have int64_t."
5275 else
5276         val="$undef"
5277         echo "You do not have int64_t."
5278 fi
5279 $rm -f try try.*
5280 set d_int64_t
5281 eval $setvar
5282
5283
5284 echo " "
5285 echo "Checking which 64-bit integer type we could use..." >&4
5286
5287 case "$intsize" in
5288 8) val=int
5289    set quadtype
5290    eval $setvar
5291    val='"unsigned int"'
5292    set uquadtype
5293    eval $setvar
5294    quadkind=1
5295    ;;
5296 *) case "$longsize" in
5297    8) val=long
5298       set quadtype
5299       eval $setvar
5300       val='"unsigned long"'
5301       set uquadtype
5302       eval $setvar
5303       quadkind=2
5304       ;;
5305    *) case "$d_longlong:$longlongsize" in
5306       define:8)
5307         val='"long long"'
5308         set quadtype
5309         eval $setvar
5310         val='"unsigned long long"'
5311         set uquadtype
5312         eval $setvar
5313         quadkind=3
5314         ;;
5315       *) case "$d_int64_t" in
5316          define)
5317            val=int64_t
5318            set quadtype
5319            eval $setvar
5320            val=uint64_t
5321            set uquadtype
5322            eval $setvar
5323            quadkind=4
5324            ;;
5325          esac
5326          ;;
5327       esac
5328       ;;
5329    esac
5330    ;;
5331 esac
5332
5333 case "$quadtype" in
5334 '')     echo "Alas, no 64-bit integer types in sight." >&4
5335         d_quad="$undef"
5336         ;;
5337 *)      echo "We could use '$quadtype' for 64-bit integers." >&4
5338         d_quad="$define"
5339         ;;
5340 esac
5341
5342
5343 case "$uselonglong" in
5344 "$define"|true|[yY]*)
5345         cat <<EOM >&4
5346
5347 *** Configure -Duselonglong is deprecated, using -Duse64bitint instead.
5348 EOM
5349         use64bitint="$define"
5350         ;;
5351 esac                          
5352 case "$use64bits" in
5353 "$define"|true|[yY]*)
5354         cat <<EOM >&4
5355
5356 *** Configure -Duse64bits is deprecated, using -Duse64bitint instead.
5357 EOM
5358         use64bitint="$define"
5359         ;;
5360 esac                          
5361 case "$use64bitints" in
5362 "$define"|true|[yY]*)
5363         cat <<EOM >&4
5364
5365 *** There is no Configure -Duse64bitints, using -Duse64bitint instead.
5366 EOM
5367         use64bitint="$define"
5368         ;;
5369 esac                          
5370 case "$use64bitsint" in
5371 "$define"|true|[yY]*)
5372         cat <<EOM >&4
5373
5374 *** There is no Configure -Duse64bitsint, using -Duse64bitint instead.
5375 EOM
5376         use64bitint="$define"
5377         ;;
5378 esac                          
5379 case "$uselonglongs" in
5380 "$define"|true|[yY]*)
5381         cat <<EOM >&4
5382
5383 *** There is no Configure -Duselonglongs, using -Duse64bitint instead.
5384 EOM
5385         use64bitint="$define"
5386         ;;
5387 esac                          
5388 case "$use64bitsall" in
5389 "$define"|true|[yY]*)
5390         cat <<EOM >&4
5391
5392 *** There is no Configure -Duse64bitsall, using -Duse64bitall instead.
5393 EOM
5394         use64bitall="$define"
5395         ;;
5396 esac                          
5397
5398 case "$ccflags" in
5399 *-DUSE_LONG_LONG*|*-DUSE_64_BIT_INT*|*-DUSE_64_BIT_ALL*) use64bitint="$define";;
5400 esac
5401 case "$use64bitall" in
5402 "$define"|true|[yY]*) use64bitint="$define" ;;
5403 esac
5404
5405 case "$longsize" in
5406 8) cat <<EOM
5407
5408 You have natively 64-bit long integers.
5409 EOM
5410    val="$define"
5411    ;;
5412 *) case "$use64bitint" in
5413    "$define"|true|[yY]*) dflt='y';;
5414    *) dflt='n';;
5415    esac
5416    case "$d_quad" in
5417    "$define") ;;
5418    *) dflt='n' ;;
5419    esac
5420    cat <<EOM
5421
5422 Perl can be built to take advantage of 64-bit integer types
5423 on some systems.  To do so, Configure can be run with -Duse64bitint.
5424 Choosing this option will most probably introduce binary incompatibilities.
5425
5426 If this doesn't make any sense to you, just accept the default '$dflt'.
5427 (The default has been chosen based on your configuration.)
5428 EOM
5429    rp='Try to use 64-bit integers, if available?'
5430    . ./myread
5431    case "$ans" in
5432    [yY]*) val="$define" ;;
5433    *)     val="$undef"  ;;
5434    esac
5435    ;;
5436 esac
5437 set use64bitint
5438 eval $setvar
5439
5440 case "$use64bitall" in
5441 "$define"|true|[yY]*) dflt='y' ;;
5442 *) case "$longsize" in
5443    8) dflt='y' ;;
5444    *) dflt='n' ;;
5445    esac
5446    ;;
5447 esac    
5448 cat <<EOM
5449
5450 You may also choose to try maximal 64-bitness.  It means using as much
5451 64-bitness as possible on the platform.  This in turn means even more
5452 binary incompatibilities.  On the other hand, your platform may not
5453 have any more 64-bitness available than what you already have chosen.
5454
5455 If this doesn't make any sense to you, just accept the default '$dflt'.
5456 (The default has been chosen based on your configuration.)
5457 EOM
5458 rp='Try to use maximal 64-bit support, if available?'
5459 . ./myread
5460 case "$ans" in
5461 [yY]*) val="$define" ;;
5462 *)     val="$undef"  ;;
5463 esac
5464 set use64bitall
5465 eval $setvar
5466 case "$use64bitall" in
5467 "$define")
5468         case "$use64bitint" in
5469         "$undef")
5470                 cat <<EOM
5471
5472 Since you have chosen a maximally 64-bit build, I'm also turning on
5473 the use of 64-bit integers.
5474 EOM
5475                 use64bitint="$define" ;;
5476         esac
5477         ;;
5478 esac
5479
5480 : Look for a hint-file generated 'call-back-unit'.  If the
5481 : user has specified that a 64-bit perl is to be built,
5482 : we may need to set or change some other defaults.
5483 if $test -f use64bitint.cbu; then
5484         echo "Your platform has some specific hints regarding 64-bit integers, using them..."
5485         . ./use64bitint.cbu
5486 fi
5487 case "$use64bitint" in
5488 "$define"|true|[yY]*)
5489         case "$longsize" in
5490         4) case "$archname64" in
5491            '') archname64=64int ;;
5492            esac
5493            ;;
5494         esac
5495         ;;
5496 esac
5497
5498 : Look for a hint-file generated 'call-back-unit'.  If the
5499 : user has specified that a maximally 64-bit perl is to be built,
5500 : we may need to set or change some other defaults.
5501 if $test -f use64bitall.cbu; then
5502         echo "Your platform has some specific hints regarding 64-bit builds, using them..."
5503         . ./use64bitall.cbu
5504 fi
5505 case "$use64bitall" in
5506 "$define"|true|[yY]*)
5507         case "$longsize" in
5508         4) case "$archname64" in
5509            ''|64int) archname64=64all ;;
5510            esac
5511            ;;
5512         esac
5513         ;;
5514 esac
5515
5516 case "$d_quad:$use64bitint" in
5517 $undef:$define)
5518         cat >&4 <<EOF
5519
5520 *** You have chosen to use 64-bit integers,
5521 *** but none can be found.
5522 *** Please rerun Configure without -Duse64bitint and/or -Dusemorebits.
5523 *** Cannot continue, aborting.
5524
5525 EOF
5526         exit 1
5527         ;;
5528 esac
5529
5530 : check for length of double
5531 echo " "
5532 case "$doublesize" in
5533 '')
5534         echo "Checking to see how big your double precision numbers are..." >&4
5535         $cat >try.c <<EOCP
5536 #include <stdio.h>
5537 #$i_stdlib I_STDLIB
5538 #ifdef I_STDLIB
5539 #include <stdlib.h>
5540 #endif
5541 int main()
5542 {
5543     printf("%d\n", (int)sizeof(double));
5544     exit(0);
5545 }
5546 EOCP
5547         set try
5548         if eval $compile_ok; then
5549                 doublesize=`$run ./try`
5550                 echo "Your double is $doublesize bytes long."
5551         else
5552                 dflt='8'
5553                 echo "(I can't seem to compile the test program.  Guessing...)"
5554                 rp="What is the size of a double precision number (in bytes)?"
5555                 . ./myread
5556                 doublesize="$ans"
5557         fi
5558         ;;
5559 esac
5560 $rm -f try.c try
5561
5562 : check for long doubles
5563 echo " "
5564 echo "Checking to see if you have long double..." >&4
5565 echo 'int main() { long double x = 7.0; }' > try.c
5566 set try
5567 if eval $compile; then
5568         val="$define"
5569         echo "You have long double."
5570 else
5571         val="$undef"
5572         echo "You do not have long double."
5573 fi
5574 $rm try.*
5575 set d_longdbl
5576 eval $setvar
5577
5578 : check for length of long double
5579 case "${d_longdbl}${longdblsize}" in
5580 $define)
5581         echo " "
5582         echo "Checking to see how big your long doubles are..." >&4
5583         $cat >try.c <<'EOCP'
5584 #include <stdio.h>
5585 int main()
5586 {
5587         printf("%d\n", sizeof(long double));
5588 }
5589 EOCP
5590         set try
5591         set try
5592         if eval $compile; then
5593                 longdblsize=`$run ./try`
5594                 echo "Your long doubles are $longdblsize bytes long."
5595         else
5596                 dflt='8'
5597                 echo " "
5598                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
5599                 rp="What is the size of a long double (in bytes)?"
5600                 . ./myread
5601                 longdblsize="$ans"
5602         fi
5603         if $test "X$doublesize" = "X$longdblsize"; then
5604                 echo "That isn't any different from an ordinary double."
5605                 echo "I'll keep your setting anyway, but you may see some"
5606                 echo "harmless compilation warnings."
5607         fi      
5608         ;;
5609 esac
5610 $rm -f try.* try
5611
5612 : determine the architecture name
5613 echo " "
5614 if xxx=`./loc arch blurfl $pth`; $test -f "$xxx"; then
5615         tarch=`arch`"-$osname"
5616 elif xxx=`./loc uname blurfl $pth`; $test -f "$xxx" ; then
5617         if uname -m > tmparch 2>&1 ; then
5618                 tarch=`$sed -e 's/ *$//' -e 's/ /_/g' \
5619                         -e 's/$/'"-$osname/" tmparch`
5620         else
5621                 tarch="$osname"
5622         fi
5623         $rm -f tmparch
5624 else
5625         tarch="$osname"
5626 fi
5627 case "$myarchname" in
5628 ''|"$tarch") ;;
5629 *)
5630         echo "(Your architecture name used to be $myarchname.)"
5631         archname=''
5632         ;;
5633 esac
5634 case "$targetarch" in
5635 '') ;;
5636 *)  archname=`echo $targetarch|sed 's,^[^-]*-,,'` ;;
5637 esac
5638 myarchname="$tarch"
5639 case "$archname" in
5640 '') dflt="$tarch";;
5641 *) dflt="$archname";;
5642 esac
5643 rp='What is your architecture name'
5644 . ./myread
5645 archname="$ans"
5646 case "$usethreads" in
5647 $define)
5648         echo "Threads selected." >&4
5649         case "$archname" in
5650         *-thread*) echo "...and architecture name already has -thread." >&4
5651                 ;;
5652         *)      archname="$archname-thread"
5653                 echo "...setting architecture name to $archname." >&4
5654                 ;;
5655         esac
5656         ;;
5657 esac
5658 case "$usemultiplicity" in
5659 $define)
5660         echo "Multiplicity selected." >&4
5661         case "$archname" in
5662         *-multi*) echo "...and architecture name already has -multi." >&4
5663                 ;;
5664         *)      archname="$archname-multi"
5665                 echo "...setting architecture name to $archname." >&4
5666                 ;;
5667         esac
5668         ;;
5669 esac
5670 case "$use64bitint$use64bitall" in
5671 *"$define"*)
5672         case "$archname64" in
5673         '')
5674                 echo "This architecture is naturally 64-bit, not changing architecture name." >&4
5675                 ;;
5676         *)
5677                 case "$use64bitint" in
5678                 "$define") echo "64 bit integers selected." >&4 ;;
5679                 esac
5680                 case "$use64bitall" in
5681                 "$define") echo "Maximal 64 bitness selected." >&4 ;;
5682                 esac
5683                 case "$archname" in
5684                 *-$archname64*) echo "...and architecture name already has $archname64." >&4
5685                         ;;
5686                 *)      archname="$archname-$archname64"
5687                         echo "...setting architecture name to $archname." >&4
5688                         ;;
5689                 esac
5690                 ;;
5691         esac
5692 esac
5693 case "$uselongdouble" in
5694 $define)
5695         echo "Long doubles selected." >&4
5696         case "$longdblsize" in
5697         $doublesize)
5698                 echo "...but long doubles are equal to doubles, not changing architecture name." >&4
5699                 ;;
5700         *)
5701                 case "$archname" in
5702                 *-ld*) echo "...and architecture name already has -ld." >&4
5703                         ;;
5704                 *)      archname="$archname-ld"
5705                         echo "...setting architecture name to $archname." >&4
5706                         ;;
5707                 esac
5708                 ;;
5709         esac
5710         ;;
5711 esac
5712 case "$useperlio" in
5713 $define)
5714         echo "Perlio selected." >&4
5715         ;;
5716 *)
5717         echo "Perlio not selected, using stdio." >&4
5718         case "$archname" in
5719         *-stdio*) echo "...and architecture name already has -stdio." >&4
5720                 ;;
5721         *)      archname="$archname-stdio"
5722                 echo "...setting architecture name to $archname." >&4
5723                 ;;
5724         esac
5725         ;;
5726 esac
5727 if $test -f archname.cbu; then
5728         echo "Your platform has some specific hints for architecture name, using them..."
5729         . ./archname.cbu
5730 fi
5731
5732 : determine root of directory hierarchy where package will be installed.
5733 case "$prefix" in
5734 '')
5735         dflt=`./loc . /usr/local /usr/local /local /opt /usr`
5736         ;;
5737 *?/)
5738         dflt=`echo "$prefix" | sed 's/.$//'`
5739         ;;
5740 *)
5741         dflt="$prefix"
5742         ;;
5743 esac
5744 $cat <<EOM
5745
5746 By default, $package will be installed in $dflt/bin, manual pages
5747 under $dflt/man, etc..., i.e. with $dflt as prefix for all
5748 installation directories. Typically this is something like /usr/local.
5749 If you wish to have binaries under /usr/bin but other parts of the
5750 installation under /usr/local, that's ok: you will be prompted
5751 separately for each of the installation directories, the prefix being
5752 only used to set the defaults.
5753
5754 EOM
5755 fn=d~
5756 rp='Installation prefix to use?'
5757 . ./getfile
5758 oldprefix=''
5759 case "$prefix" in
5760 '') ;;
5761 *)
5762         case "$ans" in
5763         "$prefix") ;;
5764         *) oldprefix="$prefix";;
5765         esac
5766         ;;
5767 esac
5768 prefix="$ans"
5769 prefixexp="$ansexp"
5770
5771 case "$afsroot" in
5772 '')     afsroot=/afs ;;
5773 *)      afsroot=$afsroot ;;
5774 esac
5775
5776 : is AFS running?
5777 echo " "
5778 case "$afs" in
5779 $define|true)   afs=true ;;
5780 $undef|false)   afs=false ;;
5781 *)      if test -d $afsroot; then
5782                 afs=true
5783         else
5784                 afs=false
5785         fi
5786         ;;
5787 esac
5788 if $afs; then
5789         echo "AFS may be running... I'll be extra cautious then..." >&4
5790 else
5791         echo "AFS does not seem to be running..." >&4
5792 fi
5793
5794 : determine installation prefix for where package is to be installed.
5795 if $afs; then 
5796 $cat <<EOM
5797
5798 Since you are running AFS, I need to distinguish the directory in which
5799 files will reside from the directory in which they are installed (and from
5800 which they are presumably copied to the former directory by occult means).
5801
5802 EOM
5803         case "$installprefix" in
5804         '') dflt=`echo $prefix | sed 's#^/afs/#/afs/.#'`;;
5805         *) dflt="$installprefix";;
5806         esac
5807 else
5808 $cat <<EOM
5809
5810 In some special cases, particularly when building $package for distribution,
5811 it is convenient to distinguish the directory in which files should be
5812 installed from the directory ($prefix) in which they will
5813 eventually reside.  For most users, these two directories are the same.
5814
5815 EOM
5816         case "$installprefix" in
5817         '') dflt=$prefix ;;
5818         *) dflt=$installprefix;;
5819         esac
5820 fi
5821 fn=d~
5822 rp='What installation prefix should I use for installing files?'
5823 . ./getfile
5824 installprefix="$ans"
5825 installprefixexp="$ansexp"
5826
5827 : set the prefixit variable, to compute a suitable default value
5828 prefixit='case "$3" in
5829 ""|none)
5830         case "$oldprefix" in
5831         "") eval "$1=\"\$$2\"";;
5832         *)
5833                 case "$3" in
5834                 "") eval "$1=";;
5835                 none)
5836                         eval "tp=\"\$$2\"";
5837                         case "$tp" in
5838                         ""|" ") eval "$1=\"\$$2\"";;
5839                         *) eval "$1=";;
5840                         esac;;
5841                 esac;;
5842         esac;;
5843 *)
5844         eval "tp=\"$oldprefix-\$$2-\""; eval "tp=\"$tp\"";
5845         case "$tp" in
5846         --|/*--|\~*--) eval "$1=\"$prefix/$3\"";;
5847         /*-$oldprefix/*|\~*-$oldprefix/*)
5848                 eval "$1=\`echo \$$2 | sed \"s,^$oldprefix,$prefix,\"\`";;
5849         *) eval "$1=\"\$$2\"";;
5850         esac;;
5851 esac'
5852
5853 : get the patchlevel
5854 echo " "
5855 echo "Getting the current patchlevel..." >&4
5856 if $test -r $rsrc/patchlevel.h;then
5857         revision=`awk '/define[         ]+PERL_REVISION/ {print $3}' $rsrc/patchlevel.h`
5858         patchlevel=`awk '/define[       ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
5859         subversion=`awk '/define[       ]+PERL_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
5860         api_revision=`awk '/define[     ]+PERL_API_REVISION/ {print $3}' $rsrc/patchlevel.h`
5861         api_version=`awk '/define[      ]+PERL_API_VERSION/ {print $3}' $rsrc/patchlevel.h`
5862         api_subversion=`awk '/define[   ]+PERL_API_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
5863        perl_patchlevel=`grep ',"DEVEL[0-9][0-9]*"' $rsrc/patchlevel.h|sed 's/[^0-9]//g'`
5864 else
5865         revision=0
5866         patchlevel=0
5867         subversion=0
5868         api_revision=0
5869         api_version=0
5870         api_subversion=0
5871         perl_patchlevel=0
5872         $echo "(You do not have patchlevel.h.  Eek.)"
5873 fi
5874 if $test -r $rsrc/.patch ; then  
5875         if $test "`cat $rsrc/.patch`" -gt "$perl_patchlevel" ; then
5876                 perl_patchlevel=`cat $rsrc/.patch`
5877         fi
5878 fi
5879 : Define a handy string here to avoid duplication in myconfig.SH and configpm.
5880 version_patchlevel_string="version $patchlevel subversion $subversion"
5881 case "$perl_patchlevel" in
5882 0|'') ;;
5883 *) version_patchlevel_string="$version_patchlevel_string patch $perl_patchlevel" ;;
5884 esac
5885
5886 $echo "(You have $package $version_patchlevel_string.)"
5887
5888 case "$osname" in
5889 dos|vms)
5890         : XXX Should be a Configure test for double-dots in filenames.
5891         version=`echo $revision $patchlevel $subversion | \
5892                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
5893         api_versionstring=`echo $api_revision $api_version $api_subversion | \
5894                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
5895         ;;
5896 *)
5897         version=`echo $revision $patchlevel $subversion | \
5898                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
5899         api_versionstring=`echo $api_revision $api_version $api_subversion | \
5900                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
5901         ;;
5902 esac
5903 : Special case the 5.005_xx maintenance series, which used 5.005
5904 : without any subversion label as a subdirectory in $sitelib
5905 if test "${api_revision}${api_version}${api_subversion}" = "550"; then
5906         api_versionstring='5.005'
5907 fi
5908
5909 : determine installation style
5910 : For now, try to deduce it from prefix unless it is already set.
5911 : Reproduce behavior of 5.005 and earlier, maybe drop that in 5.7.
5912 case "$installstyle" in
5913 '')     case "$prefix" in
5914                 *perl*) dflt='lib';;
5915                 *) dflt='lib/perl5' ;;
5916         esac
5917         ;;
5918 *)      dflt="$installstyle" ;;
5919 esac
5920 : Probably not worth prompting for this since we prompt for all
5921 : the directories individually, and the prompt would be too long and
5922 : confusing anyway.
5923 installstyle=$dflt
5924
5925 : determine where private library files go
5926 : Usual default is /usr/local/lib/perl5/$version.
5927 : Also allow things like /opt/perl/lib/$version, since 
5928 : /opt/perl/lib/perl5... would be redundant.
5929 : The default "style" setting is made in installstyle.U
5930 case "$installstyle" in
5931 *lib/perl5*) set dflt privlib lib/$package/$version ;;
5932 *)       set dflt privlib lib/$version ;;
5933 esac
5934 eval $prefixit
5935 $cat <<EOM
5936
5937 There are some auxiliary files for $package that need to be put into a
5938 private library directory that is accessible by everyone.
5939
5940 EOM
5941 fn=d~+
5942 rp='Pathname where the private library files will reside?'
5943 . ./getfile
5944 privlib="$ans"
5945 privlibexp="$ansexp"
5946 : Change installation prefix, if necessary.
5947 if $test X"$prefix" != X"$installprefix"; then
5948         installprivlib=`echo $privlibexp | sed "s#^$prefix#$installprefix#"`
5949 else
5950         installprivlib="$privlibexp"
5951 fi
5952
5953 : set the prefixup variable, to restore leading tilda escape
5954 prefixup='case "$prefixexp" in
5955 "$prefix") ;;
5956 *) eval "$1=\`echo \$$1 | sed \"s,^$prefixexp,$prefix,\"\`";;
5957 esac'
5958
5959 : determine where public architecture dependent libraries go
5960 set archlib archlib
5961 eval $prefixit
5962 : privlib default is /usr/local/lib/$package/$version
5963 : archlib default is /usr/local/lib/$package/$version/$archname
5964 : privlib may have an optional trailing /share.
5965 tdflt=`echo $privlib | $sed 's,/share$,,'`
5966 tdflt=$tdflt/$archname
5967 case "$archlib" in
5968 '')     dflt=$tdflt
5969         ;;
5970 *)      dflt="$archlib"
5971     ;;
5972 esac
5973 $cat <<EOM
5974
5975 $spackage contains architecture-dependent library files.  If you are
5976 sharing libraries in a heterogeneous environment, you might store
5977 these files in a separate location.  Otherwise, you can just include
5978 them with the rest of the public library files.
5979
5980 EOM
5981 fn=d+~
5982 rp='Where do you want to put the public architecture-dependent libraries?'
5983 . ./getfile
5984 archlib="$ans"
5985 archlibexp="$ansexp"
5986 if $test X"$archlib" = X"$privlib"; then
5987         d_archlib="$undef"
5988 else
5989         d_archlib="$define"
5990 fi
5991 : Change installation prefix, if necessary.
5992 if $test X"$prefix" != X"$installprefix"; then
5993         installarchlib=`echo $archlibexp | sed "s#^$prefix#$installprefix#"`
5994 else
5995         installarchlib="$archlibexp"
5996 fi
5997
5998 : see if setuid scripts can be secure
5999 $cat <<EOM
6000
6001 Some kernels have a bug that prevents setuid #! scripts from being
6002 secure.  Some sites have disabled setuid #! scripts because of this.
6003
6004 First let's decide if your kernel supports secure setuid #! scripts.
6005 (If setuid #! scripts would be secure but have been disabled anyway,
6006 don't say that they are secure if asked.)
6007
6008 EOM
6009
6010 val="$undef"
6011 if $test -d /dev/fd; then
6012         echo "#!$ls" >reflect
6013         chmod +x,u+s reflect
6014         ./reflect >flect 2>&1
6015         if $contains "/dev/fd" flect >/dev/null; then
6016                 echo "Congratulations, your kernel has secure setuid scripts!" >&4
6017                 val="$define"
6018         else
6019                 $cat <<EOM
6020 If you are not sure if they are secure, I can check but I'll need a
6021 username and password different from the one you are using right now.
6022 If you don't have such a username or don't want me to test, simply
6023 enter 'none'.
6024
6025 EOM
6026                 rp='Other username to test security of setuid scripts with?'
6027                 dflt='none'
6028                 . ./myread
6029                 case "$ans" in
6030                 n|none)
6031                         case "$d_suidsafe" in
6032                         '')     echo "I'll assume setuid scripts are *not* secure." >&4
6033                                 dflt=n;;
6034                         "$undef")
6035                                 echo "Well, the $hint value is *not* secure." >&4
6036                                 dflt=n;;
6037                         *)      echo "Well, the $hint value *is* secure." >&4
6038                                 dflt=y;;
6039                         esac
6040                         ;;
6041                 *)
6042                         $rm -f reflect flect
6043                         echo "#!$ls" >reflect
6044                         chmod +x,u+s reflect
6045                         echo >flect
6046                         chmod a+w flect
6047                         echo '"su" will (probably) prompt you for '"$ans's password."
6048                         su $ans -c './reflect >flect'
6049                         if $contains "/dev/fd" flect >/dev/null; then
6050                                 echo "Okay, it looks like setuid scripts are secure." >&4
6051                                 dflt=y
6052                         else
6053                                 echo "I don't think setuid scripts are secure." >&4
6054                                 dflt=n
6055                         fi
6056                         ;;
6057                 esac
6058                 rp='Does your kernel have *secure* setuid scripts?'
6059                 . ./myread
6060                 case "$ans" in
6061                 [yY]*)  val="$define";;
6062                 *)      val="$undef";;
6063                 esac
6064         fi
6065 else
6066         echo "I don't think setuid scripts are secure (no /dev/fd directory)." >&4
6067         echo "(That's for file descriptors, not floppy disks.)"
6068         val="$undef"
6069 fi
6070 set d_suidsafe
6071 eval $setvar
6072
6073 $rm -f reflect flect
6074
6075 : now see if they want to do setuid emulation
6076 echo " "
6077 val="$undef"
6078 case "$d_suidsafe" in
6079 "$define")
6080         val="$undef"
6081         echo "No need to emulate SUID scripts since they are secure here." >&4
6082         ;;
6083 *)
6084         $cat <<EOM
6085 Some systems have disabled setuid scripts, especially systems where
6086 setuid scripts cannot be secure.  On systems where setuid scripts have
6087 been disabled, the setuid/setgid bits on scripts are currently
6088 useless.  It is possible for $package to detect those bits and emulate
6089 setuid/setgid in a secure fashion.  This emulation will only work if
6090 setuid scripts have been disabled in your kernel.
6091
6092 EOM
6093         case "$d_dosuid" in
6094         "$define") dflt=y ;;
6095         *) dflt=n ;;
6096         esac
6097         rp="Do you want to do setuid/setgid emulation?"
6098         . ./myread
6099         case "$ans" in
6100         [yY]*)  val="$define";;
6101         *)      val="$undef";;
6102         esac
6103         ;;
6104 esac
6105 set d_dosuid
6106 eval $setvar
6107
6108 : see if this is a malloc.h system
6109 : we want a real compile instead of Inhdr because some systems have a
6110 : malloc.h that just gives a compile error saying to use stdlib.h instead
6111 echo " "
6112 $cat >try.c <<EOCP
6113 #include <stdlib.h>
6114 #include <malloc.h>
6115 int main () { return 0; }
6116 EOCP
6117 set try
6118 if eval $compile; then
6119     echo "<malloc.h> found." >&4
6120     val="$define"
6121 else
6122     echo "<malloc.h> NOT found." >&4
6123     val="$undef"
6124 fi
6125 $rm -f try.c try
6126 set i_malloc
6127 eval $setvar
6128
6129 : check for void type
6130 echo " "
6131 echo "Checking to see how well your C compiler groks the void type..." >&4
6132 case "$voidflags" in
6133 '')
6134         $cat >try.c <<EOCP
6135 #$i_stdlib I_STDLIB
6136 #ifdef I_STDLIB
6137 #include <stdlib.h>
6138 #endif
6139 #if TRY & 1
6140 void sub() {
6141 #else
6142 sub() {
6143 #endif
6144         extern void moo();      /* function returning void */
6145         void (*goo)();          /* ptr to func returning void */
6146 #if TRY & 8
6147         void *hue;              /* generic ptr */
6148 #endif
6149 #if TRY & 2
6150         void (*foo[10])();
6151 #endif
6152
6153 #if TRY & 4
6154         if(goo == moo) {
6155                 exit(0);
6156         }
6157 #endif
6158         exit(0);
6159 }
6160 int main() { sub(); }
6161 EOCP
6162         if $cc $ccflags -c -DTRY=$defvoidused try.c >.out 2>&1 ; then
6163                 voidflags=$defvoidused
6164         echo "Good.  It appears to support void to the level $package wants.">&4
6165                 if $contains warning .out >/dev/null 2>&1; then
6166                         echo "However, you might get some warnings that look like this:"
6167                         $cat .out
6168                 fi
6169         else
6170 echo "Hmm, your compiler has some difficulty with void. Checking further..." >&4
6171                 if $cc $ccflags -c -DTRY=1 try.c >/dev/null 2>&1; then
6172                         echo "It supports 1..."
6173                         if $cc $ccflags -c -DTRY=3 try.c >/dev/null 2>&1; then
6174                                 echo "It also supports 2..."
6175                                 if $cc $ccflags -c -DTRY=7 try.c >/dev/null 2>&1; then
6176                                         voidflags=7
6177                                         echo "And it supports 4 but not 8 definitely."
6178                                 else
6179                                         echo "It doesn't support 4..."
6180                                         if $cc $ccflags -c -DTRY=11 try.c >/dev/null 2>&1; then
6181                                                 voidflags=11
6182                                                 echo "But it supports 8."
6183                                         else
6184                                                 voidflags=3
6185                                                 echo "Neither does it support 8."
6186                                         fi
6187                                 fi
6188                         else
6189                                 echo "It does not support 2..."
6190                                 if $cc $ccflags -c -DTRY=13 try.c >/dev/null 2>&1; then
6191                                         voidflags=13
6192                                         echo "But it supports 4 and 8."
6193                                 else
6194                                         if $cc $ccflags -c -DTRY=5 try.c >/dev/null 2>&1; then
6195                                                 voidflags=5
6196                                                 echo "And it supports 4 but has not heard about 8."
6197                                         else
6198                                                 echo "However it supports 8 but not 4."
6199                                         fi
6200                                 fi
6201                         fi
6202                 else
6203                         echo "There is no support at all for void."
6204                         voidflags=0
6205                 fi
6206         fi
6207 esac
6208 case "$voidflags" in
6209 "$defvoidused") ;;
6210 *)      $cat >&4 <<'EOM'
6211   Support flag bits are:
6212     1: basic void declarations.
6213     2: arrays of pointers to functions returning void.
6214     4: operations between pointers to and addresses of void functions.
6215     8: generic void pointers.
6216 EOM
6217         dflt="$voidflags";
6218         rp="Your void support flags add up to what?"
6219         . ./myread
6220         voidflags="$ans"
6221         ;;
6222 esac
6223 $rm -f try.* .out
6224
6225 : check for length of pointer
6226 echo " "
6227 case "$ptrsize" in
6228 '')
6229         echo "Checking to see how big your pointers are..." >&4
6230         if test "$voidflags" -gt 7; then
6231                 echo '#define VOID_PTR char *' > try.c
6232         else
6233                 echo '#define VOID_PTR void *' > try.c
6234         fi
6235         $cat >>try.c <<EOCP
6236 #include <stdio.h>
6237 #$i_stdlib I_STDLIB
6238 #ifdef I_STDLIB
6239 #include <stdlib.h>
6240 #endif
6241 int main()
6242 {
6243     printf("%d\n", (int)sizeof(VOID_PTR));
6244     exit(0);
6245 }
6246 EOCP
6247         set try
6248         if eval $compile_ok; then
6249                 ptrsize=`$run ./try`
6250                 echo "Your pointers are $ptrsize bytes long."
6251         else
6252                 dflt='4'
6253                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
6254                 rp="What is the size of a pointer (in bytes)?"
6255                 . ./myread
6256                 ptrsize="$ans"
6257         fi
6258         ;;
6259 esac
6260 $rm -f try.c try
6261 case "$use64bitall" in
6262 "$define"|true|[yY]*)
6263         case "$ptrsize" in
6264         4)      cat <<EOM >&4
6265
6266 *** You have chosen a maximally 64-bit build,
6267 *** but your pointers are only 4 bytes wide.
6268 *** Please rerun Configure without -Duse64bitall.
6269 EOM
6270                 case "$d_quad" in
6271                 define)
6272                         cat <<EOM >&4
6273 *** Since you have quads, you could possibly try with -Duse64bitint.
6274 EOM
6275                         ;;
6276                 esac
6277                 cat <<EOM >&4
6278 *** Cannot continue, aborting.
6279
6280 EOM
6281
6282                 exit 1
6283                 ;;
6284         esac
6285         ;;
6286 esac
6287
6288
6289 : determine whether to use malloc wrapping
6290 echo " "
6291 case "$usemallocwrap" in
6292 [yY]*|true|$define)     dflt='y' ;;
6293 [nN]*|false|$undef)     dflt='n' ;;
6294 *)      case "$usedevel" in
6295         [yY]*|true|$define)     dflt='y' ;;
6296         *) dflt='n' ;;
6297         esac
6298         ;;
6299 esac
6300 rp="Do you wish to wrap malloc calls to protect against potential overflows?"
6301 . ./myread
6302 usemallocwrap="$ans"
6303 case "$ans" in
6304 y*|true)
6305         usemallocwrap="$define" ;;
6306 *)
6307         usemallocwrap="$undef" ;;
6308 esac
6309
6310 : determine which malloc to compile in
6311 echo " "
6312 case "$usemymalloc" in
6313 [yY]*|true|$define)     dflt='y' ;;
6314 [nN]*|false|$undef)     dflt='n' ;;
6315 *)      case "$ptrsize" in
6316         4) dflt='y' ;;
6317         *) dflt='n' ;;
6318         esac
6319         ;;
6320 esac
6321 rp="Do you wish to attempt to use the malloc that comes with $package?"
6322 . ./myread
6323 usemymalloc="$ans"
6324 case "$ans" in
6325 y*|true)
6326         usemymalloc='y'
6327         mallocsrc='malloc.c'
6328         mallocobj="malloc$_o"
6329         d_mymalloc="$define"
6330         case "$libs" in
6331         *-lmalloc*)
6332                 : Remove malloc from list of libraries to use
6333                 echo "Removing unneeded -lmalloc from library list" >&4
6334                 set `echo X $libs | $sed -e 's/-lmalloc / /' -e 's/-lmalloc$//'`
6335                 shift
6336                 libs="$*"
6337                 echo "libs = $libs" >&4
6338                 ;;
6339         esac
6340         ;;
6341 *)
6342         usemymalloc='n'
6343         mallocsrc=''
6344         mallocobj=''
6345         d_mymalloc="$undef"
6346         ;;
6347 esac
6348
6349 : compute the return types of malloc and free
6350 echo " "
6351 $cat >malloc.c <<END
6352 #$i_malloc I_MALLOC
6353 #$i_stdlib I_STDLIB
6354 #include <stdio.h>
6355 #include <sys/types.h>
6356 #ifdef I_MALLOC
6357 #include <malloc.h>
6358 #endif
6359 #ifdef I_STDLIB
6360 #include <stdlib.h>
6361 #endif
6362 #ifdef TRY_MALLOC
6363 void *malloc();
6364 #endif
6365 #ifdef TRY_FREE
6366 void free();
6367 #endif
6368 END
6369 case "$malloctype" in
6370 '')
6371         if $cc $ccflags -c -DTRY_MALLOC malloc.c >/dev/null 2>&1; then
6372                 malloctype='void *'
6373         else
6374                 malloctype='char *'
6375         fi
6376         ;;
6377 esac
6378 echo "Your system wants malloc to return '$malloctype', it would seem." >&4
6379
6380 case "$freetype" in
6381 '')
6382         if $cc $ccflags -c -DTRY_FREE malloc.c >/dev/null 2>&1; then
6383                 freetype='void'
6384         else
6385                 freetype='int'
6386         fi
6387         ;;
6388 esac
6389 echo "Your system uses $freetype free(), it would seem." >&4
6390 $rm -f malloc.[co]
6391 $cat <<EOM
6392
6393 After $package is installed, you may wish to install various
6394 add-on modules and utilities.  Typically, these add-ons will
6395 be installed under $prefix with the rest
6396 of this package.  However, you may wish to install such add-ons
6397 elsewhere under a different prefix.
6398
6399 If you do not wish to put everything under a single prefix, that's
6400 ok.  You will be prompted for the individual locations; this siteprefix
6401 is only used to suggest the defaults.
6402
6403 The default should be fine for most people.
6404
6405 EOM
6406 fn=d~+
6407 rp='Installation prefix to use for add-on modules and utilities?'
6408 : XXX Here might be another good place for an installstyle setting.
6409 case "$siteprefix" in
6410 '') dflt=$prefix ;;
6411 *)  dflt=$siteprefix ;;
6412 esac
6413 . ./getfile
6414 : XXX Prefixit unit does not yet support siteprefix and vendorprefix
6415 oldsiteprefix=''
6416 case "$siteprefix" in
6417 '') ;;
6418 *)      case "$ans" in
6419         "$prefix") ;;
6420         *) oldsiteprefix="$prefix";;
6421         esac
6422         ;;
6423 esac
6424 siteprefix="$ans"
6425 siteprefixexp="$ansexp"
6426
6427 : determine where site specific libraries go.
6428 : Usual default is /usr/local/lib/perl5/site_perl/$version
6429 : The default "style" setting is made in installstyle.U
6430 : XXX No longer works with Prefixit stuff.
6431 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6432 case "$sitelib" in
6433 '') case "$installstyle" in
6434         *lib/perl5*) dflt=$siteprefix/lib/$package/site_$prog/$version ;;
6435         *)       dflt=$siteprefix/lib/site_$prog/$version ;;
6436         esac
6437         ;;
6438 *)      dflt="$sitelib"
6439         ;;
6440 esac
6441 $cat <<EOM
6442
6443 The installation process will create a directory for
6444 site-specific extensions and modules.  Most users find it convenient
6445 to place all site-specific files in this directory rather than in the
6446 main distribution directory.
6447
6448 EOM
6449 fn=d~+
6450 rp='Pathname for the site-specific library files?'
6451 . ./getfile
6452 sitelib="$ans"
6453 sitelibexp="$ansexp"
6454 sitelib_stem=`echo "$sitelibexp" | sed "s,/$version$,,"`
6455 : Change installation prefix, if necessary.
6456 if $test X"$prefix" != X"$installprefix"; then
6457         installsitelib=`echo $sitelibexp | $sed "s#^$prefix#$installprefix#"`
6458 else
6459         installsitelib="$sitelibexp"
6460 fi
6461
6462 : determine where site specific architecture-dependent libraries go.
6463 : sitelib  default is /usr/local/lib/perl5/site_perl/$version
6464 : sitearch default is /usr/local/lib/perl5/site_perl/$version/$archname
6465 : sitelib may have an optional trailing /share.
6466 case "$sitearch" in
6467 '')     dflt=`echo $sitelib | $sed 's,/share$,,'`
6468         dflt="$dflt/$archname"
6469         ;;
6470 *)      dflt="$sitearch"
6471         ;;
6472 esac
6473 set sitearch sitearch none
6474 eval $prefixit
6475 $cat <<EOM
6476
6477 The installation process will also create a directory for
6478 architecture-dependent site-specific extensions and modules.
6479
6480 EOM
6481 fn=d~+
6482 rp='Pathname for the site-specific architecture-dependent library files?'
6483 . ./getfile
6484 sitearch="$ans"
6485 sitearchexp="$ansexp"
6486 : Change installation prefix, if necessary.
6487 if $test X"$prefix" != X"$installprefix"; then
6488         installsitearch=`echo $sitearchexp | sed "s#^$prefix#$installprefix#"`
6489 else
6490         installsitearch="$sitearchexp"
6491 fi
6492
6493 $cat <<EOM
6494
6495 The installation process will also create a directory for
6496 vendor-supplied add-ons.  Vendors who supply perl with their system
6497 may find it convenient to place all vendor-supplied files in this
6498 directory rather than in the main distribution directory.  This will
6499 ease upgrades between binary-compatible maintenance versions of perl.
6500
6501 Of course you may also use these directories in whatever way you see
6502 fit.  For example, you might use them to access modules shared over a
6503 company-wide network.
6504
6505 The default answer should be fine for most people.
6506 This causes further questions about vendor add-ons to be skipped
6507 and no vendor-specific directories will be configured for perl.
6508
6509 EOM
6510 rp='Do you want to configure vendor-specific add-on directories?'
6511 case "$usevendorprefix" in
6512 define|true|[yY]*) dflt=y ;;
6513 *)      : User may have set vendorprefix directly on Configure command line.
6514         case "$vendorprefix" in
6515         ''|' ') dflt=n ;;
6516         *)      dflt=y ;;
6517         esac
6518         ;;
6519 esac
6520 . ./myread
6521 case "$ans" in
6522 [yY]*)  fn=d~+
6523         rp='Installation prefix to use for vendor-supplied add-ons?'
6524         case "$vendorprefix" in
6525         '') dflt='' ;;
6526         *)  dflt=$vendorprefix ;;
6527         esac
6528         . ./getfile
6529         : XXX Prefixit unit does not yet support siteprefix and vendorprefix
6530         oldvendorprefix=''
6531         case "$vendorprefix" in
6532         '') ;;
6533         *)      case "$ans" in
6534                 "$prefix") ;;
6535                 *) oldvendorprefix="$prefix";;
6536                 esac
6537                 ;;
6538         esac
6539         usevendorprefix="$define"
6540         vendorprefix="$ans"
6541         vendorprefixexp="$ansexp"
6542         ;;
6543 *)      usevendorprefix="$undef"
6544         vendorprefix=''
6545         vendorprefixexp=''
6546         ;;
6547 esac
6548
6549 case "$vendorprefix" in
6550 '')     d_vendorlib="$undef"
6551         vendorlib=''
6552         vendorlibexp=''
6553         ;;
6554 *)      d_vendorlib="$define"
6555         : determine where vendor-supplied modules go.
6556         : Usual default is /usr/local/lib/perl5/vendor_perl/$version
6557         case "$vendorlib" in
6558         '')
6559                 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6560                 case "$installstyle" in
6561                 *lib/perl5*) dflt=$vendorprefix/lib/$package/vendor_$prog/$version ;;
6562                 *)           dflt=$vendorprefix/lib/vendor_$prog/$version ;;
6563                 esac
6564                 ;;
6565         *)      dflt="$vendorlib"
6566                 ;;
6567         esac
6568         fn=d~+
6569         rp='Pathname for the vendor-supplied library files?'
6570         . ./getfile
6571         vendorlib="$ans"
6572         vendorlibexp="$ansexp"
6573         ;;
6574 esac
6575 vendorlib_stem=`echo "$vendorlibexp" | sed "s,/$version$,,"`
6576 : Change installation prefix, if necessary.
6577 if $test X"$prefix" != X"$installprefix"; then
6578         installvendorlib=`echo $vendorlibexp | $sed "s#^$prefix#$installprefix#"`
6579 else
6580         installvendorlib="$vendorlibexp"
6581 fi
6582
6583 case "$vendorprefix" in
6584 '')     d_vendorarch="$undef"
6585         vendorarch=''
6586         vendorarchexp=''
6587         ;;
6588 *)      d_vendorarch="$define"
6589         : determine where vendor-supplied architecture-dependent libraries go.
6590         : vendorlib  default is /usr/local/lib/perl5/vendor_perl/$version
6591         : vendorarch default is /usr/local/lib/perl5/vendor_perl/$version/$archname
6592         : vendorlib may have an optional trailing /share.
6593         case "$vendorarch" in
6594         '')     dflt=`echo $vendorlib | $sed 's,/share$,,'`
6595                 dflt="$dflt/$archname"
6596                 ;;
6597         *)      dflt="$vendorarch" ;;
6598         esac
6599         fn=d~+
6600         rp='Pathname for vendor-supplied architecture-dependent files?'
6601         . ./getfile
6602         vendorarch="$ans"
6603         vendorarchexp="$ansexp"
6604         ;;
6605 esac
6606 : Change installation prefix, if necessary.
6607 if $test X"$prefix" != X"$installprefix"; then
6608         installvendorarch=`echo $vendorarchexp | sed "s#^$prefix#$installprefix#"`
6609 else
6610         installvendorarch="$vendorarchexp"
6611 fi
6612
6613 : Final catch-all directories to search
6614 $cat <<EOM
6615
6616 Lastly, you can have perl look in other directories for extensions and
6617 modules in addition to those already specified.
6618 These directories will be searched after 
6619         $sitearch 
6620         $sitelib 
6621 EOM
6622 test X"$vendorlib" != "X" && echo '     ' $vendorlib
6623 test X"$vendorarch" != "X" && echo '    ' $vendorarch
6624 echo ' '
6625 case "$otherlibdirs" in
6626 ''|' ') dflt='none' ;;
6627 *)      dflt="$otherlibdirs" ;;
6628 esac
6629 $cat <<EOM
6630 Enter a colon-separated set of extra paths to include in perl's @INC
6631 search path, or enter 'none' for no extra paths.
6632
6633 EOM
6634
6635 rp='Colon-separated list of additional directories for perl to search?'
6636 . ./myread
6637 case "$ans" in
6638 ' '|''|none)    otherlibdirs=' ' ;;     
6639 *)      otherlibdirs="$ans" ;;
6640 esac
6641 case "$otherlibdirs" in
6642 ' ') val=$undef ;;
6643 *)      val=$define ;;
6644 esac
6645 set d_perl_otherlibdirs
6646 eval $setvar
6647
6648 : Cruising for prototypes
6649 echo " "
6650 echo "Checking out function prototypes..." >&4
6651 $cat >prototype.c <<EOCP
6652 #$i_stdlib I_STDLIB
6653 #ifdef I_STDLIB
6654 #include <stdlib.h>
6655 #endif
6656 int main(int argc, char *argv[]) {
6657         exit(0);}
6658 EOCP
6659 if $cc $ccflags -c prototype.c >prototype.out 2>&1 ; then
6660         echo "Your C compiler appears to support function prototypes."
6661         val="$define"
6662 else
6663         echo "Your C compiler doesn't seem to understand function prototypes."
6664         val="$undef"
6665 fi
6666 set prototype
6667 eval $setvar
6668 $rm -f prototype*
6669
6670 case "$prototype" in
6671 "$define") ;;
6672 *)      ansi2knr='ansi2knr'
6673         echo " "
6674         cat <<EOM >&4
6675
6676 $me:  FATAL ERROR:
6677 This version of $package can only be compiled by a compiler that 
6678 understands function prototypes.  Unfortunately, your C compiler 
6679         $cc $ccflags
6680 doesn't seem to understand them.  Sorry about that.
6681
6682 If GNU cc is available for your system, perhaps you could try that instead.  
6683
6684 Eventually, we hope to support building Perl with pre-ANSI compilers.
6685 If you would like to help in that effort, please contact <perlbug@perl.org>.
6686
6687 Aborting Configure now.
6688 EOM
6689         exit 2
6690         ;;
6691 esac
6692
6693 : determine where public executables go
6694 echo " "
6695 set dflt bin bin
6696 eval $prefixit
6697 fn=d~
6698 rp='Pathname where the public executables will reside?'
6699 . ./getfile
6700 if $test "X$ansexp" != "X$binexp"; then
6701         installbin=''
6702 fi
6703 bin="$ans"
6704 binexp="$ansexp"
6705 : Change installation prefix, if necessary.
6706 : XXX Bug? -- ignores Configure -Dinstallprefix setting.
6707 if $test X"$prefix" != X"$installprefix"; then
6708         installbin=`echo $binexp | sed "s#^$prefix#$installprefix#"`
6709 else
6710         installbin="$binexp"
6711 fi
6712
6713 echo " "
6714 case "$extras" in
6715 '') dflt='n';;
6716 *) dflt='y';;
6717 esac
6718 cat <<EOM
6719 Perl can be built with extra modules or bundles of modules which
6720 will be fetched from the CPAN and installed alongside Perl.
6721
6722 Notice that you will need access to the CPAN; either via the Internet,
6723 or a local copy, for example a CD-ROM or a local CPAN mirror.  (You will
6724 be asked later to configure the CPAN.pm module which will in turn do
6725 the installation of the rest of the extra modules or bundles.)
6726
6727 Notice also that if the modules require any external software such as
6728 libraries and headers (the libz library and the zlib.h header for the
6729 Compress::Zlib module, for example) you MUST have any such software
6730 already installed, this configuration process will NOT install such
6731 things for you.
6732
6733 If this doesn't make any sense to you, just accept the default '$dflt'.
6734 EOM
6735 rp='Install any extra modules (y or n)?'
6736 . ./myread
6737 case "$ans" in
6738 y|Y)
6739         cat <<EOM
6740
6741 Please list any extra modules or bundles to be installed from CPAN,
6742 with spaces between the names.  The names can be in any format the
6743 'install' command of CPAN.pm will understand.  (Answer 'none',
6744 without the quotes, to install no extra modules or bundles.)
6745 EOM
6746         rp='Extras?'
6747         dflt="$extras"
6748         . ./myread
6749         extras="$ans"
6750 esac
6751 case "$extras" in
6752 ''|'none')
6753         val=''
6754         $rm -f ../extras.lst
6755         ;;
6756 *)      echo "(Saving the list of extras for later...)"
6757         echo "$extras" > ../extras.lst
6758         val="'$extras'"
6759         ;;
6760 esac
6761 set extras
6762 eval $setvar
6763 echo " "
6764
6765 : determine where html pages for programs go
6766 set html1dir html1dir none
6767 eval $prefixit
6768 $cat <<EOM
6769
6770 If you wish to install html files for programs in $spackage, indicate 
6771 the appropriate directory here.  To skip installing html files,
6772 answer "none".
6773 EOM
6774 case "$html1dir" in
6775 ''|none|$undef|' ') dflt=none ;;
6776 *) dflt=$html1dir ;;
6777 esac
6778 fn=dn+~
6779 rp="Directory for the main $spackage html pages?"
6780 . ./getfile
6781 html1dir="$ans"
6782 html1direxp="$ansexp"
6783 : Use ' ' for none so value is preserved next time through Configure
6784 $test X"$html1dir" = "X" && html1dir=' '
6785 : Change installation prefix, if necessary.
6786 if $test X"$prefix" != X"$installprefix"; then
6787         installhtml1dir=`echo $html1direxp | sed "s#^$prefix#$installprefix#"`
6788 else
6789         installhtml1dir="$html1direxp"
6790 fi
6791
6792 : determine where html pages for libraries and modules go
6793 set html3dir html3dir none
6794 eval $prefixit
6795 $cat <<EOM
6796
6797 If you wish to install html files for modules associated with $spackage,
6798 indicate the appropriate directory here.  To skip installing html files,
6799 answer "none".
6800 EOM
6801 : There is no obvious default.  If they have specified html1dir, then
6802 : try to key off that, possibly changing .../html1 into .../html3.
6803 case "$html3dir" in
6804 '') html3dir=`echo "$html1dir" | $sed 's/1$/3$/'` ;;
6805 *) dflt=$html3dir ;;
6806 esac
6807 fn=dn+~
6808 rp="Directory for the $spackage module html pages?"
6809 . ./getfile
6810 html3dir="$ans"
6811 html3direxp="$ansexp"
6812 : Use ' ' for none so value is preserved next time through Configure
6813 $test X"$html3dir" = "X" && html3dir=' '
6814 : Change installation prefix, if necessary.
6815 if $test X"$prefix" != X"$installprefix"; then
6816         installhtml3dir=`echo $html3direxp | sed "s#^$prefix#$installprefix#"`
6817 else
6818         installhtml3dir="$html3direxp"
6819 fi
6820
6821 : Find perl5.005 or later.
6822 echo "Looking for a previously installed perl5.005 or later... "
6823 case "$perl5" in
6824 '')     for tdir in `echo "$binexp$path_sep$PATH" | $sed "s/$path_sep/ /g"`; do
6825                 : Check if this perl is recent and can load a simple module
6826                 if $test -x $tdir/perl$exe_ext && $tdir/perl -Mless -e 'use 5.005;' >/dev/null 2>&1; then
6827                         perl5=$tdir/perl
6828                         break;
6829                 elif $test -x $tdir/perl5$exe_ext && $tdir/perl5 -Mless -e 'use 5.005;' >/dev/null 2>&1; then
6830                         perl5=$tdir/perl5
6831                         break;
6832                 fi
6833         done
6834         ;;
6835 *)      perl5="$perl5"
6836         ;;
6837 esac
6838 case "$perl5" in
6839 '')     echo "None found.  That's ok.";;
6840 *)      echo "Using $perl5." ;;
6841 esac
6842
6843 : Determine list of previous versions to include in @INC
6844 $cat > getverlist <<EOPL
6845 #!$perl5 -w
6846 use File::Basename;
6847 \$api_versionstring = "$api_versionstring";
6848 \$version = "$version";
6849 \$stem = "$sitelib_stem";
6850 \$archname = "$archname";
6851 EOPL
6852         $cat >> getverlist <<'EOPL'
6853 # Can't have leading @ because metaconfig interprets it as a command!
6854 ;@inc_version_list=();
6855 # XXX Redo to do opendir/readdir? 
6856 if (-d $stem) {
6857     chdir($stem);
6858     ;@candidates = glob("5.*");
6859 }
6860 else {
6861     ;@candidates = ();
6862 }
6863
6864 # XXX ToDo:  These comparisons must be reworked when two-digit
6865 # subversions come along, so that 5.7.10 compares as greater than
6866 # 5.7.3!  By that time, hope that 5.6.x is sufficiently
6867 # widespread that we can use the built-in version vectors rather
6868 # than reinventing them here.  For 5.6.0, however, we must
6869 # assume this script will likely be run by 5.005_0x.  --AD 1/2000.
6870 foreach $d (@candidates) {
6871     if ($d lt $version) {
6872         if ($d ge $api_versionstring) {
6873             unshift(@inc_version_list, grep { -d } "$d/$archname", $d);
6874         }
6875         elsif ($d ge "5.005") {
6876             unshift(@inc_version_list, grep { -d } $d);
6877         }
6878     }
6879     else {
6880         # Skip newer version.  I.e. don't look in
6881         # 5.7.0 if we're installing 5.6.1.
6882     }
6883 }
6884
6885 if (@inc_version_list) {
6886     print join(' ', @inc_version_list);
6887 }
6888 else {
6889     # Blank space to preserve value for next Configure run.
6890     print " ";
6891 }
6892 EOPL
6893 chmod +x getverlist
6894 case "$inc_version_list" in
6895 '')     if test -x "$perl5$exe_ext"; then
6896                 dflt=`$perl5 getverlist`
6897         else
6898                 dflt='none'
6899         fi
6900         ;;
6901 $undef) dflt='none' ;;
6902 *)  eval dflt=\"$inc_version_list\" ;;
6903 esac
6904 case "$dflt" in
6905 ''|' ') dflt=none ;;
6906 esac
6907 case "$dflt" in
6908 5.005) dflt=none ;;
6909 esac
6910 $cat <<EOM
6911
6912 In order to ease the process of upgrading, this version of perl 
6913 can be configured to use modules built and installed with earlier 
6914 versions of perl that were installed under $prefix.  Specify here
6915 the list of earlier versions that this version of perl should check.
6916 If Configure detected no earlier versions of perl installed under
6917 $prefix, then the list will be empty.  Answer 'none' to tell perl
6918 to not search earlier versions.
6919
6920 The default should almost always be sensible, so if you're not sure,
6921 just accept the default.
6922 EOM
6923
6924 rp='List of earlier versions to include in @INC?'
6925 . ./myread
6926 case "$ans" in
6927 [Nn]one|''|' '|$undef) inc_version_list=' ' ;;
6928 *) inc_version_list="$ans" ;;
6929 esac
6930 case "$inc_version_list" in
6931 ''|' ') 
6932         inc_version_list_init='0';;
6933 *)      inc_version_list_init=`echo $inc_version_list |
6934                 $sed -e 's/^/"/' -e 's/ /","/g' -e 's/$/",0/'`
6935         ;;
6936 esac
6937 $rm -f getverlist
6938
6939 : determine whether to install perl also as /usr/bin/perl
6940
6941 echo " "
6942 if $test -d /usr/bin -a "X$installbin" != X/usr/bin; then
6943         $cat <<EOM
6944 Many scripts expect perl to be installed as /usr/bin/perl.
6945
6946 If you want to, I can install the perl you are about to compile
6947 as /usr/bin/perl (in addition to $bin/perl).
6948 EOM
6949         if test -f /usr/bin/perl; then
6950             $cat <<EOM
6951
6952 However, please note that because you already have a /usr/bin/perl,
6953 overwriting that with a new Perl would very probably cause problems.
6954 Therefore I'm assuming you don't want to do that (unless you insist).
6955
6956 EOM
6957             case "$installusrbinperl" in
6958             "$define"|[yY]*)    dflt='y';;
6959             *)                  dflt='n';;
6960             esac
6961         else
6962             $cat <<EOM
6963
6964 Since you don't have a /usr/bin/perl I'm assuming creating one is okay.
6965
6966 EOM
6967             case "$installusrbinperl" in
6968             "$undef"|[nN]*)     dflt='n';;
6969             *)                  dflt='y';;
6970             esac
6971         fi
6972         rp="Do you want to install perl as /usr/bin/perl?"
6973         . ./myread
6974         case "$ans" in
6975         [yY]*)  val="$define";;
6976         *)      val="$undef" ;;
6977         esac
6978 else
6979         val="$undef"
6980 fi
6981 set installusrbinperl
6982 eval $setvar
6983
6984 echo " "
6985 echo "Checking for GNU C Library..." >&4
6986 cat >try.c <<'EOCP'
6987 /* Find out version of GNU C library.  __GLIBC__ and __GLIBC_MINOR__
6988    alone are insufficient to distinguish different versions, such as
6989    2.0.6 and 2.0.7.  The function gnu_get_libc_version() appeared in
6990    libc version 2.1.0.      A. Dougherty,  June 3, 2002.
6991 */
6992 #include <stdio.h>
6993 int main(void)
6994 {
6995 #ifdef __GLIBC__
6996 #   ifdef __GLIBC_MINOR__
6997 #       if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
6998 #           include <gnu/libc-version.h>
6999             printf("%s\n",  gnu_get_libc_version());
7000 #       else
7001             printf("%d.%d\n",  __GLIBC__, __GLIBC_MINOR__);
7002 #       endif
7003 #   else
7004         printf("%d\n",  __GLIBC__);
7005 #   endif
7006     return 0;
7007 #else
7008     return 1;
7009 #endif
7010 }
7011 EOCP
7012 set try
7013 if eval $compile_ok && $run ./try > glibc.ver; then
7014         val="$define"
7015         gnulibc_version=`$cat glibc.ver`
7016         echo "You are using the GNU C Library version $gnulibc_version"
7017 else
7018         val="$undef"
7019         gnulibc_version=''
7020         echo "You are not using the GNU C Library"
7021 fi
7022 $rm -f try try.* glibc.ver
7023 set d_gnulibc
7024 eval $setvar
7025
7026 : see if nm is to be used to determine whether a symbol is defined or not
7027 case "$usenm" in
7028 '')
7029         dflt=''
7030         case "$d_gnulibc" in
7031         "$define")
7032                 echo " "
7033                 echo "nm probably won't work on the GNU C Library." >&4
7034                 dflt=n
7035                 ;;
7036         esac
7037         case "$dflt" in
7038         '') 
7039                 if $test "$osname" = aix -a "X$PASE" != "Xdefine" -a ! -f /lib/syscalls.exp; then
7040                         echo " "
7041                         echo "Whoops!  This is an AIX system without /lib/syscalls.exp!" >&4
7042                         echo "'nm' won't be sufficient on this sytem." >&4
7043                         dflt=n
7044                 fi
7045                 ;;
7046         esac
7047         case "$dflt" in
7048         '') dflt=`$egrep 'inlibc|csym' $rsrc/Configure | wc -l 2>/dev/null`
7049                 if $test $dflt -gt 20; then
7050                         dflt=y
7051                 else
7052                         dflt=n
7053                 fi
7054                 ;;
7055         esac
7056         ;;
7057 *)
7058         case "$usenm" in
7059         true|$define) dflt=y;;
7060         *) dflt=n;;
7061         esac
7062         ;;
7063 esac
7064 $cat <<EOM
7065
7066 I can use $nm to extract the symbols from your C libraries. This
7067 is a time consuming task which may generate huge output on the disk (up
7068 to 3 megabytes) but that should make the symbols extraction faster. The
7069 alternative is to skip the 'nm' extraction part and to compile a small
7070 test program instead to determine whether each symbol is present. If
7071 you have a fast C compiler and/or if your 'nm' output cannot be parsed,
7072 this may be the best solution.
7073
7074 You probably shouldn't let me use 'nm' if you are using the GNU C Library.
7075
7076 EOM
7077 rp="Shall I use $nm to extract C symbols from the libraries?"
7078 . ./myread
7079 case "$ans" in
7080 [Nn]*) usenm=false;;
7081 *) usenm=true;;
7082 esac
7083
7084 runnm=$usenm
7085 case "$reuseval" in
7086 true) runnm=false;;
7087 esac
7088
7089 : nm options which may be necessary
7090 case "$nm_opt" in
7091 '') if $test -f /mach_boot; then
7092                 nm_opt=''       # Mach
7093         elif $test -d /usr/ccs/lib; then
7094                 nm_opt='-p'     # Solaris (and SunOS?)
7095         elif $test -f /dgux; then
7096                 nm_opt='-p'     # DG-UX
7097         elif $test -f /lib64/rld; then
7098                 nm_opt='-p'     # 64-bit Irix
7099         else
7100                 nm_opt=''
7101         fi;;
7102 esac
7103
7104 : nm options which may be necessary for shared libraries but illegal
7105 : for archive libraries.  Thank you, Linux.
7106 case "$nm_so_opt" in
7107 '')     case "$myuname" in
7108         *linux*)
7109                 if $nm --help | $grep 'dynamic' > /dev/null 2>&1; then
7110                         nm_so_opt='--dynamic'
7111                 fi
7112                 ;;
7113         esac
7114         ;;
7115 esac
7116
7117 case "$runnm" in
7118 true)
7119 : get list of predefined functions in a handy place
7120 echo " "
7121 case "$libc" in
7122 '') libc=unknown
7123         case "$libs" in
7124         *-lc_s*) libc=`./loc libc_s$_a $libc $libpth`
7125         esac
7126         ;;
7127 esac
7128 case "$libs" in
7129 '') ;;
7130 *)  for thislib in $libs; do
7131         case "$thislib" in
7132         -lc|-lc_s)
7133                 : Handle C library specially below.
7134                 ;;
7135         -l*)
7136                 thislib=`echo $thislib | $sed -e 's/^-l//'`
7137                 if try=`./loc lib$thislib.$so.'*' X $libpth`; $test -f "$try"; then
7138                         :
7139                 elif try=`./loc lib$thislib.$so X $libpth`; $test -f "$try"; then
7140                         :
7141                 elif try=`./loc lib$thislib$_a X $libpth`; $test -f "$try"; then
7142                         :
7143                 elif try=`./loc $thislib$_a X $libpth`; $test -f "$try"; then
7144                         :
7145                 elif try=`./loc lib$thislib X $libpth`; $test -f "$try"; then
7146                         :
7147                 elif try=`./loc $thislib X $libpth`; $test -f "$try"; then
7148                         :
7149                 elif try=`./loc Slib$thislib$_a X $xlibpth`; $test -f "$try"; then
7150                         :
7151                 else
7152                         try=''
7153                 fi
7154                 libnames="$libnames $try"
7155                 ;;
7156         *) libnames="$libnames $thislib" ;;
7157         esac
7158         done
7159         ;;
7160 esac
7161 xxx=normal
7162 case "$libc" in
7163 unknown)
7164         set /lib/libc.$so
7165         for xxx in $libpth; do
7166                 $test -r $1 || set $xxx/libc.$so
7167                 : The messy sed command sorts on library version numbers.
7168                 $test -r $1 || \
7169                         set `echo blurfl; echo $xxx/libc.$so.[0-9]* | \
7170                         tr ' ' $trnl | egrep -v '\.[A-Za-z]*$' | $sed -e '
7171                                 h
7172                                 s/[0-9][0-9]*/0000&/g
7173                                 s/0*\([0-9][0-9][0-9][0-9][0-9]\)/\1/g
7174                                 G
7175                                 s/\n/ /' | \
7176                          $sort | $sed -e 's/^.* //'`
7177                 eval set \$$#
7178         done
7179         $test -r $1 || set /usr/ccs/lib/libc.$so
7180         $test -r $1 || set /lib/libsys_s$_a
7181         ;;
7182 *)
7183         set blurfl
7184         ;;
7185 esac
7186 if $test -r "$1"; then
7187         echo "Your (shared) C library seems to be in $1."
7188         libc="$1"
7189 elif $test -r /lib/libc && $test -r /lib/clib; then
7190         echo "Your C library seems to be in both /lib/clib and /lib/libc."
7191         xxx=apollo
7192         libc='/lib/clib /lib/libc'
7193         if $test -r /lib/syslib; then
7194                 echo "(Your math library is in /lib/syslib.)"
7195                 libc="$libc /lib/syslib"
7196         fi
7197 elif $test -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
7198         echo "Your C library seems to be in $libc, as you said before."
7199 elif $test -r $incpath/usr/lib/libc$_a; then
7200         libc=$incpath/usr/lib/libc$_a;
7201         echo "Your C library seems to be in $libc.  That's fine."
7202 elif $test -r /lib/libc$_a; then
7203         libc=/lib/libc$_a;
7204         echo "Your C library seems to be in $libc.  You're normal."
7205 else
7206         if tans=`./loc libc$_a blurfl/dyick $libpth`; $test -r "$tans"; then
7207                 :
7208         elif tans=`./loc libc blurfl/dyick $libpth`; $test -r "$tans"; then
7209                 libnames="$libnames "`./loc clib blurfl/dyick $libpth`
7210         elif tans=`./loc clib blurfl/dyick $libpth`; $test -r "$tans"; then
7211                 :
7212         elif tans=`./loc Slibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
7213                 :
7214         elif tans=`./loc Mlibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
7215                 :
7216         else
7217                 tans=`./loc Llibc$_a blurfl/dyick $xlibpth`
7218         fi
7219         if $test -r "$tans"; then
7220                 echo "Your C library seems to be in $tans, of all places."
7221                 libc=$tans
7222         else
7223                 libc='blurfl'
7224         fi
7225 fi
7226 if $test $xxx = apollo -o -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
7227         dflt="$libc"
7228         cat <<EOM
7229
7230 If the guess above is wrong (which it might be if you're using a strange
7231 compiler, or your machine supports multiple models), you can override it here.
7232
7233 EOM
7234 else
7235         dflt=''
7236         echo $libpth | $tr ' ' $trnl | $sort | $uniq > libpath
7237         cat >&4 <<EOM
7238 I can't seem to find your C library.  I've looked in the following places:
7239
7240 EOM
7241         $sed 's/^/      /' libpath
7242         cat <<EOM
7243
7244 None of these seems to contain your C library. I need to get its name...
7245
7246 EOM
7247 fi
7248 fn=f
7249 rp='Where is your C library?'
7250 . ./getfile
7251 libc="$ans"
7252
7253 echo " "
7254 echo $libc $libnames | $tr ' ' $trnl | $sort | $uniq > libnames
7255 set X `cat libnames`
7256 shift
7257 xxx=files
7258 case $# in 1) xxx=file; esac
7259 echo "Extracting names from the following $xxx for later perusal:" >&4
7260 echo " "
7261 $sed 's/^/      /' libnames >&4
7262 echo " "
7263 $echo $n "This may take a while...$c" >&4
7264
7265 for file in $*; do
7266         case $file in
7267         *$so*) $nm $nm_so_opt $nm_opt $file 2>/dev/null;;
7268         *) $nm $nm_opt $file 2>/dev/null;;
7269         esac
7270 done >libc.tmp
7271
7272 $echo $n ".$c"
7273 $grep fprintf libc.tmp > libc.ptf
7274 xscan='eval "<libc.ptf $com >libc.list"; $echo $n ".$c" >&4'
7275 xrun='eval "<libc.tmp $com >libc.list"; echo "done." >&4'
7276 xxx='[ADTSIW]'
7277 if com="$sed -n -e 's/__IO//' -e 's/^.* $xxx  *//p'";\
7278         eval $xscan;\
7279         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7280                 eval $xrun
7281 elif com="$sed -n -e 's/^__*//' -e 's/^\([a-zA-Z_0-9$]*\).*xtern.*/\1/p'";\
7282         eval $xscan;\
7283         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7284                 eval $xrun
7285 elif com="$sed -n -e '/|UNDEF/d' -e '/FUNC..GL/s/^.*|__*//p'";\
7286         eval $xscan;\
7287         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7288                 eval $xrun
7289 elif com="$sed -n -e 's/^.* D __*//p' -e 's/^.* D //p'";\
7290         eval $xscan;\
7291         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7292                 eval $xrun
7293 elif com="$sed -n -e 's/^_//' -e 's/^\([a-zA-Z_0-9]*\).*xtern.*text.*/\1/p'";\
7294         eval $xscan;\
7295         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7296                 eval $xrun
7297 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p'";\
7298         eval $xscan;\
7299         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7300                 eval $xrun
7301 elif com="$grep '|' | $sed -n -e '/|COMMON/d' -e '/|DATA/d' \
7302                                 -e '/ file/d' -e 's/^\([^       ]*\).*/\1/p'";\
7303         eval $xscan;\
7304         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7305                 eval $xrun
7306 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p' -e 's/^.*|FUNC |WEAK .*|//p'";\
7307         eval $xscan;\
7308         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7309                 eval $xrun
7310 elif com="$sed -n -e 's/^__//' -e '/|Undef/d' -e '/|Proc/s/ .*//p'";\
7311         eval $xscan;\
7312         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7313                 eval $xrun
7314 elif com="$sed -n -e 's/^.*|Proc .*|Text *| *//p'";\
7315         eval $xscan;\
7316         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7317                 eval $xrun
7318 elif com="$sed -n -e '/Def. Text/s/.* \([^ ]*\)\$/\1/p'";\
7319         eval $xscan;\
7320         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7321                 eval $xrun
7322 elif com="$sed -n -e 's/^[-0-9a-f ]*_\(.*\)=.*/\1/p'";\
7323         eval $xscan;\
7324         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7325                 eval $xrun
7326 elif com="$sed -n -e 's/.*\.text n\ \ \ \.//p'";\
7327         eval $xscan;\
7328         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7329                 eval $xrun
7330 elif com="sed -n -e 's/^__.*//' -e 's/[       ]*D[    ]*[0-9]*.*//p'";\
7331         eval $xscan;\
7332         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7333                 eval $xrun
7334 else
7335         $nm -p $* 2>/dev/null >libc.tmp
7336         $grep fprintf libc.tmp > libc.ptf
7337         if com="$sed -n -e 's/^.* [ADTSIW]  *_[_.]*//p' -e 's/^.* [ADTSIW] //p'";\
7338                 eval $xscan; $contains '^fprintf$' libc.list >/dev/null 2>&1
7339         then
7340                 nm_opt='-p'
7341                 eval $xrun
7342         else
7343                 echo " "
7344                 echo "$nm didn't seem to work right. Trying $ar instead..." >&4
7345                 com=''
7346                 if $ar t $libc > libc.tmp && $contains '^fprintf$' libc.tmp >/dev/null 2>&1; then
7347                         for thisname in $libnames $libc; do
7348                                 $ar t $thisname >>libc.tmp
7349                         done
7350                         $sed -e "s/\\$_o\$//" < libc.tmp > libc.list
7351                         echo "Ok." >&4
7352                 elif test "X$osname" = "Xos2" && $ar tv $libc > libc.tmp; then
7353                         # Repeat libc to extract forwarders to DLL entries too
7354                         for thisname in $libnames $libc; do
7355                                 $ar tv $thisname >>libc.tmp
7356                                 # Revision 50 of EMX has bug in $ar.
7357                                 # it will not extract forwarders to DLL entries
7358                                 # Use emximp which will extract exactly them.
7359                                 emximp -o tmp.imp $thisname \
7360                                     2>/dev/null && \
7361                                     $sed -e 's/^\([_a-zA-Z0-9]*\) .*$/\1/p' \
7362                                     < tmp.imp >>libc.tmp
7363                                 $rm tmp.imp
7364                         done
7365                         $sed -e "s/\\$_o\$//" -e 's/^ \+//' < libc.tmp > libc.list
7366                         echo "Ok." >&4
7367                 else
7368                         echo "$ar didn't seem to work right." >&4
7369                         echo "Maybe this is a Cray...trying bld instead..." >&4
7370                         if bld t $libc | $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" > libc.list
7371                         then
7372                                 for thisname in $libnames; do
7373                                         bld t $libnames | \
7374                                         $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" >>libc.list
7375                                         $ar t $thisname >>libc.tmp
7376                                 done
7377                                 echo "Ok." >&4
7378                         else
7379                                 echo "That didn't work either.  Giving up." >&4
7380                                 exit 1
7381                         fi
7382                 fi
7383         fi
7384 fi
7385 nm_extract="$com"
7386 case "$PASE" in
7387 define)
7388     echo " "
7389     echo "Since you are compiling for PASE, extracting more symbols from libc.a ...">&4
7390     dump -Tv /lib/libc.a | awk '$7 == "/unix" {print $5 " " $8}' | grep "^SV" | awk '{print $2}' >> libc.list
7391     ;;
7392 *)  if $test -f /lib/syscalls.exp; then
7393         echo " "
7394         echo "Also extracting names from /lib/syscalls.exp for good ole AIX..." >&4
7395         $sed -n 's/^\([^        ]*\)[   ]*syscall[0-9]*[        ]*$/\1/p' /lib/syscalls.exp >>libc.list
7396     fi
7397     ;;
7398 esac
7399 ;;
7400 esac
7401 $rm -f libnames libpath
7402
7403 : see if dld is available
7404 set dld.h i_dld
7405 eval $inhdr
7406
7407 : is a C symbol defined?
7408 csym='tlook=$1;
7409 case "$3" in
7410 -v) tf=libc.tmp; tdc="";;
7411 -a) tf=libc.tmp; tdc="[]";;
7412 *) tlook="^$1\$"; tf=libc.list; tdc="()";;
7413 esac;
7414 tx=yes;
7415 case "$reuseval-$4" in
7416 true-) ;;
7417 true-*) tx=no; eval "tval=\$$4"; case "$tval" in "") tx=yes;; esac;;
7418 esac;
7419 case "$tx" in
7420 yes)
7421         tval=false;
7422         if $test "$runnm" = true; then
7423                 if $contains $tlook $tf >/dev/null 2>&1; then
7424                         tval=true;
7425                 elif $test "$mistrustnm" = compile -o "$mistrustnm" = run; then
7426                         echo "void *(*(p()))$tdc { extern void *$1$tdc; return &$1; } int main() { if(p()) return(0); else return(1); }"> try.c;
7427                         $cc -o try $optimize $ccflags $ldflags try.c >/dev/null 2>&1 $libs && tval=true;
7428                         $test "$mistrustnm" = run -a -x try && { $run ./try$_exe >/dev/null 2>&1 || tval=false; };
7429                         $rm -f try$_exe try.c core core.* try.core;
7430                 fi;
7431         else
7432                 echo "void *(*(p()))$tdc { extern void *$1$tdc; return &$1; } int main() { if(p()) return(0); else return(1); }"> try.c;
7433                 $cc -o try $optimize $ccflags $ldflags try.c $libs >/dev/null 2>&1 && tval=true;
7434                 $rm -f try$_exe try.c;
7435         fi;
7436         ;;
7437 *)
7438         case "$tval" in
7439         $define) tval=true;;
7440         *) tval=false;;
7441         esac;
7442         ;;
7443 esac;
7444 eval "$2=$tval"'
7445
7446 : define an is-in-libc? function
7447 inlibc='echo " "; td=$define; tu=$undef;
7448 sym=$1; var=$2; eval "was=\$$2";
7449 tx=yes;
7450 case "$reuseval$was" in
7451 true) ;;
7452 true*) tx=no;;
7453 esac;
7454 case "$tx" in
7455 yes)
7456         set $sym tres -f;
7457         eval $csym;
7458         case "$tres" in
7459         true)
7460                 echo "$sym() found." >&4;
7461                 case "$was" in $undef) . ./whoa; esac; eval "$var=\$td";;
7462         *)
7463                 echo "$sym() NOT found." >&4;
7464                 case "$was" in $define) . ./whoa; esac; eval "$var=\$tu";;
7465         esac;;
7466 *)
7467         case "$was" in
7468         $define) echo "$sym() found." >&4;;
7469         *) echo "$sym() NOT found." >&4;;
7470         esac;;
7471 esac'
7472
7473 : see if dlopen exists
7474 xxx_runnm="$runnm"
7475 runnm=false
7476 set dlopen d_dlopen
7477 eval $inlibc
7478 runnm="$xxx_runnm"
7479
7480 : determine which dynamic loading, if any, to compile in
7481 echo " "
7482 dldir="ext/DynaLoader"
7483 case "$usedl" in
7484 $define|y|true)
7485         dflt='y'
7486         usedl="$define"
7487         ;;
7488 $undef|n|false)
7489         dflt='n'
7490         usedl="$undef"
7491         ;;
7492 *) 
7493         dflt='n'
7494         case "$d_dlopen" in
7495             $define) dflt='y' ;;
7496         esac
7497         case "$i_dld" in
7498             $define) dflt='y' ;;
7499         esac
7500         : Does a dl_xxx.xs file exist for this operating system
7501         $test -f $rsrc/$dldir/dl_${osname}.xs && dflt='y'
7502         ;;
7503 esac
7504 rp="Do you wish to use dynamic loading?"
7505 . ./myread
7506 usedl="$ans"
7507 case "$ans" in
7508 y*) usedl="$define"
7509         case "$dlsrc" in
7510         '')
7511                 if $test -f $rsrc/$dldir/dl_${osname}.xs ; then
7512                         dflt="$dldir/dl_${osname}.xs"
7513                 elif $test "$d_dlopen" = "$define" ; then
7514                         dflt="$dldir/dl_dlopen.xs"
7515                 elif $test "$i_dld" = "$define" ; then
7516                         dflt="$dldir/dl_dld.xs"
7517                 else
7518                         dflt=''
7519                 fi
7520                 ;;
7521         *)      dflt="$dldir/$dlsrc"
7522                 ;;
7523         esac
7524     echo "The following dynamic loading files are available:"
7525         : Can not go over to $dldir because getfile has path hard-coded in.
7526         tdir=`pwd`; cd "$rsrc"; $ls -C $dldir/dl*.xs; cd "$tdir"
7527         rp="Source file to use for dynamic loading"
7528         fn="fne"
7529         gfpth="$src"
7530         . ./getfile
7531         usedl="$define"
7532         : emulate basename
7533         dlsrc=`echo $ans | $sed -e 's%.*/\([^/]*\)$%\1%'`
7534
7535         $cat << EOM
7536
7537 Some systems may require passing special flags to $cc -c to
7538 compile modules that will be used to create a shared library.
7539 To use no flags, say "none".
7540
7541 EOM
7542     case "$cccdlflags" in
7543     '') case "$gccversion" in
7544                 '') case "$osname" in
7545                         hpux)   dflt='+z' ;;
7546                         next)   dflt='none' ;;
7547                         irix*)  dflt='-KPIC' ;;
7548                         svr4*|esix*|solaris|nonstopux) dflt='-KPIC' ;;
7549                         sunos)  dflt='-pic' ;;
7550                         *)      dflt='none' ;;
7551                     esac
7552                         ;;
7553                 *)  case "$osname" in
7554                         darwin) dflt='none' ;;
7555                         svr4*|esix*|solaris|nonstopux) dflt='-fPIC' ;;
7556                         *)      dflt='-fpic' ;;
7557                     esac ;;
7558             esac ;;
7559         ' ') dflt='none' ;;
7560     *)  dflt="$cccdlflags" ;;
7561     esac
7562     rp="Any special flags to pass to $cc -c to compile shared library modules?"
7563     . ./myread
7564     case "$ans" in
7565     none) cccdlflags=' ' ;;
7566     *) cccdlflags="$ans" ;;
7567     esac
7568
7569     cat << EOM
7570
7571 Some systems use ld to create libraries that can be dynamically loaded,
7572 while other systems (such as those using ELF) use $cc.
7573
7574 EOM
7575         case "$ld" in
7576         '')     $cat >try.c <<EOM
7577 /* Test for whether ELF binaries are produced */
7578 #include <fcntl.h>
7579 #$i_stdlib I_STDLIB
7580 #ifdef I_STDLIB
7581 #include <stdlib.h>
7582 #endif
7583 int main() {
7584         char b[4];
7585         int i = open("a.out",O_RDONLY);
7586         if(i == -1) 
7587                 exit(1); /* fail */
7588         if(read(i,b,4)==4 && b[0]==127 && b[1]=='E' && b[2]=='L' && b[3]=='F')
7589                 exit(0); /* succeed (yes, it's ELF) */
7590         else
7591                 exit(1); /* fail */
7592 }
7593 EOM
7594                 if $cc $ccflags $ldflags try.c >/dev/null 2>&1 && $run ./a.out; then
7595                         cat <<EOM
7596 You appear to have ELF support.  I'll use $cc to build dynamic libraries.
7597 EOM
7598                         dflt="$cc"
7599                 else
7600                         echo "I'll use ld to build dynamic libraries."
7601                         dflt='ld'
7602                 fi
7603                 rm -f try.c a.out
7604                 ;;
7605         *)      dflt="$ld"
7606                 ;;
7607         esac
7608
7609     rp="What command should be used to create dynamic libraries?"
7610     . ./myread
7611         ld="$ans"
7612
7613     cat << EOM
7614
7615 Some systems may require passing special flags to $ld to create a
7616 library that can be dynamically loaded.  If your ld flags include
7617 -L/other/path options to locate libraries outside your loader's normal
7618 search path, you may need to specify those -L options here as well.  To
7619 use no flags, say "none".
7620
7621 EOM
7622     case "$lddlflags" in
7623     '') case "$osname" in
7624                         beos) dflt='-nostart' ;;
7625                         hpux) dflt='-b';
7626                               case "$gccversion" in
7627                               '') dflt="$dflt +vnocompatwarnings" ;;
7628                               esac
7629                               ;;        
7630                         linux|irix*)    dflt='-shared' ;;
7631                         next)  dflt='none' ;;
7632                         solaris) dflt='-G' ;;
7633                         sunos) dflt='-assert nodefinitions' ;;
7634                         svr4*|esix*|nonstopux) dflt="-G $ldflags" ;;
7635                 *)     dflt='none' ;;
7636                         esac
7637                         ;;
7638     *) dflt="$lddlflags" ;;
7639     esac
7640
7641         : Try to guess additional flags to pick up local libraries.
7642         : Be careful not to append to a plain 'none'
7643         case "$dflt" in
7644         none) dflt='' ;;
7645         esac
7646         for thisflag in $ldflags; do
7647                 case "$thisflag" in
7648                 -L*|-R*|-Wl,-R*)
7649                         case " $dflt " in
7650                         *" $thisflag "*) ;;
7651                         *) dflt="$dflt $thisflag" ;;
7652                         esac
7653                         ;;
7654                 esac
7655         done
7656
7657         case "$dflt" in
7658         ''|' ') dflt='none' ;;
7659         esac
7660
7661     rp="Any special flags to pass to $ld to create a dynamically loaded library?"
7662     . ./myread
7663     case "$ans" in
7664     none) lddlflags=' ' ;;
7665     *) lddlflags="$ans" ;;
7666     esac
7667
7668         cat <<EOM
7669
7670 Some systems may require passing special flags to $cc to indicate that
7671 the resulting executable will use dynamic linking.  To use no flags,
7672 say "none".
7673
7674 EOM
7675     case "$ccdlflags" in
7676     '') case "$osname" in
7677             linux|hpux) dflt='-Wl,-E' ;;
7678             next|sunos) dflt='none' ;;
7679             *)          dflt='none' ;;
7680             esac ;;
7681     ' ')  dflt='none' ;;
7682     *)  dflt="$ccdlflags" ;;
7683     esac
7684     rp="Any special flags to pass to $cc to use dynamic linking?"
7685     . ./myread
7686     case "$ans" in
7687     none) ccdlflags=' ' ;;
7688     *) ccdlflags="$ans" ;;
7689     esac
7690     ;;
7691 *)  usedl="$undef"
7692         ld='ld'
7693     dlsrc='dl_none.xs'
7694     lddlflags=''
7695     ccdlflags=''
7696     ;;
7697 esac
7698
7699 also=''
7700 case "$usedl" in
7701 $undef)
7702         # No dynamic loading being used, so don't bother even to prompt.
7703         useshrplib='false'
7704         ;;
7705 *)      case "$useshrplib" in
7706         '')     case "$osname" in
7707                 svr4*|nonstopux|dgux|dynixptx|esix|powerux|beos|cygwin*)
7708                         dflt=y
7709                         also='Building a shared libperl is required for dynamic loading to work on your system.'
7710                         ;;
7711                 next*)
7712                         case "$osvers" in
7713                         4*)     dflt=y
7714                                 also='Building a shared libperl is needed for MAB support.'
7715                                 ;;
7716                         *)      dflt=n
7717                                 ;;
7718                         esac
7719                         ;;
7720                 *)      dflt=n
7721                         ;;
7722                 esac
7723                 ;;
7724         $define|true|[Yy]*)
7725                 dflt=y
7726                 ;;
7727         *)      dflt=n
7728                 ;;
7729         esac
7730         $cat << EOM
7731
7732 The perl executable is normally obtained by linking perlmain.c with
7733 libperl${_a}, any static extensions (usually just DynaLoader), and
7734 any other libraries needed on this system (such as -lm, etc.).  Since
7735 your system supports dynamic loading, it is probably possible to build
7736 a shared libperl.$so.  If you will have more than one executable linked
7737 to libperl.$so, this will significantly reduce the size of each
7738 executable, but it may have a noticeable affect on performance.  The
7739 default is probably sensible for your system.
7740 $also
7741
7742 EOM
7743         rp="Build a shared libperl.$so (y/n)"
7744         . ./myread
7745         case "$ans" in
7746         true|$define|[Yy]*)
7747                 useshrplib='true'  ;;
7748         *)      useshrplib='false' ;;
7749         esac
7750         ;;
7751 esac
7752
7753 case "$useshrplib" in
7754 true)
7755         case "$libperl" in
7756         '')
7757                 # Figure out a good name for libperl.so.  Since it gets stored in
7758                 # a version-specific architecture-dependent library, the version
7759                 # number isn't really that important, except for making cc/ld happy.
7760                 #
7761                 # A name such as libperl.so.3.1
7762                 majmin="libperl.$so.$patchlevel.$subversion"
7763                 # A name such as libperl.so.301
7764                 majonly=`echo $patchlevel $subversion |
7765                         $awk '{printf "%d%02d", $1, $2}'`
7766                 majonly=libperl.$so.$majonly
7767                 # I'd prefer to keep the os-specific stuff here to a minimum, and
7768                 # rely on figuring it out from the naming of libc.
7769                 case "${osname}${osvers}" in
7770                 next4*)
7771                         dflt=libperl.5.$so
7772                         # XXX How handle the --version stuff for MAB?
7773                         ;;
7774                 linux*)  # ld won't link with a bare -lperl otherwise.
7775                         dflt=libperl.$so
7776                         ;;
7777                 cygwin*) # ld links against an importlib
7778                         dflt=libperl$lib_ext
7779                         ;;
7780                 *)      # Try to guess based on whether libc has major.minor.
7781                         case "$libc" in
7782                         *libc.$so.[0-9]*.[0-9]*) dflt=$majmin ;;
7783                         *libc.$so.[0-9]*) dflt=$majonly ;;
7784                         *)      dflt=libperl.$so ;;
7785                         esac
7786                         ;;
7787                 esac
7788                 ;;
7789         *)      dflt=$libperl
7790                 ;;
7791         esac
7792         cat << EOM
7793
7794 I need to select a good name for the shared libperl.  If your system uses
7795 library names with major and minor numbers, then you might want something
7796 like $majmin.  Alternatively, if your system uses a single version
7797 number for shared libraries, then you might want to use $majonly.
7798 Or, your system might be quite happy with a simple libperl.$so.
7799
7800 Since the shared libperl will get installed into a version-specific
7801 architecture-dependent directory, the version number of the shared perl
7802 library probably isn't important, so the default should be o.k.
7803
7804 EOM
7805         rp='What name do you want to give to the shared libperl?'
7806         . ./myread
7807         libperl=$ans
7808         echo "Ok, I'll use $libperl"
7809         ;;
7810 *)
7811         libperl="libperl${_a}"
7812         ;;
7813 esac
7814
7815 # Detect old use of shrpdir via undocumented Configure -Dshrpdir
7816 case "$shrpdir" in
7817 '') ;;
7818 *)      $cat >&4 <<EOM
7819 WARNING:  Use of the shrpdir variable for the installation location of
7820 the shared $libperl is not supported.  It was never documented and
7821 will not work in this version.  Let me (perlbug@perl.org)
7822 know of any problems this may cause.
7823
7824 EOM
7825         case "$shrpdir" in
7826         "$archlibexp/CORE")
7827                 $cat >&4 <<EOM
7828 But your current setting of $shrpdir is
7829 the default anyway, so it's harmless.
7830 EOM
7831                 ;;
7832         *)
7833                 $cat >&4 <<EOM
7834 Further, your current attempted setting of $shrpdir
7835 conflicts with the value of $archlibexp/CORE
7836 that installperl will use.
7837 EOM
7838                 ;;
7839         esac
7840         ;;
7841 esac
7842
7843 # How will the perl executable find the installed shared $libperl?
7844 # Add $xxx to ccdlflags.
7845 # If we can't figure out a command-line option, use $shrpenv to
7846 # set env LD_RUN_PATH.  The main perl makefile uses this.
7847 shrpdir=$archlibexp/CORE
7848 xxx=''
7849 tmp_shrpenv=''
7850 if "$useshrplib"; then
7851     case "$osname" in 
7852         aix)
7853                 # We'll set it in Makefile.SH...
7854                 ;;
7855         solaris)
7856                 xxx="-R $shrpdir"
7857                 ;;
7858         freebsd|netbsd|openbsd)
7859                 xxx="-Wl,-R$shrpdir"
7860                 ;;
7861         bsdos|linux|irix*|dec_osf)
7862                 xxx="-Wl,-rpath,$shrpdir"
7863                 ;;
7864         next)
7865                 # next doesn't like the default...
7866                 ;;
7867         beos)
7868                 # beos doesn't like the default, either.
7869                 ;;
7870         hpux*)
7871                 # hpux doesn't like the default, either.
7872                 tmp_shrpenv="env LDOPTS=\"+s +b${shrpdir}\""
7873                 ;;
7874         *)
7875                 tmp_shrpenv="env LD_RUN_PATH=$shrpdir"
7876                 ;;
7877         esac
7878         case "$xxx" in
7879         '') ;;
7880         *)      
7881                 # Only add $xxx if it isn't already in ccdlflags.
7882                 case " $ccdlflags " in
7883                 *" $xxx "*)     ;;
7884                 *)      ccdlflags="$ccdlflags $xxx"
7885                         cat <<EOM >&4
7886
7887 Adding $xxx to the flags
7888 passed to $ld so that the perl executable will find the 
7889 installed shared $libperl.
7890
7891 EOM
7892                         ;;
7893                 esac
7894                 ;;
7895         esac
7896 fi
7897 # Fix ccdlflags in AIX for building external extensions.
7898 # (For building Perl itself bare -bE:perl.exp is needed,
7899 #  Makefile.SH takes care of this.)
7900 case "$osname" in
7901 aix) ccdlflags="$ccdlflags -bE:$installarchlib/CORE/perl.exp" ;;
7902 esac
7903 # Respect a hint or command-line value.
7904 case "$shrpenv" in
7905 '') shrpenv="$tmp_shrpenv" ;;
7906 esac
7907 case "$ldlibpthname" in
7908 '')     ldlibpthname=LD_LIBRARY_PATH ;;
7909 none)   ldlibpthname='' ;;
7910 esac
7911
7912 : determine where manual pages are on this system
7913 echo " "
7914 case "$sysman" in
7915 '') 
7916         syspath='/usr/share/man/man1 /usr/man/man1'
7917         syspath="$syspath /usr/man/mann /usr/man/manl /usr/man/local/man1"
7918         syspath="$syspath /usr/man/u_man/man1"
7919         syspath="$syspath /usr/catman/u_man/man1 /usr/man/l_man/man1"
7920         syspath="$syspath /usr/local/man/u_man/man1 /usr/local/man/l_man/man1"
7921         syspath="$syspath /usr/man/man.L /local/man/man1 /usr/local/man/man1"
7922         sysman=`./loc . /usr/man/man1 $syspath`
7923         ;;
7924 esac
7925 if $test -d "$sysman"; then
7926         echo "System manual is in $sysman." >&4
7927 else
7928         echo "Could not find manual pages in source form." >&4
7929 fi
7930
7931 : determine where manual pages go
7932 set man1dir man1dir none
7933 eval $prefixit
7934 $cat <<EOM
7935
7936 $spackage has manual pages available in source form.
7937 EOM
7938 case "$nroff" in
7939 nroff)
7940         echo "However, you don't have nroff, so they're probably useless to you."
7941         case "$man1dir" in
7942         '') man1dir="none";;
7943         esac;;
7944 esac
7945 echo "If you don't want the manual sources installed, answer 'none'."
7946 case "$man1dir" in
7947 ' ') dflt=none
7948         ;;
7949 '')
7950         lookpath="$prefixexp/share/man/man1"
7951         lookpath="$lookpath $prefixexp/man/man1 $prefixexp/man/l_man/man1"
7952         lookpath="$lookpath $prefixexp/man/p_man/man1"
7953         lookpath="$lookpath $prefixexp/man/u_man/man1"
7954         lookpath="$lookpath $prefixexp/man/man.1"
7955         case "$sysman" in
7956         */?_man*)       dflt=`./loc . $prefixexp/l_man/man1 $lookpath` ;;
7957         *)      dflt=`./loc . $prefixexp/man/man1 $lookpath` ;;
7958         esac
7959         set dflt
7960         eval $prefixup
7961         ;;
7962 *)  dflt="$man1dir"
7963         ;;
7964 esac
7965 echo " "
7966 fn=dn+~
7967 rp="Where do the main $spackage manual pages (source) go?"
7968 . ./getfile
7969 if $test "X$man1direxp" != "X$ansexp"; then
7970         installman1dir=''
7971 fi
7972 man1dir="$ans"
7973 man1direxp="$ansexp"
7974 case "$man1dir" in
7975 '')     man1dir=' '
7976         installman1dir='';;
7977 esac
7978
7979 : Change installation prefix, if necessary.
7980 if $test X"$prefix" != X"$installprefix"; then
7981         installman1dir=`echo $man1direxp | $sed "s#^$prefix#$installprefix#"`
7982 else
7983         installman1dir="$man1direxp"
7984 fi
7985
7986 : What suffix to use on installed man pages
7987
7988 case "$man1dir" in
7989 ' ')
7990         man1ext='0'
7991         ;;
7992 *)
7993         rp="What suffix should be used for the main $spackage man pages?"
7994         case "$man1ext" in
7995         '')     case "$man1dir" in
7996                 *1)  dflt=1 ;;
7997                 *1p) dflt=1p ;;
7998                 *1pm) dflt=1pm ;;
7999                 *l) dflt=l;;
8000                 *n) dflt=n;;
8001                 *o) dflt=o;;
8002                 *p) dflt=p;;
8003                 *C) dflt=C;;
8004                 *L) dflt=L;;
8005                 *L1) dflt=L1;;
8006                 *) dflt=1;;
8007                 esac
8008                 ;;
8009         *)      dflt="$man1ext";;
8010         esac
8011         . ./myread
8012         man1ext="$ans"
8013         ;;
8014 esac
8015
8016 : see if we can have long filenames
8017 echo " "
8018 first=123456789abcdef
8019 $rm -f $first
8020 if (echo hi >$first) 2>/dev/null; then
8021         if $test -f 123456789abcde; then
8022                 echo 'You cannot have filenames longer than 14 characters.  Sigh.' >&4
8023                 val="$undef"
8024         else
8025                 echo 'You can have filenames longer than 14 characters.'>&4
8026                 val="$define"
8027         fi
8028 else
8029         $cat <<'EOM'
8030 You can't have filenames longer than 14 chars.
8031 You can't even think about them!
8032 EOM
8033         val="$undef"
8034 fi 
8035 set d_flexfnam
8036 eval $setvar
8037 $rm -rf 123456789abcde*
8038
8039 : determine where library module manual pages go
8040 set man3dir man3dir none
8041 eval $prefixit
8042 $cat <<EOM
8043
8044 $spackage has manual pages for many of the library modules.
8045 EOM
8046
8047 case "$nroff" in
8048 nroff)
8049         $cat <<'EOM'
8050 However, you don't have nroff, so they're probably useless to you.
8051 EOM
8052         case "$man3dir" in
8053         '') man3dir="none";;
8054         esac;;
8055 esac
8056
8057 case "$d_flexfnam" in
8058 undef)
8059         $cat <<'EOM'
8060 However, your system can't handle the long file names like File::Basename.3. 
8061 EOM
8062         case "$man3dir" in
8063         '') man3dir="none";;
8064         esac;;
8065 esac
8066
8067 echo "If you don't want the manual sources installed, answer 'none'."
8068 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
8069 case "$man3dir" in
8070 '')     dflt=`echo "$man1dir" | $sed -e 's/man1/man3/g' -e 's/man\.1/man\.3/g'`
8071         if $test -d "$privlib/man/man3"; then
8072                 cat <<EOM >&4
8073
8074 WARNING:  Previous versions of perl installed man3 pages into
8075 $privlib/man/man3.  This version will suggest a 
8076 new default of $dflt.  
8077 EOM
8078                 tdflt=$dflt
8079                 dflt='n'
8080                 rp='Do you wish to preserve the old behavior?(y/n)'
8081                 . ./myread
8082                 case "$ans" in
8083                 y*) dflt="$privlib/man/man3" ;;
8084                 *)  dflt=$tdflt ;;
8085                 esac
8086     fi
8087         ;;
8088 *)      dflt="$man3dir" ;;
8089 esac
8090 case "$dflt" in
8091 ' ') dflt=none ;;
8092 esac
8093 echo " "
8094 fn=dn+~
8095 rp="Where do the $package library man pages (source) go?"
8096 . ./getfile
8097 man3dir="$ans"
8098 man3direxp="$ansexp"
8099 case "$man3dir" in
8100 '')     man3dir=' '
8101         installman3dir='';;
8102 esac
8103
8104 : Change installation prefix, if necessary.
8105 if $test X"$prefix" != X"$installprefix"; then
8106         installman3dir=`echo $man3direxp | $sed "s#^$prefix#$installprefix#"`
8107 else
8108         installman3dir="$man3direxp"
8109 fi
8110
8111 : What suffix to use on installed man pages
8112 case "$man3dir" in
8113 ' ')
8114         man3ext='0'
8115         ;;
8116 *)
8117         rp="What suffix should be used for the $package library man pages?"
8118         case "$man3ext" in
8119         '')     case "$man3dir" in
8120                 *3)  dflt=3 ;;
8121                 *3p) dflt=3p ;;
8122                 *3pm) dflt=3pm ;;
8123                 *l) dflt=l;;
8124                 *n) dflt=n;;
8125                 *o) dflt=o;;
8126                 *p) dflt=p;;
8127                 *C) dflt=C;;
8128                 *L) dflt=L;;
8129                 *L3) dflt=L3;;
8130                 *) dflt=3;;
8131                 esac
8132                 ;;
8133         *)      dflt="$man3ext";;
8134         esac
8135         . ./myread
8136         man3ext="$ans"
8137         ;;
8138 esac
8139
8140 : see if we have to deal with yellow pages, now NIS.
8141 if $test -d /usr/etc/yp || $test -d /etc/yp || $test -d /usr/lib/yp; then
8142         if $test -f /usr/etc/nibindd; then
8143                 echo " "
8144                 echo "I'm fairly confident you're on a NeXT."
8145                 echo " "
8146                 rp='Do you get the hosts file via NetInfo?'
8147                 dflt=y
8148                 case "$hostcat" in
8149                 nidump*) ;;
8150                 '') ;;
8151                 *) dflt=n;;
8152                 esac
8153                 . ./myread
8154                 case "$ans" in
8155                 y*) hostcat='nidump hosts .';;
8156                 *)      case "$hostcat" in
8157                         nidump*) hostcat='';;
8158                         esac
8159                         ;;
8160                 esac
8161         fi
8162         case "$hostcat" in
8163         nidump*) ;;
8164         *)
8165                 case "$hostcat" in
8166                 *ypcat*) dflt=y;;
8167                 '') if $contains '^\+' /etc/passwd >/dev/null 2>&1; then
8168                                 dflt=y
8169                         else
8170                                 dflt=n
8171                         fi;;
8172                 *) dflt=n;;
8173                 esac
8174                 echo " "
8175                 rp='Are you getting the hosts file via yellow pages?'
8176                 . ./myread
8177                 case "$ans" in
8178                 y*) hostcat='ypcat hosts';;
8179                 *) hostcat='cat /etc/hosts';;
8180                 esac
8181                 ;;
8182         esac
8183 fi
8184 case "$hostcat" in
8185 '') test -f /etc/hosts && hostcat='cat /etc/hosts';;
8186 esac
8187 case "$groupcat" in
8188 '') test -f /etc/group && groupcat='cat /etc/group';;
8189 esac
8190 case "$passcat" in
8191 '') test -f /etc/passwd && passcat='cat /etc/passwd';;
8192 esac
8193
8194 : now get the host name
8195 echo " "
8196 echo "Figuring out host name..." >&4
8197 case "$myhostname" in
8198 '') cont=true
8199         echo 'Maybe "hostname" will work...'
8200         if tans=`sh -c hostname 2>&1` ; then
8201                 myhostname=$tans
8202                 phostname=hostname
8203                 cont=''
8204         fi
8205         ;;
8206 *) cont='';;
8207 esac
8208 if $test "$cont"; then
8209         if ./xenix; then
8210                 echo 'Oh, dear.  Maybe "/etc/systemid" is the key...'
8211                 if tans=`cat /etc/systemid 2>&1` ; then
8212                         myhostname=$tans
8213                         phostname='cat /etc/systemid'
8214                         echo "Whadyaknow.  Xenix always was a bit strange..."
8215                         cont=''
8216                 fi
8217         elif $test -r /etc/systemid; then
8218                 echo "(What is a non-Xenix system doing with /etc/systemid?)"
8219         fi
8220 fi
8221 if $test "$cont"; then
8222         echo 'No, maybe "uuname -l" will work...'
8223         if tans=`sh -c 'uuname -l' 2>&1` ; then
8224                 myhostname=$tans
8225                 phostname='uuname -l'
8226         else
8227                 echo 'Strange.  Maybe "uname -n" will work...'
8228                 if tans=`sh -c 'uname -n' 2>&1` ; then
8229                         myhostname=$tans
8230                         phostname='uname -n'
8231                 else
8232                         echo 'Oh well, maybe I can mine it out of whoami.h...'
8233                         if tans=`sh -c $contains' sysname $usrinc/whoami.h' 2>&1` ; then
8234                                 myhostname=`echo "$tans" | $sed 's/^.*"\(.*\)"/\1/'`
8235                                 phostname="sed -n -e '"'/sysname/s/^.*\"\\(.*\\)\"/\1/{'"' -e p -e q -e '}' <$usrinc/whoami.h"
8236                         else
8237                                 case "$myhostname" in
8238                                 '') echo "Does this machine have an identity crisis or something?"
8239                                         phostname='';;
8240                                 *)
8241                                         echo "Well, you said $myhostname before..."
8242                                         phostname='echo $myhostname';;
8243                                 esac
8244                         fi
8245                 fi
8246         fi
8247 fi
8248 case "$myhostname" in
8249 '') myhostname=noname ;;
8250 esac
8251 : you do not want to know about this
8252 set $myhostname
8253 myhostname=$1
8254
8255 : verify guess
8256 if $test "$myhostname" ; then
8257         dflt=y
8258         rp='Your host name appears to be "'$myhostname'".'" Right?"
8259         . ./myread
8260         case "$ans" in
8261         y*) ;;
8262         *) myhostname='';;
8263         esac
8264 fi
8265
8266 : bad guess or no guess
8267 while $test "X$myhostname" = X ; do
8268         dflt=''
8269         rp="Please type the (one word) name of your host:"
8270         . ./myread
8271         myhostname="$ans"
8272 done
8273
8274 : translate upper to lower if necessary
8275 case "$myhostname" in
8276 *[A-Z]*)
8277         echo "(Normalizing case in your host name)"
8278         myhostname=`echo $myhostname | ./tr '[A-Z]' '[a-z]'`
8279         ;;
8280 esac
8281
8282 case "$myhostname" in
8283 *.*)
8284         dflt=`expr "X$myhostname" : "X[^.]*\(\..*\)"`
8285         myhostname=`expr "X$myhostname" : "X\([^.]*\)\."`
8286         echo "(Trimming domain name from host name--host name is now $myhostname)"
8287         ;;
8288 *) case "$mydomain" in
8289         '')
8290                 {
8291                         test "X$hostcat" = "Xypcat hosts" &&
8292                         ypmatch "$myhostname" hosts 2>/dev/null |\
8293                                 $sed -e 's/[     ]*#.*//; s/$/ /' > hosts && \
8294                         $test -s hosts
8295                 } || {
8296                         test "X$hostcat" != "X" &&
8297                         $hostcat | $sed -n -e "s/[       ]*#.*//; s/\$/ /
8298                                         /[       ]$myhostname[  . ]/p" > hosts
8299                 }
8300                 tmp_re="[       . ]"
8301                 if $test -f hosts; then
8302                         $test x`$awk "/[0-9].*[  ]$myhostname$tmp_re/ { sum++ }
8303                              END { print sum }" hosts` = x1 || tmp_re="[         ]"
8304                         dflt=.`$awk "/[0-9].*[   ]$myhostname$tmp_re/ {for(i=2; i<=NF;i++) print \\\$i}" \
8305                                 hosts | $sort | $uniq | \
8306                                 $sed -n -e "s/$myhostname\.\([-a-zA-Z0-9_.]\)/\1/p"`
8307                         case `$echo X$dflt` in
8308                         X*\ *)  echo "(Several hosts in the database matched hostname)"
8309                                 dflt=.
8310                                 ;;
8311                         X.) echo "(You do not have fully-qualified names in the hosts database)"
8312                                 ;;
8313                         esac
8314                 else
8315                         echo "(I cannot locate a hosts database anywhere)"
8316                         dflt=.
8317                 fi
8318                 case "$dflt" in
8319                 .)
8320                         tans=`./loc resolv.conf X /etc /usr/etc`
8321                         if $test -f "$tans"; then
8322                                 echo "(Attempting domain name extraction from $tans)"
8323                                 dflt=.`$sed -n -e 's/   / /g' \
8324                                   -e 's/^search  *\([^ ]*\).*/\1/p' $tans \
8325                                   | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8326                                 case "$dflt" in
8327                                 .) dflt=.`$sed -n -e 's/        / /g' \
8328                                      -e 's/^domain  *\([^ ]*\).*/\1/p' $tans \
8329                                      | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8330                                         ;;
8331                                 esac
8332                         fi
8333                         ;;
8334                 esac
8335                 case "$dflt" in
8336                 .) echo "(No help from resolv.conf either -- attempting clever guess)"
8337                         dflt=.`sh -c domainname 2>/dev/null`
8338                         case "$dflt" in
8339                         '') dflt='.';;
8340                         .nis.*|.yp.*|.main.*) dflt=`echo $dflt | $sed -e 's/^\.[^.]*//'`;;
8341                         esac
8342                         ;;
8343                 esac
8344                 case "$dflt$osname" in
8345                 .os390) echo "(Attempting domain name extraction from //'SYS1.TCPPARMS(TCPDATA)')"
8346                         dflt=.`awk '/^DOMAINORIGIN/ {print $2}' "//'SYS1.TCPPARMS(TCPDATA)'" 2>/dev/null`
8347                         ;;
8348                 esac
8349                 case "$dflt" in
8350                 .) echo "(Lost all hope -- silly guess then)"
8351                         dflt='.nonet'
8352                         ;;
8353                 esac
8354                 $rm -f hosts
8355                 ;;
8356         *) dflt="$mydomain";;
8357         esac;;
8358 esac
8359 echo " "
8360 rp="What is your domain name?"
8361 . ./myread
8362 tans="$ans"
8363 case "$ans" in
8364 '') ;;
8365 .*) ;;
8366 *) tans=".$tans";;
8367 esac
8368 mydomain="$tans"
8369
8370 : translate upper to lower if necessary
8371 case "$mydomain" in
8372 *[A-Z]*)
8373         echo "(Normalizing case in your domain name)"
8374         mydomain=`echo $mydomain | ./tr '[A-Z]' '[a-z]'`
8375         ;;
8376 esac
8377
8378 : a little sanity check here
8379 case "$phostname" in
8380 '') ;;
8381 *)
8382         case `$phostname | ./tr '[A-Z]' '[a-z]'` in
8383         $myhostname$mydomain|$myhostname) ;;
8384         *)
8385                 case "$phostname" in
8386                 sed*)
8387                         echo "(That doesn't agree with your whoami.h file, by the way.)"
8388                         ;;
8389                 *)
8390                         echo "(That doesn't agree with your $phostname command, by the way.)"
8391                         ;;
8392                 esac
8393         ;;
8394         esac
8395         ;;
8396 esac
8397
8398 $cat <<EOM
8399
8400 I need to get your e-mail address in Internet format if possible, i.e.
8401 something like user@host.domain. Please answer accurately since I have
8402 no easy means to double check it. The default value provided below
8403 is most probably close to reality but may not be valid from outside
8404 your organization...
8405
8406 EOM
8407 cont=x
8408 while test "$cont"; do
8409         case "$cf_email" in
8410         '') dflt="$cf_by@$myhostname$mydomain";;
8411         *) dflt="$cf_email";;
8412         esac
8413         rp='What is your e-mail address?'
8414         . ./myread
8415         cf_email="$ans"
8416         case "$cf_email" in
8417         *@*.*) cont='' ;;
8418         *)
8419                 rp='Address does not look like an Internet one.  Use it anyway?'
8420                 case "$fastread" in
8421                 yes) dflt=y ;;
8422                 *) dflt=n ;;
8423                 esac
8424                 . ./myread
8425                 case "$ans" in
8426                 y*) cont='' ;;
8427                 *) echo " " ;;
8428                 esac
8429                 ;;
8430         esac
8431 done
8432
8433 $cat <<EOM
8434
8435 If you or somebody else will be maintaining perl at your site, please
8436 fill in the correct e-mail address here so that they may be contacted
8437 if necessary. Currently, the "perlbug" program included with perl
8438 will send mail to this address in addition to perlbug@perl.org. You may
8439 enter "none" for no administrator.
8440
8441 EOM
8442 case "$perladmin" in
8443 '') dflt="$cf_email";;
8444 *) dflt="$perladmin";;
8445 esac
8446 rp='Perl administrator e-mail address'
8447 . ./myread
8448 perladmin="$ans"
8449
8450 : determine whether to only install version-specific parts.
8451 echo " "
8452 $cat <<EOM
8453 Do you want to install only the version-specific parts of the perl
8454 distribution?  Usually you do *not* want to do this.
8455 EOM
8456 case "$versiononly" in
8457 "$define"|[Yy]*|true) dflt='y' ;;
8458 *) dflt='n';
8459 esac
8460 rp="Do you want to install only the version-specific parts of perl?"
8461 . ./myread
8462 case "$ans" in
8463 [yY]*)  val="$define";;
8464 *)      val="$undef" ;;
8465 esac
8466 set versiononly
8467 eval $setvar
8468
8469 case "$versiononly" in
8470 "$define") inc_version_list=''
8471            inc_version_list_init=0
8472            ;;
8473 esac
8474
8475 : figure out how to guarantee perl startup
8476 case "$startperl" in
8477 '')
8478         case "$sharpbang" in
8479         *!)
8480                 $cat <<EOH
8481
8482 I can use the #! construct to start perl on your system. This will
8483 make startup of perl scripts faster, but may cause problems if you
8484 want to share those scripts and perl is not in a standard place
8485 ($binexp/perl) on all your platforms. The alternative is to force
8486 a shell by starting the script with a single ':' character.
8487
8488 EOH
8489                 case "$versiononly" in
8490                 "$define")      dflt="$binexp/perl$version";;  
8491                 *)              dflt="$binexp/perl";;
8492                 esac
8493                 rp='What shall I put after the #! to start up perl ("none" to not use #!)?'
8494                 . ./myread
8495                 case "$ans" in
8496                 none)   startperl=": # use perl";;
8497                 *)      startperl="#!$ans"
8498                         if $test 30 -lt `echo "$ans" | wc -c`; then
8499                                 $cat >&4 <<EOM
8500
8501 WARNING:  Some systems limit the #! command to 32 characters.
8502 If you experience difficulty running Perl scripts with #!, try
8503 installing Perl in a directory with a shorter pathname.
8504
8505 EOM
8506                         fi ;;
8507                 esac
8508                 ;;
8509         *) startperl=": # use perl"
8510                 ;;
8511         esac
8512         ;;
8513 esac
8514 echo "I'll use $startperl to start perl scripts."
8515
8516 : figure best path for perl in scripts
8517 case "$perlpath" in
8518 '')
8519         case "$versiononly" in
8520         "$define")      perlpath="$binexp/perl$version";;
8521         *)              perlpath="$binexp/perl";;
8522         esac
8523         case "$startperl" in
8524         *!*) ;;
8525         *)
8526                 $cat <<EOH
8527
8528 I will use the "eval 'exec'" idiom to start Perl on your system.
8529 I can use the full path of your Perl binary for this purpose, but
8530 doing so may cause problems if you want to share those scripts and
8531 Perl is not always in a standard place ($binexp/perl).
8532
8533 EOH
8534                 dflt="$binexp/perl"
8535                 rp="What path shall I use in \"eval 'exec'\"?"
8536                 . ./myread
8537                 perlpath="$ans"
8538                 ;;
8539         esac
8540         ;;
8541 esac
8542 case "$startperl" in
8543 *!*)    ;;
8544 *)      echo "I'll use $perlpath in \"eval 'exec'\"" ;;
8545 esac
8546
8547 : determine where public executable scripts go
8548 set scriptdir scriptdir
8549 eval $prefixit
8550 case "$scriptdir" in
8551 '')
8552         dflt="$bin"
8553         : guess some guesses
8554         $test -d /usr/share/scripts && dflt=/usr/share/scripts
8555         $test -d /usr/share/bin     && dflt=/usr/share/bin
8556         $test -d /usr/local/script  && dflt=/usr/local/script
8557         $test -d /usr/local/scripts && dflt=/usr/local/scripts
8558         $test -d $prefixexp/script  && dflt=$prefixexp/script
8559         set dflt
8560         eval $prefixup
8561         ;;
8562 *)  dflt="$scriptdir"
8563         ;;
8564 esac
8565 $cat <<EOM
8566  
8567 Some installations have a separate directory just for executable scripts so
8568 that they can mount it across multiple architectures but keep the scripts in
8569 one spot.  You might, for example, have a subdirectory of /usr/share for this.
8570 Or you might just lump your scripts in with all your other executables.
8571  
8572 EOM
8573 fn=d~
8574 rp='Where do you keep publicly executable scripts?'
8575 . ./getfile
8576 if $test "X$ansexp" != "X$scriptdirexp"; then
8577         installscript=''
8578 fi
8579 scriptdir="$ans"
8580 scriptdirexp="$ansexp"
8581 : Change installation prefix, if necessary.
8582 if $test X"$prefix" != X"$installprefix"; then
8583         installscript=`echo $scriptdirexp | sed "s#^$prefix#$installprefix#"`
8584 else
8585         installscript="$scriptdirexp"
8586 fi
8587
8588 : determine where add-on public executables go
8589 case "$sitebin" in
8590 '')     dflt=$siteprefix/bin ;;
8591 *)      dflt=$sitebin ;;
8592 esac
8593 fn=d~
8594 rp='Pathname where the add-on public executables should be installed?'
8595 . ./getfile
8596 sitebin="$ans"
8597 sitebinexp="$ansexp"
8598 : Change installation prefix, if necessary.
8599 if $test X"$prefix" != X"$installprefix"; then
8600         installsitebin=`echo $sitebinexp | sed "s#^$prefix#$installprefix#"`
8601 else
8602         installsitebin="$sitebinexp"
8603 fi
8604
8605 : determine where add-on html pages go
8606 : There is no standard location, so try to copy the previously-selected
8607 : directory structure for the core html pages.
8608 case "$sitehtml1dir" in
8609 '')    dflt=`echo "$html1dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8610 *)     dflt=$sitehtml1dir ;;
8611 esac
8612 case "$dflt" in
8613 ''|' ') dflt=none ;;
8614 esac
8615 fn=dn+~
8616 rp='Pathname where the site-specific html pages should be installed?'
8617 . ./getfile
8618 sitehtml1dir="$ans"
8619 sitehtml1direxp="$ansexp"
8620 : Change installation prefix, if necessary.
8621 if $test X"$prefix" != X"$installprefix"; then
8622         installsitehtml1dir=`echo $sitehtml1direxp | $sed "s#^$prefix#$installprefix#"`
8623 else
8624         installsitehtml1dir="$sitehtml1direxp"
8625 fi
8626
8627 : determine where add-on library html pages go
8628 : There is no standard location, so try to copy the previously-selected
8629 : directory structure for the core html pages.
8630 case "$sitehtml3dir" in
8631 '')    dflt=`echo "$html3dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8632 *)     dflt=$sitehtml3dir ;;
8633 esac
8634 case "$dflt" in
8635 ''|' ') dflt=none ;;
8636 esac
8637 fn=dn+~
8638 rp='Pathname where the site-specific library html pages should be installed?'
8639 . ./getfile
8640 sitehtml3dir="$ans"
8641 sitehtml3direxp="$ansexp"
8642 : Change installation prefix, if necessary.
8643 if $test X"$prefix" != X"$installprefix"; then
8644         installsitehtml3dir=`echo $sitehtml3direxp | $sed "s#^$prefix#$installprefix#"`
8645 else
8646         installsitehtml3dir="$sitehtml3direxp"
8647 fi
8648
8649 : determine where add-on manual pages go
8650 case "$siteman1dir" in
8651 '')     dflt=`echo $man1dir | $sed "s#^$prefix#$siteprefix#"` ;;
8652 *)      dflt=$siteman1dir ;;
8653 esac
8654 case "$dflt" in
8655 ''|' ') dflt=none ;;
8656 esac
8657 fn=dn+~
8658 rp='Pathname where the site-specific manual pages should be installed?'
8659 . ./getfile
8660 siteman1dir="$ans"
8661 siteman1direxp="$ansexp"
8662 : Change installation prefix, if necessary.
8663 if $test X"$prefix" != X"$installprefix"; then
8664         installsiteman1dir=`echo $siteman1direxp | $sed "s#^$prefix#$installprefix#"`
8665 else
8666         installsiteman1dir="$siteman1direxp"
8667 fi
8668
8669 : determine where add-on library man pages go
8670 case "$siteman3dir" in
8671 '')     dflt=`echo $man3dir | $sed "s#^$prefix#$siteprefix#"` ;;
8672 *)      dflt=$siteman3dir ;;
8673 esac
8674 case "$dflt" in
8675 ''|' ') dflt=none ;;
8676 esac
8677 fn=dn+~
8678 rp='Pathname where the site-specific library manual pages should be installed?'
8679 . ./getfile
8680 siteman3dir="$ans"
8681 siteman3direxp="$ansexp"
8682 : Change installation prefix, if necessary.
8683 if $test X"$prefix" != X"$installprefix"; then
8684         installsiteman3dir=`echo $siteman3direxp | $sed "s#^$prefix#$installprefix#"`
8685 else
8686         installsiteman3dir="$siteman3direxp"
8687 fi
8688
8689 : determine where add-on public executable scripts go
8690 case "$sitescript" in
8691 '')     dflt=$siteprefix/script
8692         $test -d $dflt || dflt=$sitebin ;;
8693 *)  dflt="$sitescript" ;;
8694 esac
8695 fn=d~+
8696 rp='Pathname where add-on public executable scripts should be installed?'
8697 . ./getfile
8698 sitescript="$ans"
8699 sitescriptexp="$ansexp"
8700 : Change installation prefix, if necessary.
8701 if $test X"$prefix" != X"$installprefix"; then
8702         installsitescript=`echo $sitescriptexp | sed "s#^$prefix#$installprefix#"`
8703 else
8704         installsitescript="$sitescriptexp"
8705 fi
8706
8707 case "$usefaststdio" in
8708 $define|true|[yY]*|'')
8709         xversion=`awk '/define[         ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
8710         case "$xversion" in
8711         [68])   dflt='y' ;;
8712         *)      dflt='n' ;;
8713         esac
8714         ;;
8715 *) dflt='n';;
8716 esac
8717 cat <<EOM
8718
8719 Perl can be built to use 'fast stdio', which means using the stdio
8720 library but also directly manipulating the stdio buffers to enable
8721 faster I/O.  Using stdio is better for backward compatibility (especially
8722 for Perl extensions), but on the other hand since Perl 5.8 the 'perlio'
8723 interface has been preferred instead of stdio.
8724
8725 If this doesn't make any sense to you, just accept the default '$dflt'.
8726 EOM
8727 rp='Use the "fast stdio" if available?'
8728 . ./myread
8729 case "$ans" in
8730 y|Y)    val="$define" ;;     
8731 *)      val="$undef" ;;
8732 esac
8733 set usefaststdio
8734 eval $setvar
8735
8736
8737 : define an is-a-typedef? function
8738 typedef='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
8739 case "$inclist" in
8740 "") inclist="sys/types.h";;
8741 esac;
8742 eval "varval=\$$var";
8743 case "$varval" in
8744 "")
8745         $rm -f temp.c;
8746         for inc in $inclist; do
8747                 echo "#include <$inc>" >>temp.c;
8748         done;
8749         echo "#ifdef $type" >> temp.c;
8750         echo "printf(\"We have $type\");" >> temp.c;
8751         echo "#endif" >> temp.c;
8752         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
8753         if $contains $type temp.E >/dev/null 2>&1; then
8754                 eval "$var=\$type";
8755         else
8756                 eval "$var=\$def";
8757         fi;
8758         $rm -f temp.?;;
8759 *) eval "$var=\$varval";;
8760 esac'
8761
8762 : define an is-a-typedef? function that prompts if the type is not available.
8763 typedef_ask='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
8764 case "$inclist" in
8765 "") inclist="sys/types.h";;
8766 esac;
8767 eval "varval=\$$var";
8768 case "$varval" in
8769 "")
8770         $rm -f temp.c;
8771         for inc in $inclist; do
8772                 echo "#include <$inc>" >>temp.c;
8773         done;
8774         echo "#ifdef $type" >> temp.c;
8775         echo "printf(\"We have $type\");" >> temp.c;
8776         echo "#endif" >> temp.c;
8777         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
8778         echo " " ;
8779         echo "$rp" | $sed -e "s/What is/Looking for/" -e "s/?/./";
8780         if $contains $type temp.E >/dev/null 2>&1; then
8781                 echo "$type found." >&4;
8782                 eval "$var=\$type";
8783         else
8784                 echo "$type NOT found." >&4;
8785                 dflt="$def";
8786                 . ./myread ;
8787                 eval "$var=\$ans";
8788         fi;
8789         $rm -f temp.?;;
8790 *) eval "$var=\$varval";;
8791 esac'
8792
8793 : see what type lseek is declared as in the kernel
8794 rp="What is the type used for lseek's offset on this system?"
8795 set off_t lseektype long stdio.h sys/types.h
8796 eval $typedef_ask
8797
8798 echo " "
8799 echo "Checking to see how big your file offsets are..." >&4
8800 $cat >try.c <<EOCP
8801 #include <sys/types.h>
8802 #include <stdio.h>
8803 int main()
8804 {
8805     printf("%d\n", (int)sizeof($lseektype));
8806     return(0); 
8807 }
8808 EOCP
8809 set try
8810 if eval $compile_ok; then
8811         lseeksize=`$run ./try`
8812         echo "Your file offsets are $lseeksize bytes long."
8813 else
8814         dflt=$longsize
8815         echo " "
8816         echo "(I can't seem to compile the test program.  Guessing...)"
8817         rp="What is the size of your file offsets (in bytes)?"
8818         . ./myread
8819         lseeksize="$ans"
8820 fi
8821 $rm -f try.c try
8822
8823 : see what type file positions are declared as in the library
8824 rp="What is the type for file position used by fsetpos()?"
8825 set fpos_t fpostype long stdio.h sys/types.h
8826 eval $typedef_ask
8827
8828 echo " "
8829 case "$fpostype" in
8830 *_t) zzz="$fpostype"    ;;
8831 *)   zzz="fpos_t"       ;;
8832 esac
8833 echo "Checking the size of $zzz..." >&4 
8834 cat > try.c <<EOCP
8835 #include <sys/types.h>
8836 #include <stdio.h>
8837 #$i_stdlib I_STDLIB
8838 #ifdef I_STDLIB
8839 #include <stdlib.h>
8840 #endif
8841 int main() {
8842     printf("%d\n", (int)sizeof($fpostype));
8843     exit(0);
8844 }
8845 EOCP
8846 set try
8847 if eval $compile_ok; then
8848         yyy=`$run ./try`
8849         case "$yyy" in
8850         '')     fpossize=4
8851                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
8852                 ;;
8853         *)      fpossize=$yyy
8854                 echo "Your $zzz is $fpossize bytes long."
8855                 ;;
8856         esac
8857 else
8858         dflt="$longsize"
8859         echo " " >&4
8860         echo "(I can't compile the test program.  Guessing...)" >&4
8861         rp="What is the size of your file positions (in bytes)?"
8862         . ./myread
8863         fpossize="$ans"
8864 fi
8865
8866 # Backward compatibility (uselfs is deprecated).
8867 case "$uselfs" in
8868 "$define"|true|[yY]*)
8869         cat <<EOM >&4
8870
8871 *** Configure -Duselfs is deprecated, using -Duselargefiles instead.
8872 EOM
8873         uselargefiles="$define"
8874         ;;
8875 esac                          
8876
8877 case "$lseeksize:$fpossize" in
8878 8:8) cat <<EOM
8879
8880 You can have files larger than 2 gigabytes.
8881 EOM
8882    val="$define" ;;
8883 *)    case "$uselargefiles" in
8884    "$undef"|false|[nN]*) dflt='n' ;;
8885    *)   dflt='y' ;;
8886    esac
8887    cat <<EOM
8888
8889 Perl can be built to understand large files (files larger than 2 gigabytes)
8890 on some systems.  To do so, Configure can be run with -Duselargefiles.
8891
8892 If this doesn't make any sense to you, just accept the default '$dflt'.
8893 EOM
8894    rp='Try to understand large files, if available?'
8895    . ./myread
8896    case "$ans" in
8897    y|Y)         val="$define" ;;
8898    *)           val="$undef"  ;;
8899    esac
8900    ;;
8901 esac
8902 set uselargefiles
8903 eval $setvar
8904 : Look for a hint-file generated 'call-back-unit'.  If the
8905 : user has specified that a large files perl is to be built,
8906 : we may need to set or change some other defaults.
8907 if $test -f uselargefiles.cbu; then
8908         echo "Your platform has some specific hints regarding large file builds, using them..."
8909         . ./uselargefiles.cbu
8910 fi
8911 case "$uselargefiles" in
8912 "$define")
8913         if $test -f uselargefiles.cbu; then
8914                 echo " "
8915                 echo "Rechecking to see how big your file offsets are..." >&4
8916                 $cat >try.c <<EOCP
8917 #include <sys/types.h>
8918 #include <stdio.h>
8919 int main()
8920 {
8921     printf("%d\n", (int)sizeof($lseektype));
8922     return(0); 
8923 }
8924 EOCP
8925                 set try
8926                 if eval $compile_ok; then
8927                         lseeksize=`$run ./try`
8928                         $echo "Your file offsets are now $lseeksize bytes long."
8929                 else
8930                         dflt="$lseeksize"
8931                         echo " "
8932                         echo "(I can't seem to compile the test program.  Guessing...)"
8933                         rp="What is the size of your file offsets (in bytes)?"
8934                         . ./myread
8935                         lseeksize="$ans"
8936                 fi
8937                 case "$fpostype" in
8938                 *_t) zzz="$fpostype"    ;;
8939                 *)   zzz="fpos_t"       ;;
8940                 esac
8941                 $echo $n "Rechecking the size of $zzz...$c" >&4 
8942                 $cat > try.c <<EOCP
8943 #include <sys/types.h>
8944 #include <stdio.h>
8945 #$i_stdlib I_STDLIB
8946 #ifdef I_STDLIB
8947 #include <stdlib.h>
8948 #endif
8949 int main() {
8950     printf("%d\n", (int)sizeof($fpostype));
8951     return(0);
8952 }
8953 EOCP
8954                 set try
8955                 if eval $compile_ok; then
8956                         yyy=`$run ./try`
8957                         dflt="$lseeksize"
8958                         case "$yyy" in
8959                         '')     echo " "
8960                                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
8961                                 ;;
8962                         *)      fpossize=$yyy
8963                                 echo " $fpossize bytes." >&4
8964                                 ;;
8965                         esac
8966                 else
8967                         dflt="$fpossize"
8968                         echo " "
8969                         echo "(I can't compile the test program.  Guessing...)" >&4
8970                         rp="What is the size of your file positions (in bytes)?"
8971                         . ./myread
8972                         fpossize="$ans"
8973                 fi
8974                 $rm -f try.c try
8975         fi
8976         ;;
8977 esac
8978
8979 # probably will refer to
8980 #   $archlib $privlib $sitearch $sitelib $vendorarch $vendorlib
8981 need_relocation=0
8982 userelocatableinc=undef
8983
8984 case "$vendorprefix" in
8985 '')     d_vendorbin="$undef"
8986         vendorbin=''
8987         vendorbinexp=''
8988         ;;
8989 *)      d_vendorbin="$define"
8990         : determine where vendor-supplied executables go.
8991         case "$vendorbin" in
8992         '') dflt=$vendorprefix/bin ;;
8993         *)      dflt="$vendorbin" ;;
8994         esac
8995         fn=d~+
8996         rp='Pathname for the vendor-supplied executables directory?'
8997         . ./getfile
8998         vendorbin="$ans"
8999         vendorbinexp="$ansexp"
9000         ;;
9001 esac
9002 : Change installation prefix, if necessary.
9003 if $test X"$prefix" != X"$installprefix"; then
9004         installvendorbin=`echo $vendorbinexp | $sed "s#^$prefix#$installprefix#"`
9005 else
9006         installvendorbin="$vendorbinexp"
9007 fi
9008
9009 case "$vendorprefix" in
9010 '')     vendorhtml1dir=''
9011         vendorhtml1direxp=''
9012         ;;
9013 *)      : determine where vendor-supplied html pages go.
9014         : There is no standard location, so try to copy the previously-selected
9015         : directory structure for the core html pages.
9016         : XXX Better default suggestions would be welcome.
9017         case "$vendorhtml1dir" in
9018         '')     dflt=`echo "$html1dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9019         *)      dflt=$vendorhtml1dir ;;
9020         esac
9021         case "$dflt" in
9022         ''|' ') dflt=none ;;
9023         esac
9024         fn=dn+~
9025         rp='Pathname for the vendor-supplied html pages?'
9026         . ./getfile
9027         vendorhtml1dir="$ans"
9028         vendorhtml1direxp="$ansexp"
9029         ;;
9030 esac
9031 : Use ' ' for none so value is preserved next time through Configure
9032 $test X"$vendorhtml1dir" = "X" && vendorhtml1dir=' '
9033 : Change installation prefix, if necessary.
9034 if $test X"$prefix" != X"$installprefix"; then
9035         installvendorhtml1dir=`echo $vendorhtml1direxp | $sed "s#^$prefix#$installprefix#"`
9036 else
9037         installvendorhtml1dir="$vendorhtml1direxp"
9038 fi
9039
9040 case "$vendorprefix" in
9041 '')     vendorhtml3dir=''
9042         vendorhtml3direxp=''
9043         ;;
9044 *)      : determine where vendor-supplied module html pages go.
9045         : There is no standard location, so try to copy the previously-selected
9046         : directory structure for the core html pages.
9047         : XXX Better default suggestions would be welcome.
9048         case "$vendorhtml3dir" in
9049         '')     dflt=`echo "$html3dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9050         *)      dflt=$vendorhtml3dir ;;
9051         esac
9052         case "$dflt" in
9053         ''|' ') dflt=none ;;
9054         esac
9055         fn=dn+~
9056         rp='Pathname for the vendor-supplied html pages?'
9057         . ./getfile
9058         vendorhtml3dir="$ans"
9059         vendorhtml3direxp="$ansexp"
9060         ;;
9061 esac
9062 : Use ' ' for none so value is preserved next time through Configure
9063 $test X"$vendorhtml3dir" = "X" && vendorhtml3dir=' '
9064 : Change installation prefix, if necessary.
9065 if $test X"$prefix" != X"$installprefix"; then
9066         installvendorhtml3dir=`echo $vendorhtml3direxp | $sed "s#^$prefix#$installprefix#"`
9067 else
9068         installvendorhtml3dir="$vendorhtml3direxp"
9069 fi
9070
9071 case "$vendorprefix" in
9072 '')     vendorman1dir=''
9073         vendorman1direxp=''
9074         ;;
9075 *)      : determine where vendor-supplied manual pages go.
9076         case "$vendorman1dir" in
9077         '') dflt=`echo "$man1dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9078         *)      dflt=$vendorman1dir ;;
9079         esac
9080         case "$dflt" in
9081         ''|' ') dflt=none ;;
9082         esac
9083         fn=nd~+
9084         rp='Pathname for the vendor-supplied manual section 1 pages?'
9085         . ./getfile
9086         vendorman1dir="$ans"
9087         vendorman1direxp="$ansexp"
9088         ;;
9089 esac
9090 : Use ' ' for none so value is preserved next time through Configure
9091 $test X"$vendorman1dir" = "X" && vendorman1dir=' '
9092 : Change installation prefix, if necessary.
9093 if $test X"$prefix" != X"$installprefix"; then
9094         installvendorman1dir=`echo "$vendorman1direxp" | $sed "s#^$prefix#$installprefix#"`
9095 else
9096         installvendorman1dir="$vendorman1direxp"
9097 fi
9098
9099 case "$vendorprefix" in
9100 '')     vendorman3dir=''
9101         vendorman3direxp=''
9102         ;;
9103 *)      : determine where vendor-supplied module manual pages go.
9104         case "$vendorman3dir" in
9105         '') dflt=`echo "$man3dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9106         *)      dflt=$vendorman3dir ;;
9107         esac
9108         case "$dflt" in
9109         ''|' ') dflt=none ;;
9110         esac
9111         fn=nd~+
9112         rp='Pathname for the vendor-supplied manual section 3 pages?'
9113         . ./getfile
9114         vendorman3dir="$ans"
9115         vendorman3direxp="$ansexp"
9116         ;;
9117 esac
9118 : Use ' ' for none so value is preserved next time through Configure
9119 $test X"$vendorman3dir" = "X" && vendorman3dir=' '
9120 : Change installation prefix, if necessary.
9121 if $test X"$prefix" != X"$installprefix"; then
9122         installvendorman3dir=`echo "$vendorman3direxp" | $sed "s#^$prefix#$installprefix#"`
9123 else
9124         installvendorman3dir="$vendorman3direxp"
9125 fi
9126
9127 case "$vendorprefix" in
9128 '')     d_vendorscript="$undef"
9129         vendorscript=''
9130         vendorscriptexp=''
9131         ;;
9132 *)      d_vendorscript="$define"
9133         : determine where vendor-supplied scripts go.
9134         case "$vendorscript" in
9135         '')     dflt=$vendorprefix/script
9136                 $test -d $dflt || dflt=$vendorbin ;;
9137         *)  dflt="$vendorscript" ;;
9138         esac
9139         $cat <<EOM
9140
9141 The installation process will create a directory for 
9142 vendor-supplied scripts.
9143
9144 EOM
9145         fn=d~+
9146         rp='Pathname for the vendor-supplied scripts directory?'
9147         . ./getfile
9148         vendorscript="$ans"
9149         vendorscriptexp="$ansexp"
9150         ;;
9151 esac
9152 : Change installation prefix, if necessary.
9153 if $test X"$prefix" != X"$installprefix"; then
9154         installvendorscript=`echo $vendorscriptexp | $sed "s#^$prefix#$installprefix#"`
9155 else
9156         installvendorscript="$vendorscriptexp"
9157 fi
9158
9159 : see if qgcvt exists
9160 set qgcvt d_qgcvt
9161 eval $inlibc
9162
9163 echo " "
9164
9165 if $test X"$d_longdbl" = X"$define"; then
9166
9167 echo "Checking how to print long doubles..." >&4
9168
9169 if $test X"$sPRIfldbl" = X -a X"$doublesize" = X"$longdblsize"; then
9170         $cat >try.c <<'EOCP'
9171 #include <sys/types.h>
9172 #include <stdio.h>
9173 int main() {
9174   double d = 123.456;
9175   printf("%.3f\n", d);
9176 }
9177 EOCP
9178         set try
9179         if eval $compile; then
9180                 yyy=`$run ./try`
9181                 case "$yyy" in
9182                 123.456)
9183                         sPRIfldbl='"f"'; sPRIgldbl='"g"'; sPRIeldbl='"e"';
9184                         sPRIFUldbl='"F"'; sPRIGUldbl='"G"'; sPRIEUldbl='"E"';
9185                         echo "We will use %f."
9186                         ;;
9187                 esac
9188         fi
9189 fi
9190
9191 if $test X"$sPRIfldbl" = X; then
9192         $cat >try.c <<'EOCP'
9193 #include <sys/types.h>
9194 #include <stdio.h>
9195 int main() {
9196   long double d = 123.456;
9197   printf("%.3Lf\n", d);
9198 }
9199 EOCP
9200         set try
9201         if eval $compile; then
9202                 yyy=`$run ./try`
9203                 case "$yyy" in
9204                 123.456)
9205                         sPRIfldbl='"Lf"'; sPRIgldbl='"Lg"'; sPRIeldbl='"Le"';
9206                         sPRIFUldbl='"LF"'; sPRIGUldbl='"LG"'; sPRIEUldbl='"LE"';
9207                         echo "We will use %Lf."
9208                         ;;
9209                 esac
9210         fi
9211 fi
9212
9213 if $test X"$sPRIfldbl" = X; then
9214         $cat >try.c <<'EOCP'
9215 #include <sys/types.h>
9216 #include <stdio.h>
9217 int main() {
9218   long double d = 123.456;
9219   printf("%.3llf\n", d);
9220 }
9221 EOCP
9222         set try
9223         if eval $compile; then
9224                 yyy=`$run ./try`
9225                 case "$yyy" in
9226                 123.456)
9227                         sPRIfldbl='"llf"'; sPRIgldbl='"llg"'; sPRIeldbl='"lle"';
9228                         sPRIFUldbl='"llF"'; sPRIGUldbl='"llG"'; sPRIEUldbl='"llE"';
9229                         echo "We will use %llf."
9230                         ;;
9231                 esac
9232         fi
9233 fi
9234
9235 if $test X"$sPRIfldbl" = X; then
9236         $cat >try.c <<'EOCP'
9237 #include <sys/types.h>
9238 #include <stdio.h>
9239 int main() {
9240   long double d = 123.456;
9241   printf("%.3lf\n", d);
9242 }
9243 EOCP
9244         set try
9245         if eval $compile; then
9246                 yyy=`$run ./try`
9247                 case "$yyy" in
9248                 123.456)
9249                         sPRIfldbl='"lf"'; sPRIgldbl='"lg"'; sPRIeldbl='"le"';
9250                         sPRIFUldbl='"lF"'; sPRIGUldbl='"lG"'; sPRIEUldbl='"lE"';
9251                         echo "We will use %lf."
9252                         ;;
9253                 esac
9254         fi
9255 fi
9256
9257 if $test X"$sPRIfldbl" = X; then
9258         echo "Cannot figure out how to print long doubles." >&4
9259 else
9260         sSCNfldbl=$sPRIfldbl    # expect consistency
9261 fi
9262
9263 $rm -f try try.*
9264
9265 fi # d_longdbl
9266
9267 case "$sPRIfldbl" in
9268 '')     d_PRIfldbl="$undef"; d_PRIgldbl="$undef"; d_PRIeldbl="$undef"; 
9269         d_PRIFUldbl="$undef"; d_PRIGUldbl="$undef"; d_PRIEUldbl="$undef"; 
9270         d_SCNfldbl="$undef";
9271         ;;
9272 *)      d_PRIfldbl="$define"; d_PRIgldbl="$define"; d_PRIeldbl="$define"; 
9273         d_PRIFUldbl="$define"; d_PRIGUldbl="$define"; d_PRIEUldbl="$define"; 
9274         d_SCNfldbl="$define";
9275         ;;
9276 esac
9277
9278 : Check how to convert floats to strings.
9279
9280 if test "X$d_Gconvert" = X; then
9281
9282 echo " "
9283 echo "Checking for an efficient way to convert floats to strings."
9284 echo " " > try.c
9285 case "$uselongdouble" in
9286 "$define") echo "#define USE_LONG_DOUBLE" >>try.c ;;
9287 esac
9288 case "$d_longdbl" in
9289 "$define") echo "#define HAS_LONG_DOUBLE" >>try.c ;;
9290 esac
9291 case "$d_PRIgldbl" in
9292 "$define") echo "#define HAS_PRIgldbl"    >>try.c ;;
9293 esac
9294 $cat >>try.c <<EOP
9295 #ifdef TRY_gconvert
9296 #define Gconvert(x,n,t,b) gconvert((x),(n),(t),(b))
9297 char *myname = "gconvert";
9298 #endif
9299 #ifdef TRY_gcvt
9300 #define Gconvert(x,n,t,b) gcvt((x),(n),(b))
9301 char *myname = "gcvt";
9302 #endif
9303 #ifdef TRY_qgcvt
9304 #define Gconvert(x,n,t,b) qgcvt((x),(n),(b))
9305 char *myname = "qgcvt";
9306 #define DOUBLETYPE long double
9307 #endif
9308 #ifdef TRY_sprintf
9309 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
9310 #ifdef HAS_PRIgldbl
9311 #define Gconvert(x,n,t,b) sprintf((b),"%.*"$sPRIgldbl,(n),(x))
9312 #else
9313 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(double)(x))
9314 #endif
9315 #else
9316 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))
9317 #endif
9318 char *myname = "sprintf";
9319 #endif
9320
9321 #ifndef DOUBLETYPE
9322 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
9323 #define DOUBLETYPE long double
9324 #else
9325 #define DOUBLETYPE double
9326 #endif
9327 #endif
9328
9329 #include <stdio.h>
9330
9331 #define I_STDLIB $i_stdlib
9332 #ifdef I_STDLIB
9333 #include <stdlib.h>
9334 #endif
9335
9336 int
9337 checkit(expect, got)
9338 char *expect;
9339 char *got;
9340 {
9341     if (strcmp(expect, got)) {
9342                 printf("%s oddity:  Expected %s, got %s\n",
9343                         myname, expect, got);
9344                 exit(1);
9345         }
9346 }
9347
9348 int main()
9349
9350         char buf[64]; 
9351         buf[63] = '\0';
9352
9353         /* This must be 1st test on (which?) platform */
9354         /* Alan Burlison <AlanBurlsin@unn.unisys.com> */
9355         Gconvert((DOUBLETYPE)0.1, 8, 0, buf);
9356         checkit("0.1", buf);
9357
9358         Gconvert((DOUBLETYPE)0.01, 8, 0, buf); 
9359         checkit("0.01", buf);
9360
9361         Gconvert((DOUBLETYPE)0.001, 8, 0, buf); 
9362         checkit("0.001", buf);
9363
9364         Gconvert((DOUBLETYPE)0.0001, 8, 0, buf); 
9365         checkit("0.0001", buf);
9366
9367         Gconvert((DOUBLETYPE)0.00009, 8, 0, buf);
9368         if (strlen(buf) > 5)
9369             checkit("9e-005", buf); /* for Microsoft ?? */
9370         else
9371             checkit("9e-05", buf);
9372
9373         Gconvert((DOUBLETYPE)1.0, 8, 0, buf); 
9374         checkit("1", buf);
9375
9376         Gconvert((DOUBLETYPE)1.1, 8, 0, buf); 
9377         checkit("1.1", buf);
9378
9379         Gconvert((DOUBLETYPE)1.01, 8, 0, buf); 
9380         checkit("1.01", buf);
9381
9382         Gconvert((DOUBLETYPE)1.001, 8, 0, buf); 
9383         checkit("1.001", buf);
9384
9385         Gconvert((DOUBLETYPE)1.0001, 8, 0, buf); 
9386         checkit("1.0001", buf);
9387
9388         Gconvert((DOUBLETYPE)1.00001, 8, 0, buf); 
9389         checkit("1.00001", buf);
9390
9391         Gconvert((DOUBLETYPE)1.000001, 8, 0, buf); 
9392         checkit("1.000001", buf);
9393
9394         Gconvert((DOUBLETYPE)0.0, 8, 0, buf); 
9395         checkit("0", buf);
9396
9397         Gconvert((DOUBLETYPE)-1.0, 8, 0, buf); 
9398         checkit("-1", buf);
9399
9400         /* Some Linux gcvt's give 1.e+5 here. */
9401         Gconvert((DOUBLETYPE)100000.0, 8, 0, buf); 
9402         checkit("100000", buf);
9403         
9404         /* Some Linux gcvt's give -1.e+5 here. */
9405         Gconvert((DOUBLETYPE)-100000.0, 8, 0, buf); 
9406         checkit("-100000", buf);
9407
9408         Gconvert((DOUBLETYPE)123.456, 8, 0, buf); 
9409         checkit("123.456", buf);
9410
9411         /* Testing of 1e+129 in bigintpm.t must not get extra '.' here. */
9412         Gconvert((DOUBLETYPE)1e34, 8, 0, buf);
9413         /* 34 should be enough to scare even long double
9414          * places into using the e notation. */
9415         if (strlen(buf) > 5)
9416             checkit("1e+034", buf); /* for Microsoft */
9417         else
9418             checkit("1e+34", buf);
9419
9420         /* For Perl, if you add additional tests here, also add them to
9421          * t/base/num.t for benefit of platforms not using Configure or
9422          * overriding d_Gconvert */
9423
9424         exit(0);
9425 }
9426 EOP
9427 : first add preferred functions to our list
9428 xxx_list=""
9429 for xxx_convert in $gconvert_preference; do
9430     case $xxx_convert in
9431     gcvt|gconvert|sprintf) xxx_list="$xxx_list $xxx_convert" ;;
9432     *) echo "Discarding unrecognized gconvert_preference $xxx_convert" >&4 ;;
9433     esac 
9434 done
9435 : then add any others
9436 for xxx_convert in gconvert gcvt sprintf; do
9437     case "$xxx_list" in
9438     *$xxx_convert*) ;;
9439     *) xxx_list="$xxx_list $xxx_convert" ;;
9440     esac 
9441 done
9442
9443 case "$d_longdbl$uselongdouble" in
9444 "$define$define")
9445     : again, add prefered functions to our list first
9446     xxx_ld_list=""
9447     for xxx_convert in $gconvert_ld_preference; do
9448         case $xxx_convert in
9449         qgcvt|gcvt|gconvert|sprintf) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
9450         *) echo "Discarding unrecognized gconvert_ld_preference $xxx_convert" ;;
9451         esac
9452     done
9453     : then add qgcvt, sprintf--then, in xxx_list order, gconvert and gcvt
9454     for xxx_convert in qgcvt sprintf $xxx_list; do
9455         case "$xxx_ld_list" in
9456         $xxx_convert*|*" $xxx_convert"*) ;;
9457         *) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
9458         esac
9459     done
9460     : if sprintf cannot do long doubles, move it to the end
9461     if test "$d_PRIgldbl" != "$define"; then
9462         xxx_ld_list="`echo $xxx_ld_list|sed s/sprintf//` sprintf"
9463     fi
9464     : if no qgcvt, remove it
9465     if test "$d_qgcvt" != "$define"; then
9466         xxx_ld_list="`echo $xxx_ld_list|sed s/qgcvt//`"
9467     fi
9468     : use the ld_list
9469     xxx_list="$xxx_ld_list"
9470     ;;
9471 esac
9472
9473 for xxx_convert in $xxx_list; do
9474         echo "Trying $xxx_convert..."
9475         $rm -f try try$_o
9476         set try -DTRY_$xxx_convert
9477         if eval $compile; then
9478                 echo "$xxx_convert() found." >&4
9479                 if $run ./try; then
9480                         echo "I'll use $xxx_convert to convert floats into a string." >&4
9481                         break;
9482                 else
9483                         echo "...But $xxx_convert didn't work as I expected."
9484                         xxx_convert=''
9485                 fi
9486         else
9487                 echo "$xxx_convert NOT found." >&4
9488         fi
9489 done
9490
9491 if test X$xxx_convert = X; then
9492     echo "*** WHOA THERE!!! ***" >&4
9493     echo "None of ($xxx_list)  seemed to work properly.  I'll use sprintf." >&4
9494     xxx_convert=sprintf
9495 fi
9496
9497 case "$xxx_convert" in
9498 gconvert) d_Gconvert='gconvert((x),(n),(t),(b))' ;;
9499 gcvt) d_Gconvert='gcvt((x),(n),(b))' ;;
9500 qgcvt) d_Gconvert='qgcvt((x),(n),(b))' ;;
9501 *) case "$uselongdouble$d_longdbl$d_PRIgldbl" in
9502    "$define$define$define")
9503       d_Gconvert="sprintf((b),\"%.*\"$sPRIgldbl,(n),(x))" ;;
9504    "$define$define$undef")
9505       d_Gconvert='sprintf((b),"%.*g",(n),(double)(x))' ;;
9506    *) d_Gconvert='sprintf((b),"%.*g",(n),(x))' ;;
9507    esac
9508    ;;  
9509 esac
9510
9511 fi
9512
9513 : see if _fwalk exists
9514 set fwalk d__fwalk
9515 eval $inlibc
9516
9517 : Initialize h_fcntl
9518 h_fcntl=false
9519
9520 : Initialize h_sysfile
9521 h_sysfile=false
9522
9523 : access call always available on UNIX
9524 set access d_access
9525 eval $inlibc
9526
9527 : locate the flags for 'access()'
9528 case "$d_access" in
9529 "$define")
9530         echo " "
9531         $cat >access.c <<EOCP
9532 #include <sys/types.h>
9533 #ifdef I_FCNTL
9534 #include <fcntl.h>
9535 #endif
9536 #ifdef I_SYS_FILE
9537 #include <sys/file.h>
9538 #endif
9539 #ifdef I_UNISTD
9540 #include <unistd.h>
9541 #endif
9542 #$i_stdlib I_STDLIB
9543 #ifdef I_STDLIB
9544 #include <stdlib.h>
9545 #endif
9546 int main() {
9547         exit(R_OK);
9548 }
9549 EOCP
9550         : check sys/file.h first, no particular reason here
9551         if $test `./findhdr sys/file.h` && \
9552                 $cc -o access $cppflags -DI_SYS_FILE access.c >/dev/null 2>&1 ; then
9553                 h_sysfile=true;
9554                 echo "<sys/file.h> defines the *_OK access constants." >&4
9555         elif $test `./findhdr fcntl.h` && \
9556                 $cc -o access $cppflags -DI_FCNTL access.c >/dev/null 2>&1 ; then
9557                 h_fcntl=true;
9558                 echo "<fcntl.h> defines the *_OK access constants." >&4
9559         elif $test `./findhdr unistd.h` && \
9560                 $cc -o access $cppflags -DI_UNISTD access.c >/dev/null 2>&1 ; then
9561                 echo "<unistd.h> defines the *_OK access constants." >&4
9562         else
9563                 echo "I can't find the four *_OK access constants--I'll use mine." >&4
9564         fi
9565         ;;
9566 esac
9567 $rm -f access*
9568
9569 : see if accessx exists
9570 set accessx d_accessx
9571 eval $inlibc
9572
9573 : see if aintl exists
9574 set aintl d_aintl
9575 eval $inlibc
9576
9577 : see if alarm exists
9578 set alarm d_alarm
9579 eval $inlibc
9580
9581 : see if POSIX threads are available
9582 set pthread.h i_pthread
9583 eval $inhdr
9584
9585 : define a fucntion to check prototypes
9586 $cat > protochk <<EOSH
9587 $startsh
9588 cc="$cc"
9589 optimize="$optimize"
9590 ccflags="$ccflags"
9591 prototype="$prototype"
9592 define="$define"
9593 rm=$rm
9594 usethreads=$usethreads
9595 i_pthread=$i_pthread
9596 pthread_h_first=$pthread_h_first
9597 EOSH
9598
9599 $cat >> protochk <<'EOSH'
9600
9601 $rm -f try.c
9602 foo="$1"
9603 shift
9604 while test $# -ge 2; do
9605         case "$1" in
9606                 $define) echo "#include <$2>" >> try.c ;;
9607                 literal) echo "$2" >> try.c ;;
9608         esac
9609     # Extra magic for the benefit of systems that need pthread.h
9610     # to be included early to correctly detect threadsafe functions.
9611     # Such functions must guarantee themselves, though, that the usethreads
9612     # and i_pthread have been defined, before calling protochk.
9613     if test "$usethreads" = "$define" -a "$i_pthread" = "$define" -a "$pthread_h_first" = "$define" -a "$pthread_h_done" = ""; then
9614         echo "#include <pthread.h>" >> try.c
9615         pthread_h_done=yes
9616     fi
9617     shift 2
9618 done
9619 test "$prototype" = "$define"  && echo '#define CAN_PROTOTYPE' >> try.c
9620 cat >> try.c <<'EOCP'
9621 #ifdef CAN_PROTOTYPE
9622 #define _(args) args
9623 #else
9624 #define _(args) ()
9625 #endif
9626 EOCP
9627 echo "$foo" >> try.c
9628 echo 'int no_real_function_has_this_name _((void)) { return 0; }' >> try.c
9629 $cc $optimize $ccflags -c try.c > /dev/null 2>&1
9630 status=$?
9631 $rm -f try.[co]
9632 exit $status
9633 EOSH
9634 chmod +x protochk
9635 $eunicefix protochk
9636
9637 hasproto='varname=$1; func=$2; shift; shift;
9638 while $test $# -ge 2; do
9639         case "$1" in
9640         $define) echo "#include <$2>";;
9641         esac ;
9642     shift 2;
9643 done > try.c;
9644 $cppstdin $cppflags $cppminus < try.c > tryout.c 2>/dev/null;
9645 if $contains "$func.*(" tryout.c >/dev/null 2>&1; then
9646         echo "$func() prototype found.";
9647         val="$define";
9648 else
9649         echo "$func() prototype NOT found.";
9650         val="$undef";
9651 fi;
9652 set $varname;
9653 eval $setvar;
9654 $rm -f try.c tryout.c'
9655
9656 : see if sys/types.h has to be included
9657 set sys/types.h i_systypes
9658 eval $inhdr
9659
9660 : see if sys/select.h has to be included
9661 set sys/select.h i_sysselct
9662 eval $inhdr
9663
9664 hasfield='varname=$1; struct=$2; field=$3; shift; shift; shift;
9665 while $test $# -ge 2; do
9666         case "$1" in
9667         $define) echo "#include <$2>";;
9668         esac ;
9669     shift 2;
9670 done > try.c;
9671 echo "int main () { struct $struct foo; char* bar; bar = (char*)foo.$field; }" >> try.c;
9672 set try;
9673 if eval $compile; then
9674         val="$define";
9675 else
9676         val="$undef";
9677 fi;
9678 set $varname;
9679 eval $setvar;
9680 $rm -f try.c try.o'
9681
9682 : see if we should include time.h, sys/time.h, or both
9683 echo " "
9684 if test "X$timeincl" = X; then
9685         echo "Testing to see if we should include <time.h>, <sys/time.h> or both." >&4
9686         $echo $n "I'm now running the test program...$c"
9687         $cat >try.c <<EOCP
9688 #include <sys/types.h>
9689 #ifdef I_TIME
9690 #include <time.h>
9691 #endif
9692 #ifdef I_SYSTIME
9693 #ifdef SYSTIMEKERNEL
9694 #define KERNEL
9695 #endif
9696 #include <sys/time.h>
9697 #endif
9698 #ifdef I_SYSSELECT
9699 #include <sys/select.h>
9700 #endif
9701 #$i_stdlib I_STDLIB
9702 #ifdef I_STDLIB
9703 #include <stdlib.h>
9704 #endif
9705 int main()
9706 {
9707         struct tm foo;
9708 #ifdef S_TIMEVAL
9709         struct timeval bar;
9710 #endif
9711 #ifdef S_TIMEZONE
9712         struct timezone tzp;
9713 #endif
9714         if (foo.tm_sec == foo.tm_sec)
9715                 exit(0);
9716 #ifdef S_TIMEVAL
9717         if (bar.tv_sec == bar.tv_sec)
9718                 exit(0);
9719 #endif
9720         exit(1);
9721 }
9722 EOCP
9723         flags=''
9724         for s_timezone in '-DS_TIMEZONE' ''; do
9725         sysselect=''
9726         for s_timeval in '-DS_TIMEVAL' ''; do
9727         for i_systimek in '' '-DSYSTIMEKERNEL'; do
9728         for i_time in '' '-DI_TIME'; do
9729         for i_systime in '-DI_SYSTIME' ''; do
9730                 case "$flags" in
9731                 '') $echo $n ".$c"
9732                         set try $i_time $i_systime $i_systimek $sysselect $s_timeval $s_timezone
9733                         if eval $compile; then
9734                                 set X $i_time $i_systime $i_systimek $sysselect $s_timeval
9735                                 shift
9736                                 flags="$*"
9737                                 echo " "
9738                                 $echo $n "Succeeded with $flags$c"
9739                         fi
9740                         ;;
9741                 esac
9742         done
9743         done
9744         done
9745         done
9746         done
9747         timeincl=''
9748         echo " "
9749         case "$flags" in
9750         *SYSTIMEKERNEL*) i_systimek="$define"
9751                 timeincl=`./findhdr sys/time.h`
9752                 echo "We'll include <sys/time.h> with KERNEL defined." >&4;;
9753         *) i_systimek="$undef";;
9754         esac
9755         case "$flags" in
9756         *I_TIME*) i_time="$define"
9757                 timeincl=`./findhdr time.h`" $timeincl"
9758                 echo "We'll include <time.h>." >&4;;
9759         *) i_time="$undef";;
9760         esac
9761         case "$flags" in
9762         *I_SYSTIME*) i_systime="$define"
9763                 timeincl=`./findhdr sys/time.h`" $timeincl"
9764                 echo "We'll include <sys/time.h>." >&4;;
9765         *) i_systime="$undef";;
9766         esac
9767         $rm -f try.c try
9768 fi
9769 : see if struct tm knows about tm_zone
9770 case "$i_systime$i_time" in
9771 *$define*) 
9772         echo " "
9773         echo "Checking to see if your struct tm has tm_zone field..." >&4
9774         set d_tm_tm_zone tm tm_zone $i_systime sys/time.h $i_time time.h
9775         eval $hasfield
9776         ;;
9777 *)      val="$undef"
9778         set d_tm_tm_zone
9779         eval $setvar
9780         ;;
9781 esac
9782 case "$d_tm_tm_zone" in
9783 "$define")      echo "Yes, it does."   ;;
9784 *)              echo "No, it doesn't." ;;
9785 esac
9786 : see if struct tm knows about tm_gmtoff
9787 case "$i_systime$i_time" in
9788 *$define*) 
9789         echo " "
9790         echo "Checking to see if your struct tm has tm_gmtoff field..." >&4
9791         set d_tm_tm_gmtoff tm tm_gmtoff $i_systime sys/time.h $i_time time.h
9792         eval $hasfield
9793         ;;
9794 *)      val="$undef"
9795         set d_tm_tm_gmtoff
9796         eval $setvar
9797         ;;
9798 esac
9799 case "$d_tm_tm_gmtoff" in
9800 "$define")      echo "Yes, it does."   ;;
9801 *)              echo "No, it doesn't." ;;
9802 esac
9803
9804 : see if asctime_r exists
9805 set asctime_r d_asctime_r
9806 eval $inlibc
9807 case "$d_asctime_r" in
9808 "$define")
9809         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
9810         case "$d_asctime_r_proto:$usethreads" in
9811         ":define")      d_asctime_r_proto=define
9812                 set d_asctime_r_proto asctime_r $hdrs
9813                 eval $hasproto ;;
9814         *)      ;;
9815         esac
9816         case "$d_asctime_r_proto" in
9817         define)
9818         case "$asctime_r_proto" in
9819         ''|0) try='char* asctime_r(const struct tm*, char*);'
9820         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SB ;;
9821         esac
9822         case "$asctime_r_proto" in
9823         ''|0) try='char* asctime_r(const struct tm*, char*, int);'
9824         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SBI ;;
9825         esac
9826         case "$asctime_r_proto" in
9827         ''|0) try='int asctime_r(const struct tm*, char*);'
9828         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SB ;;
9829         esac
9830         case "$asctime_r_proto" in
9831         ''|0) try='int asctime_r(const struct tm*, char*, int);'
9832         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SBI ;;
9833         esac
9834         case "$asctime_r_proto" in
9835         ''|0)   d_asctime_r=undef
9836                 asctime_r_proto=0
9837                 echo "Disabling asctime_r, cannot determine prototype." >&4 ;;
9838         * )     case "$asctime_r_proto" in
9839                 REENTRANT_PROTO*) ;;
9840                 *) asctime_r_proto="REENTRANT_PROTO_$asctime_r_proto" ;;
9841                 esac
9842                 echo "Prototype: $try" ;;
9843         esac
9844         ;;
9845         *)      case "$usethreads" in
9846                 define) echo "asctime_r has no prototype, not using it." >&4 ;;
9847                 esac
9848                 d_asctime_r=undef
9849                 asctime_r_proto=0
9850                 ;;
9851         esac
9852         ;;
9853 *)      asctime_r_proto=0
9854         ;;
9855 esac
9856
9857 : see if atolf exists
9858 set atolf d_atolf
9859 eval $inlibc
9860
9861 : see if atoll exists
9862 set atoll d_atoll
9863 eval $inlibc
9864
9865 : Look for GNU-cc style attribute checking
9866 echo " "
9867 echo "Checking whether your compiler can handle __attribute__ ..." >&4
9868 $cat >attrib.c <<'EOCP'
9869 #include <stdio.h>
9870 void croak (char* pat,...) __attribute__((__format__(__printf__,1,2),noreturn));
9871 EOCP
9872 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
9873         if $contains 'warning' attrib.out >/dev/null 2>&1; then
9874                 echo "Your C compiler doesn't fully support __attribute__."
9875                 val="$undef"
9876         else
9877                 echo "Your C compiler supports __attribute__."
9878                 val="$define"
9879         fi
9880 else
9881         echo "Your C compiler doesn't seem to understand __attribute__ at all."
9882         val="$undef"
9883 fi
9884 set d_attribut
9885 eval $setvar
9886 $rm -f attrib*
9887
9888 : see if bcmp exists
9889 set bcmp d_bcmp
9890 eval $inlibc
9891
9892 : see if bcopy exists
9893 set bcopy d_bcopy
9894 eval $inlibc
9895
9896 : see if this is a unistd.h system
9897 set unistd.h i_unistd
9898 eval $inhdr
9899
9900 : see if getpgrp exists
9901 set getpgrp d_getpgrp
9902 eval $inlibc
9903
9904 case "$d_getpgrp" in
9905 "$define")
9906         echo " "
9907         echo "Checking to see which flavor of getpgrp is in use..."
9908         $cat >try.c <<EOP
9909 #$i_unistd I_UNISTD
9910 #include <sys/types.h>
9911 #ifdef I_UNISTD
9912 #  include <unistd.h>
9913 #endif
9914 #$i_stdlib I_STDLIB
9915 #ifdef I_STDLIB
9916 #include <stdlib.h>
9917 #endif
9918 int main()
9919 {
9920         if (getuid() == 0) {
9921                 printf("(I see you are running Configure as super-user...)\n");
9922                 setuid(1);
9923         }
9924 #ifdef TRY_BSD_PGRP
9925         if (getpgrp(1) == 0)
9926                 exit(0);
9927 #else
9928         if (getpgrp() > 0)
9929                 exit(0);
9930 #endif
9931         exit(1);
9932 }
9933 EOP
9934         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9935                 echo "You have to use getpgrp(pid) instead of getpgrp()." >&4
9936                 val="$define"
9937         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9938                 echo "You have to use getpgrp() instead of getpgrp(pid)." >&4
9939                 val="$undef"
9940         else
9941                 echo "I can't seem to compile and run the test program."
9942                 if ./usg; then
9943                         xxx="a USG one, i.e. you use getpgrp()."
9944                 else
9945                         # SVR4 systems can appear rather BSD-ish.
9946                         case "$i_unistd" in
9947                         $undef)
9948                                 xxx="a BSD one, i.e. you use getpgrp(pid)."
9949                                 val="$define"
9950                                 ;;
9951                         $define)
9952                                 xxx="probably a USG one, i.e. you use getpgrp()."
9953                                 val="$undef"
9954                                 ;;
9955                         esac
9956                 fi
9957                 echo "Assuming your getpgrp is $xxx" >&4
9958         fi
9959         ;;
9960 *) val="$undef";;
9961 esac
9962 set d_bsdgetpgrp
9963 eval $setvar
9964 $rm -f try try.*
9965
9966 : see if setpgrp exists
9967 set setpgrp d_setpgrp
9968 eval $inlibc
9969
9970 case "$d_setpgrp" in
9971 "$define")
9972         echo " "
9973         echo "Checking to see which flavor of setpgrp is in use..."
9974         $cat >try.c <<EOP
9975 #$i_unistd I_UNISTD
9976 #include <sys/types.h>
9977 #ifdef I_UNISTD
9978 #  include <unistd.h>
9979 #endif
9980 #$i_stdlib I_STDLIB
9981 #ifdef I_STDLIB
9982 #include <stdlib.h>
9983 #endif
9984 int main()
9985 {
9986         if (getuid() == 0) {
9987                 printf("(I see you are running Configure as super-user...)\n");
9988                 setuid(1);
9989         }
9990 #ifdef TRY_BSD_PGRP
9991         if (-1 == setpgrp(1, 1))
9992                 exit(0);
9993 #else
9994         if (setpgrp() != -1)
9995                 exit(0);
9996 #endif
9997         exit(1);
9998 }
9999 EOP
10000         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
10001                 echo 'You have to use setpgrp(pid,pgrp) instead of setpgrp().' >&4
10002                 val="$define"
10003         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
10004                 echo 'You have to use setpgrp() instead of setpgrp(pid,pgrp).' >&4
10005                 val="$undef"
10006         else
10007                 echo "(I can't seem to compile and run the test program.)"
10008                 if ./usg; then
10009                         xxx="a USG one, i.e. you use setpgrp()."
10010                 else
10011                         # SVR4 systems can appear rather BSD-ish.
10012                         case "$i_unistd" in
10013                         $undef)
10014                                 xxx="a BSD one, i.e. you use setpgrp(pid,pgrp)."
10015                                 val="$define"
10016                                 ;;
10017                         $define)
10018                                 xxx="probably a USG one, i.e. you use setpgrp()."
10019                                 val="$undef"
10020                                 ;;
10021                         esac
10022                 fi
10023                 echo "Assuming your setpgrp is $xxx" >&4
10024         fi
10025         ;;
10026 *) val="$undef";;
10027 esac
10028 set d_bsdsetpgrp
10029 eval $setvar
10030 $rm -f try try.*
10031 : see if bzero exists
10032 set bzero d_bzero
10033 eval $inlibc
10034
10035 : see if signal is declared as pointer to function returning int or void
10036 echo " "
10037 xxx=`./findhdr signal.h`
10038 $test "$xxx" && $cppstdin $cppminus $cppflags < $xxx >$$.tmp 2>/dev/null
10039 if $contains 'int.*\*[  ]*signal' $$.tmp >/dev/null 2>&1 ; then
10040         echo "You have int (*signal())() instead of void." >&4
10041         val="$undef"
10042 elif $contains 'void.*\*[       ]*signal' $$.tmp >/dev/null 2>&1 ; then
10043         echo "You have void (*signal())()." >&4
10044         val="$define"
10045 elif $contains 'extern[         ]*[(\*]*signal' $$.tmp >/dev/null 2>&1 ; then
10046         echo "You have int (*signal())() instead of void." >&4
10047         val="$undef"
10048 elif $contains 'void.*\*.*sig' $$.tmp >/dev/null 2>&1 ; then
10049         echo "You have void (*signal())()." >&4
10050         val="$define"
10051 else
10052         case "$d_voidsig" in
10053         '')
10054         echo "I can't determine whether signal handler returns void or int..." >&4
10055                 dflt=void
10056                 rp="What type does your signal handler return?"
10057                 . ./myread
10058                 case "$ans" in
10059                 v*) val="$define";;
10060                 *) val="$undef";;
10061                 esac;;
10062         "$define")
10063                 echo "As you already told me, signal handler returns void." >&4
10064                 val="$define"
10065                 ;;
10066         *)      echo "As you already told me, signal handler returns int." >&4
10067                 val="$undef"
10068                 ;;
10069         esac
10070 fi
10071 set d_voidsig
10072 eval $setvar
10073 case "$d_voidsig" in
10074 "$define") signal_t="void";;
10075 *) signal_t="int";;
10076 esac
10077 $rm -f $$.tmp
10078
10079 : check for ability to cast large floats to 32-bit ints.
10080 echo " "
10081 echo 'Checking whether your C compiler can cast large floats to int32.' >&4
10082 if $test "$intsize" -ge 4; then
10083         xxx=int
10084 else
10085         xxx=long
10086 fi
10087 $cat >try.c <<EOCP
10088 #include <stdio.h>
10089 #$i_stdlib I_STDLIB
10090 #ifdef I_STDLIB
10091 #include <stdlib.h>
10092 #endif
10093 #include <sys/types.h>
10094 #include <signal.h>
10095 $signal_t blech(s) int s; { exit(3); }
10096 int main()
10097 {
10098         $xxx i32;
10099         double f, g;
10100         int result = 0;
10101         char str[16];
10102         signal(SIGFPE, blech);
10103
10104         /* Don't let compiler optimize the test away.  Store the number 
10105            in a writable string for gcc to pass to sscanf under HP/UX.
10106         */
10107         sprintf(str, "2147483647");
10108         sscanf(str, "%lf", &f); /* f = (double) 0x7fffffff; */
10109         g = 10 * f;
10110         i32  = ($xxx) g;
10111
10112         /* x86 processors will probably give 0x8000 0000, which is a
10113            sign change.  We don't want that.  We want to mimic SPARC
10114            behavior here, which is to preserve the sign and give
10115            back 0x7fff ffff.
10116         */
10117         if (i32 != ($xxx) f)
10118                 result |= 1;
10119         exit(result);
10120 }
10121 EOCP
10122 set try
10123 if eval $compile_ok; then
10124         $run ./try
10125         yyy=$?
10126 else
10127         echo "(I can't seem to compile the test program--assuming it can't)"
10128         yyy=1
10129 fi
10130 case "$yyy" in
10131 0)      val="$define"
10132         echo "Yup, it can."
10133         ;;
10134 *)      val="$undef"
10135         echo "Nope, it can't."
10136         ;;
10137 esac
10138 set d_casti32
10139 eval $setvar
10140 $rm -f try try.*
10141
10142 : check for ability to cast negative floats to unsigned
10143 echo " "
10144 echo 'Checking whether your C compiler can cast negative float to unsigned.' >&4
10145 $cat >try.c <<EOCP
10146 #include <stdio.h>
10147 #$i_stdlib I_STDLIB
10148 #ifdef I_STDLIB
10149 #include <stdlib.h>
10150 #endif
10151 #include <sys/types.h>
10152 #include <signal.h>
10153 $signal_t blech(s) int s; { exit(7); }
10154 $signal_t blech_in_list(s) int s; { exit(4); }
10155 unsigned long dummy_long(p) unsigned long p; { return p; }
10156 unsigned int dummy_int(p) unsigned int p; { return p; }
10157 unsigned short dummy_short(p) unsigned short p; { return p; }
10158 int main()
10159 {
10160         double f;
10161         unsigned long along;
10162         unsigned int aint;
10163         unsigned short ashort;
10164         int result = 0;
10165         char str[16];
10166         
10167         /* Frustrate gcc-2.7.2's optimizer which failed this test with
10168            a direct f = -123. assignment.  gcc-2.8.0 reportedly
10169            optimized the whole file away
10170         */
10171         /* Store the number in a writable string for gcc to pass to 
10172            sscanf under HP/UX.
10173         */
10174         sprintf(str, "-123");
10175         sscanf(str, "%lf", &f);  /* f = -123.; */
10176
10177         signal(SIGFPE, blech);
10178         along = (unsigned long)f;
10179         aint = (unsigned int)f;
10180         ashort = (unsigned short)f;
10181         if (along != (unsigned long)-123)
10182                 result |= 1;
10183         if (aint != (unsigned int)-123)
10184                 result |= 1;
10185         if (ashort != (unsigned short)-123)
10186                 result |= 1;
10187         sprintf(str, "1073741824.");
10188         sscanf(str, "%lf", &f); /* f = (double)0x40000000; */
10189         f = f + f;
10190         along = 0;
10191         along = (unsigned long)f;
10192         if (along != 0x80000000)
10193                 result |= 2;
10194         f -= 1.;
10195         along = 0;
10196         along = (unsigned long)f;
10197         if (along != 0x7fffffff)
10198                 result |= 1;
10199         f += 2.;
10200         along = 0;
10201         along = (unsigned long)f;
10202         if (along != 0x80000001)
10203                 result |= 2;
10204         if (result)
10205                 exit(result);
10206         signal(SIGFPE, blech_in_list);
10207         sprintf(str, "123.");
10208         sscanf(str, "%lf", &f);  /* f = 123.; */
10209         along = dummy_long((unsigned long)f);
10210         aint = dummy_int((unsigned int)f);
10211         ashort = dummy_short((unsigned short)f);
10212         if (along != (unsigned long)123)
10213                 result |= 4;
10214         if (aint != (unsigned int)123)
10215                 result |= 4;
10216         if (ashort != (unsigned short)123)
10217                 result |= 4;
10218         exit(result);
10219
10220 }
10221 EOCP
10222 set try
10223 if eval $compile_ok; then
10224         $run ./try
10225         castflags=$?
10226 else
10227         echo "(I can't seem to compile the test program--assuming it can't)"
10228         castflags=7
10229 fi
10230 case "$castflags" in
10231 0)      val="$define"
10232         echo "Yup, it can."
10233         ;;
10234 *)      val="$undef"
10235         echo "Nope, it can't."
10236         ;;
10237 esac
10238 set d_castneg
10239 eval $setvar
10240 $rm -f try.*
10241
10242 : see if vprintf exists
10243 echo " "
10244 if set vprintf val -f d_vprintf; eval $csym; $val; then
10245         echo 'vprintf() found.' >&4
10246         val="$define"
10247         $cat >try.c <<EOF
10248 #include <varargs.h>
10249 #$i_stdlib I_STDLIB
10250 #ifdef I_STDLIB
10251 #include <stdlib.h>
10252 #endif
10253
10254 int main() { xxx("foo"); }
10255
10256 xxx(va_alist)
10257 va_dcl
10258 {
10259         va_list args;
10260         char buf[10];
10261
10262         va_start(args);
10263         exit((unsigned long)vsprintf(buf,"%s",args) > 10L);
10264 }
10265 EOF
10266         set try
10267         if eval $compile && $run ./try; then
10268                 echo "Your vsprintf() returns (int)." >&4
10269                 val2="$undef"
10270         else
10271                 echo "Your vsprintf() returns (char*)." >&4
10272                 val2="$define"
10273         fi
10274 else
10275         echo 'vprintf() NOT found.' >&4
10276                 val="$undef"
10277                 val2="$undef"
10278 fi
10279 $rm -f try try.*
10280 set d_vprintf
10281 eval $setvar
10282 val=$val2
10283 set d_charvspr
10284 eval $setvar
10285
10286 : see if chown exists
10287 set chown d_chown
10288 eval $inlibc
10289
10290 : see if chroot exists
10291 set chroot d_chroot
10292 eval $inlibc
10293
10294 : see if chsize exists
10295 set chsize d_chsize
10296 eval $inlibc
10297
10298 : see if class exists
10299 set class d_class
10300 eval $inlibc
10301
10302 hasstruct='varname=$1; struct=$2; shift; shift;
10303 while $test $# -ge 2; do
10304         case "$1" in
10305         $define) echo "#include <$2>";;
10306         esac ;
10307     shift 2;
10308 done > try.c;
10309 echo "int main () { struct $struct foo; }" >> try.c;
10310 set try;
10311 if eval $compile; then
10312         val="$define";
10313 else
10314         val="$undef";
10315 fi;
10316 set $varname;
10317 eval $setvar;
10318 $rm -f try.c try.o'
10319
10320 socketlib=''
10321 sockethdr=''
10322 : see whether socket exists
10323 echo " "
10324 $echo $n "Hmm... $c" >&4
10325 if set socket val -f d_socket; eval $csym; $val; then
10326         echo "Looks like you have Berkeley networking support." >&4
10327         d_socket="$define"
10328         if set setsockopt val -f; eval $csym; $val; then
10329                 d_oldsock="$undef"
10330         else
10331                 echo "...but it uses the old BSD 4.1c interface, rather than 4.2." >&4
10332                 d_oldsock="$define"
10333         fi
10334 else
10335         if $contains socklib libc.list >/dev/null 2>&1; then
10336                 echo "Looks like you have Berkeley networking support." >&4
10337                 d_socket="$define"
10338                 : we will have to assume that it supports the 4.2 BSD interface
10339                 d_oldsock="$undef"
10340         else
10341                 echo "You don't have Berkeley networking in libc$_a..." >&4
10342                 if test "X$d_socket" = "X$define"; then
10343                    echo "...but you seem to believe that you have sockets." >&4
10344                 else
10345                         for net in net socket
10346                         do
10347                                 if test -f /usr/lib/lib$net$_a; then
10348                                         ( ($nm $nm_opt /usr/lib/lib$net$_a | eval $nm_extract) ||  \
10349                                         $ar t /usr/lib/lib$net$_a) 2>/dev/null >> libc.list
10350                                         if $contains socket libc.list >/dev/null 2>&1; then
10351                                                 d_socket="$define"
10352                                                 socketlib="-l$net"
10353                                                 case "$net" in
10354                                                 net)
10355                                                         echo "...but the Wollongong group seems to have hacked it in." >&4
10356                                                         sockethdr="-I/usr/netinclude"
10357                                                         ;;
10358                                                 esac
10359                                                 echo "Found Berkeley sockets interface in lib$net." >&4 
10360                                                 if $contains setsockopt libc.list >/dev/null 2>&1; then
10361                                                         d_oldsock="$undef"
10362                                                 else
10363                                                         echo "...using the old BSD 4.1c interface, rather than 4.2." >&4
10364                                                         d_oldsock="$define"
10365                                                 fi
10366                                                 break
10367                                         fi
10368                                 fi
10369                         done
10370                         if test "X$d_socket" != "X$define"; then
10371                            echo "or anywhere else I see." >&4
10372                            d_socket="$undef"
10373                            d_oldsock="$undef"
10374                         fi
10375                 fi
10376         fi
10377 fi
10378
10379 : see if socketpair exists
10380 set socketpair d_sockpair
10381 eval $inlibc
10382
10383
10384 echo " "
10385 echo "Checking the availability of certain socket constants..." >&4
10386 for ENUM in MSG_CTRUNC MSG_DONTROUTE MSG_OOB MSG_PEEK MSG_PROXY SCM_RIGHTS; do
10387         enum=`$echo $ENUM|./tr '[A-Z]' '[a-z]'`
10388         $cat >try.c <<EOF
10389 #include <sys/types.h>
10390 #include <sys/socket.h>
10391 int main() {
10392     int i = $ENUM;
10393 }
10394 EOF
10395         val="$undef"
10396         set try; if eval $compile; then
10397                 val="$define"
10398         fi
10399         set d_${enum}; eval $setvar
10400         $rm -f try.c try
10401 done
10402
10403 : see if this is a sys/uio.h system
10404 set sys/uio.h i_sysuio
10405 eval $inhdr
10406
10407
10408 echo " "
10409 echo "Checking to see if your system supports struct cmsghdr..." >&4
10410 set d_cmsghdr_s cmsghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
10411 eval $hasstruct
10412 case "$d_cmsghdr_s" in
10413 "$define")      echo "Yes, it does."   ;;
10414 *)              echo "No, it doesn't." ;;
10415 esac
10416
10417
10418 : check for const keyword
10419 echo " "
10420 echo 'Checking to see if your C compiler knows about "const"...' >&4
10421 $cat >const.c <<'EOCP'
10422 typedef struct spug { int drokk; } spug;
10423 int main()
10424 {
10425         const char *foo;
10426         const spug y;
10427 }
10428 EOCP
10429 if $cc -c $ccflags const.c >/dev/null 2>&1 ; then
10430         val="$define"
10431         echo "Yup, it does."
10432 else
10433         val="$undef"
10434         echo "Nope, it doesn't."
10435 fi
10436 set d_const
10437 eval $setvar
10438
10439 : see if copysignl exists
10440 set copysignl d_copysignl
10441 eval $inlibc
10442
10443 : see if crypt exists
10444 echo " "
10445 set crypt d_crypt
10446 eval $inlibc
10447 case "$d_crypt" in
10448 $define) cryptlib='' ;;
10449 *)      if set crypt val -f d_crypt; eval $csym; $val; then
10450                 echo 'crypt() found.' >&4
10451                 val="$define"
10452                 cryptlib=''
10453         else
10454                 cryptlib=`./loc Slibcrypt$_a "" $xlibpth`
10455                 if $test -z "$cryptlib"; then
10456                         cryptlib=`./loc Mlibcrypt$_a "" $xlibpth`
10457                 else
10458                         cryptlib=-lcrypt
10459                 fi
10460                 if $test -z "$cryptlib"; then
10461                         cryptlib=`./loc Llibcrypt$_a "" $xlibpth`
10462                 else
10463                         cryptlib=-lcrypt
10464                 fi
10465                 if $test -z "$cryptlib"; then
10466                         cryptlib=`./loc libcrypt$_a "" $libpth`
10467                 else
10468                         cryptlib=-lcrypt
10469                 fi
10470                 if $test -z "$cryptlib"; then
10471                         echo 'crypt() NOT found.' >&4
10472                         val="$undef"
10473                 else
10474                         val="$define"
10475                 fi
10476         fi
10477         set d_crypt
10478         eval $setvar
10479         ;;
10480 esac
10481
10482 : see if this is a crypt.h system
10483 set crypt.h i_crypt
10484 eval $inhdr
10485
10486 : see if crypt_r exists
10487 set crypt_r d_crypt_r
10488 eval $inlibc
10489 case "$d_crypt_r" in
10490 "$define")
10491         hdrs="$i_systypes sys/types.h define stdio.h $i_crypt crypt.h"
10492         case "$d_crypt_r_proto:$usethreads" in
10493         ":define")      d_crypt_r_proto=define
10494                 set d_crypt_r_proto crypt_r $hdrs
10495                 eval $hasproto ;;
10496         *)      ;;
10497         esac
10498         case "$d_crypt_r_proto" in
10499         define)
10500         case "$crypt_r_proto" in
10501         ''|0) try='char* crypt_r(const char*, const char*, struct crypt_data*);'
10502         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCS ;;
10503         esac
10504         case "$crypt_r_proto" in
10505         ''|0) try='char* crypt_r(const char*, const char*, CRYPTD*);'
10506         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCD ;;
10507         esac
10508         case "$crypt_r_proto" in
10509         ''|0)   d_crypt_r=undef
10510                 crypt_r_proto=0
10511                 echo "Disabling crypt_r, cannot determine prototype." >&4 ;;
10512         * )     case "$crypt_r_proto" in
10513                 REENTRANT_PROTO*) ;;
10514                 *) crypt_r_proto="REENTRANT_PROTO_$crypt_r_proto" ;;
10515                 esac
10516                 echo "Prototype: $try" ;;
10517         esac
10518         ;;
10519         *)      case "$usethreads" in
10520                 define) echo "crypt_r has no prototype, not using it." >&4 ;;
10521                 esac
10522                 d_crypt_r=undef
10523                 crypt_r_proto=0
10524                 ;;
10525         esac
10526         ;;
10527 *)      crypt_r_proto=0
10528         ;;
10529 esac
10530
10531 : get csh whereabouts
10532 case "$csh" in
10533 'csh') val="$undef" ;;
10534 *) val="$define" ;;
10535 esac
10536 set d_csh
10537 eval $setvar
10538 : Respect a hint or command line value for full_csh.
10539 case "$full_csh" in
10540 '') full_csh=$csh ;;
10541 esac
10542
10543 : see if ctermid_r exists
10544 set ctermid_r d_ctermid_r
10545 eval $inlibc
10546 case "$d_ctermid_r" in
10547 "$define")
10548         hdrs="$i_systypes sys/types.h define stdio.h "
10549         case "$d_ctermid_r_proto:$usethreads" in
10550         ":define")      d_ctermid_r_proto=define
10551                 set d_ctermid_r_proto ctermid_r $hdrs
10552                 eval $hasproto ;;
10553         *)      ;;
10554         esac
10555         case "$d_ctermid_r_proto" in
10556         define)
10557         case "$ctermid_r_proto" in
10558         ''|0) try='char* ctermid_r(char*);'
10559         ./protochk "extern $try" $hdrs && ctermid_r_proto=B_B ;;
10560         esac
10561         case "$ctermid_r_proto" in
10562         ''|0)   d_ctermid_r=undef
10563                 ctermid_r_proto=0
10564                 echo "Disabling ctermid_r, cannot determine prototype." >&4 ;;
10565         * )     case "$ctermid_r_proto" in
10566                 REENTRANT_PROTO*) ;;
10567                 *) ctermid_r_proto="REENTRANT_PROTO_$ctermid_r_proto" ;;
10568                 esac
10569                 echo "Prototype: $try" ;;
10570         esac
10571         ;;
10572         *)      case "$usethreads" in
10573                 define) echo "ctermid_r has no prototype, not using it." >&4 ;;
10574                 esac
10575                 d_ctermid_r=undef
10576                 ctermid_r_proto=0
10577                 ;;
10578         esac
10579         ;;
10580 *)      ctermid_r_proto=0
10581         ;;
10582 esac
10583
10584 : see if ctime_r exists
10585 set ctime_r d_ctime_r
10586 eval $inlibc
10587 case "$d_ctime_r" in
10588 "$define")
10589         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
10590         case "$d_ctime_r_proto:$usethreads" in
10591         ":define")      d_ctime_r_proto=define
10592                 set d_ctime_r_proto ctime_r $hdrs
10593                 eval $hasproto ;;
10594         *)      ;;
10595         esac
10596         case "$d_ctime_r_proto" in
10597         define)
10598         case "$ctime_r_proto" in
10599         ''|0) try='char* ctime_r(const time_t*, char*);'
10600         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SB ;;
10601         esac
10602         case "$ctime_r_proto" in
10603         ''|0) try='char* ctime_r(const time_t*, char*, int);'
10604         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SBI ;;
10605         esac
10606         case "$ctime_r_proto" in
10607         ''|0) try='int ctime_r(const time_t*, char*);'
10608         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SB ;;
10609         esac
10610         case "$ctime_r_proto" in
10611         ''|0) try='int ctime_r(const time_t*, char*, int);'
10612         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SBI ;;
10613         esac
10614         case "$ctime_r_proto" in
10615         ''|0)   d_ctime_r=undef
10616                 ctime_r_proto=0
10617                 echo "Disabling ctime_r, cannot determine prototype." >&4 ;;
10618         * )     case "$ctime_r_proto" in
10619                 REENTRANT_PROTO*) ;;
10620                 *) ctime_r_proto="REENTRANT_PROTO_$ctime_r_proto" ;;
10621                 esac
10622                 echo "Prototype: $try" ;;
10623         esac
10624         ;;
10625         *)      case "$usethreads" in
10626                 define) echo "ctime_r has no prototype, not using it." >&4 ;;
10627                 esac
10628                 d_ctime_r=undef
10629                 ctime_r_proto=0
10630                 ;;
10631         esac
10632         ;;
10633 *)      ctime_r_proto=0
10634         ;;
10635 esac
10636
10637 : see if cuserid exists
10638 set cuserid d_cuserid
10639 eval $inlibc
10640
10641 : see if this is a limits.h system
10642 set limits.h i_limits
10643 eval $inhdr
10644
10645 : see if this is a float.h system
10646 set float.h i_float
10647 eval $inhdr
10648
10649 : See if number of significant digits in a double precision number is known
10650 echo " "
10651 $cat >dbl_dig.c <<EOM
10652 #$i_limits I_LIMITS
10653 #$i_float I_FLOAT
10654 #ifdef I_LIMITS
10655 #include <limits.h>
10656 #endif
10657 #ifdef I_FLOAT
10658 #include <float.h>
10659 #endif
10660 #ifdef DBL_DIG
10661 printf("Contains DBL_DIG");
10662 #endif
10663 EOM
10664 $cppstdin $cppflags $cppminus < dbl_dig.c >dbl_dig.E 2>/dev/null
10665 if $contains 'DBL_DIG' dbl_dig.E >/dev/null 2>&1; then
10666         echo "DBL_DIG found." >&4
10667         val="$define"
10668 else
10669         echo "DBL_DIG NOT found." >&4
10670         val="$undef"
10671 fi
10672 $rm -f dbl_dig.?
10673 set d_dbl_dig
10674 eval $setvar
10675
10676 : see if dbm.h is available
10677 : see if dbmclose exists
10678 set dbmclose d_dbmclose
10679 eval $inlibc
10680
10681 case "$d_dbmclose" in
10682 $define)
10683         set dbm.h i_dbm
10684         eval $inhdr
10685         case "$i_dbm" in
10686         $define)
10687                 val="$undef"
10688                 set i_rpcsvcdbm
10689                 eval $setvar
10690                 ;;
10691         *)      set rpcsvc/dbm.h i_rpcsvcdbm
10692                 eval $inhdr
10693                 ;;
10694         esac
10695         ;;
10696 *)      echo "We won't be including <dbm.h>"
10697         val="$undef"
10698         set i_dbm
10699         eval $setvar
10700         val="$undef"
10701         set i_rpcsvcdbm
10702         eval $setvar
10703         ;;
10704 esac
10705
10706 : see if prototype for dbminit is available
10707 echo " "
10708 set d_dbminitproto dbminit $i_dbm dbm.h
10709 eval $hasproto
10710
10711 : see if difftime exists
10712 set difftime d_difftime
10713 eval $inlibc
10714
10715 : see if this is a dirent system
10716 echo " "
10717 if xinc=`./findhdr dirent.h`; $test "$xinc"; then
10718         val="$define"
10719         echo "<dirent.h> found." >&4
10720 else
10721         val="$undef"
10722         if xinc=`./findhdr sys/dir.h`; $test "$xinc"; then
10723                 echo "<sys/dir.h> found." >&4
10724                 echo " "
10725         else
10726                 xinc=`./findhdr sys/ndir.h`
10727         fi
10728         echo "<dirent.h> NOT found." >&4
10729 fi
10730 set i_dirent
10731 eval $setvar
10732
10733 : Look for type of directory structure.
10734 echo " "
10735 $cppstdin $cppflags $cppminus < "$xinc" > try.c
10736
10737 case "$direntrytype" in
10738 ''|' ')
10739         case "$i_dirent" in
10740         $define) guess1='struct dirent' ;;
10741         *) guess1='struct direct'  ;;
10742         esac
10743         ;;
10744 *)      guess1="$direntrytype"
10745         ;;
10746 esac
10747
10748 case "$guess1" in
10749 'struct dirent') guess2='struct direct' ;;
10750 *) guess2='struct dirent' ;;
10751 esac
10752                 
10753 if $contains "$guess1" try.c >/dev/null 2>&1; then
10754         direntrytype="$guess1"
10755         echo "Your directory entries are $direntrytype." >&4
10756 elif $contains "$guess2" try.c >/dev/null 2>&1; then
10757         direntrytype="$guess2"
10758         echo "Your directory entries seem to be $direntrytype." >&4
10759 else
10760         echo "I don't recognize your system's directory entries." >&4
10761         rp="What type is used for directory entries on this system?"
10762         dflt="$guess1"
10763         . ./myread
10764         direntrytype="$ans"
10765 fi
10766 $rm -f try.c
10767
10768
10769 : see if the directory entry stores field length
10770 echo " "
10771 $cppstdin $cppflags $cppminus < "$xinc" > try.c
10772 if $contains 'd_namlen' try.c >/dev/null 2>&1; then
10773         echo "Good, your directory entry keeps length information in d_namlen." >&4
10774         val="$define"
10775 else
10776         echo "Your directory entry does not know about the d_namlen field." >&4
10777         val="$undef"
10778 fi
10779 set d_dirnamlen
10780 eval $setvar
10781 $rm -f try.c
10782
10783 : see if this is an sysdir system
10784 set sys/dir.h i_sysdir
10785 eval $inhdr
10786
10787 : see if this is an sysndir system
10788 set sys/ndir.h i_sysndir
10789 eval $inhdr
10790
10791 : Look for dirfd
10792 echo " "
10793 $cat >dirfd.c <<EOM
10794 #include <stdio.h>
10795 #$i_stdlib I_STDLIB
10796 #ifdef I_STDLIB
10797 #include <stdlib.h>
10798 #endif
10799 #$i_dirent I_DIRENT             /**/
10800 #$i_sysdir I_SYS_DIR            /**/
10801 #$i_sysndir I_SYS_NDIR          /**/
10802 #$i_systypes I_SYS_TYPES        /**/
10803 #if defined(I_SYS_TYPES)
10804 #include <sys/types.h>
10805 #endif
10806 #if defined(I_DIRENT)
10807 #include <dirent.h>
10808 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
10809 #include <sys/dir.h>
10810 #endif
10811 #else
10812 #ifdef I_SYS_NDIR
10813 #include <sys/ndir.h>
10814 #else
10815 #ifdef I_SYS_DIR
10816 #ifdef hp9000s500
10817 #include <ndir.h>       /* may be wrong in the future */
10818 #else
10819 #include <sys/dir.h>
10820 #endif
10821 #endif
10822 #endif
10823 #endif 
10824 int main() {
10825         DIR *dirp = opendir(".");
10826         if (dirfd(dirp) >= 0)
10827                 exit(0);
10828         else
10829                 exit(1);
10830 }
10831 EOM
10832 set dirfd
10833 if eval $compile; then
10834         val="$define"
10835 fi
10836 case "$val" in
10837 $define)        echo "dirfd() found." >&4       ;;
10838 *)              echo "dirfd() NOT found." >&4   ;;
10839 esac
10840 set d_dirfd
10841 eval $setvar
10842 $rm -f dirfd*
10843
10844 : see if dlerror exists
10845 xxx_runnm="$runnm"
10846 runnm=false
10847 set dlerror d_dlerror
10848 eval $inlibc
10849 runnm="$xxx_runnm"
10850
10851 : see if dlfcn is available
10852 set dlfcn.h i_dlfcn
10853 eval $inhdr
10854
10855 case "$usedl" in
10856 $define|y|true)
10857         $cat << EOM
10858
10859 On a few systems, the dynamically loaded modules that perl generates and uses
10860 will need a different extension than shared libs. The default will probably
10861 be appropriate.
10862
10863 EOM
10864         case "$dlext" in
10865         '')     dflt="$so" ;;
10866         *)      dflt="$dlext" ;;
10867         esac
10868         rp='What is the extension of dynamically loaded modules'
10869         . ./myread
10870         dlext="$ans"
10871         ;;
10872 *)
10873         dlext="none"
10874         ;;
10875 esac
10876
10877 : Check if dlsym need a leading underscore
10878 echo " "
10879 val="$undef"
10880
10881 case "$dlsrc" in
10882 dl_dlopen.xs)
10883         echo "Checking whether your dlsym() needs a leading underscore ..." >&4
10884         $cat >dyna.c <<'EOM'
10885 fred () { }
10886 EOM
10887
10888 $cat >fred.c<<EOM
10889
10890 #include <stdio.h>
10891 #$i_stdlib I_STDLIB
10892 #ifdef I_STDLIB
10893 #include <stdlib.h>
10894 #endif
10895 #$i_dlfcn I_DLFCN
10896 #ifdef I_DLFCN
10897 #include <dlfcn.h>      /* the dynamic linker include file for SunOS/Solaris */
10898 #else
10899 #include <sys/types.h>
10900 #include <nlist.h>
10901 #include <link.h>
10902 #endif
10903
10904 extern int fred() ;
10905
10906 int main()
10907 {
10908     void * handle ;
10909     void * symbol ;
10910 #ifndef RTLD_LAZY
10911     int mode = 1 ;
10912 #else
10913     int mode = RTLD_LAZY ;
10914 #endif
10915     handle = dlopen("./dyna.$dlext", mode) ;
10916     if (handle == NULL) {
10917         printf ("1\n") ;
10918         fflush (stdout) ;
10919         exit(0);
10920     }
10921     symbol = dlsym(handle, "fred") ;
10922     if (symbol == NULL) {
10923         /* try putting a leading underscore */
10924         symbol = dlsym(handle, "_fred") ;
10925         if (symbol == NULL) {
10926             printf ("2\n") ;
10927             fflush (stdout) ;
10928             exit(0);
10929         }
10930         printf ("3\n") ;
10931     }
10932     else
10933         printf ("4\n") ;
10934     fflush (stdout) ;
10935     exit(0);
10936 }
10937 EOM
10938         : Call the object file tmp-dyna.o in case dlext=o.
10939         if $cc $ccflags $cccdlflags -c dyna.c > /dev/null 2>&1 && 
10940                 mv dyna${_o} tmp-dyna${_o} > /dev/null 2>&1 && 
10941                 $ld -o dyna.$dlext $ldflags $lddlflags tmp-dyna${_o} > /dev/null 2>&1 && 
10942                 $cc -o fred $ccflags $ldflags $cccdlflags $ccdlflags fred.c $libs > /dev/null 2>&1 && $to dyna.$dlext; then
10943                 xxx=`$run ./fred`
10944                 case $xxx in
10945                 1)      echo "Test program failed using dlopen." >&4
10946                         echo "Perhaps you should not use dynamic loading." >&4;;
10947                 2)      echo "Test program failed using dlsym." >&4
10948                         echo "Perhaps you should not use dynamic loading." >&4;;
10949                 3)      echo "dlsym needs a leading underscore" >&4
10950                         val="$define" ;;
10951                 4)      echo "dlsym doesn't need a leading underscore." >&4;;
10952                 esac
10953         else
10954                 echo "I can't compile and run the test program." >&4
10955                 echo "I'm guessing that dlsym doesn't need a leading underscore." >&4
10956         fi
10957         ;;
10958 esac
10959                 
10960 $rm -f fred fred.* dyna.$dlext dyna.* tmp-dyna.*
10961
10962 set d_dlsymun
10963 eval $setvar
10964
10965 : see if drand48_r exists
10966 set drand48_r d_drand48_r
10967 eval $inlibc
10968 case "$d_drand48_r" in
10969 "$define")
10970         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
10971         case "$d_drand48_r_proto:$usethreads" in
10972         ":define")      d_drand48_r_proto=define
10973                 set d_drand48_r_proto drand48_r $hdrs
10974                 eval $hasproto ;;
10975         *)      ;;
10976         esac
10977         case "$d_drand48_r_proto" in
10978         define)
10979         case "$drand48_r_proto" in
10980         ''|0) try='int drand48_r(struct drand48_data*, double*);'
10981         ./protochk "extern $try" $hdrs && drand48_r_proto=I_ST ;;
10982         esac
10983         case "$drand48_r_proto" in
10984         ''|0)   d_drand48_r=undef
10985                 drand48_r_proto=0
10986                 echo "Disabling drand48_r, cannot determine prototype." >&4 ;;
10987         * )     case "$drand48_r_proto" in
10988                 REENTRANT_PROTO*) ;;
10989                 *) drand48_r_proto="REENTRANT_PROTO_$drand48_r_proto" ;;
10990                 esac
10991                 echo "Prototype: $try" ;;
10992         esac
10993         ;;
10994         *)      case "$usethreads" in
10995                 define) echo "drand48_r has no prototype, not using it." >&4 ;;
10996                 esac
10997                 d_drand48_r=undef
10998                 drand48_r_proto=0
10999                 ;;
11000         esac
11001         ;;
11002 *)      drand48_r_proto=0
11003         ;;
11004 esac
11005
11006 : see if prototype for drand48 is available
11007 echo " "
11008 set d_drand48proto drand48 $i_stdlib stdlib.h $i_unistd unistd.h
11009 eval $hasproto
11010
11011 : see if dup2 exists
11012 set dup2 d_dup2
11013 eval $inlibc
11014
11015 : see if eaccess exists
11016 set eaccess d_eaccess
11017 eval $inlibc
11018
11019 : see if endgrent exists
11020 set endgrent d_endgrent
11021 eval $inlibc
11022
11023 : see if this is an grp system
11024 set grp.h i_grp
11025 eval $inhdr
11026
11027 case "$i_grp" in
11028 $define)
11029         xxx=`./findhdr grp.h`
11030         $cppstdin $cppflags $cppminus < $xxx >$$.h
11031
11032         if $contains 'gr_passwd' $$.h >/dev/null 2>&1; then
11033                 val="$define"
11034         else
11035                 val="$undef"
11036         fi
11037         set d_grpasswd
11038         eval $setvar
11039
11040         $rm -f $$.h
11041         ;;
11042 *)
11043         val="$undef";
11044         set d_grpasswd; eval $setvar
11045         ;;
11046 esac
11047
11048 : see if endgrent_r exists
11049 set endgrent_r d_endgrent_r
11050 eval $inlibc
11051 case "$d_endgrent_r" in
11052 "$define")
11053         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
11054         case "$d_endgrent_r_proto:$usethreads" in
11055         ":define")      d_endgrent_r_proto=define
11056                 set d_endgrent_r_proto endgrent_r $hdrs
11057                 eval $hasproto ;;
11058         *)      ;;
11059         esac
11060         case "$d_endgrent_r_proto" in
11061         define)
11062         case "$endgrent_r_proto" in
11063         ''|0) try='int endgrent_r(FILE**);'
11064         ./protochk "extern $try" $hdrs && endgrent_r_proto=I_H ;;
11065         esac
11066         case "$endgrent_r_proto" in
11067         ''|0) try='void endgrent_r(FILE**);'
11068         ./protochk "extern $try" $hdrs && endgrent_r_proto=V_H ;;
11069         esac
11070         case "$endgrent_r_proto" in
11071         ''|0)   d_endgrent_r=undef
11072                 endgrent_r_proto=0
11073                 echo "Disabling endgrent_r, cannot determine prototype." >&4 ;;
11074         * )     case "$endgrent_r_proto" in
11075                 REENTRANT_PROTO*) ;;
11076                 *) endgrent_r_proto="REENTRANT_PROTO_$endgrent_r_proto" ;;
11077                 esac
11078                 echo "Prototype: $try" ;;
11079         esac
11080         ;;
11081         *)      case "$usethreads" in
11082                 define) echo "endgrent_r has no prototype, not using it." >&4 ;;
11083                 esac
11084                 d_endgrent_r=undef
11085                 endgrent_r_proto=0
11086                 ;;
11087         esac
11088         ;;
11089 *)      endgrent_r_proto=0
11090         ;;
11091 esac
11092
11093 : see if endhostent exists
11094 set endhostent d_endhent
11095 eval $inlibc
11096
11097 : see if this is a netdb.h system
11098 set netdb.h i_netdb
11099 eval $inhdr
11100
11101 : see if endhostent_r exists
11102 set endhostent_r d_endhostent_r
11103 eval $inlibc
11104 case "$d_endhostent_r" in
11105 "$define")
11106         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11107         case "$d_endhostent_r_proto:$usethreads" in
11108         ":define")      d_endhostent_r_proto=define
11109                 set d_endhostent_r_proto endhostent_r $hdrs
11110                 eval $hasproto ;;
11111         *)      ;;
11112         esac
11113         case "$d_endhostent_r_proto" in
11114         define)
11115         case "$endhostent_r_proto" in
11116         ''|0) try='int endhostent_r(struct hostent_data*);'
11117         ./protochk "extern $try" $hdrs && endhostent_r_proto=I_D ;;
11118         esac
11119         case "$endhostent_r_proto" in
11120         ''|0) try='void endhostent_r(struct hostent_data*);'
11121         ./protochk "extern $try" $hdrs && endhostent_r_proto=V_D ;;
11122         esac
11123         case "$endhostent_r_proto" in
11124         ''|0)   d_endhostent_r=undef
11125                 endhostent_r_proto=0
11126                 echo "Disabling endhostent_r, cannot determine prototype." >&4 ;;
11127         * )     case "$endhostent_r_proto" in
11128                 REENTRANT_PROTO*) ;;
11129                 *) endhostent_r_proto="REENTRANT_PROTO_$endhostent_r_proto" ;;
11130                 esac
11131                 echo "Prototype: $try" ;;
11132         esac
11133         ;;
11134         *)      case "$usethreads" in
11135                 define) echo "endhostent_r has no prototype, not using it." >&4 ;;
11136                 esac
11137                 d_endhostent_r=undef
11138                 endhostent_r_proto=0
11139                 ;;
11140         esac
11141         ;;
11142 *)      endhostent_r_proto=0
11143         ;;
11144 esac
11145
11146 : see if endnetent exists
11147 set endnetent d_endnent
11148 eval $inlibc
11149
11150 : see if endnetent_r exists
11151 set endnetent_r d_endnetent_r
11152 eval $inlibc
11153 case "$d_endnetent_r" in
11154 "$define")
11155         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11156         case "$d_endnetent_r_proto:$usethreads" in
11157         ":define")      d_endnetent_r_proto=define
11158                 set d_endnetent_r_proto endnetent_r $hdrs
11159                 eval $hasproto ;;
11160         *)      ;;
11161         esac
11162         case "$d_endnetent_r_proto" in
11163         define)
11164         case "$endnetent_r_proto" in
11165         ''|0) try='int endnetent_r(struct netent_data*);'
11166         ./protochk "extern $try" $hdrs && endnetent_r_proto=I_D ;;
11167         esac
11168         case "$endnetent_r_proto" in
11169         ''|0) try='void endnetent_r(struct netent_data*);'
11170         ./protochk "extern $try" $hdrs && endnetent_r_proto=V_D ;;
11171         esac
11172         case "$endnetent_r_proto" in
11173         ''|0)   d_endnetent_r=undef
11174                 endnetent_r_proto=0
11175                 echo "Disabling endnetent_r, cannot determine prototype." >&4 ;;
11176         * )     case "$endnetent_r_proto" in
11177                 REENTRANT_PROTO*) ;;
11178                 *) endnetent_r_proto="REENTRANT_PROTO_$endnetent_r_proto" ;;
11179                 esac
11180                 echo "Prototype: $try" ;;
11181         esac
11182         ;;
11183         *)      case "$usethreads" in
11184                 define) echo "endnetent_r has no prototype, not using it." >&4 ;;
11185                 esac
11186                 d_endnetent_r=undef
11187                 endnetent_r_proto=0
11188                 ;;
11189         esac
11190         ;;
11191 *)      endnetent_r_proto=0
11192         ;;
11193 esac
11194
11195 : see if endprotoent exists
11196 set endprotoent d_endpent
11197 eval $inlibc
11198
11199 : see if endprotoent_r exists
11200 set endprotoent_r d_endprotoent_r
11201 eval $inlibc
11202 case "$d_endprotoent_r" in
11203 "$define")
11204         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11205         case "$d_endprotoent_r_proto:$usethreads" in
11206         ":define")      d_endprotoent_r_proto=define
11207                 set d_endprotoent_r_proto endprotoent_r $hdrs
11208                 eval $hasproto ;;
11209         *)      ;;
11210         esac
11211         case "$d_endprotoent_r_proto" in
11212         define)
11213         case "$endprotoent_r_proto" in
11214         ''|0) try='int endprotoent_r(struct protoent_data*);'
11215         ./protochk "extern $try" $hdrs && endprotoent_r_proto=I_D ;;
11216         esac
11217         case "$endprotoent_r_proto" in
11218         ''|0) try='void endprotoent_r(struct protoent_data*);'
11219         ./protochk "extern $try" $hdrs && endprotoent_r_proto=V_D ;;
11220         esac
11221         case "$endprotoent_r_proto" in
11222         ''|0)   d_endprotoent_r=undef
11223                 endprotoent_r_proto=0
11224                 echo "Disabling endprotoent_r, cannot determine prototype." >&4 ;;
11225         * )     case "$endprotoent_r_proto" in
11226                 REENTRANT_PROTO*) ;;
11227                 *) endprotoent_r_proto="REENTRANT_PROTO_$endprotoent_r_proto" ;;
11228                 esac
11229                 echo "Prototype: $try" ;;
11230         esac
11231         ;;
11232         *)      case "$usethreads" in
11233                 define) echo "endprotoent_r has no prototype, not using it." >&4 ;;
11234                 esac
11235                 d_endprotoent_r=undef
11236                 endprotoent_r_proto=0
11237                 ;;
11238         esac
11239         ;;
11240 *)      endprotoent_r_proto=0
11241         ;;
11242 esac
11243
11244 : see if endpwent exists
11245 set endpwent d_endpwent
11246 eval $inlibc
11247
11248 : see if this is a pwd.h system
11249 set pwd.h i_pwd
11250 eval $inhdr
11251
11252 case "$i_pwd" in
11253 $define)
11254         xxx=`./findhdr pwd.h`
11255         $cppstdin $cppflags $cppminus < $xxx >$$.h
11256
11257         if $contains 'pw_quota' $$.h >/dev/null 2>&1; then
11258                 val="$define"
11259         else
11260                 val="$undef"
11261         fi
11262         set d_pwquota
11263         eval $setvar
11264
11265         if $contains 'pw_age' $$.h >/dev/null 2>&1; then
11266                 val="$define"
11267         else
11268                 val="$undef"
11269         fi
11270         set d_pwage
11271         eval $setvar
11272
11273         if $contains 'pw_change' $$.h >/dev/null 2>&1; then
11274                 val="$define"
11275         else
11276                 val="$undef"
11277         fi
11278         set d_pwchange
11279         eval $setvar
11280
11281         if $contains 'pw_class' $$.h >/dev/null 2>&1; then
11282                 val="$define"
11283         else
11284                 val="$undef"
11285         fi
11286         set d_pwclass
11287         eval $setvar
11288
11289         if $contains 'pw_expire' $$.h >/dev/null 2>&1; then
11290                 val="$define"
11291         else
11292                 val="$undef"
11293         fi
11294         set d_pwexpire
11295         eval $setvar
11296
11297         if $contains 'pw_comment' $$.h >/dev/null 2>&1; then
11298                 val="$define"
11299         else
11300                 val="$undef"
11301         fi
11302         set d_pwcomment
11303         eval $setvar
11304
11305         if $contains 'pw_gecos' $$.h >/dev/null 2>&1; then
11306                 val="$define"
11307         else
11308                 val="$undef"
11309         fi
11310         set d_pwgecos
11311         eval $setvar
11312
11313         if $contains 'pw_passwd' $$.h >/dev/null 2>&1; then
11314                 val="$define"
11315         else
11316                 val="$undef"
11317         fi
11318         set d_pwpasswd
11319         eval $setvar
11320
11321         $rm -f $$.h
11322         ;;
11323 *)
11324         val="$undef"; 
11325         set d_pwquota; eval $setvar
11326         set d_pwage; eval $setvar
11327         set d_pwchange; eval $setvar
11328         set d_pwclass; eval $setvar
11329         set d_pwexpire; eval $setvar
11330         set d_pwcomment; eval $setvar
11331         set d_pwgecos; eval $setvar
11332         set d_pwpasswd; eval $setvar
11333         ;;
11334 esac
11335
11336 : see if endpwent_r exists
11337 set endpwent_r d_endpwent_r
11338 eval $inlibc
11339 case "$d_endpwent_r" in
11340 "$define")
11341         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
11342         case "$d_endpwent_r_proto:$usethreads" in
11343         ":define")      d_endpwent_r_proto=define
11344                 set d_endpwent_r_proto endpwent_r $hdrs
11345                 eval $hasproto ;;
11346         *)      ;;
11347         esac
11348         case "$d_endpwent_r_proto" in
11349         define)
11350         case "$endpwent_r_proto" in
11351         ''|0) try='int endpwent_r(FILE**);'
11352         ./protochk "extern $try" $hdrs && endpwent_r_proto=I_H ;;
11353         esac
11354         case "$endpwent_r_proto" in
11355         ''|0) try='void endpwent_r(FILE**);'
11356         ./protochk "extern $try" $hdrs && endpwent_r_proto=V_H ;;
11357         esac
11358         case "$endpwent_r_proto" in
11359         ''|0)   d_endpwent_r=undef
11360                 endpwent_r_proto=0
11361                 echo "Disabling endpwent_r, cannot determine prototype." >&4 ;;
11362         * )     case "$endpwent_r_proto" in
11363                 REENTRANT_PROTO*) ;;
11364                 *) endpwent_r_proto="REENTRANT_PROTO_$endpwent_r_proto" ;;
11365                 esac
11366                 echo "Prototype: $try" ;;
11367         esac
11368         ;;
11369         *)      case "$usethreads" in
11370                 define) echo "endpwent_r has no prototype, not using it." >&4 ;;
11371                 esac
11372                 d_endpwent_r=undef
11373                 endpwent_r_proto=0
11374                 ;;
11375         esac
11376         ;;
11377 *)      endpwent_r_proto=0
11378         ;;
11379 esac
11380
11381 : see if endservent exists
11382 set endservent d_endsent
11383 eval $inlibc
11384
11385 : see if endservent_r exists
11386 set endservent_r d_endservent_r
11387 eval $inlibc
11388 case "$d_endservent_r" in
11389 "$define")
11390         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11391         case "$d_endservent_r_proto:$usethreads" in
11392         ":define")      d_endservent_r_proto=define
11393                 set d_endservent_r_proto endservent_r $hdrs
11394                 eval $hasproto ;;
11395         *)      ;;
11396         esac
11397         case "$d_endservent_r_proto" in
11398         define)
11399         case "$endservent_r_proto" in
11400         ''|0) try='int endservent_r(struct servent_data*);'
11401         ./protochk "extern $try" $hdrs && endservent_r_proto=I_D ;;
11402         esac
11403         case "$endservent_r_proto" in
11404         ''|0) try='void endservent_r(struct servent_data*);'
11405         ./protochk "extern $try" $hdrs && endservent_r_proto=V_D ;;
11406         esac
11407         case "$endservent_r_proto" in
11408         ''|0)   d_endservent_r=undef
11409                 endservent_r_proto=0
11410                 echo "Disabling endservent_r, cannot determine prototype." >&4 ;;
11411         * )     case "$endservent_r_proto" in
11412                 REENTRANT_PROTO*) ;;
11413                 *) endservent_r_proto="REENTRANT_PROTO_$endservent_r_proto" ;;
11414                 esac
11415                 echo "Prototype: $try" ;;
11416         esac
11417         ;;
11418         *)      case "$usethreads" in
11419                 define) echo "endservent_r has no prototype, not using it." >&4 ;;
11420                 esac
11421                 d_endservent_r=undef
11422                 endservent_r_proto=0
11423                 ;;
11424         esac
11425         ;;
11426 *)      endservent_r_proto=0
11427         ;;
11428 esac
11429
11430 : Locate the flags for 'open()'
11431 echo " "
11432 $cat >try.c <<EOCP
11433 #include <sys/types.h>
11434 #ifdef I_FCNTL
11435 #include <fcntl.h>
11436 #endif
11437 #ifdef I_SYS_FILE
11438 #include <sys/file.h>
11439 #endif
11440 #$i_stdlib I_STDLIB
11441 #ifdef I_STDLIB
11442 #include <stdlib.h>
11443 #endif
11444 int main() {
11445         if(O_RDONLY);
11446 #ifdef O_TRUNC
11447         exit(0);
11448 #else
11449         exit(1);
11450 #endif
11451 }
11452 EOCP
11453 : check sys/file.h first to get FREAD on Sun
11454 if $test `./findhdr sys/file.h` && \
11455                 set try -DI_SYS_FILE && eval $compile; then
11456         h_sysfile=true;
11457         echo "<sys/file.h> defines the O_* constants..." >&4
11458         if $run ./try; then
11459                 echo "and you have the 3 argument form of open()." >&4
11460                 val="$define"
11461         else
11462                 echo "but not the 3 argument form of open().  Oh, well." >&4
11463                 val="$undef"
11464         fi
11465 elif $test `./findhdr fcntl.h` && \
11466                 set try -DI_FCNTL && eval $compile; then
11467         h_fcntl=true;
11468         echo "<fcntl.h> defines the O_* constants..." >&4
11469         if $run ./try; then
11470                 echo "and you have the 3 argument form of open()." >&4
11471                 val="$define"
11472         else
11473                 echo "but not the 3 argument form of open().  Oh, well." >&4
11474                 val="$undef"
11475         fi
11476 else
11477         val="$undef"
11478         echo "I can't find the O_* constant definitions!  You got problems." >&4
11479 fi
11480 set d_open3
11481 eval $setvar
11482 $rm -f try try.*
11483
11484 : see which of string.h or strings.h is needed
11485 echo " "
11486 strings=`./findhdr string.h`
11487 if $test "$strings" && $test -r "$strings"; then
11488         echo "Using <string.h> instead of <strings.h>." >&4
11489         val="$define"
11490 else
11491         val="$undef"
11492         strings=`./findhdr strings.h`
11493         if $test "$strings" && $test -r "$strings"; then
11494                 echo "Using <strings.h> instead of <string.h>." >&4
11495         else
11496                 echo "No string header found -- You'll surely have problems." >&4
11497         fi
11498 fi
11499 set i_string
11500 eval $setvar
11501 case "$i_string" in
11502 "$undef") strings=`./findhdr strings.h`;;
11503 *)        strings=`./findhdr string.h`;;
11504 esac
11505
11506 : see if this is a sys/file.h system
11507 val=''
11508 set sys/file.h val
11509 eval $inhdr
11510
11511 : do we need to include sys/file.h ?
11512 case "$val" in
11513 "$define")
11514         echo " "
11515         if $h_sysfile; then
11516                 val="$define"
11517                 echo "We'll be including <sys/file.h>." >&4
11518         else
11519                 val="$undef"
11520                 echo "We won't be including <sys/file.h>." >&4
11521         fi
11522         ;;
11523 *)
11524         h_sysfile=false
11525         ;;
11526 esac
11527 set i_sysfile
11528 eval $setvar
11529
11530 : see if fcntl.h is there
11531 val=''
11532 set fcntl.h val
11533 eval $inhdr
11534
11535 : see if we can include fcntl.h
11536 case "$val" in
11537 "$define")
11538         echo " "
11539         if $h_fcntl; then
11540                 val="$define"
11541                 echo "We'll be including <fcntl.h>." >&4
11542         else
11543                 val="$undef"
11544                 if $h_sysfile; then
11545         echo "We don't need to include <fcntl.h> if we include <sys/file.h>." >&4
11546                 else
11547                         echo "We won't be including <fcntl.h>." >&4
11548                 fi
11549         fi
11550         ;;
11551 *)
11552         h_fcntl=false
11553         val="$undef"
11554         ;;
11555 esac
11556 set i_fcntl
11557 eval $setvar
11558
11559 : check for non-blocking I/O stuff
11560 case "$h_sysfile" in
11561 true) echo "#include <sys/file.h>" > head.c;;
11562 *)
11563        case "$h_fcntl" in
11564        true) echo "#include <fcntl.h>" > head.c;;
11565        *) echo "#include <sys/fcntl.h>" > head.c;;
11566        esac
11567        ;;
11568 esac
11569 echo " "
11570 echo "Figuring out the flag used by open() for non-blocking I/O..." >&4
11571 case "$o_nonblock" in
11572 '')
11573         $cat head.c > try.c
11574         $cat >>try.c <<EOCP
11575 #include <stdio.h>
11576 #$i_stdlib I_STDLIB
11577 #ifdef I_STDLIB
11578 #include <stdlib.h>
11579 #endif
11580 #$i_fcntl I_FCNTL
11581 #ifdef I_FCNTL
11582 #include <fcntl.h>
11583 #endif
11584 int main() {
11585 #ifdef O_NONBLOCK
11586         printf("O_NONBLOCK\n");
11587         exit(0);
11588 #endif
11589 #ifdef O_NDELAY
11590         printf("O_NDELAY\n");
11591         exit(0);
11592 #endif
11593 #ifdef FNDELAY
11594         printf("FNDELAY\n");
11595         exit(0);
11596 #endif
11597         exit(0);
11598 }
11599 EOCP
11600         set try
11601         if eval $compile_ok; then
11602                 o_nonblock=`$run ./try`
11603                 case "$o_nonblock" in
11604                 '') echo "I can't figure it out, assuming O_NONBLOCK will do.";;
11605                 *) echo "Seems like we can use $o_nonblock.";;
11606                 esac
11607         else
11608                 echo "(I can't compile the test program; pray O_NONBLOCK is right!)"
11609         fi
11610         ;;
11611 *) echo "Using $hint value $o_nonblock.";;
11612 esac
11613 $rm -f try try.* .out core
11614
11615 echo " "
11616 echo "Let's see what value errno gets from read() on a $o_nonblock file..." >&4
11617 case "$eagain" in
11618 '')
11619         $cat head.c > try.c
11620         $cat >>try.c <<EOCP
11621 #include <errno.h>
11622 #include <sys/types.h>
11623 #include <signal.h>
11624 #include <stdio.h> 
11625 #$i_stdlib I_STDLIB
11626 #ifdef I_STDLIB
11627 #include <stdlib.h>
11628 #endif
11629 #$i_fcntl I_FCNTL
11630 #ifdef I_FCNTL
11631 #include <fcntl.h>
11632 #endif
11633 #define MY_O_NONBLOCK $o_nonblock
11634 #ifndef errno  /* XXX need better Configure test */
11635 extern int errno;
11636 #endif
11637 #$i_unistd I_UNISTD
11638 #ifdef I_UNISTD
11639 #include <unistd.h>
11640 #endif
11641 #$i_string I_STRING
11642 #ifdef I_STRING
11643 #include <string.h>
11644 #else
11645 #include <strings.h>
11646 #endif
11647 $signal_t blech(x) int x; { exit(3); }
11648 EOCP
11649         $cat >> try.c <<'EOCP'
11650 int main()
11651 {
11652         int pd[2];
11653         int pu[2];
11654         char buf[1];
11655         char string[100];
11656
11657         pipe(pd);       /* Down: child -> parent */
11658         pipe(pu);       /* Up: parent -> child */
11659         if (0 != fork()) {
11660                 int ret;
11661                 close(pd[1]);   /* Parent reads from pd[0] */
11662                 close(pu[0]);   /* Parent writes (blocking) to pu[1] */
11663 #ifdef F_SETFL
11664                 if (-1 == fcntl(pd[0], F_SETFL, MY_O_NONBLOCK))
11665                         exit(1);
11666 #else
11667                 exit(4);
11668 #endif
11669                 signal(SIGALRM, blech);
11670                 alarm(5);
11671                 if ((ret = read(pd[0], buf, 1)) > 0)    /* Nothing to read! */
11672                         exit(2);
11673                 sprintf(string, "%d\n", ret);
11674                 write(2, string, strlen(string));
11675                 alarm(0);
11676 #ifdef EAGAIN
11677                 if (errno == EAGAIN) {
11678                         printf("EAGAIN\n");
11679                         goto ok;
11680                 }
11681 #endif
11682 #ifdef EWOULDBLOCK
11683                 if (errno == EWOULDBLOCK)
11684                         printf("EWOULDBLOCK\n");
11685 #endif
11686         ok:
11687                 write(pu[1], buf, 1);   /* Unblocks child, tell it to close our pipe */
11688                 sleep(2);                               /* Give it time to close our pipe */
11689                 alarm(5);
11690                 ret = read(pd[0], buf, 1);      /* Should read EOF */
11691                 alarm(0);
11692                 sprintf(string, "%d\n", ret);
11693                 write(4, string, strlen(string));
11694                 exit(0);
11695         }
11696
11697         close(pd[0]);                   /* We write to pd[1] */
11698         close(pu[1]);                   /* We read from pu[0] */
11699         read(pu[0], buf, 1);    /* Wait for parent to signal us we may continue */
11700         close(pd[1]);                   /* Pipe pd is now fully closed! */
11701         exit(0);                                /* Bye bye, thank you for playing! */
11702 }
11703 EOCP
11704         set try
11705         if eval $compile_ok; then
11706                 echo "$startsh" >mtry
11707                 echo "$run ./try >try.out 2>try.ret 4>try.err || exit 4" >>mtry
11708                 chmod +x mtry
11709                 ./mtry >/dev/null 2>&1
11710                 case $? in
11711                 0) eagain=`$cat try.out`;;
11712                 1) echo "Could not perform non-blocking setting!";;
11713                 2) echo "I did a successful read() for something that was not there!";;
11714                 3) echo "Hmm... non-blocking I/O does not seem to be working!";;
11715                 4) echo "Could not find F_SETFL!";;
11716                 *) echo "Something terribly wrong happened during testing.";;
11717                 esac
11718                 rd_nodata=`$cat try.ret`
11719                 echo "A read() system call with no data present returns $rd_nodata."
11720                 case "$rd_nodata" in
11721                 0|-1) ;;
11722                 *)
11723                         echo "(That's peculiar, fixing that to be -1.)"
11724                         rd_nodata=-1
11725                         ;;
11726                 esac
11727                 case "$eagain" in
11728                 '')
11729                         echo "Forcing errno EAGAIN on read() with no data available."
11730                         eagain=EAGAIN
11731                         ;;
11732                 *)
11733                         echo "Your read() sets errno to $eagain when no data is available."
11734                         ;;
11735                 esac
11736                 status=`$cat try.err`
11737                 case "$status" in
11738                 0) echo "And it correctly returns 0 to signal EOF.";;
11739                 -1) echo "But it also returns -1 to signal EOF, so be careful!";;
11740                 *) echo "However, your read() returns '$status' on EOF??";;
11741                 esac
11742                 val="$define"
11743                 if test "$status" = "$rd_nodata"; then
11744                         echo "WARNING: you can't distinguish between EOF and no data!"
11745                         val="$undef"
11746                 fi
11747         else
11748                 echo "I can't compile the test program--assuming errno EAGAIN will do."
11749                 eagain=EAGAIN
11750         fi
11751         set d_eofnblk
11752         eval $setvar
11753         ;;
11754 *)
11755         echo "Using $hint value $eagain."
11756         echo "Your read() returns $rd_nodata when no data is present."
11757         case "$d_eofnblk" in
11758         "$define") echo "And you can see EOF because read() returns 0.";;
11759         "$undef") echo "But you can't see EOF status from read() returned value.";;
11760         *)
11761                 echo "(Assuming you can't see EOF status from read anyway.)"
11762                 d_eofnblk=$undef
11763                 ;;
11764         esac
11765         ;;
11766 esac
11767 $rm -f try try.* .out core head.c mtry
11768
11769 : see if _ptr and _cnt from stdio act std
11770 echo " "
11771
11772 if $contains '_lbfsize' `./findhdr stdio.h` >/dev/null 2>&1 ; then
11773         echo "(Looks like you have stdio.h from BSD.)"
11774         case "$stdio_ptr" in
11775         '') stdio_ptr='((fp)->_p)'
11776                 ptr_lval=$define
11777                 ;;
11778         *)      ptr_lval=$d_stdio_ptr_lval;;
11779         esac
11780         case "$stdio_cnt" in
11781         '') stdio_cnt='((fp)->_r)'
11782                 cnt_lval=$define
11783                 ;;
11784         *)      cnt_lval=$d_stdio_cnt_lval;;
11785         esac
11786         case "$stdio_base" in
11787         '') stdio_base='((fp)->_ub._base ? (fp)->_ub._base : (fp)->_bf._base)';;
11788         esac
11789         case "$stdio_bufsiz" in
11790         '') stdio_bufsiz='((fp)->_ub._base ? (fp)->_ub._size : (fp)->_bf._size)';;
11791         esac
11792 elif $contains '_IO_fpos_t' `./findhdr stdio.h` `./findhdr libio.h` >/dev/null 2>&1 ; then
11793         echo "(Looks like you have stdio.h from Linux.)"
11794         case "$stdio_ptr" in
11795         '') stdio_ptr='((fp)->_IO_read_ptr)'
11796                 ptr_lval=$define
11797                 ;;
11798         *)      ptr_lval=$d_stdio_ptr_lval;;
11799         esac
11800         case "$stdio_cnt" in
11801         '') stdio_cnt='((fp)->_IO_read_end - (fp)->_IO_read_ptr)'
11802                 cnt_lval=$undef
11803                 ;;
11804         *)      cnt_lval=$d_stdio_cnt_lval;;
11805         esac
11806         case "$stdio_base" in
11807         '') stdio_base='((fp)->_IO_read_base)';;
11808         esac
11809         case "$stdio_bufsiz" in
11810         '') stdio_bufsiz='((fp)->_IO_read_end - (fp)->_IO_read_base)';;
11811         esac
11812 else
11813         case "$stdio_ptr" in
11814         '') stdio_ptr='((fp)->_ptr)'
11815                 ptr_lval=$define
11816                 ;;
11817         *)      ptr_lval=$d_stdio_ptr_lval;;
11818         esac
11819         case "$stdio_cnt" in
11820         '') stdio_cnt='((fp)->_cnt)'
11821                 cnt_lval=$define
11822                 ;;
11823         *)      cnt_lval=$d_stdio_cnt_lval;;
11824         esac
11825         case "$stdio_base" in
11826         '') stdio_base='((fp)->_base)';;
11827         esac
11828         case "$stdio_bufsiz" in
11829         '') stdio_bufsiz='((fp)->_cnt + (fp)->_ptr - (fp)->_base)';;
11830         esac
11831 fi
11832
11833 : test whether _ptr and _cnt really work
11834 echo "Checking how std your stdio is..." >&4
11835 $cat >try.c <<EOP
11836 #include <stdio.h>
11837 #$i_stdlib I_STDLIB
11838 #ifdef I_STDLIB
11839 #include <stdlib.h>
11840 #endif
11841 #define FILE_ptr(fp)    $stdio_ptr
11842 #define FILE_cnt(fp)    $stdio_cnt
11843 int main() {
11844         FILE *fp = fopen("try.c", "r");
11845         char c = getc(fp);
11846         if (
11847                 18 <= FILE_cnt(fp) &&
11848                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
11849         )
11850                 exit(0);
11851         exit(1);
11852 }
11853 EOP
11854 val="$undef"
11855 set try
11856 if eval $compile && $to try.c; then
11857         if $run ./try; then
11858                 echo "Your stdio acts pretty std."
11859                 val="$define"
11860         else
11861                 echo "Your stdio isn't very std."
11862         fi
11863 else
11864         echo "Your stdio doesn't appear very std."
11865 fi
11866 $rm -f try.c try
11867
11868 # glibc 2.2.90 and above apparently change stdio streams so Perl's
11869 # direct buffer manipulation no longer works.  The Configure tests
11870 # should be changed to correctly detect this, but until then,
11871 # the following check should at least let perl compile and run.
11872 # (This quick fix should be updated before 5.8.1.)
11873 # To be defensive, reject all unknown versions, and all versions  > 2.2.9.
11874 # A. Dougherty, June 3, 2002.
11875 case "$d_gnulibc" in
11876 $define)
11877         case "$gnulibc_version" in
11878         2.[01]*)  ;;
11879         2.2) ;;
11880         2.2.[0-9]) ;;
11881         *)  echo "But I will not snoop inside glibc $gnulibc_version stdio buffers."
11882                 val="$undef"
11883                 ;;
11884         esac
11885         ;;
11886 esac
11887 set d_stdstdio
11888 eval $setvar
11889
11890 : Can _ptr be used as an lvalue?
11891 case "$d_stdstdio$ptr_lval" in
11892 $define$define) val=$define ;;
11893 *) val=$undef ;;
11894 esac
11895 set d_stdio_ptr_lval
11896 eval $setvar
11897
11898 : Can _cnt be used as an lvalue?
11899 case "$d_stdstdio$cnt_lval" in
11900 $define$define) val=$define ;;
11901 *) val=$undef ;;
11902 esac
11903 set d_stdio_cnt_lval
11904 eval $setvar
11905
11906
11907 : test whether setting _ptr sets _cnt as a side effect
11908 d_stdio_ptr_lval_sets_cnt="$undef"
11909 d_stdio_ptr_lval_nochange_cnt="$undef"
11910 case "$d_stdio_ptr_lval$d_stdstdio" in
11911 $define$define)
11912         echo "Checking to see what happens if we set the stdio ptr..." >&4
11913 $cat >try.c <<EOP
11914 #include <stdio.h>
11915 /* Can we scream? */
11916 /* Eat dust sed :-) */
11917 /* In the buffer space, no one can hear you scream. */
11918 #$i_stdlib I_STDLIB
11919 #ifdef I_STDLIB
11920 #include <stdlib.h>
11921 #endif
11922 #define FILE_ptr(fp)    $stdio_ptr
11923 #define FILE_cnt(fp)    $stdio_cnt
11924 #include <sys/types.h>
11925 int main() {
11926         FILE *fp = fopen("try.c", "r");
11927         int c;
11928         char *ptr;
11929         size_t cnt;
11930         if (!fp) {
11931             puts("Fail even to read");
11932             exit(1);
11933         }
11934         c = getc(fp); /* Read away the first # */
11935         if (c == EOF) {
11936             puts("Fail even to read");
11937             exit(1);
11938         }
11939         if (!(
11940                 18 <= FILE_cnt(fp) &&
11941                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
11942         )) {
11943                 puts("Fail even to read");
11944                 exit (1);
11945         }
11946         ptr = (char*) FILE_ptr(fp);
11947         cnt = (size_t)FILE_cnt(fp);
11948
11949         FILE_ptr(fp) += 42;
11950
11951         if ((char*)FILE_ptr(fp) != (ptr + 42)) {
11952                 printf("Fail ptr check %p != %p", FILE_ptr(fp), (ptr + 42));
11953                 exit (1);
11954         }
11955         if (FILE_cnt(fp) <= 20) {
11956                 printf ("Fail (<20 chars to test)");
11957                 exit (1);
11958         }
11959         if (strncmp(FILE_ptr(fp), "Eat dust sed :-) */\n", 20) != 0) {
11960                 puts("Fail compare");
11961                 exit (1);
11962         }
11963         if (cnt == FILE_cnt(fp)) {
11964                 puts("Pass_unchanged");
11965                 exit (0);
11966         }       
11967         if (FILE_cnt(fp) == (cnt - 42)) {
11968                 puts("Pass_changed");
11969                 exit (0);
11970         }
11971         printf("Fail count was %d now %d\n", cnt, FILE_cnt(fp));
11972         return 1;
11973
11974 }
11975 EOP
11976         set try
11977         if eval $compile && $to try.c; then
11978                 case `$run ./try` in
11979                 Pass_changed)
11980                         echo "Increasing ptr in your stdio decreases cnt by the same amount.  Good." >&4
11981                         d_stdio_ptr_lval_sets_cnt="$define" ;;
11982                 Pass_unchanged)
11983                         echo "Increasing ptr in your stdio leaves cnt unchanged.  Good." >&4
11984                         d_stdio_ptr_lval_nochange_cnt="$define" ;;
11985                 Fail*)
11986                         echo "Increasing ptr in your stdio didn't do exactly what I expected.  We'll not be doing that then." >&4 ;;
11987                 *)
11988                         echo "It appears attempting to set ptr in your stdio is a bad plan." >&4 ;;
11989         esac
11990         else
11991                 echo "It seems we can't set ptr in your stdio.  Nevermind." >&4
11992         fi
11993         $rm -f try.c try
11994         ;;
11995 esac
11996
11997 : see if _base is also standard
11998 val="$undef"
11999 case "$d_stdstdio" in
12000 $define)
12001         $cat >try.c <<EOP
12002 #include <stdio.h>
12003 #$i_stdlib I_STDLIB
12004 #ifdef I_STDLIB
12005 #include <stdlib.h>
12006 #endif
12007 #define FILE_base(fp)   $stdio_base
12008 #define FILE_bufsiz(fp) $stdio_bufsiz
12009 int main() {
12010         FILE *fp = fopen("try.c", "r");
12011         char c = getc(fp);
12012         if (
12013                 19 <= FILE_bufsiz(fp) &&
12014                 strncmp(FILE_base(fp), "#include <stdio.h>\n", 19) == 0
12015         )
12016                 exit(0);
12017         exit(1);
12018 }
12019 EOP
12020         set try
12021         if eval $compile && $to try.c; then
12022                 if $run ./try; then
12023                         echo "And its _base field acts std."
12024                         val="$define"
12025                 else
12026                         echo "But its _base field isn't std."
12027                 fi
12028         else
12029                 echo "However, it seems to be lacking the _base field."
12030         fi
12031         $rm -f try.c try
12032         ;;
12033 esac
12034 set d_stdiobase
12035 eval $setvar
12036
12037 : see if fast_stdio exists
12038 val="$undef"
12039 case "$d_stdstdio:$d_stdio_ptr_lval" in
12040 "$define:$define")
12041         case "$d_stdio_cnt_lval$d_stdio_ptr_lval_sets_cnt" in
12042         *$define*)
12043                 echo "You seem to have 'fast stdio' to directly manipulate the stdio buffers." >& 4
12044                 val="$define"
12045                 ;;
12046         esac
12047         ;;
12048 esac
12049 set d_faststdio
12050 eval $setvar
12051
12052
12053
12054 : see if fchdir exists
12055 set fchdir d_fchdir
12056 eval $inlibc
12057
12058 : see if fchmod exists
12059 set fchmod d_fchmod
12060 eval $inlibc
12061
12062 : see if fchown exists
12063 set fchown d_fchown
12064 eval $inlibc
12065
12066 : see if this is an fcntl system
12067 set fcntl d_fcntl
12068 eval $inlibc
12069
12070 echo " "
12071 : See if fcntl-based locking works.
12072 $cat >try.c <<EOCP
12073 #$i_stdlib I_STDLIB
12074 #ifdef I_STDLIB
12075 #include <stdlib.h>
12076 #endif
12077 #include <unistd.h>
12078 #include <fcntl.h>
12079 #include <signal.h>
12080 $signal_t blech(x) int x; { exit(3); }
12081 int main() {
12082 #if defined(F_SETLK) && defined(F_SETLKW)
12083      struct flock flock;
12084      int retval, fd;
12085      fd = open("try.c", O_RDONLY);
12086      flock.l_type = F_RDLCK;
12087      flock.l_whence = SEEK_SET;
12088      flock.l_start = flock.l_len = 0;
12089      signal(SIGALRM, blech);
12090      alarm(10);
12091      retval = fcntl(fd, F_SETLK, &flock);
12092      close(fd);
12093      (retval < 0 ? exit(2) : exit(0));
12094 #else
12095      exit(2);
12096 #endif
12097 }
12098 EOCP
12099 echo "Checking if fcntl-based file locking works... "
12100 case "$d_fcntl" in
12101 "$define")
12102         set try
12103         if eval $compile_ok; then
12104                 if $run ./try; then
12105                         echo "Yes, it seems to work."
12106                         val="$define"
12107                 else
12108                         echo "Nope, it didn't work."
12109                         val="$undef"
12110                         case "$?" in
12111                         3) $cat >&4 <<EOM
12112 ***
12113 *** I had to forcibly timeout from fcntl(..., F_SETLK, ...).
12114 *** This is (almost) impossible.
12115 *** If your NFS lock daemons are not feeling well, something like
12116 *** this may happen, please investigate.  Cannot continue, aborting.
12117 ***
12118 EOM
12119                                 exit 1
12120                                 ;;
12121                         esac
12122                 fi
12123         else
12124                 echo "I'm unable to compile the test program, so I'll assume not."
12125                 val="$undef"
12126         fi
12127         ;;
12128 *) val="$undef";
12129         echo "Nope, since you don't even have fcntl()."
12130         ;;
12131 esac
12132 set d_fcntl_can_lock
12133 eval $setvar
12134 $rm -f try*
12135
12136
12137 : check for fd_set items
12138 $cat <<EOM
12139
12140 Checking to see how well your C compiler handles fd_set and friends ...
12141 EOM
12142 $cat >try.c <<EOCP
12143 #$i_stdlib I_STDLIB
12144 #ifdef I_STDLIB
12145 #include <stdlib.h>
12146 #endif
12147 #$i_systime I_SYS_TIME
12148 #$i_sysselct I_SYS_SELECT
12149 #$d_socket HAS_SOCKET
12150 #include <sys/types.h>
12151 #ifdef HAS_SOCKET
12152 #include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
12153 #endif
12154 #ifdef I_SYS_TIME
12155 #include <sys/time.h>
12156 #endif
12157 #ifdef I_SYS_SELECT
12158 #include <sys/select.h>
12159 #endif
12160 int main() {
12161         fd_set fds;
12162
12163 #ifdef TRYBITS
12164         if(fds.fds_bits);
12165 #endif
12166
12167 #if defined(FD_SET) && defined(FD_CLR) && defined(FD_ISSET) && defined(FD_ZERO)
12168         exit(0);
12169 #else
12170         exit(1);
12171 #endif
12172 }
12173 EOCP
12174 set try -DTRYBITS
12175 if eval $compile; then
12176         d_fds_bits="$define"
12177         d_fd_set="$define"
12178         echo "Well, your system knows about the normal fd_set typedef..." >&4
12179         if $run ./try; then
12180                 echo "and you have the normal fd_set macros (just as I'd expect)." >&4
12181                 d_fd_macros="$define"
12182         else
12183                 $cat >&4 <<'EOM'
12184 but not the normal fd_set macros!  Gaaack!  I'll have to cover for you.
12185 EOM
12186                 d_fd_macros="$undef"
12187         fi
12188 else
12189         $cat <<'EOM'
12190 Hmm, your compiler has some difficulty with fd_set.  Checking further...
12191 EOM
12192         set try
12193         if eval $compile; then
12194                 d_fds_bits="$undef"
12195                 d_fd_set="$define"
12196                 echo "Well, your system has some sort of fd_set available..." >&4
12197                 if $run ./try; then
12198                         echo "and you have the normal fd_set macros." >&4
12199                         d_fd_macros="$define"
12200                 else
12201                         $cat <<'EOM'
12202 but not the normal fd_set macros!  Gross!  More work for me...
12203 EOM
12204                         d_fd_macros="$undef"
12205                 fi
12206         else
12207         echo "Well, you got zip.  That's OK, I can roll my own fd_set stuff." >&4
12208                 d_fd_set="$undef"
12209                 d_fds_bits="$undef"
12210                 d_fd_macros="$undef"
12211         fi
12212 fi
12213 $rm -f try try.*
12214
12215 : see if fgetpos exists
12216 set fgetpos d_fgetpos
12217 eval $inlibc
12218
12219 : see if finite exists
12220 set finite d_finite
12221 eval $inlibc
12222
12223 : see if finitel exists
12224 set finitel d_finitel
12225 eval $inlibc
12226
12227 : see if flock exists
12228 set flock d_flock
12229 eval $inlibc
12230
12231 : see if prototype for flock is available
12232 echo " "
12233 set d_flockproto flock $i_sysfile sys/file.h
12234 eval $hasproto
12235
12236 : see if fork exists
12237 set fork d_fork
12238 eval $inlibc
12239
12240 : see if fp_class exists
12241 set fp_class d_fp_class
12242 eval $inlibc
12243
12244 : see if pathconf exists
12245 set pathconf d_pathconf
12246 eval $inlibc
12247
12248 : see if fpathconf exists
12249 set fpathconf d_fpathconf
12250 eval $inlibc
12251
12252 : see if fpclass exists
12253 set fpclass d_fpclass
12254 eval $inlibc
12255
12256 : see if fpclassify exists
12257 set fpclassify d_fpclassify
12258 eval $inlibc
12259
12260 : see if fpclassl exists
12261 set fpclassl d_fpclassl
12262 eval $inlibc
12263
12264
12265 : check for fpos64_t
12266 echo " "
12267 echo "Checking to see if you have fpos64_t..." >&4
12268 $cat >try.c <<EOCP
12269 #include <stdio.h>
12270 int main() { fpos64_t x = 7; }
12271 EOCP
12272 set try
12273 if eval $compile; then
12274         val="$define"
12275         echo "You have fpos64_t."
12276 else
12277         val="$undef"
12278         echo "You do not have fpos64_t."
12279         case "$fpossize" in
12280         8) echo "(Your fpos_t is 64 bits, so you could use that.)" ;;
12281         esac
12282 fi
12283 $rm -f try.* try
12284 set d_fpos64_t
12285 eval $setvar
12286
12287 : see if frexpl exists
12288 set frexpl d_frexpl
12289 eval $inlibc
12290
12291 : see if this is a sys/param system
12292 set sys/param.h i_sysparam
12293 eval $inhdr
12294
12295 : see if this is a sys/mount.h system
12296 set sys/mount.h i_sysmount
12297 eval $inhdr
12298
12299
12300 echo " "
12301 echo "Checking to see if your system supports struct fs_data..." >&4
12302 set d_fs_data_s fs_data $i_systypes sys/types.h $i_sysparam sys/param.h $i_sysmount sys/mount.h
12303 eval $hasstruct
12304 case "$d_fs_data_s" in
12305 "$define")      echo "Yes, it does."   ;;
12306 *)              echo "No, it doesn't." ;;
12307 esac
12308
12309 : see if fseeko exists
12310 set fseeko d_fseeko
12311 eval $inlibc
12312 case "$longsize" in
12313 8) echo "(Your long is 64 bits, so you could use fseek.)" ;;
12314 esac
12315
12316 : see if fsetpos exists
12317 set fsetpos d_fsetpos
12318 eval $inlibc
12319
12320
12321 : see if fstatfs exists
12322 set fstatfs d_fstatfs
12323 eval $inlibc
12324
12325
12326 : see if statvfs exists
12327 set statvfs d_statvfs
12328 eval $inlibc
12329
12330 : see if fstatvfs exists
12331 set fstatvfs d_fstatvfs
12332 eval $inlibc
12333
12334
12335 : see if fsync exists
12336 set fsync d_fsync
12337 eval $inlibc
12338
12339 : see if ftello exists
12340 set ftello d_ftello
12341 eval $inlibc
12342 case "$longsize" in
12343 8) echo "(Your long is 64 bits, so you could use ftell.)" ;;
12344 esac
12345
12346 : see if getcwd exists
12347 set getcwd d_getcwd
12348 eval $inlibc
12349
12350 : see if getespwnam exists
12351 set getespwnam d_getespwnam
12352 eval $inlibc
12353
12354
12355 : see if getfsstat exists
12356 set getfsstat d_getfsstat
12357 eval $inlibc
12358
12359 : see if getgrent exists
12360 set getgrent d_getgrent
12361 eval $inlibc
12362
12363 : see if getgrent_r exists
12364 set getgrent_r d_getgrent_r
12365 eval $inlibc
12366 case "$d_getgrent_r" in
12367 "$define")
12368         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12369         case "$d_getgrent_r_proto:$usethreads" in
12370         ":define")      d_getgrent_r_proto=define
12371                 set d_getgrent_r_proto getgrent_r $hdrs
12372                 eval $hasproto ;;
12373         *)      ;;
12374         esac
12375         case "$d_getgrent_r_proto" in
12376         define)
12377         case "$getgrent_r_proto" in
12378         ''|0) try='int getgrent_r(struct group*, char*, size_t, struct group**);'
12379         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBWR ;;
12380         esac
12381         case "$getgrent_r_proto" in
12382         ''|0) try='int getgrent_r(struct group*, char*, int, struct group**);'
12383         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIR ;;
12384         esac
12385         case "$getgrent_r_proto" in
12386         ''|0) try='struct group* getgrent_r(struct group*, char*, size_t);'
12387         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBW ;;
12388         esac
12389         case "$getgrent_r_proto" in
12390         ''|0) try='struct group* getgrent_r(struct group*, char*, int);'
12391         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBI ;;
12392         esac
12393         case "$getgrent_r_proto" in
12394         ''|0) try='int getgrent_r(struct group*, char*, int);'
12395         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBI ;;
12396         esac
12397         case "$getgrent_r_proto" in
12398         ''|0) try='int getgrent_r(struct group*, char*, int, FILE**);'
12399         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIH ;;
12400         esac
12401         case "$getgrent_r_proto" in
12402         ''|0)   d_getgrent_r=undef
12403                 getgrent_r_proto=0
12404                 echo "Disabling getgrent_r, cannot determine prototype." >&4 ;;
12405         * )     case "$getgrent_r_proto" in
12406                 REENTRANT_PROTO*) ;;
12407                 *) getgrent_r_proto="REENTRANT_PROTO_$getgrent_r_proto" ;;
12408                 esac
12409                 echo "Prototype: $try" ;;
12410         esac
12411         ;;
12412         *)      case "$usethreads" in
12413                 define) echo "getgrent_r has no prototype, not using it." >&4 ;;
12414                 esac
12415                 d_getgrent_r=undef
12416                 getgrent_r_proto=0
12417                 ;;
12418         esac
12419         ;;
12420 *)      getgrent_r_proto=0
12421         ;;
12422 esac
12423
12424 : see if getgrgid_r exists
12425 set getgrgid_r d_getgrgid_r
12426 eval $inlibc
12427 case "$d_getgrgid_r" in
12428 "$define")
12429         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12430         case "$d_getgrgid_r_proto:$usethreads" in
12431         ":define")      d_getgrgid_r_proto=define
12432                 set d_getgrgid_r_proto getgrgid_r $hdrs
12433                 eval $hasproto ;;
12434         *)      ;;
12435         esac
12436         case "$d_getgrgid_r_proto" in
12437         define)
12438         case "$getgrgid_r_proto" in
12439         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, size_t, struct group**);'
12440         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBWR ;;
12441         esac
12442         case "$getgrgid_r_proto" in
12443         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int, struct group**);'
12444         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBIR ;;
12445         esac
12446         case "$getgrgid_r_proto" in
12447         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int);'
12448         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBI ;;
12449         esac
12450         case "$getgrgid_r_proto" in
12451         ''|0) try='struct group* getgrgid_r(gid_t, struct group*, char*, int);'
12452         ./protochk "extern $try" $hdrs && getgrgid_r_proto=S_TSBI ;;
12453         esac
12454         case "$getgrgid_r_proto" in
12455         ''|0)   d_getgrgid_r=undef
12456                 getgrgid_r_proto=0
12457                 echo "Disabling getgrgid_r, cannot determine prototype." >&4 ;;
12458         * )     case "$getgrgid_r_proto" in
12459                 REENTRANT_PROTO*) ;;
12460                 *) getgrgid_r_proto="REENTRANT_PROTO_$getgrgid_r_proto" ;;
12461                 esac
12462                 echo "Prototype: $try" ;;
12463         esac
12464         ;;
12465         *)      case "$usethreads" in
12466                 define) echo "getgrgid_r has no prototype, not using it." >&4 ;;
12467                 esac
12468                 d_getgrgid_r=undef
12469                 getgrgid_r_proto=0
12470                 ;;
12471         esac
12472         ;;
12473 *)      getgrgid_r_proto=0
12474         ;;
12475 esac
12476
12477 : see if getgrnam_r exists
12478 set getgrnam_r d_getgrnam_r
12479 eval $inlibc
12480 case "$d_getgrnam_r" in
12481 "$define")
12482         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12483         case "$d_getgrnam_r_proto:$usethreads" in
12484         ":define")      d_getgrnam_r_proto=define
12485                 set d_getgrnam_r_proto getgrnam_r $hdrs
12486                 eval $hasproto ;;
12487         *)      ;;
12488         esac
12489         case "$d_getgrnam_r_proto" in
12490         define)
12491         case "$getgrnam_r_proto" in
12492         ''|0) try='int getgrnam_r(const char*, struct group*, char*, size_t, struct group**);'
12493         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBWR ;;
12494         esac
12495         case "$getgrnam_r_proto" in
12496         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int, struct group**);'
12497         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBIR ;;
12498         esac
12499         case "$getgrnam_r_proto" in
12500         ''|0) try='struct group* getgrnam_r(const char*, char*, int);'
12501         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CBI ;;
12502         esac
12503         case "$getgrnam_r_proto" in
12504         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int);'
12505         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBI ;;
12506         esac
12507         case "$getgrnam_r_proto" in
12508         ''|0) try='struct group* getgrnam_r(const char*, struct group*, char*, int);'
12509         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CSBI ;;
12510         esac
12511         case "$getgrnam_r_proto" in
12512         ''|0)   d_getgrnam_r=undef
12513                 getgrnam_r_proto=0
12514                 echo "Disabling getgrnam_r, cannot determine prototype." >&4 ;;
12515         * )     case "$getgrnam_r_proto" in
12516                 REENTRANT_PROTO*) ;;
12517                 *) getgrnam_r_proto="REENTRANT_PROTO_$getgrnam_r_proto" ;;
12518                 esac
12519                 echo "Prototype: $try" ;;
12520         esac
12521         ;;
12522         *)      case "$usethreads" in
12523                 define) echo "getgrnam_r has no prototype, not using it." >&4 ;;
12524                 esac
12525                 d_getgrnam_r=undef
12526                 getgrnam_r_proto=0
12527                 ;;
12528         esac
12529         ;;
12530 *)      getgrnam_r_proto=0
12531         ;;
12532 esac
12533
12534 : see if gethostbyaddr exists
12535 set gethostbyaddr d_gethbyaddr
12536 eval $inlibc
12537
12538 : see if gethostbyname exists
12539 set gethostbyname d_gethbyname
12540 eval $inlibc
12541
12542 : see if gethostent exists
12543 set gethostent d_gethent
12544 eval $inlibc
12545
12546 : see how we will look up host name
12547 echo " "
12548 call=''
12549 if set gethostname val -f d_gethname; eval $csym; $val; then
12550         echo 'gethostname() found.' >&4
12551         d_gethname="$define"
12552         call=gethostname
12553 fi
12554 if set uname val -f d_uname; eval $csym; $val; then
12555         if ./xenix; then
12556                 $cat <<'EOM'
12557 uname() was found, but you're running xenix, and older versions of xenix
12558 have a broken uname(). If you don't really know whether your xenix is old
12559 enough to have a broken system call, use the default answer.
12560
12561 EOM
12562                 dflt=y
12563                 case "$d_uname" in
12564                 "$define") dflt=n;;
12565                 esac
12566                 rp='Is your uname() broken?'
12567                 . ./myread
12568                 case "$ans" in
12569                 n*) d_uname="$define"; call=uname;;
12570                 esac
12571         else
12572                 echo 'uname() found.' >&4
12573                 d_uname="$define"
12574                 case "$call" in
12575                 '') call=uname ;;
12576                 esac
12577         fi
12578 fi
12579 case "$d_gethname" in
12580 '') d_gethname="$undef";;
12581 esac
12582 case "$d_uname" in
12583 '') d_uname="$undef";;
12584 esac
12585 case "$d_uname$d_gethname" in
12586 *define*)
12587         dflt=n
12588         cat <<EOM
12589  
12590 Every now and then someone has a $call() that lies about the hostname
12591 but can't be fixed for political or economic reasons.  If you wish, I can
12592 pretend $call() isn't there and maybe compute hostname at run-time
12593 thanks to the '$phostname' command.
12594
12595 EOM
12596         rp="Shall I ignore $call() from now on?"
12597         . ./myread
12598         case "$ans" in
12599         y*) d_uname="$undef" d_gethname="$undef"; $echo $n "Okay...$c";;
12600         esac;;
12601 esac
12602 case "$phostname" in
12603 '') aphostname='';;
12604 *) case "$aphostname" in
12605         /*) ;;
12606         *) set X $phostname
12607                 shift
12608                 file=$1
12609                 shift
12610                 file=`./loc $file $file $pth`
12611                 aphostname=`echo $file $*`
12612                 ;;
12613         esac
12614         ;;
12615 esac
12616 case "$d_uname$d_gethname" in
12617 *define*) ;;
12618 *)
12619         case "$phostname" in
12620         '')
12621                 echo "There will be no way for $package to get your hostname." >&4;;
12622         *)
12623         echo "I'll use 'popen("'"'$aphostname'", "r")'"' to get your hostname." >&4
12624                 ;;
12625         esac;;
12626 esac
12627 case "$d_phostname" in
12628 '') d_phostname="$undef";;
12629 esac
12630
12631 : see if gethostbyaddr_r exists
12632 set gethostbyaddr_r d_gethostbyaddr_r
12633 eval $inlibc
12634 case "$d_gethostbyaddr_r" in
12635 "$define")
12636         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12637         case "$d_gethostbyaddr_r_proto:$usethreads" in
12638         ":define")      d_gethostbyaddr_r_proto=define
12639                 set d_gethostbyaddr_r_proto gethostbyaddr_r $hdrs
12640                 eval $hasproto ;;
12641         *)      ;;
12642         esac
12643         case "$d_gethostbyaddr_r_proto" in
12644         define)
12645         case "$gethostbyaddr_r_proto" in
12646         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
12647         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISBWRE ;;
12648         esac
12649         case "$gethostbyaddr_r_proto" in
12650         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, int, int*);'
12651         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBWIE ;;
12652         esac
12653         case "$gethostbyaddr_r_proto" in
12654         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, int, int*);'
12655         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBIE ;;
12656         esac
12657         case "$gethostbyaddr_r_proto" in
12658         ''|0) try='struct hostent* gethostbyaddr_r(const void*, size_t, int, struct hostent*, char*, int, int*);'
12659         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TWISBIE ;;
12660         esac
12661         case "$gethostbyaddr_r_proto" in
12662         ''|0) try='struct hostent* gethostbyaddr_r(const char*, int, int, struct hostent*, char*, int, int*);'
12663         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CIISBIE ;;
12664         esac
12665         case "$gethostbyaddr_r_proto" in
12666         ''|0) try='struct hostent* gethostbyaddr_r(const char*, struct hostent*, char*, int, int*);'
12667         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CSBIE ;;
12668         esac
12669         case "$gethostbyaddr_r_proto" in
12670         ''|0) try='struct hostent* gethostbyaddr_r(const void*, struct hostent*, char*, int, int*);'
12671         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TSBIE ;;
12672         esac
12673         case "$gethostbyaddr_r_proto" in
12674         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, struct hostent_data*);'
12675         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISD ;;
12676         esac
12677         case "$gethostbyaddr_r_proto" in
12678         ''|0) try='int gethostbyaddr_r(const char*, int, int, struct hostent*, struct hostent_data*);'
12679         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CIISD ;;
12680         esac
12681         case "$gethostbyaddr_r_proto" in
12682         ''|0) try='int gethostbyaddr_r(const char*, int, int);'
12683         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CII ;;
12684         esac
12685         case "$gethostbyaddr_r_proto" in
12686         ''|0) try='int gethostbyaddr_r(const void*, socklen_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
12687         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_TsISBWRE ;;
12688         esac
12689         case "$gethostbyaddr_r_proto" in
12690         ''|0)   d_gethostbyaddr_r=undef
12691                 gethostbyaddr_r_proto=0
12692                 echo "Disabling gethostbyaddr_r, cannot determine prototype." >&4 ;;
12693         * )     case "$gethostbyaddr_r_proto" in
12694                 REENTRANT_PROTO*) ;;
12695                 *) gethostbyaddr_r_proto="REENTRANT_PROTO_$gethostbyaddr_r_proto" ;;
12696                 esac
12697                 echo "Prototype: $try" ;;
12698         esac
12699         ;;
12700         *)      case "$usethreads" in
12701                 define) echo "gethostbyaddr_r has no prototype, not using it." >&4 ;;
12702                 esac
12703                 d_gethostbyaddr_r=undef
12704                 gethostbyaddr_r_proto=0
12705                 ;;
12706         esac
12707         ;;
12708 *)      gethostbyaddr_r_proto=0
12709         ;;
12710 esac
12711
12712 : see if gethostbyname_r exists
12713 set gethostbyname_r d_gethostbyname_r
12714 eval $inlibc
12715 case "$d_gethostbyname_r" in
12716 "$define")
12717         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12718         case "$d_gethostbyname_r_proto:$usethreads" in
12719         ":define")      d_gethostbyname_r_proto=define
12720                 set d_gethostbyname_r_proto gethostbyname_r $hdrs
12721                 eval $hasproto ;;
12722         *)      ;;
12723         esac
12724         case "$d_gethostbyname_r_proto" in
12725         define)
12726         case "$gethostbyname_r_proto" in
12727         ''|0) try='int gethostbyname_r(const char*, struct hostent*, char*, size_t, struct hostent**, int*);'
12728         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSBWRE ;;
12729         esac
12730         case "$gethostbyname_r_proto" in
12731         ''|0) try='struct hostent* gethostbyname_r(const char*, struct hostent*, char*, int, int*);'
12732         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=S_CSBIE ;;
12733         esac
12734         case "$gethostbyname_r_proto" in
12735         ''|0) try='int gethostbyname_r(const char*, struct hostent*, struct hostent_data*);'
12736         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSD ;;
12737         esac
12738         case "$gethostbyname_r_proto" in
12739         ''|0)   d_gethostbyname_r=undef
12740                 gethostbyname_r_proto=0
12741                 echo "Disabling gethostbyname_r, cannot determine prototype." >&4 ;;
12742         * )     case "$gethostbyname_r_proto" in
12743                 REENTRANT_PROTO*) ;;
12744                 *) gethostbyname_r_proto="REENTRANT_PROTO_$gethostbyname_r_proto" ;;
12745                 esac
12746                 echo "Prototype: $try" ;;
12747         esac
12748         ;;
12749         *)      case "$usethreads" in
12750                 define) echo "gethostbyname_r has no prototype, not using it." >&4 ;;
12751                 esac
12752                 d_gethostbyname_r=undef
12753                 gethostbyname_r_proto=0
12754                 ;;
12755         esac
12756         ;;
12757 *)      gethostbyname_r_proto=0
12758         ;;
12759 esac
12760
12761 : see if gethostent_r exists
12762 set gethostent_r d_gethostent_r
12763 eval $inlibc
12764 case "$d_gethostent_r" in
12765 "$define")
12766         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12767         case "$d_gethostent_r_proto:$usethreads" in
12768         ":define")      d_gethostent_r_proto=define
12769                 set d_gethostent_r_proto gethostent_r $hdrs
12770                 eval $hasproto ;;
12771         *)      ;;
12772         esac
12773         case "$d_gethostent_r_proto" in
12774         define)
12775         case "$gethostent_r_proto" in
12776         ''|0) try='int gethostent_r(struct hostent*, char*, size_t, struct hostent**, int*);'
12777         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBWRE ;;
12778         esac
12779         case "$gethostent_r_proto" in
12780         ''|0) try='int gethostent_r(struct hostent*, char*, int, int*);'
12781         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBIE ;;
12782         esac
12783         case "$gethostent_r_proto" in
12784         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int, int*);'
12785         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBIE ;;
12786         esac
12787         case "$gethostent_r_proto" in
12788         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int);'
12789         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBI ;;
12790         esac
12791         case "$gethostent_r_proto" in
12792         ''|0) try='int gethostent_r(struct hostent*, char*, int);'
12793         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBI ;;
12794         esac
12795         case "$gethostent_r_proto" in
12796         ''|0) try='int gethostent_r(struct hostent*, struct hostent_data*);'
12797         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SD ;;
12798         esac
12799         case "$gethostent_r_proto" in
12800         ''|0)   d_gethostent_r=undef
12801                 gethostent_r_proto=0
12802                 echo "Disabling gethostent_r, cannot determine prototype." >&4 ;;
12803         * )     case "$gethostent_r_proto" in
12804                 REENTRANT_PROTO*) ;;
12805                 *) gethostent_r_proto="REENTRANT_PROTO_$gethostent_r_proto" ;;
12806                 esac
12807                 echo "Prototype: $try" ;;
12808         esac
12809         ;;
12810         *)      case "$usethreads" in
12811                 define) echo "gethostent_r has no prototype, not using it." >&4 ;;
12812                 esac
12813                 d_gethostent_r=undef
12814                 gethostent_r_proto=0
12815                 ;;
12816         esac
12817         ;;
12818 *)      gethostent_r_proto=0
12819         ;;
12820 esac
12821
12822 : see if prototypes for various gethostxxx netdb.h functions are available
12823 echo " "
12824 set d_gethostprotos gethostent $i_netdb netdb.h
12825 eval $hasproto
12826
12827 : see if getitimer exists
12828 set getitimer d_getitimer
12829 eval $inlibc
12830
12831 : see if getlogin exists
12832 set getlogin d_getlogin
12833 eval $inlibc
12834
12835 : see if getlogin_r exists
12836 set getlogin_r d_getlogin_r
12837 eval $inlibc
12838 case "$d_getlogin_r" in
12839 "$define")
12840         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
12841         case "$d_getlogin_r_proto:$usethreads" in
12842         ":define")      d_getlogin_r_proto=define
12843                 set d_getlogin_r_proto getlogin_r $hdrs
12844                 eval $hasproto ;;
12845         *)      ;;
12846         esac
12847         case "$d_getlogin_r_proto" in
12848         define)
12849         case "$getlogin_r_proto" in
12850         ''|0) try='int getlogin_r(char*, size_t);'
12851         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BW ;;
12852         esac
12853         case "$getlogin_r_proto" in
12854         ''|0) try='int getlogin_r(char*, int);'
12855         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BI ;;
12856         esac
12857         case "$getlogin_r_proto" in
12858         ''|0) try='char* getlogin_r(char*, size_t);'
12859         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BW ;;
12860         esac
12861         case "$getlogin_r_proto" in
12862         ''|0) try='char* getlogin_r(char*, int);'
12863         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BI ;;
12864         esac
12865         case "$getlogin_r_proto" in
12866         ''|0)   d_getlogin_r=undef
12867                 getlogin_r_proto=0
12868                 echo "Disabling getlogin_r, cannot determine prototype." >&4 ;;
12869         * )     case "$getlogin_r_proto" in
12870                 REENTRANT_PROTO*) ;;
12871                 *) getlogin_r_proto="REENTRANT_PROTO_$getlogin_r_proto" ;;
12872                 esac
12873                 echo "Prototype: $try" ;;
12874         esac
12875         ;;
12876         *)      case "$usethreads" in
12877                 define) echo "getlogin_r has no prototype, not using it." >&4 ;;
12878                 esac
12879                 d_getlogin_r=undef
12880                 getlogin_r_proto=0
12881                 ;;
12882         esac
12883         ;;
12884 *)      getlogin_r_proto=0
12885         ;;
12886 esac
12887
12888 : see if getmnt exists
12889 set getmnt d_getmnt
12890 eval $inlibc
12891
12892 : see if getmntent exists
12893 set getmntent d_getmntent
12894 eval $inlibc
12895
12896 : see if getnetbyaddr exists
12897 set getnetbyaddr d_getnbyaddr
12898 eval $inlibc
12899
12900 : see if getnetbyname exists
12901 set getnetbyname d_getnbyname
12902 eval $inlibc
12903
12904 : see if getnetent exists
12905 set getnetent d_getnent
12906 eval $inlibc
12907
12908 : see if getnetbyaddr_r exists
12909 set getnetbyaddr_r d_getnetbyaddr_r
12910 eval $inlibc
12911 case "$d_getnetbyaddr_r" in
12912 "$define")
12913         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12914         case "$d_getnetbyaddr_r_proto:$usethreads" in
12915         ":define")      d_getnetbyaddr_r_proto=define
12916                 set d_getnetbyaddr_r_proto getnetbyaddr_r $hdrs
12917                 eval $hasproto ;;
12918         *)      ;;
12919         esac
12920         case "$d_getnetbyaddr_r_proto" in
12921         define)
12922         case "$getnetbyaddr_r_proto" in
12923         ''|0) try='int getnetbyaddr_r(unsigned long, int, struct netent*, char*, size_t, struct netent**, int*);'
12924         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_UISBWRE ;;
12925         esac
12926         case "$getnetbyaddr_r_proto" in
12927         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, char*, int);'
12928         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISBI ;;
12929         esac
12930         case "$getnetbyaddr_r_proto" in
12931         ''|0) try='struct netent* getnetbyaddr_r(in_addr_t, int, struct netent*, char*, int);'
12932         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_TISBI ;;
12933         esac
12934         case "$getnetbyaddr_r_proto" in
12935         ''|0) try='struct netent* getnetbyaddr_r(long, int, struct netent*, char*, int);'
12936         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_LISBI ;;
12937         esac
12938         case "$getnetbyaddr_r_proto" in
12939         ''|0) try='int getnetbyaddr_r(in_addr_t, int, struct netent*, struct netent_data*);'
12940         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_TISD ;;
12941         esac
12942         case "$getnetbyaddr_r_proto" in
12943         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, struct netent_data*);'
12944         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISD ;;
12945         esac
12946         case "$getnetbyaddr_r_proto" in
12947         ''|0) try='int getnetbyaddr_r(int, int, struct netent*, struct netent_data*);'
12948         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_IISD ;;
12949         esac
12950         case "$getnetbyaddr_r_proto" in
12951         ''|0) try='int getnetbyaddr_r(uint32_t, int, struct netent*, char*, size_t, struct netent**, int*);'
12952         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_uISBWRE ;;
12953         esac
12954         case "$getnetbyaddr_r_proto" in
12955         ''|0)   d_getnetbyaddr_r=undef
12956                 getnetbyaddr_r_proto=0
12957                 echo "Disabling getnetbyaddr_r, cannot determine prototype." >&4 ;;
12958         * )     case "$getnetbyaddr_r_proto" in
12959                 REENTRANT_PROTO*) ;;
12960                 *) getnetbyaddr_r_proto="REENTRANT_PROTO_$getnetbyaddr_r_proto" ;;
12961                 esac
12962                 echo "Prototype: $try" ;;
12963         esac
12964         ;;
12965         *)      case "$usethreads" in
12966                 define) echo "getnetbyaddr_r has no prototype, not using it." >&4 ;;
12967                 esac
12968                 d_getnetbyaddr_r=undef
12969                 getnetbyaddr_r_proto=0
12970                 ;;
12971         esac
12972         ;;
12973 *)      getnetbyaddr_r_proto=0
12974         ;;
12975 esac
12976
12977 : see if getnetbyname_r exists
12978 set getnetbyname_r d_getnetbyname_r
12979 eval $inlibc
12980 case "$d_getnetbyname_r" in
12981 "$define")
12982         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12983         case "$d_getnetbyname_r_proto:$usethreads" in
12984         ":define")      d_getnetbyname_r_proto=define
12985                 set d_getnetbyname_r_proto getnetbyname_r $hdrs
12986                 eval $hasproto ;;
12987         *)      ;;
12988         esac
12989         case "$d_getnetbyname_r_proto" in
12990         define)
12991         case "$getnetbyname_r_proto" in
12992         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, size_t, struct netent**, int*);'
12993         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBWRE ;;
12994         esac
12995         case "$getnetbyname_r_proto" in
12996         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, int);'
12997         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBI ;;
12998         esac
12999         case "$getnetbyname_r_proto" in
13000         ''|0) try='struct netent* getnetbyname_r(const char*, struct netent*, char*, int);'
13001         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=S_CSBI ;;
13002         esac
13003         case "$getnetbyname_r_proto" in
13004         ''|0) try='int getnetbyname_r(const char*, struct netent*, struct netent_data*);'
13005         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSD ;;
13006         esac
13007         case "$getnetbyname_r_proto" in
13008         ''|0)   d_getnetbyname_r=undef
13009                 getnetbyname_r_proto=0
13010                 echo "Disabling getnetbyname_r, cannot determine prototype." >&4 ;;
13011         * )     case "$getnetbyname_r_proto" in
13012                 REENTRANT_PROTO*) ;;
13013                 *) getnetbyname_r_proto="REENTRANT_PROTO_$getnetbyname_r_proto" ;;
13014                 esac
13015                 echo "Prototype: $try" ;;
13016         esac
13017         ;;
13018         *)      case "$usethreads" in
13019                 define) echo "getnetbyname_r has no prototype, not using it." >&4 ;;
13020                 esac
13021                 d_getnetbyname_r=undef
13022                 getnetbyname_r_proto=0
13023                 ;;
13024         esac
13025         ;;
13026 *)      getnetbyname_r_proto=0
13027         ;;
13028 esac
13029
13030 : see if getnetent_r exists
13031 set getnetent_r d_getnetent_r
13032 eval $inlibc
13033 case "$d_getnetent_r" in
13034 "$define")
13035         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13036         case "$d_getnetent_r_proto:$usethreads" in
13037         ":define")      d_getnetent_r_proto=define
13038                 set d_getnetent_r_proto getnetent_r $hdrs
13039                 eval $hasproto ;;
13040         *)      ;;
13041         esac
13042         case "$d_getnetent_r_proto" in
13043         define)
13044         case "$getnetent_r_proto" in
13045         ''|0) try='int getnetent_r(struct netent*, char*, size_t, struct netent**, int*);'
13046         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBWRE ;;
13047         esac
13048         case "$getnetent_r_proto" in
13049         ''|0) try='int getnetent_r(struct netent*, char*, int, int*);'
13050         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBIE ;;
13051         esac
13052         case "$getnetent_r_proto" in
13053         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int, int*);'
13054         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBIE ;;
13055         esac
13056         case "$getnetent_r_proto" in
13057         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int);'
13058         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBI ;;
13059         esac
13060         case "$getnetent_r_proto" in
13061         ''|0) try='int getnetent_r(struct netent*, char*, int);'
13062         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBI ;;
13063         esac
13064         case "$getnetent_r_proto" in
13065         ''|0) try='int getnetent_r(struct netent*, struct netent_data*);'
13066         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SD ;;
13067         esac
13068         case "$getnetent_r_proto" in
13069         ''|0)   d_getnetent_r=undef
13070                 getnetent_r_proto=0
13071                 echo "Disabling getnetent_r, cannot determine prototype." >&4 ;;
13072         * )     case "$getnetent_r_proto" in
13073                 REENTRANT_PROTO*) ;;
13074                 *) getnetent_r_proto="REENTRANT_PROTO_$getnetent_r_proto" ;;
13075                 esac
13076                 echo "Prototype: $try" ;;
13077         esac
13078         ;;
13079         *)      case "$usethreads" in
13080                 define) echo "getnetent_r has no prototype, not using it." >&4 ;;
13081                 esac
13082                 d_getnetent_r=undef
13083                 getnetent_r_proto=0
13084                 ;;
13085         esac
13086         ;;
13087 *)      getnetent_r_proto=0
13088         ;;
13089 esac
13090
13091 : see if prototypes for various getnetxxx netdb.h functions are available
13092 echo " "
13093 set d_getnetprotos getnetent $i_netdb netdb.h
13094 eval $hasproto
13095
13096 : see if getpagesize exists
13097 set getpagesize d_getpagsz
13098 eval $inlibc
13099
13100
13101 : see if getprotobyname exists
13102 set getprotobyname d_getpbyname
13103 eval $inlibc
13104
13105 : see if getprotobynumber exists
13106 set getprotobynumber d_getpbynumber
13107 eval $inlibc
13108
13109 : see if getprotoent exists
13110 set getprotoent d_getpent
13111 eval $inlibc
13112
13113 : see if getpgid exists
13114 set getpgid d_getpgid
13115 eval $inlibc
13116
13117 : see if getpgrp2 exists
13118 set getpgrp2 d_getpgrp2
13119 eval $inlibc
13120
13121 : see if getppid exists
13122 set getppid d_getppid
13123 eval $inlibc
13124
13125 : see if getpriority exists
13126 set getpriority d_getprior
13127 eval $inlibc
13128
13129 : see if getprotobyname_r exists
13130 set getprotobyname_r d_getprotobyname_r
13131 eval $inlibc
13132 case "$d_getprotobyname_r" in
13133 "$define")
13134         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13135         case "$d_getprotobyname_r_proto:$usethreads" in
13136         ":define")      d_getprotobyname_r_proto=define
13137                 set d_getprotobyname_r_proto getprotobyname_r $hdrs
13138                 eval $hasproto ;;
13139         *)      ;;
13140         esac
13141         case "$d_getprotobyname_r_proto" in
13142         define)
13143         case "$getprotobyname_r_proto" in
13144         ''|0) try='int getprotobyname_r(const char*, struct protoent*, char*, size_t, struct protoent**);'
13145         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSBWR ;;
13146         esac
13147         case "$getprotobyname_r_proto" in
13148         ''|0) try='struct protoent* getprotobyname_r(const char*, struct protoent*, char*, int);'
13149         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=S_CSBI ;;
13150         esac
13151         case "$getprotobyname_r_proto" in
13152         ''|0) try='int getprotobyname_r(const char*, struct protoent*, struct protoent_data*);'
13153         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSD ;;
13154         esac
13155         case "$getprotobyname_r_proto" in
13156         ''|0)   d_getprotobyname_r=undef
13157                 getprotobyname_r_proto=0
13158                 echo "Disabling getprotobyname_r, cannot determine prototype." >&4 ;;
13159         * )     case "$getprotobyname_r_proto" in
13160                 REENTRANT_PROTO*) ;;
13161                 *) getprotobyname_r_proto="REENTRANT_PROTO_$getprotobyname_r_proto" ;;
13162                 esac
13163                 echo "Prototype: $try" ;;
13164         esac
13165         ;;
13166         *)      case "$usethreads" in
13167                 define) echo "getprotobyname_r has no prototype, not using it." >&4 ;;
13168                 esac
13169                 d_getprotobyname_r=undef
13170                 getprotobyname_r_proto=0
13171                 ;;
13172         esac
13173         ;;
13174 *)      getprotobyname_r_proto=0
13175         ;;
13176 esac
13177
13178 : see if getprotobynumber_r exists
13179 set getprotobynumber_r d_getprotobynumber_r
13180 eval $inlibc
13181 case "$d_getprotobynumber_r" in
13182 "$define")
13183         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13184         case "$d_getprotobynumber_r_proto:$usethreads" in
13185         ":define")      d_getprotobynumber_r_proto=define
13186                 set d_getprotobynumber_r_proto getprotobynumber_r $hdrs
13187                 eval $hasproto ;;
13188         *)      ;;
13189         esac
13190         case "$d_getprotobynumber_r_proto" in
13191         define)
13192         case "$getprotobynumber_r_proto" in
13193         ''|0) try='int getprotobynumber_r(int, struct protoent*, char*, size_t, struct protoent**);'
13194         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISBWR ;;
13195         esac
13196         case "$getprotobynumber_r_proto" in
13197         ''|0) try='struct protoent* getprotobynumber_r(int, struct protoent*, char*, int);'
13198         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=S_ISBI ;;
13199         esac
13200         case "$getprotobynumber_r_proto" in
13201         ''|0) try='int getprotobynumber_r(int, struct protoent*, struct protoent_data*);'
13202         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISD ;;
13203         esac
13204         case "$getprotobynumber_r_proto" in
13205         ''|0)   d_getprotobynumber_r=undef
13206                 getprotobynumber_r_proto=0
13207                 echo "Disabling getprotobynumber_r, cannot determine prototype." >&4 ;;
13208         * )     case "$getprotobynumber_r_proto" in
13209                 REENTRANT_PROTO*) ;;
13210                 *) getprotobynumber_r_proto="REENTRANT_PROTO_$getprotobynumber_r_proto" ;;
13211                 esac
13212                 echo "Prototype: $try" ;;
13213         esac
13214         ;;
13215         *)      case "$usethreads" in
13216                 define) echo "getprotobynumber_r has no prototype, not using it." >&4 ;;
13217                 esac
13218                 d_getprotobynumber_r=undef
13219                 getprotobynumber_r_proto=0
13220                 ;;
13221         esac
13222         ;;
13223 *)      getprotobynumber_r_proto=0
13224         ;;
13225 esac
13226
13227 : see if getprotoent_r exists
13228 set getprotoent_r d_getprotoent_r
13229 eval $inlibc
13230 case "$d_getprotoent_r" in
13231 "$define")
13232         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13233         case "$d_getprotoent_r_proto:$usethreads" in
13234         ":define")      d_getprotoent_r_proto=define
13235                 set d_getprotoent_r_proto getprotoent_r $hdrs
13236                 eval $hasproto ;;
13237         *)      ;;
13238         esac
13239         case "$d_getprotoent_r_proto" in
13240         define)
13241         case "$getprotoent_r_proto" in
13242         ''|0) try='int getprotoent_r(struct protoent*, char*, size_t, struct protoent**);'
13243         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBWR ;;
13244         esac
13245         case "$getprotoent_r_proto" in
13246         ''|0) try='int getprotoent_r(struct protoent*, char*, int);'
13247         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBI ;;
13248         esac
13249         case "$getprotoent_r_proto" in
13250         ''|0) try='struct protoent* getprotoent_r(struct protoent*, char*, int);'
13251         ./protochk "extern $try" $hdrs && getprotoent_r_proto=S_SBI ;;
13252         esac
13253         case "$getprotoent_r_proto" in
13254         ''|0) try='int getprotoent_r(struct protoent*, struct protoent_data*);'
13255         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SD ;;
13256         esac
13257         case "$getprotoent_r_proto" in
13258         ''|0)   d_getprotoent_r=undef
13259                 getprotoent_r_proto=0
13260                 echo "Disabling getprotoent_r, cannot determine prototype." >&4 ;;
13261         * )     case "$getprotoent_r_proto" in
13262                 REENTRANT_PROTO*) ;;
13263                 *) getprotoent_r_proto="REENTRANT_PROTO_$getprotoent_r_proto" ;;
13264                 esac
13265                 echo "Prototype: $try" ;;
13266         esac
13267         ;;
13268         *)      case "$usethreads" in
13269                 define) echo "getprotoent_r has no prototype, not using it." >&4 ;;
13270                 esac
13271                 d_getprotoent_r=undef
13272                 getprotoent_r_proto=0
13273                 ;;
13274         esac
13275         ;;
13276 *)      getprotoent_r_proto=0
13277         ;;
13278 esac
13279
13280 : see if prototypes for various getprotoxxx netdb.h functions are available
13281 echo " "
13282 set d_getprotoprotos getprotoent $i_netdb netdb.h
13283 eval $hasproto
13284
13285 : see if getprpwnam exists
13286 set getprpwnam d_getprpwnam
13287 eval $inlibc
13288
13289 : see if getpwent exists
13290 set getpwent d_getpwent
13291 eval $inlibc
13292
13293 : see if getpwent_r exists
13294 set getpwent_r d_getpwent_r
13295 eval $inlibc
13296 case "$d_getpwent_r" in
13297 "$define")
13298         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13299         case "$d_getpwent_r_proto:$usethreads" in
13300         ":define")      d_getpwent_r_proto=define
13301                 set d_getpwent_r_proto getpwent_r $hdrs
13302                 eval $hasproto ;;
13303         *)      ;;
13304         esac
13305         case "$d_getpwent_r_proto" in
13306         define)
13307         case "$getpwent_r_proto" in
13308         ''|0) try='int getpwent_r(struct passwd*, char*, size_t, struct passwd**);'
13309         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBWR ;;
13310         esac
13311         case "$getpwent_r_proto" in
13312         ''|0) try='int getpwent_r(struct passwd*, char*, int, struct passwd**);'
13313         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIR ;;
13314         esac
13315         case "$getpwent_r_proto" in
13316         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, size_t);'
13317         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBW ;;
13318         esac
13319         case "$getpwent_r_proto" in
13320         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, int);'
13321         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBI ;;
13322         esac
13323         case "$getpwent_r_proto" in
13324         ''|0) try='int getpwent_r(struct passwd*, char*, int);'
13325         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBI ;;
13326         esac
13327         case "$getpwent_r_proto" in
13328         ''|0) try='int getpwent_r(struct passwd*, char*, int, FILE**);'
13329         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIH ;;
13330         esac
13331         case "$getpwent_r_proto" in
13332         ''|0)   d_getpwent_r=undef
13333                 getpwent_r_proto=0
13334                 echo "Disabling getpwent_r, cannot determine prototype." >&4 ;;
13335         * )     case "$getpwent_r_proto" in
13336                 REENTRANT_PROTO*) ;;
13337                 *) getpwent_r_proto="REENTRANT_PROTO_$getpwent_r_proto" ;;
13338                 esac
13339                 echo "Prototype: $try" ;;
13340         esac
13341         ;;
13342         *)      case "$usethreads" in
13343                 define) echo "getpwent_r has no prototype, not using it." >&4 ;;
13344                 esac
13345                 d_getpwent_r=undef
13346                 getpwent_r_proto=0
13347                 ;;
13348         esac
13349         ;;
13350 *)      getpwent_r_proto=0
13351         ;;
13352 esac
13353
13354 : see if getpwnam_r exists
13355 set getpwnam_r d_getpwnam_r
13356 eval $inlibc
13357 case "$d_getpwnam_r" in
13358 "$define")
13359         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13360         case "$d_getpwnam_r_proto:$usethreads" in
13361         ":define")      d_getpwnam_r_proto=define
13362                 set d_getpwnam_r_proto getpwnam_r $hdrs
13363                 eval $hasproto ;;
13364         *)      ;;
13365         esac
13366         case "$d_getpwnam_r_proto" in
13367         define)
13368         case "$getpwnam_r_proto" in
13369         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);'
13370         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBWR ;;
13371         esac
13372         case "$getpwnam_r_proto" in
13373         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int, struct passwd**);'
13374         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBIR ;;
13375         esac
13376         case "$getpwnam_r_proto" in
13377         ''|0) try='struct passwd* getpwnam_r(const char*, struct passwd*, char*, int);'
13378         ./protochk "extern $try" $hdrs && getpwnam_r_proto=S_CSBI ;;
13379         esac
13380         case "$getpwnam_r_proto" in
13381         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int);'
13382         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBI ;;
13383         esac
13384         case "$getpwnam_r_proto" in
13385         ''|0)   d_getpwnam_r=undef
13386                 getpwnam_r_proto=0
13387                 echo "Disabling getpwnam_r, cannot determine prototype." >&4 ;;
13388         * )     case "$getpwnam_r_proto" in
13389                 REENTRANT_PROTO*) ;;
13390                 *) getpwnam_r_proto="REENTRANT_PROTO_$getpwnam_r_proto" ;;
13391                 esac
13392                 echo "Prototype: $try" ;;
13393         esac
13394         ;;
13395         *)      case "$usethreads" in
13396                 define) echo "getpwnam_r has no prototype, not using it." >&4 ;;
13397                 esac
13398                 d_getpwnam_r=undef
13399                 getpwnam_r_proto=0
13400                 ;;
13401         esac
13402         ;;
13403 *)      getpwnam_r_proto=0
13404         ;;
13405 esac
13406
13407 : see if getpwuid_r exists
13408 set getpwuid_r d_getpwuid_r
13409 eval $inlibc
13410 case "$d_getpwuid_r" in
13411 "$define")
13412         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13413         case "$d_getpwuid_r_proto:$usethreads" in
13414         ":define")      d_getpwuid_r_proto=define
13415                 set d_getpwuid_r_proto getpwuid_r $hdrs
13416                 eval $hasproto ;;
13417         *)      ;;
13418         esac
13419         case "$d_getpwuid_r_proto" in
13420         define)
13421         case "$getpwuid_r_proto" in
13422         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**);'
13423         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBWR ;;
13424         esac
13425         case "$getpwuid_r_proto" in
13426         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int, struct passwd**);'
13427         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBIR ;;
13428         esac
13429         case "$getpwuid_r_proto" in
13430         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int);'
13431         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBI ;;
13432         esac
13433         case "$getpwuid_r_proto" in
13434         ''|0) try='struct passwd* getpwuid_r(uid_t, struct passwd*, char*, int);'
13435         ./protochk "extern $try" $hdrs && getpwuid_r_proto=S_TSBI ;;
13436         esac
13437         case "$getpwuid_r_proto" in
13438         ''|0)   d_getpwuid_r=undef
13439                 getpwuid_r_proto=0
13440                 echo "Disabling getpwuid_r, cannot determine prototype." >&4 ;;
13441         * )     case "$getpwuid_r_proto" in
13442                 REENTRANT_PROTO*) ;;
13443                 *) getpwuid_r_proto="REENTRANT_PROTO_$getpwuid_r_proto" ;;
13444                 esac
13445                 echo "Prototype: $try" ;;
13446         esac
13447         ;;
13448         *)      case "$usethreads" in
13449                 define) echo "getpwuid_r has no prototype, not using it." >&4 ;;
13450                 esac
13451                 d_getpwuid_r=undef
13452                 getpwuid_r_proto=0
13453                 ;;
13454         esac
13455         ;;
13456 *)      getpwuid_r_proto=0
13457         ;;
13458 esac
13459
13460
13461 : see if getservbyname exists
13462 set getservbyname d_getsbyname
13463 eval $inlibc
13464
13465 : see if getservbyport exists
13466 set getservbyport d_getsbyport
13467 eval $inlibc
13468
13469 : see if getservent exists
13470 set getservent d_getsent
13471 eval $inlibc
13472
13473 : see if getservbyname_r exists
13474 set getservbyname_r d_getservbyname_r
13475 eval $inlibc
13476 case "$d_getservbyname_r" in
13477 "$define")
13478         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13479         case "$d_getservbyname_r_proto:$usethreads" in
13480         ":define")      d_getservbyname_r_proto=define
13481                 set d_getservbyname_r_proto getservbyname_r $hdrs
13482                 eval $hasproto ;;
13483         *)      ;;
13484         esac
13485         case "$d_getservbyname_r_proto" in
13486         define)
13487         case "$getservbyname_r_proto" in
13488         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, char*, size_t, struct servent**);'
13489         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSBWR ;;
13490         esac
13491         case "$getservbyname_r_proto" in
13492         ''|0) try='struct servent* getservbyname_r(const char*, const char*, struct servent*, char*, int);'
13493         ./protochk "extern $try" $hdrs && getservbyname_r_proto=S_CCSBI ;;
13494         esac
13495         case "$getservbyname_r_proto" in
13496         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, struct servent_data*);'
13497         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSD ;;
13498         esac
13499         case "$getservbyname_r_proto" in
13500         ''|0)   d_getservbyname_r=undef
13501                 getservbyname_r_proto=0
13502                 echo "Disabling getservbyname_r, cannot determine prototype." >&4 ;;
13503         * )     case "$getservbyname_r_proto" in
13504                 REENTRANT_PROTO*) ;;
13505                 *) getservbyname_r_proto="REENTRANT_PROTO_$getservbyname_r_proto" ;;
13506                 esac
13507                 echo "Prototype: $try" ;;
13508         esac
13509         ;;
13510         *)      case "$usethreads" in
13511                 define) echo "getservbyname_r has no prototype, not using it." >&4 ;;
13512                 esac
13513                 d_getservbyname_r=undef
13514                 getservbyname_r_proto=0
13515                 ;;
13516         esac
13517         ;;
13518 *)      getservbyname_r_proto=0
13519         ;;
13520 esac
13521
13522 : see if getservbyport_r exists
13523 set getservbyport_r d_getservbyport_r
13524 eval $inlibc
13525 case "$d_getservbyport_r" in
13526 "$define")
13527         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13528         case "$d_getservbyport_r_proto:$usethreads" in
13529         ":define")      d_getservbyport_r_proto=define
13530                 set d_getservbyport_r_proto getservbyport_r $hdrs
13531                 eval $hasproto ;;
13532         *)      ;;
13533         esac
13534         case "$d_getservbyport_r_proto" in
13535         define)
13536         case "$getservbyport_r_proto" in
13537         ''|0) try='int getservbyport_r(int, const char*, struct servent*, char*, size_t, struct servent**);'
13538         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSBWR ;;
13539         esac
13540         case "$getservbyport_r_proto" in
13541         ''|0) try='struct servent* getservbyport_r(int, const char*, struct servent*, char*, int);'
13542         ./protochk "extern $try" $hdrs && getservbyport_r_proto=S_ICSBI ;;
13543         esac
13544         case "$getservbyport_r_proto" in
13545         ''|0) try='int getservbyport_r(int, const char*, struct servent*, struct servent_data*);'
13546         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSD ;;
13547         esac
13548         case "$getservbyport_r_proto" in
13549         ''|0)   d_getservbyport_r=undef
13550                 getservbyport_r_proto=0
13551                 echo "Disabling getservbyport_r, cannot determine prototype." >&4 ;;
13552         * )     case "$getservbyport_r_proto" in
13553                 REENTRANT_PROTO*) ;;
13554                 *) getservbyport_r_proto="REENTRANT_PROTO_$getservbyport_r_proto" ;;
13555                 esac
13556                 echo "Prototype: $try" ;;
13557         esac
13558         ;;
13559         *)      case "$usethreads" in
13560                 define) echo "getservbyport_r has no prototype, not using it." >&4 ;;
13561                 esac
13562                 d_getservbyport_r=undef
13563                 getservbyport_r_proto=0
13564                 ;;
13565         esac
13566         ;;
13567 *)      getservbyport_r_proto=0
13568         ;;
13569 esac
13570
13571 : see if getservent_r exists
13572 set getservent_r d_getservent_r
13573 eval $inlibc
13574 case "$d_getservent_r" in
13575 "$define")
13576         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13577         case "$d_getservent_r_proto:$usethreads" in
13578         ":define")      d_getservent_r_proto=define
13579                 set d_getservent_r_proto getservent_r $hdrs
13580                 eval $hasproto ;;
13581         *)      ;;
13582         esac
13583         case "$d_getservent_r_proto" in
13584         define)
13585         case "$getservent_r_proto" in
13586         ''|0) try='int getservent_r(struct servent*, char*, size_t, struct servent**);'
13587         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBWR ;;
13588         esac
13589         case "$getservent_r_proto" in
13590         ''|0) try='int getservent_r(struct servent*, char*, int);'
13591         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBI ;;
13592         esac
13593         case "$getservent_r_proto" in
13594         ''|0) try='struct servent* getservent_r(struct servent*, char*, int);'
13595         ./protochk "extern $try" $hdrs && getservent_r_proto=S_SBI ;;
13596         esac
13597         case "$getservent_r_proto" in
13598         ''|0) try='int getservent_r(struct servent*, struct servent_data*);'
13599         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SD ;;
13600         esac
13601         case "$getservent_r_proto" in
13602         ''|0)   d_getservent_r=undef
13603                 getservent_r_proto=0
13604                 echo "Disabling getservent_r, cannot determine prototype." >&4 ;;
13605         * )     case "$getservent_r_proto" in
13606                 REENTRANT_PROTO*) ;;
13607                 *) getservent_r_proto="REENTRANT_PROTO_$getservent_r_proto" ;;
13608                 esac
13609                 echo "Prototype: $try" ;;
13610         esac
13611         ;;
13612         *)      case "$usethreads" in
13613                 define) echo "getservent_r has no prototype, not using it." >&4 ;;
13614                 esac
13615                 d_getservent_r=undef
13616                 getservent_r_proto=0
13617                 ;;
13618         esac
13619         ;;
13620 *)      getservent_r_proto=0
13621         ;;
13622 esac
13623
13624 : see if prototypes for various getservxxx netdb.h functions are available
13625 echo " "
13626 set d_getservprotos getservent $i_netdb netdb.h
13627 eval $hasproto
13628
13629 : see if getspnam exists
13630 set getspnam d_getspnam
13631 eval $inlibc
13632
13633 : see if this is a shadow.h system
13634 set shadow.h i_shadow
13635 eval $inhdr
13636
13637 : see if getspnam_r exists
13638 set getspnam_r d_getspnam_r
13639 eval $inlibc
13640 case "$d_getspnam_r" in
13641 "$define")
13642         hdrs="$i_systypes sys/types.h define stdio.h $i_shadow shadow.h"
13643         case "$d_getspnam_r_proto:$usethreads" in
13644         ":define")      d_getspnam_r_proto=define
13645                 set d_getspnam_r_proto getspnam_r $hdrs
13646                 eval $hasproto ;;
13647         *)      ;;
13648         esac
13649         case "$d_getspnam_r_proto" in
13650         define)
13651         case "$getspnam_r_proto" in
13652         ''|0) try='int getspnam_r(const char*, struct spwd*, char*, size_t, struct spwd**);'
13653         ./protochk "extern $try" $hdrs && getspnam_r_proto=I_CSBWR ;;
13654         esac
13655         case "$getspnam_r_proto" in
13656         ''|0) try='struct spwd* getspnam_r(const char*, struct spwd*, char*, int);'
13657         ./protochk "extern $try" $hdrs && getspnam_r_proto=S_CSBI ;;
13658         esac
13659         case "$getspnam_r_proto" in
13660         ''|0)   d_getspnam_r=undef
13661                 getspnam_r_proto=0
13662                 echo "Disabling getspnam_r, cannot determine prototype." >&4 ;;
13663         * )     case "$getspnam_r_proto" in
13664                 REENTRANT_PROTO*) ;;
13665                 *) getspnam_r_proto="REENTRANT_PROTO_$getspnam_r_proto" ;;
13666                 esac
13667                 echo "Prototype: $try" ;;
13668         esac
13669         ;;
13670         *)      case "$usethreads" in
13671                 define) echo "getspnam_r has no prototype, not using it." >&4 ;;
13672                 esac
13673                 d_getspnam_r=undef
13674                 getspnam_r_proto=0
13675                 ;;
13676         esac
13677         ;;
13678 *)      getspnam_r_proto=0
13679         ;;
13680 esac
13681
13682 : see if gettimeofday or ftime exists
13683 set gettimeofday d_gettimeod
13684 eval $inlibc
13685 case "$d_gettimeod" in
13686 "$undef")
13687         set ftime d_ftime 
13688         eval $inlibc
13689         ;;
13690 *)
13691         val="$undef"; set d_ftime; eval $setvar
13692         ;;
13693 esac
13694 case "$d_gettimeod$d_ftime" in
13695 "$undef$undef")
13696         echo " "
13697         echo 'No ftime() nor gettimeofday() -- timing may be less accurate.' >&4
13698         ;;
13699 esac
13700
13701 : see if gmtime_r exists
13702 set gmtime_r d_gmtime_r
13703 eval $inlibc
13704 case "$d_gmtime_r" in
13705 "$define")
13706         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
13707         case "$d_gmtime_r_proto:$usethreads" in
13708         ":define")      d_gmtime_r_proto=define
13709                 set d_gmtime_r_proto gmtime_r $hdrs
13710                 eval $hasproto ;;
13711         *)      ;;
13712         esac
13713         case "$d_gmtime_r_proto" in
13714         define)
13715         case "$gmtime_r_proto" in
13716         ''|0) try='struct tm* gmtime_r(const time_t*, struct tm*);'
13717         ./protochk "extern $try" $hdrs && gmtime_r_proto=S_TS ;;
13718         esac
13719         case "$gmtime_r_proto" in
13720         ''|0) try='int gmtime_r(const time_t*, struct tm*);'
13721         ./protochk "extern $try" $hdrs && gmtime_r_proto=I_TS ;;
13722         esac
13723         case "$gmtime_r_proto" in
13724         ''|0)   d_gmtime_r=undef
13725                 gmtime_r_proto=0
13726                 echo "Disabling gmtime_r, cannot determine prototype." >&4 ;;
13727         * )     case "$gmtime_r_proto" in
13728                 REENTRANT_PROTO*) ;;
13729                 *) gmtime_r_proto="REENTRANT_PROTO_$gmtime_r_proto" ;;
13730                 esac
13731                 echo "Prototype: $try" ;;
13732         esac
13733         ;;
13734         *)      case "$usethreads" in
13735                 define) echo "gmtime_r has no prototype, not using it." >&4 ;;
13736                 esac
13737                 d_gmtime_r=undef
13738                 gmtime_r_proto=0
13739                 ;;
13740         esac
13741         ;;
13742 *)      gmtime_r_proto=0
13743         ;;
13744 esac
13745
13746 : see if hasmntopt exists
13747 set hasmntopt d_hasmntopt
13748 eval $inlibc
13749
13750 : see if this is a netinet/in.h or sys/in.h system
13751 set netinet/in.h i_niin sys/in.h i_sysin
13752 eval $inhdr
13753
13754 : see if arpa/inet.h has to be included
13755 set arpa/inet.h i_arpainet
13756 eval $inhdr
13757
13758 : see if htonl --and friends-- exists
13759 val=''
13760 set htonl val
13761 eval $inlibc
13762
13763 : Maybe they are macros.
13764 case "$val" in
13765 $undef)
13766         $cat >htonl.c <<EOM
13767 #include <stdio.h>
13768 #include <sys/types.h>
13769 #$i_niin I_NETINET_IN
13770 #$i_sysin I_SYS_IN
13771 #$i_arpainet I_ARPA_INET
13772 #ifdef I_NETINET_IN
13773 #include <netinet/in.h>
13774 #endif
13775 #ifdef I_SYS_IN
13776 #include <sys/in.h>
13777 #endif
13778 #ifdef I_ARPA_INET
13779 #include <arpa/inet.h>
13780 #endif
13781 #ifdef htonl
13782 printf("Defined as a macro.");
13783 #endif
13784 EOM
13785         $cppstdin $cppflags $cppminus < htonl.c >htonl.E 2>/dev/null
13786         if $contains 'Defined as a macro' htonl.E >/dev/null 2>&1; then
13787                 val="$define"
13788                 echo "But it seems to be defined as a macro." >&4
13789         fi
13790         $rm -f htonl.?
13791         ;;
13792 esac
13793 set d_htonl
13794 eval $setvar
13795
13796 : see if ilogbl exists
13797 set ilogbl d_ilogbl
13798 eval $inlibc
13799
13800 : index or strchr
13801 echo " "
13802 if set index val -f; eval $csym; $val; then
13803         if set strchr val -f d_strchr; eval $csym; $val; then
13804                 if $contains strchr "$strings" >/dev/null 2>&1 ; then
13805                         val="$define"
13806                         vali="$undef"
13807                         echo "strchr() found." >&4
13808                 else
13809                         val="$undef"
13810                         vali="$define"
13811                         echo "index() found." >&4
13812                 fi
13813         else
13814                 val="$undef"
13815                 vali="$define"
13816                 echo "index() found." >&4
13817         fi
13818 else
13819         if set strchr val -f d_strchr; eval $csym; $val; then
13820                 val="$define"
13821                 vali="$undef"
13822                 echo "strchr() found." >&4
13823         else
13824                 echo "No index() or strchr() found!" >&4
13825                 val="$undef"
13826                 vali="$undef"
13827         fi
13828 fi
13829 set d_strchr; eval $setvar
13830 val="$vali"
13831 set d_index; eval $setvar
13832
13833 : check whether inet_aton exists
13834 set inet_aton d_inetaton
13835 eval $inlibc
13836
13837 : Look for isascii
13838 echo " "
13839 $cat >isascii.c <<EOCP
13840 #include <stdio.h>
13841 #include <ctype.h>
13842 #$i_stdlib I_STDLIB
13843 #ifdef I_STDLIB
13844 #include <stdlib.h>
13845 #endif
13846 int main() {
13847         int c = 'A';
13848         if (isascii(c))
13849                 exit(0);
13850         else
13851                 exit(1);
13852 }
13853 EOCP
13854 set isascii
13855 if eval $compile; then
13856         echo "isascii() found." >&4
13857         val="$define"
13858 else
13859         echo "isascii() NOT found." >&4
13860         val="$undef"
13861 fi
13862 set d_isascii
13863 eval $setvar
13864 $rm -f isascii*
13865
13866 : see if isfinite exists
13867 set isfinite d_isfinite
13868 eval $inlibc
13869
13870 : see if isinf exists
13871 set isinf d_isinf
13872 eval $inlibc
13873
13874 : see if isnan exists
13875 set isnan d_isnan
13876 eval $inlibc
13877
13878 : see if isnanl exists
13879 set isnanl d_isnanl
13880 eval $inlibc
13881
13882 : see if killpg exists
13883 set killpg d_killpg
13884 eval $inlibc
13885
13886 : see if lchown exists
13887 echo " "
13888 $cat > try.c <<'EOCP'
13889 /* System header to define __stub macros and hopefully few prototypes,
13890     which can conflict with char lchown(); below.  */
13891 #include <assert.h>
13892 /* Override any gcc2 internal prototype to avoid an error.  */
13893 /* We use char because int might match the return type of a gcc2
13894    builtin and then its argument prototype would still apply.  */
13895 char lchown();
13896 int main() {
13897     /*  The GNU C library defines this for functions which it implements
13898         to always fail with ENOSYS.  Some functions are actually named
13899         something starting with __ and the normal name is an alias.  */
13900 #if defined (__stub_lchown) || defined (__stub___lchown)
13901 choke me
13902 #else
13903 lchown();
13904 #endif
13905 ; return 0; }
13906 EOCP
13907 set try
13908 if eval $compile; then
13909     $echo "lchown() found." >&4
13910     val="$define"
13911 else
13912     $echo "lchown() NOT found." >&4
13913     val="$undef"
13914 fi
13915 set d_lchown
13916 eval $setvar
13917
13918 : See if number of significant digits in a double precision number is known
13919 echo " "
13920 $cat >ldbl_dig.c <<EOM
13921 #$i_limits I_LIMITS
13922 #$i_float I_FLOAT
13923 #ifdef I_LIMITS
13924 #include <limits.h>
13925 #endif
13926 #ifdef I_FLOAT
13927 #include <float.h>
13928 #endif
13929 #ifdef LDBL_DIG
13930 printf("Contains LDBL_DIG");
13931 #endif
13932 EOM
13933 $cppstdin $cppflags $cppminus < ldbl_dig.c >ldbl_dig.E 2>/dev/null
13934 if $contains 'LDBL_DIG' ldbl_dig.E >/dev/null 2>&1; then
13935         echo "LDBL_DIG found." >&4
13936         val="$define"
13937 else
13938         echo "LDBL_DIG NOT found." >&4
13939         val="$undef"
13940 fi
13941 $rm -f ldbl_dig.?
13942 set d_ldbl_dig
13943 eval $setvar
13944
13945 : see if link exists
13946 set link d_link
13947 eval $inlibc
13948
13949 : see if localtime_r exists
13950 set localtime_r d_localtime_r
13951 eval $inlibc
13952 case "$d_localtime_r" in
13953 "$define")
13954         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
13955         case "$d_localtime_r_proto:$usethreads" in
13956         ":define")      d_localtime_r_proto=define
13957                 set d_localtime_r_proto localtime_r $hdrs
13958                 eval $hasproto ;;
13959         *)      ;;
13960         esac
13961         case "$d_localtime_r_proto" in
13962         define)
13963         case "$localtime_r_proto" in
13964         ''|0) try='struct tm* localtime_r(const time_t*, struct tm*);'
13965         ./protochk "extern $try" $hdrs && localtime_r_proto=S_TS ;;
13966         esac
13967         case "$localtime_r_proto" in
13968         ''|0) try='int localtime_r(const time_t*, struct tm*);'
13969         ./protochk "extern $try" $hdrs && localtime_r_proto=I_TS ;;
13970         esac
13971         case "$localtime_r_proto" in
13972         ''|0)   d_localtime_r=undef
13973                 localtime_r_proto=0
13974                 echo "Disabling localtime_r, cannot determine prototype." >&4 ;;
13975         * )     case "$localtime_r_proto" in
13976                 REENTRANT_PROTO*) ;;
13977                 *) localtime_r_proto="REENTRANT_PROTO_$localtime_r_proto" ;;
13978                 esac
13979                 echo "Prototype: $try" ;;
13980         esac
13981         ;;
13982         *)      case "$usethreads" in
13983                 define) echo "localtime_r has no prototype, not using it." >&4 ;;
13984                 esac
13985                 d_localtime_r=undef
13986                 localtime_r_proto=0
13987                 ;;
13988         esac
13989         ;;
13990 *)      localtime_r_proto=0
13991         ;;
13992 esac
13993
13994 : see if localeconv exists
13995 set localeconv d_locconv
13996 eval $inlibc
13997
13998 : see if lockf exists
13999 set lockf d_lockf
14000 eval $inlibc
14001
14002 : see if prototype for lseek is available
14003 echo " "
14004 set d_lseekproto lseek $i_systypes sys/types.h $i_unistd unistd.h
14005 eval $hasproto
14006
14007 : see if lstat exists
14008 set lstat d_lstat
14009 eval $inlibc
14010
14011 : see if madvise exists
14012 set madvise d_madvise
14013 eval $inlibc
14014
14015 : see if mblen exists
14016 set mblen d_mblen
14017 eval $inlibc
14018
14019 : see if mbstowcs exists
14020 set mbstowcs d_mbstowcs
14021 eval $inlibc
14022
14023 : see if mbtowc exists
14024 set mbtowc d_mbtowc
14025 eval $inlibc
14026
14027 : see if memchr exists
14028 set memchr d_memchr
14029 eval $inlibc
14030
14031 : see if memcmp exists
14032 set memcmp d_memcmp
14033 eval $inlibc
14034
14035 : see if memcpy exists
14036 set memcpy d_memcpy
14037 eval $inlibc
14038
14039 : see if memmove exists
14040 set memmove d_memmove
14041 eval $inlibc
14042
14043 : see if memset exists
14044 set memset d_memset
14045 eval $inlibc
14046
14047 : see if mkdir exists
14048 set mkdir d_mkdir
14049 eval $inlibc
14050
14051 : see if mkdtemp exists
14052 set mkdtemp d_mkdtemp
14053 eval $inlibc
14054
14055 : see if mkfifo exists
14056 set mkfifo d_mkfifo
14057 eval $inlibc
14058
14059 : see if mkstemp exists
14060 set mkstemp d_mkstemp
14061 eval $inlibc
14062
14063 : see if mkstemps exists
14064 set mkstemps d_mkstemps
14065 eval $inlibc
14066
14067 : see if mktime exists
14068 set mktime d_mktime
14069 eval $inlibc
14070
14071 : see if this is a sys/mman.h system
14072 set sys/mman.h i_sysmman
14073 eval $inhdr
14074
14075 : see if mmap exists
14076 set mmap d_mmap
14077 eval $inlibc
14078 : see what shmat returns
14079 : default to something harmless
14080 mmaptype='void *'
14081 case "$i_sysmman$d_mmap" in
14082 "$define$define")
14083         $cat >mmap.c <<'END'
14084 #include <sys/mman.h>
14085 void *mmap();
14086 END
14087         if $cc $ccflags -c mmap.c >/dev/null 2>&1; then
14088                 mmaptype='void *'
14089         else
14090                 mmaptype='caddr_t'
14091         fi
14092         echo "and it returns ($mmaptype)." >&4
14093         ;;
14094 esac
14095
14096
14097
14098 : see if sqrtl exists
14099 set sqrtl d_sqrtl
14100 eval $inlibc
14101
14102 : see if scalbnl exists
14103 set scalbnl d_scalbnl
14104 eval $inlibc
14105
14106 : see if modfl exists
14107 set modfl d_modfl
14108 eval $inlibc
14109
14110 : see if prototype for modfl is available
14111 echo " "
14112 set d_modflproto modfl math.h
14113 eval $hasproto
14114
14115 d_modfl_pow32_bug="$undef"
14116
14117 case "$d_longdbl$d_modfl" in
14118 $define$define)
14119         $cat <<EOM
14120 Checking to see whether your modfl() is okay for large values...
14121 EOM
14122 $cat >try.c <<EOCP
14123 #include <math.h> 
14124 #include <stdio.h>
14125 EOCP
14126 if $test "X$d_modflproto" != "X$define"; then
14127         $cat >>try.c <<EOCP
14128 /* Sigh. many current glibcs provide the function, but do not prototype it.  */ 
14129 long double modfl (long double, long double *);
14130 EOCP
14131 fi
14132 $cat >>try.c <<EOCP
14133 int main() {
14134     long double nv = 4294967303.15;
14135     long double v, w;
14136     v = modfl(nv, &w);         
14137 #ifdef __GLIBC__
14138     printf("glibc");
14139 #endif
14140     printf(" %"$sPRIfldbl" %"$sPRIfldbl" %"$sPRIfldbl"\n", nv, v, w);
14141     return 0;
14142 }
14143 EOCP
14144         case "$osname:$gccversion" in
14145         aix:)   saveccflags="$ccflags"
14146                 ccflags="$ccflags -qlongdouble" ;; # to avoid core dump
14147         esac
14148         set try
14149         if eval $compile; then
14150                 foo=`$run ./try`
14151                 case "$foo" in
14152                 *" 4294967303.150000 1.150000 4294967302.000000")
14153                         echo >&4 "Your modfl() is broken for large values."
14154                         d_modfl_pow32_bug="$define"
14155                         case "$foo" in
14156                         glibc)  echo >&4 "You should upgrade your glibc to at least 2.2.2 to get a fixed modfl()."
14157                         ;;
14158                         esac
14159                         ;;
14160                 *" 4294967303.150000 0.150000 4294967303.000000")
14161                         echo >&4 "Your modfl() seems okay for large values."
14162                         ;;
14163                 *)      echo >&4 "I don't understand your modfl() at all."
14164                         d_modfl="$undef"
14165                         ;;
14166                 esac
14167                 $rm -f try.* try core core.try.*
14168         else
14169                 echo "I cannot figure out whether your modfl() is okay, assuming it isn't."
14170                 d_modfl="$undef"
14171         fi
14172         case "$osname:$gccversion" in
14173         aix:)   ccflags="$saveccflags" ;; # restore
14174         esac
14175         ;;
14176 esac
14177
14178 if $test "$uselongdouble" = "$define"; then
14179     message=""
14180     if $test "$d_sqrtl" != "$define"; then
14181         message="$message sqrtl"
14182     fi
14183     if $test "$d_modfl" != "$define"; then
14184         if $test "$d_aintl:$d_copysignl" = "$define:$define"; then
14185             echo "You have both aintl and copysignl, so I can emulate modfl."
14186         else
14187             message="$message modfl"
14188         fi
14189     fi
14190     if $test "$d_frexpl" != "$define"; then
14191         if $test "$d_ilogbl:$d_scalbnl" = "$define:$define"; then
14192             echo "You have both ilogbl and scalbnl, so I can emulate frexpl."
14193         else
14194             message="$message frexpl"
14195         fi
14196     fi
14197
14198     if $test "$message" != ""; then
14199         $cat <<EOM >&4
14200
14201 *** You requested the use of long doubles but you do not seem to have
14202 *** the following mathematical functions needed for long double support:
14203 ***    $message
14204 *** Please rerun Configure without -Duselongdouble and/or -Dusemorebits.
14205 *** Cannot continue, aborting.
14206
14207 EOM
14208
14209         exit 1
14210     fi
14211 fi
14212
14213 : see if mprotect exists
14214 set mprotect d_mprotect
14215 eval $inlibc
14216
14217 : see if msgctl exists
14218 set msgctl d_msgctl
14219 eval $inlibc
14220
14221 : see if msgget exists
14222 set msgget d_msgget
14223 eval $inlibc
14224
14225 : see if msgsnd exists
14226 set msgsnd d_msgsnd
14227 eval $inlibc
14228
14229 : see if msgrcv exists
14230 set msgrcv d_msgrcv
14231 eval $inlibc
14232
14233 : see how much of the 'msg*(2)' library is present.
14234 h_msg=true
14235 echo " "
14236 case "$d_msgctl$d_msgget$d_msgsnd$d_msgrcv" in
14237 *"$undef"*) h_msg=false;;
14238 esac
14239 case "$osname" in
14240 freebsd)
14241     case "`ipcs 2>&1`" in
14242     "SVID messages"*"not configured"*)
14243         echo "Your $osname does not have the msg*(2) configured." >&4
14244         h_msg=false
14245         val="$undef"
14246         set msgctl d_msgctl
14247         eval $setvar
14248         set msgget d_msgget
14249         eval $setvar
14250         set msgsnd d_msgsnd
14251         eval $setvar
14252         set msgrcv d_msgrcv
14253         eval $setvar
14254         ;;
14255     esac
14256     ;;
14257 esac
14258 : we could also check for sys/ipc.h ...
14259 if $h_msg && $test `./findhdr sys/msg.h`; then
14260         echo "You have the full msg*(2) library." >&4
14261         val="$define"
14262 else
14263         echo "You don't have the full msg*(2) library." >&4
14264         val="$undef"
14265 fi
14266 set d_msg
14267 eval $setvar
14268
14269
14270 echo " "
14271 echo "Checking to see if your system supports struct msghdr..." >&4
14272 set d_msghdr_s msghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
14273 eval $hasstruct
14274 case "$d_msghdr_s" in
14275 "$define")      echo "Yes, it does."   ;;
14276 *)              echo "No, it doesn't." ;;
14277 esac
14278
14279
14280 : see if msync exists
14281 set msync d_msync
14282 eval $inlibc
14283
14284 : see if munmap exists
14285 set munmap d_munmap
14286 eval $inlibc
14287
14288 : see if nice exists
14289 set nice d_nice
14290 eval $inlibc
14291
14292 : see if this is a langinfo.h system
14293 set langinfo.h i_langinfo
14294 eval $inhdr
14295
14296 : see if nl_langinfo exists
14297 set nl_langinfo d_nl_langinfo
14298 eval $inlibc
14299
14300 : check for length of character
14301 echo " "
14302 case "$charsize" in
14303 '')
14304         echo "Checking to see how big your characters are (hey, you never know)..." >&4
14305         $cat >try.c <<EOCP
14306 #include <stdio.h>
14307 #$i_stdlib I_STDLIB
14308 #ifdef I_STDLIB
14309 #include <stdlib.h>
14310 #endif
14311 int main()
14312 {
14313     printf("%d\n", (int)sizeof(char));
14314     exit(0);
14315 }
14316 EOCP
14317         set try
14318         if eval $compile_ok; then
14319                 dflt=`$run ./try`
14320         else
14321                 dflt='1'
14322                 echo "(I can't seem to compile the test program.  Guessing...)"
14323         fi
14324         ;;
14325 *)
14326         dflt="$charsize"
14327         ;;
14328 esac
14329 rp="What is the size of a character (in bytes)?"
14330 . ./myread
14331 charsize="$ans"
14332 $rm -f try.c try
14333
14334 : check for volatile keyword
14335 echo " "
14336 echo 'Checking to see if your C compiler knows about "volatile"...' >&4
14337 $cat >try.c <<'EOCP'
14338 int main()
14339 {
14340         typedef struct _goo_struct goo_struct;
14341         goo_struct * volatile goo = ((goo_struct *)0);
14342         struct _goo_struct {
14343                 long long_int;
14344                 int reg_int;
14345                 char char_var;
14346         };
14347         typedef unsigned short foo_t;
14348         char *volatile foo;
14349         volatile int bar;
14350         volatile foo_t blech;
14351         foo = foo;
14352 }
14353 EOCP
14354 if $cc -c $ccflags try.c >/dev/null 2>&1 ; then
14355         val="$define"
14356         echo "Yup, it does."
14357 else
14358         val="$undef"
14359         echo "Nope, it doesn't."
14360 fi
14361 set d_volatile
14362 eval $setvar
14363 $rm -f try.*
14364
14365
14366 echo " "
14367 $echo "Choosing the C types to be used for Perl's internal types..." >&4
14368
14369 case "$use64bitint:$d_quad:$quadtype" in
14370 define:define:?*)
14371         ivtype="$quadtype"
14372         uvtype="$uquadtype"
14373         ivsize=8
14374         uvsize=8
14375         ;;
14376 *)      ivtype="long"
14377         uvtype="unsigned long"
14378         ivsize=$longsize
14379         uvsize=$longsize
14380         ;;
14381 esac
14382
14383 case "$uselongdouble:$d_longdbl" in
14384 define:define)
14385         nvtype="long double"
14386         nvsize=$longdblsize
14387         ;;
14388 *)      nvtype=double
14389         nvsize=$doublesize
14390         ;;
14391 esac
14392
14393 $echo "(IV will be "$ivtype", $ivsize bytes)"
14394 $echo "(UV will be "$uvtype", $uvsize bytes)"
14395 $echo "(NV will be "$nvtype", $nvsize bytes)"
14396
14397 $cat >try.c <<EOCP
14398 #$i_inttypes I_INTTYPES
14399 #ifdef I_INTTYPES
14400 #include <inttypes.h>
14401 #endif
14402 #include <stdio.h>
14403 int main() {
14404 #ifdef INT8
14405    int8_t i =  INT8_MAX;
14406   uint8_t u = UINT8_MAX;
14407   printf("int8_t\n");
14408 #endif
14409 #ifdef INT16
14410    int16_t i =  INT16_MAX;
14411   uint16_t i = UINT16_MAX;
14412   printf("int16_t\n");
14413 #endif
14414 #ifdef INT32
14415    int32_t i =  INT32_MAX;
14416   uint32_t u = UINT32_MAX;
14417   printf("int32_t\n");
14418 #endif
14419 }
14420 EOCP
14421
14422 case "$i8type" in
14423 '')     case "$charsize" in
14424         1)      i8type=char
14425                 u8type="unsigned char"
14426                 i8size=$charsize
14427                 u8size=$charsize
14428                 ;;
14429         esac
14430         ;;
14431 esac
14432 case "$i8type" in
14433 '')     set try -DINT8
14434         if eval $compile; then
14435                 case "`$run ./try`" in
14436                 int8_t) i8type=int8_t
14437                         u8type=uint8_t
14438                         i8size=1
14439                         u8size=1
14440                         ;;
14441                 esac
14442         fi
14443         ;;
14444 esac
14445 case "$i8type" in
14446 '')     if $test $charsize -ge 1; then
14447                 i8type=char
14448                 u8type="unsigned char"
14449                 i8size=$charsize
14450                 u8size=$charsize
14451         fi
14452         ;;
14453 esac
14454
14455 case "$i16type" in
14456 '')     case "$shortsize" in
14457         2)      i16type=short
14458                 u16type="unsigned short"
14459                 i16size=$shortsize
14460                 u16size=$shortsize
14461                 ;;
14462         esac
14463         ;;
14464 esac
14465 case "$i16type" in
14466 '')     set try -DINT16
14467         if eval $compile; then
14468                 case "`$run ./try`" in
14469                 int16_t)
14470                         i16type=int16_t
14471                         u16type=uint16_t
14472                         i16size=2
14473                         u16size=2
14474                         ;;
14475                 esac
14476         fi
14477         ;;
14478 esac
14479 case "$i16type" in
14480 '')     if $test $shortsize -ge 2; then
14481                 i16type=short
14482                 u16type="unsigned short"
14483                 i16size=$shortsize
14484                 u16size=$shortsize
14485         fi
14486         ;;
14487 esac
14488
14489 case "$i32type" in
14490 '')     case "$longsize" in
14491         4)      i32type=long
14492                 u32type="unsigned long"
14493                 i32size=$longsize
14494                 u32size=$longsize
14495                 ;;
14496         *)      case "$intsize" in
14497                 4)      i32type=int
14498                         u32type="unsigned int"
14499                         i32size=$intsize
14500                         u32size=$intsize
14501                         ;;
14502                 esac
14503                 ;;
14504         esac
14505         ;;
14506 esac
14507 case "$i32type" in
14508 '')     set try -DINT32
14509         if eval $compile; then
14510                 case "`$run ./try`" in
14511                 int32_t)
14512                         i32type=int32_t
14513                         u32type=uint32_t
14514                         i32size=4
14515                         u32size=4
14516                         ;;
14517                 esac
14518         fi
14519         ;;
14520 esac
14521 case "$i32type" in
14522 '')     if $test $intsize -ge 4; then
14523                 i32type=int
14524                 u32type="unsigned int"
14525                 i32size=$intsize
14526                 u32size=$intsize
14527         fi
14528         ;;
14529 esac
14530
14531 case "$i64type" in
14532 '')     case "$d_quad:$quadtype" in
14533         define:?*)
14534                 i64type="$quadtype"
14535                 u64type="$uquadtype"
14536                 i64size=8
14537                 u64size=8
14538                 ;;
14539         esac
14540         ;;
14541 esac
14542
14543 $echo "Checking how many bits of your UVs your NVs can preserve..." >&4
14544 : volatile so that the compiler has to store it out to memory.
14545 if test X"$d_volatile" = X"$define"; then
14546         volatile=volatile
14547 fi
14548 $cat <<EOP >try.c
14549 #include <stdio.h>
14550 #$i_stdlib I_STDLIB
14551 #ifdef I_STDLIB
14552 #include <stdlib.h>
14553 #endif
14554 #include <sys/types.h>
14555 #include <signal.h>
14556 #ifdef SIGFPE
14557 $volatile int bletched = 0;
14558 $signal_t blech(s) int s; { bletched = 1; }
14559 #endif
14560 int main() {
14561     $uvtype u = 0;
14562     $nvtype d;
14563     int     n = 8 * $uvsize;
14564     int     i;
14565 #ifdef SIGFPE
14566     signal(SIGFPE, blech);
14567 #endif
14568
14569     for (i = 0; i < n; i++) {
14570       u = u << 1 | ($uvtype)1;
14571       d = ($nvtype)u;
14572       if (($uvtype)d != u)
14573         break;
14574       if (d <= 0)
14575         break;
14576       d = ($nvtype)(u - 1);
14577       if (($uvtype)d != (u - 1))
14578         break;
14579 #ifdef SIGFPE
14580       if (bletched) {
14581         break;
14582 #endif
14583       } 
14584     }
14585     printf("%d\n", ((i == n) ? -n : i));
14586     exit(0);
14587 }
14588 EOP
14589 set try
14590
14591 d_nv_preserves_uv="$undef"
14592 if eval $compile; then
14593         nv_preserves_uv_bits="`$run ./try`"
14594 fi
14595 case "$nv_preserves_uv_bits" in
14596 \-[1-9]*)       
14597         nv_preserves_uv_bits=`expr 0 - $nv_preserves_uv_bits`
14598         $echo "Your NVs can preserve all $nv_preserves_uv_bits bits of your UVs."  2>&1
14599         d_nv_preserves_uv="$define"
14600         ;;
14601 [1-9]*) $echo "Your NVs can preserve only $nv_preserves_uv_bits bits of your UVs."  2>&1
14602         d_nv_preserves_uv="$undef" ;;
14603 *)      $echo "Can't figure out how many bits your NVs preserve." 2>&1
14604         nv_preserves_uv_bits="$undef" ;;
14605 esac
14606
14607 $rm -f try.* try
14608
14609
14610 : check for off64_t
14611 echo " "
14612 echo "Checking to see if you have off64_t..." >&4
14613 $cat >try.c <<EOCP
14614 #include <sys/types.h>
14615 #include <unistd.h>
14616 int main() { off64_t x = 7; }
14617 EOCP
14618 set try
14619 if eval $compile; then
14620         val="$define"
14621         echo "You have off64_t."
14622 else
14623         val="$undef"
14624         echo "You do not have off64_t."
14625         case "$lseeksize" in
14626         8) echo "(Your off_t is 64 bits, so you could use that.)" ;;
14627         esac
14628 fi
14629 $rm -f try.* try
14630 set d_off64_t
14631 eval $setvar
14632
14633 : how to create joinable pthreads
14634 if test "X$usethreads" = "X$define" -a "X$i_pthread" = "X$define"; then
14635         echo " "
14636         echo "Checking what constant to use for creating joinable pthreads..." >&4 
14637         $cat >try.c <<'EOCP'
14638 #include <pthread.h>
14639 int main() {
14640     int detachstate = JOINABLE;
14641 }
14642 EOCP
14643         set try -DJOINABLE=PTHREAD_CREATE_JOINABLE
14644         if eval $compile; then
14645                 echo "You seem to use PTHREAD_CREATE_JOINABLE." >&4
14646                 val="$undef" # Yes, undef.
14647                 set d_old_pthread_create_joinable
14648                 eval $setvar
14649                 val=""
14650                 set old_pthread_create_joinable
14651                 eval $setvar
14652         else
14653                 set try -DJOINABLE=PTHREAD_CREATE_UNDETACHED
14654                 if eval $compile; then
14655                         echo "You seem to use PTHREAD_CREATE_UNDETACHED." >&4
14656                         val="$define"
14657                         set d_old_pthread_create_joinable
14658                         eval $setvar
14659                         val=PTHREAD_CREATE_UNDETACHED
14660                         set old_pthread_create_joinable
14661                         eval $setvar
14662                 else            
14663                         set try -DJOINABLE=__UNDETACHED
14664                         if eval $compile; then
14665                                 echo "You seem to use __UNDETACHED." >&4
14666                                 val="$define"
14667                                 set d_old_pthread_create_joinable
14668                                 eval $setvar
14669                                 val=__UNDETACHED
14670                                 set old_pthread_create_joinable
14671                                 eval $setvar
14672                         else
14673                                 echo "Egads, nothing obvious found.  Guessing that you use 0." >&4
14674                                 val="$define"
14675                                 set d_old_pthread_create_joinable
14676                                 eval $setvar
14677                                 val=0
14678                                 set old_pthread_create_joinable
14679                                 eval $setvar
14680                         fi
14681                 fi
14682         fi
14683         $rm -f try try.*
14684 else
14685     d_old_pthread_create_joinable="$undef"
14686     old_pthread_create_joinable=""
14687 fi
14688
14689 : see if pause exists
14690 set pause d_pause
14691 eval $inlibc
14692
14693 : see if pipe exists
14694 set pipe d_pipe
14695 eval $inlibc
14696
14697 : see if poll exists
14698 set poll d_poll
14699 eval $inlibc
14700
14701 : see if readlink exists
14702 set readlink d_readlink
14703 eval $inlibc
14704
14705 echo " "
14706 procselfexe=''
14707 val="$undef"
14708 case "$d_readlink" in
14709 "$define")
14710         if $issymlink /proc/self/exe ; then
14711                 $ls -l /proc/self/exe > reflect
14712                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
14713                         echo "You have Linux-like /proc/self/exe."
14714                         procselfexe='"/proc/self/exe"'
14715                         val="$define"
14716                 fi
14717         fi
14718         if $issymlink /proc/curproc/file ; then
14719                 $ls -l /proc/curproc/file > reflect
14720                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
14721                         echo "You have BSD-like /proc/curproc/file."
14722                         procselfexe='"/proc/curproc/file"'
14723                         val="$define"
14724                 fi
14725         fi
14726         ;;
14727 esac
14728 $rm -f reflect
14729 set d_procselfexe
14730 eval $setvar
14731
14732 : see whether the pthread_atfork exists
14733 $cat >try.c <<EOP
14734 #include <pthread.h>
14735 #include <stdio.h>
14736 int main() {
14737 #ifdef  PTHREAD_ATFORK
14738         pthread_atfork(NULL,NULL,NULL);
14739 #endif
14740 }
14741 EOP
14742
14743 : see if pthread_atfork exists
14744 set try -DPTHREAD_ATFORK
14745 if eval $compile; then
14746     val="$define"
14747 else
14748     val="$undef"
14749 fi
14750 case "$usethreads" in
14751 $define)
14752         case "$val" in
14753         $define) echo 'pthread_atfork found.' >&4        ;;
14754         *)       echo 'pthread_atfork NOT found.' >&4    ;;
14755         esac
14756 esac
14757 set d_pthread_atfork
14758 eval $setvar
14759
14760 : see if pthread_attr_setscope exists
14761 set pthread_attr_setscope d_pthread_attr_setscope
14762 eval $inlibc
14763
14764
14765 : see whether the various POSIXish _yields exist
14766 $cat >try.c <<EOP
14767 #include <pthread.h>
14768 #include <stdio.h>
14769 int main() {
14770 #ifdef SCHED_YIELD
14771         sched_yield();
14772 #else
14773 #ifdef PTHREAD_YIELD
14774         pthread_yield();
14775 #else
14776 #ifdef PTHREAD_YIELD_NULL
14777         pthread_yield(NULL);
14778 #endif
14779 #endif
14780 #endif
14781 }
14782 EOP
14783 : see if sched_yield exists
14784 set try -DSCHED_YIELD
14785 if eval $compile; then
14786     val="$define"
14787     sched_yield='sched_yield()'
14788 else
14789     val="$undef"
14790 fi
14791 case "$usethreads" in
14792 $define)
14793         case "$val" in
14794         $define) echo 'sched_yield() found.' >&4        ;;
14795         *)       echo 'sched_yield() NOT found.' >&4    ;;
14796         esac
14797 esac
14798 set d_sched_yield
14799 eval $setvar
14800
14801 : see if pthread_yield exists
14802 set try -DPTHREAD_YIELD
14803 if eval $compile; then
14804     val="$define"
14805     case "$sched_yield" in
14806     '') sched_yield='pthread_yield()' ;;
14807     esac
14808 else
14809     set try -DPTHREAD_YIELD_NULL
14810     if eval $compile; then
14811         val="$define"
14812         case "$sched_yield" in
14813         '') sched_yield='pthread_yield(NULL)' ;;
14814         esac
14815     else
14816         val="$undef"
14817     fi
14818 fi
14819 case "$usethreads" in
14820 $define)
14821         case "$val" in
14822         $define) echo 'pthread_yield() found.' >&4      ;;
14823         *)       echo 'pthread_yield() NOT found.' >&4  ;;
14824         esac
14825         ;;
14826 esac
14827 set d_pthread_yield
14828 eval $setvar
14829
14830 case "$sched_yield" in
14831 '') sched_yield=undef ;;
14832 esac
14833
14834 $rm -f try try.*
14835
14836 : see if random_r exists
14837 set random_r d_random_r
14838 eval $inlibc
14839 case "$d_random_r" in
14840 "$define")
14841         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
14842         case "$d_random_r_proto:$usethreads" in
14843         ":define")      d_random_r_proto=define
14844                 set d_random_r_proto random_r $hdrs
14845                 eval $hasproto ;;
14846         *)      ;;
14847         esac
14848         case "$d_random_r_proto" in
14849         define)
14850         case "$random_r_proto" in
14851         ''|0) try='int random_r(int*, struct random_data*);'
14852         ./protochk "extern $try" $hdrs && random_r_proto=I_iS ;;
14853         esac
14854         case "$random_r_proto" in
14855         ''|0) try='int random_r(long*, struct random_data*);'
14856         ./protochk "extern $try" $hdrs && random_r_proto=I_lS ;;
14857         esac
14858         case "$random_r_proto" in
14859         ''|0) try='int random_r(struct random_data*, int32_t*);'
14860         ./protochk "extern $try" $hdrs && random_r_proto=I_St ;;
14861         esac
14862         case "$random_r_proto" in
14863         ''|0)   d_random_r=undef
14864                 random_r_proto=0
14865                 echo "Disabling random_r, cannot determine prototype." >&4 ;;
14866         * )     case "$random_r_proto" in
14867                 REENTRANT_PROTO*) ;;
14868                 *) random_r_proto="REENTRANT_PROTO_$random_r_proto" ;;
14869                 esac
14870                 echo "Prototype: $try" ;;
14871         esac
14872         ;;
14873         *)      case "$usethreads" in
14874                 define) echo "random_r has no prototype, not using it." >&4 ;;
14875                 esac
14876                 d_random_r=undef
14877                 random_r_proto=0
14878                 ;;
14879         esac
14880         ;;
14881 *)      random_r_proto=0
14882         ;;
14883 esac
14884
14885 : see if readdir and friends exist
14886 set readdir d_readdir
14887 eval $inlibc
14888 set seekdir d_seekdir
14889 eval $inlibc
14890 set telldir d_telldir
14891 eval $inlibc
14892 set rewinddir d_rewinddir
14893 eval $inlibc
14894
14895 : see if readdir64_r exists
14896 set readdir64_r d_readdir64_r
14897 eval $inlibc
14898 case "$d_readdir64_r" in
14899 "$define")
14900         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
14901         case "$d_readdir64_r_proto:$usethreads" in
14902         ":define")      d_readdir64_r_proto=define
14903                 set d_readdir64_r_proto readdir64_r $hdrs
14904                 eval $hasproto ;;
14905         *)      ;;
14906         esac
14907         case "$d_readdir64_r_proto" in
14908         define)
14909         case "$readdir64_r_proto" in
14910         ''|0) try='int readdir64_r(DIR*, struct dirent64*, struct dirent64**);'
14911         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TSR ;;
14912         esac
14913         case "$readdir64_r_proto" in
14914         ''|0) try='int readdir64_r(DIR*, struct dirent64*);'
14915         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TS ;;
14916         esac
14917         case "$readdir64_r_proto" in
14918         ''|0)   d_readdir64_r=undef
14919                 readdir64_r_proto=0
14920                 echo "Disabling readdir64_r, cannot determine prototype." >&4 ;;
14921         * )     case "$readdir64_r_proto" in
14922                 REENTRANT_PROTO*) ;;
14923                 *) readdir64_r_proto="REENTRANT_PROTO_$readdir64_r_proto" ;;
14924                 esac
14925                 echo "Prototype: $try" ;;
14926         esac
14927         ;;
14928         *)      case "$usethreads" in
14929                 define) echo "readdir64_r has no prototype, not using it." >&4 ;;
14930                 esac
14931                 d_readdir64_r=undef
14932                 readdir64_r_proto=0
14933                 ;;
14934         esac
14935         ;;
14936 *)      readdir64_r_proto=0
14937         ;;
14938 esac
14939
14940 : see if readdir_r exists
14941 set readdir_r d_readdir_r
14942 eval $inlibc
14943 case "$d_readdir_r" in
14944 "$define")
14945         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
14946         case "$d_readdir_r_proto:$usethreads" in
14947         ":define")      d_readdir_r_proto=define
14948                 set d_readdir_r_proto readdir_r $hdrs
14949                 eval $hasproto ;;
14950         *)      ;;
14951         esac
14952         case "$d_readdir_r_proto" in
14953         define)
14954         case "$readdir_r_proto" in
14955         ''|0) try='int readdir_r(DIR*, struct dirent*, struct dirent**);'
14956         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TSR ;;
14957         esac
14958         case "$readdir_r_proto" in
14959         ''|0) try='int readdir_r(DIR*, struct dirent*);'
14960         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TS ;;
14961         esac
14962         case "$readdir_r_proto" in
14963         ''|0)   d_readdir_r=undef
14964                 readdir_r_proto=0
14965                 echo "Disabling readdir_r, cannot determine prototype." >&4 ;;
14966         * )     case "$readdir_r_proto" in
14967                 REENTRANT_PROTO*) ;;
14968                 *) readdir_r_proto="REENTRANT_PROTO_$readdir_r_proto" ;;
14969                 esac
14970                 echo "Prototype: $try" ;;
14971         esac
14972         ;;
14973         *)      case "$usethreads" in
14974                 define) echo "readdir_r has no prototype, not using it." >&4 ;;
14975                 esac
14976                 d_readdir_r=undef
14977                 readdir_r_proto=0
14978                 ;;
14979         esac
14980         ;;
14981 *)      readdir_r_proto=0
14982         ;;
14983 esac
14984
14985 : see if readv exists
14986 set readv d_readv
14987 eval $inlibc
14988
14989 : see if recvmsg exists
14990 set recvmsg d_recvmsg
14991 eval $inlibc
14992
14993 : see if rename exists
14994 set rename d_rename
14995 eval $inlibc
14996
14997 : see if rmdir exists
14998 set rmdir d_rmdir
14999 eval $inlibc
15000
15001 : see if memory.h is available.
15002 val=''
15003 set memory.h val
15004 eval $inhdr
15005
15006 : See if it conflicts with string.h
15007 case "$val" in
15008 $define)
15009         case "$strings" in
15010         '') ;;
15011         *)
15012                 $cppstdin $cppflags $cppminus < $strings > mem.h
15013                 if $contains 'memcpy' mem.h >/dev/null 2>&1; then
15014                         echo " "
15015                         echo "We won't be including <memory.h>."
15016                         val="$undef"
15017                 fi
15018                 $rm -f mem.h
15019                 ;;
15020         esac
15021 esac
15022 set i_memory
15023 eval $setvar
15024
15025 : can bcopy handle overlapping blocks?
15026 echo " "
15027 val="$undef"
15028 case "$d_memmove" in
15029 "$define") echo "I'll use memmove() instead of bcopy() for overlapping copies." ;;
15030 *)      case "$d_bcopy" in
15031         "$define")
15032                 echo "Checking to see if bcopy() can do overlapping copies..." >&4
15033                 $cat >try.c <<EOCP
15034 #$i_memory I_MEMORY
15035 #$i_stdlib I_STDLIB
15036 #$i_string I_STRING
15037 #$i_unistd I_UNISTD
15038 EOCP
15039         $cat >>try.c <<'EOCP'
15040 #include <stdio.h>
15041 #ifdef I_MEMORY
15042 #  include <memory.h>
15043 #endif
15044 #ifdef I_STDLIB
15045 #  include <stdlib.h>
15046 #endif
15047 #ifdef I_STRING
15048 #  include <string.h>
15049 #else
15050 #  include <strings.h>
15051 #endif
15052 #ifdef I_UNISTD
15053 #  include <unistd.h>  /* Needed for NetBSD */
15054 #endif
15055 int main()
15056 {
15057 char buf[128], abc[128];
15058 char *b;
15059 int len;
15060 int off;
15061 int align;
15062
15063 /* Copy "abcde..." string to char abc[] so that gcc doesn't
15064    try to store the string in read-only memory. */
15065 bcopy("abcdefghijklmnopqrstuvwxyz0123456789", abc, 36);
15066
15067 for (align = 7; align >= 0; align--) {
15068         for (len = 36; len; len--) {
15069                 b = buf+align;
15070                 bcopy(abc, b, len);
15071                 for (off = 1; off <= len; off++) {
15072                         bcopy(b, b+off, len);
15073                         bcopy(b+off, b, len);
15074                         if (bcmp(b, abc, len))
15075                                 exit(1);
15076                 }
15077         }
15078 }
15079 exit(0);
15080 }
15081 EOCP
15082                 set try
15083                 if eval $compile_ok; then
15084                         if ./try 2>/dev/null; then
15085                                 echo "Yes, it can."
15086                                 val="$define"
15087                         else
15088                                 echo "It can't, sorry."
15089                         fi
15090                 else
15091                         echo "(I can't compile the test program, so we'll assume not...)"
15092                 fi
15093                 ;;
15094         esac
15095         $rm -f try.* try core
15096         ;;
15097 esac
15098 set d_safebcpy
15099 eval $setvar
15100
15101 : can memcpy handle overlapping blocks?
15102 echo " "
15103 val="$undef"
15104 case "$d_memmove" in
15105 "$define") echo "I'll use memmove() instead of memcpy() for overlapping copies." ;;
15106 *)      case "$d_memcpy" in
15107         "$define")
15108                 echo "Checking to see if memcpy() can do overlapping copies..." >&4
15109                 $cat >try.c <<EOCP
15110 #$i_memory I_MEMORY
15111 #$i_stdlib I_STDLIB
15112 #$i_string I_STRING
15113 #$i_unistd I_UNISTD
15114 EOCP
15115         $cat >>try.c <<'EOCP'
15116 #include <stdio.h>
15117 #ifdef I_MEMORY
15118 #  include <memory.h>
15119 #endif
15120 #ifdef I_STDLIB
15121 #  include <stdlib.h>
15122 #endif
15123 #ifdef I_STRING
15124 #  include <string.h>
15125 #else
15126 #  include <strings.h>
15127 #endif
15128 #ifdef I_UNISTD
15129 #  include <unistd.h>  /* Needed for NetBSD */
15130 #endif
15131 int main()
15132 {
15133 char buf[128], abc[128];
15134 char *b;
15135 int len;
15136 int off;
15137 int align;
15138
15139 /* Copy "abcde..." string to char abc[] so that gcc doesn't
15140    try to store the string in read-only memory. */
15141 memcpy(abc, "abcdefghijklmnopqrstuvwxyz0123456789", 36);
15142
15143 for (align = 7; align >= 0; align--) {
15144         for (len = 36; len; len--) {
15145                 b = buf+align;
15146                 memcpy(b, abc, len);
15147                 for (off = 1; off <= len; off++) {
15148                         memcpy(b+off, b, len);
15149                         memcpy(b, b+off, len);
15150                         if (memcmp(b, abc, len))
15151                                 exit(1);
15152                 }
15153         }
15154 }
15155 exit(0);
15156 }
15157 EOCP
15158                 set try
15159                 if eval $compile_ok; then
15160                         if ./try 2>/dev/null; then
15161                                 echo "Yes, it can."
15162                                 val="$define"
15163                         else
15164                                 echo "It can't, sorry."
15165                         fi
15166                 else
15167                         echo "(I can't compile the test program, so we'll assume not...)"
15168                 fi
15169                 ;;
15170         esac
15171         $rm -f try.* try core
15172         ;;
15173 esac
15174 set d_safemcpy
15175 eval $setvar
15176
15177 : can memcmp be trusted to compare relative magnitude?
15178 val="$undef"
15179 case "$d_memcmp" in
15180 "$define")
15181         echo " "
15182         echo "Checking if your memcmp() can compare relative magnitude..." >&4
15183         $cat >try.c <<EOCP
15184 #$i_memory I_MEMORY
15185 #$i_stdlib I_STDLIB
15186 #$i_string I_STRING
15187 #$i_unistd I_UNISTD
15188 EOCP
15189         $cat >>try.c <<'EOCP'
15190 #include <stdio.h>
15191 #ifdef I_MEMORY
15192 #  include <memory.h>
15193 #endif
15194 #ifdef I_STDLIB
15195 #  include <stdlib.h>
15196 #endif
15197 #ifdef I_STRING
15198 #  include <string.h>
15199 #else
15200 #  include <strings.h>
15201 #endif
15202 #ifdef I_UNISTD
15203 #  include <unistd.h>  /* Needed for NetBSD */
15204 #endif
15205 int main()
15206 {
15207 char a = -1;
15208 char b = 0;
15209 if ((a < b) && memcmp(&a, &b, 1) < 0)
15210         exit(1);
15211 exit(0);
15212 }
15213 EOCP
15214         set try
15215         if eval $compile_ok; then
15216                 if $run ./try 2>/dev/null; then
15217                         echo "Yes, it can."
15218                         val="$define"
15219                 else
15220                         echo "No, it can't (it uses signed chars)."
15221                 fi
15222         else
15223                 echo "(I can't compile the test program, so we'll assume not...)"
15224         fi
15225         ;;
15226 esac
15227 $rm -f try.* try core
15228 set d_sanemcmp
15229 eval $setvar
15230
15231 : see if prototype for sbrk is available
15232 echo " "
15233 set d_sbrkproto sbrk $i_unistd unistd.h
15234 eval $hasproto
15235
15236 : see if select exists
15237 set select d_select
15238 eval $inlibc
15239
15240 : see if semctl exists
15241 set semctl d_semctl
15242 eval $inlibc
15243
15244 : see if semget exists
15245 set semget d_semget
15246 eval $inlibc
15247
15248 : see if semop exists
15249 set semop d_semop
15250 eval $inlibc
15251
15252 : see how much of the 'sem*(2)' library is present.
15253 h_sem=true
15254 echo " "
15255 case "$d_semctl$d_semget$d_semop" in
15256 *"$undef"*) h_sem=false;;
15257 esac
15258 case "$osname" in
15259 freebsd)
15260     case "`ipcs 2>&1`" in
15261     "SVID messages"*"not configured"*)
15262         echo "Your $osname does not have the sem*(2) configured." >&4
15263         h_sem=false
15264         val="$undef"
15265         set semctl d_semctl
15266         eval $setvar
15267         set semget d_semget
15268         eval $setvar
15269         set semop d_semop
15270         eval $setvar
15271         ;;
15272     esac
15273     ;;
15274 esac
15275 : we could also check for sys/ipc.h ...
15276 if $h_sem && $test `./findhdr sys/sem.h`; then
15277         echo "You have the full sem*(2) library." >&4
15278         val="$define"
15279 else
15280         echo "You don't have the full sem*(2) library." >&4
15281         val="$undef"
15282 fi
15283 set d_sem
15284 eval $setvar
15285
15286 : see whether sys/sem.h defines union semun
15287 echo " "
15288 $cat > try.c <<'END'
15289 #include <sys/types.h>
15290 #include <sys/ipc.h>
15291 #include <sys/sem.h>
15292 int main () { union semun semun; semun.buf = 0; }
15293 END
15294 set try
15295 if eval $compile; then
15296     echo "You have union semun in <sys/sem.h>." >&4
15297     val="$define"
15298 else
15299     echo "You do not have union semun in <sys/sem.h>." >&4
15300     val="$undef"
15301 fi
15302 $rm -f try try.c
15303 set d_union_semun
15304 eval $setvar
15305
15306 : see how to do semctl IPC_STAT
15307 case "$d_sem" in
15308 $define)
15309     echo " "
15310     $cat > try.h <<END
15311 #ifndef S_IRUSR
15312 #   ifdef S_IREAD
15313 #       define S_IRUSR S_IREAD
15314 #       define S_IWUSR S_IWRITE
15315 #       define S_IXUSR S_IEXEC
15316 #   else
15317 #       define S_IRUSR 0400
15318 #       define S_IWUSR 0200
15319 #       define S_IXUSR 0100
15320 #   endif
15321 #   define S_IRGRP (S_IRUSR>>3)
15322 #   define S_IWGRP (S_IWUSR>>3)
15323 #   define S_IXGRP (S_IXUSR>>3)
15324 #   define S_IROTH (S_IRUSR>>6)
15325 #   define S_IWOTH (S_IWUSR>>6)
15326 #   define S_IXOTH (S_IXUSR>>6)
15327 #endif
15328 #ifndef S_IRWXU
15329 #   define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
15330 #   define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
15331 #   define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
15332 #endif
15333 END
15334     : see whether semctl IPC_STAT can use union semun
15335     val="$undef"
15336     case "$d_semctl_semun" in
15337     '')
15338       $cat > try.c <<END
15339 #include <sys/types.h>
15340 #include <sys/ipc.h>
15341 #include <sys/sem.h>
15342 #include <sys/stat.h>
15343 #include <stdio.h>
15344 #include <errno.h>
15345 #include "try.h"
15346 #ifndef errno
15347 extern int errno;
15348 #endif
15349 #$d_union_semun HAS_UNION_SEMUN
15350 int main() {
15351     union semun
15352 #ifndef HAS_UNION_SEMUN
15353     {
15354         int val;
15355         struct semid_ds *buf;
15356         unsigned short *array;
15357     }
15358 #endif
15359     arg;
15360     int sem, st;
15361
15362 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) && defined(S_IRWXO) && defined(IPC_CREAT)
15363     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
15364     if (sem > -1) {
15365         struct semid_ds argbuf;
15366         arg.buf = &argbuf;
15367 #       ifdef IPC_STAT
15368         st = semctl(sem, 0, IPC_STAT, arg);
15369         if (st == 0)
15370             printf("semun\n");
15371         else
15372 #       endif /* IPC_STAT */
15373             printf("semctl IPC_STAT failed: errno = %d\n", errno);
15374 #       ifdef IPC_RMID
15375         if (semctl(sem, 0, IPC_RMID, arg) != 0)
15376 #       endif /* IPC_RMID */
15377             printf("semctl IPC_RMID failed: errno = %d\n", errno);
15378     } else
15379 #endif /* IPC_PRIVATE && ... */
15380         printf("semget failed: errno = %d\n", errno);
15381   return 0;
15382 }
15383 END
15384       set try
15385       if eval $compile; then
15386           xxx=`$run ./try`
15387           case "$xxx" in
15388           semun) val="$define" ;;
15389           esac
15390       fi
15391       $rm -f try try.c
15392       ;;
15393     esac
15394     set d_semctl_semun
15395     eval $setvar
15396     case "$d_semctl_semun" in
15397     $define)
15398         echo "You can use union semun for semctl IPC_STAT." >&4
15399         also='also'
15400         ;;
15401     *)  echo "You cannot use union semun for semctl IPC_STAT." >&4
15402         also=''
15403         ;;
15404     esac
15405
15406     : see whether semctl IPC_STAT can use struct semid_ds pointer
15407     val="$undef"
15408     case "$d_semctl_semid_ds" in
15409     '')
15410       $cat > try.c <<'END'
15411 #include <sys/types.h>
15412 #include <sys/ipc.h>
15413 #include <sys/sem.h>
15414 #include <sys/stat.h>
15415 #include "try.h"
15416 #include <stdio.h>
15417 #include <errno.h>
15418 #ifndef errno
15419 extern int errno;
15420 #endif
15421 int main() {
15422     struct semid_ds arg;
15423     int sem, st;
15424
15425 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) &&  defined(S_IRWXO) && defined(IPC_CREAT)
15426     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
15427     if (sem > -1) {
15428 #       ifdef IPC_STAT
15429         st = semctl(sem, 0, IPC_STAT, &arg);
15430         if (st == 0)
15431             printf("semid_ds\n");
15432         else
15433 #       endif /* IPC_STAT */
15434             printf("semctl IPC_STAT failed: errno = %d\n", errno);
15435 #       ifdef IPC_RMID
15436         if (semctl(sem, 0, IPC_RMID, &arg) != 0)
15437 #       endif /* IPC_RMID */
15438             printf("semctl IPC_RMID failed: errno = %d\n", errno);
15439     } else
15440 #endif /* IPC_PRIVATE && ... */
15441         printf("semget failed: errno = %d\n", errno);
15442
15443     return 0;
15444 }
15445 END
15446       set try
15447       if eval $compile; then
15448           xxx=`$run ./try`
15449           case "$xxx" in
15450           semid_ds) val="$define" ;;
15451           esac
15452       fi
15453       $rm -f try try.c
15454       ;;
15455     esac
15456     set d_semctl_semid_ds
15457     eval $setvar
15458     case "$d_semctl_semid_ds" in
15459     $define)
15460         echo "You can $also use struct semid_ds* for semctl IPC_STAT." >&4
15461         ;;
15462     *)  echo "You cannot use struct semid_ds* for semctl IPC_STAT." >&4
15463         ;;
15464     esac
15465     $rm -f try.h
15466     ;;
15467 *)  val="$undef"
15468
15469     # We do not have the full sem*(2) library, so assume we can not
15470     # use either.
15471
15472     set d_semctl_semun
15473     eval $setvar
15474
15475     set d_semctl_semid_ds
15476     eval $setvar
15477     ;;
15478 esac
15479
15480 : see if sendmsg exists
15481 set sendmsg d_sendmsg
15482 eval $inlibc
15483
15484 : see if setegid exists
15485 set setegid d_setegid
15486 eval $inlibc
15487
15488 : see if seteuid exists
15489 set seteuid d_seteuid
15490 eval $inlibc
15491
15492 : see if setgrent exists
15493 set setgrent d_setgrent
15494 eval $inlibc
15495
15496 : see if setgrent_r exists
15497 set setgrent_r d_setgrent_r
15498 eval $inlibc
15499 case "$d_setgrent_r" in
15500 "$define")
15501         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
15502         case "$d_setgrent_r_proto:$usethreads" in
15503         ":define")      d_setgrent_r_proto=define
15504                 set d_setgrent_r_proto setgrent_r $hdrs
15505                 eval $hasproto ;;
15506         *)      ;;
15507         esac
15508         case "$d_setgrent_r_proto" in
15509         define)
15510         case "$setgrent_r_proto" in
15511         ''|0) try='int setgrent_r(FILE**);'
15512         ./protochk "extern $try" $hdrs && setgrent_r_proto=I_H ;;
15513         esac
15514         case "$setgrent_r_proto" in
15515         ''|0) try='void setgrent_r(FILE**);'
15516         ./protochk "extern $try" $hdrs && setgrent_r_proto=V_H ;;
15517         esac
15518         case "$setgrent_r_proto" in
15519         ''|0)   d_setgrent_r=undef
15520                 setgrent_r_proto=0
15521                 echo "Disabling setgrent_r, cannot determine prototype." >&4 ;;
15522         * )     case "$setgrent_r_proto" in
15523                 REENTRANT_PROTO*) ;;
15524                 *) setgrent_r_proto="REENTRANT_PROTO_$setgrent_r_proto" ;;
15525                 esac
15526                 echo "Prototype: $try" ;;
15527         esac
15528         ;;
15529         *)      case "$usethreads" in
15530                 define) echo "setgrent_r has no prototype, not using it." >&4 ;;
15531                 esac
15532                 d_setgrent_r=undef
15533                 setgrent_r_proto=0
15534                 ;;
15535         esac
15536         ;;
15537 *)      setgrent_r_proto=0
15538         ;;
15539 esac
15540
15541 : see if sethostent exists
15542 set sethostent d_sethent
15543 eval $inlibc
15544
15545 : see if sethostent_r exists
15546 set sethostent_r d_sethostent_r
15547 eval $inlibc
15548 case "$d_sethostent_r" in
15549 "$define")
15550         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15551         case "$d_sethostent_r_proto:$usethreads" in
15552         ":define")      d_sethostent_r_proto=define
15553                 set d_sethostent_r_proto sethostent_r $hdrs
15554                 eval $hasproto ;;
15555         *)      ;;
15556         esac
15557         case "$d_sethostent_r_proto" in
15558         define)
15559         case "$sethostent_r_proto" in
15560         ''|0) try='int sethostent_r(int, struct hostent_data*);'
15561         ./protochk "extern $try" $hdrs && sethostent_r_proto=I_ID ;;
15562         esac
15563         case "$sethostent_r_proto" in
15564         ''|0) try='void sethostent_r(int, struct hostent_data*);'
15565         ./protochk "extern $try" $hdrs && sethostent_r_proto=V_ID ;;
15566         esac
15567         case "$sethostent_r_proto" in
15568         ''|0)   d_sethostent_r=undef
15569                 sethostent_r_proto=0
15570                 echo "Disabling sethostent_r, cannot determine prototype." >&4 ;;
15571         * )     case "$sethostent_r_proto" in
15572                 REENTRANT_PROTO*) ;;
15573                 *) sethostent_r_proto="REENTRANT_PROTO_$sethostent_r_proto" ;;
15574                 esac
15575                 echo "Prototype: $try" ;;
15576         esac
15577         ;;
15578         *)      case "$usethreads" in
15579                 define) echo "sethostent_r has no prototype, not using it." >&4 ;;
15580                 esac
15581                 d_sethostent_r=undef
15582                 sethostent_r_proto=0
15583                 ;;
15584         esac
15585         ;;
15586 *)      sethostent_r_proto=0
15587         ;;
15588 esac
15589
15590 : see if setitimer exists
15591 set setitimer d_setitimer
15592 eval $inlibc
15593
15594 : see if setlinebuf exists
15595 set setlinebuf d_setlinebuf
15596 eval $inlibc
15597
15598 : see if setlocale exists
15599 set setlocale d_setlocale
15600 eval $inlibc
15601
15602 : see if locale.h is available
15603 set locale.h i_locale
15604 eval $inhdr
15605
15606 : see if setlocale_r exists
15607 set setlocale_r d_setlocale_r
15608 eval $inlibc
15609 case "$d_setlocale_r" in
15610 "$define")
15611         hdrs="$i_systypes sys/types.h define stdio.h $i_locale locale.h"
15612         case "$d_setlocale_r_proto:$usethreads" in
15613         ":define")      d_setlocale_r_proto=define
15614                 set d_setlocale_r_proto setlocale_r $hdrs
15615                 eval $hasproto ;;
15616         *)      ;;
15617         esac
15618         case "$d_setlocale_r_proto" in
15619         define)
15620         case "$setlocale_r_proto" in
15621         ''|0) try='int setlocale_r(int, const char*, char*, int);'
15622         ./protochk "extern $try" $hdrs && setlocale_r_proto=I_ICBI ;;
15623         esac
15624         case "$setlocale_r_proto" in
15625         ''|0)   d_setlocale_r=undef
15626                 setlocale_r_proto=0
15627                 echo "Disabling setlocale_r, cannot determine prototype." >&4 ;;
15628         * )     case "$setlocale_r_proto" in
15629                 REENTRANT_PROTO*) ;;
15630                 *) setlocale_r_proto="REENTRANT_PROTO_$setlocale_r_proto" ;;
15631                 esac
15632                 echo "Prototype: $try" ;;
15633         esac
15634         ;;
15635         *)      case "$usethreads" in
15636                 define) echo "setlocale_r has no prototype, not using it." >&4 ;;
15637                 esac
15638                 d_setlocale_r=undef
15639                 setlocale_r_proto=0
15640                 ;;
15641         esac
15642         ;;
15643 *)      setlocale_r_proto=0
15644         ;;
15645 esac
15646
15647 : see if setnetent exists
15648 set setnetent d_setnent
15649 eval $inlibc
15650
15651 : see if setnetent_r exists
15652 set setnetent_r d_setnetent_r
15653 eval $inlibc
15654 case "$d_setnetent_r" in
15655 "$define")
15656         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15657         case "$d_setnetent_r_proto:$usethreads" in
15658         ":define")      d_setnetent_r_proto=define
15659                 set d_setnetent_r_proto setnetent_r $hdrs
15660                 eval $hasproto ;;
15661         *)      ;;
15662         esac
15663         case "$d_setnetent_r_proto" in
15664         define)
15665         case "$setnetent_r_proto" in
15666         ''|0) try='int setnetent_r(int, struct netent_data*);'
15667         ./protochk "extern $try" $hdrs && setnetent_r_proto=I_ID ;;
15668         esac
15669         case "$setnetent_r_proto" in
15670         ''|0) try='void setnetent_r(int, struct netent_data*);'
15671         ./protochk "extern $try" $hdrs && setnetent_r_proto=V_ID ;;
15672         esac
15673         case "$setnetent_r_proto" in
15674         ''|0)   d_setnetent_r=undef
15675                 setnetent_r_proto=0
15676                 echo "Disabling setnetent_r, cannot determine prototype." >&4 ;;
15677         * )     case "$setnetent_r_proto" in
15678                 REENTRANT_PROTO*) ;;
15679                 *) setnetent_r_proto="REENTRANT_PROTO_$setnetent_r_proto" ;;
15680                 esac
15681                 echo "Prototype: $try" ;;
15682         esac
15683         ;;
15684         *)      case "$usethreads" in
15685                 define) echo "setnetent_r has no prototype, not using it." >&4 ;;
15686                 esac
15687                 d_setnetent_r=undef
15688                 setnetent_r_proto=0
15689                 ;;
15690         esac
15691         ;;
15692 *)      setnetent_r_proto=0
15693         ;;
15694 esac
15695
15696 : see if setprotoent exists
15697 set setprotoent d_setpent
15698 eval $inlibc
15699
15700 : see if setpgid exists
15701 set setpgid d_setpgid
15702 eval $inlibc
15703
15704 : see if setpgrp2 exists
15705 set setpgrp2 d_setpgrp2
15706 eval $inlibc
15707
15708 : see if setpriority exists
15709 set setpriority d_setprior
15710 eval $inlibc
15711
15712 : see if setproctitle exists
15713 set setproctitle d_setproctitle
15714 eval $inlibc
15715
15716 : see if setprotoent_r exists
15717 set setprotoent_r d_setprotoent_r
15718 eval $inlibc
15719 case "$d_setprotoent_r" in
15720 "$define")
15721         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15722         case "$d_setprotoent_r_proto:$usethreads" in
15723         ":define")      d_setprotoent_r_proto=define
15724                 set d_setprotoent_r_proto setprotoent_r $hdrs
15725                 eval $hasproto ;;
15726         *)      ;;
15727         esac
15728         case "$d_setprotoent_r_proto" in
15729         define)
15730         case "$setprotoent_r_proto" in
15731         ''|0) try='int setprotoent_r(int, struct protoent_data*);'
15732         ./protochk "extern $try" $hdrs && setprotoent_r_proto=I_ID ;;
15733         esac
15734         case "$setprotoent_r_proto" in
15735         ''|0) try='void setprotoent_r(int, struct protoent_data*);'
15736         ./protochk "extern $try" $hdrs && setprotoent_r_proto=V_ID ;;
15737         esac
15738         case "$setprotoent_r_proto" in
15739         ''|0)   d_setprotoent_r=undef
15740                 setprotoent_r_proto=0
15741                 echo "Disabling setprotoent_r, cannot determine prototype." >&4 ;;
15742         * )     case "$setprotoent_r_proto" in
15743                 REENTRANT_PROTO*) ;;
15744                 *) setprotoent_r_proto="REENTRANT_PROTO_$setprotoent_r_proto" ;;
15745                 esac
15746                 echo "Prototype: $try" ;;
15747         esac
15748         ;;
15749         *)      case "$usethreads" in
15750                 define) echo "setprotoent_r has no prototype, not using it." >&4 ;;
15751                 esac
15752                 d_setprotoent_r=undef
15753                 setprotoent_r_proto=0
15754                 ;;
15755         esac
15756         ;;
15757 *)      setprotoent_r_proto=0
15758         ;;
15759 esac
15760
15761 : see if setpwent exists
15762 set setpwent d_setpwent
15763 eval $inlibc
15764
15765 : see if setpwent_r exists
15766 set setpwent_r d_setpwent_r
15767 eval $inlibc
15768 case "$d_setpwent_r" in
15769 "$define")
15770         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
15771         case "$d_setpwent_r_proto:$usethreads" in
15772         ":define")      d_setpwent_r_proto=define
15773                 set d_setpwent_r_proto setpwent_r $hdrs
15774                 eval $hasproto ;;
15775         *)      ;;
15776         esac
15777         case "$d_setpwent_r_proto" in
15778         define)
15779         case "$setpwent_r_proto" in
15780         ''|0) try='int setpwent_r(FILE**);'
15781         ./protochk "extern $try" $hdrs && setpwent_r_proto=I_H ;;
15782         esac
15783         case "$setpwent_r_proto" in
15784         ''|0) try='void setpwent_r(FILE**);'
15785         ./protochk "extern $try" $hdrs && setpwent_r_proto=V_H ;;
15786         esac
15787         case "$setpwent_r_proto" in
15788         ''|0)   d_setpwent_r=undef
15789                 setpwent_r_proto=0
15790                 echo "Disabling setpwent_r, cannot determine prototype." >&4 ;;
15791         * )     case "$setpwent_r_proto" in
15792                 REENTRANT_PROTO*) ;;
15793                 *) setpwent_r_proto="REENTRANT_PROTO_$setpwent_r_proto" ;;
15794                 esac
15795                 echo "Prototype: $try" ;;
15796         esac
15797         ;;
15798         *)      case "$usethreads" in
15799                 define) echo "setpwent_r has no prototype, not using it." >&4 ;;
15800                 esac
15801                 d_setpwent_r=undef
15802                 setpwent_r_proto=0
15803                 ;;
15804         esac
15805         ;;
15806 *)      setpwent_r_proto=0
15807         ;;
15808 esac
15809
15810 : see if setregid exists
15811 set setregid d_setregid
15812 eval $inlibc
15813 set setresgid d_setresgid
15814 eval $inlibc
15815
15816 : see if setreuid exists
15817 set setreuid d_setreuid
15818 eval $inlibc
15819 set setresuid d_setresuid
15820 eval $inlibc
15821
15822 : see if setrgid exists
15823 set setrgid d_setrgid
15824 eval $inlibc
15825
15826 : see if setruid exists
15827 set setruid d_setruid
15828 eval $inlibc
15829
15830 : see if setservent exists
15831 set setservent d_setsent
15832 eval $inlibc
15833
15834 : see if setservent_r exists
15835 set setservent_r d_setservent_r
15836 eval $inlibc
15837 case "$d_setservent_r" in
15838 "$define")
15839         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15840         case "$d_setservent_r_proto:$usethreads" in
15841         ":define")      d_setservent_r_proto=define
15842                 set d_setservent_r_proto setservent_r $hdrs
15843                 eval $hasproto ;;
15844         *)      ;;
15845         esac
15846         case "$d_setservent_r_proto" in
15847         define)
15848         case "$setservent_r_proto" in
15849         ''|0) try='int setservent_r(int, struct servent_data*);'
15850         ./protochk "extern $try" $hdrs && setservent_r_proto=I_ID ;;
15851         esac
15852         case "$setservent_r_proto" in
15853         ''|0) try='void setservent_r(int, struct servent_data*);'
15854         ./protochk "extern $try" $hdrs && setservent_r_proto=V_ID ;;
15855         esac
15856         case "$setservent_r_proto" in
15857         ''|0)   d_setservent_r=undef
15858                 setservent_r_proto=0
15859                 echo "Disabling setservent_r, cannot determine prototype." >&4 ;;
15860         * )     case "$setservent_r_proto" in
15861                 REENTRANT_PROTO*) ;;
15862                 *) setservent_r_proto="REENTRANT_PROTO_$setservent_r_proto" ;;
15863                 esac
15864                 echo "Prototype: $try" ;;
15865         esac
15866         ;;
15867         *)      case "$usethreads" in
15868                 define) echo "setservent_r has no prototype, not using it." >&4 ;;
15869                 esac
15870                 d_setservent_r=undef
15871                 setservent_r_proto=0
15872                 ;;
15873         esac
15874         ;;
15875 *)      setservent_r_proto=0
15876         ;;
15877 esac
15878
15879 : see if setsid exists
15880 set setsid d_setsid
15881 eval $inlibc
15882
15883 : see if setvbuf exists
15884 set setvbuf d_setvbuf
15885 eval $inlibc
15886
15887 : see if sfio.h is available
15888 set sfio.h i_sfio
15889 eval $inhdr
15890
15891
15892 : see if sfio library is available
15893 case "$i_sfio" in
15894 $define)
15895         val=''
15896         set sfreserve val
15897         eval $inlibc
15898         ;;
15899 *)
15900         val="$undef"
15901         ;;
15902 esac
15903 : Ok, but do we want to use it.
15904 case "$val" in
15905 $define)
15906         case "$usesfio" in
15907         true|$define|[yY]*) dflt='y';;
15908         *) dflt='n';;
15909         esac
15910         echo "$package can use the sfio library, but it is experimental."
15911         case "$useperlio" in
15912         "$undef")
15913             echo "For sfio also the PerlIO abstraction layer is needed."
15914             echo "Earlier you said you wouldn't want that."
15915             ;;
15916         esac
15917         rp="You seem to have sfio available, do you want to try using it?"
15918         . ./myread
15919         case "$ans" in
15920         y|Y)    echo "Ok, turning on both sfio and PerlIO, then."
15921                 useperlio="$define"
15922                 val="$define"
15923                 ;;
15924         *)      echo "Ok, avoiding sfio this time.  I'll use stdio instead."
15925                 val="$undef"
15926                 ;;
15927         esac
15928         ;;
15929 *)      case "$usesfio" in
15930         true|$define|[yY]*)
15931                 echo "Sorry, cannot find sfio on this machine." >&4
15932                 echo "Ignoring your setting of usesfio=$usesfio." >&4
15933                 val="$undef"
15934                 ;;
15935         esac
15936         ;;
15937 esac
15938 set d_sfio
15939 eval $setvar
15940 case "$d_sfio" in
15941 $define) usesfio='true';;
15942 *) usesfio='false';;
15943 esac
15944 case "$d_sfio" in
15945 $define) ;;
15946 *)      : Remove sfio from list of libraries to use
15947         case "$libs" in
15948         *-lsfio*)
15949                 echo "Removing unneeded -lsfio from library list" >&4
15950                 set `echo X $libs | $sed -e 's/-lsfio / /' -e 's/-lsfio$//'`
15951                 shift
15952                 libs="$*"
15953                 echo "libs = $libs" >&4
15954                 ;;
15955         esac
15956 ;;
15957 esac
15958
15959
15960 : see if shmctl exists
15961 set shmctl d_shmctl
15962 eval $inlibc
15963
15964 : see if shmget exists
15965 set shmget d_shmget
15966 eval $inlibc
15967
15968 : see if shmat exists
15969 set shmat d_shmat
15970 eval $inlibc
15971 : see what shmat returns
15972 case "$d_shmat" in
15973 "$define")
15974         $cat >shmat.c <<'END'
15975 #include <sys/shm.h>
15976 void *shmat();
15977 END
15978         if $cc $ccflags -c shmat.c >/dev/null 2>&1; then
15979                 shmattype='void *'
15980         else
15981                 shmattype='char *'
15982         fi
15983         echo "and it returns ($shmattype)." >&4
15984         : see if a prototype for shmat is available
15985         xxx=`./findhdr sys/shm.h`
15986         $cppstdin $cppflags $cppminus < $xxx > shmat.c 2>/dev/null
15987         if $contains 'shmat.*(' shmat.c >/dev/null 2>&1; then
15988                 val="$define"
15989         else
15990                 val="$undef"
15991         fi
15992         $rm -f shmat.[co]
15993         ;;
15994 *)
15995         val="$undef"
15996         ;;
15997 esac
15998 set d_shmatprototype
15999 eval $setvar
16000
16001 : see if shmdt exists
16002 set shmdt d_shmdt
16003 eval $inlibc
16004
16005 : see how much of the 'shm*(2)' library is present.
16006 h_shm=true
16007 echo " "
16008 case "$d_shmctl$d_shmget$d_shmat$d_shmdt" in
16009 *"$undef"*) h_shm=false;;
16010 esac
16011 case "$osname" in
16012 freebsd)
16013     case "`ipcs 2>&1`" in
16014     "SVID shared memory"*"not configured"*)
16015         echo "Your $osname does not have the shm*(2) configured." >&4
16016         h_shm=false
16017         val="$undef"
16018         set shmctl d_shmctl
16019         evat $setvar
16020         set shmget d_shmget
16021         evat $setvar
16022         set shmat d_shmat
16023         evat $setvar
16024         set shmdt d_shmdt
16025         evat $setvar
16026         ;;
16027     esac
16028     ;;
16029 esac
16030 : we could also check for sys/ipc.h ...
16031 if $h_shm && $test `./findhdr sys/shm.h`; then
16032         echo "You have the full shm*(2) library." >&4
16033         val="$define"
16034 else
16035         echo "You don't have the full shm*(2) library." >&4
16036         val="$undef"
16037 fi
16038 set d_shm
16039 eval $setvar
16040
16041 echo " "
16042 : see if we have sigaction
16043 if set sigaction val -f d_sigaction; eval $csym; $val; then
16044         echo 'sigaction() found.' >&4
16045         $cat > try.c <<EOP
16046 #include <stdio.h>
16047 #include <sys/types.h>
16048 #include <signal.h>
16049 #$i_stdlib I_STDLIB
16050 #ifdef I_STDLIB
16051 #include <stdlib.h>
16052 #endif
16053 int main()
16054 {
16055     struct sigaction act, oact;
16056     act.sa_flags = 0;
16057     oact.sa_handler = 0;
16058     /* so that act and oact are used */
16059     exit(act.sa_flags == 0 &&  oact.sa_handler == 0);
16060 }
16061 EOP
16062         set try
16063         if eval $compile_ok; then
16064                 val="$define"
16065         else
16066                 echo "But you don't seem to have a useable struct sigaction." >&4
16067                 val="$undef"
16068         fi
16069 else
16070         echo 'sigaction NOT found.' >&4
16071         val="$undef"
16072 fi
16073 set d_sigaction; eval $setvar
16074 $rm -f try try$_o try.c
16075
16076 : see if sigprocmask exists
16077 set sigprocmask d_sigprocmask
16078 eval $inlibc
16079
16080 : see if sigsetjmp exists
16081 echo " "
16082 case "$d_sigsetjmp" in
16083 '')
16084         $cat >try.c <<EOP
16085 #include <setjmp.h>
16086 #$i_stdlib I_STDLIB
16087 #ifdef I_STDLIB
16088 #include <stdlib.h>
16089 #endif
16090 sigjmp_buf env;
16091 int set = 1;
16092 int main()
16093 {
16094         if (sigsetjmp(env,1))
16095                 exit(set);
16096         set = 0;
16097         siglongjmp(env, 1);
16098         exit(1);
16099 }
16100 EOP
16101         set try
16102         if eval $compile; then
16103                 if $run ./try >/dev/null 2>&1; then
16104                         echo "POSIX sigsetjmp found." >&4
16105                         val="$define"
16106                 else
16107                         $cat >&4 <<EOM
16108 Uh-Oh! You have POSIX sigsetjmp and siglongjmp, but they do not work properly!!
16109 I'll ignore them.
16110 EOM
16111                         val="$undef"
16112                 fi
16113         else
16114                 echo "sigsetjmp not found." >&4
16115                 val="$undef"
16116         fi
16117         ;;
16118 *) val="$d_sigsetjmp"
16119         case "$d_sigsetjmp" in
16120         $define) echo "POSIX sigsetjmp found." >&4;;
16121         $undef) echo "sigsetjmp not found." >&4;;
16122         esac
16123         ;;
16124 esac
16125 set d_sigsetjmp
16126 eval $setvar
16127 $rm -f try.c try
16128
16129 : see if sockatmark exists
16130 set sockatmark d_sockatmark
16131 eval $inlibc
16132
16133 : see if prototype for sockatmark is available
16134 echo " "
16135 set d_sockatmarkproto sockatmark $d_socket sys/socket.h
16136 eval $hasproto
16137
16138 : see if socks5_init exists
16139 set socks5_init d_socks5_init
16140 eval $inlibc
16141
16142 : see if srand48_r exists
16143 set srand48_r d_srand48_r
16144 eval $inlibc
16145 case "$d_srand48_r" in
16146 "$define")
16147         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
16148         case "$d_srand48_r_proto:$usethreads" in
16149         ":define")      d_srand48_r_proto=define
16150                 set d_srand48_r_proto srand48_r $hdrs
16151                 eval $hasproto ;;
16152         *)      ;;
16153         esac
16154         case "$d_srand48_r_proto" in
16155         define)
16156         case "$srand48_r_proto" in
16157         ''|0) try='int srand48_r(long, struct drand48_data*);'
16158         ./protochk "extern $try" $hdrs && srand48_r_proto=I_LS ;;
16159         esac
16160         case "$srand48_r_proto" in
16161         ''|0)   d_srand48_r=undef
16162                 srand48_r_proto=0
16163                 echo "Disabling srand48_r, cannot determine prototype." >&4 ;;
16164         * )     case "$srand48_r_proto" in
16165                 REENTRANT_PROTO*) ;;
16166                 *) srand48_r_proto="REENTRANT_PROTO_$srand48_r_proto" ;;
16167                 esac
16168                 echo "Prototype: $try" ;;
16169         esac
16170         ;;
16171         *)      case "$usethreads" in
16172                 define) echo "srand48_r has no prototype, not using it." >&4 ;;
16173                 esac
16174                 d_srand48_r=undef
16175                 srand48_r_proto=0
16176                 ;;
16177         esac
16178         ;;
16179 *)      srand48_r_proto=0
16180         ;;
16181 esac
16182
16183 : see if srandom_r exists
16184 set srandom_r d_srandom_r
16185 eval $inlibc
16186 case "$d_srandom_r" in
16187 "$define")
16188         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
16189         case "$d_srandom_r_proto:$usethreads" in
16190         ":define")      d_srandom_r_proto=define
16191                 set d_srandom_r_proto srandom_r $hdrs
16192                 eval $hasproto ;;
16193         *)      ;;
16194         esac
16195         case "$d_srandom_r_proto" in
16196         define)
16197         case "$srandom_r_proto" in
16198         ''|0) try='int srandom_r(unsigned int, struct random_data*);'
16199         ./protochk "extern $try" $hdrs && srandom_r_proto=I_TS ;;
16200         esac
16201         case "$srandom_r_proto" in
16202         ''|0)   d_srandom_r=undef
16203                 srandom_r_proto=0
16204                 echo "Disabling srandom_r, cannot determine prototype." >&4 ;;
16205         * )     case "$srandom_r_proto" in
16206                 REENTRANT_PROTO*) ;;
16207                 *) srandom_r_proto="REENTRANT_PROTO_$srandom_r_proto" ;;
16208                 esac
16209                 echo "Prototype: $try" ;;
16210         esac
16211         ;;
16212         *)      case "$usethreads" in
16213                 define) echo "srandom_r has no prototype, not using it." >&4 ;;
16214                 esac
16215                 d_srandom_r=undef
16216                 srandom_r_proto=0
16217                 ;;
16218         esac
16219         ;;
16220 *)      srandom_r_proto=0
16221         ;;
16222 esac
16223
16224 : see if prototype for setresgid is available
16225 echo " "
16226 set d_sresgproto setresgid $i_unistd unistd.h
16227 eval $hasproto
16228
16229 : see if prototype for setresuid is available
16230 echo " "
16231 set d_sresuproto setresuid $i_unistd unistd.h
16232 eval $hasproto
16233
16234 : see if sys/stat.h is available
16235 set sys/stat.h i_sysstat
16236 eval $inhdr
16237
16238
16239 : see if stat knows about block sizes
16240 echo " "
16241 echo "Checking to see if your struct stat has st_blocks field..." >&4
16242 set d_statblks stat st_blocks $i_sysstat sys/stat.h
16243 eval $hasfield
16244
16245
16246 : see if this is a sys/vfs.h system
16247 set sys/vfs.h i_sysvfs
16248 eval $inhdr
16249
16250
16251 : see if this is a sys/statfs.h system
16252 set sys/statfs.h i_sysstatfs
16253 eval $inhdr
16254
16255
16256 echo " "
16257 echo "Checking to see if your system supports struct statfs..." >&4
16258 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
16259 eval $hasstruct
16260 case "$d_statfs_s" in
16261 "$define")      echo "Yes, it does."   ;;
16262 *)              echo "No, it doesn't." ;;
16263 esac
16264
16265
16266
16267 : see if struct statfs knows about f_flags
16268 case "$d_statfs_s" in
16269 define) 
16270         echo " "
16271         echo "Checking to see if your struct statfs has f_flags field..." >&4
16272         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
16273         eval $hasfield
16274         ;;
16275 *)      val="$undef"
16276         set d_statfs_f_flags
16277         eval $setvar
16278         ;;
16279 esac
16280 case "$d_statfs_f_flags" in
16281 "$define")      echo "Yes, it does."   ;;
16282 *)              echo "No, it doesn't." ;;
16283 esac
16284
16285 $cat >&4 <<EOM
16286 Checking how to access stdio streams by file descriptor number...
16287 EOM
16288 case "$stdio_stream_array" in
16289 '')     $cat >try.c <<EOCP
16290 #include <stdio.h>
16291 int main() {
16292   if (&STDIO_STREAM_ARRAY[fileno(stdin)] == stdin)
16293     printf("yes\n");
16294 }
16295 EOCP
16296         for s in _iob __iob __sF
16297         do
16298                 set try -DSTDIO_STREAM_ARRAY=$s
16299                 if eval $compile; then
16300                         case "`$run ./try`" in
16301                         yes)    stdio_stream_array=$s; break ;;
16302                         esac
16303                 fi
16304         done
16305         $rm -f try.* try$exe_ext
16306 esac
16307 case "$stdio_stream_array" in
16308 '')     $cat >&4 <<EOM
16309 I can't figure out how to access stdio streams by file descriptor number.
16310 EOM
16311         d_stdio_stream_array="$undef"
16312         ;;
16313 *)      $cat >&4 <<EOM
16314 You can access stdio streams by file descriptor number by the $stdio_stream_array array.
16315 EOM
16316         d_stdio_stream_array="$define"
16317         ;;
16318 esac
16319
16320 : see if strcoll exists
16321 set strcoll d_strcoll
16322 eval $inlibc
16323
16324 : check for structure copying
16325 echo " "
16326 echo "Checking to see if your C compiler can copy structs..." >&4
16327 $cat >try.c <<'EOCP'
16328 int main()
16329 {
16330         struct blurfl {
16331                 int dyick;
16332         } foo, bar;
16333
16334         foo = bar;
16335 }
16336 EOCP
16337 if $cc -c try.c >/dev/null 2>&1 ; then
16338         val="$define"
16339         echo "Yup, it can."
16340 else
16341         val="$undef"
16342         echo "Nope, it can't."
16343 fi
16344 set d_strctcpy
16345 eval $setvar
16346 $rm -f try.*
16347
16348 : see if strerror and/or sys_errlist[] exist
16349 echo " "
16350 if test "X$d_strerror" = X -o "X$d_syserrlst" = X; then
16351     if set strerror val -f d_strerror; eval $csym; $val; then
16352                 echo 'strerror() found.' >&4
16353                 d_strerror="$define"
16354                 d_strerrm='strerror(e)'
16355                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
16356                         echo "(You also have sys_errlist[], so we could roll our own strerror.)" 
16357                         d_syserrlst="$define"
16358                 else
16359                         echo "(Since you don't have sys_errlist[], sterror() is welcome.)"
16360                         d_syserrlst="$undef"
16361                 fi
16362     elif xxx=`./findhdr string.h`; test "$xxx" || xxx=`./findhdr strings.h`; \
16363                         $contains '#[   ]*define.*strerror' "$xxx" >/dev/null 2>&1; then
16364                 echo 'strerror() found in string header.' >&4
16365                 d_strerror="$define"
16366                 d_strerrm='strerror(e)'
16367                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
16368                         echo "(Most probably, strerror() uses sys_errlist[] for descriptions.)"
16369                                 d_syserrlst="$define"
16370                 else
16371                         echo "(You don't appear to have any sys_errlist[], how can this be?)"
16372                         d_syserrlst="$undef"
16373                 fi
16374     elif set sys_errlist val -a d_syserrlst; eval $csym; $val; then
16375                 echo "strerror() not found, but you have sys_errlist[] so we'll use that." >&4
16376                 d_strerror="$undef"
16377                 d_syserrlst="$define"
16378                 d_strerrm='((e)<0||(e)>=sys_nerr?"unknown":sys_errlist[e])'
16379     else
16380                 echo 'strerror() and sys_errlist[] NOT found.' >&4
16381                 d_strerror="$undef"
16382                 d_syserrlst="$undef"
16383                 d_strerrm='"unknown"'
16384     fi
16385 fi
16386
16387 : see if strerror_r exists
16388 set strerror_r d_strerror_r
16389 eval $inlibc
16390 case "$d_strerror_r" in
16391 "$define")
16392         hdrs="$i_systypes sys/types.h define stdio.h $i_string string.h"
16393         case "$d_strerror_r_proto:$usethreads" in
16394         ":define")      d_strerror_r_proto=define
16395                 set d_strerror_r_proto strerror_r $hdrs
16396                 eval $hasproto ;;
16397         *)      ;;
16398         esac
16399         case "$d_strerror_r_proto" in
16400         define)
16401         case "$strerror_r_proto" in
16402         ''|0) try='int strerror_r(int, char*, size_t);'
16403         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBW ;;
16404         esac
16405         case "$strerror_r_proto" in
16406         ''|0) try='int strerror_r(int, char*, int);'
16407         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBI ;;
16408         esac
16409         case "$strerror_r_proto" in
16410         ''|0) try='char* strerror_r(int, char*, size_t);'
16411         ./protochk "extern $try" $hdrs && strerror_r_proto=B_IBW ;;
16412         esac
16413         case "$strerror_r_proto" in
16414         ''|0)   d_strerror_r=undef
16415                 strerror_r_proto=0
16416                 echo "Disabling strerror_r, cannot determine prototype." >&4 ;;
16417         * )     case "$strerror_r_proto" in
16418                 REENTRANT_PROTO*) ;;
16419                 *) strerror_r_proto="REENTRANT_PROTO_$strerror_r_proto" ;;
16420                 esac
16421                 echo "Prototype: $try" ;;
16422         esac
16423         ;;
16424         *)      case "$usethreads" in
16425                 define) echo "strerror_r has no prototype, not using it." >&4 ;;
16426                 esac
16427                 d_strerror_r=undef
16428                 strerror_r_proto=0
16429                 ;;
16430         esac
16431         ;;
16432 *)      strerror_r_proto=0
16433         ;;
16434 esac
16435
16436 : see if strftime exists
16437 set strftime d_strftime
16438 eval $inlibc
16439
16440 : see if strlcat exists
16441 set strlcat d_strlcat
16442 eval $inlibc
16443
16444 : see if strlcpy exists
16445 set strlcpy d_strlcpy
16446 eval $inlibc
16447
16448 : see if strtod exists
16449 set strtod d_strtod
16450 eval $inlibc
16451
16452 : see if strtol exists
16453 set strtol d_strtol
16454 eval $inlibc
16455
16456 : see if strtold exists
16457 set strtold d_strtold
16458 eval $inlibc
16459
16460 : see if strtoll exists
16461 set strtoll d_strtoll
16462 eval $inlibc
16463
16464 case "$d_longlong-$d_strtoll" in
16465 "$define-$define")
16466         $cat <<EOM
16467 Checking whether your strtoll() works okay...
16468 EOM
16469         $cat >try.c <<'EOCP'
16470 #include <errno.h>
16471 #ifdef __hpux
16472 #define strtoll __strtoll
16473 #endif
16474 #ifdef __EMX__
16475 #define strtoll _strtoll
16476 #endif
16477 #include <stdio.h>
16478 extern long long int strtoll(char *s, char **, int); 
16479 static int bad = 0;
16480 int check(char *s, long long ell, int een) {
16481         long long gll;
16482         errno = 0;
16483         gll = strtoll(s, 0, 10);
16484         if (!((gll == ell) && (errno == een)))
16485                 bad++;
16486 }
16487 int main() {
16488         check(" 1",                                      1LL, 0);
16489         check(" 0",                                      0LL, 0);
16490         check("-1",                                     -1LL, 0);
16491         check("-9223372036854775808", -9223372036854775808LL, 0);
16492         check("-9223372036854775808", -9223372036854775808LL, 0);
16493         check(" 9223372036854775807",  9223372036854775807LL, 0);
16494         check("-9223372036854775808", -9223372036854775808LL, 0);
16495         check(" 9223372036854775808",  9223372036854775807LL, ERANGE);
16496         check("-9223372036854775809", -9223372036854775808LL, ERANGE);
16497         if (!bad)
16498                 printf("ok\n");
16499 }
16500 EOCP
16501         set try
16502         if eval $compile; then
16503                 yyy=`$run ./try`
16504                 case "$yyy" in
16505                 ok) echo "Your strtoll() seems to be working okay." ;;
16506                 *) cat <<EOM >&4
16507 Your strtoll() doesn't seem to be working okay.
16508 EOM
16509                    d_strtoll="$undef"
16510                    ;;
16511                 esac
16512         else
16513                 echo "(I can't seem to compile the test program--assuming it doesn't)"
16514                 d_strtoll="$undef"
16515         fi
16516         ;;
16517 esac
16518
16519 : see if strtoq exists
16520 set strtoq d_strtoq
16521 eval $inlibc
16522
16523 : see if strtoul exists
16524 set strtoul d_strtoul
16525 eval $inlibc
16526
16527 case "$d_strtoul" in
16528 "$define")
16529         $cat <<EOM
16530 Checking whether your strtoul() works okay...
16531 EOM
16532         $cat >try.c <<'EOCP'
16533 #include <errno.h>
16534 #include <stdio.h>
16535 extern unsigned long int strtoul(char *s, char **, int); 
16536 static int bad = 0;
16537 void check(char *s, unsigned long eul, int een) {
16538         unsigned long gul;
16539         errno = 0;
16540         gul = strtoul(s, 0, 10);
16541         if (!((gul == eul) && (errno == een)))
16542                 bad++;
16543 }
16544 int main() {
16545         check(" 1", 1L, 0);
16546         check(" 0", 0L, 0);
16547 EOCP
16548         case "$longsize" in
16549         8)
16550             $cat >>try.c <<'EOCP'
16551         check("18446744073709551615", 18446744073709551615UL, 0);
16552         check("18446744073709551616", 18446744073709551615UL, ERANGE);
16553 #if 0 /* strtoul() for /^-/ strings is undefined. */
16554         check("-1", 18446744073709551615UL, 0);
16555         check("-18446744073709551614", 2, 0);
16556         check("-18446744073709551615", 1, 0);
16557         check("-18446744073709551616", 18446744073709551615UL, ERANGE);
16558         check("-18446744073709551617", 18446744073709551615UL, ERANGE);
16559 #endif
16560 EOCP
16561                 ;;
16562         4)
16563                     $cat >>try.c <<'EOCP'
16564         check("4294967295", 4294967295UL, 0);
16565         check("4294967296", 4294967295UL, ERANGE);
16566 #if 0 /* strtoul() for /^-/ strings is undefined. */
16567         check("-1", 4294967295UL, 0);
16568         check("-4294967294", 2, 0);
16569         check("-4294967295", 1, 0);
16570         check("-4294967296", 4294967295UL, ERANGE);
16571         check("-4294967297", 4294967295UL, ERANGE);
16572 #endif
16573 EOCP
16574                 ;;
16575         *)
16576 : Should we write these tests to be more portable by sprintf-ing
16577 : ~0 and then manipulating that char string as input for strtol?
16578                 ;;
16579         esac
16580         $cat >>try.c <<'EOCP'
16581         if (!bad)
16582                 printf("ok\n");
16583         return 0;
16584 }
16585 EOCP
16586         set try
16587         if eval $compile; then
16588                 case "`$run ./try`" in
16589                 ok) echo "Your strtoul() seems to be working okay." ;;
16590                 *) cat <<EOM >&4
16591 Your strtoul() doesn't seem to be working okay.
16592 EOM
16593                    d_strtoul="$undef"
16594                    ;;
16595                 esac
16596         fi
16597         ;;
16598 esac
16599
16600 : see if strtoull exists
16601 set strtoull d_strtoull
16602 eval $inlibc
16603
16604 case "$d_longlong-$d_strtoull" in
16605 "$define-$define")
16606         $cat <<EOM
16607 Checking whether your strtoull() works okay...
16608 EOM
16609         $cat >try.c <<'EOCP'
16610 #include <errno.h>
16611 #ifdef __hpux
16612 #define strtoull __strtoull
16613 #endif
16614 #include <stdio.h>
16615 extern unsigned long long int strtoull(char *s, char **, int); 
16616 static int bad = 0;
16617 int check(char *s, long long eull, int een) {
16618         long long gull;
16619         errno = 0;
16620         gull = strtoull(s, 0, 10);
16621         if (!((gull == eull) && (errno == een)))
16622                 bad++;
16623 }
16624 int main() {
16625         check(" 1",                                        1LL, 0);
16626         check(" 0",                                        0LL, 0);
16627         check("18446744073709551615",  18446744073709551615ULL, 0);
16628         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
16629 #if 0 /* strtoull() for /^-/ strings is undefined. */
16630         check("-1",                    18446744073709551615ULL, 0);
16631         check("-18446744073709551614",                     2LL, 0);
16632         check("-18446744073709551615",                     1LL, 0);
16633         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
16634         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
16635 #endif
16636         if (!bad)
16637                 printf("ok\n");
16638 }
16639 EOCP
16640         set try
16641         if eval $compile; then
16642                 case "`$run ./try`" in
16643                 ok) echo "Your strtoull() seems to be working okay." ;;
16644                 *) cat <<EOM >&4
16645 Your strtoull() doesn't seem to be working okay.
16646 EOM
16647                    d_strtoull="$undef"
16648                    ;;
16649                 esac
16650         fi
16651         ;;
16652 esac
16653
16654 : see if strtouq exists
16655 set strtouq d_strtouq
16656 eval $inlibc
16657
16658 case "$d_strtouq" in
16659 "$define")
16660         $cat <<EOM
16661 Checking whether your strtouq() works okay...
16662 EOM
16663         $cat >try.c <<'EOCP'
16664 #include <errno.h>
16665 #include <stdio.h>
16666 extern unsigned long long int strtouq(char *s, char **, int); 
16667 static int bad = 0;
16668 void check(char *s, unsigned long long eull, int een) {
16669         unsigned long long gull;
16670         errno = 0;
16671         gull = strtouq(s, 0, 10);
16672         if (!((gull == eull) && (errno == een)))
16673                 bad++;
16674 }
16675 int main() {
16676         check(" 1",                                        1LL, 0);
16677         check(" 0",                                        0LL, 0);
16678         check("18446744073709551615",  18446744073709551615ULL, 0);
16679         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
16680 #if 0 /* strtouq() for /^-/ strings is undefined. */
16681         check("-1",                    18446744073709551615ULL, 0);
16682         check("-18446744073709551614",                     2LL, 0);
16683         check("-18446744073709551615",                     1LL, 0);
16684         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
16685         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
16686 #endif
16687         if (!bad)
16688                 printf("ok\n");
16689         return 0;
16690 }
16691 EOCP
16692         set try
16693         if eval $compile; then
16694                 case "`$run ./try`" in
16695                 ok) echo "Your strtouq() seems to be working okay." ;;
16696                 *) cat <<EOM >&4
16697 Your strtouq() doesn't seem to be working okay.
16698 EOM
16699                    d_strtouq="$undef"
16700                    ;;
16701                 esac
16702         fi
16703         ;;
16704 esac
16705
16706 : see if strxfrm exists
16707 set strxfrm d_strxfrm
16708 eval $inlibc
16709
16710 : see if symlink exists
16711 set symlink d_symlink
16712 eval $inlibc
16713
16714 : see if syscall exists
16715 set syscall d_syscall
16716 eval $inlibc
16717
16718 : see if prototype for syscall is available
16719 echo " "
16720 set d_syscallproto syscall $i_unistd unistd.h
16721 eval $hasproto
16722
16723 : see if sysconf exists
16724 set sysconf d_sysconf
16725 eval $inlibc
16726
16727 : see if system exists
16728 set system d_system
16729 eval $inlibc
16730
16731 : see if tcgetpgrp exists
16732 set tcgetpgrp d_tcgetpgrp
16733 eval $inlibc
16734
16735 : see if tcsetpgrp exists
16736 set tcsetpgrp d_tcsetpgrp
16737 eval $inlibc
16738
16739 : see if prototype for telldir is available
16740 echo " "
16741 set d_telldirproto telldir $i_systypes sys/types.h $i_dirent dirent.h
16742 eval $hasproto
16743
16744 : see if time exists
16745 echo " "
16746 if test "X$d_time" = X -o X"$timetype" = X; then
16747     if set time val -f d_time; eval $csym; $val; then
16748                 echo 'time() found.' >&4
16749                 val="$define"
16750                 rp="What is the type returned by time() on this system?"
16751                 set time_t timetype long stdio.h sys/types.h
16752                 eval $typedef_ask
16753     else
16754                 echo 'time() not found, hope that will do.' >&4
16755                 val="$undef"
16756                 timetype='int';
16757     fi
16758     set d_time
16759     eval $setvar
16760 fi
16761
16762 : see if this is a sys/times.h system
16763 set sys/times.h i_systimes
16764 eval $inhdr
16765
16766 : see if times exists
16767 echo " "
16768 if set times val -f d_times; eval $csym; $val; then
16769         echo 'times() found.' >&4
16770         d_times="$define"
16771         inc=''
16772         case "$i_systimes" in
16773         "$define") inc='sys/times.h';;
16774         esac
16775         rp="What is the type returned by times() on this system?"
16776         set clock_t clocktype long stdio.h sys/types.h $inc
16777         eval $typedef_ask
16778 else
16779         echo 'times() NOT found, hope that will do.' >&4
16780         d_times="$undef"
16781         clocktype='int'
16782 fi
16783
16784 : see if tmpnam_r exists
16785 set tmpnam_r d_tmpnam_r
16786 eval $inlibc
16787 case "$d_tmpnam_r" in
16788 "$define")
16789         hdrs="$i_systypes sys/types.h define stdio.h "
16790         case "$d_tmpnam_r_proto:$usethreads" in
16791         ":define")      d_tmpnam_r_proto=define
16792                 set d_tmpnam_r_proto tmpnam_r $hdrs
16793                 eval $hasproto ;;
16794         *)      ;;
16795         esac
16796         case "$d_tmpnam_r_proto" in
16797         define)
16798         case "$tmpnam_r_proto" in
16799         ''|0) try='char* tmpnam_r(char*);'
16800         ./protochk "extern $try" $hdrs && tmpnam_r_proto=B_B ;;
16801         esac
16802         case "$tmpnam_r_proto" in
16803         ''|0)   d_tmpnam_r=undef
16804                 tmpnam_r_proto=0
16805                 echo "Disabling tmpnam_r, cannot determine prototype." >&4 ;;
16806         * )     case "$tmpnam_r_proto" in
16807                 REENTRANT_PROTO*) ;;
16808                 *) tmpnam_r_proto="REENTRANT_PROTO_$tmpnam_r_proto" ;;
16809                 esac
16810                 echo "Prototype: $try" ;;
16811         esac
16812         ;;
16813         *)      case "$usethreads" in
16814                 define) echo "tmpnam_r has no prototype, not using it." >&4 ;;
16815                 esac
16816                 d_tmpnam_r=undef
16817                 tmpnam_r_proto=0
16818                 ;;
16819         esac
16820         ;;
16821 *)      tmpnam_r_proto=0
16822         ;;
16823 esac
16824
16825 : see if truncate exists
16826 set truncate d_truncate
16827 eval $inlibc
16828
16829 : see if ttyname_r exists
16830 set ttyname_r d_ttyname_r
16831 eval $inlibc
16832 case "$d_ttyname_r" in
16833 "$define")
16834         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
16835         case "$d_ttyname_r_proto:$usethreads" in
16836         ":define")      d_ttyname_r_proto=define
16837                 set d_ttyname_r_proto ttyname_r $hdrs
16838                 eval $hasproto ;;
16839         *)      ;;
16840         esac
16841         case "$d_ttyname_r_proto" in
16842         define)
16843         case "$ttyname_r_proto" in
16844         ''|0) try='int ttyname_r(int, char*, size_t);'
16845         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBW ;;
16846         esac
16847         case "$ttyname_r_proto" in
16848         ''|0) try='int ttyname_r(int, char*, int);'
16849         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBI ;;
16850         esac
16851         case "$ttyname_r_proto" in
16852         ''|0) try='char* ttyname_r(int, char*, int);'
16853         ./protochk "extern $try" $hdrs && ttyname_r_proto=B_IBI ;;
16854         esac
16855         case "$ttyname_r_proto" in
16856         ''|0)   d_ttyname_r=undef
16857                 ttyname_r_proto=0
16858                 echo "Disabling ttyname_r, cannot determine prototype." >&4 ;;
16859         * )     case "$ttyname_r_proto" in
16860                 REENTRANT_PROTO*) ;;
16861                 *) ttyname_r_proto="REENTRANT_PROTO_$ttyname_r_proto" ;;
16862                 esac
16863                 echo "Prototype: $try" ;;
16864         esac
16865         ;;
16866         *)      case "$usethreads" in
16867                 define) echo "ttyname_r has no prototype, not using it." >&4 ;;
16868                 esac
16869                 d_ttyname_r=undef
16870                 ttyname_r_proto=0
16871                 ;;
16872         esac
16873         ;;
16874 *)      ttyname_r_proto=0
16875         ;;
16876 esac
16877
16878 : see if tzname[] exists
16879 echo " "
16880 if set tzname val -a d_tzname; eval $csym; $val; then
16881         val="$define"
16882         echo 'tzname[] found.' >&4
16883 else
16884         val="$undef"
16885         echo 'tzname[] NOT found.' >&4
16886 fi
16887 set d_tzname
16888 eval $setvar
16889
16890 case "$osname" in
16891 next|rhapsody|darwin) multiarch="$define" ;;
16892 esac
16893 case "$multiarch" in
16894 ''|[nN]*) multiarch="$undef" ;;
16895 esac
16896
16897 : check for ordering of bytes in a UV
16898 echo " "
16899 case "$usecrosscompile$multiarch" in
16900 *$define*)
16901         $cat <<EOM
16902 You seem to be either cross-compiling or doing a multiarchitecture build,
16903 skipping the byteorder check.
16904
16905 EOM
16906         byteorder='ffff'
16907         ;;
16908 *)
16909         case "$byteorder" in
16910         '')
16911                 $cat <<'EOM'
16912 In the following, larger digits indicate more significance.  A big-endian
16913 machine like a Pyramid or a Motorola 680?0 chip will come out to 4321. A
16914 little-endian machine like a Vax or an Intel 80?86 chip would be 1234. Other
16915 machines may have weird orders like 3412.  A Cray will report 87654321,
16916 an Alpha will report 12345678. If the test program works the default is
16917 probably right.
16918 I'm now running the test program...
16919 EOM
16920                 $cat >try.c <<EOCP
16921 #include <stdio.h>
16922 #$i_stdlib I_STDLIB
16923 #ifdef I_STDLIB
16924 #include <stdlib.h>
16925 #endif
16926 #include <sys/types.h>
16927 typedef $uvtype UV;
16928 int main()
16929 {
16930         int i;
16931         union {
16932                 UV l;
16933                 char c[$uvsize];
16934         } u;
16935
16936         if ($uvsize > 4)
16937                 u.l = (((UV)0x08070605) << 32) | (UV)0x04030201;
16938         else
16939                 u.l = (UV)0x04030201;
16940         for (i = 0; i < $uvsize; i++)
16941                 printf("%c", u.c[i]+'0');
16942         printf("\n");
16943         exit(0);
16944 }
16945 EOCP
16946                 xxx_prompt=y
16947                 set try
16948                 if eval $compile && ./try > /dev/null; then
16949                         dflt=`$run ./try`
16950                         case "$dflt" in
16951                         [1-4][1-4][1-4][1-4]|12345678|87654321)
16952                                 echo "(The test program ran ok.)"
16953                                 echo "byteorder=$dflt"
16954                                 xxx_prompt=n
16955                         ;;
16956                         ????|????????) echo "(The test program ran ok.)" ;;
16957                         *) echo "(The test program didn't run right for some reason.)" ;;
16958                         esac
16959                 else
16960                         dflt='4321'
16961                         cat <<'EOM'
16962 (I can't seem to compile the test program.  Guessing big-endian...)
16963 EOM
16964                 fi
16965                 case "$xxx_prompt" in
16966                 y)
16967                         rp="What is the order of bytes in $uvtype?"
16968                         . ./myread
16969                         byteorder="$ans"
16970                         ;;
16971                 *)      byteorder=$dflt
16972                         ;;
16973                 esac
16974                 ;;
16975         esac
16976         $rm -f try.c try
16977         ;;
16978 esac
16979
16980
16981 $cat <<EOM
16982
16983 Checking to see whether you can access character data unalignedly...
16984 EOM
16985 case "$d_u32align" in
16986 '')   $cat >try.c <<EOCP
16987 #include <stdio.h>
16988 #$i_stdlib I_STDLIB
16989 #ifdef I_STDLIB
16990 #include <stdlib.h>
16991 #endif
16992 #define U32 $u32type
16993 #define BYTEORDER 0x$byteorder
16994 #define U8 $u8type
16995 #include <signal.h>
16996 #ifdef SIGBUS
16997 $signal_t bletch(s) int s; { exit(4); }
16998 #endif
16999 int main() {
17000 #if BYTEORDER == 0x1234 || BYTEORDER == 0x4321
17001     U8 buf[8];
17002     U32 *up;
17003     int i;
17004
17005     if (sizeof(U32) != 4) {
17006         printf("sizeof(U32) is not 4, but %d\n", sizeof(U32));
17007         exit(1);
17008     }
17009
17010     fflush(stdout);
17011
17012 #ifdef SIGBUS
17013     signal(SIGBUS, bletch);
17014 #endif
17015
17016     buf[0] = 0;
17017     buf[1] = 0;
17018     buf[2] = 0;
17019     buf[3] = 1;
17020     buf[4] = 0;
17021     buf[5] = 0;
17022     buf[6] = 0;
17023     buf[7] = 1;
17024
17025     for (i = 0; i < 4; i++) {
17026         up = (U32*)(buf + i);
17027         if (! ((*up == 1 << (8*i)) ||   /* big-endian */
17028                (*up == 1 << (8*(3-i)))  /* little-endian */
17029               )
17030            )
17031         {
17032             printf("read failed (%x)\n", *up);
17033             exit(2);
17034         }
17035     }
17036
17037     /* write test */
17038     for (i = 0; i < 4; i++) {
17039         up = (U32*)(buf + i);
17040         *up = 0xBeef;
17041         if (*up != 0xBeef) {
17042             printf("write failed (%x)\n", *up);
17043             exit(3);
17044         }
17045     }
17046
17047     exit(0);
17048 #else
17049     printf("1\n");
17050     exit(1);
17051 #endif
17052     return 0;
17053 }
17054 EOCP
17055 set try
17056 if eval $compile_ok; then
17057         echo "(Testing for character data alignment may crash the test.  That's okay.)" >&4
17058         $run ./try 2>&1 >/dev/null
17059         case "$?" in
17060         0)      cat >&4 <<EOM
17061 You can access character data pretty unalignedly.
17062 EOM
17063                 d_u32align="$undef"
17064                 ;;
17065         *)      cat >&4 <<EOM
17066 It seems that you must access character data in an aligned manner.
17067 EOM
17068                 d_u32align="$define"
17069                 ;;
17070         esac
17071 else
17072         rp='Can you access character data at unaligned addresses?'
17073         dflt='n'
17074         . ./myread
17075         case "$ans" in
17076         [yY]*)  d_u32align="$undef"  ;;
17077         *)      d_u32align="$define" ;;
17078         esac
17079 fi
17080 $rm -f core core.try.* try.core
17081 ;;
17082 esac
17083
17084 : see if ualarm exists
17085 set ualarm d_ualarm
17086 eval $inlibc
17087
17088 : see if umask exists
17089 set umask d_umask
17090 eval $inlibc
17091
17092 : see if unordered exists
17093 set unordered d_unordered
17094 eval $inlibc
17095
17096 : see if usleep exists
17097 set usleep d_usleep
17098 eval $inlibc
17099
17100 : see if prototype for usleep is available
17101 echo " "
17102 set d_usleepproto usleep $i_unistd unistd.h
17103 eval $hasproto
17104
17105 : see if ustat exists
17106 set ustat d_ustat
17107 eval $inlibc
17108
17109 : backward compatibility for d_hvfork
17110 if test X$d_hvfork != X; then
17111         d_vfork="$d_hvfork"
17112         d_hvfork=''
17113 fi
17114 : see if there is a vfork
17115 val=''
17116 set vfork val
17117 eval $inlibc
17118
17119 : Ok, but do we want to use it. vfork is reportedly unreliable in 
17120 : perl on Solaris 2.x, and probably elsewhere.
17121 case "$val" in
17122 $define)
17123         echo " "
17124         case "$usevfork" in
17125         false) dflt='n';;
17126         *) dflt='y';;
17127         esac
17128         cat <<'EOM'
17129  
17130 Perl can only use a vfork() that doesn't suffer from strict
17131 restrictions on calling functions or modifying global data in
17132 the child.  For example, glibc-2.1 contains such a vfork()
17133 that is unsuitable.  If your system provides a proper fork()
17134 call, chances are that you do NOT want perl to use vfork().
17135
17136 EOM
17137         rp="Do you still want to use vfork()?"
17138         . ./myread
17139         case "$ans" in
17140         y|Y) ;;
17141         *)
17142                 echo "Ok, we won't use vfork()."
17143                 val="$undef"
17144                 ;;
17145         esac
17146         ;;
17147 esac
17148 set d_vfork
17149 eval $setvar
17150 case "$d_vfork" in
17151 $define) usevfork='true';;
17152 *) usevfork='false';;
17153 esac
17154
17155 : see if closedir exists
17156 set closedir d_closedir
17157 eval $inlibc
17158
17159 case "$d_closedir" in
17160 "$define")
17161         echo " "
17162         echo "Checking whether closedir() returns a status..." >&4
17163         cat > try.c <<EOM
17164 #$i_dirent I_DIRENT             /**/
17165 #$i_sysdir I_SYS_DIR            /**/
17166 #$i_sysndir I_SYS_NDIR          /**/
17167 #$i_systypes I_SYS_TYPES        /**/
17168
17169 #if defined(I_SYS_TYPES)
17170 #include <sys/types.h>
17171 #endif
17172 #if defined(I_DIRENT)
17173 #include <dirent.h>
17174 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
17175 #include <sys/dir.h>
17176 #endif
17177 #else
17178 #ifdef I_SYS_NDIR
17179 #include <sys/ndir.h>
17180 #else
17181 #ifdef I_SYS_DIR
17182 #ifdef hp9000s500
17183 #include <ndir.h>       /* may be wrong in the future */
17184 #else
17185 #include <sys/dir.h>
17186 #endif
17187 #endif
17188 #endif
17189 #endif 
17190 int main() { return closedir(opendir(".")); }
17191 EOM
17192         set try
17193         if eval $compile_ok; then
17194                 if $run ./try > /dev/null 2>&1 ; then
17195                         echo "Yes, it does."
17196                         val="$undef"
17197                 else
17198                         echo "No, it doesn't."
17199                         val="$define"
17200                 fi
17201         else
17202                 echo "(I can't seem to compile the test program--assuming it doesn't)"
17203                 val="$define"
17204         fi
17205         ;;
17206 *)
17207         val="$undef";
17208         ;;
17209 esac
17210 set d_void_closedir
17211 eval $setvar
17212 $rm -f try try.*
17213 : see if there is a wait4
17214 set wait4 d_wait4
17215 eval $inlibc
17216
17217 : see if waitpid exists
17218 set waitpid d_waitpid
17219 eval $inlibc
17220
17221 : see if wcstombs exists
17222 set wcstombs d_wcstombs
17223 eval $inlibc
17224
17225 : see if wctomb exists
17226 set wctomb d_wctomb
17227 eval $inlibc
17228
17229 : see if writev exists
17230 set writev d_writev
17231 eval $inlibc
17232
17233 : preserve RCS keywords in files with variable substitution, grrr
17234 Date='$Date'
17235 Id='$Id'
17236 Log='$Log'
17237 RCSfile='$RCSfile'
17238 Revision='$Revision'
17239
17240 : check for alignment requirements
17241 echo " "
17242 case "$usecrosscompile$multiarch" in
17243 *$define*)
17244         $cat <<EOM
17245 You seem to be either cross-compiling or doing a multiarchitecture build,
17246 skipping the memory alignment check.
17247
17248 EOM
17249         case "$alignbytes" in
17250         '') alignbytes=8 ;;
17251         esac
17252         ;;
17253 *)
17254         case "$alignbytes" in
17255         '') echo "Checking alignment constraints..." >&4
17256                 if $test "X$uselongdouble" = Xdefine -a "X$d_longdbl" = Xdefine; then
17257                         $cat >try.c <<'EOCP'
17258 typedef long double NV;
17259 EOCP
17260                 else
17261                         $cat >try.c <<'EOCP'
17262 typedef double NV;
17263 EOCP
17264                 fi
17265                 $cat >>try.c <<'EOCP'
17266 #include <stdio.h>
17267 struct foobar {
17268         char foo;
17269         NV bar;
17270 } try_algn;
17271 int main()
17272 {
17273     printf("%d\n", (int)((char *)&try_algn.bar - (char *)&try_algn.foo));
17274     return(0);
17275 }
17276 EOCP
17277                 set try
17278                 if eval $compile_ok; then
17279                         dflt=`$run ./try`
17280                 else
17281                         dflt='8'
17282                         echo "(I can't seem to compile the test program...)"
17283                 fi
17284                 ;;
17285         *) dflt="$alignbytes"
17286                 ;;
17287         esac
17288         rp="Doubles must be aligned on a how-many-byte boundary?"
17289         . ./myread
17290         alignbytes="$ans"
17291         $rm -f try.c try
17292         ;;
17293 esac
17294
17295
17296 : set the base revision
17297 baserev=5.0
17298
17299 : how do we concatenate cpp tokens here?
17300 echo " "
17301 echo "Checking to see how your cpp does stuff like concatenate tokens..." >&4
17302 $cat >cpp_stuff.c <<'EOCP'
17303 #define RCAT(a,b)a/**/b
17304 #define ACAT(a,b)a ## b
17305 RCAT(Rei,ser)
17306 ACAT(Cir,cus)
17307 EOCP
17308 $cppstdin $cppflags $cppminus <cpp_stuff.c >cpp_stuff.out 2>&1
17309 if $contains 'Circus' cpp_stuff.out >/dev/null 2>&1; then
17310         echo "Oh!  Smells like ANSI's been here." >&4
17311         echo "We can catify or stringify, separately or together!"
17312         cpp_stuff=42
17313 elif $contains 'Reiser' cpp_stuff.out >/dev/null 2>&1; then
17314         echo "Ah, yes!  The good old days!" >&4
17315         echo "However, in the good old days we don't know how to stringify and"
17316         echo "catify at the same time."
17317         cpp_stuff=1
17318 else
17319         $cat >&4 <<EOM
17320 Hmm, I don't seem to be able to concatenate tokens with your cpp.
17321 You're going to have to edit the values of CAT[2-5] in config.h...
17322 EOM
17323         cpp_stuff="/* Help! How do we handle cpp_stuff? */*/"
17324 fi
17325 $rm -f cpp_stuff.*
17326
17327 : see if this is a db.h system
17328 set db.h i_db
17329 eval $inhdr
17330
17331 case "$i_db" in
17332 $define)
17333         : Check db version.
17334         echo " "
17335         echo "Checking Berkeley DB version ..." >&4
17336         $cat >try.c <<EOCP
17337 #$d_const HASCONST
17338 #ifndef HASCONST
17339 #define const
17340 #endif
17341 #include <sys/types.h>
17342 #include <stdio.h>
17343 #$i_stdlib I_STDLIB
17344 #ifdef I_STDLIB
17345 #include <stdlib.h>
17346 #endif
17347 #include <db.h>
17348 int main(int argc, char *argv[])
17349 {
17350 #ifdef DB_VERSION_MAJOR /* DB version >= 2 */
17351     int Major, Minor, Patch ;
17352     unsigned long Version ;
17353     (void)db_version(&Major, &Minor, &Patch) ;
17354     if (argc == 2) {
17355         printf("%d %d %d %d %d %d\n",
17356                DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH,
17357                Major, Minor, Patch);
17358         exit(0);
17359     }
17360     printf("You have Berkeley DB Version 2 or greater.\n");
17361
17362     printf("db.h is from Berkeley DB Version %d.%d.%d\n",
17363                 DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH);
17364     printf("libdb is from Berkeley DB Version %d.%d.%d\n",
17365                 Major, Minor, Patch) ;
17366
17367     /* check that db.h & libdb are compatible */
17368     if (DB_VERSION_MAJOR != Major || DB_VERSION_MINOR != Minor || DB_VERSION_PATCH != Patch) {
17369         printf("db.h and libdb are incompatible.\n") ;
17370         exit(3);        
17371     }
17372
17373     printf("db.h and libdb are compatible.\n") ;
17374
17375     Version = DB_VERSION_MAJOR * 1000000 + DB_VERSION_MINOR * 1000
17376                 + DB_VERSION_PATCH ;
17377
17378     /* needs to be >= 2.3.4 */
17379     if (Version < 2003004) {
17380     /* if (DB_VERSION_MAJOR == 2 && DB_VERSION_MINOR == 0 && DB_VERSION_PATCH < 5) { */
17381         printf("Perl needs Berkeley DB 2.3.4 or greater.\n") ;
17382         exit(2);        
17383     }
17384
17385     exit(0);
17386 #else
17387 #if defined(_DB_H_) && defined(BTREEMAGIC) && defined(HASHMAGIC)
17388     if (argc == 2) {
17389         printf("1 0 0\n");
17390         exit(0);
17391     }
17392     printf("You have Berkeley DB Version 1.\n");
17393     exit(0);    /* DB version < 2: the coast is clear. */
17394 #else
17395     exit(1);    /* <db.h> not Berkeley DB? */
17396 #endif
17397 #endif
17398 }
17399 EOCP
17400         set try
17401         if eval $compile_ok && $run ./try; then
17402                 echo 'Looks OK.' >&4
17403                 set `$run ./try 1`
17404                 db_version_major=$1
17405                 db_version_minor=$2
17406                 db_version_patch=$3
17407         else
17408                 echo "I can't use Berkeley DB with your <db.h>.  I'll disable Berkeley DB." >&4
17409                 i_db=$undef
17410                 case " $libs " in
17411                 *"-ldb "*)
17412                         : Remove db from list of libraries to use
17413                         echo "Removing unusable -ldb from library list" >&4
17414                         set `echo X $libs | $sed -e 's/-ldb / /' -e 's/-ldb$//'`
17415                         shift
17416                         libs="$*"
17417                         echo "libs = $libs" >&4
17418                         ;;
17419                 esac
17420         fi
17421         $rm -f try.*
17422         ;;
17423 esac
17424
17425 case "$i_db" in
17426 define)
17427         : Check the return type needed for hash 
17428         echo " "
17429         echo "Checking return type needed for hash for Berkeley DB ..." >&4
17430         $cat >try.c <<EOCP
17431 #$d_const HASCONST
17432 #ifndef HASCONST
17433 #define const
17434 #endif
17435 #include <sys/types.h>
17436 #include <db.h>
17437
17438 #ifndef DB_VERSION_MAJOR
17439 u_int32_t hash_cb (ptr, size)
17440 const void *ptr;
17441 size_t size;
17442 {
17443 }
17444 HASHINFO info;
17445 int main()
17446 {
17447         info.hash = hash_cb;
17448 }
17449 #endif
17450 EOCP
17451         if $cc $ccflags -c try.c >try.out 2>&1 ; then
17452                 if $contains warning try.out >>/dev/null 2>&1 ; then
17453                         db_hashtype='int'
17454                 else
17455                         db_hashtype='u_int32_t'
17456                 fi
17457         else
17458                 : XXX Maybe we should just give up here.
17459                 db_hashtype=u_int32_t
17460                 $cat try.out >&4
17461                 echo "Help:  I can't seem to compile the db test program." >&4
17462                 echo "Something's wrong, but I'll assume you use $db_hashtype." >&4
17463         fi
17464         $rm -f try.*
17465         echo "Your version of Berkeley DB uses $db_hashtype for hash."
17466         ;;
17467 *)      db_hashtype=u_int32_t
17468         ;;
17469 esac
17470 case "$i_db" in
17471 define)
17472         : Check the return type needed for prefix 
17473         echo " "
17474         echo "Checking return type needed for prefix for Berkeley DB ..." >&4
17475         cat >try.c <<EOCP
17476 #$d_const HASCONST
17477 #ifndef HASCONST
17478 #define const
17479 #endif
17480 #include <sys/types.h>
17481 #include <db.h>
17482
17483 #ifndef DB_VERSION_MAJOR
17484 size_t prefix_cb (key1, key2)
17485 const DBT *key1;
17486 const DBT *key2;
17487 {
17488 }
17489 BTREEINFO info;
17490 int main()
17491 {
17492         info.prefix = prefix_cb;
17493 }
17494 #endif
17495 EOCP
17496         if $cc $ccflags -c try.c  >try.out 2>&1 ; then
17497                 if $contains warning try.out >>/dev/null 2>&1 ; then
17498                         db_prefixtype='int'
17499                 else
17500                         db_prefixtype='size_t'
17501                 fi
17502         else
17503                 db_prefixtype='size_t'
17504                 : XXX Maybe we should just give up here.
17505                 $cat try.out >&4
17506                 echo "Help:  I can't seem to compile the db test program." >&4
17507                 echo "Something's wrong, but I'll assume you use $db_prefixtype." >&4
17508         fi
17509         $rm -f try.*
17510         echo "Your version of Berkeley DB uses $db_prefixtype for prefix."
17511         ;;
17512 *)      db_prefixtype='size_t'
17513         ;;
17514 esac
17515
17516
17517 : How can we generate normalized random numbers ?
17518 echo " "
17519 echo "Looking for a random number function..." >&4
17520 case "$randfunc" in
17521 '')
17522         if set drand48 val -f; eval $csym; $val; then
17523                 dflt="drand48"
17524                 echo "Good, found drand48()." >&4
17525         elif set random val -f; eval $csym; $val; then
17526                 dflt="random"
17527                 echo "OK, found random()." >&4
17528         else
17529                 dflt="rand"
17530                 echo "Yick, looks like I have to use rand()." >&4
17531         fi
17532         echo " "
17533         ;;
17534 *)
17535         dflt="$randfunc"
17536         ;;
17537 esac
17538 cont=true
17539
17540 case "$ccflags" in
17541 *-Dmy_rand=*|*-Dmy_srand=*)
17542         echo "Removing obsolete -Dmy_rand, -Dmy_srand, and -Drandbits from ccflags." >&4
17543         ccflags="`echo $ccflags | sed -e 's/-Dmy_rand=random/ /'`"
17544         ccflags="`echo $ccflags | sed -e 's/-Dmy_srand=srandom/ /'`"
17545         ccflags="`echo $ccflags | sed -e 's/-Drandbits=[0-9][0-9]*/ /'`"
17546         ;;
17547 esac
17548
17549 while $test "$cont"; do
17550         rp="Use which function to generate random numbers?"
17551         . ./myread
17552         if $test "$ans" = "$dflt"; then
17553                 : null
17554         else
17555                 randbits=''
17556         fi
17557         randfunc="$ans"
17558         if set $ans val -f; eval $csym; $val; then
17559                 cont=''
17560         else
17561                 dflt=y
17562                 rp="I cannot find function $ans. Use that name anyway?"
17563                 . ./myread
17564                 dflt=rand
17565                 case "$ans" in
17566                         [yY]*) cont='';;
17567                 esac
17568         fi
17569         case "$cont" in
17570         '')
17571                 case "$randfunc" in
17572                 drand48)
17573                         drand01="drand48()"
17574                         seedfunc="srand48"
17575                         randbits=48
17576                         randseedtype=long
17577                         ;;
17578                 rand|random)
17579                         case "$randbits" in
17580                         '')
17581 echo "Checking to see how many bits your $randfunc() function produces..." >&4
17582                                 $cat >try.c <<EOCP
17583 #$i_unistd I_UNISTD
17584 #$i_stdlib I_STDLIB
17585 #include <stdio.h>
17586 #ifdef I_UNISTD
17587 #  include <unistd.h>
17588 #endif
17589 #ifdef I_STDLIB
17590 #  include <stdlib.h>
17591 #endif
17592 int main()
17593 {
17594         register int i;
17595         register unsigned long tmp;
17596         register unsigned long max = 0L;
17597
17598         for (i = 1000; i; i--) {
17599                 tmp = (unsigned long) $randfunc();
17600                 if (tmp > max) max = tmp;
17601         }
17602         for (i = 0; max; i++)
17603                 max /= 2;
17604         printf("%d\n",i);
17605 }
17606 EOCP
17607                                 set try
17608                                 if eval $compile_ok; then
17609                                         dflt=`try`
17610                                 else
17611                                         dflt='?'
17612                                         echo "(I can't seem to compile the test program...)"
17613                                 fi
17614                                 ;;
17615                         *)
17616                                 dflt="$randbits"
17617                                 ;;
17618                         esac
17619                         rp="How many bits does your $randfunc() function produce?"
17620                         . ./myread
17621                         randbits="$ans"
17622                         $rm -f try.c try
17623                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
17624                         seedfunc="s$randfunc"
17625                         randseedtype=unsigned
17626                         ;;
17627                 *)
17628                         dflt="31"
17629                         rp="How many bits does your $randfunc() function produce?"
17630                         . ./myread
17631                         randbits="$ans"
17632                         seedfunc="s$randfunc"
17633                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
17634                         if set $seedfunc val -f; eval $csym; $val; then
17635                                 echo "(Using $seedfunc() to seed random generator)"
17636                         else
17637                                 echo "(Warning: no $seedfunc() to seed random generator)"
17638                                 seedfunc=rand
17639                         fi
17640                         randseedtype=unsigned
17641                         ;;
17642                 esac
17643                 ;;
17644         esac
17645 done
17646
17647 echo " "
17648 echo "Determining whether or not we are on an EBCDIC system..." >&4
17649 $cat >try.c <<'EOM'
17650 int main()
17651 {
17652   if ('M'==0xd4) return 0;
17653   return 1;
17654 }
17655 EOM
17656
17657 val=$undef
17658 set try
17659 if eval $compile_ok; then
17660         if $run ./try; then
17661                 echo "You seem to speak EBCDIC." >&4
17662                 val="$define"
17663         else
17664                 echo "Nope, no EBCDIC, probably ASCII or some ISO Latin. Or UTF-8." >&4
17665         fi
17666 else
17667         echo "I'm unable to compile the test program." >&4
17668         echo "I'll assume ASCII or some ISO Latin. Or UTF8." >&4
17669 fi
17670 $rm -f try try.*
17671 set ebcdic
17672 eval $setvar
17673
17674 echo " "
17675 $cat >&4 <<EOM
17676 Checking how to flush all pending stdio output...
17677 EOM
17678 # I only know how to find the first 32 possibly open files on SunOS.
17679 # See also hints/sunos_4_1.sh and util.c  --AD
17680 case "$osname" in
17681 sunos) $echo '#define PERL_FFLUSH_ALL_FOPEN_MAX 32' > try.c ;;
17682 esac
17683 $cat >>try.c <<EOCP
17684 #include <stdio.h>
17685 #$i_stdlib I_STDLIB
17686 #ifdef I_STDLIB
17687 #include <stdlib.h>
17688 #endif
17689 #$i_unistd I_UNISTD
17690 #ifdef I_UNISTD
17691 # include <unistd.h>
17692 #endif
17693 #$d_sysconf HAS_SYSCONF
17694 #$d_stdio_stream_array HAS_STDIO_STREAM_ARRAY
17695 #ifdef HAS_STDIO_STREAM_ARRAY
17696 # define STDIO_STREAM_ARRAY $stdio_stream_array
17697 #endif
17698 int main() {
17699   FILE* p;
17700   unlink("try.out");
17701   p = fopen("try.out", "w");
17702 #ifdef TRY_FPUTC
17703   fputc('x', p);
17704 #else
17705 # ifdef TRY_FPRINTF
17706   fprintf(p, "x");
17707 # endif
17708 #endif
17709 #ifdef TRY_FFLUSH_NULL
17710   fflush(NULL);
17711 #endif
17712 #ifdef TRY_FFLUSH_ALL
17713   {
17714     long open_max = -1;
17715 # ifdef PERL_FFLUSH_ALL_FOPEN_MAX
17716     open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
17717 # else
17718 #  if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
17719     open_max = sysconf(_SC_OPEN_MAX);
17720 #  else
17721 #   ifdef FOPEN_MAX
17722     open_max = FOPEN_MAX;
17723 #   else
17724 #    ifdef OPEN_MAX
17725     open_max = OPEN_MAX;
17726 #    else
17727 #     ifdef _NFILE
17728     open_max = _NFILE;
17729 #     endif
17730 #    endif
17731 #   endif
17732 #  endif
17733 # endif 
17734 # ifdef HAS_STDIO_STREAM_ARRAY
17735     if (open_max > 0) {
17736       long i;
17737       for (i = 0; i < open_max; i++)
17738             if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
17739                 STDIO_STREAM_ARRAY[i]._file < open_max &&
17740                 STDIO_STREAM_ARRAY[i]._flag)
17741                 fflush(&STDIO_STREAM_ARRAY[i]);
17742     }   
17743   }
17744 # endif
17745 #endif
17746   _exit(42);
17747 }
17748 EOCP
17749 : first we have to find out how _not_ to flush
17750 $to try.c
17751 if $test "X$fflushNULL" = X -o "X$fflushall" = X; then
17752     output=''
17753     set try -DTRY_FPUTC
17754     if eval $compile; then
17755             $run ./try 2>/dev/null
17756             code="$?"
17757             $from try.out
17758             if $test ! -s try.out -a "X$code" = X42; then
17759                 output=-DTRY_FPUTC
17760             fi
17761     fi
17762     case "$output" in
17763     '')
17764             set try -DTRY_FPRINTF
17765             if eval $compile; then
17766                     $run ./try 2>/dev/null
17767                     code="$?"
17768                     $from try.out
17769                     if $test ! -s try.out -a "X$code" = X42; then
17770                         output=-DTRY_FPRINTF
17771                     fi
17772             fi
17773         ;;
17774     esac
17775 fi
17776 : check for fflush NULL behaviour
17777 case "$fflushNULL" in
17778 '')     set try -DTRY_FFLUSH_NULL $output
17779         if eval $compile; then
17780                 $run ./try 2>/dev/null
17781                 code="$?"
17782                 $from try.out
17783                 if $test -s try.out -a "X$code" = X42; then
17784                         fflushNULL="`$cat try.out`"
17785                 else
17786                         if $test "X$code" != X42; then
17787                                 $cat >&4 <<EOM
17788 (If this test failed, don't worry, we'll try another method shortly.)
17789 EOM
17790                         fi
17791                 fi
17792         fi
17793         $rm -f core try.core core.try.*
17794         case "$fflushNULL" in
17795         x)      $cat >&4 <<EOM
17796 Your fflush(NULL) works okay for output streams.
17797 Let's see if it clobbers input pipes...
17798 EOM
17799 # As of mid-March 2000 all versions of Solaris appear to have a stdio
17800 # bug that improperly flushes the input end of pipes.  So we avoid the
17801 # autoflush on fork/system/exec support for now. :-(
17802 $cat >tryp.c <<EOCP
17803 #include <stdio.h>
17804 int
17805 main(int argc, char **argv)
17806 {
17807     char buf[1024];
17808     int i;
17809     char *bp = buf;
17810     while (1) {
17811         while ((i = getc(stdin)) != -1
17812                && (*bp++ = i) != '\n'
17813                && bp < &buf[1024])
17814         /* DO NOTHING */ ;
17815         *bp = '\0';
17816         fprintf(stdout, "%s", buf);
17817         fflush(NULL);
17818         if (i == -1)
17819             return 0;
17820         bp = buf;
17821     }
17822 }
17823 EOCP
17824                 fflushNULL="$define"
17825                 set tryp
17826                 if eval $compile; then
17827                     $rm -f tryp.out
17828                     $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
17829                     if cmp tryp.c tryp.out >/dev/null 2>&1; then
17830                        $cat >&4 <<EOM
17831 fflush(NULL) seems to behave okay with input streams.
17832 EOM
17833                         fflushNULL="$define"
17834                     else
17835                         $cat >&4 <<EOM
17836 Ouch, fflush(NULL) clobbers input pipes!  We will not use it.
17837 EOM
17838                         fflushNULL="$undef"
17839                     fi
17840                 fi
17841                 $rm -f core tryp.c tryp.core core.tryp.*
17842                 ;;
17843         '')     $cat >&4 <<EOM
17844 Your fflush(NULL) isn't working (contrary to ANSI C).
17845 EOM
17846                 fflushNULL="$undef"
17847                 ;;
17848         *)      $cat >&4 <<EOM
17849 Cannot figure out whether your fflush(NULL) works or not.
17850 I'm assuming it doesn't (contrary to ANSI C).
17851 EOM
17852                 fflushNULL="$undef"
17853                 ;;
17854         esac
17855         ;;
17856 $define|true|[yY]*)
17857         fflushNULL="$define"
17858         ;;
17859 *)
17860         fflushNULL="$undef"
17861         ;;
17862 esac
17863 : check explicit looping only if NULL did not work, and if the pipe
17864 : bug does not show up on an explicit flush too
17865 case "$fflushNULL" in
17866 "$undef")
17867         $cat >tryp.c <<EOCP
17868 #include <stdio.h>
17869 int
17870 main(int argc, char **argv)
17871 {
17872     char buf[1024];
17873     int i;
17874     char *bp = buf;
17875     while (1) {
17876         while ((i = getc(stdin)) != -1
17877                && (*bp++ = i) != '\n'
17878                && bp < &buf[1024])
17879         /* DO NOTHING */ ;
17880         *bp = '\0';
17881         fprintf(stdout, "%s", buf);
17882         fflush(stdin);
17883         if (i == -1)
17884             return 0;
17885         bp = buf;
17886     }
17887 }
17888 EOCP
17889         set tryp
17890         if eval $compile; then
17891             $rm -f tryp.out
17892             $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
17893             if cmp tryp.c tryp.out >/dev/null 2>&1; then
17894                $cat >&4 <<EOM
17895 Good, at least fflush(stdin) seems to behave okay when stdin is a pipe.
17896 EOM
17897                 : now check for fflushall behaviour
17898                 case "$fflushall" in
17899                 '')     set try -DTRY_FFLUSH_ALL $output
17900                         if eval $compile; then
17901                                 $cat >&4 <<EOM
17902 (Now testing the other method--but note that this also may fail.)
17903 EOM
17904                                 $run ./try 2>/dev/null
17905                                 code=$?
17906                                 $from try.out
17907                                 if $test -s try.out -a "X$code" = X42; then
17908                                         fflushall="`$cat try.out`"
17909                                 fi
17910                         fi
17911                         $rm -f core try.core core.try.*
17912                         case "$fflushall" in
17913                         x)      $cat >&4 <<EOM
17914 Whew. Flushing explicitly all the stdio streams works.
17915 EOM
17916                                 fflushall="$define"
17917                                 ;;
17918                         '')     $cat >&4 <<EOM
17919 Sigh. Flushing explicitly all the stdio streams doesn't work.
17920 EOM
17921                                 fflushall="$undef"
17922                                 ;;
17923                         *)      $cat >&4 <<EOM
17924 Cannot figure out whether flushing stdio streams explicitly works or not.
17925 I'm assuming it doesn't.
17926 EOM
17927                                 fflushall="$undef"
17928                                 ;;
17929                         esac
17930                         ;;
17931                 "$define"|true|[yY]*)
17932                         fflushall="$define"
17933                         ;;
17934                 *)
17935                         fflushall="$undef"
17936                         ;;
17937                 esac
17938             else
17939                 $cat >&4 <<EOM
17940 All is futile.  Even fflush(stdin) clobbers input pipes!
17941 EOM
17942                 fflushall="$undef"
17943             fi
17944         else
17945             fflushall="$undef"
17946         fi
17947         $rm -f core tryp.c tryp.core core.tryp.*
17948         ;;
17949 *)      fflushall="$undef"
17950         ;;
17951 esac
17952
17953 case "$fflushNULL$fflushall" in
17954 undefundef)
17955         $cat <<EOM
17956 OK, I give up.  I cannot figure out how to flush pending stdio output.
17957 We won't be flushing handles at all before fork/exec/popen.
17958 EOM
17959         ;;
17960 esac
17961 $rm -f try.* try$exe_ext
17962
17963 : Store the full pathname to the ar program for use in the C program
17964 : Respect a hint or command line value for full_ar.
17965 case "$full_ar" in
17966 '') full_ar=$ar ;;
17967 esac
17968
17969 : Store the full pathname to the sed program for use in the C program
17970 full_sed=$sed
17971
17972 : see what type gids are declared as in the kernel
17973 echo " "
17974 echo "Looking for the type for group ids returned by getgid()."
17975 set gid_t gidtype xxx stdio.h sys/types.h
17976 eval $typedef
17977 case "$gidtype" in
17978 xxx)
17979         xxx=`./findhdr sys/user.h`
17980         set `grep 'groups\[NGROUPS\];' "$xxx" 2>/dev/null` unsigned short
17981         case $1 in
17982         unsigned) dflt="$1 $2" ;;
17983         *) dflt="$1" ;;
17984         esac
17985         ;;
17986 *) dflt="$gidtype";;
17987 esac
17988 case "$gidtype" in
17989 gid_t) echo "gid_t found." ;;
17990 *)      rp="What is the type for group ids returned by getgid()?"
17991         . ./myread
17992         gidtype="$ans"
17993         ;;
17994 esac
17995
17996 echo " "
17997 case "$gidtype" in
17998 *_t) zzz="$gidtype"     ;;
17999 *)   zzz="gid"          ;;
18000 esac
18001 echo "Checking the size of $zzz..." >&4 
18002 cat > try.c <<EOCP
18003 #include <sys/types.h>
18004 #include <stdio.h>
18005 #$i_stdlib I_STDLIB
18006 #ifdef I_STDLIB
18007 #include <stdlib.h>
18008 #endif
18009 int main() {
18010     printf("%d\n", (int)sizeof($gidtype));
18011     exit(0);
18012 }
18013 EOCP
18014 set try
18015 if eval $compile_ok; then
18016         yyy=`$run ./try`
18017         case "$yyy" in
18018         '')     gidsize=4
18019                 echo "(I can't execute the test program--guessing $gidsize.)" >&4
18020                 ;;
18021         *)      gidsize=$yyy
18022                 echo "Your $zzz is $gidsize bytes long."
18023                 ;;
18024         esac
18025 else
18026         gidsize=4
18027         echo "(I can't compile the test program--guessing $gidsize.)" >&4
18028 fi
18029
18030
18031 echo " "
18032 case "$gidtype" in
18033 *_t) zzz="$gidtype"     ;;
18034 *)   zzz="gid"          ;;
18035 esac
18036 echo "Checking the sign of $zzz..." >&4 
18037 cat > try.c <<EOCP
18038 #include <sys/types.h>
18039 #include <stdio.h>
18040 int main() {
18041         $gidtype foo = -1;
18042         if (foo < 0)
18043                 printf("-1\n");
18044         else
18045                 printf("1\n");
18046 }
18047 EOCP
18048 set try
18049 if eval $compile; then
18050         yyy=`$run ./try`
18051         case "$yyy" in
18052         '')     gidsign=1
18053                 echo "(I can't execute the test program--guessing unsigned.)" >&4
18054                 ;;
18055         *)      gidsign=$yyy
18056                 case "$gidsign" in
18057                  1) echo "Your $zzz is unsigned." ;;
18058                 -1) echo "Your $zzz is signed."   ;;
18059                 esac
18060                 ;;
18061         esac
18062 else
18063         gidsign=1
18064         echo "(I can't compile the test program--guessing unsigned.)" >&4
18065 fi
18066
18067
18068 echo " "
18069
18070 if $test X"$quadtype" != X; then
18071
18072 echo "Checking how to print 64-bit integers..." >&4
18073
18074 if $test X"$sPRId64" = X -a X"$quadtype" = Xint; then
18075         $cat >try.c <<'EOCP'
18076 #include <sys/types.h>
18077 #include <stdio.h>
18078 int main() {
18079   int q = 12345678901;
18080   printf("%ld\n", q);
18081 }
18082 EOCP
18083         set try
18084         if eval $compile; then
18085                 yyy=`$run ./try`
18086                 case "$yyy" in
18087                 12345678901)
18088                         sPRId64='"d"'; sPRIi64='"i"'; sPRIu64='"u"';
18089                         sPRIo64='"o"'; sPRIx64='"x"'; sPRIXU64='"X"';
18090                         echo "We will use %d."
18091                         ;;
18092                 esac
18093         fi
18094 fi
18095
18096 if $test X"$sPRId64" = X -a X"$quadtype" = Xlong; then
18097         $cat >try.c <<'EOCP'
18098 #include <sys/types.h>
18099 #include <stdio.h>
18100 int main() {
18101   long q = 12345678901;
18102   printf("%ld\n", q);
18103 }
18104 EOCP
18105         set try
18106         if eval $compile; then
18107                 yyy=`$run ./try`
18108                 case "$yyy" in
18109                 12345678901)
18110                         sPRId64='"ld"'; sPRIi64='"li"'; sPRIu64='"lu"';
18111                         sPRIo64='"lo"'; sPRIx64='"lx"'; sPRIXU64='"lX"';
18112                         echo "We will use %ld."
18113                         ;;
18114                 esac
18115         fi
18116 fi
18117
18118 if $test X"$sPRId64" = X -a X"$i_inttypes" = X"$define" -a X"$quadtype" = Xint64_t; then
18119         $cat >try.c <<'EOCP'
18120 #include <sys/types.h>
18121 #include <inttypes.h>
18122 #include <stdio.h>
18123 int main() {
18124   int64_t q = 12345678901;
18125   printf("%" PRId64 "\n", q);
18126 }
18127 EOCP
18128         set try
18129         if eval $compile; then
18130                 yyy=`$run ./try`
18131                 case "$yyy" in
18132                 12345678901)
18133                         sPRId64=PRId64; sPRIi64=PRIi64; sPRIu64=PRIu64;
18134                         sPRIo64=PRIo64; sPRIx64=PRIx64; sPRIXU64=PRIXU64;
18135                         echo "We will use the C9X style."
18136                         ;;
18137                 esac
18138         fi
18139 fi
18140
18141 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
18142         $cat >try.c <<EOCP
18143 #include <sys/types.h>
18144 #include <stdio.h>
18145 int main() {
18146   $quadtype q = 12345678901;
18147   printf("%Ld\n", q);
18148 }
18149 EOCP
18150         set try
18151         if eval $compile; then
18152                 yyy=`$run ./try`
18153                 case "$yyy" in
18154                 12345678901)
18155                         sPRId64='"Ld"'; sPRIi64='"Li"'; sPRIu64='"Lu"';
18156                         sPRIo64='"Lo"'; sPRIx64='"Lx"'; sPRIXU64='"LX"';
18157                         echo "We will use %Ld."
18158                         ;;
18159                 esac
18160         fi
18161 fi
18162
18163 if $test X"$sPRId64" = X -a X"$quadtype" = X"long long"; then
18164         $cat >try.c <<'EOCP'
18165 #include <sys/types.h>
18166 #include <stdio.h>
18167 int main() {
18168   long long q = 12345678901LL; /* AIX cc requires the LL suffix. */
18169   printf("%lld\n", q);
18170 }
18171 EOCP
18172         set try
18173         if eval $compile; then
18174                 yyy=`$run ./try`
18175                 case "$yyy" in
18176                 12345678901)
18177                         sPRId64='"lld"'; sPRIi64='"lli"'; sPRIu64='"llu"';
18178                         sPRIo64='"llo"'; sPRIx64='"llx"'; sPRIXU64='"llX"';
18179                         echo "We will use the %lld style."
18180                         ;;
18181                 esac
18182         fi
18183 fi
18184
18185 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
18186         $cat >try.c <<EOCP
18187 #include <sys/types.h>
18188 #include <stdio.h>
18189 int main() {
18190   $quadtype q = 12345678901;
18191   printf("%qd\n", q);
18192 }
18193 EOCP
18194         set try
18195         if eval $compile; then
18196                 yyy=`$run ./try`
18197                 case "$yyy" in
18198                 12345678901)
18199                         sPRId64='"qd"'; sPRIi64='"qi"'; sPRIu64='"qu"';
18200                         sPRIo64='"qo"'; sPRIx64='"qx"'; sPRIXU64='"qX"';
18201                         echo "We will use %qd."
18202                         ;;
18203                 esac
18204         fi
18205 fi
18206
18207 if $test X"$sPRId64" = X; then
18208         echo "Cannot figure out how to print 64-bit integers." >&4
18209 fi
18210
18211 $rm -f try try.*
18212
18213 fi
18214
18215 case "$sPRId64" in
18216 '')     d_PRId64="$undef"; d_PRIi64="$undef"; d_PRIu64="$undef"; 
18217         d_PRIo64="$undef"; d_PRIx64="$undef"; d_PRIXU64="$undef"; 
18218         ;;
18219 *)      d_PRId64="$define"; d_PRIi64="$define"; d_PRIu64="$define"; 
18220         d_PRIo64="$define"; d_PRIx64="$define"; d_PRIXU64="$define"; 
18221         ;;
18222 esac
18223
18224
18225 echo " "
18226 $echo "Checking the format strings to be used for Perl's internal types..." >&4
18227
18228 if $test X"$ivsize" = X8; then
18229         ivdformat="$sPRId64"
18230         uvuformat="$sPRIu64"
18231         uvoformat="$sPRIo64"
18232         uvxformat="$sPRIx64"
18233         uvXUformat="$sPRIXU64"
18234 else
18235         if $test X"$ivsize" = X"$longsize"; then
18236                 ivdformat='"ld"'
18237                 uvuformat='"lu"'
18238                 uvoformat='"lo"'
18239                 uvxformat='"lx"'
18240                 uvXUformat='"lX"'
18241         else
18242                 if $test X"$ivsize" = X"$intsize"; then
18243                         ivdformat='"d"'
18244                         uvuformat='"u"'
18245                         uvoformat='"o"'
18246                         uvxformat='"x"'
18247                         uvXUformat='"X"'
18248                 else
18249                         : far out
18250                         if $test X"$ivsize" = X"$shortsize"; then
18251                                 ivdformat='"hd"'
18252                                 uvuformat='"hu"'
18253                                 uvoformat='"ho"'
18254                                 uvxformat='"hx"'
18255                                 uvXUformat='"hX"'
18256                         fi
18257                 fi
18258         fi
18259 fi
18260
18261 if $test X"$uselongdouble" = X"$define" -a X"$d_longdbl" = X"$define" -a X"$d_PRIgldbl" = X"$define"; then
18262         nveformat="$sPRIeldbl"
18263         nvfformat="$sPRIfldbl"
18264         nvgformat="$sPRIgldbl"
18265         nvEUformat="$sPRIEUldbl"
18266         nvFUformat="$sPRIFUldbl"
18267         nvGUformat="$sPRIGUldbl"
18268 else
18269         nveformat='"e"'
18270         nvfformat='"f"'
18271         nvgformat='"g"'
18272         nvEUformat='"E"'
18273         nvFUformat='"F"'
18274         nvGUformat='"G"'
18275 fi
18276
18277 case "$ivdformat" in
18278 '') echo "$0: Fatal: failed to find format strings, cannot continue." >&4
18279     exit 1
18280     ;;
18281 esac
18282
18283
18284 echo " "
18285 $echo "Checking the format string to be used for gids..." >&4
18286
18287 case "$gidsign" in
18288 -1)     if $test X"$gidsize" = X"$ivsize"; then
18289                 gidformat="$ivdformat"
18290         else
18291                 if $test X"$gidsize" = X"$longsize"; then
18292                         gidformat='"ld"'
18293                 else
18294                         if $test X"$gidsize" = X"$intsize"; then
18295                                 gidformat='"d"'
18296                         else
18297                                 if $test X"$gidsize" = X"$shortsize"; then
18298                                         gidformat='"hd"'
18299                                 fi
18300                         fi
18301                 fi
18302         fi
18303         ;;
18304 *)      if $test X"$gidsize" = X"$uvsize"; then
18305                 gidformat="$uvuformat"
18306         else
18307                 if $test X"$gidsize" = X"$longsize"; then
18308                         gidformat='"lu"'
18309                 else
18310                         if $test X"$gidsize" = X"$intsize"; then
18311                                 gidformat='"u"'
18312                         else
18313                                 if $test X"$gidsize" = X"$shortsize"; then
18314                                         gidformat='"hu"'
18315                                 fi
18316                         fi
18317                 fi
18318         fi
18319         ;;
18320 esac
18321
18322 : see if getgroups exists
18323 set getgroups d_getgrps
18324 eval $inlibc
18325
18326 : see if setgroups exists
18327 set setgroups d_setgrps
18328 eval $inlibc
18329
18330
18331 : Find type of 2nd arg to 'getgroups()' and 'setgroups()'
18332 echo " "
18333 case "$d_getgrps$d_setgrps" in
18334 *define*)
18335         case "$groupstype" in
18336         '') dflt="$gidtype" ;;
18337         *)  dflt="$groupstype" ;;
18338         esac
18339         $cat <<EOM
18340 What type of pointer is the second argument to getgroups() and setgroups()?
18341 Usually this is the same as group ids, $gidtype, but not always.
18342
18343 EOM
18344         rp='What type pointer is the second argument to getgroups() and setgroups()?'
18345         . ./myread
18346         groupstype="$ans"
18347         ;;
18348 *)  groupstype="$gidtype";;
18349 esac
18350
18351 echo " "
18352 echo "Checking if your $make program sets \$(MAKE)..." >&4
18353 case "$make_set_make" in
18354 '')
18355         $sed 's/^X //' > testmake.mak << 'EOF'
18356 Xall:
18357 X       @echo 'maketemp="$(MAKE)"'
18358 EOF
18359         case "`$make -f testmake.mak 2>/dev/null`" in
18360         *maketemp=*) make_set_make='#' ;;
18361         *)      make_set_make="MAKE=$make" ;;
18362         esac
18363         $rm -f testmake.mak
18364         ;;
18365 esac
18366 case "$make_set_make" in
18367 '#') echo "Yup, it does.";;
18368 *) echo "Nope, it doesn't.";;
18369 esac
18370
18371 : see what type is used for mode_t
18372 rp="What is the type used for file modes for system calls (e.g. fchmod())?"
18373 set mode_t modetype int stdio.h sys/types.h
18374 eval $typedef_ask
18375
18376 : see if stdarg is available
18377 echo " "
18378 if $test `./findhdr stdarg.h`; then
18379         echo "<stdarg.h> found." >&4
18380         valstd="$define"
18381 else
18382         echo "<stdarg.h> NOT found." >&4
18383         valstd="$undef"
18384 fi
18385
18386 : see if varags is available
18387 echo " "
18388 if $test `./findhdr varargs.h`; then
18389         echo "<varargs.h> found." >&4
18390 else
18391         echo "<varargs.h> NOT found, but that's ok (I hope)." >&4
18392 fi
18393
18394 : set up the varargs testing programs
18395 $cat > varargs.c <<EOP
18396 #ifdef I_STDARG
18397 #include <stdarg.h>
18398 #endif
18399 #ifdef I_VARARGS
18400 #include <varargs.h>
18401 #endif
18402
18403 #ifdef I_STDARG
18404 int f(char *p, ...)
18405 #else
18406 int f(va_alist)
18407 va_dcl
18408 #endif
18409 {
18410         va_list ap;
18411 #ifndef I_STDARG
18412         char *p;
18413 #endif
18414 #ifdef I_STDARG
18415         va_start(ap,p);
18416 #else
18417         va_start(ap);
18418         p = va_arg(ap, char *);
18419 #endif
18420         va_end(ap);
18421 }
18422 EOP
18423 $cat > varargs <<EOP
18424 $startsh
18425 if $cc -c $ccflags -D\$1 varargs.c >/dev/null 2>&1; then
18426         echo "true"
18427 else
18428         echo "false"
18429 fi
18430 $rm -f varargs$_o
18431 EOP
18432 chmod +x varargs
18433
18434 : now check which varargs header should be included
18435 echo " "
18436 i_varhdr=''
18437 case "$valstd" in
18438 "$define")
18439         if `./varargs I_STDARG`; then
18440                 val='stdarg.h'
18441         elif `./varargs I_VARARGS`; then
18442                 val='varargs.h'
18443         fi
18444         ;;
18445 *)
18446         if `./varargs I_VARARGS`; then
18447                 val='varargs.h'
18448         fi
18449         ;;
18450 esac
18451 case "$val" in
18452 '')
18453 echo "I could not find the definition for va_dcl... You have problems..." >&4
18454         val="$undef"; set i_stdarg; eval $setvar
18455         val="$undef"; set i_varargs; eval $setvar
18456         ;;
18457 *) 
18458         set i_varhdr
18459         eval $setvar
18460         case "$i_varhdr" in
18461         stdarg.h)
18462                 val="$define"; set i_stdarg; eval $setvar
18463                 val="$undef"; set i_varargs; eval $setvar
18464                 ;;
18465         varargs.h)
18466                 val="$undef"; set i_stdarg; eval $setvar
18467                 val="$define"; set i_varargs; eval $setvar
18468                 ;;
18469         esac
18470         echo "We'll include <$i_varhdr> to get va_dcl definition." >&4;;
18471 esac
18472 $rm -f varargs*
18473
18474 : see if we need va_copy
18475 echo " "
18476 case "$i_stdarg" in
18477 "$define")
18478         $cat >try.c <<EOCP
18479 #include <stdarg.h>
18480 #include <stdio.h>
18481 #$i_stdlib I_STDLIB
18482 #ifdef I_STDLIB
18483 #include <stdlib.h>
18484 #endif
18485 #include <signal.h>
18486
18487 int
18488 ivfprintf(FILE *f, const char *fmt, va_list *valp)
18489 {
18490   return vfprintf(f, fmt, *valp);
18491 }
18492  
18493 int    
18494 myvfprintf(FILE *f, const  char *fmt, va_list val)
18495 {
18496   return ivfprintf(f, fmt, &val);
18497 }
18498       
18499 int
18500 myprintf(char *fmt, ...) 
18501 {
18502   va_list val;
18503   va_start(val, fmt);
18504   return myvfprintf(stdout, fmt, val); 
18505 }         
18506
18507 int
18508 main(int ac, char **av)
18509 {
18510   signal(SIGSEGV, exit);
18511
18512   myprintf("%s%cs all right, then\n", "that", '\'');                            
18513   exit(0);      
18514 }
18515 EOCP
18516         set try
18517         if eval $compile && $run ./try 2>&1 >/dev/null; then
18518                 case "`$run ./try`" in
18519                 "that's all right, then")
18520                         okay=yes
18521                         ;;
18522                 esac
18523         fi
18524         case "$okay" in
18525         yes)    echo "It seems that you don't need va_copy()." >&4
18526                 need_va_copy="$undef"
18527                 ;;
18528         *)      echo "It seems that va_copy() or similar will be needed." >&4
18529                 need_va_copy="$define"
18530                 ;;
18531         esac
18532         $rm -f try.* core core.* *.core *.core.*
18533         ;;
18534 *)      echo "You don't have <stdarg.h>, not checking for va_copy()." >&4
18535         ;;
18536 esac
18537
18538 : see what type is used for size_t
18539 rp="What is the type used for the length parameter for string functions?"
18540 set size_t sizetype 'unsigned int' stdio.h sys/types.h
18541 eval $typedef_ask
18542
18543 : check for type of arguments to gethostbyaddr. 
18544 if test "X$netdb_host_type" = X -o "X$netdb_hlen_type" = X; then
18545         case "$d_gethbyaddr" in
18546         $define)
18547                 $cat <<EOM
18548
18549 Checking to see what type of arguments are accepted by gethostbyaddr().
18550 EOM
18551                 hdrs="$define sys/types.h
18552                         $d_socket sys/socket.h 
18553                         $i_niin netinet/in.h 
18554                         $i_netdb netdb.h
18555                         $i_unistd unistd.h"
18556                 : The first arg can 'char *' or 'void *'
18557                 : The second arg is some of integral type
18558                 for xxx in in_addr_t 'const void *' 'const char *' 'void *' 'char *'; do
18559                         for yyy in size_t long int; do
18560                                 case "$netdb_host_type" in
18561                                 '')     try="extern struct hostent *gethostbyaddr($xxx, $yyy, int);"
18562                                         if ./protochk "$try" $hdrs; then
18563                                                 echo "Your system accepts $xxx for the first arg."
18564                                                 echo "...and $yyy for the second arg."
18565                                                 netdb_host_type="$xxx"
18566                                                 netdb_hlen_type="$yyy"
18567                                         fi
18568                                         ;;
18569                                 esac
18570                         done
18571                 done
18572                 : In case none of those worked, prompt the user.
18573                 case "$netdb_host_type" in
18574                 '')     rp='What is the type for the 1st argument to gethostbyaddr?'
18575                         dflt='char *'
18576                         . ./myread
18577                         netdb_host_type=$ans
18578                         rp='What is the type for the 2nd argument to gethostbyaddr?'
18579                         dflt="$sizetype"
18580                         . ./myread
18581                         netdb_hlen_type=$ans
18582                         ;;
18583                 esac
18584                 ;;
18585         *)      : no gethostbyaddr, so pick harmless defaults
18586                 netdb_host_type='char *'
18587                 netdb_hlen_type="$sizetype"
18588                 ;;
18589         esac
18590         # Remove the "const" if needed. -- but then we'll have a 
18591         # prototype clash!
18592         # netdb_host_type=`echo "$netdb_host_type" | sed 's/^const //'`
18593 fi
18594
18595 : check for type of argument to gethostbyname. 
18596 if test "X$netdb_name_type" = X ; then
18597         case "$d_gethbyname" in
18598         $define)
18599                 $cat <<EOM
18600
18601 Checking to see what type of argument is accepted by gethostbyname().
18602 EOM
18603                 hdrs="$define sys/types.h
18604                         $d_socket sys/socket.h 
18605                         $i_niin netinet/in.h 
18606                         $i_netdb netdb.h
18607                         $i_unistd unistd.h"
18608                 for xxx in "const char *" "char *"; do
18609                         case "$netdb_name_type" in
18610                         '')     try="extern struct hostent *gethostbyname($xxx);"
18611                                 if ./protochk "$try" $hdrs; then
18612                                         echo "Your system accepts $xxx."
18613                                         netdb_name_type="$xxx"
18614                                 fi
18615                                 ;;
18616                         esac
18617                 done
18618                 : In case none of those worked, prompt the user.
18619                 case "$netdb_name_type" in
18620                 '')     rp='What is the type for the 1st argument to gethostbyname?'
18621                         dflt='char *'
18622                         . ./myread
18623                         netdb_name_type=$ans
18624                         ;;
18625                 esac
18626                 ;;
18627         *)      : no gethostbyname, so pick harmless default
18628                 netdb_name_type='char *'
18629                 ;;
18630         esac
18631 fi
18632
18633 : check for type of 1st argument to getnetbyaddr. 
18634 if test "X$netdb_net_type" = X ; then
18635         case "$d_getnbyaddr" in
18636         $define)
18637                 $cat <<EOM
18638
18639 Checking to see what type of 1st argument is accepted by getnetbyaddr().
18640 EOM
18641                 hdrs="$define sys/types.h
18642                         $d_socket sys/socket.h 
18643                         $i_niin netinet/in.h 
18644                         $i_netdb netdb.h
18645                         $i_unistd unistd.h"
18646                 for xxx in in_addr_t "unsigned long" long "unsigned int" int; do
18647                         case "$netdb_net_type" in
18648                         '')     try="extern struct netent *getnetbyaddr($xxx, int);"
18649                                 if ./protochk "$try" $hdrs; then
18650                                         echo "Your system accepts $xxx."
18651                                         netdb_net_type="$xxx"
18652                                 fi
18653                                 ;;
18654                         esac
18655                 done
18656                 : In case none of those worked, prompt the user.
18657                 case "$netdb_net_type" in
18658                 '')     rp='What is the type for the 1st argument to getnetbyaddr?'
18659                         dflt='long'
18660                         . ./myread
18661                         netdb_net_type=$ans
18662                         ;;
18663                 esac
18664                 ;;
18665         *)      : no getnetbyaddr, so pick harmless default
18666                 netdb_net_type='long'
18667                 ;;
18668         esac
18669 fi
18670 : locate the preferred pager for this system
18671 fn=f/
18672 case "$pager" in
18673 '')
18674         dflt=''
18675         case "$pg" in
18676         /*) dflt=$pg;;
18677         [a-zA-Z]:/*) dflt=$pg;;
18678         esac
18679         case "$more" in
18680         /*) dflt=$more;;
18681         [a-zA-Z]:/*) dflt=$more;;
18682         esac
18683         case "$less" in
18684         /*) dflt=$less;;
18685         [a-zA-Z]:/*) dflt=$less;;
18686         esac
18687         case "$dflt" in
18688         '') dflt=/usr/ucb/more;;
18689         esac
18690         ;;
18691 *)      dflt="$pager"
18692         : Instruct ./getfile to trust the hinted or previous pager value,
18693         : even if it does not begin with a slash.  For example, on os2,
18694         : pager might be cmd /c more.  See comments in UU/getfile.
18695         fn="f/($pager)"
18696         ;;
18697 esac
18698 echo " "
18699 rp='What pager is used on your system?'
18700 . ./getfile
18701 pager="$ans"
18702
18703 : see what type pids are declared as in the kernel
18704 rp="What is the type of process ids on this system?"
18705 set pid_t pidtype int stdio.h sys/types.h
18706 eval $typedef_ask
18707
18708 : see if ar generates random libraries by itself
18709 echo " "
18710 echo "Checking how to generate random libraries on your machine..." >&4
18711 echo 'int bar1() { return bar2(); }' > bar1.c
18712 echo 'int bar2() { return 2; }' > bar2.c
18713 $cat > foo.c <<EOP
18714 #$i_stdlib I_STDLIB
18715 #ifdef I_STDLIB
18716 #include <stdlib.h>
18717 #endif
18718 int main() { printf("%d\n", bar1()); exit(0); }
18719 EOP
18720 $cc $ccflags -c bar1.c >/dev/null 2>&1
18721 $cc $ccflags -c bar2.c >/dev/null 2>&1
18722 $cc $ccflags -c foo.c >/dev/null 2>&1
18723 $ar rc bar$_a bar2$_o bar1$_o >/dev/null 2>&1
18724 if $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
18725         $run ./foobar >/dev/null 2>&1; then
18726         echo "$ar appears to generate random libraries itself."
18727         orderlib=false
18728         ranlib=":"
18729 elif $ar ts bar$_a >/dev/null 2>&1 &&
18730         $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
18731         $run ./foobar >/dev/null 2>&1; then
18732                 echo "a table of contents needs to be added with '$ar ts'."
18733                 orderlib=false
18734                 ranlib="$ar ts"
18735 else
18736         case "$ranlib" in
18737         :) ranlib='';;
18738         '')
18739                 ranlib=`./loc ranlib X /usr/bin /bin /usr/local/bin`
18740                 $test -f $ranlib || ranlib=''
18741                 ;;
18742         esac
18743         if $test -n "$ranlib"; then
18744                 echo "your system has '$ranlib'; we'll use that."
18745                 orderlib=false
18746         else
18747                 echo "your system doesn't seem to support random libraries"
18748                 echo "so we'll use lorder and tsort to order the libraries."
18749                 orderlib=true
18750                 ranlib=":"
18751         fi
18752 fi
18753 $rm -f foo* bar* 
18754
18755 : check for type of arguments to select. 
18756 case "$selecttype" in
18757 '') case "$d_select" in
18758         $define)
18759                 echo " "
18760                 $cat <<EOM
18761 Checking to see what type of arguments are accepted by select().
18762 EOM
18763                 hdrs="$define sys/types.h
18764                         $i_systime sys/time.h 
18765                         $i_sysselct sys/select.h
18766                         $d_socket sys/socket.h"
18767                 : The first arg can be int, unsigned, or size_t
18768                 : The last arg may or may not be 'const'
18769                 val=''
18770                 : void pointer has been seen but using that
18771                 : breaks the selectminbits test
18772                 for xxx in 'fd_set *' 'int *'; do
18773                         for nfd in 'int' 'size_t' 'unsigned long' 'unsigned' ; do
18774                                 for tmo in 'struct timeval *' 'const struct timeval *'; do
18775                                         case "$val" in
18776                                         '')     try="extern select _(($nfd, $xxx, $xxx, $xxx, $tmo));"
18777                                                 if ./protochk "$try" $hdrs; then
18778                                                         echo "Your system accepts $xxx."
18779                                                         val="$xxx"
18780                                                 fi
18781                                                 ;;
18782                                         esac
18783                                 done
18784                         done
18785                 done
18786                 case "$val" in
18787                 '')     rp='What is the type for the 2nd, 3rd, and 4th arguments to select?'
18788                         case "$d_fd_set" in
18789                                 $define) dflt="fd_set *" ;;
18790                                 *)              dflt="int *" ;;
18791                         esac
18792                         . ./myread
18793                         val=$ans
18794                         ;;
18795                 esac
18796                 selecttype="$val"
18797                 ;;
18798         *)      : no select, so pick a harmless default
18799                 selecttype='int *'
18800                 ;;
18801         esac
18802         ;;
18803 esac
18804
18805 : check for the select 'width'
18806 case "$selectminbits" in
18807 '') safebits=`expr $ptrsize \* 8`
18808     case "$d_select" in
18809         $define)
18810                 $cat <<EOM
18811
18812 Checking to see on how many bits at a time your select() operates...
18813 EOM
18814                 $cat >try.c <<EOCP
18815 #include <sys/types.h>
18816 #$i_time I_TIME
18817 #$i_systime I_SYS_TIME
18818 #$i_systimek I_SYS_TIME_KERNEL
18819 #ifdef I_TIME
18820 #   include <time.h>
18821 #endif
18822 #ifdef I_SYS_TIME
18823 #   ifdef I_SYS_TIME_KERNEL
18824 #       define KERNEL
18825 #   endif
18826 #   include <sys/time.h>
18827 #   ifdef I_SYS_TIME_KERNEL
18828 #       undef KERNEL
18829 #   endif
18830 #endif
18831 #$i_sysselct I_SYS_SELECT
18832 #ifdef I_SYS_SELECT
18833 #include <sys/select.h>
18834 #endif
18835 #$d_socket HAS_SOCKET
18836 #ifdef HAS_SOCKET
18837 #   include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
18838 #endif
18839 #include <stdio.h>
18840 #$i_stdlib I_STDLIB
18841 #ifdef I_STDLIB
18842 #include <stdlib.h>
18843 #endif
18844 $selecttype b;
18845 #define S sizeof(*(b))
18846 #define MINBITS 64
18847 #define NBYTES (S * 8 > MINBITS ? S : MINBITS/8)
18848 #define NBITS  (NBYTES * 8)
18849 int main() {
18850     char *s = malloc(NBYTES);
18851     struct timeval t;
18852     int i;
18853     FILE* fp;
18854     int fd;
18855
18856     if (!s)
18857         exit(1);
18858     fclose(stdin);
18859     fp = fopen("try.c", "r");
18860     if (fp == 0)
18861       exit(2);
18862     fd = fileno(fp);
18863     if (fd < 0)
18864       exit(3);
18865     b = ($selecttype)s;
18866     for (i = 0; i < NBITS; i++)
18867         FD_SET(i, b);
18868     t.tv_sec  = 0;
18869     t.tv_usec = 0;
18870     select(fd + 1, b, 0, 0, &t);
18871     for (i = NBITS - 1; i > fd && FD_ISSET(i, b); i--);
18872     free(s);
18873     printf("%d\n", i + 1);
18874     return 0;
18875 }
18876 EOCP
18877                 set try
18878                 if eval $compile_ok; then
18879                         selectminbits=`$run ./try`
18880                         case "$selectminbits" in
18881                         '')     cat >&4 <<EOM
18882 Cannot figure out on how many bits at a time your select() operates.
18883 I'll play safe and guess it is $safebits bits.
18884 EOM
18885                                 selectminbits=$safebits
18886                                 bits="$safebits bits"
18887                                 ;;
18888                         1)      bits="1 bit" ;;
18889                         *)      bits="$selectminbits bits" ;;
18890                         esac
18891                         echo "Your select() operates on $bits at a time." >&4
18892                 else
18893                         rp='What is the minimum number of bits your select() operates on?'
18894                         case "$byteorder" in
18895                         12345678)       dflt=64 ;;
18896                         1234)           dflt=32 ;;
18897                         *)              dflt=1  ;;
18898                         esac
18899                         . ./myread
18900                         val=$ans
18901                         selectminbits="$val"
18902                 fi
18903                 $rm -f try.* try
18904                 ;;
18905         *)      : no select, so pick a harmless default
18906                 selectminbits=$safebits
18907                 ;;
18908         esac
18909         ;;
18910 esac
18911
18912 : Trace out the files included by signal.h, then look for SIGxxx names.
18913 : Remove SIGARRAYSIZE used by HPUX.
18914 : Remove SIGSTKSIZE used by Linux.
18915 : Remove SIGSTKSZ used by Posix.
18916 : Remove SIGTYP void lines used by OS2.
18917 : Some cpps, like os390, dont give the file name anywhere
18918 if [ "X$fieldn" = X ]; then
18919         : Just make some guesses.  We check them later.
18920         xxx='/usr/include/signal.h /usr/include/sys/signal.h'
18921 else
18922         xxx=`echo '#include <signal.h>' |
18923         $cppstdin $cppminus $cppflags 2>/dev/null |
18924         $grep '^[       ]*#.*include' | 
18925         $awk "{print \\$$fieldn}" | $sed 's!"!!g' | $sed 's!\\\\\\\\!/!g' | $sort | $uniq`
18926 fi
18927 : Check this list of files to be sure we have parsed the cpp output ok.
18928 : This will also avoid potentially non-existent files, such 
18929 : as ../foo/bar.h
18930 xxxfiles=''
18931 for xx in $xxx /dev/null ; do
18932         $test -f "$xx" && xxxfiles="$xxxfiles $xx"
18933 done
18934 : If we have found no files, at least try signal.h
18935 case "$xxxfiles" in
18936 '')     xxxfiles=`./findhdr signal.h` ;;
18937 esac
18938 xxx=`awk '
18939 $1 ~ /^#define$/ && $2 ~ /^SIG[A-Z0-9]*$/ && $2 !~ /SIGARRAYSIZE/ && $2 !~ /SIGSTKSIZE/ && $2 !~ /SIGSTKSZ/ && $3 !~ /void/ {
18940         print substr($2, 4, 20)
18941 }
18942 $1 == "#" && $2 ~ /^define$/ && $3 ~ /^SIG[A-Z0-9]*$/ && $3 !~ /SIGARRAYSIZE/ && $4 !~ /void/ {
18943         print substr($3, 4, 20)
18944 }' $xxxfiles`
18945 : Append some common names just in case the awk scan failed.
18946 xxx="$xxx ABRT ALRM BUS CANCEL CHLD CLD CONT DIL EMT FPE"
18947 xxx="$xxx FREEZE HUP ILL INT IO IOT KILL LOST LWP PHONE"
18948 xxx="$xxx PIPE POLL PROF PWR QUIT RTMAX RTMIN SEGV STKFLT STOP"
18949 xxx="$xxx SYS TERM THAW TRAP TSTP TTIN TTOU URG USR1 USR2"
18950 xxx="$xxx USR3 USR4 VTALRM WAITING WINCH WIND WINDOW XCPU XFSZ"
18951
18952 : generate a few handy files for later
18953 $cat > signal.c <<EOCP
18954 #include <sys/types.h>
18955 #include <signal.h>
18956 #$i_stdlib I_STDLIB
18957 #ifdef I_STDLIB
18958 #include <stdlib.h>
18959 #endif
18960 #include <stdio.h>
18961 int main() {
18962
18963 /* Strange style to avoid deeply-nested #if/#else/#endif */
18964 #ifndef NSIG
18965 #  ifdef _NSIG
18966 #    define NSIG (_NSIG)
18967 #  endif
18968 #endif
18969
18970 #ifndef NSIG
18971 #  ifdef SIGMAX
18972 #    define NSIG (SIGMAX+1)
18973 #  endif
18974 #endif
18975
18976 #ifndef NSIG
18977 #  ifdef SIG_MAX
18978 #    define NSIG (SIG_MAX+1)
18979 #  endif
18980 #endif
18981
18982 #ifndef NSIG
18983 #  ifdef MAXSIG
18984 #    define NSIG (MAXSIG+1)
18985 #  endif
18986 #endif
18987
18988 #ifndef NSIG
18989 #  ifdef MAX_SIG
18990 #    define NSIG (MAX_SIG+1)
18991 #  endif
18992 #endif
18993
18994 #ifndef NSIG
18995 #  ifdef SIGARRAYSIZE
18996 #    define NSIG (SIGARRAYSIZE+1) /* Not sure of the +1 */
18997 #  endif
18998 #endif
18999
19000 #ifndef NSIG
19001 #  ifdef _sys_nsig
19002 #    define NSIG (_sys_nsig) /* Solaris 2.5 */
19003 #  endif
19004 #endif
19005
19006 /* Default to some arbitrary number that's big enough to get most
19007    of the common signals.
19008 */
19009 #ifndef NSIG
19010 #    define NSIG 50
19011 #endif
19012
19013 printf("NSIG %d\n", NSIG);
19014
19015 #ifndef JUST_NSIG
19016
19017 EOCP
19018
19019 echo $xxx | $tr ' ' $trnl | $sort | $uniq | $awk '
19020 {
19021         printf "#ifdef SIG"; printf $1; printf "\n"
19022         printf "printf(\""; printf $1; printf " %%d\\n\",SIG";
19023         printf $1; printf ");\n"
19024         printf "#endif\n"
19025 }
19026 END {
19027         printf "#endif /* JUST_NSIG */\n";
19028         printf "exit(0);\n}\n";
19029 }
19030 ' >>signal.c
19031 $cat >signal.awk <<'EOP'
19032 BEGIN { ndups = 0 }
19033 $1 ~ /^NSIG$/ { nsig = $2 }
19034 ($1 !~ /^NSIG$/) && (NF == 2) && ($2 ~ /^[0-9][0-9]*$/) {
19035     if ($2 > maxsig) { maxsig = $2 }
19036     if (sig_name[$2]) {
19037         dup_name[ndups] = $1
19038         dup_num[ndups] = $2
19039         ndups++ 
19040     }
19041     else {
19042         sig_name[$2] = $1
19043         sig_num[$2] = $2
19044     }
19045 }
19046 END { 
19047     if (nsig == 0) {
19048         nsig = maxsig + 1
19049     }
19050     printf("NSIG %d\n", nsig);
19051     for (n = 1; n < nsig; n++) {
19052         if (sig_name[n]) {
19053             printf("%s %d\n", sig_name[n], sig_num[n])
19054         }
19055         else {
19056             printf("NUM%d %d\n", n, n) 
19057         }
19058     }
19059     for (n = 0; n < ndups; n++) {
19060         printf("%s %d\n", dup_name[n], dup_num[n])
19061     }
19062 }
19063 EOP
19064 $cat >signal_cmd <<EOS
19065 $startsh
19066 if $test -s signal.lst; then
19067     echo "Using your existing signal.lst file"
19068         exit 0
19069 fi
19070 xxx="$xxx"
19071 EOS
19072 $cat >>signal_cmd <<'EOS'
19073
19074 set signal
19075 if eval $compile_ok; then
19076         $run ./signal$_exe | ($sort -n -k 2 2>/dev/null || $sort -n +1) | $uniq | $awk -f signal.awk >signal.lst
19077 else
19078         echo "(I can't seem be able to compile the whole test program)" >&4
19079         echo "(I'll try it in little pieces.)" >&4
19080         set signal -DJUST_NSIG
19081         if eval $compile_ok; then
19082                 $run ./signal$_exe > signal.nsg
19083                 $cat signal.nsg
19084         else
19085                 echo "I can't seem to figure out how many signals you have." >&4
19086                 echo "Guessing 50." >&4
19087                 echo 'NSIG 50' > signal.nsg
19088         fi
19089         : Now look at all the signal names, one at a time.
19090         for xx in `echo $xxx | $tr ' ' $trnl | $sort | $uniq`; do
19091                 $cat > signal.c <<EOCP
19092 #include <sys/types.h>
19093 #include <signal.h>
19094 #include <stdio.h>
19095 int main() {
19096 printf("$xx %d\n", SIG${xx});
19097 return 0;
19098 }
19099 EOCP
19100                 set signal
19101                 if eval $compile; then
19102                         echo "SIG${xx} found."
19103                         $run ./signal$_exe  >> signal.ls1
19104                 else
19105                         echo "SIG${xx} NOT found."
19106                 fi
19107         done
19108         if $test -s signal.ls1; then
19109                 $cat signal.nsg signal.ls1 |
19110                         $sort -n | $uniq | $awk -f signal.awk >signal.lst
19111         fi
19112
19113 fi
19114 if $test -s signal.lst; then
19115         :
19116 else
19117         echo "(AAK! I can't compile the test programs -- Guessing)" >&4
19118         echo 'kill -l' >signal
19119         set X `csh -f <signal`
19120         $rm -f signal
19121         shift
19122         case $# in
19123         0) set HUP INT QUIT ILL TRAP ABRT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM;;
19124         esac
19125         echo $@ | $tr ' ' $trnl | \
19126             $awk '{ printf "%s %d\n", $1, ++s; }
19127                   END { printf "NSIG %d\n", ++s }' >signal.lst
19128 fi
19129 $rm -f signal.c signal$_exe signal$_o signal.nsg signal.ls1
19130 EOS
19131 chmod a+x signal_cmd
19132 $eunicefix signal_cmd
19133
19134 : generate list of signal names
19135 echo " "
19136 case "$sig_name_init" in
19137 '') doinit=yes ;;
19138 *)  case "$sig_num_init" in
19139     ''|*,*) doinit=yes ;;
19140     esac ;;
19141 esac
19142 case "$doinit" in
19143 yes)
19144         echo "Generating a list of signal names and numbers..." >&4
19145         . ./signal_cmd
19146         sig_count=`$awk '/^NSIG/ { printf "%d", $2 }' signal.lst`
19147         sig_name=`$awk 'BEGIN { printf "ZERO " }
19148                         !/^NSIG/ { printf "%s ", $1 }' signal.lst`
19149         sig_num=`$awk  'BEGIN { printf "0 " }
19150                         !/^NSIG/ { printf "%d ", $2 }' signal.lst`
19151         sig_name_init=`$awk 'BEGIN      { printf "\"ZERO\", " }
19152                              !/^NSIG/   { printf "\"%s\", ", $1 }
19153                              END        { printf "0\n" }' signal.lst`
19154         sig_num_init=`$awk  'BEGIN      { printf "0, " }
19155                              !/^NSIG/   { printf "%d, ", $2}
19156                              END        { printf "0\n"}' signal.lst`
19157         ;;
19158 esac
19159 echo "The following $sig_count signals are available:"
19160 echo " "
19161 echo $sig_name | $awk \
19162 'BEGIN { linelen = 0 }
19163 {
19164         for (i = 1; i <= NF; i++) {
19165                 name = "SIG" $i " "
19166                 linelen = linelen + length(name)
19167                 if (linelen > 70) {
19168                         printf "\n"
19169                         linelen = length(name)
19170                 }
19171                 printf "%s", name
19172         }
19173         printf "\n"
19174 }'
19175 sig_size=`echo $sig_name | awk '{print NF}'`
19176 $rm -f signal signal.c signal.awk signal.lst signal_cmd 
19177
19178 echo " "
19179 case "$sizetype" in
19180 *_t) zzz="$sizetype"    ;;
19181 *)   zzz="filesize"     ;;
19182 esac
19183 echo "Checking the size of $zzz..." >&4 
19184 cat > try.c <<EOCP
19185 #include <sys/types.h>
19186 #include <stdio.h>
19187 #$i_stdlib I_STDLIB
19188 #ifdef I_STDLIB
19189 #include <stdlib.h>
19190 #endif
19191 int main() {
19192     printf("%d\n", (int)sizeof($sizetype));
19193     exit(0);
19194 }
19195 EOCP
19196 set try
19197 if eval $compile_ok; then
19198         yyy=`$run ./try`
19199         case "$yyy" in
19200         '')     sizesize=4
19201                 echo "(I can't execute the test program--guessing $sizesize.)" >&4
19202                 ;;
19203         *)      sizesize=$yyy
19204                 echo "Your $zzz size is $sizesize bytes."
19205                 ;;
19206         esac
19207 else
19208         sizesize=4
19209         echo "(I can't compile the test program--guessing $sizesize.)" >&4
19210 fi
19211
19212
19213 : check for socklen_t
19214 echo " "
19215 echo "Checking to see if you have socklen_t..." >&4
19216 $cat >try.c <<EOCP
19217 #include <sys/types.h>
19218 #$d_socket HAS_SOCKET
19219 #ifdef HAS_SOCKET
19220 #include <sys/socket.h>
19221 #endif
19222 int main() { socklen_t x = 16; }
19223 EOCP
19224 set try
19225 if eval $compile; then
19226         val="$define"
19227         echo "You have socklen_t."
19228 else
19229         val="$undef"
19230         echo "You do not have socklen_t."
19231         case "$sizetype" in
19232         size_t) echo "(You do have size_t, that might work. Some people are happy with just an int.)" ;;
19233         esac
19234 fi
19235 $rm -f try try.*
19236 set d_socklen_t
19237 eval $setvar
19238
19239 : see if this is a socks.h system
19240 set socks.h i_socks
19241 eval $inhdr
19242
19243 : check for type of the size argument to socket calls
19244 case "$d_socket" in
19245 "$define")
19246         $cat <<EOM
19247
19248 Checking to see what type is the last argument of accept().
19249 EOM
19250         yyy=''
19251         case "$d_socklen_t" in
19252         "$define") yyy="$yyy socklen_t"
19253         esac
19254         yyy="$yyy $sizetype int long unsigned"
19255         for xxx in $yyy; do
19256                 case "$socksizetype" in
19257                 '')     try="extern int accept(int, struct sockaddr *, $xxx *);"
19258                         case "$usesocks" in
19259                         "$define")
19260                                 if ./protochk "$try" $i_systypes sys/types.h $d_socket sys/socket.h literal '#define INCLUDE_PROTOTYPES' $i_socks socks.h.; then
19261                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
19262                                         socksizetype="$xxx"
19263                                 fi
19264                                 ;;
19265                         *)      if ./protochk "$try"  $i_systypes sys/types.h $d_socket sys/socket.h; then
19266                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
19267                                         socksizetype="$xxx"
19268                                 fi
19269                                 ;;
19270                         esac
19271                         ;;
19272                 esac
19273         done
19274 : In case none of those worked, prompt the user.
19275         case "$socksizetype" in
19276         '')     rp='What is the type for socket address structure sizes?'
19277                 dflt='int'
19278                 . ./myread
19279                 socksizetype=$ans
19280                 ;;
19281         esac
19282         ;;
19283 *)      : no sockets, so pick relatively harmless default
19284         socksizetype='int'
19285         ;;
19286 esac
19287
19288 : see what type is used for signed size_t
19289 set ssize_t ssizetype int stdio.h sys/types.h
19290 eval $typedef
19291 dflt="$ssizetype"
19292 $cat > try.c <<EOM
19293 #include <stdio.h>
19294 #$i_stdlib I_STDLIB
19295 #ifdef I_STDLIB
19296 #include <stdlib.h>
19297 #endif
19298 #include <sys/types.h>
19299 #define Size_t $sizetype
19300 #define SSize_t $dflt
19301 int main()
19302 {
19303         if (sizeof(Size_t) == sizeof(SSize_t))
19304                 printf("$dflt\n");
19305         else if (sizeof(Size_t) == sizeof(int))
19306                 printf("int\n");
19307         else 
19308                 printf("long\n");
19309         exit(0);
19310 }
19311 EOM
19312 echo " "
19313 set try
19314 if eval $compile_ok && $run ./try > /dev/null; then
19315         ssizetype=`$run ./try`
19316         echo "I'll be using $ssizetype for functions returning a byte count." >&4
19317 else
19318         $cat >&4 <<EOM
19319 Help! I can't compile and run the ssize_t test program: please enlighten me!
19320 (This is probably a misconfiguration in your system or libraries, and
19321 you really ought to fix it.  Still, I'll try anyway.)
19322
19323 I need a type that is the same size as $sizetype, but is guaranteed to
19324 be signed.  Common values are ssize_t, int and long.
19325
19326 EOM
19327         rp="What signed type is the same size as $sizetype?"
19328         . ./myread
19329         ssizetype="$ans"
19330 fi
19331 $rm -f try try.*
19332
19333 : see what type of char stdio uses.
19334 echo " "
19335 echo '#include <stdio.h>' | $cppstdin $cppminus > stdioh
19336 if $contains 'unsigned.*char.*_ptr;' stdioh >/dev/null 2>&1 ; then
19337         echo "Your stdio uses unsigned chars." >&4
19338         stdchar="unsigned char"
19339 else
19340         echo "Your stdio uses signed chars." >&4
19341         stdchar="char"
19342 fi
19343 $rm -f stdioh
19344
19345
19346
19347 : see what type uids are declared as in the kernel
19348 echo " "
19349 echo "Looking for the type for user ids returned by getuid()."
19350 set uid_t uidtype xxx stdio.h sys/types.h
19351 eval $typedef
19352 case "$uidtype" in
19353 xxx)
19354         xxx=`./findhdr sys/user.h`
19355         set `grep '_ruid;' "$xxx" 2>/dev/null` unsigned short
19356         case $1 in
19357         unsigned) dflt="$1 $2" ;;
19358         *) dflt="$1" ;;
19359         esac
19360         ;;
19361 *) dflt="$uidtype";;
19362 esac
19363 case "$uidtype" in
19364 uid_t)  echo "uid_t found." ;;
19365 *)      rp="What is the type for user ids returned by getuid()?"
19366         . ./myread
19367         uidtype="$ans"
19368         ;;
19369 esac
19370
19371 echo " "
19372 case "$uidtype" in
19373 *_t) zzz="$uidtype"     ;;
19374 *)   zzz="uid"          ;;
19375 esac
19376 echo "Checking the size of $zzz..." >&4 
19377 cat > try.c <<EOCP
19378 #include <sys/types.h>
19379 #include <stdio.h>
19380 #$i_stdlib I_STDLIB
19381 #ifdef I_STDLIB
19382 #include <stdlib.h>
19383 #endif
19384 int main() {
19385     printf("%d\n", (int)sizeof($uidtype));
19386     exit(0);
19387 }
19388 EOCP
19389 set try
19390 if eval $compile_ok; then
19391         yyy=`$run ./try`
19392         case "$yyy" in
19393         '')     uidsize=4
19394                 echo "(I can't execute the test program--guessing $uidsize.)" >&4
19395                 ;;
19396         *)      uidsize=$yyy
19397                 echo "Your $zzz is $uidsize bytes long."
19398                 ;;
19399         esac
19400 else
19401         uidsize=4
19402         echo "(I can't compile the test program--guessing $uidsize.)" >&4
19403 fi
19404
19405 echo " "
19406 case "$uidtype" in
19407 *_t) zzz="$uidtype"     ;;
19408 *)   zzz="uid"          ;;
19409 esac
19410 echo "Checking the sign of $zzz..." >&4
19411 cat > try.c <<EOCP
19412 #include <sys/types.h>
19413 #include <stdio.h>
19414 int main() {
19415         $uidtype foo = -1;
19416         if (foo < 0)
19417                 printf("-1\n");
19418         else
19419                 printf("1\n");
19420 }
19421 EOCP
19422 set try
19423 if eval $compile; then
19424         yyy=`$run ./try`
19425         case "$yyy" in
19426         '')     uidsign=1
19427                 echo "(I can't execute the test program--guessing unsigned.)" >&4
19428                 ;;
19429         *)      uidsign=$yyy
19430                 case "$uidsign" in
19431                  1) echo "Your $zzz is unsigned." ;;
19432                 -1) echo "Your $zzz is signed."   ;;
19433                 esac
19434                 ;;
19435         esac
19436 else
19437         uidsign=1
19438         echo "(I can't compile the test program--guessing unsigned.)" >&4
19439 fi
19440
19441
19442
19443 echo " "
19444 $echo "Checking the format string to be used for uids..." >&4
19445
19446 case "$uidsign" in
19447 -1)     if $test X"$uidsize" = X"$ivsize"; then
19448                 uidformat="$ivdformat"
19449         else
19450                 if $test X"$uidsize" = X"$longsize"; then
19451                         uidformat='"ld"'
19452                 else
19453                         if $test X"$uidsize" = X"$intsize"; then
19454                                 uidformat='"d"'
19455                         else
19456                                 if $test X"$uidsize" = X"$shortsize"; then
19457                                         uidformat='"hd"'
19458                                 fi
19459                         fi
19460                 fi
19461         fi
19462         ;;
19463 *)      if $test X"$uidsize" = X"$uvsize"; then
19464                 uidformat="$uvuformat"
19465         else
19466                 if $test X"$uidsize" = X"$longsize"; then
19467                         uidformat='"lu"'
19468                 else
19469                         if $test X"$uidsize" = X"$intsize"; then
19470                                 uidformat='"u"'
19471                         else
19472                                 if $test X"$uidsize" = X"$shortsize"; then
19473                                         uidformat='"hu"'
19474                                 fi
19475                         fi
19476                 fi
19477         fi
19478         ;;
19479 esac
19480
19481 : determine compiler compiler
19482 case "$yacc" in
19483 '')
19484         dflt=yacc;;
19485 *)
19486         dflt="$yacc";;
19487 esac
19488 echo " "
19489 comp='yacc'
19490 if $test -f "$byacc$_exe"; then
19491         dflt="$byacc"
19492         comp="byacc or $comp"
19493 fi
19494 if $test -f "$bison$_exe"; then
19495         comp="$comp or bison -y"
19496 fi
19497 rp="Which compiler compiler ($comp) shall I use?"
19498 . ./myread
19499 yacc="$ans"
19500 case "$yacc" in
19501 *bis*)
19502         case "$yacc" in
19503         *-y*) ;;
19504         *)
19505                 yacc="$yacc -y"
19506                 echo "(Adding -y option to bison to get yacc-compatible behaviour.)"
19507                 ;;
19508         esac
19509         ;;
19510 esac
19511
19512 : see if this is a fp.h system
19513 set fp.h i_fp
19514 eval $inhdr
19515
19516 : see if this is a fp_class.h system
19517 set fp_class.h i_fp_class
19518 eval $inhdr
19519
19520 : see if this is a ieeefp.h system
19521 case "$i_ieeefp" in
19522 '' ) set ieeefp.h i_ieeefp
19523      eval $inhdr
19524      ;;
19525 esac
19526
19527 : see if this is a libutil.h system
19528 set libutil.h i_libutil
19529 eval $inhdr
19530
19531 : see if mach cthreads are available
19532 if test "X$usethreads" = "X$define"; then
19533         set mach/cthreads.h i_machcthr
19534         eval $inhdr
19535 else
19536         i_machcthr="$undef"
19537 fi
19538
19539
19540
19541 : see if this is a math.h system
19542 set math.h i_math
19543 eval $inhdr
19544
19545 : see if this is a mntent.h system
19546 set mntent.h i_mntent
19547 eval $inhdr
19548
19549 : see if ndbm.h is available
19550 set ndbm.h t_ndbm
19551 eval $inhdr
19552
19553 case "$t_ndbm" in
19554 $undef)
19555     # Some Linux distributions such as RedHat 7.1 put the
19556     # ndbm.h header in /usr/include/gdbm/ndbm.h.
19557     if $test -f /usr/include/gdbm/ndbm.h; then
19558         echo '<gdbm/ndbm.h> found.'
19559         ccflags="$ccflags -I/usr/include/gdbm"
19560         cppflags="$cppflags -I/usr/include/gdbm"
19561         t_ndbm=$define
19562     fi
19563     ;;
19564 esac
19565
19566 case "$t_ndbm" in
19567 $define)
19568         : see if dbm_open exists
19569         set dbm_open d_dbm_open
19570         eval $inlibc
19571         case "$d_dbm_open" in
19572         $undef)
19573                 t_ndbm="$undef"
19574                 echo "We won't be including <ndbm.h>"
19575                 ;;
19576         esac
19577         ;;
19578 esac
19579 val="$t_ndbm"
19580 set i_ndbm
19581 eval $setvar
19582
19583 : see if net/errno.h is available
19584 val=''
19585 set net/errno.h val
19586 eval $inhdr
19587
19588 : Unfortunately, it causes problems on some systems.  Arrgh.
19589 case "$val" in
19590 $define)
19591         cat > try.c <<'EOM'
19592 #include <stdio.h>
19593 #include <errno.h>
19594 #include <net/errno.h>
19595 int func()
19596 {
19597         return ENOTSOCK;
19598 }
19599 EOM
19600         if $cc $ccflags -c try.c >/dev/null 2>&1; then
19601                 echo "We'll be including <net/errno.h>." >&4
19602         else
19603                 echo "We won't be including <net/errno.h>." >&4
19604                 val="$undef"
19605         fi
19606         $rm -f try.* try
19607         ;;
19608 esac
19609 set i_neterrno
19610 eval $setvar
19611
19612 : see if netinet/tcp.h is available
19613 set netinet/tcp.h i_netinettcp
19614 eval $inhdr
19615
19616 : see if this is a poll.h system
19617 set poll.h i_poll
19618 eval $inhdr
19619
19620 : see if this is a prot.h system
19621 set prot.h i_prot
19622 eval $inhdr
19623
19624 echo " "
19625 $echo "Guessing which symbols your C compiler and preprocessor define..." >&4 
19626 $cat <<'EOSH' > Cppsym.know
19627 a29k ABI64 aegis AES_SOURCE AIX AIX32 AIX370
19628 AIX41 AIX42 AIX43 AIX_SOURCE aixpc ALL_SOURCE
19629 alliant alpha am29000 AM29000 AMD64 amiga AMIGAOS AMIX
19630 ansi ANSI_C_SOURCE apollo ardent ARM32 atarist att386 att3b
19631 BeOS BIG_ENDIAN BIT_MSF bsd BSD bsd43 bsd4_2 bsd4_3 BSD4_3 bsd4_4
19632 BSD_4_3 BSD_4_4 BSD_NET2 BSD_TIME BSD_TYPES BSDCOMPAT bsdi
19633 bull c cadmus clipper CMU COFF COMPILER_VERSION
19634 concurrent convex cpu cray CRAY CRAYMPP ctix CX_UX
19635 CYGWIN DGUX DGUX_SOURCE DJGPP dmert DOLPHIN DPX2 DSO
19636 Dynix DynixPTX ELF encore EPI EXTENSIONS FAVOR_BSD
19637 FILE_OFFSET_BITS FreeBSD GCC_NEW_VARARGS gcos gcx gimpel
19638 GLIBC GLIBC_MINOR
19639 GNU_SOURCE GNUC GNUC_MINOR GNU_LIBRARY GO32 gould GOULD_PN
19640 H3050R H3050RX hbullx20 hcx host_mips
19641 hp200 hp300 hp700 HP700 hp800 hp9000
19642 hp9000s200 hp9000s300 hp9000s400 hp9000s500
19643 hp9000s700 hp9000s800 hp9k8 hp_osf hppa hpux HPUX_SOURCE
19644 i186 i286 i386 i486 i586 i686 i8086 i80960 i860 I960
19645 IA64 iAPX286 ibm ibm032 ibmesa IBMR2 ibmrt ILP32 ILP64
19646 INLINE_INTRINSICS INTRINSICS INT64 interdata is68k ksr1
19647 LANGUAGE_C LARGE_FILE_API LARGEFILE64_SOURCE
19648 LARGEFILE_SOURCE LFS64_LARGEFILE LFS_LARGEFILE
19649 Linux LITTLE_ENDIAN LONG64 LONG_DOUBLE LONG_LONG
19650 LONGDOUBLE LONGLONG LP64 luna luna88k Lynx
19651 M68000 m68k m88100 m88k M88KBCS_TARGET M_COFF
19652 M_I186 M_I286 M_I386 M_I8086 M_I86 M_I86SM M_SYS3
19653 M_SYS5 M_SYSIII M_SYSV M_UNIX M_XENIX MACH machine MachTen
19654 MATH_HAS_NO_SIDE_EFFECTS
19655 mc300 mc500 mc68000 mc68010 mc68020 mc68030 mc68040
19656 mc68060 mc68k mc68k32 mc700 mc88000 mc88100 merlin
19657 mert MiNT mips MIPS_FPSET MIPS_ISA MIPS_SIM MIPS_SZINT
19658 MIPS_SZLONG MIPS_SZPTR MIPSEB MIPSEL MODERN_C motorola
19659 mpeix MSDOS MTXINU MULTIMAX mvs MVS n16 ncl_el ncl_mr
19660 NetBSD news1500 news1700 news1800 news1900 news3700
19661 news700 news800 news900 NeXT NLS nonstopux ns16000 ns32000
19662 ns32016 ns32332 ns32k nsc32000
19663 OCS88 OEMVS OpenBSD os OS2 OS390 osf OSF1 OSF_SOURCE
19664 pa_risc PA_RISC1_1 PA_RISC2_0 PARAGON parisc
19665 pc532 pdp11 PGC PIC plexus PORTAR posix
19666 POSIX1B_SOURCE POSIX2_SOURCE POSIX4_SOURCE
19667 POSIX_C_SOURCE POSIX_SOURCE POWER
19668 PROTOTYPES PWB pyr QNX R3000 REENTRANT RES Rhapsody RISC6000
19669 riscix riscos RT S390 SA110 scs SCO sequent sgi SGI_SOURCE SH3 sinix
19670 SIZE_INT SIZE_LONG SIZE_PTR SOCKET_SOURCE SOCKETS_SOURCE
19671 sony sony_news sonyrisc sparc sparclite spectrum
19672 stardent stdc STDC_EXT stratos sun sun3 sun386
19673 Sun386i svr3 svr4 SVR4_2 SVR4_SOURCE svr5
19674 SX system SYSTYPE_BSD SYSTYPE_BSD43 SYSTYPE_BSD44
19675 SYSTYPE_SVR4 SYSTYPE_SVR5 SYSTYPE_SYSV SYSV SYSV3 SYSV4 SYSV5
19676 sysV68 sysV88 Tek4132 Tek4300 titan
19677 TM3200 TM5400 TM5600
19678 tower tower32 tower32_200 tower32_600 tower32_700
19679 tower32_800 tower32_850 tss
19680 u370 u3b u3b2 u3b20 u3b200 u3b20d u3b5
19681 ultrix UMAXV UnicomPBB UnicomPBD UNICOS UNICOSMK
19682 unix UNIX95 UNIX99 unixpc unos
19683 USE_BSD USE_FILE_OFFSET64 USE_GNU USE_ISOC9X USE_LARGEFILE USE_LARGEFILE64
19684 USE_MISC USE_POSIX USE_POSIX199309 USE_POSIX199506 USE_POSIX2
19685 USE_REENTRANT USE_SVID USE_UNIX98 USE_XOPEN USE_XOPEN_EXTENDED
19686 USGr4 USGr4_2
19687 Utek UTek UTS UWIN uxpm uxps vax venix VMESA vms xenix Xenix286
19688 XOPEN_SOURCE XOPEN_SOURCE_EXTENDED XPG2 XPG2_EXTENDED
19689 XPG3 XPG3_EXTENDED XPG4 XPG4_EXTENDED
19690 z8000
19691 EOSH
19692 # Maybe put other stuff here too.
19693 cat <<EOSH >>Cppsym.know
19694 $osname
19695 EOSH
19696 ./tr '[a-z]' '[A-Z]' < Cppsym.know > Cppsym.a
19697 ./tr '[A-Z]' '[a-z]' < Cppsym.know > Cppsym.b
19698 $cat Cppsym.know > Cppsym.c
19699 $cat Cppsym.a Cppsym.b Cppsym.c | $tr ' ' $trnl | $sort | $uniq > Cppsym.know
19700 $rm -f Cppsym.a Cppsym.b Cppsym.c
19701 cat <<EOSH > Cppsym
19702 $startsh
19703 if $test \$# -gt 0; then
19704     echo \$* | $tr " " "$trnl" | ./Cppsym.try > Cppsym.got
19705     if $test -s Cppsym.got; then
19706         $rm -f Cppsym.got
19707         exit 0
19708     fi
19709     $rm -f Cppsym.got
19710     exit 1
19711 else
19712     $tr " " "$trnl" | ./Cppsym.try
19713     exit 0
19714 fi
19715 EOSH
19716 chmod +x Cppsym
19717 $eunicefix Cppsym
19718 cat <<EOSH > Cppsym.try
19719 $startsh
19720 cat <<'EOCP' > try.c
19721 #include <stdio.h>
19722 int main() {
19723 EOCP
19724 $awk \\
19725 EOSH
19726 cat <<'EOSH' >> Cppsym.try
19727 'length($1) > 0 {
19728     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
19729     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
19730     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
19731     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
19732 }'       >> try.c
19733 echo 'return 0;}' >> try.c
19734 EOSH
19735 cat <<EOSH >> Cppsym.try
19736 ccflags="$ccflags"
19737 case "$osname-$gccversion" in
19738 irix-) ccflags="\$ccflags -woff 1178" ;;
19739 os2-*) ccflags="\$ccflags -Zlinker /PM:VIO" ;;
19740 esac
19741 $cc -o try $optimize \$ccflags $ldflags try.c $libs && $run ./try
19742 EOSH
19743 chmod +x Cppsym.try
19744 $eunicefix Cppsym.try
19745 ./Cppsym < Cppsym.know > Cppsym.true
19746 : now check the C compiler for additional symbols
19747 postprocess_cc_v=''
19748 case "$osname" in
19749 aix) postprocess_cc_v="|$tr , ' '" ;;
19750 esac
19751 $cat >ccsym <<EOS
19752 $startsh
19753 $cat >tmp.c <<EOF
19754 extern int foo;
19755 EOF
19756 for i in \`$cc -v -c tmp.c 2>&1 $postprocess_cc_v\`
19757 do
19758         case "\$i" in
19759         -D*) echo "\$i" | $sed 's/^-D//';;
19760         -A*) $test "$gccversion" && echo "\$i" | $sed 's/^-A//' | $sed 's/\(.*\)(\(.*\))/\1=\2/';;
19761         esac
19762 done
19763 $rm -f try.c
19764 EOS
19765 postprocess_cc_v=''
19766 chmod +x ccsym
19767 $eunicefix ccsym
19768 ./ccsym > ccsym1.raw
19769 if $test -s ccsym1.raw; then
19770        $sort ccsym1.raw | $uniq >ccsym.raw
19771 else
19772        mv ccsym1.raw ccsym.raw
19773 fi
19774
19775 $awk '/\=/ { print $0; next }
19776         { print $0"=1" }' ccsym.raw >ccsym.list
19777 $awk '/\=/ { print $0; next }
19778         { print $0"=1" }' Cppsym.true >ccsym.true
19779 $comm -13 ccsym.true ccsym.list >ccsym.own
19780 $comm -12 ccsym.true ccsym.list >ccsym.com
19781 $comm -23 ccsym.true ccsym.list >ccsym.cpp
19782 also=''
19783 if $test -z ccsym.raw; then
19784         echo "Your C compiler doesn't seem to define any symbols!" >&4
19785         echo " "
19786         echo "However, your C preprocessor defines the following symbols:"
19787         $cat Cppsym.true
19788         ccsymbols=''
19789         cppsymbols=`$cat Cppsym.true`
19790         cppsymbols=`echo $cppsymbols`
19791         cppccsymbols="$cppsymbols"
19792 else
19793         if $test -s ccsym.com; then
19794                 echo "Your C compiler and pre-processor define these symbols:"
19795                 $sed -e 's/\(..*\)=.*/\1/' ccsym.com
19796                 also='also '
19797                 symbols='ones'
19798                 cppccsymbols=`$cat ccsym.com`
19799                 cppccsymbols=`echo $cppccsymbols`
19800                 $test "$silent" || sleep 1
19801         fi
19802         if $test -s ccsym.cpp; then
19803                 $test "$also" && echo " "
19804                 echo "Your C pre-processor ${also}defines the following symbols:"
19805                 $sed -e 's/\(..*\)=.*/\1/' ccsym.cpp
19806                 also='further '
19807                 cppsymbols=`$cat ccsym.cpp`
19808                 cppsymbols=`echo $cppsymbols`
19809                 $test "$silent" || sleep 1
19810         fi
19811         if $test -s ccsym.own; then
19812                 $test "$also" && echo " "
19813                 echo "Your C compiler ${also}defines the following cpp symbols:"
19814                 $sed -e 's/\(..*\)=1/\1/' ccsym.own
19815                 $sed -e 's/\(..*\)=.*/\1/' ccsym.own | $uniq >>Cppsym.true
19816                 ccsymbols=`$cat ccsym.own`
19817                 ccsymbols=`echo $ccsymbols`
19818                 $test "$silent" || sleep 1
19819         fi
19820 fi
19821
19822 : see if this is a termio system
19823 val="$undef"
19824 val2="$undef"
19825 val3="$undef"
19826 if $test `./findhdr termios.h`; then
19827         set tcsetattr i_termios
19828         eval $inlibc
19829         val3="$i_termios"
19830 fi
19831 echo " "
19832 case "$val3" in
19833 "$define") echo "You have POSIX termios.h... good!" >&4;;
19834 *) if ./Cppsym pyr; then
19835                 case "`/bin/universe`" in
19836                 ucb) if $test `./findhdr sgtty.h`; then
19837                                 val2="$define"
19838                                 echo "<sgtty.h> found." >&4
19839                         else
19840                                 echo "System is pyramid with BSD universe."
19841                                 echo "<sgtty.h> not found--you could have problems." >&4
19842                         fi;;
19843                 *) if $test `./findhdr termio.h`; then
19844                                 val="$define"
19845                                 echo "<termio.h> found." >&4
19846                         else
19847                                 echo "System is pyramid with USG universe."
19848                                 echo "<termio.h> not found--you could have problems." >&4
19849                         fi;;
19850                 esac
19851         elif ./usg; then
19852                 if $test `./findhdr termio.h`; then
19853                         echo "<termio.h> found." >&4
19854                         val="$define"
19855                 elif $test `./findhdr sgtty.h`; then
19856                         echo "<sgtty.h> found." >&4
19857                         val2="$define"
19858                 else
19859 echo "Neither <termio.h> nor <sgtty.h> found--you could have problems." >&4
19860                 fi
19861         else
19862                 if $test `./findhdr sgtty.h`; then
19863                         echo "<sgtty.h> found." >&4
19864                         val2="$define"
19865                 elif $test `./findhdr termio.h`; then
19866                         echo "<termio.h> found." >&4
19867                         val="$define"
19868                 else
19869 echo "Neither <sgtty.h> nor <termio.h> found--you could have problems." >&4
19870                 fi
19871         fi;;
19872 esac
19873 set i_termio; eval $setvar
19874 val=$val2; set i_sgtty; eval $setvar
19875 val=$val3; set i_termios; eval $setvar
19876
19877 : see if stddef is available
19878 set stddef.h i_stddef
19879 eval $inhdr
19880
19881 : see if this is a sunmath.h system
19882 set sunmath.h i_sunmath
19883 eval $inhdr
19884
19885 : see if sys/access.h is available
19886 set sys/access.h i_sysaccess
19887 eval $inhdr
19888
19889 : see if ioctl defs are in sgtty, termio, sys/filio or sys/ioctl
19890 set sys/filio.h i_sysfilio
19891 eval $inhdr
19892 echo " "
19893 if $test `./findhdr sys/ioctl.h`; then
19894         val="$define"
19895         echo '<sys/ioctl.h> found.' >&4
19896 else
19897         val="$undef"
19898         if $test $i_sysfilio = "$define"; then
19899             echo '<sys/ioctl.h> NOT found.' >&4
19900         else
19901                 $test $i_sgtty = "$define" && xxx="sgtty.h"
19902                 $test $i_termio = "$define" && xxx="termio.h"
19903                 $test $i_termios = "$define" && xxx="termios.h"
19904 echo "No <sys/ioctl.h> found, assuming ioctl args are defined in <$xxx>." >&4
19905         fi
19906 fi
19907 set i_sysioctl
19908 eval $setvar
19909
19910 : see if socket ioctl defs are in sys/sockio.h
19911 echo " "
19912 xxx=`./findhdr sys/sockio.h`
19913 if $test "$xxx"; then
19914         if $contains SIOCATMARK $xxx >/dev/null 2>&1; then
19915                 val="$define"
19916                 echo "You have socket ioctls defined in <sys/sockio.h>." >&4
19917         else
19918                 val="$undef"
19919                 echo "No socket ioctls found in <sys/sockio.h>." >&4
19920         fi
19921 else
19922         val="$undef"
19923         $cat <<EOM
19924 <sys/sockio.h> not found, assuming socket ioctls are in <sys/ioctl.h>.
19925 EOM
19926 fi
19927 set i_syssockio
19928 eval $setvar
19929
19930
19931 : see if this is a syslog.h system
19932 set syslog.h i_syslog
19933 eval $inhdr
19934
19935
19936 : see if this is a sys/mode.h system
19937 set sys/mode.h i_sysmode
19938 eval $inhdr
19939
19940 : see if sys/resource.h has to be included
19941 set sys/resource.h i_sysresrc
19942 eval $inhdr
19943
19944 : see if sys/security.h is available
19945 set sys/security.h i_syssecrt
19946 eval $inhdr
19947
19948 : see if this is a sys/statvfs.h system
19949 set sys/statvfs.h i_sysstatvfs
19950 eval $inhdr
19951
19952 : see if this is a sys/un.h system
19953 set sys/un.h i_sysun
19954 eval $inhdr
19955
19956
19957 : see if this is a sys/utsname.h system
19958 set sys/utsname.h i_sysutsname
19959 eval $inhdr
19960
19961 : see if this is a syswait system
19962 set sys/wait.h i_syswait
19963 eval $inhdr
19964
19965 : see if this is a ustat.h system
19966 set ustat.h i_ustat
19967 eval $inhdr
19968
19969 : see if this is an utime system
19970 set utime.h i_utime
19971 eval $inhdr
19972
19973 : see if this is a values.h system
19974 set values.h i_values
19975 eval $inhdr
19976
19977 : see if this is a vfork system
19978 case "$d_vfork" in
19979 "$define")
19980         set vfork.h i_vfork
19981         eval $inhdr
19982         ;;
19983 *)
19984         i_vfork="$undef"
19985         ;;
19986 esac
19987
19988 : see if gdbm.h is available
19989 set gdbm.h t_gdbm
19990 eval $inhdr
19991 case "$t_gdbm" in
19992 $define)
19993         : see if gdbm_open exists
19994         set gdbm_open d_gdbm_open
19995         eval $inlibc
19996         case "$d_gdbm_open" in
19997         $undef)
19998                 t_gdbm="$undef"
19999                 echo "We won't be including <gdbm.h>"
20000                 ;;
20001         esac
20002         ;;
20003 esac
20004 val="$t_gdbm"
20005 set i_gdbm
20006 eval $setvar
20007
20008 echo " "
20009 echo "Looking for extensions..." >&4
20010 : If we are using the old config.sh, known_extensions may contain
20011 : old or inaccurate or duplicate values.
20012 known_extensions=''
20013 nonxs_extensions=''
20014 : We do not use find because it might not be available.
20015 : We do not just use MANIFEST because the user may have dropped
20016 : some additional extensions into the source tree and expect them
20017 : to be built.
20018
20019 : Function to recursively find available extensions, ignoring DynaLoader
20020 : NOTE: recursion limit of 10 to prevent runaway in case of symlink madness
20021 find_extensions='
20022     for xxx in *; do
20023        case "$xxx" in
20024            DynaLoader|dynaload) ;;
20025            *)
20026            if $test -f $xxx/$xxx.xs; then
20027                known_extensions="$known_extensions $1$xxx";
20028            elif $test -f $xxx/Makefile.PL; then
20029                nonxs_extensions="$nonxs_extensions $1$xxx";
20030            else
20031                if $test -d $xxx -a $# -lt 10; then
20032                    set $1$xxx/ $*;
20033                    cd "$xxx";
20034                    eval $find_extensions;
20035                    cd ..;
20036                    shift;
20037                fi;
20038            fi
20039            ;;
20040        esac;
20041     done'
20042 tdir=`pwd`
20043 cd "$rsrc/ext"
20044 set X
20045 shift
20046 eval $find_extensions
20047 # Special case:  Add in threads/shared since it is not picked up by the
20048 # recursive find above (and adding in general recursive finding breaks
20049 # SDBM_File/sdbm).  A.D.  10/25/2001.
20050 known_extensions="$known_extensions threads/shared"
20051 set X $nonxs_extensions
20052 shift
20053 nonxs_extensions="$*"
20054 set X $known_extensions
20055 shift
20056 known_extensions="$*"
20057 cd "$tdir"
20058
20059 : Now see which are supported on this system.
20060 avail_ext=''
20061 for xxx in $known_extensions ; do
20062         case "$xxx" in
20063         DB_File|db_file)
20064                 case "$i_db" in
20065                 $define) avail_ext="$avail_ext $xxx" ;;
20066                 esac
20067                 ;;
20068         GDBM_File|gdbm_fil)
20069                 case "$i_gdbm" in 
20070                 $define) avail_ext="$avail_ext $xxx" ;;
20071                 esac
20072                 ;;
20073         I18N/Langinfo|i18n_lan)
20074                 case "$i_langinfo$d_nl_langinfo" in 
20075                 $define$define) avail_ext="$avail_ext $xxx" ;;
20076                 esac
20077                 ;;
20078         NDBM_File|ndbm_fil)
20079                 case "$i_ndbm" in
20080                 $define)
20081                     case "$osname-$use64bitint" in
20082                     hpux-define)
20083                         case "$libs" in
20084                         *-lndbm*) avail_ext="$avail_ext $xxx" ;;
20085                         esac
20086                         ;;
20087                     *) avail_ext="$avail_ext $xxx" ;;
20088                     esac
20089                     ;;
20090                 esac
20091                 ;;
20092         ODBM_File|odbm_fil) 
20093                 case "${i_dbm}${i_rpcsvcdbm}" in
20094                 *"${define}"*)
20095                     case "$osname-$use64bitint" in
20096                     hpux-define)
20097                         case "$libs" in
20098                         *-ldbm*) avail_ext="$avail_ext $xxx" ;;
20099                         esac
20100                         ;;
20101                     *) avail_ext="$avail_ext $xxx" ;;
20102                     esac
20103                     ;;
20104                 esac
20105                 ;;
20106         POSIX|posix)
20107                 case "$useposix" in
20108                 true|define|y) avail_ext="$avail_ext $xxx" ;;
20109                 esac
20110                 ;;
20111         Opcode|opcode)
20112                 case "$useopcode" in
20113                 true|define|y) avail_ext="$avail_ext $xxx" ;;
20114                 esac
20115                 ;;
20116         Socket|socket)
20117                 case "$d_socket" in 
20118                 true|$define|y)
20119                     case "$osname" in
20120                     beos) ;; # not unless BONE
20121                     *) avail_ext="$avail_ext $xxx" ;;
20122                     esac
20123                     ;;
20124                 esac
20125                 ;;
20126         Sys/Syslog|sys/syslog)
20127                 : XXX syslog requires socket
20128                 case "$d_socket" in 
20129                 true|$define|y) avail_ext="$avail_ext $xxx" ;;
20130                 esac
20131                 ;;
20132         Thread|thread)
20133                 case "$usethreads" in
20134                 true|$define|y)
20135                         case "$useithreads" in
20136                         $undef|false|[nN]*) avail_ext="$avail_ext $xxx" ;;
20137                         esac
20138                 esac
20139                 ;;
20140         XS/APItest|xs/apitest)
20141                 # This is just for testing.  Skip it unless we have dynamic loading.
20142
20143                 case "$usedl" in
20144                 $define) avail_ext="$avail_ext $xxx" ;;
20145                 esac
20146                 ;;
20147         XS/Typemap|xs/typemap)
20148                 # This is just for testing.  Skip it unless we have dynamic loading.
20149                 case "$usedl" in
20150                 $define) avail_ext="$avail_ext $xxx" ;;
20151                 esac
20152                 ;;
20153         threads|threads/shared)
20154                 # threads and threads::shared are special cases.
20155                 # To stop people from asking "Perl 5.8.0 was supposed
20156                 # to have this new fancy threads implementation but my
20157                 # perl doesn't have it" and from people trying to
20158                 # (re)install the threads module using CPAN.pm and
20159                 # CPAN.pm then offering to reinstall Perl 5.8.0,
20160                 # the threads.pm and threads/shared.pm will always be
20161                 # there, croaking informatively ("you need to rebuild
20162                 # all of Perl with threads, sorry") when threads haven't
20163                 # been compiled in.
20164                 # --jhi
20165                 avail_ext="$avail_ext $xxx"
20166                 ;;
20167         IPC/SysV|ipc/sysv)
20168                 : XXX Do we need a useipcsysv variable here
20169                 case "${d_msg}${d_sem}${d_shm}" in 
20170                 *"${define}"*) avail_ext="$avail_ext $xxx" ;;
20171                 esac
20172                 ;;
20173         *)      avail_ext="$avail_ext $xxx"
20174                 ;;
20175         esac
20176 done
20177
20178 set X $avail_ext
20179 shift
20180 avail_ext="$*"
20181
20182 case "$onlyextensions" in
20183 '') ;;
20184 *)  keepextensions=''
20185     echo "You have requested that only certains extensions be included..." >&4
20186     for i in $onlyextensions; do
20187         case " $avail_ext " in
20188         *" $i "*)
20189             echo "Keeping extension $i."
20190             keepextensions="$keepextensions $i"
20191             ;;
20192         *) echo "Ignoring extension $i." ;;
20193         esac
20194     done
20195     avail_ext="$keepextensions"
20196     ;;
20197 esac
20198
20199 case "$noextensions" in
20200 '') ;;
20201 *)  keepextensions=''
20202     echo "You have requested that certain extensions be ignored..." >&4
20203     for i in $avail_ext; do
20204         case " $noextensions " in
20205         *" $i "*) echo "Ignoring extension $i." ;;
20206         *) echo "Keeping extension $i.";
20207            keepextensions="$keepextensions $i"
20208            ;;
20209         esac
20210     done
20211     avail_ext="$keepextensions"
20212     ;;
20213 esac
20214
20215 : Now see which nonxs extensions are supported on this system.
20216 : For now assume all are.
20217 nonxs_ext=''
20218 for xxx in $nonxs_extensions ; do
20219         case "$xxx" in
20220         *)      nonxs_ext="$nonxs_ext $xxx"
20221                 ;;
20222         esac
20223 done
20224
20225 set X $nonxs_ext
20226 shift
20227 nonxs_ext="$*"
20228
20229 case $usedl in
20230 $define)
20231         $cat <<EOM
20232 A number of extensions are supplied with $package.  You may choose to
20233 compile these extensions for dynamic loading (the default), compile
20234 them into the $package executable (static loading), or not include
20235 them at all.  Answer "none" to include no extensions.
20236 Note that DynaLoader is always built and need not be mentioned here.
20237
20238 EOM
20239         case "$dynamic_ext" in
20240         '')
20241                 : Exclude those listed in static_ext
20242                 dflt=''
20243                 for xxx in $avail_ext; do
20244                         case " $static_ext " in
20245                         *" $xxx "*) ;;
20246                         *) dflt="$dflt $xxx" ;;
20247                         esac
20248                 done
20249                 set X $dflt
20250                 shift
20251                 dflt="$*"
20252                 ;;
20253         *)      dflt="$dynamic_ext"
20254                 # Perhaps we are reusing an old out-of-date config.sh.
20255                 case "$hint" in
20256                 previous)
20257                         if test X"$dynamic_ext" != X"$avail_ext"; then
20258                                 $cat <<EOM
20259 NOTICE:  Your previous config.sh list may be incorrect. 
20260 The extensions now available to you are 
20261         ${avail_ext}
20262 but the default list from your previous config.sh is
20263         ${dynamic_ext} 
20264
20265 EOM
20266                         fi
20267                         ;;
20268                 esac
20269                 ;;
20270         esac
20271         case "$dflt" in
20272         '')     dflt=none;;
20273         esac
20274         rp="What extensions do you wish to load dynamically?"
20275         . ./myread
20276         case "$ans" in
20277         none) dynamic_ext=' ' ;;
20278         *) dynamic_ext="$ans" ;;
20279         esac
20280
20281         case "$static_ext" in
20282         '')
20283                 : Exclude those already listed in dynamic linking
20284                 dflt=''
20285                 for xxx in $avail_ext; do
20286                         case " $dynamic_ext " in
20287                         *" $xxx "*) ;;
20288                         *) dflt="$dflt $xxx" ;;
20289                         esac
20290                 done
20291                 set X $dflt
20292                 shift
20293                 dflt="$*"
20294                 ;;
20295         *)  dflt="$static_ext" 
20296                 ;;
20297         esac
20298
20299         case "$dflt" in
20300         '')     dflt=none;;
20301         esac
20302         rp="What extensions do you wish to load statically?"
20303         . ./myread
20304         case "$ans" in
20305         none) static_ext=' ' ;;
20306         *) static_ext="$ans" ;;
20307         esac
20308         ;;
20309 *)
20310         $cat <<EOM
20311 A number of extensions are supplied with $package.  Answer "none" 
20312 to include no extensions. 
20313 Note that DynaLoader is always built and need not be mentioned here.
20314
20315 EOM
20316         case "$static_ext" in
20317         '') dflt="$avail_ext" ;;
20318         *)      dflt="$static_ext"
20319                 # Perhaps we are reusing an old out-of-date config.sh.
20320                 case "$hint" in
20321                 previous)
20322                         if test X"$static_ext" != X"$avail_ext"; then
20323                                 $cat <<EOM
20324 NOTICE:  Your previous config.sh list may be incorrect. 
20325 The extensions now available to you are 
20326         ${avail_ext}
20327 but the default list from your previous config.sh is
20328         ${static_ext} 
20329
20330 EOM
20331                         fi
20332                         ;;
20333                 esac
20334                 ;;
20335         esac
20336         : Exclude those that are not xs extensions
20337         case "$dflt" in
20338         '')     dflt=none;;
20339         esac
20340         rp="What extensions do you wish to include?"
20341         . ./myread
20342         case "$ans" in
20343         none) static_ext=' ' ;;
20344         *) static_ext="$ans" ;;
20345         esac
20346         ;;
20347 esac
20348 #        
20349 # Encode is a special case.  If we are building Encode as a static
20350 # extension, we need to explicitly list its subextensions as well.
20351 # For other nested extensions, this is handled automatically by
20352 # the appropriate Makefile.PL.
20353 case " $static_ext " in
20354         *" Encode "*) # Add the subextensions of Encode
20355         cd "$rsrc/ext"
20356         for xxx in `ls Encode/*/Makefile.PL|awk -F/ '{print $2}'`; do
20357                 static_ext="$static_ext Encode/$xxx"
20358         done
20359         cd "$tdir"
20360         ;;
20361 esac
20362
20363 set X $dynamic_ext $static_ext $nonxs_ext
20364 shift
20365 extensions="$*"
20366
20367 # Sanity check:  We require an extension suitable for use with
20368 # AnyDBM_File, as well as Fcntl and IO.  (Failure to have these
20369 # should show up as failures in the test suite, but it's helpful to
20370 # catch them now.) The 'extensions' list is normally sorted
20371 # alphabetically, so we need to accept either
20372 #    DB_File ... Fcntl ... IO  ....
20373 # or something like
20374 #    Fcntl ... NDBM_File ... IO  ....
20375 case " $extensions"  in
20376 *"_File "*" Fcntl "*" IO "*) ;; # DB_File
20377 *" Fcntl "*"_File "*" IO "*) ;; # GDBM_File
20378 *" Fcntl "*" IO "*"_File "*) ;; # NDBM_File
20379 *) echo "WARNING: Extensions DB_File or *DBM_File, Fcntl, and IO not configured." >&4
20380    echo "WARNING: The Perl you are building will be quite crippled." >& 4
20381    ;;
20382 esac
20383
20384 : Remove libraries needed only for extensions
20385 : The appropriate ext/Foo/Makefile.PL will add them back in, if necessary.
20386 : The exception is SunOS 4.x, which needs them.
20387 case "${osname}X${osvers}" in
20388 sunos*X4*)
20389     perllibs="$libs"
20390     ;;
20391 *) case "$usedl" in
20392     $define|true|[yY]*)
20393             set X `echo " $libs " | sed -e 's@ -lndbm @ @' -e 's@ -lgdbm @ @' -e 's@ -ldbm @ @' -e 's@ -ldb @ @'` 
20394             shift
20395             perllibs="$*"
20396             ;;
20397     *)  perllibs="$libs"
20398             ;;
20399     esac
20400     ;;
20401 esac
20402
20403 : Remove build directory name from cppstdin so it can be used from
20404 : either the present location or the final installed location.
20405 echo " "
20406 : Get out of the UU directory to get correct path name.
20407 cd ..
20408 case "$cppstdin" in
20409 `pwd`/cppstdin)
20410         echo "Stripping down cppstdin path name"
20411         cppstdin=cppstdin
20412         ;;
20413 esac
20414 cd UU
20415
20416 : end of configuration questions
20417 echo " "
20418 echo "End of configuration questions."
20419 echo " "
20420
20421 : back to where it started
20422 if test -d ../UU; then
20423         cd ..
20424 fi
20425
20426 : configuration may be patched via a 'config.arch' file
20427 if $test -f config.arch; then
20428         echo "I see a config.arch file, loading it."
20429         . ./config.arch
20430 fi
20431
20432 : configuration may be patched via a 'config.over' file
20433 if $test -f config.over; then
20434         echo " "
20435         dflt=y
20436         rp='I see a config.over file.  Do you wish to load it?'
20437         . UU/myread
20438         case "$ans" in
20439         n*) echo "OK, I'll ignore it.";;
20440         *)      . ./config.over
20441                 echo "Configuration override changes have been loaded."
20442                 ;;
20443         esac
20444 fi
20445
20446 : in case they want portability, strip down executable paths
20447 case "$d_portable" in
20448 "$define")
20449         echo " "
20450         echo "Stripping down executable paths..." >&4
20451         for file in $loclist $trylist; do
20452                 eval temp=\$$file
20453                 eval $file=`basename $temp`
20454         done
20455         ;;
20456 esac
20457
20458 : create config.sh file
20459 echo " "
20460 echo "Creating config.sh..." >&4
20461 $spitshell <<EOT >config.sh
20462 $startsh
20463 #
20464 # This file was produced by running the Configure script. It holds all the
20465 # definitions figured out by Configure. Should you modify one of these values,
20466 # do not forget to propagate your changes by running "Configure -der". You may
20467 # instead choose to run each of the .SH files by yourself, or "Configure -S".
20468 #
20469
20470 # Package name      : $package
20471 # Source directory  : $src
20472 # Configuration time: $cf_time
20473 # Configured by     : $cf_by
20474 # Target system     : $myuname
20475
20476 Author='$Author'
20477 Date='$Date'
20478 Header='$Header'
20479 Id='$Id'
20480 Locker='$Locker'
20481 Log='$Log'
20482 Mcc='$Mcc'
20483 RCSfile='$RCSfile'
20484 Revision='$Revision'
20485 Source='$Source'
20486 State='$State'
20487 _a='$_a'
20488 _exe='$_exe'
20489 _o='$_o'
20490 afs='$afs'
20491 afsroot='$afsroot'
20492 alignbytes='$alignbytes'
20493 ansi2knr='$ansi2knr'
20494 aphostname='$aphostname'
20495 api_revision='$api_revision'
20496 api_subversion='$api_subversion'
20497 api_version='$api_version'
20498 api_versionstring='$api_versionstring'
20499 ar='$ar'
20500 archlib='$archlib'
20501 archlibexp='$archlibexp'
20502 archname64='$archname64'
20503 archname='$archname'
20504 archobjs='$archobjs'
20505 asctime_r_proto='$asctime_r_proto'
20506 awk='$awk'
20507 baserev='$baserev'
20508 bash='$bash'
20509 bin='$bin'
20510 binexp='$binexp'
20511 bison='$bison'
20512 byacc='$byacc'
20513 byteorder='$byteorder'
20514 c='$c'
20515 castflags='$castflags'
20516 cat='$cat'
20517 cc='$cc'
20518 cccdlflags='$cccdlflags'
20519 ccdlflags='$ccdlflags'
20520 ccflags='$ccflags'
20521 ccflags_uselargefiles='$ccflags_uselargefiles'
20522 ccname='$ccname'
20523 ccsymbols='$ccsymbols'
20524 ccversion='$ccversion'
20525 cf_by='$cf_by'
20526 cf_email='$cf_email'
20527 cf_time='$cf_time'
20528 charsize='$charsize'
20529 chgrp='$chgrp'
20530 chmod='$chmod'
20531 chown='$chown'
20532 clocktype='$clocktype'
20533 comm='$comm'
20534 compress='$compress'
20535 contains='$contains'
20536 cp='$cp'
20537 cpio='$cpio'
20538 cpp='$cpp'
20539 cpp_stuff='$cpp_stuff'
20540 cppccsymbols='$cppccsymbols'
20541 cppflags='$cppflags'
20542 cpplast='$cpplast'
20543 cppminus='$cppminus'
20544 cpprun='$cpprun'
20545 cppstdin='$cppstdin'
20546 cppsymbols='$cppsymbols'
20547 crypt_r_proto='$crypt_r_proto'
20548 cryptlib='$cryptlib'
20549 csh='$csh'
20550 ctermid_r_proto='$ctermid_r_proto'
20551 ctime_r_proto='$ctime_r_proto'
20552 d_Gconvert='$d_Gconvert'
20553 d_PRIEUldbl='$d_PRIEUldbl'
20554 d_PRIFUldbl='$d_PRIFUldbl'
20555 d_PRIGUldbl='$d_PRIGUldbl'
20556 d_PRIXU64='$d_PRIXU64'
20557 d_PRId64='$d_PRId64'
20558 d_PRIeldbl='$d_PRIeldbl'
20559 d_PRIfldbl='$d_PRIfldbl'
20560 d_PRIgldbl='$d_PRIgldbl'
20561 d_PRIi64='$d_PRIi64'
20562 d_PRIo64='$d_PRIo64'
20563 d_PRIu64='$d_PRIu64'
20564 d_PRIx64='$d_PRIx64'
20565 d_SCNfldbl='$d_SCNfldbl'
20566 d__fwalk='$d__fwalk'
20567 d_access='$d_access'
20568 d_accessx='$d_accessx'
20569 d_aintl='$d_aintl'
20570 d_alarm='$d_alarm'
20571 d_archlib='$d_archlib'
20572 d_asctime_r='$d_asctime_r'
20573 d_atolf='$d_atolf'
20574 d_atoll='$d_atoll'
20575 d_attribut='$d_attribut'
20576 d_bcmp='$d_bcmp'
20577 d_bcopy='$d_bcopy'
20578 d_bsd='$d_bsd'
20579 d_bsdgetpgrp='$d_bsdgetpgrp'
20580 d_bsdsetpgrp='$d_bsdsetpgrp'
20581 d_bzero='$d_bzero'
20582 d_casti32='$d_casti32'
20583 d_castneg='$d_castneg'
20584 d_charvspr='$d_charvspr'
20585 d_chown='$d_chown'
20586 d_chroot='$d_chroot'
20587 d_chsize='$d_chsize'
20588 d_class='$d_class'
20589 d_closedir='$d_closedir'
20590 d_cmsghdr_s='$d_cmsghdr_s'
20591 d_const='$d_const'
20592 d_copysignl='$d_copysignl'
20593 d_crypt='$d_crypt'
20594 d_crypt_r='$d_crypt_r'
20595 d_csh='$d_csh'
20596 d_ctermid_r='$d_ctermid_r'
20597 d_ctime_r='$d_ctime_r'
20598 d_cuserid='$d_cuserid'
20599 d_dbl_dig='$d_dbl_dig'
20600 d_dbminitproto='$d_dbminitproto'
20601 d_difftime='$d_difftime'
20602 d_dirfd='$d_dirfd'
20603 d_dirnamlen='$d_dirnamlen'
20604 d_dlerror='$d_dlerror'
20605 d_dlopen='$d_dlopen'
20606 d_dlsymun='$d_dlsymun'
20607 d_dosuid='$d_dosuid'
20608 d_drand48_r='$d_drand48_r'
20609 d_drand48proto='$d_drand48proto'
20610 d_dup2='$d_dup2'
20611 d_eaccess='$d_eaccess'
20612 d_endgrent='$d_endgrent'
20613 d_endgrent_r='$d_endgrent_r'
20614 d_endhent='$d_endhent'
20615 d_endhostent_r='$d_endhostent_r'
20616 d_endnent='$d_endnent'
20617 d_endnetent_r='$d_endnetent_r'
20618 d_endpent='$d_endpent'
20619 d_endprotoent_r='$d_endprotoent_r'
20620 d_endpwent='$d_endpwent'
20621 d_endpwent_r='$d_endpwent_r'
20622 d_endsent='$d_endsent'
20623 d_endservent_r='$d_endservent_r'
20624 d_eofnblk='$d_eofnblk'
20625 d_eunice='$d_eunice'
20626 d_faststdio='$d_faststdio'
20627 d_fchdir='$d_fchdir'
20628 d_fchmod='$d_fchmod'
20629 d_fchown='$d_fchown'
20630 d_fcntl='$d_fcntl'
20631 d_fcntl_can_lock='$d_fcntl_can_lock'
20632 d_fd_macros='$d_fd_macros'
20633 d_fd_set='$d_fd_set'
20634 d_fds_bits='$d_fds_bits'
20635 d_fgetpos='$d_fgetpos'
20636 d_finite='$d_finite'
20637 d_finitel='$d_finitel'
20638 d_flexfnam='$d_flexfnam'
20639 d_flock='$d_flock'
20640 d_flockproto='$d_flockproto'
20641 d_fork='$d_fork'
20642 d_fp_class='$d_fp_class'
20643 d_fpathconf='$d_fpathconf'
20644 d_fpclass='$d_fpclass'
20645 d_fpclassify='$d_fpclassify'
20646 d_fpclassl='$d_fpclassl'
20647 d_fpos64_t='$d_fpos64_t'
20648 d_frexpl='$d_frexpl'
20649 d_fs_data_s='$d_fs_data_s'
20650 d_fseeko='$d_fseeko'
20651 d_fsetpos='$d_fsetpos'
20652 d_fstatfs='$d_fstatfs'
20653 d_fstatvfs='$d_fstatvfs'
20654 d_fsync='$d_fsync'
20655 d_ftello='$d_ftello'
20656 d_ftime='$d_ftime'
20657 d_getcwd='$d_getcwd'
20658 d_getespwnam='$d_getespwnam'
20659 d_getfsstat='$d_getfsstat'
20660 d_getgrent='$d_getgrent'
20661 d_getgrent_r='$d_getgrent_r'
20662 d_getgrgid_r='$d_getgrgid_r'
20663 d_getgrnam_r='$d_getgrnam_r'
20664 d_getgrps='$d_getgrps'
20665 d_gethbyaddr='$d_gethbyaddr'
20666 d_gethbyname='$d_gethbyname'
20667 d_gethent='$d_gethent'
20668 d_gethname='$d_gethname'
20669 d_gethostbyaddr_r='$d_gethostbyaddr_r'
20670 d_gethostbyname_r='$d_gethostbyname_r'
20671 d_gethostent_r='$d_gethostent_r'
20672 d_gethostprotos='$d_gethostprotos'
20673 d_getitimer='$d_getitimer'
20674 d_getlogin='$d_getlogin'
20675 d_getlogin_r='$d_getlogin_r'
20676 d_getmnt='$d_getmnt'
20677 d_getmntent='$d_getmntent'
20678 d_getnbyaddr='$d_getnbyaddr'
20679 d_getnbyname='$d_getnbyname'
20680 d_getnent='$d_getnent'
20681 d_getnetbyaddr_r='$d_getnetbyaddr_r'
20682 d_getnetbyname_r='$d_getnetbyname_r'
20683 d_getnetent_r='$d_getnetent_r'
20684 d_getnetprotos='$d_getnetprotos'
20685 d_getpagsz='$d_getpagsz'
20686 d_getpbyname='$d_getpbyname'
20687 d_getpbynumber='$d_getpbynumber'
20688 d_getpent='$d_getpent'
20689 d_getpgid='$d_getpgid'
20690 d_getpgrp2='$d_getpgrp2'
20691 d_getpgrp='$d_getpgrp'
20692 d_getppid='$d_getppid'
20693 d_getprior='$d_getprior'
20694 d_getprotobyname_r='$d_getprotobyname_r'
20695 d_getprotobynumber_r='$d_getprotobynumber_r'
20696 d_getprotoent_r='$d_getprotoent_r'
20697 d_getprotoprotos='$d_getprotoprotos'
20698 d_getprpwnam='$d_getprpwnam'
20699 d_getpwent='$d_getpwent'
20700 d_getpwent_r='$d_getpwent_r'
20701 d_getpwnam_r='$d_getpwnam_r'
20702 d_getpwuid_r='$d_getpwuid_r'
20703 d_getsbyname='$d_getsbyname'
20704 d_getsbyport='$d_getsbyport'
20705 d_getsent='$d_getsent'
20706 d_getservbyname_r='$d_getservbyname_r'
20707 d_getservbyport_r='$d_getservbyport_r'
20708 d_getservent_r='$d_getservent_r'
20709 d_getservprotos='$d_getservprotos'
20710 d_getspnam='$d_getspnam'
20711 d_getspnam_r='$d_getspnam_r'
20712 d_gettimeod='$d_gettimeod'
20713 d_gmtime_r='$d_gmtime_r'
20714 d_gnulibc='$d_gnulibc'
20715 d_grpasswd='$d_grpasswd'
20716 d_hasmntopt='$d_hasmntopt'
20717 d_htonl='$d_htonl'
20718 d_ilogbl='$d_ilogbl'
20719 d_index='$d_index'
20720 d_inetaton='$d_inetaton'
20721 d_int64_t='$d_int64_t'
20722 d_isascii='$d_isascii'
20723 d_isfinite='$d_isfinite'
20724 d_isinf='$d_isinf'
20725 d_isnan='$d_isnan'
20726 d_isnanl='$d_isnanl'
20727 d_killpg='$d_killpg'
20728 d_lchown='$d_lchown'
20729 d_ldbl_dig='$d_ldbl_dig'
20730 d_link='$d_link'
20731 d_localtime_r='$d_localtime_r'
20732 d_locconv='$d_locconv'
20733 d_lockf='$d_lockf'
20734 d_longdbl='$d_longdbl'
20735 d_longlong='$d_longlong'
20736 d_lseekproto='$d_lseekproto'
20737 d_lstat='$d_lstat'
20738 d_madvise='$d_madvise'
20739 d_mblen='$d_mblen'
20740 d_mbstowcs='$d_mbstowcs'
20741 d_mbtowc='$d_mbtowc'
20742 d_memchr='$d_memchr'
20743 d_memcmp='$d_memcmp'
20744 d_memcpy='$d_memcpy'
20745 d_memmove='$d_memmove'
20746 d_memset='$d_memset'
20747 d_mkdir='$d_mkdir'
20748 d_mkdtemp='$d_mkdtemp'
20749 d_mkfifo='$d_mkfifo'
20750 d_mkstemp='$d_mkstemp'
20751 d_mkstemps='$d_mkstemps'
20752 d_mktime='$d_mktime'
20753 d_mmap='$d_mmap'
20754 d_modfl='$d_modfl'
20755 d_modfl_pow32_bug='$d_modfl_pow32_bug'
20756 d_modflproto='$d_modflproto'
20757 d_mprotect='$d_mprotect'
20758 d_msg='$d_msg'
20759 d_msg_ctrunc='$d_msg_ctrunc'
20760 d_msg_dontroute='$d_msg_dontroute'
20761 d_msg_oob='$d_msg_oob'
20762 d_msg_peek='$d_msg_peek'
20763 d_msg_proxy='$d_msg_proxy'
20764 d_msgctl='$d_msgctl'
20765 d_msgget='$d_msgget'
20766 d_msghdr_s='$d_msghdr_s'
20767 d_msgrcv='$d_msgrcv'
20768 d_msgsnd='$d_msgsnd'
20769 d_msync='$d_msync'
20770 d_munmap='$d_munmap'
20771 d_mymalloc='$d_mymalloc'
20772 d_nice='$d_nice'
20773 d_nl_langinfo='$d_nl_langinfo'
20774 d_nv_preserves_uv='$d_nv_preserves_uv'
20775 d_off64_t='$d_off64_t'
20776 d_old_pthread_create_joinable='$d_old_pthread_create_joinable'
20777 d_oldpthreads='$d_oldpthreads'
20778 d_oldsock='$d_oldsock'
20779 d_open3='$d_open3'
20780 d_pathconf='$d_pathconf'
20781 d_pause='$d_pause'
20782 d_perl_otherlibdirs='$d_perl_otherlibdirs'
20783 d_phostname='$d_phostname'
20784 d_pipe='$d_pipe'
20785 d_poll='$d_poll'
20786 d_portable='$d_portable'
20787 d_procselfexe='$d_procselfexe'
20788 d_pthread_atfork='$d_pthread_atfork'
20789 d_pthread_attr_setscope='$d_pthread_attr_setscope'
20790 d_pthread_yield='$d_pthread_yield'
20791 d_pwage='$d_pwage'
20792 d_pwchange='$d_pwchange'
20793 d_pwclass='$d_pwclass'
20794 d_pwcomment='$d_pwcomment'
20795 d_pwexpire='$d_pwexpire'
20796 d_pwgecos='$d_pwgecos'
20797 d_pwpasswd='$d_pwpasswd'
20798 d_pwquota='$d_pwquota'
20799 d_qgcvt='$d_qgcvt'
20800 d_quad='$d_quad'
20801 d_random_r='$d_random_r'
20802 d_readdir64_r='$d_readdir64_r'
20803 d_readdir='$d_readdir'
20804 d_readdir_r='$d_readdir_r'
20805 d_readlink='$d_readlink'
20806 d_readv='$d_readv'
20807 d_recvmsg='$d_recvmsg'
20808 d_rename='$d_rename'
20809 d_rewinddir='$d_rewinddir'
20810 d_rmdir='$d_rmdir'
20811 d_safebcpy='$d_safebcpy'
20812 d_safemcpy='$d_safemcpy'
20813 d_sanemcmp='$d_sanemcmp'
20814 d_sbrkproto='$d_sbrkproto'
20815 d_scalbnl='$d_scalbnl'
20816 d_sched_yield='$d_sched_yield'
20817 d_scm_rights='$d_scm_rights'
20818 d_seekdir='$d_seekdir'
20819 d_select='$d_select'
20820 d_sem='$d_sem'
20821 d_semctl='$d_semctl'
20822 d_semctl_semid_ds='$d_semctl_semid_ds'
20823 d_semctl_semun='$d_semctl_semun'
20824 d_semget='$d_semget'
20825 d_semop='$d_semop'
20826 d_sendmsg='$d_sendmsg'
20827 d_setegid='$d_setegid'
20828 d_seteuid='$d_seteuid'
20829 d_setgrent='$d_setgrent'
20830 d_setgrent_r='$d_setgrent_r'
20831 d_setgrps='$d_setgrps'
20832 d_sethent='$d_sethent'
20833 d_sethostent_r='$d_sethostent_r'
20834 d_setitimer='$d_setitimer'
20835 d_setlinebuf='$d_setlinebuf'
20836 d_setlocale='$d_setlocale'
20837 d_setlocale_r='$d_setlocale_r'
20838 d_setnent='$d_setnent'
20839 d_setnetent_r='$d_setnetent_r'
20840 d_setpent='$d_setpent'
20841 d_setpgid='$d_setpgid'
20842 d_setpgrp2='$d_setpgrp2'
20843 d_setpgrp='$d_setpgrp'
20844 d_setprior='$d_setprior'
20845 d_setproctitle='$d_setproctitle'
20846 d_setprotoent_r='$d_setprotoent_r'
20847 d_setpwent='$d_setpwent'
20848 d_setpwent_r='$d_setpwent_r'
20849 d_setregid='$d_setregid'
20850 d_setresgid='$d_setresgid'
20851 d_setresuid='$d_setresuid'
20852 d_setreuid='$d_setreuid'
20853 d_setrgid='$d_setrgid'
20854 d_setruid='$d_setruid'
20855 d_setsent='$d_setsent'
20856 d_setservent_r='$d_setservent_r'
20857 d_setsid='$d_setsid'
20858 d_setvbuf='$d_setvbuf'
20859 d_sfio='$d_sfio'
20860 d_shm='$d_shm'
20861 d_shmat='$d_shmat'
20862 d_shmatprototype='$d_shmatprototype'
20863 d_shmctl='$d_shmctl'
20864 d_shmdt='$d_shmdt'
20865 d_shmget='$d_shmget'
20866 d_sigaction='$d_sigaction'
20867 d_sigprocmask='$d_sigprocmask'
20868 d_sigsetjmp='$d_sigsetjmp'
20869 d_sockatmark='$d_sockatmark'
20870 d_sockatmarkproto='$d_sockatmarkproto'
20871 d_socket='$d_socket'
20872 d_socklen_t='$d_socklen_t'
20873 d_sockpair='$d_sockpair'
20874 d_socks5_init='$d_socks5_init'
20875 d_sqrtl='$d_sqrtl'
20876 d_srand48_r='$d_srand48_r'
20877 d_srandom_r='$d_srandom_r'
20878 d_sresgproto='$d_sresgproto'
20879 d_sresuproto='$d_sresuproto'
20880 d_statblks='$d_statblks'
20881 d_statfs_f_flags='$d_statfs_f_flags'
20882 d_statfs_s='$d_statfs_s'
20883 d_statvfs='$d_statvfs'
20884 d_stdio_cnt_lval='$d_stdio_cnt_lval'
20885 d_stdio_ptr_lval='$d_stdio_ptr_lval'
20886 d_stdio_ptr_lval_nochange_cnt='$d_stdio_ptr_lval_nochange_cnt'
20887 d_stdio_ptr_lval_sets_cnt='$d_stdio_ptr_lval_sets_cnt'
20888 d_stdio_stream_array='$d_stdio_stream_array'
20889 d_stdiobase='$d_stdiobase'
20890 d_stdstdio='$d_stdstdio'
20891 d_strchr='$d_strchr'
20892 d_strcoll='$d_strcoll'
20893 d_strctcpy='$d_strctcpy'
20894 d_strerrm='$d_strerrm'
20895 d_strerror='$d_strerror'
20896 d_strerror_r='$d_strerror_r'
20897 d_strftime='$d_strftime'
20898 d_strlcat='$d_strlcat'
20899 d_strlcpy='$d_strlcpy'
20900 d_strtod='$d_strtod'
20901 d_strtol='$d_strtol'
20902 d_strtold='$d_strtold'
20903 d_strtoll='$d_strtoll'
20904 d_strtoq='$d_strtoq'
20905 d_strtoul='$d_strtoul'
20906 d_strtoull='$d_strtoull'
20907 d_strtouq='$d_strtouq'
20908 d_strxfrm='$d_strxfrm'
20909 d_suidsafe='$d_suidsafe'
20910 d_symlink='$d_symlink'
20911 d_syscall='$d_syscall'
20912 d_syscallproto='$d_syscallproto'
20913 d_sysconf='$d_sysconf'
20914 d_sysernlst='$d_sysernlst'
20915 d_syserrlst='$d_syserrlst'
20916 d_system='$d_system'
20917 d_tcgetpgrp='$d_tcgetpgrp'
20918 d_tcsetpgrp='$d_tcsetpgrp'
20919 d_telldir='$d_telldir'
20920 d_telldirproto='$d_telldirproto'
20921 d_time='$d_time'
20922 d_times='$d_times'
20923 d_tm_tm_gmtoff='$d_tm_tm_gmtoff'
20924 d_tm_tm_zone='$d_tm_tm_zone'
20925 d_tmpnam_r='$d_tmpnam_r'
20926 d_truncate='$d_truncate'
20927 d_ttyname_r='$d_ttyname_r'
20928 d_tzname='$d_tzname'
20929 d_u32align='$d_u32align'
20930 d_ualarm='$d_ualarm'
20931 d_umask='$d_umask'
20932 d_uname='$d_uname'
20933 d_union_semun='$d_union_semun'
20934 d_unordered='$d_unordered'
20935 d_usleep='$d_usleep'
20936 d_usleepproto='$d_usleepproto'
20937 d_ustat='$d_ustat'
20938 d_vendorarch='$d_vendorarch'
20939 d_vendorbin='$d_vendorbin'
20940 d_vendorlib='$d_vendorlib'
20941 d_vendorscript='$d_vendorscript'
20942 d_vfork='$d_vfork'
20943 d_void_closedir='$d_void_closedir'
20944 d_voidsig='$d_voidsig'
20945 d_voidtty='$d_voidtty'
20946 d_volatile='$d_volatile'
20947 d_vprintf='$d_vprintf'
20948 d_wait4='$d_wait4'
20949 d_waitpid='$d_waitpid'
20950 d_wcstombs='$d_wcstombs'
20951 d_wctomb='$d_wctomb'
20952 d_writev='$d_writev'
20953 d_xenix='$d_xenix'
20954 date='$date'
20955 db_hashtype='$db_hashtype'
20956 db_prefixtype='$db_prefixtype'
20957 db_version_major='$db_version_major'
20958 db_version_minor='$db_version_minor'
20959 db_version_patch='$db_version_patch'
20960 defvoidused='$defvoidused'
20961 direntrytype='$direntrytype'
20962 dlext='$dlext'
20963 dlsrc='$dlsrc'
20964 doublesize='$doublesize'
20965 drand01='$drand01'
20966 drand48_r_proto='$drand48_r_proto'
20967 dynamic_ext='$dynamic_ext'
20968 eagain='$eagain'
20969 ebcdic='$ebcdic'
20970 echo='$echo'
20971 egrep='$egrep'
20972 emacs='$emacs'
20973 endgrent_r_proto='$endgrent_r_proto'
20974 endhostent_r_proto='$endhostent_r_proto'
20975 endnetent_r_proto='$endnetent_r_proto'
20976 endprotoent_r_proto='$endprotoent_r_proto'
20977 endpwent_r_proto='$endpwent_r_proto'
20978 endservent_r_proto='$endservent_r_proto'
20979 eunicefix='$eunicefix'
20980 exe_ext='$exe_ext'
20981 expr='$expr'
20982 extensions='$extensions'
20983 extras='$extras'
20984 fflushNULL='$fflushNULL'
20985 fflushall='$fflushall'
20986 find='$find'
20987 firstmakefile='$firstmakefile'
20988 flex='$flex'
20989 fpossize='$fpossize'
20990 fpostype='$fpostype'
20991 freetype='$freetype'
20992 from='$from'
20993 full_ar='$full_ar'
20994 full_csh='$full_csh'
20995 full_sed='$full_sed'
20996 gccansipedantic='$gccansipedantic'
20997 gccosandvers='$gccosandvers'
20998 gccversion='$gccversion'
20999 getgrent_r_proto='$getgrent_r_proto'
21000 getgrgid_r_proto='$getgrgid_r_proto'
21001 getgrnam_r_proto='$getgrnam_r_proto'
21002 gethostbyaddr_r_proto='$gethostbyaddr_r_proto'
21003 gethostbyname_r_proto='$gethostbyname_r_proto'
21004 gethostent_r_proto='$gethostent_r_proto'
21005 getlogin_r_proto='$getlogin_r_proto'
21006 getnetbyaddr_r_proto='$getnetbyaddr_r_proto'
21007 getnetbyname_r_proto='$getnetbyname_r_proto'
21008 getnetent_r_proto='$getnetent_r_proto'
21009 getprotobyname_r_proto='$getprotobyname_r_proto'
21010 getprotobynumber_r_proto='$getprotobynumber_r_proto'
21011 getprotoent_r_proto='$getprotoent_r_proto'
21012 getpwent_r_proto='$getpwent_r_proto'
21013 getpwnam_r_proto='$getpwnam_r_proto'
21014 getpwuid_r_proto='$getpwuid_r_proto'
21015 getservbyname_r_proto='$getservbyname_r_proto'
21016 getservbyport_r_proto='$getservbyport_r_proto'
21017 getservent_r_proto='$getservent_r_proto'
21018 getspnam_r_proto='$getspnam_r_proto'
21019 gidformat='$gidformat'
21020 gidsign='$gidsign'
21021 gidsize='$gidsize'
21022 gidtype='$gidtype'
21023 glibpth='$glibpth'
21024 gmake='$gmake'
21025 gmtime_r_proto='$gmtime_r_proto'
21026 gnulibc_version='$gnulibc_version'
21027 grep='$grep'
21028 groupcat='$groupcat'
21029 groupstype='$groupstype'
21030 gzip='$gzip'
21031 h_fcntl='$h_fcntl'
21032 h_sysfile='$h_sysfile'
21033 hint='$hint'
21034 hostcat='$hostcat'
21035 html1dir='$html1dir'
21036 html1direxp='$html1direxp'
21037 html3dir='$html3dir'
21038 html3direxp='$html3direxp'
21039 i16size='$i16size'
21040 i16type='$i16type'
21041 i32size='$i32size'
21042 i32type='$i32type'
21043 i64size='$i64size'
21044 i64type='$i64type'
21045 i8size='$i8size'
21046 i8type='$i8type'
21047 i_arpainet='$i_arpainet'
21048 i_bsdioctl='$i_bsdioctl'
21049 i_crypt='$i_crypt'
21050 i_db='$i_db'
21051 i_dbm='$i_dbm'
21052 i_dirent='$i_dirent'
21053 i_dld='$i_dld'
21054 i_dlfcn='$i_dlfcn'
21055 i_fcntl='$i_fcntl'
21056 i_float='$i_float'
21057 i_fp='$i_fp'
21058 i_fp_class='$i_fp_class'
21059 i_gdbm='$i_gdbm'
21060 i_grp='$i_grp'
21061 i_ieeefp='$i_ieeefp'
21062 i_inttypes='$i_inttypes'
21063 i_langinfo='$i_langinfo'
21064 i_libutil='$i_libutil'
21065 i_limits='$i_limits'
21066 i_locale='$i_locale'
21067 i_machcthr='$i_machcthr'
21068 i_malloc='$i_malloc'
21069 i_math='$i_math'
21070 i_memory='$i_memory'
21071 i_mntent='$i_mntent'
21072 i_ndbm='$i_ndbm'
21073 i_netdb='$i_netdb'
21074 i_neterrno='$i_neterrno'
21075 i_netinettcp='$i_netinettcp'
21076 i_niin='$i_niin'
21077 i_poll='$i_poll'
21078 i_prot='$i_prot'
21079 i_pthread='$i_pthread'
21080 i_pwd='$i_pwd'
21081 i_rpcsvcdbm='$i_rpcsvcdbm'
21082 i_sfio='$i_sfio'
21083 i_sgtty='$i_sgtty'
21084 i_shadow='$i_shadow'
21085 i_socks='$i_socks'
21086 i_stdarg='$i_stdarg'
21087 i_stddef='$i_stddef'
21088 i_stdlib='$i_stdlib'
21089 i_string='$i_string'
21090 i_sunmath='$i_sunmath'
21091 i_sysaccess='$i_sysaccess'
21092 i_sysdir='$i_sysdir'
21093 i_sysfile='$i_sysfile'
21094 i_sysfilio='$i_sysfilio'
21095 i_sysin='$i_sysin'
21096 i_sysioctl='$i_sysioctl'
21097 i_syslog='$i_syslog'
21098 i_sysmman='$i_sysmman'
21099 i_sysmode='$i_sysmode'
21100 i_sysmount='$i_sysmount'
21101 i_sysndir='$i_sysndir'
21102 i_sysparam='$i_sysparam'
21103 i_sysresrc='$i_sysresrc'
21104 i_syssecrt='$i_syssecrt'
21105 i_sysselct='$i_sysselct'
21106 i_syssockio='$i_syssockio'
21107 i_sysstat='$i_sysstat'
21108 i_sysstatfs='$i_sysstatfs'
21109 i_sysstatvfs='$i_sysstatvfs'
21110 i_systime='$i_systime'
21111 i_systimek='$i_systimek'
21112 i_systimes='$i_systimes'
21113 i_systypes='$i_systypes'
21114 i_sysuio='$i_sysuio'
21115 i_sysun='$i_sysun'
21116 i_sysutsname='$i_sysutsname'
21117 i_sysvfs='$i_sysvfs'
21118 i_syswait='$i_syswait'
21119 i_termio='$i_termio'
21120 i_termios='$i_termios'
21121 i_time='$i_time'
21122 i_unistd='$i_unistd'
21123 i_ustat='$i_ustat'
21124 i_utime='$i_utime'
21125 i_values='$i_values'
21126 i_varargs='$i_varargs'
21127 i_varhdr='$i_varhdr'
21128 i_vfork='$i_vfork'
21129 ignore_versioned_solibs='$ignore_versioned_solibs'
21130 inc_version_list='$inc_version_list'
21131 inc_version_list_init='$inc_version_list_init'
21132 incpath='$incpath'
21133 inews='$inews'
21134 installarchlib='$installarchlib'
21135 installbin='$installbin'
21136 installhtml1dir='$installhtml1dir'
21137 installhtml3dir='$installhtml3dir'
21138 installman1dir='$installman1dir'
21139 installman3dir='$installman3dir'
21140 installprefix='$installprefix'
21141 installprefixexp='$installprefixexp'
21142 installprivlib='$installprivlib'
21143 installscript='$installscript'
21144 installsitearch='$installsitearch'
21145 installsitebin='$installsitebin'
21146 installsitehtml1dir='$installsitehtml1dir'
21147 installsitehtml3dir='$installsitehtml3dir'
21148 installsitelib='$installsitelib'
21149 installsiteman1dir='$installsiteman1dir'
21150 installsiteman3dir='$installsiteman3dir'
21151 installsitescript='$installsitescript'
21152 installstyle='$installstyle'
21153 installusrbinperl='$installusrbinperl'
21154 installvendorarch='$installvendorarch'
21155 installvendorbin='$installvendorbin'
21156 installvendorhtml1dir='$installvendorhtml1dir'
21157 installvendorhtml3dir='$installvendorhtml3dir'
21158 installvendorlib='$installvendorlib'
21159 installvendorman1dir='$installvendorman1dir'
21160 installvendorman3dir='$installvendorman3dir'
21161 installvendorscript='$installvendorscript'
21162 intsize='$intsize'
21163 issymlink='$issymlink'
21164 ivdformat='$ivdformat'
21165 ivsize='$ivsize'
21166 ivtype='$ivtype'
21167 known_extensions='$known_extensions'
21168 ksh='$ksh'
21169 ld='$ld'
21170 lddlflags='$lddlflags'
21171 ldflags='$ldflags'
21172 ldflags_uselargefiles='$ldflags_uselargefiles'
21173 ldlibpthname='$ldlibpthname'
21174 less='$less'
21175 lib_ext='$lib_ext'
21176 libc='$libc'
21177 libperl='$libperl'
21178 libpth='$libpth'
21179 libs='$libs'
21180 libsdirs='$libsdirs'
21181 libsfiles='$libsfiles'
21182 libsfound='$libsfound'
21183 libspath='$libspath'
21184 libswanted='$libswanted'
21185 libswanted_uselargefiles='$libswanted_uselargefiles'
21186 line='$line'
21187 lint='$lint'
21188 lkflags='$lkflags'
21189 ln='$ln'
21190 lns='$lns'
21191 localtime_r_proto='$localtime_r_proto'
21192 locincpth='$locincpth'
21193 loclibpth='$loclibpth'
21194 longdblsize='$longdblsize'
21195 longlongsize='$longlongsize'
21196 longsize='$longsize'
21197 lp='$lp'
21198 lpr='$lpr'
21199 ls='$ls'
21200 lseeksize='$lseeksize'
21201 lseektype='$lseektype'
21202 mail='$mail'
21203 mailx='$mailx'
21204 make='$make'
21205 make_set_make='$make_set_make'
21206 mallocobj='$mallocobj'
21207 mallocsrc='$mallocsrc'
21208 malloctype='$malloctype'
21209 man1dir='$man1dir'
21210 man1direxp='$man1direxp'
21211 man1ext='$man1ext'
21212 man3dir='$man3dir'
21213 man3direxp='$man3direxp'
21214 man3ext='$man3ext'
21215 mips_type='$mips_type'
21216 mistrustnm='$mistrustnm'
21217 mkdir='$mkdir'
21218 mmaptype='$mmaptype'
21219 modetype='$modetype'
21220 more='$more'
21221 multiarch='$multiarch'
21222 mv='$mv'
21223 myarchname='$myarchname'
21224 mydomain='$mydomain'
21225 myhostname='$myhostname'
21226 myuname='$myuname'
21227 n='$n'
21228 need_va_copy='$need_va_copy'
21229 netdb_hlen_type='$netdb_hlen_type'
21230 netdb_host_type='$netdb_host_type'
21231 netdb_name_type='$netdb_name_type'
21232 netdb_net_type='$netdb_net_type'
21233 nm='$nm'
21234 nm_opt='$nm_opt'
21235 nm_so_opt='$nm_so_opt'
21236 nonxs_ext='$nonxs_ext'
21237 nroff='$nroff'
21238 nvEUformat='$nvEUformat'
21239 nvFUformat='$nvFUformat'
21240 nvGUformat='$nvGUformat'
21241 nv_preserves_uv_bits='$nv_preserves_uv_bits'
21242 nveformat='$nveformat'
21243 nvfformat='$nvfformat'
21244 nvgformat='$nvgformat'
21245 nvsize='$nvsize'
21246 nvtype='$nvtype'
21247 o_nonblock='$o_nonblock'
21248 obj_ext='$obj_ext'
21249 old_pthread_create_joinable='$old_pthread_create_joinable'
21250 optimize='$optimize'
21251 orderlib='$orderlib'
21252 osname='$osname'
21253 osvers='$osvers'
21254 otherlibdirs='$otherlibdirs'
21255 package='$package'
21256 pager='$pager'
21257 passcat='$passcat'
21258 patchlevel='$patchlevel'
21259 path_sep='$path_sep'
21260 perl5='$perl5'
21261 perl='$perl'
21262 perl_patchlevel='$perl_patchlevel'
21263 perladmin='$perladmin'
21264 perllibs='$perllibs'
21265 perlpath='$perlpath'
21266 pg='$pg'
21267 phostname='$phostname'
21268 pidtype='$pidtype'
21269 plibpth='$plibpth'
21270 pmake='$pmake'
21271 pr='$pr'
21272 prefix='$prefix'
21273 prefixexp='$prefixexp'
21274 privlib='$privlib'
21275 privlibexp='$privlibexp'
21276 procselfexe='$procselfexe'
21277 prototype='$prototype'
21278 ptrsize='$ptrsize'
21279 quadkind='$quadkind'
21280 quadtype='$quadtype'
21281 randbits='$randbits'
21282 randfunc='$randfunc'
21283 random_r_proto='$random_r_proto'
21284 randseedtype='$randseedtype'
21285 ranlib='$ranlib'
21286 rd_nodata='$rd_nodata'
21287 readdir64_r_proto='$readdir64_r_proto'
21288 readdir_r_proto='$readdir_r_proto'
21289 revision='$revision'
21290 rm='$rm'
21291 rmail='$rmail'
21292 run='$run'
21293 runnm='$runnm'
21294 sPRIEUldbl='$sPRIEUldbl'
21295 sPRIFUldbl='$sPRIFUldbl'
21296 sPRIGUldbl='$sPRIGUldbl'
21297 sPRIXU64='$sPRIXU64'
21298 sPRId64='$sPRId64'
21299 sPRIeldbl='$sPRIeldbl'
21300 sPRIfldbl='$sPRIfldbl'
21301 sPRIgldbl='$sPRIgldbl'
21302 sPRIi64='$sPRIi64'
21303 sPRIo64='$sPRIo64'
21304 sPRIu64='$sPRIu64'
21305 sPRIx64='$sPRIx64'
21306 sSCNfldbl='$sSCNfldbl'
21307 sched_yield='$sched_yield'
21308 scriptdir='$scriptdir'
21309 scriptdirexp='$scriptdirexp'
21310 sed='$sed'
21311 seedfunc='$seedfunc'
21312 selectminbits='$selectminbits'
21313 selecttype='$selecttype'
21314 sendmail='$sendmail'
21315 setgrent_r_proto='$setgrent_r_proto'
21316 sethostent_r_proto='$sethostent_r_proto'
21317 setlocale_r_proto='$setlocale_r_proto'
21318 setnetent_r_proto='$setnetent_r_proto'
21319 setprotoent_r_proto='$setprotoent_r_proto'
21320 setpwent_r_proto='$setpwent_r_proto'
21321 setservent_r_proto='$setservent_r_proto'
21322 sh='$sh'
21323 shar='$shar'
21324 sharpbang='$sharpbang'
21325 shmattype='$shmattype'
21326 shortsize='$shortsize'
21327 shrpenv='$shrpenv'
21328 shsharp='$shsharp'
21329 sig_count='$sig_count'
21330 sig_name='$sig_name'
21331 sig_name_init='$sig_name_init'
21332 sig_num='$sig_num'
21333 sig_num_init='$sig_num_init'
21334 sig_size='$sig_size'
21335 signal_t='$signal_t'
21336 sitearch='$sitearch'
21337 sitearchexp='$sitearchexp'
21338 sitebin='$sitebin'
21339 sitebinexp='$sitebinexp'
21340 sitehtml1dir='$sitehtml1dir'
21341 sitehtml1direxp='$sitehtml1direxp'
21342 sitehtml3dir='$sitehtml3dir'
21343 sitehtml3direxp='$sitehtml3direxp'
21344 sitelib='$sitelib'
21345 sitelib_stem='$sitelib_stem'
21346 sitelibexp='$sitelibexp'
21347 siteman1dir='$siteman1dir'
21348 siteman1direxp='$siteman1direxp'
21349 siteman3dir='$siteman3dir'
21350 siteman3direxp='$siteman3direxp'
21351 siteprefix='$siteprefix'
21352 siteprefixexp='$siteprefixexp'
21353 sitescript='$sitescript'
21354 sitescriptexp='$sitescriptexp'
21355 sizesize='$sizesize'
21356 sizetype='$sizetype'
21357 sleep='$sleep'
21358 smail='$smail'
21359 so='$so'
21360 sockethdr='$sockethdr'
21361 socketlib='$socketlib'
21362 socksizetype='$socksizetype'
21363 sort='$sort'
21364 spackage='$spackage'
21365 spitshell='$spitshell'
21366 srand48_r_proto='$srand48_r_proto'
21367 srandom_r_proto='$srandom_r_proto'
21368 src='$src'
21369 ssizetype='$ssizetype'
21370 startperl='$startperl'
21371 startsh='$startsh'
21372 static_ext='$static_ext'
21373 stdchar='$stdchar'
21374 stdio_base='$stdio_base'
21375 stdio_bufsiz='$stdio_bufsiz'
21376 stdio_cnt='$stdio_cnt'
21377 stdio_filbuf='$stdio_filbuf'
21378 stdio_ptr='$stdio_ptr'
21379 stdio_stream_array='$stdio_stream_array'
21380 strerror_r_proto='$strerror_r_proto'
21381 strings='$strings'
21382 submit='$submit'
21383 subversion='$subversion'
21384 sysman='$sysman'
21385 tail='$tail'
21386 tar='$tar'
21387 targetarch='$targetarch'
21388 tbl='$tbl'
21389 tee='$tee'
21390 test='$test'
21391 timeincl='$timeincl'
21392 timetype='$timetype'
21393 tmpnam_r_proto='$tmpnam_r_proto'
21394 to='$to'
21395 touch='$touch'
21396 tr='$tr'
21397 trnl='$trnl'
21398 troff='$troff'
21399 ttyname_r_proto='$ttyname_r_proto'
21400 u16size='$u16size'
21401 u16type='$u16type'
21402 u32size='$u32size'
21403 u32type='$u32type'
21404 u64size='$u64size'
21405 u64type='$u64type'
21406 u8size='$u8size'
21407 u8type='$u8type'
21408 uidformat='$uidformat'
21409 uidsign='$uidsign'
21410 uidsize='$uidsize'
21411 uidtype='$uidtype'
21412 uname='$uname'
21413 uniq='$uniq'
21414 uquadtype='$uquadtype'
21415 use5005threads='$use5005threads'
21416 use64bitall='$use64bitall'
21417 use64bitint='$use64bitint'
21418 usecrosscompile='$usecrosscompile'
21419 usedl='$usedl'
21420 usefaststdio='$usefaststdio'
21421 useithreads='$useithreads'
21422 uselargefiles='$uselargefiles'
21423 uselongdouble='$uselongdouble'
21424 usemallocwrap='$usemallocwrap'
21425 usemorebits='$usemorebits'
21426 usemultiplicity='$usemultiplicity'
21427 usemymalloc='$usemymalloc'
21428 usenm='$usenm'
21429 useopcode='$useopcode'
21430 useperlio='$useperlio'
21431 useposix='$useposix'
21432 usereentrant='$usereentrant'
21433 userelocatableinc='$userelocatableinc'
21434 usesfio='$usesfio'
21435 useshrplib='$useshrplib'
21436 usesocks='$usesocks'
21437 usethreads='$usethreads'
21438 usevendorprefix='$usevendorprefix'
21439 usevfork='$usevfork'
21440 usrinc='$usrinc'
21441 uuname='$uuname'
21442 uvXUformat='$uvXUformat'
21443 uvoformat='$uvoformat'
21444 uvsize='$uvsize'
21445 uvtype='$uvtype'
21446 uvuformat='$uvuformat'
21447 uvxformat='$uvxformat'
21448 vendorarch='$vendorarch'
21449 vendorarchexp='$vendorarchexp'
21450 vendorbin='$vendorbin'
21451 vendorbinexp='$vendorbinexp'
21452 vendorhtml1dir='$vendorhtml1dir'
21453 vendorhtml1direxp='$vendorhtml1direxp'
21454 vendorhtml3dir='$vendorhtml3dir'
21455 vendorhtml3direxp='$vendorhtml3direxp'
21456 vendorlib='$vendorlib'
21457 vendorlib_stem='$vendorlib_stem'
21458 vendorlibexp='$vendorlibexp'
21459 vendorman1dir='$vendorman1dir'
21460 vendorman1direxp='$vendorman1direxp'
21461 vendorman3dir='$vendorman3dir'
21462 vendorman3direxp='$vendorman3direxp'
21463 vendorprefix='$vendorprefix'
21464 vendorprefixexp='$vendorprefixexp'
21465 vendorscript='$vendorscript'
21466 vendorscriptexp='$vendorscriptexp'
21467 version='$version'
21468 version_patchlevel_string='$version_patchlevel_string'
21469 versiononly='$versiononly'
21470 vi='$vi'
21471 voidflags='$voidflags'
21472 xlibpth='$xlibpth'
21473 yacc='$yacc'
21474 yaccflags='$yaccflags'
21475 zcat='$zcat'
21476 zip='$zip'
21477 EOT
21478
21479 : Add in command line options if available
21480 $test -f UU/cmdline.opt && $cat UU/cmdline.opt >> config.sh
21481
21482 : add special variables
21483 $test -f $src/patchlevel.h && \
21484 awk '/^#define[         ]+PERL_/ {printf "%s=%s\n",$2,$3}' $src/patchlevel.h >>config.sh
21485 echo "PERL_PATCHLEVEL=$perl_patchlevel" >>config.sh
21486 echo "PERL_CONFIG_SH=true" >>config.sh
21487
21488 : propagate old symbols
21489 if $test -f UU/config.sh; then
21490         <UU/config.sh $sort | $uniq >UU/oldconfig.sh
21491         sed -n 's/^\([a-zA-Z_0-9]*\)=.*/\1/p' config.sh config.sh UU/oldconfig.sh |\
21492         $sort | $uniq -u >UU/oldsyms
21493         set X `cat UU/oldsyms`
21494         shift
21495         case $# in
21496         0) ;;
21497         *)
21498                 cat <<EOM
21499 Hmm...You had some extra variables I don't know about...I'll try to keep 'em...
21500 EOM
21501                 echo "# Variables propagated from previous config.sh file." >>config.sh
21502                 for sym in `cat UU/oldsyms`; do
21503                         echo "    Propagating $hint variable "'$'"$sym..."
21504                         eval 'tmp="$'"${sym}"'"'
21505                         echo "$tmp" | \
21506                                 sed -e "s/'/'\"'\"'/g" -e "s/^/$sym='/" -e "s/$/'/" >>config.sh
21507                 done
21508                 ;;
21509         esac
21510 fi
21511
21512 : Finish up by extracting the .SH files
21513 case "$alldone" in
21514 exit)
21515         $rm -rf UU
21516         echo "Extraction done."
21517         exit 0
21518         ;;
21519 cont)
21520         ;;
21521 '')
21522         dflt=''
21523         nostick=true
21524         $cat <<EOM
21525
21526 If you'd like to make any changes to the config.sh file before I begin
21527 to configure things, do it as a shell escape now (e.g. !vi config.sh).
21528
21529 EOM
21530         rp="Press return or use a shell escape to edit config.sh:"
21531         . UU/myread
21532         nostick=''
21533         case "$ans" in
21534         '') ;;
21535         *) : in case they cannot read
21536                 sh 1>&4 -c "$ans";;
21537         esac
21538         ;;
21539 esac
21540
21541 : if this fails, just run all the .SH files by hand
21542 . ./config.sh
21543
21544 echo " "
21545 exec 1>&4
21546 pwd=`pwd`
21547 . ./UU/extract
21548 cd "$pwd"
21549
21550 if $contains '^depend:' [Mm]akefile >/dev/null 2>&1; then
21551         dflt=y
21552         case "$silent" in
21553         true) ;;
21554         *)
21555                 $cat <<EOM
21556
21557 Now you need to generate make dependencies by running "$make depend".
21558 You might prefer to run it in background: "$make depend > makedepend.out &"
21559 It can take a while, so you might not want to run it right now.
21560
21561 EOM
21562                 ;;
21563         esac
21564         rp="Run $make depend now?"
21565         . UU/myread
21566         case "$ans" in
21567         y*)
21568                 $make depend && echo "Now you must run '$make'."
21569                 ;;
21570         *)
21571                 echo "You must run '$make depend' then '$make'."
21572                 ;;
21573         esac
21574 elif test -f [Mm]akefile; then
21575         echo " "
21576         echo "Now you must run a $make."
21577 else
21578         echo "Configure done."
21579 fi
21580
21581 if $test -f Policy.sh; then
21582     $cat <<EOM
21583
21584 If you compile $package on a different machine or from a different object
21585 directory, copy the Policy.sh file from this object directory to the
21586 new one before you run Configure -- this will help you with most of
21587 the policy defaults.
21588
21589 EOM
21590 fi
21591 if $test -f config.msg; then
21592     echo "Hmm.  I also noted the following information while running:"
21593     echo " "
21594     $cat config.msg >&4
21595     $rm -f config.msg
21596 fi
21597 $rm -f kit*isdone ark*isdone
21598 $rm -rf UU
21599
21600 : End of Configure
21601