Switch the new perlio way of opening anonymous temporary files
[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 Fri May  2 23:30:45 EET DST 2003 [metaconfig 3.0 PL70]
24 # (with additional metaconfig patches by perlbug@perl.org)
25
26 cat >c1$$ <<EOF
27 ARGGGHHHH!!!!!
28
29 SCO csh still thinks true is false.  Write to SCO today and tell them that next
30 year Configure ought to "rm /bin/csh" unless they fix their blasted shell. :-)
31
32 (Actually, Configure ought to just patch csh in place.  Hmm.  Hmmmmm.  All
33 we'd have to do is go in and swap the && and || tokens, wherever they are.)
34
35 [End of diatribe. We now return you to your regularly scheduled programming...]
36 EOF
37 cat >c2$$ <<EOF
38
39 OOPS!  You naughty creature!  You didn't run Configure with sh!
40 I will attempt to remedy the situation by running sh for you...
41 EOF
42
43 true || cat c1$$ c2$$
44 true || exec sh $0 $argv:q
45
46 (exit $?0) || cat c2$$
47 (exit $?0) || exec sh $0 $argv:q
48 rm -f c1$$ c2$$
49
50 if test -f /dev/cputype -a -f /dev/drivers -a -f /dev/osversion; then
51         cat >&4 <<EOF
52 ***
53 *** I'm sorry but this system looks like Plan 9 and Plan 9 doesn't do
54 *** Configure that well.  (Plan 9 is close to UNIX but not close enough.)
55 *** Please read the README.plan9 for further instructions.
56 *** Cannot continue, aborting.
57 ***
58 EOF
59         exit 1
60 fi
61
62 : compute my invocation name
63 me=$0
64 case "$0" in
65 */*)
66         me=`echo $0 | sed -e 's!.*/\(.*\)!\1!' 2>/dev/null`
67         test "$me" || me=$0
68         ;;
69 esac
70
71 : Proper separator for the PATH environment variable
72 p_=:
73 : On OS/2 this directory should exist if this is not floppy only system :-]
74 if test -d c:/. || ( uname -a | grep -i 'os\(/\|\)2' ) 2>&1 >/dev/null ; then
75     if test -n "$OS2_SHELL"; then
76                 p_=\;
77                 PATH=`cmd /c "echo %PATH%" | tr '\\\\' / `
78                 OS2_SHELL=`cmd /c "echo %OS2_SHELL%" | tr '\\\\' / | tr '[A-Z]' '[a-z]'`
79                 is_os2=yes
80         elif test -n "$DJGPP"; then
81                 case "X${MACHTYPE:-nonesuchmach}" in
82                 *cygwin) ;;
83                 *) p_=\; ;;
84                 esac
85         fi
86 fi
87
88 : Proper PATH setting
89 paths='/bin /usr/bin /usr/local/bin /usr/ucb /usr/local /usr/lbin'
90 paths="$paths /opt/bin /opt/local/bin /opt/local /opt/lbin"
91 paths="$paths /usr/5bin /etc /usr/gnu/bin /usr/new /usr/new/bin /usr/nbin"
92 paths="$paths /opt/gnu/bin /opt/new /opt/new/bin /opt/nbin"
93 paths="$paths /sys5.3/bin /sys5.3/usr/bin /bsd4.3/bin /bsd4.3/usr/ucb"
94 paths="$paths /bsd4.3/usr/bin /usr/bsd /bsd43/bin /usr/ccs/bin"
95 paths="$paths /etc /usr/lib /usr/ucblib /lib /usr/ccs/lib"
96 paths="$paths /sbin /usr/sbin /usr/libexec"
97 paths="$paths /system/gnu_library/bin"
98
99 for p in $paths
100 do
101         case "$p_$PATH$p_" in
102         *$p_$p$p_*) ;;
103         *) test -d $p && PATH=$PATH$p_$p ;;
104         esac
105 done
106
107 PATH=.$p_$PATH
108 export PATH
109
110 : shall we be using ksh?
111 inksh=''
112 needksh=''
113 avoidksh=''
114 newsh=/bin/ksh
115 changesh=''
116 if (PATH=.; alias -x) >/dev/null 2>&1; then
117                 inksh=true
118 fi
119 if test -f /hp-ux -a -f /bin/ksh; then
120         needksh='to avoid sh bug in "here document" expansion'
121 fi
122 if test -d /usr/lpp -a -f /usr/bin/bsh -a -f /usr/bin/uname; then
123         if test X`/usr/bin/uname -v` = X4; then
124                 avoidksh="to avoid AIX 4's /bin/sh"
125                 newsh=/usr/bin/bsh
126         fi
127 fi
128 if test -f /osf_boot -a -f /usr/sbin/setld; then
129         if test X`/usr/bin/uname -s` = XOSF1; then
130                 avoidksh="to avoid Digital UNIX' ksh"
131                 newsh=/bin/sh
132                 unset BIN_SH # if this is 'xpg4' sh will start up ksh
133         fi
134 fi
135 case "$inksh/$needksh" in
136 /[a-z]*)
137                 ENV=''
138                 changesh=true
139                 reason="$needksh"
140         ;;
141 esac
142 case "$inksh/$avoidksh" in
143 true/[a-z]*)
144         changesh=true
145         reason="$avoidksh"
146         ;;
147 esac
148 case "$inksh/$needksh-$avoidksh-" in
149 true/--)
150                 cat <<EOM
151 (I see you are using the Korn shell.  Some ksh's blow up on $me,
152 mainly on older exotic systems.  If yours does, try the Bourne shell instead.)
153 EOM
154         ;;
155 esac
156 case "$changesh" in
157 true)
158         export newsh
159         echo "(Feeding myself to $newsh $reason.)"
160         case "$0" in
161         Configure|*/Configure) exec $newsh $0 "$@";;
162         *) exec $newsh Configure "$@";;
163         esac
164         ;;
165 esac
166
167 : if needed set CDPATH to a harmless value that is not chatty
168 : avoid bash 2.02 problems with empty CDPATH.
169 case "$CDPATH" in
170 '')     ;;
171 *)      case "$SHELL" in
172         *bash*) CDPATH='.' ;;
173         *)              CDPATH='' ;;
174         esac
175         ;;
176 esac
177 : Configure runs within the UU subdirectory
178 test -d UU || mkdir UU
179 cd UU && rm -f ./*
180
181 ccname=''
182 ccversion=''
183 ccsymbols=''
184 cppccsymbols=''
185 cppsymbols=''
186 from=''
187 run=''
188 targetarch=''
189 to=''
190 usecrosscompile=''
191 perllibs=''
192 dynamic_ext=''
193 extensions=''
194 known_extensions=''
195 nonxs_ext=''
196 static_ext=''
197 useopcode=''
198 useposix=''
199 extras=''
200 d_bsd=''
201 d_eunice=''
202 d_xenix=''
203 eunicefix=''
204 Mcc=''
205 ar=''
206 awk=''
207 bash=''
208 bison=''
209 byacc=''
210 cat=''
211 chgrp=''
212 chmod=''
213 chown=''
214 comm=''
215 compress=''
216 cp=''
217 cpio=''
218 cpp=''
219 csh=''
220 date=''
221 echo=''
222 egrep=''
223 emacs=''
224 expr=''
225 find=''
226 flex=''
227 gmake=''
228 grep=''
229 gzip=''
230 inews=''
231 ksh=''
232 less=''
233 line=''
234 lint=''
235 ln=''
236 lp=''
237 lpr=''
238 ls=''
239 mail=''
240 mailx=''
241 make=''
242 mkdir=''
243 more=''
244 mv=''
245 nm=''
246 nroff=''
247 perl=''
248 pg=''
249 pmake=''
250 pr=''
251 rm=''
252 rmail=''
253 sed=''
254 sendmail=''
255 shar=''
256 sleep=''
257 smail=''
258 sort=''
259 submit=''
260 tail=''
261 tar=''
262 tbl=''
263 tee=''
264 test=''
265 touch=''
266 tr=''
267 troff=''
268 uname=''
269 uniq=''
270 uuname=''
271 vi=''
272 zcat=''
273 zip=''
274 full_ar=''
275 full_sed=''
276 libswanted=''
277 hint=''
278 myuname=''
279 osname=''
280 osvers=''
281 Author=''
282 Date=''
283 Header=''
284 Id=''
285 Locker=''
286 Log=''
287 RCSfile=''
288 Revision=''
289 Source=''
290 State=''
291 _a=''
292 _exe=''
293 _o=''
294 archobjs=''
295 exe_ext=''
296 firstmakefile=''
297 lib_ext=''
298 obj_ext=''
299 path_sep=''
300 afs=''
301 afsroot=''
302 alignbytes=''
303 ansi2knr=''
304 archlib=''
305 archlibexp=''
306 d_archlib=''
307 installarchlib=''
308 archname=''
309 myarchname=''
310 d_atolf=''
311 d_atoll=''
312 baserev=''
313 bin=''
314 binexp=''
315 installbin=''
316 byteorder=''
317 cc=''
318 ccflags=''
319 cppflags=''
320 ldflags=''
321 lkflags=''
322 locincpth=''
323 optimize=''
324 cf_email=''
325 cf_by=''
326 cf_time=''
327 charsize=''
328 contains=''
329 cpp_stuff=''
330 cpplast=''
331 cppminus=''
332 cpprun=''
333 cppstdin=''
334 d__fwalk=''
335 d_access=''
336 d_accessx=''
337 d_aintl=''
338 d_alarm=''
339 asctime_r_proto=''
340 d_asctime_r=''
341 d_attribut=''
342 d_bcmp=''
343 d_bcopy=''
344 d_bzero=''
345 d_casti32=''
346 castflags=''
347 d_castneg=''
348 d_chown=''
349 d_chroot=''
350 d_chsize=''
351 d_class=''
352 d_closedir=''
353 d_void_closedir=''
354 d_cmsghdr_s=''
355 d_const=''
356 d_copysignl=''
357 cryptlib=''
358 d_crypt=''
359 crypt_r_proto=''
360 d_crypt_r=''
361 d_csh=''
362 full_csh=''
363 ctermid_r_proto=''
364 d_ctermid_r=''
365 ctime_r_proto=''
366 d_ctime_r=''
367 d_cuserid=''
368 d_dbl_dig=''
369 d_dbminitproto=''
370 d_difftime=''
371 d_dirfd=''
372 d_dlerror=''
373 d_dlopen=''
374 d_dlsymun=''
375 d_dosuid=''
376 d_suidsafe=''
377 d_drand48_r=''
378 drand48_r_proto=''
379 d_drand48proto=''
380 d_dup2=''
381 d_eaccess=''
382 d_endgrent=''
383 d_endgrent_r=''
384 endgrent_r_proto=''
385 d_endhent=''
386 d_endhostent_r=''
387 endhostent_r_proto=''
388 d_endnent=''
389 d_endnetent_r=''
390 endnetent_r_proto=''
391 d_endpent=''
392 d_endprotoent_r=''
393 endprotoent_r_proto=''
394 d_endpwent=''
395 d_endpwent_r=''
396 endpwent_r_proto=''
397 d_endsent=''
398 d_endservent_r=''
399 endservent_r_proto=''
400 d_faststdio=''
401 d_fchdir=''
402 d_fchmod=''
403 d_fchown=''
404 d_fcntl=''
405 d_fcntl_can_lock=''
406 d_fd_macros=''
407 d_fd_set=''
408 d_fds_bits=''
409 d_fgetpos=''
410 d_finite=''
411 d_finitel=''
412 d_flexfnam=''
413 d_flock=''
414 d_flockproto=''
415 d_fork=''
416 d_fp_class=''
417 d_fpclass=''
418 d_fpclassify=''
419 d_fpclassl=''
420 d_fpos64_t=''
421 d_frexpl=''
422 d_fs_data_s=''
423 d_fseeko=''
424 d_fsetpos=''
425 d_fstatfs=''
426 d_fsync=''
427 d_ftello=''
428 d_ftime=''
429 d_gettimeod=''
430 d_Gconvert=''
431 d_getcwd=''
432 d_getespwnam=''
433 d_getfsstat=''
434 d_getgrent=''
435 d_getgrent_r=''
436 getgrent_r_proto=''
437 d_getgrgid_r=''
438 getgrgid_r_proto=''
439 d_getgrnam_r=''
440 getgrnam_r_proto=''
441 d_getgrps=''
442 d_gethbyaddr=''
443 d_gethbyname=''
444 d_gethent=''
445 aphostname=''
446 d_gethname=''
447 d_phostname=''
448 d_uname=''
449 d_gethostbyaddr_r=''
450 gethostbyaddr_r_proto=''
451 d_gethostbyname_r=''
452 gethostbyname_r_proto=''
453 d_gethostent_r=''
454 gethostent_r_proto=''
455 d_gethostprotos=''
456 d_getitimer=''
457 d_getlogin=''
458 d_getlogin_r=''
459 getlogin_r_proto=''
460 d_getmnt=''
461 d_getmntent=''
462 d_getnbyaddr=''
463 d_getnbyname=''
464 d_getnent=''
465 d_getnetbyaddr_r=''
466 getnetbyaddr_r_proto=''
467 d_getnetbyname_r=''
468 getnetbyname_r_proto=''
469 d_getnetent_r=''
470 getnetent_r_proto=''
471 d_getnetprotos=''
472 d_getpagsz=''
473 d_getpent=''
474 d_getpgid=''
475 d_getpgrp2=''
476 d_bsdgetpgrp=''
477 d_getpgrp=''
478 d_getppid=''
479 d_getprior=''
480 d_getpbyname=''
481 d_getpbynumber=''
482 d_getprotobyname_r=''
483 getprotobyname_r_proto=''
484 d_getprotobynumber_r=''
485 getprotobynumber_r_proto=''
486 d_getprotoent_r=''
487 getprotoent_r_proto=''
488 d_getprotoprotos=''
489 d_getprpwnam=''
490 d_getpwent=''
491 d_getpwent_r=''
492 getpwent_r_proto=''
493 d_getpwnam_r=''
494 getpwnam_r_proto=''
495 d_getpwuid_r=''
496 getpwuid_r_proto=''
497 d_getsent=''
498 d_getservbyname_r=''
499 getservbyname_r_proto=''
500 d_getservbyport_r=''
501 getservbyport_r_proto=''
502 d_getservent_r=''
503 getservent_r_proto=''
504 d_getservprotos=''
505 d_getspnam=''
506 d_getspnam_r=''
507 getspnam_r_proto=''
508 d_getsbyname=''
509 d_getsbyport=''
510 d_gmtime_r=''
511 gmtime_r_proto=''
512 d_gnulibc=''
513 gnulibc_version=''
514 d_hasmntopt=''
515 d_htonl=''
516 d_ilogbl=''
517 d_inetaton=''
518 d_int64_t=''
519 d_isascii=''
520 d_isfinite=''
521 d_isinf=''
522 d_isnan=''
523 d_isnanl=''
524 d_killpg=''
525 d_lchown=''
526 d_ldbl_dig=''
527 d_link=''
528 d_localtime_r=''
529 localtime_r_proto=''
530 d_locconv=''
531 d_lockf=''
532 d_longdbl=''
533 longdblsize=''
534 d_longlong=''
535 longlongsize=''
536 d_lseekproto=''
537 d_lstat=''
538 d_madvise=''
539 d_mblen=''
540 d_mbstowcs=''
541 d_mbtowc=''
542 d_memchr=''
543 d_memcmp=''
544 d_memcpy=''
545 d_memmove=''
546 d_memset=''
547 d_mkdir=''
548 d_mkdtemp=''
549 d_mkfifo=''
550 d_mkstemp=''
551 d_mkstemps=''
552 d_mktime=''
553 d_mmap=''
554 mmaptype=''
555 d_modfl=''
556 d_modfl_pow32_bug=''
557 d_modflproto=''
558 d_mprotect=''
559 d_msg=''
560 d_msgctl=''
561 d_msgget=''
562 d_msghdr_s=''
563 d_msgrcv=''
564 d_msgsnd=''
565 d_msync=''
566 d_munmap=''
567 d_nanosleep=''
568 d_nice=''
569 d_nl_langinfo=''
570 d_off64_t=''
571 d_open3=''
572 d_fpathconf=''
573 d_pathconf=''
574 d_pause=''
575 d_pipe=''
576 d_poll=''
577 d_portable=''
578 d_procselfexe=''
579 procselfexe=''
580 d_old_pthread_create_joinable=''
581 old_pthread_create_joinable=''
582 d_pthread_atfork=''
583 d_pthread_yield=''
584 d_sched_yield=''
585 sched_yield=''
586 d_qgcvt=''
587 d_random_r=''
588 random_r_proto=''
589 d_readdir64_r=''
590 readdir64_r_proto=''
591 d_readdir=''
592 d_rewinddir=''
593 d_seekdir=''
594 d_telldir=''
595 d_readdir_r=''
596 readdir_r_proto=''
597 d_readlink=''
598 d_readv=''
599 d_recvmsg=''
600 d_rename=''
601 d_rmdir=''
602 d_safebcpy=''
603 d_safemcpy=''
604 d_sanemcmp=''
605 d_sbrkproto=''
606 d_scalbnl=''
607 d_select=''
608 d_sem=''
609 d_semctl=''
610 d_semget=''
611 d_semop=''
612 d_sendmsg=''
613 d_setegid=''
614 d_seteuid=''
615 d_setgrent=''
616 d_setgrent_r=''
617 setgrent_r_proto=''
618 d_setgrps=''
619 d_sethent=''
620 d_sethostent_r=''
621 sethostent_r_proto=''
622 d_setitimer=''
623 d_setlinebuf=''
624 d_setlocale=''
625 d_setlocale_r=''
626 setlocale_r_proto=''
627 d_setnent=''
628 d_setnetent_r=''
629 setnetent_r_proto=''
630 d_setpent=''
631 d_setpgid=''
632 d_setpgrp2=''
633 d_bsdsetpgrp=''
634 d_setpgrp=''
635 d_setprior=''
636 d_setproctitle=''
637 d_setprotoent_r=''
638 setprotoent_r_proto=''
639 d_setpwent=''
640 d_setpwent_r=''
641 setpwent_r_proto=''
642 d_setregid=''
643 d_setresgid=''
644 d_setresuid=''
645 d_setreuid=''
646 d_setrgid=''
647 d_setruid=''
648 d_setsent=''
649 d_setservent_r=''
650 setservent_r_proto=''
651 d_setsid=''
652 d_setvbuf=''
653 d_sfio=''
654 usesfio=''
655 d_shm=''
656 d_shmat=''
657 d_shmatprototype=''
658 shmattype=''
659 d_shmctl=''
660 d_shmdt=''
661 d_shmget=''
662 d_sigaction=''
663 d_sigprocmask=''
664 d_sigsetjmp=''
665 d_sockatmark=''
666 d_sockatmarkproto=''
667 d_msg_ctrunc=''
668 d_msg_dontroute=''
669 d_msg_oob=''
670 d_msg_peek=''
671 d_msg_proxy=''
672 d_oldsock=''
673 d_scm_rights=''
674 d_socket=''
675 d_sockpair=''
676 sockethdr=''
677 socketlib=''
678 d_socklen_t=''
679 d_socks5_init=''
680 d_sqrtl=''
681 d_srand48_r=''
682 srand48_r_proto=''
683 d_srandom_r=''
684 srandom_r_proto=''
685 d_sresgproto=''
686 d_sresuproto=''
687 d_statblks=''
688 d_statfs_f_flags=''
689 d_statfs_s=''
690 d_fstatvfs=''
691 d_statvfs=''
692 d_stdio_cnt_lval=''
693 d_stdio_ptr_lval=''
694 d_stdio_ptr_lval_nochange_cnt=''
695 d_stdio_ptr_lval_sets_cnt=''
696 d_stdiobase=''
697 d_stdstdio=''
698 stdio_base=''
699 stdio_bufsiz=''
700 stdio_cnt=''
701 stdio_filbuf=''
702 stdio_ptr=''
703 d_index=''
704 d_strchr=''
705 d_strcoll=''
706 d_strctcpy=''
707 d_strerrm=''
708 d_strerror=''
709 d_sysernlst=''
710 d_syserrlst=''
711 d_strerror_r=''
712 strerror_r_proto=''
713 d_strftime=''
714 d_strtod=''
715 d_strtol=''
716 d_strtold=''
717 d_strtoll=''
718 d_strtoq=''
719 d_strtoul=''
720 d_strtoull=''
721 d_strtouq=''
722 d_strxfrm=''
723 d_symlink=''
724 d_syscall=''
725 d_syscallproto=''
726 d_sysconf=''
727 d_system=''
728 d_tcgetpgrp=''
729 d_tcsetpgrp=''
730 d_telldirproto=''
731 d_time=''
732 timetype=''
733 clocktype=''
734 d_times=''
735 d_tmpnam_r=''
736 tmpnam_r_proto=''
737 d_truncate=''
738 d_ttyname_r=''
739 ttyname_r_proto=''
740 d_tzname=''
741 d_u32align=''
742 d_ualarm=''
743 d_umask=''
744 d_semctl_semid_ds=''
745 d_semctl_semun=''
746 d_union_semun=''
747 d_unordered=''
748 d_usleep=''
749 d_usleepproto=''
750 d_ustat=''
751 d_vfork=''
752 usevfork=''
753 d_voidsig=''
754 signal_t=''
755 d_volatile=''
756 d_charvspr=''
757 d_vprintf=''
758 d_wait4=''
759 d_waitpid=''
760 d_wcstombs=''
761 d_wctomb=''
762 d_writev=''
763 dlext=''
764 cccdlflags=''
765 ccdlflags=''
766 dlsrc=''
767 ld=''
768 lddlflags=''
769 usedl=''
770 doublesize=''
771 ebcdic=''
772 fflushNULL=''
773 fflushall=''
774 fpossize=''
775 fpostype=''
776 gccansipedantic=''
777 gccosandvers=''
778 gccversion=''
779 gidformat=''
780 gidsign=''
781 gidsize=''
782 gidtype=''
783 groupstype=''
784 h_fcntl=''
785 h_sysfile=''
786 html1dir=''
787 html1direxp=''
788 installhtml1dir=''
789 html3dir=''
790 html3direxp=''
791 installhtml3dir=''
792 i_arpainet=''
793 i_crypt=''
794 db_hashtype=''
795 db_prefixtype=''
796 db_version_major=''
797 db_version_minor=''
798 db_version_patch=''
799 i_db=''
800 i_dbm=''
801 i_rpcsvcdbm=''
802 d_dirnamlen=''
803 direntrytype=''
804 i_dirent=''
805 i_dld=''
806 i_dlfcn=''
807 i_fcntl=''
808 i_float=''
809 i_fp=''
810 i_fp_class=''
811 i_gdbm=''
812 d_grpasswd=''
813 i_grp=''
814 i_ieeefp=''
815 i_inttypes=''
816 i_langinfo=''
817 i_libutil=''
818 i_limits=''
819 i_locale=''
820 i_machcthr=''
821 i_malloc=''
822 i_math=''
823 i_memory=''
824 i_mntent=''
825 i_ndbm=''
826 i_netdb=''
827 i_neterrno=''
828 i_netinettcp=''
829 i_niin=''
830 i_sysin=''
831 i_poll=''
832 i_prot=''
833 i_pthread=''
834 d_pwage=''
835 d_pwchange=''
836 d_pwclass=''
837 d_pwcomment=''
838 d_pwexpire=''
839 d_pwgecos=''
840 d_pwpasswd=''
841 d_pwquota=''
842 i_pwd=''
843 i_sfio=''
844 i_shadow=''
845 i_socks=''
846 i_stddef=''
847 i_stdlib=''
848 i_string=''
849 strings=''
850 i_sunmath=''
851 i_sysaccess=''
852 i_sysdir=''
853 i_sysfile=''
854 d_voidtty=''
855 i_bsdioctl=''
856 i_sysfilio=''
857 i_sysioctl=''
858 i_syssockio=''
859 i_syslog=''
860 i_sysmman=''
861 i_sysmode=''
862 i_sysmount=''
863 i_sysndir=''
864 i_sysparam=''
865 i_sysresrc=''
866 i_syssecrt=''
867 i_sysselct=''
868 i_sysstat=''
869 i_sysstatfs=''
870 i_sysstatvfs=''
871 i_systimes=''
872 i_systypes=''
873 i_sysuio=''
874 i_sysun=''
875 i_sysutsname=''
876 i_sysvfs=''
877 i_syswait=''
878 i_sgtty=''
879 i_termio=''
880 i_termios=''
881 d_tm_tm_gmtoff=''
882 d_tm_tm_zone=''
883 i_systime=''
884 i_systimek=''
885 i_time=''
886 timeincl=''
887 i_unistd=''
888 i_ustat=''
889 i_utime=''
890 i_values=''
891 i_stdarg=''
892 i_varargs=''
893 i_varhdr=''
894 i_vfork=''
895 inc_version_list=''
896 inc_version_list_init=''
897 installprefix=''
898 installprefixexp=''
899 installstyle=''
900 installusrbinperl=''
901 intsize=''
902 longsize=''
903 shortsize=''
904 issymlink=''
905 libc=''
906 ldlibpthname=''
907 libperl=''
908 shrpenv=''
909 useshrplib=''
910 glibpth=''
911 libpth=''
912 loclibpth=''
913 plibpth=''
914 xlibpth=''
915 ignore_versioned_solibs=''
916 libs=''
917 libsdirs=''
918 libsfiles=''
919 libsfound=''
920 libspath=''
921 lns=''
922 d_PRIEUldbl=''
923 d_PRIFUldbl=''
924 d_PRIGUldbl=''
925 d_PRIeldbl=''
926 d_PRIfldbl=''
927 d_PRIgldbl=''
928 d_SCNfldbl=''
929 sPRIEUldbl=''
930 sPRIFUldbl=''
931 sPRIGUldbl=''
932 sPRIeldbl=''
933 sPRIfldbl=''
934 sPRIgldbl=''
935 sSCNfldbl=''
936 lseeksize=''
937 lseektype=''
938 make_set_make=''
939 d_mymalloc=''
940 freetype=''
941 mallocobj=''
942 mallocsrc=''
943 malloctype=''
944 usemymalloc=''
945 installman1dir=''
946 man1dir=''
947 man1direxp=''
948 man1ext=''
949 installman3dir=''
950 man3dir=''
951 man3direxp=''
952 man3ext=''
953 modetype=''
954 multiarch=''
955 mydomain=''
956 myhostname=''
957 phostname=''
958 c=''
959 n=''
960 d_eofnblk=''
961 eagain=''
962 o_nonblock=''
963 rd_nodata=''
964 need_va_copy=''
965 netdb_hlen_type=''
966 netdb_host_type=''
967 netdb_name_type=''
968 netdb_net_type=''
969 groupcat=''
970 hostcat=''
971 passcat=''
972 orderlib=''
973 ranlib=''
974 d_perl_otherlibdirs=''
975 otherlibdirs=''
976 package=''
977 spackage=''
978 pager=''
979 api_revision=''
980 api_subversion=''
981 api_version=''
982 api_versionstring=''
983 patchlevel=''
984 perl_patchlevel=''
985 revision=''
986 subversion=''
987 version=''
988 version_patchlevel_string=''
989 perl5=''
990 perladmin=''
991 perlpath=''
992 d_nv_preserves_uv=''
993 i16size=''
994 i16type=''
995 i32size=''
996 i32type=''
997 i64size=''
998 i64type=''
999 i8size=''
1000 i8type=''
1001 ivsize=''
1002 ivtype=''
1003 nv_preserves_uv_bits=''
1004 nvsize=''
1005 nvtype=''
1006 u16size=''
1007 u16type=''
1008 u32size=''
1009 u32type=''
1010 u64size=''
1011 u64type=''
1012 u8size=''
1013 u8type=''
1014 uvsize=''
1015 uvtype=''
1016 ivdformat=''
1017 nvEUformat=''
1018 nvFUformat=''
1019 nvGUformat=''
1020 nveformat=''
1021 nvfformat=''
1022 nvgformat=''
1023 uvXUformat=''
1024 uvoformat=''
1025 uvuformat=''
1026 uvxformat=''
1027 pidtype=''
1028 prefix=''
1029 prefixexp=''
1030 installprivlib=''
1031 privlib=''
1032 privlibexp=''
1033 prototype=''
1034 ptrsize=''
1035 d_PRIXU64=''
1036 d_PRId64=''
1037 d_PRIi64=''
1038 d_PRIo64=''
1039 d_PRIu64=''
1040 d_PRIx64=''
1041 sPRIXU64=''
1042 sPRId64=''
1043 sPRIi64=''
1044 sPRIo64=''
1045 sPRIu64=''
1046 sPRIx64=''
1047 d_quad=''
1048 quadkind=''
1049 quadtype=''
1050 uquadtype=''
1051 drand01=''
1052 randbits=''
1053 randfunc=''
1054 randseedtype=''
1055 seedfunc=''
1056 installscript=''
1057 scriptdir=''
1058 scriptdirexp=''
1059 selectminbits=''
1060 selecttype=''
1061 sh=''
1062 sig_count=''
1063 sig_name=''
1064 sig_name_init=''
1065 sig_num=''
1066 sig_num_init=''
1067 sig_size=''
1068 installsitearch=''
1069 sitearch=''
1070 sitearchexp=''
1071 installsitebin=''
1072 sitebin=''
1073 sitebinexp=''
1074 installsitehtml1=''
1075 sitehtml1=''
1076 sitehtml1exp=''
1077 installsitehtml3=''
1078 sitehtml3=''
1079 sitehtml3exp=''
1080 installsitelib=''
1081 sitelib=''
1082 sitelib_stem=''
1083 sitelibexp=''
1084 installsiteman1=''
1085 siteman1=''
1086 siteman1exp=''
1087 installsiteman3=''
1088 siteman3=''
1089 siteman3exp=''
1090 siteprefix=''
1091 siteprefixexp=''
1092 installsitescript=''
1093 sitescript=''
1094 sitescriptexp=''
1095 sizesize=''
1096 sizetype=''
1097 so=''
1098 socksizetype=''
1099 sharpbang=''
1100 shsharp=''
1101 spitshell=''
1102 src=''
1103 ssizetype=''
1104 startperl=''
1105 startsh=''
1106 stdchar=''
1107 d_stdio_stream_array=''
1108 stdio_stream_array=''
1109 sysman=''
1110 trnl=''
1111 uidformat=''
1112 uidsign=''
1113 uidsize=''
1114 uidtype=''
1115 archname64=''
1116 use64bitall=''
1117 use64bitint=''
1118 usefaststdio=''
1119 ccflags_uselargefiles=''
1120 ldflags_uselargefiles=''
1121 libswanted_uselargefiles=''
1122 uselargefiles=''
1123 uselongdouble=''
1124 usemorebits=''
1125 usemultiplicity=''
1126 nm_opt=''
1127 nm_so_opt=''
1128 runnm=''
1129 usenm=''
1130 useperlio=''
1131 usesocks=''
1132 d_oldpthreads=''
1133 use5005threads=''
1134 useithreads=''
1135 usereentrant=''
1136 usethreads=''
1137 incpath=''
1138 mips_type=''
1139 usrinc=''
1140 d_vendorarch=''
1141 installvendorarch=''
1142 vendorarch=''
1143 vendorarchexp=''
1144 d_vendorbin=''
1145 installvendorbin=''
1146 vendorbin=''
1147 vendorbinexp=''
1148 installvendorhtml1=''
1149 vendorhtml1=''
1150 vendorhtml1exp=''
1151 installvendorhtml3=''
1152 vendorhtml3=''
1153 vendorhtml3exp=''
1154 d_vendorlib=''
1155 installvendorlib=''
1156 vendorlib=''
1157 vendorlib_stem=''
1158 vendorlibexp=''
1159 installvendorman1=''
1160 vendorman1=''
1161 vendorman1exp=''
1162 installvendorman3=''
1163 vendorman3=''
1164 vendorman3exp=''
1165 usevendorprefix=''
1166 vendorprefix=''
1167 vendorprefixexp=''
1168 d_vendorscript=''
1169 installvendorscript=''
1170 vendorscript=''
1171 vendorscriptexp=''
1172 versiononly=''
1173 defvoidused=''
1174 voidflags=''
1175 pm_apiversion=''
1176 xs_apiversion=''
1177 yacc=''
1178 yaccflags=''
1179 CONFIG=''
1180
1181 define='define'
1182 undef='undef'
1183 smallmach='pdp11 i8086 z8000 i80286 iAPX286'
1184 rmlist=''
1185
1186 : We must find out about Eunice early
1187 eunicefix=':'
1188 if test -f /etc/unixtovms; then
1189         eunicefix=/etc/unixtovms
1190 fi
1191 if test -f /etc/unixtovms.exe; then
1192         eunicefix=/etc/unixtovms.exe
1193 fi
1194
1195 : Set executable suffix now -- needed before hints available
1196 if test -f "/libs/version.library"; then
1197 : Amiga OS
1198     _exe=""
1199 elif test -f "/system/gnu_library/bin/ar.pm"; then
1200 : Stratus VOS
1201     _exe=".pm"
1202 elif test -n "$DJGPP"; then
1203 : DOS DJGPP
1204     _exe=".exe"
1205 elif test -d c:/. -o -n "$is_os2" ; then
1206 : OS/2 or cygwin
1207     _exe=".exe"
1208 fi
1209
1210 i_whoami=''
1211 : Possible local include directories to search.
1212 : Set locincpth to "" in a hint file to defeat local include searches.
1213 locincpth="/usr/local/include /opt/local/include /usr/gnu/include"
1214 locincpth="$locincpth /opt/gnu/include /usr/GNU/include /opt/GNU/include"
1215 :
1216 : no include file wanted by default
1217 inclwanted=''
1218
1219 siteman1=''
1220 siteman3=''
1221 sitescript=''
1222 : Trailing extension.  Override this in a hint file, if needed.
1223 : Extra object files, if any, needed on this platform.
1224 archobjs=''
1225 groupstype=''
1226 libnames=''
1227 : change the next line if compiling for Xenix/286 on Xenix/386
1228 xlibpth='/usr/lib/386 /lib/386'
1229 : Possible local library directories to search.
1230 loclibpth="/usr/local/lib /opt/local/lib /usr/gnu/lib"
1231 loclibpth="$loclibpth /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib"
1232
1233 : general looking path for locating libraries
1234 glibpth="/lib /usr/lib $xlibpth"
1235 glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/local/lib"
1236 test -f /usr/shlib/libc.so && glibpth="/usr/shlib $glibpth"
1237 test -f /shlib/libc.so     && glibpth="/shlib $glibpth"
1238
1239 : Private path used by Configure to find libraries.  Its value
1240 : is prepended to libpth. This variable takes care of special
1241 : machines, like the mips.  Usually, it should be empty.
1242 plibpth=''
1243
1244 : default library list
1245 libswanted=''
1246 : some systems want to use only the non-versioned libso:s
1247 ignore_versioned_solibs=''
1248 : full support for void wanted by default
1249 defvoidused=15
1250
1251 ccname=''
1252 ccversion=''
1253 perllibs=''
1254 : set useposix=false in your hint file to disable the POSIX extension.
1255 useposix=true
1256 : set useopcode=false in your hint file to disable the Opcode extension.
1257 useopcode=true
1258 archname64=''
1259 ccflags_uselargefiles=''
1260 ldflags_uselargefiles=''
1261 libswanted_uselargefiles=''
1262 : set usemultiplicity on the Configure command line to enable multiplicity.
1263 : set usesocks on the Configure command line to enable socks.
1264 archname=''
1265 : set usethreads on the Configure command line to enable threads.
1266 usereentrant='undef'
1267 : List of libraries we want.
1268 : If anyone needs -lnet, put it in a hint file.
1269 libswanted='sfio socket bind inet nsl nm ndbm gdbm dbm db malloc dl'
1270 libswanted="$libswanted dld ld sun m c cposix posix"
1271 libswanted="$libswanted ndir dir crypt sec"
1272 libswanted="$libswanted ucb bsd BSD PW x util rt posix4"
1273 : We probably want to search /usr/shlib before most other libraries.
1274 : This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist.
1275 glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'`
1276 glibpth="/usr/shlib $glibpth"
1277 : Do not use vfork unless overridden by a hint file.
1278 usevfork=false
1279
1280 : Find the basic shell for Bourne shell scripts
1281 case "$sh" in
1282 '')
1283         case "$SYSTYPE" in
1284         *bsd*|sys5*) xxx="/$SYSTYPE/bin/sh";;
1285         *) xxx='/bin/sh';;
1286         esac
1287         if test -f "$xxx"; then
1288                 sh="$xxx"
1289         else
1290                 : Build up a list and do a single loop so we can 'break' out.
1291                 pth=`echo $PATH | sed -e "s/$p_/ /g"`
1292                 for xxx in sh bash ksh pdksh ash; do
1293                         for p in $pth; do
1294                                 try="$try ${p}/${xxx}"
1295                         done
1296                 done
1297                 for xxx in $try; do
1298                         if test -f "$xxx"; then
1299                                 sh="$xxx";
1300                                 break
1301                         elif test "X$_exe" != X -a -f "$xxx$_exe"; then
1302                                 sh="$xxx";
1303                                 break
1304                         elif test -f "$xxx.exe"; then
1305                                 sh="$xxx";
1306                                 break
1307                         fi
1308                 done
1309         fi
1310         ;;
1311 esac
1312
1313 case "$sh" in
1314 '')     cat >&2 <<EOM
1315 $me:  Fatal Error:  I can't find a Bourne Shell anywhere.  
1316
1317 Usually it's in /bin/sh.  How did you even get this far?
1318 Please contact me (Perl Maintainers) at perlbug@perl.org and 
1319 we'll try to straighten this all out.
1320 EOM
1321         exit 1
1322         ;;
1323 esac
1324
1325 : see if sh knows # comments
1326 if `$sh -c '#' >/dev/null 2>&1`; then
1327         shsharp=true
1328         spitshell=cat
1329         xcat=/bin/cat
1330         test -f $xcat$_exe || xcat=/usr/bin/cat
1331         if test ! -f $xcat$_exe; then
1332                 for p in `echo $PATH | sed -e "s/$p_/ /g"` $paths; do
1333                         if test -f $p/cat$_exe; then
1334                                 xcat=$p/cat
1335                                 break
1336                         fi
1337                 done
1338                 if test ! -f $xcat$_exe; then
1339                         echo "Can't find cat anywhere!"
1340                         exit 1
1341                 fi
1342         fi
1343         echo "#!$xcat" >sharp
1344         $eunicefix sharp
1345         chmod +x sharp
1346         ./sharp > today
1347         if test -s today; then
1348                 sharpbang='#!'
1349         else
1350                 echo "#! $xcat" > sharp
1351                 $eunicefix sharp
1352                 chmod +x sharp
1353                 ./sharp > today
1354                 if test -s today; then
1355                         sharpbang='#! '
1356                 else
1357                         sharpbang=': use '
1358                 fi
1359         fi
1360 else
1361         echo " "
1362         echo "Your $sh doesn't grok # comments--I will strip them later on."
1363         shsharp=false
1364         cd ..
1365         echo "exec grep -v '^[  ]*#'" >spitshell
1366         chmod +x spitshell
1367         $eunicefix spitshell
1368         spitshell=`pwd`/spitshell
1369         cd UU
1370         echo "I presume that if # doesn't work, #! won't work either!"
1371         sharpbang=': use '
1372 fi
1373 rm -f sharp today
1374
1375 : figure out how to guarantee sh startup
1376 case "$startsh" in
1377 '') startsh=${sharpbang}${sh} ;;
1378 *)
1379 esac
1380 cat >sharp <<EOSS
1381 $startsh
1382 set abc
1383 test "$?abc" != 1
1384 EOSS
1385
1386 chmod +x sharp
1387 $eunicefix sharp
1388 if ./sharp; then
1389         : echo "Yup, it does."
1390 else
1391         echo "Hmm... '$startsh' does not guarantee sh startup..."
1392         echo "You may have to fix up the shell scripts to make sure $sh runs them."
1393 fi
1394 rm -f sharp
1395
1396
1397 : Save command line options in file UU/cmdline.opt for later use in
1398 : generating config.sh.
1399 cat > cmdline.opt <<EOSH
1400 # Configure command line arguments.
1401 config_arg0='$0'
1402 config_args='$*'
1403 config_argc=$#
1404 EOSH
1405 argn=1
1406 args_exp=''
1407 args_sep=''
1408 for arg in "$@"; do
1409         cat >>cmdline.opt <<EOSH
1410 config_arg$argn='$arg'
1411 EOSH
1412         # Extreme backslashitis: replace each ' by '"'"'
1413         cat <<EOC | sed -e "s/'/'"'"'"'"'"'"'/g" > cmdl.opt
1414 $arg
1415 EOC
1416         arg_exp=`cat cmdl.opt`
1417         args_exp="$args_exp$args_sep'$arg_exp'"
1418         argn=`expr $argn + 1`
1419         args_sep=' '
1420 done
1421 # args_exp is good for restarting self: eval "set X $args_exp"; shift; $0 "$@"
1422 # used by ./hints/os2.sh
1423 rm -f cmdl.opt
1424
1425 : produce awk script to parse command line options
1426 cat >options.awk <<'EOF'
1427 BEGIN {
1428         optstr = "A:dD:eEf:hKOrsSU:V";  # getopt-style specification
1429
1430         len = length(optstr);
1431         for (i = 1; i <= len; i++) {
1432                 c = substr(optstr, i, 1);
1433                 if (i < len) a = substr(optstr, i + 1, 1); else a = "";
1434                 if (a == ":") {
1435                         arg[c] = 1;
1436                         i++;
1437                 }
1438                 opt[c] = 1;
1439         }
1440 }
1441 {
1442         expect = 0;
1443         str = $0;
1444         if (substr(str, 1, 1) != "-") {
1445                 printf("'%s'\n", str);
1446                 next;
1447         }
1448         len = length($0);
1449         for (i = 2; i <= len; i++) {
1450                 c = substr(str, i, 1);
1451                 if (!opt[c]) {
1452                         printf("-%s\n", substr(str, i));
1453                         next;
1454                 }
1455                 printf("-%s\n", c);
1456                 if (arg[c]) {
1457                         if (i < len)
1458                                 printf("'%s'\n", substr(str, i + 1));
1459                         else
1460                                 expect = 1;
1461                         next;
1462                 }
1463         }
1464 }
1465 END {
1466         if (expect)
1467                 print "?";
1468 }
1469 EOF
1470
1471 : process the command line options
1472 set X `for arg in "$@"; do echo "X$arg"; done |
1473         sed -e s/X// | awk -f options.awk`
1474 eval "set $*"
1475 shift
1476 rm -f options.awk
1477
1478 : set up default values
1479 fastread=''
1480 reuseval=false
1481 config_sh=''
1482 alldone=''
1483 error=''
1484 silent=''
1485 extractsh=''
1486 override=''
1487 knowitall=''
1488 rm -f optdef.sh posthint.sh
1489 cat >optdef.sh <<EOS
1490 $startsh
1491 EOS
1492
1493
1494 : option parsing
1495 while test $# -gt 0; do
1496         case "$1" in
1497         -d) shift; fastread=yes;;
1498         -e) shift; alldone=cont;;
1499         -f)
1500                 shift
1501                 cd ..
1502                 if test -r "$1"; then
1503                         config_sh="$1"
1504                 else
1505                         echo "$me: cannot read config file $1." >&2
1506                         error=true
1507                 fi
1508                 cd UU
1509                 shift;;
1510         -h) shift; error=true;;
1511         -r) shift; reuseval=true;;
1512         -s) shift; silent=true; realsilent=true;;
1513         -E) shift; alldone=exit;;
1514         -K) shift; knowitall=true;;
1515         -O) shift; override=true;;
1516         -S) shift; silent=true; extractsh=true;;
1517         -D)
1518                 shift
1519                 case "$1" in
1520                 *=)
1521                         echo "$me: use '-U symbol=', not '-D symbol='." >&2
1522                         echo "$me: ignoring -D $1" >&2
1523                         ;;
1524                 *=*) echo "$1" | \
1525                                 sed -e "s/'/'\"'\"'/g" -e "s/=\(.*\)/='\1'/" >> optdef.sh;;
1526                 *) echo "$1='define'" >> optdef.sh;;
1527                 esac
1528                 shift
1529                 ;;
1530         -U)
1531                 shift
1532                 case "$1" in
1533                 *=) echo "$1" >> optdef.sh;;
1534                 *=*)
1535                         echo "$me: use '-D symbol=val', not '-U symbol=val'." >&2
1536                         echo "$me: ignoring -U $1" >&2
1537                         ;;
1538                 *) echo "$1='undef'" >> optdef.sh;;
1539                 esac
1540                 shift
1541                 ;;
1542         -A)
1543             shift
1544             xxx=''
1545             yyy="$1"
1546             zzz=''
1547             uuu=undef
1548             case "$yyy" in
1549             *=*) zzz=`echo "$yyy"|sed 's!=.*!!'`
1550                  case "$zzz" in
1551                  *:*) zzz='' ;;
1552                  *)   xxx=append
1553                       zzz=" "`echo "$yyy"|sed 's!^[^=]*=!!'` 
1554                       yyy=`echo "$yyy"|sed 's!=.*!!'` ;;
1555                  esac
1556                  ;;
1557             esac
1558             case "$xxx" in
1559             '')  case "$yyy" in
1560                  *:*) xxx=`echo "$yyy"|sed 's!:.*!!'`
1561                       yyy=`echo "$yyy"|sed 's!^[^:]*:!!'`
1562                       zzz=`echo "$yyy"|sed 's!^[^=]*=!!'`
1563                       yyy=`echo "$yyy"|sed 's!=.*!!'` ;;
1564                  *)   xxx=`echo "$yyy"|sed 's!:.*!!'`
1565                       yyy=`echo "$yyy"|sed 's!^[^:]*:!!'` ;;
1566                  esac
1567                  ;;       
1568             esac
1569             case "$xxx" in
1570             append)
1571                 echo "$yyy=\"\${$yyy}$zzz\""    >> posthint.sh ;;
1572             clear)
1573                 echo "$yyy=''"                  >> posthint.sh ;;
1574             define)
1575                 case "$zzz" in
1576                 '') zzz=define ;;
1577                 esac
1578                 echo "$yyy='$zzz'"              >> posthint.sh ;;
1579             eval)
1580                 echo "eval \"$yyy=$zzz\""       >> posthint.sh ;;
1581             prepend)
1582                 echo "$yyy=\"$zzz\${$yyy}\""    >> posthint.sh ;;
1583             undef)
1584                 case "$zzz" in
1585                 '') zzz="$uuu" ;;
1586                 esac
1587                 echo "$yyy=$zzz"                >> posthint.sh ;;
1588             *)  echo "$me: unknown -A command '$xxx', ignoring -A $1" >&2 ;;
1589             esac
1590             shift
1591             ;;
1592         -V) echo "$me generated by metaconfig 3.0 PL70." >&2
1593             exit 0;;
1594         --) break;;
1595         -*) echo "$me: unknown option $1" >&2; shift; error=true;;
1596         *) break;;
1597         esac
1598 done
1599
1600 case "$error" in
1601 true)
1602         cat >&2 <<EOM
1603 Usage: $me [-dehrsEKOSV] [-f config.sh] [-D symbol] [-D symbol=value]
1604                  [-U symbol] [-U symbol=] [-A command:symbol...]
1605   -d : use defaults for all answers.
1606   -e : go on without questioning past the production of config.sh.
1607   -f : specify an alternate default configuration file.
1608   -h : print this help message and exit (with an error status).
1609   -r : reuse C symbols value if possible (skips costly nm extraction).
1610   -s : silent mode, only echoes questions and essential information.
1611   -D : define symbol to have some value:
1612          -D symbol         symbol gets the value 'define'
1613          -D symbol=value   symbol gets the value 'value'
1614   -E : stop at the end of questions, after having produced config.sh.
1615   -K : do not use unless you know what you are doing.
1616   -O : let -D and -U override definitions from loaded configuration file.
1617   -S : perform variable substitutions on all .SH files (can mix with -f)
1618   -U : undefine symbol:
1619          -U symbol    symbol gets the value 'undef'
1620          -U symbol=   symbol gets completely empty
1621   -A : manipulate symbol after the platform specific hints have been applied:
1622          -A symbol=value                append " "value to symbol
1623          -A append:symbol=value         append value to symbol
1624          -A define:symbol=value         define symbol to have value
1625          -A clear:symbol                define symbol to be ''
1626          -A define:symbol               define symbol to be 'define'
1627          -A eval:symbol=value           define symbol to be eval of value
1628          -A prepend:symbol=value        prepend value to symbol
1629          -A undef:symbol                define symbol to be 'undef'
1630          -A undef:symbol=               define symbol to be ''
1631   -V : print version number and exit (with a zero status).
1632 EOM
1633         exit 1
1634         ;;
1635 esac
1636
1637 : Sanity checks
1638 case "$fastread$alldone" in
1639 yescont|yesexit) ;;
1640 *)
1641         case "$extractsh" in
1642         true) ;;
1643         *)
1644                 if test ! -t 0; then
1645                         echo "Say 'sh Configure', not 'sh <Configure'"
1646                         exit 1
1647                 fi
1648                 ;;
1649         esac
1650         ;;
1651 esac
1652
1653 exec 4>&1
1654 case "$silent" in
1655 true) exec 1>/dev/null;;
1656 esac
1657
1658 : run the defines and the undefines, if any, but leave the file out there...
1659 touch optdef.sh
1660 . ./optdef.sh
1661 : create the posthint manipulation script and leave the file out there...
1662 touch posthint.sh
1663
1664 : set package name
1665 package=perl5
1666 first=`echo $package | sed -e 's/^\(.\).*/\1/'`
1667 last=`echo $package | sed -e 's/^.\(.*\)/\1/'`
1668 case "`echo AbyZ | tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
1669 ABYZ) spackage=`echo $first | tr '[:lower:]' '[:upper:]'`$last;;
1670 *) spackage=`echo $first | tr '[a-z]' '[A-Z]'`$last;;
1671 esac
1672
1673 : Some greps do not return status, grrr.
1674 echo "grimblepritz" >grimble
1675 if grep blurfldyick grimble >/dev/null 2>&1 ; then
1676         contains=contains
1677 elif grep grimblepritz grimble >/dev/null 2>&1 ; then
1678         contains=grep
1679 else
1680         contains=contains
1681 fi
1682 rm -f grimble
1683 : the following should work in any shell
1684 case "$contains" in
1685 contains*)
1686         echo " "
1687         echo "AGH!  Grep doesn't return a status.  Attempting remedial action."
1688         cat >contains <<'EOSS'
1689 grep "$1" "$2" >.greptmp && cat .greptmp && test -s .greptmp
1690 EOSS
1691 chmod +x contains
1692 esac
1693
1694 : Find the path to the source tree
1695 case "$src" in
1696 '') case "$0" in
1697     */*) src=`echo $0 | sed -e 's%/[^/][^/]*$%%'`
1698          case "$src" in
1699          /*)    ;;
1700          .)     ;;
1701          *)     src=`cd ../$src && pwd` ;;
1702          esac
1703          ;;
1704     *)   src='.';;
1705     esac;;
1706 esac
1707 case "$src" in
1708 '')     src=/
1709         rsrc=/
1710         ;;
1711 /*) rsrc="$src";;
1712 *) rsrc="../$src";;
1713 esac
1714 if test -f $rsrc/Configure && \
1715         $contains "^package=$package$" $rsrc/Configure >/dev/null 2>&1
1716 then
1717    : found it, so we are ok.
1718 else
1719         rsrc=''
1720         for src in . .. ../.. ../../.. ../../../..; do
1721                 if test -f ../$src/Configure && \
1722                         $contains "^package=$package$" ../$src/Configure >/dev/null 2>&1
1723                 then
1724                         rsrc=../$src
1725                         break
1726                 fi
1727         done
1728 fi
1729 case "$rsrc" in
1730 '')
1731         cat <<EOM >&4
1732
1733 Sorry, I can't seem to locate the source dir for $package.  Please start
1734 Configure with an explicit path -- i.e. /some/path/Configure.
1735
1736 EOM
1737         exit 1
1738         ;;
1739 ../.)   rsrc='..';;
1740 *)
1741         echo " "
1742         echo "Sources for $package found in \"$src\"." >&4
1743         ;;
1744 esac
1745
1746 : script used to extract .SH files with variable substitutions
1747 cat >extract <<'EOS'
1748 PERL_CONFIG_SH=true
1749 echo "Doing variable substitutions on .SH files..."
1750 if test -f MANIFEST; then
1751         set x `awk '{print $1}' < MANIFEST | grep '\.SH$'`
1752 else
1753         echo "(Looking for .SH files under the source directory.)"
1754         set x `(cd "$src"; find . -name "*.SH" -print)`
1755 fi
1756 shift
1757 case $# in
1758 0) set x `(cd "$src"; echo *.SH)`; shift;;
1759 esac
1760 if test ! -f "$src/$1"; then
1761         shift
1762 fi
1763 mkdir_p='
1764 name=$1;
1765 create="";
1766 while test $name; do
1767         if test ! -d "$name"; then
1768                 create="$name $create";
1769                 name=`echo $name | sed -e "s|^[^/]*$||"`;
1770                 name=`echo $name | sed -e "s|\(.*\)/.*|\1|"`;
1771         else
1772                 name="";
1773         fi;
1774 done;
1775 for file in $create; do
1776         mkdir $file;
1777 done
1778 '
1779 for file in $*; do
1780         case "$src" in
1781         ".")
1782                 case "$file" in
1783                 */*)
1784                         dir=`expr X$file : 'X\(.*\)/'`
1785                         file=`expr X$file : 'X.*/\(.*\)'`
1786                         (cd "$dir" && . ./$file)
1787                         ;;
1788                 *)
1789                         . ./$file
1790                         ;;
1791                 esac
1792                 ;;
1793         *)
1794                 case "$file" in
1795                 */*)
1796                         dir=`expr X$file : 'X\(.*\)/'`
1797                         file=`expr X$file : 'X.*/\(.*\)'`
1798                         (set x $dir; shift; eval $mkdir_p)
1799                         sh <"$src/$dir/$file"
1800                         ;;
1801                 *)
1802                         sh <"$src/$file"
1803                         ;;
1804                 esac
1805                 ;;
1806         esac
1807 done
1808 if test -f "$src/config_h.SH"; then
1809         if test ! -f config.h; then
1810         : oops, they left it out of MANIFEST, probably, so do it anyway.
1811         . "$src/config_h.SH"
1812         fi
1813 fi
1814 EOS
1815
1816 : extract files and exit if asked to do so
1817 case "$extractsh" in
1818 true)
1819         case "$realsilent" in
1820         true) ;;
1821         *) exec 1>&4;;
1822         esac
1823         case "$config_sh" in
1824         '') config_sh='config.sh';;
1825         esac
1826         echo " "
1827         echo "Fetching answers from $config_sh..."
1828         cd ..
1829         . $config_sh
1830         test "$override" && . ./optdef.sh
1831         echo " "
1832         . UU/extract
1833         rm -rf UU
1834         echo "Extraction done."
1835         exit 0
1836         ;;
1837 esac
1838
1839 : Eunice requires " " instead of "", can you believe it
1840 echo " "
1841 : Here we go...
1842 echo "Beginning of configuration questions for $package."
1843
1844 trap 'echo " "; test -d ../UU && rm -rf X $rmlist; exit 1' 1 2 3 15
1845
1846 : first determine how to suppress newline on echo command
1847 echo " "
1848 echo "Checking echo to see how to suppress newlines..."
1849 (echo "hi there\c" ; echo " ") >.echotmp
1850 if $contains c .echotmp >/dev/null 2>&1 ; then
1851         echo "...using -n."
1852         n='-n'
1853         c=''
1854 else
1855         cat <<'EOM'
1856 ...using \c
1857 EOM
1858         n=''
1859         c='\c'
1860 fi
1861 echo $n "The star should be here-->$c"
1862 echo '*'
1863 rm -f .echotmp
1864
1865 : Now test for existence of everything in MANIFEST
1866 echo " "
1867 if test -f "$rsrc/MANIFEST"; then
1868         echo "First let's make sure your kit is complete.  Checking..." >&4
1869         awk '$1 !~ /PACK[A-Z]+/ {print $1}' "$rsrc/MANIFEST" | (split -l 50 2>/dev/null || split -50)
1870         rm -f missing
1871         tmppwd=`pwd`
1872         for filelist in x??; do
1873                 (cd "$rsrc"; ls `cat "$tmppwd/$filelist"` >/dev/null 2>>"$tmppwd/missing")
1874         done
1875         if test -s missing; then
1876                 cat missing >&4
1877                 cat >&4 <<'EOM'
1878
1879 THIS PACKAGE SEEMS TO BE INCOMPLETE.
1880
1881 You have the option of continuing the configuration process, despite the
1882 distinct possibility that your kit is damaged, by typing 'y'es.  If you
1883 do, don't blame me if something goes wrong.  I advise you to type 'n'o
1884 and contact the author (perlbug@perl.org).
1885
1886 EOM
1887                 echo $n "Continue? [n] $c" >&4
1888                 read ans
1889                 case "$ans" in
1890                 y*)
1891                         echo "Continuing..." >&4
1892                         rm -f missing
1893                         ;;
1894                 *)
1895                         echo "ABORTING..." >&4
1896                         kill $$
1897                         ;;
1898                 esac
1899         else
1900                 echo "Looks good..."
1901         fi
1902 else
1903         echo "There is no MANIFEST file.  I hope your kit is complete !"
1904 fi
1905 rm -f missing x??
1906
1907 echo " "
1908 : Find the appropriate value for a newline for tr
1909 if test -n "$DJGPP"; then
1910        trnl='\012'
1911 fi
1912 if test X"$trnl" = X; then
1913         case "`echo foo|tr '\n' x 2>/dev/null`" in
1914         foox) trnl='\n' ;;
1915         esac
1916 fi
1917 if test X"$trnl" = X; then
1918         case "`echo foo|tr '\012' x 2>/dev/null`" in
1919         foox) trnl='\012' ;;
1920         esac
1921 fi
1922 if test X"$trnl" = X; then
1923        case "`echo foo|tr '\r\n' xy 2>/dev/null`" in
1924        fooxy) trnl='\n\r' ;;
1925        esac
1926 fi
1927 if test X"$trnl" = X; then
1928         cat <<EOM >&2
1929
1930 $me: Fatal Error: cannot figure out how to translate newlines with 'tr'.
1931
1932 EOM
1933         exit 1
1934 fi
1935
1936 : compute the number of columns on the terminal for proper question formatting
1937 case "$COLUMNS" in
1938 '') COLUMNS='80';;
1939 esac
1940
1941 : set up the echo used in my read
1942 myecho="case \"\$xxxm\" in
1943 '') echo $n \"\$rp $c\" >&4;;
1944 *) case \"\$rp\" in
1945         '') echo $n \"[\$xxxm] $c\";;
1946         *)
1947                 if test \`echo \"\$rp [\$xxxm]  \" | wc -c\` -ge $COLUMNS; then
1948                         echo \"\$rp\" >&4
1949                         echo $n \"[\$xxxm] $c\" >&4
1950                 else
1951                         echo $n \"\$rp [\$xxxm] $c\" >&4
1952                 fi
1953                 ;;
1954         esac;;
1955 esac"
1956
1957 : now set up to do reads with possible shell escape and default assignment
1958 cat <<EOSC >myread
1959 $startsh
1960 xxxm=\$dflt
1961 $myecho
1962 ans='!'
1963 case "\$fastread" in
1964 yes) case "\$dflt" in
1965         '') ;;
1966         *) ans='';
1967                 case "\$silent-\$rp" in
1968                 true-) ;;
1969                 *) echo " " >&4;;
1970                 esac;;
1971         esac;;
1972 *) case "\$silent" in
1973         true) case "\$rp" in
1974                 '') ans='';;
1975                 esac;;
1976         esac;;
1977 esac
1978 while expr "X\$ans" : "X!" >/dev/null; do
1979         read answ
1980         set x \$xxxm
1981         shift
1982         aok=''; eval "ans=\\"\$answ\\"" && aok=y
1983         case  "\$answ" in
1984         "!")
1985                 sh 1>&4
1986                 echo " "
1987                 $myecho
1988                 ;;
1989         !*)
1990                 set x \`expr "X\$ans" : "X!\(.*\)\$"\`
1991                 shift
1992                 sh 1>&4 -c "\$*"
1993                 echo " "
1994                 $myecho
1995                 ;;
1996         "\$ans")
1997                 case "\$ans" in
1998                 \\&*)
1999                         set x \`expr "X\$ans" : "X&\(.*\)\$"\`
2000                         shift
2001                         case "\$1" in
2002                         -d)
2003                                 fastread=yes
2004                                 echo "(OK, I'll run with -d after this question.)" >&4
2005                                 ;;
2006                         -*)
2007                                 echo "*** Sorry, \$1 not supported yet." >&4
2008                                 ;;
2009                         esac
2010                         $myecho
2011                         ans=!
2012                         ;;
2013                 esac;;
2014         *)
2015                 case "\$aok" in
2016                 y)
2017                         echo "*** Substitution done -- please confirm."
2018                         xxxm="\$ans"
2019                         ans=\`echo $n "\$ans$c" | tr '$trnl' ' '\`
2020                         xxxm="\$ans"
2021                         ans=!
2022                         ;;
2023                 *)
2024                         echo "*** Error -- try again."
2025                         ans=!
2026                         ;;
2027                 esac
2028                 $myecho
2029                 ;;
2030         esac
2031         case "\$ans\$xxxm\$nostick" in
2032         '')
2033                 ans=!
2034                 $myecho
2035                 ;;
2036         esac
2037 done
2038 case "\$ans" in
2039 '') ans="\$xxxm";;
2040 esac
2041 EOSC
2042
2043 : create .config dir to save info across Configure sessions
2044 test -d ../.config || mkdir ../.config
2045 cat >../.config/README <<EOF
2046 This directory created by Configure to save information that should
2047 persist across sessions for $package.
2048
2049 You may safely delete it if you wish.
2050 EOF
2051
2052 xversion=`awk '/define[         ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
2053 case "$usedevel" in
2054 $define|true|[yY]*) ;;
2055 *) case "$xversion" in
2056    *[13579])
2057         cat >&4 <<EOH
2058 *** WHOA THERE!!! ***
2059
2060     This is an UNSTABLE DEVELOPMENT release.
2061     The version of this $package distribution is $xversion, that is, odd,
2062     (as opposed to even) and that signifies a development release.
2063     If you want a maintenance release, you want an even-numbered version.
2064
2065     Do ***NOT*** install this into production use.
2066     Data corruption and crashes are possible.
2067
2068     It is most seriously suggested that you do not continue any further
2069     unless you want to help in developing and debugging Perl.
2070
2071     If you *still* want to build perl, you can answer 'y' now,
2072     or pass -Dusedevel to Configure.
2073
2074 EOH
2075         rp='Do you really want to continue?'
2076         dflt='n'
2077         . ./myread
2078         case "$ans" in
2079         [yY]) echo >&4 "Okay, continuing."
2080               usedevel="$define" ;;
2081         *) echo >&4 "Okay, bye."
2082            exit 1
2083            ;;
2084         esac
2085         ;;
2086     esac
2087     ;;
2088 esac
2089 case "$usedevel" in
2090 $define|true|[yY]*)
2091         case "$versiononly" in
2092         '') versiononly="$define" ;;
2093         esac
2094         case "$installusrbinperl" in
2095         '') installusrbinperl="$undef" ;;
2096         esac
2097         ;;
2098 esac
2099
2100 : general instructions
2101 needman=true
2102 firsttime=true
2103 user=`(logname) 2>/dev/null`
2104 case "$user" in
2105 '') user=`whoami 2>&1`;;
2106 esac
2107 if $contains "^$user\$" ../.config/instruct >/dev/null 2>&1; then
2108         firsttime=false
2109         echo " "
2110         rp='Would you like to see the instructions?'
2111         dflt=n
2112         . ./myread
2113         case "$ans" in
2114         [yY]*) ;;
2115         *) needman=false;;
2116         esac
2117 fi
2118 if $needman; then
2119         cat <<EOH
2120
2121 This installation shell script will examine your system and ask you questions
2122 to determine how the perl5 package should be installed. If you get
2123 stuck on a question, you may use a ! shell escape to start a subshell or
2124 execute a command.  Many of the questions will have default answers in square
2125 brackets; typing carriage return will give you the default.
2126
2127 On some of the questions which ask for file or directory names you are allowed
2128 to use the ~name construct to specify the login directory belonging to "name",
2129 even if you don't have a shell which knows about that.  Questions where this is
2130 allowed will be marked "(~name ok)".
2131
2132 EOH
2133         rp=''
2134         dflt='Type carriage return to continue'
2135         . ./myread
2136         cat <<'EOH'
2137
2138 The prompter used in this script allows you to use shell variables and
2139 backticks in your answers.  You may use $1, $2, etc...  to refer to the words
2140 in the default answer, as if the default line was a set of arguments given to a
2141 script shell.  This means you may also use $* to repeat the whole default line,
2142 so you do not have to re-type everything to add something to the default.
2143
2144 Everytime there is a substitution, you will have to confirm.  If there is an
2145 error (e.g. an unmatched backtick), the default answer will remain unchanged
2146 and you will be prompted again.
2147
2148 If you are in a hurry, you may run 'Configure -d'.  This will bypass nearly all
2149 the questions and use the computed defaults (or the previous answers if there
2150 was already a config.sh file). Type 'Configure -h' for a list of options.
2151 You may also start interactively and then answer '& -d' at any prompt to turn
2152 on the non-interactive behaviour for the remainder of the execution.
2153
2154 EOH
2155         . ./myread
2156         cat <<EOH
2157
2158 Much effort has been expended to ensure that this shell script will run on any
2159 Unix system.  If despite that it blows up on yours, your best bet is to edit
2160 Configure and run it again.  If you can't run Configure for some reason,
2161 you'll have to generate a config.sh file by hand.  Whatever problems you
2162 have, let me (perlbug@perl.org) know how I blew it.
2163
2164 This installation script affects things in two ways:
2165
2166 1) it may do direct variable substitutions on some of the files included
2167    in this kit.
2168 2) it builds a config.h file for inclusion in C programs.  You may edit
2169    any of these files as the need arises after running this script.
2170
2171 If you make a mistake on a question, there is no easy way to back up to it
2172 currently.  The easiest thing to do is to edit config.sh and rerun all the SH
2173 files.  Configure will offer to let you do this before it runs the SH files.
2174
2175 EOH
2176         dflt='Type carriage return to continue'
2177         . ./myread
2178         case "$firsttime" in
2179         true) echo $user >>../.config/instruct;;
2180         esac
2181 fi
2182
2183 : find out where common programs are
2184 echo " "
2185 echo "Locating common programs..." >&4
2186 cat <<EOSC >loc
2187 $startsh
2188 case \$# in
2189 0) exit 1;;
2190 esac
2191 thing=\$1
2192 shift
2193 dflt=\$1
2194 shift
2195 for dir in \$*; do
2196         case "\$thing" in
2197         .)
2198         if test -d \$dir/\$thing; then
2199                 echo \$dir
2200                 exit 0
2201         fi
2202         ;;
2203         *)
2204         for thisthing in \$dir/\$thing; do
2205                 : just loop through to pick last item
2206         done
2207         if test -f \$thisthing; then
2208                 echo \$thisthing
2209                 exit 0
2210         elif test "X$_exe" != X -a -f \$thisthing$_exe; then
2211                 echo \$thisthing
2212                 exit 0
2213         elif test -f \$dir/\$thing.exe; then
2214                 if test -n "$DJGPP"; then
2215                         echo \$dir/\$thing.exe
2216                 elif test "$eunicefix" != ":"; then
2217                         : on Eunice apparently
2218                         echo \$dir/\$thing
2219                         exit 0
2220                 fi
2221                 exit 0
2222         fi
2223         ;;
2224         esac
2225 done
2226 echo \$dflt
2227 exit 1
2228 EOSC
2229 chmod +x loc
2230 $eunicefix loc
2231 loclist="
2232 awk
2233 cat
2234 chmod
2235 comm
2236 cp
2237 echo
2238 expr
2239 grep
2240 ls
2241 mkdir
2242 rm
2243 sed
2244 sort
2245 touch
2246 tr
2247 uniq
2248 "
2249 trylist="
2250 Mcc
2251 ar
2252 bison
2253 byacc
2254 cpp
2255 csh
2256 date
2257 egrep
2258 gmake
2259 gzip
2260 less
2261 ln
2262 make
2263 more
2264 nm
2265 nroff
2266 pg
2267 test
2268 uname
2269 zip
2270 "
2271 pth=`echo $PATH | sed -e "s/$p_/ /g"`
2272 pth="$pth /lib /usr/lib"
2273 for file in $loclist; do
2274         eval xxx=\$$file
2275         case "$xxx" in
2276         /*|?:[\\/]*)
2277                 if test -f "$xxx"; then
2278                         : ok
2279                 else
2280                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
2281                         xxx=`./loc $file $file $pth`
2282                 fi
2283                 ;;
2284         '') xxx=`./loc $file $file $pth`;;
2285         *) xxx=`./loc $xxx $xxx $pth`;;
2286         esac
2287         eval $file=$xxx$_exe
2288         eval _$file=$xxx
2289         case "$xxx" in
2290         /*)
2291                 echo $file is in $xxx.
2292                 ;;
2293         ?:[\\/]*)
2294                 echo $file is in $xxx.
2295                 ;;
2296         *)
2297                 echo "I don't know where '$file' is, and my life depends on it." >&4
2298                 echo "Go find a public domain implementation or fix your PATH setting!" >&4
2299                 exit 1
2300                 ;;
2301         esac
2302 done
2303 echo " "
2304 echo "Don't worry if any of the following aren't found..."
2305 say=offhand
2306 for file in $trylist; do
2307         eval xxx=\$$file
2308         case "$xxx" in
2309         /*|?:[\\/]*)
2310                 if test -f "$xxx"; then
2311                         : ok
2312                 else
2313                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
2314                         xxx=`./loc $file $file $pth`
2315                 fi
2316                 ;;
2317         '') xxx=`./loc $file $file $pth`;;
2318         *) xxx=`./loc $xxx $xxx $pth`;;
2319         esac
2320         eval $file=$xxx$_exe
2321         eval _$file=$xxx
2322         case "$xxx" in
2323         /*)
2324                 echo $file is in $xxx.
2325                 ;;
2326         ?:[\\/]*)
2327                 echo $file is in $xxx.
2328                 ;;
2329         *)
2330                 echo "I don't see $file out there, $say."
2331                 say=either
2332                 ;;
2333         esac
2334 done
2335 case "$egrep" in
2336 egrep)
2337         echo "Substituting grep for egrep."
2338         egrep=$grep
2339         _egrep=$grep
2340         ;;
2341 esac
2342 case "$ln" in
2343 ln)
2344         echo "Substituting cp for ln."
2345         ln=$cp
2346         _ln=$cp
2347         ;;
2348 esac
2349 case "$make" in
2350 make)   
2351         case "$gmake" in
2352         gmake)
2353         echo "I can't find make or gmake, and my life depends on it." >&4
2354         echo "Go find a public domain implementation or fix your PATH setting!" >&4
2355         exit 1
2356         ;;
2357         esac
2358         ;;
2359 esac    
2360 case "$gmake" in
2361 gmake)  ;;
2362 *)      # We can't have osname yet.
2363         if test -f "/system/gnu_library/bin/ar.pm"; then # Stratus VOS
2364                 # Assume that gmake, if found, is definitely GNU make
2365                 # and prefer it over the system make.
2366                 echo "Substituting gmake for make."
2367                 make=$gmake
2368                 _make=$gmake
2369         fi
2370         ;;
2371 esac
2372 case "$test" in
2373 test)
2374         echo "Hopefully test is built into your sh."
2375         ;;
2376 *)
2377         if `sh -c "PATH= test true" >/dev/null 2>&1`; then
2378                 echo "Using the test built into your sh."
2379                 test=test
2380                 _test=test
2381         fi
2382         ;;
2383 esac
2384 case "$echo" in
2385 echo)
2386         echo "Hopefully echo is built into your sh."
2387         ;;
2388 '') ;;
2389 *)
2390         echo " "
2391 echo "Checking compatibility between $echo and builtin echo (if any)..." >&4
2392         $echo $n "hi there$c" >foo1
2393         echo $n "hi there$c" >foo2
2394         if cmp foo1 foo2 >/dev/null 2>&1; then
2395                 echo "They are compatible.  In fact, they may be identical."
2396         else
2397                 case "$n" in
2398                 '-n') n='' c='\c';;
2399                 *) n='-n' c='';;
2400                 esac
2401                 cat <<FOO
2402 They are not compatible!  You are probably running ksh on a non-USG system.
2403 I'll have to use $echo instead of the builtin, since Bourne shell doesn't
2404 have echo built in and we may have to run some Bourne shell scripts.  That
2405 means I'll have to use '$n$c' to suppress newlines now.  Life is ridiculous.
2406
2407 FOO
2408                 $echo $n "The star should be here-->$c"
2409                 $echo "*"
2410         fi
2411         $rm -f foo1 foo2
2412         ;;
2413 esac
2414
2415 cat <<EOS >trygcc
2416 $startsh
2417 EOS
2418 cat <<'EOSC' >>trygcc
2419 case "$cc" in
2420 '') ;;
2421 *)  $rm -f try try.*
2422     $cat >try.c <<EOM
2423 int main(int argc, char *argv[]) {
2424   return 0;
2425 }
2426 EOM
2427     if $cc -o try $ccflags $ldflags try.c; then
2428        :
2429     else
2430         echo "Uh-oh, the C compiler '$cc' doesn't seem to be working." >&4
2431         despair=yes
2432         trygcc=yes
2433         case "$cc" in
2434         *gcc*) trygcc=no ;;
2435         esac
2436         case "`$cc -v -c try.c 2>&1`" in
2437         *gcc*) trygcc=no ;;
2438         esac
2439         if $test X"$trygcc" = Xyes; then
2440             if gcc -o try -c try.c; then
2441                 echo " "
2442                 echo "You seem to have a working gcc, though." >&4
2443                 rp="Would you like to use it?"
2444                 dflt=y
2445                 if $test -f myread; then
2446                     . ./myread
2447                 else
2448                     if $test -f UU/myread; then
2449                         . ./UU/myread
2450                     else
2451                         echo "Cannot find myread, sorry.  Aborting." >&2
2452                         exit 1
2453                     fi
2454                 fi  
2455                 case "$ans" in
2456                 [yY]*) cc=gcc; ccname=gcc; ccflags=''; despair=no;
2457                        if $test -f usethreads.cbu; then
2458                            $cat >&4 <<EOM 
2459
2460 *** However, any setting of the C compiler flags (e.g. for thread support)
2461 *** has been lost.  It may be necessary to pass -Dcc=gcc to Configure
2462 *** (together with e.g. -Dusethreads).
2463
2464 EOM
2465                        fi;;
2466                 esac
2467             fi
2468         fi
2469     fi
2470     $rm -f try try.*
2471     ;;
2472 esac
2473 EOSC
2474
2475 cat <<EOS >checkcc
2476 $startsh
2477 EOS
2478 cat <<'EOSC' >>checkcc
2479 case "$cc" in        
2480 '') ;;
2481 *)  $rm -f try try.*              
2482     $cat >try.c <<EOM
2483 int main(int argc, char *argv[]) {
2484   return 0;
2485 }
2486 EOM
2487     if $cc -o try $ccflags $ldflags try.c; then
2488        :
2489     else
2490         if $test X"$despair" = Xyes; then
2491            echo "Uh-oh, the C compiler '$cc' doesn't seem to be working." >&4
2492         fi
2493         $cat >&4 <<EOM         
2494 You need to find a working C compiler.
2495 Either (purchase and) install the C compiler supplied by your OS vendor,
2496 or for a free C compiler try http://gcc.gnu.org/
2497 I cannot continue any further, aborting.
2498 EOM
2499         exit 1
2500     fi
2501     $rm -f try try.*
2502     ;;
2503 esac
2504 EOSC
2505
2506 : determine whether symbolic links are supported
2507 echo " "
2508 $touch blurfl
2509 if $ln -s blurfl sym > /dev/null 2>&1 ; then
2510         echo "Symbolic links are supported." >&4
2511         lns="$ln -s"
2512 else
2513         echo "Symbolic links are NOT supported." >&4
2514         lns="$ln"
2515 fi
2516 $rm -f blurfl sym
2517
2518 : determine whether symbolic links are supported
2519 echo " "
2520 case "$lns" in
2521 *"ln"*" -s")
2522         echo "Checking how to test for symbolic links..." >&4
2523         $lns blurfl sym
2524         if $test "X$issymlink" = X; then
2525                 case "$newsh" in
2526                 '') sh     -c "PATH= test -h sym" >/dev/null 2>&1 ;;
2527                 *)  $newsh -c "PATH= test -h sym" >/dev/null 2>&1 ;;
2528                 esac
2529                 if test $? = 0; then
2530                         issymlink="test -h"
2531                 else
2532                         echo "Your builtin 'test -h' may be broken." >&4
2533                         case "$test" in
2534                         /*)     ;;
2535                         *)      pth=`echo $PATH | sed -e "s/$p_/ /g"`
2536                                 for p in $pth
2537                                 do
2538                                         if test -f "$p/$test"; then
2539                                                 test="$p/$test"
2540                                                 break
2541                                         fi
2542                                 done
2543                                 ;;
2544                         esac
2545                         case "$test" in
2546                         /*)
2547                                 echo "Trying external '$test -h'." >&4
2548                                 issymlink="$test -h"
2549                                 if $test ! -h sym >/dev/null 2>&1; then
2550                                         echo "External '$test -h' is broken, too." >&4
2551                                         issymlink=''
2552                                 fi
2553                                 ;;
2554                         *)      issymlink='' ;;
2555                         esac
2556                 fi              
2557         fi
2558         if $test "X$issymlink" = X; then
2559                 if $test -L sym 2>/dev/null; then
2560                         issymlink="$test -L"
2561                         echo "The builtin '$test -L' worked." >&4
2562                 fi
2563         fi
2564         if $test "X$issymlink" != X; then
2565                 echo "You can test for symbolic links with '$issymlink'." >&4
2566         else
2567                 echo "I do not know how you can test for symbolic links." >&4
2568         fi
2569         $rm -f blurfl sym
2570         ;;
2571 *)      echo "No symbolic links, so not testing for their testing..." >&4
2572         ;;
2573 esac
2574 echo " "
2575
2576
2577 case "$mksymlinks" in
2578 $define|true|[yY]*)
2579         case "$src" in
2580         ''|'.') echo "Cannot create symlinks in the original directory." >&4
2581                 exit 1
2582                 ;;
2583         *)      case "$lns:$issymlink" in
2584                 *"ln"*" -s:"*"test -"?)
2585                         echo "Creating the symbolic links..." >&4
2586                         echo "(First creating the subdirectories...)" >&4
2587                         cd ..
2588                         awk '{print $1}' $src/MANIFEST | grep / | sed 's:/[^/]*$::' | sort -u | while true; do
2589                                 read directory
2590                                 test -z "$directory" && break
2591                                 mkdir -p $directory
2592                         done
2593                         # Sanity check 1.
2594                         if test ! -d t/base; then
2595                                 echo "Failed to create the subdirectories.  Aborting." >&4
2596                                 exit 1
2597                         fi
2598                         echo "(Then creating the symlinks...)" >&4
2599                         awk '{print $1}' $src/MANIFEST | while true; do
2600                                 read filename
2601                                 test -z "$filename" && break
2602                                 if test -f $filename; then
2603                                         if $issymlink $filename; then
2604                                                 rm -f $filename
2605                                         fi
2606                                 fi
2607                                 if test -f $filename; then
2608                                         echo "$filename already exists, not symlinking."
2609                                 else
2610                                         ln -s $src/$filename $filename
2611                                 fi
2612                         done
2613                         # Sanity check 2.
2614                         if test ! -f t/base/lex.t; then
2615                                 echo "Failed to create the symlinks (t/base/lex.t missing).  Aborting." >&4
2616                                 exit 1
2617                         fi
2618                         cd UU
2619                         ;;
2620                 *)      echo "(I cannot figure out how to do symbolic links, ignoring mksymlinks)." >&4
2621                         ;;
2622                 esac
2623                 ;;
2624         esac
2625         ;;
2626 esac
2627
2628
2629 case "$usecrosscompile" in
2630 $define|true|[yY]*)
2631         $echo "Cross-compiling..."
2632         croak=''
2633         case "$cc" in
2634         *-*-gcc) # A cross-compiling gcc, probably.
2635             targetarch=`$echo $cc|$sed 's/-gcc$//'`
2636             ar=$targetarch-ar
2637             # leave out ld, choosing it is more complex
2638             nm=$targetarch-nm
2639             ranlib=$targetarch-ranlib
2640             $echo 'extern int foo;' > try.c
2641             set X `$cc -v -E try.c 2>&1 | $awk '/^#include </,/^End of search /'|$grep '/include'`
2642             shift
2643             if $test $# -gt 0; then
2644                 incpth="$incpth $*"
2645                 incpth="`$echo $incpth|$sed 's/^ //'`"
2646                 echo "Guessing incpth '$incpth'." >&4
2647                 for i in $*; do
2648                     j="`$echo $i|$sed 's,/include$,/lib,'`"
2649                     if $test -d $j; then
2650                         libpth="$libpth $j"
2651                     fi
2652                 done   
2653                 libpth="`$echo $libpth|$sed 's/^ //'`"
2654                 echo "Guessing libpth '$libpth'." >&4
2655             fi
2656             $rm -f try.c
2657             ;;
2658         esac
2659         case "$targetarch" in
2660         '') echo "Targetarch not defined." >&4; croak=y ;;
2661         *)  echo "Using targetarch $targetarch." >&4 ;;
2662         esac
2663         case "$incpth" in
2664         '') echo "Incpth not defined." >&4; croak=y ;;
2665         *)  echo "Using incpth '$incpth'." >&4 ;;
2666         esac
2667         case "$libpth" in
2668         '') echo "Libpth not defined." >&4; croak=y ;;
2669         *)  echo "Using libpth '$libpth'." >&4 ;;
2670         esac
2671         case "$usrinc" in
2672         '') for i in $incpth; do
2673                 if $test -f $i/errno.h -a -f $i/stdio.h -a -f $i/time.h; then
2674                     usrinc=$i
2675                     echo "Guessing usrinc $usrinc." >&4
2676                     break
2677                 fi
2678             done
2679             case "$usrinc" in
2680             '') echo "Usrinc not defined." >&4; croak=y ;;
2681             esac
2682             ;;
2683         *)  echo "Using usrinc $usrinc." >&4 ;;
2684         esac
2685         case "$targethost" in
2686         '') echo "Targethost not defined." >&4; croak=y ;;
2687         *)  echo "Using targethost $targethost." >&4
2688         esac
2689         locincpth=' '
2690         loclibpth=' '
2691         case "$croak" in
2692         y) echo "Cannot continue, aborting." >&4; exit 1 ;;
2693         esac
2694         case "$src" in
2695         /*) run=$src/Cross/run
2696             targetmkdir=$src/Cross/mkdir
2697             to=$src/Cross/to
2698             from=$src/Cross/from
2699             ;;
2700         *)  pwd=`$test -f ../Configure & cd ..; pwd`
2701             run=$pwd/Cross/run
2702             targetmkdir=$pwd/Cross/mkdir
2703             to=$pwd/Cross/to
2704             from=$pwd/Cross/from
2705             ;;
2706         esac
2707         case "$targetrun" in
2708         '') targetrun=ssh ;;
2709         esac
2710         case "$targetto" in
2711         '') targetto=scp ;;
2712         esac
2713         case "$targetfrom" in
2714         '') targetfrom=scp ;;
2715         esac
2716         run=$run-$targetrun
2717         to=$to-$targetto
2718         from=$from-$targetfrom
2719         case "$targetdir" in
2720         '')  targetdir=/tmp
2721              echo "Guessing targetdir $targetdir." >&4
2722              ;;
2723         esac
2724         case "$targetuser" in
2725         '')  targetuser=root
2726              echo "Guessing targetuser $targetuser." >&4
2727              ;;
2728         esac
2729         case "$targetfrom" in
2730         scp)    q=-q ;;
2731         *)      q='' ;;
2732         esac
2733         case "$targetrun" in
2734         ssh|rsh)
2735             cat >$run <<EOF
2736 #!/bin/sh
2737 case "\$1" in
2738 -cwd)
2739   shift
2740   cwd=\$1
2741   shift
2742   ;;
2743 esac
2744 case "\$cwd" in
2745 '') cwd=$targetdir ;;
2746 esac
2747 exe=\$1
2748 shift
2749 if $test ! -f \$exe.xok; then
2750   $to \$exe
2751   $touch \$exe.xok
2752 fi
2753 $targetrun -l $targetuser $targethost "cd \$cwd && ./\$exe \$@"
2754 EOF
2755             ;;
2756         *)  echo "Unknown targetrun '$targetrun'" >&4
2757             exit 1
2758             ;;
2759         esac
2760         case "$targetmkdir" in
2761         */Cross/mkdir)
2762             cat >$targetmkdir <<EOF
2763 #!/bin/sh
2764 $targetrun -l $targetuser $targethost "mkdir -p \$@"
2765 EOF
2766             $chmod a+rx $targetmkdir
2767             ;;
2768         *)  echo "Unknown targetmkdir '$targetmkdir'" >&4
2769             exit 1
2770             ;;
2771         esac
2772         case "$targetto" in
2773         scp|rcp)
2774             cat >$to <<EOF
2775 #!/bin/sh
2776 for f in \$@
2777 do
2778   case "\$f" in
2779   /*)
2780     $targetmkdir \`dirname \$f\`
2781     $targetto $q \$f $targetuser@$targethost:\$f            || exit 1
2782     ;;
2783   *)
2784     $targetmkdir $targetdir/\`dirname \$f\`
2785     $targetto $q \$f $targetuser@$targethost:$targetdir/\$f || exit 1
2786     ;;
2787   esac
2788 done
2789 exit 0
2790 EOF
2791             ;;
2792         cp) cat >$to <<EOF
2793 #!/bin/sh
2794 for f in \$@
2795 do
2796   case "\$f" in
2797   /*)
2798     $mkdir -p $targetdir/\`dirname \$f\`
2799     $cp \$f $targetdir/\$f || exit 1
2800     ;;
2801   *)
2802     $targetmkdir $targetdir/\`dirname \$f\`
2803     $cp \$f $targetdir/\$f || exit 1
2804     ;;
2805   esac
2806 done
2807 exit 0
2808 EOF
2809             ;;
2810         *)  echo "Unknown targetto '$targetto'" >&4
2811             exit 1
2812             ;;
2813         esac
2814         case "$targetfrom" in
2815         scp|rcp)
2816           cat >$from <<EOF
2817 #!/bin/sh
2818 for f in \$@
2819 do
2820   $rm -f \$f
2821   $targetfrom $q $targetuser@$targethost:$targetdir/\$f . || exit 1
2822 done
2823 exit 0
2824 EOF
2825             ;;
2826         cp) cat >$from <<EOF
2827 #!/bin/sh
2828 for f in \$@
2829 do
2830   $rm -f \$f
2831   cp $targetdir/\$f . || exit 1
2832 done
2833 exit 0
2834 EOF
2835             ;;
2836         *)  echo "Unknown targetfrom '$targetfrom'" >&4
2837             exit 1
2838             ;;
2839         esac
2840         if $test ! -f $run; then
2841             echo "Target 'run' script '$run' not found." >&4
2842         else
2843             $chmod a+rx $run
2844         fi
2845         if $test ! -f $to; then
2846             echo "Target 'to' script '$to' not found." >&4
2847         else
2848             $chmod a+rx $to
2849         fi
2850         if $test ! -f $from; then
2851             echo "Target 'from' script '$from' not found." >&4
2852         else
2853             $chmod a+rx $from
2854         fi
2855         if $test ! -f $run -o ! -f $to -o ! -f $from; then
2856             exit 1
2857         fi
2858         cat >&4 <<EOF
2859 Using '$run' for remote execution,
2860 and '$from' and '$to'
2861 for remote file transfer.
2862 EOF
2863         ;;
2864 *)      run=''
2865         to=:
2866         from=:
2867         usecrosscompile='undef'
2868         targetarch=''
2869         ;;
2870 esac
2871
2872 : see whether [:lower:] and [:upper:] are supported character classes
2873 echo " "
2874 case "`echo AbyZ | $tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
2875 ABYZ)
2876         echo "Good, your tr supports [:lower:] and [:upper:] to convert case." >&4
2877         up='[:upper:]'
2878         low='[:lower:]'
2879         ;;
2880 *)      # There is a discontinuity in EBCDIC between 'I' and 'J'
2881         # (0xc9 and 0xd1), therefore that is a nice testing point.
2882         if test "X$up" = X -o "X$low" = X; then
2883             case "`echo IJ | $tr '[I-J]' '[i-j]' 2>/dev/null`" in
2884             ij) up='[A-Z]'
2885                 low='[a-z]'
2886                 ;;
2887             esac
2888         fi
2889         if test "X$up" = X -o "X$low" = X; then
2890             case "`echo IJ | $tr I-J i-j 2>/dev/null`" in
2891             ij) up='A-Z'
2892                 low='a-z'
2893                 ;;
2894             esac
2895         fi
2896         if test "X$up" = X -o "X$low" = X; then
2897             case "`echo IJ | od -x 2>/dev/null`" in
2898             *C9D1*|*c9d1*)
2899                 echo "Hey, this might be EBCDIC." >&4
2900                 if test "X$up" = X -o "X$low" = X; then
2901                     case "`echo IJ | $tr '[A-IJ-RS-Z]' '[a-ij-rs-z]' 2>/dev/null`" in
2902                     ij) up='[A-IJ-RS-Z]'
2903                         low='[a-ij-rs-z]'
2904                         ;;
2905                     esac
2906                 fi
2907                 if test "X$up" = X -o "X$low" = X; then
2908                     case "`echo IJ | $tr A-IJ-RS-Z a-ij-rs-z 2>/dev/null`" in
2909                     ij) up='A-IJ-RS-Z'
2910                         low='a-ij-rs-z'
2911                         ;;
2912                     esac
2913                 fi
2914                 ;;
2915             esac
2916         fi
2917 esac
2918 case "`echo IJ | $tr \"$up\" \"$low\" 2>/dev/null`" in
2919 ij)
2920     echo "Using $up and $low to convert case." >&4
2921     ;;
2922 *)
2923     echo "I don't know how to translate letters from upper to lower case." >&4
2924     echo "Your tr is not acting any way I know of." >&4
2925     exit 1
2926     ;;
2927 esac
2928 : set up the translation script tr, must be called with ./tr of course
2929 cat >tr <<EOSC
2930 $startsh
2931 case "\$1\$2" in
2932 '[A-Z][a-z]') exec $tr '$up' '$low';;
2933 '[a-z][A-Z]') exec $tr '$low' '$up';;
2934 esac
2935 exec $tr "\$@"
2936 EOSC
2937 chmod +x tr
2938 $eunicefix tr
2939
2940 : Try to determine whether config.sh was made on this system
2941 case "$config_sh" in
2942 '')
2943 myuname=`$uname -a 2>/dev/null`
2944 $test -z "$myuname" && myuname=`hostname 2>/dev/null`
2945 # tr '[A-Z]' '[a-z]' would not work in EBCDIC
2946 # because the A-Z/a-z are not consecutive.
2947 myuname=`echo $myuname | $sed -e 's/^[^=]*=//' -e 's/\///g' | \
2948         ./tr '[A-Z]' '[a-z]' | $tr $trnl ' '`
2949 newmyuname="$myuname"
2950 dflt=n
2951 case "$knowitall" in
2952 '')
2953         if test -f ../config.sh; then
2954                 if $contains myuname= ../config.sh >/dev/null 2>&1; then
2955                         eval "`grep myuname= ../config.sh`"
2956                 fi
2957                 if test "X$myuname" = "X$newmyuname"; then
2958                         dflt=y
2959                 fi
2960         fi
2961         ;;
2962 *) dflt=y;;
2963 esac
2964
2965 : Get old answers from old config file if Configure was run on the
2966 : same system, otherwise use the hints.
2967 hint=default
2968 cd ..
2969 if test -f config.sh; then
2970         echo " "
2971         rp="I see a config.sh file.  Shall I use it to set the defaults?"
2972         . UU/myread
2973         case "$ans" in
2974         n*|N*) echo "OK, I'll ignore it."
2975                 mv config.sh config.sh.old
2976                 myuname="$newmyuname"
2977                 ;;
2978         *)  echo "Fetching default answers from your old config.sh file..." >&4
2979                 tmp_n="$n"
2980                 tmp_c="$c"
2981                 tmp_sh="$sh"
2982                 . ./config.sh
2983                 cp config.sh UU
2984                 n="$tmp_n"
2985                 c="$tmp_c"
2986                 : Older versions did not always set $sh.  Catch re-use of such
2987                 : an old config.sh.
2988                 case "$sh" in
2989                 '') sh="$tmp_sh" ;;
2990                 esac
2991                 hint=previous
2992                 ;;
2993         esac
2994 fi
2995 . ./UU/checkcc
2996 if test ! -f config.sh; then
2997         $cat <<EOM
2998
2999 First time through, eh?  I have some defaults handy for some systems
3000 that need some extra help getting the Configure answers right:
3001
3002 EOM
3003         (cd $src/hints; ls -C *.sh) | $sed 's/\.sh/   /g' >&4
3004         dflt=''
3005         : Half the following guesses are probably wrong... If you have better
3006         : tests or hints, please send them to perlbug@perl.org
3007         : The metaconfig authors would also appreciate a copy...
3008         $test -f /irix && osname=irix
3009         $test -f /xenix && osname=sco_xenix
3010         $test -f /dynix && osname=dynix
3011         $test -f /dnix && osname=dnix
3012         $test -f /lynx.os && osname=lynxos
3013         $test -f /unicos && osname=unicos && osvers=`$uname -r`
3014         $test -f /unicosmk && osname=unicosmk && osvers=`$uname -r`
3015         $test -f /unicosmk.ar && osname=unicosmk && osvers=`$uname -r`
3016         $test -f /bin/mips && /bin/mips && osname=mips
3017         $test -d /NextApps && set X `hostinfo | grep 'NeXT Mach.*:' | \
3018                 $sed -e 's/://' -e 's/\./_/'` && osname=next && osvers=$4
3019         $test -d /usr/apollo/bin && osname=apollo
3020         $test -f /etc/saf/_sactab && osname=svr4
3021         $test -d /usr/include/minix && osname=minix
3022         $test -f /system/gnu_library/bin/ar.pm && osname=vos
3023         if $test -d /MachTen -o -d /MachTen_Folder; then
3024                 osname=machten
3025                 if $test -x /sbin/version; then
3026                         osvers=`/sbin/version | $awk '{print $2}' |
3027                         $sed -e 's/[A-Za-z]$//'`
3028                 elif $test -x /usr/etc/version; then
3029                         osvers=`/usr/etc/version | $awk '{print $2}' |
3030                         $sed -e 's/[A-Za-z]$//'`
3031                 else
3032                         osvers="$2.$3"
3033                 fi
3034         fi
3035
3036         $test -f /sys/posix.dll &&
3037                 $test -f /usr/bin/what &&
3038                 set X `/usr/bin/what /sys/posix.dll` &&
3039                 $test "$3" = UWIN &&
3040                 osname=uwin &&
3041                 osvers="$5"
3042
3043         if $test -f $uname; then
3044                 set X $myuname
3045                 shift
3046
3047                 case "$5" in
3048                 fps*) osname=fps ;;
3049                 mips*)
3050                         case "$4" in
3051                         umips) osname=umips ;;
3052                         *) osname=mips ;;
3053                         esac;;
3054                 [23]100) osname=mips ;;
3055                 next*) osname=next ;;
3056                 i386*)
3057                         tmp=`/bin/uname -X 2>/dev/null|awk '/3\.2v[45]/{ print $(NF) }'`
3058                         if $test "$tmp" != "" -a "$3" = "3.2" -a -f '/etc/systemid'; then
3059                                 osname='sco'
3060                                 osvers=$tmp
3061                         elif $test -f /etc/kconfig; then
3062                                 osname=isc
3063                                 if test "$lns" = "$ln -s"; then
3064                                         osvers=4
3065                                 elif $contains _SYSV3 /usr/include/stdio.h > /dev/null 2>&1 ; then
3066                                         osvers=3
3067                                 elif $contains _POSIX_SOURCE /usr/include/stdio.h > /dev/null 2>&1 ; then
3068                                         osvers=2
3069                                 fi
3070                         fi
3071                         tmp=''
3072                         ;;
3073                 pc*)
3074                         if test -n "$DJGPP"; then
3075                                 osname=dos
3076                                 osvers=djgpp
3077                         fi
3078                         ;;
3079                 esac
3080
3081                 case "$1" in
3082                 aix) osname=aix
3083                         tmp=`( (oslevel) 2>/dev/null || echo "not found") 2>&1`
3084                         case "$tmp" in
3085                         'not found') osvers="$4"."$3" ;;
3086                         '<3240'|'<>3240') osvers=3.2.0 ;;
3087                         '=3240'|'>3240'|'<3250'|'<>3250') osvers=3.2.4 ;;
3088                         '=3250'|'>3250') osvers=3.2.5 ;;
3089                         *) osvers=$tmp;;
3090                         esac
3091                         ;;
3092                 bsd386) osname=bsd386
3093                         osvers=`$uname -r`
3094                         ;;
3095                 cygwin*) osname=cygwin
3096                         osvers="$3"
3097                         ;;
3098                 *dc.osx) osname=dcosx
3099                         osvers="$3"
3100                         ;;
3101                 dnix) osname=dnix
3102                         osvers="$3"
3103                         ;;
3104                 domainos) osname=apollo
3105                         osvers="$3"
3106                         ;;
3107                 dgux) osname=dgux 
3108                         osvers="$3"
3109                         ;;
3110                 dynixptx*) osname=dynixptx
3111                         osvers=`echo "$4"|sed 's/^v//'`
3112                         ;;
3113                 freebsd) osname=freebsd 
3114                         osvers="$3" ;;
3115                 genix) osname=genix ;;
3116                 hp*) osname=hpux 
3117                         osvers=`echo "$3" | $sed 's,.*\.\([0-9]*\.[0-9]*\),\1,'`
3118                         ;;
3119                 irix*) osname=irix
3120                         case "$3" in
3121                         4*) osvers=4 ;;
3122                         5*) osvers=5 ;;
3123                         *)      osvers="$3" ;;
3124                         esac
3125                         ;;
3126                 linux) osname=linux
3127                         case "$3" in
3128                         *)      osvers="$3" ;;
3129                         esac
3130                         ;;
3131                 MiNT) osname=mint
3132                         ;;
3133                 netbsd*) osname=netbsd
3134                         osvers="$3"
3135                         ;;
3136                 news-os) osvers="$3"
3137                         case "$3" in
3138                         4*) osname=newsos4 ;;
3139                         *) osname=newsos ;;
3140                         esac
3141                         ;;
3142                 next*) osname=next ;;
3143                 nonstop-ux) osname=nonstopux ;;
3144                 openbsd) osname=openbsd
3145                         osvers="$3"
3146                         ;;
3147                 os2)    osname=os2
3148                         osvers="$4"
3149                         ;;
3150                 POSIX-BC | posix-bc ) osname=posix-bc
3151                         osvers="$3"
3152                         ;;
3153                 powerux | power_ux | powermax_os | powermaxos | \
3154                 powerunix | power_unix) osname=powerux
3155                         osvers="$3"
3156                         ;;
3157                 qnx) osname=qnx
3158                         osvers="$4"
3159                         ;;
3160                 solaris) osname=solaris
3161                         case "$3" in
3162                         5*) osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3163                         *)      osvers="$3" ;;
3164                         esac
3165                         ;;
3166                 sunos) osname=sunos
3167                         case "$3" in
3168                         5*) osname=solaris
3169                                 osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3170                         *)      osvers="$3" ;;
3171                         esac
3172                         ;;
3173                 titanos) osname=titanos
3174                         case "$3" in
3175                         1*) osvers=1 ;;
3176                         2*) osvers=2 ;;
3177                         3*) osvers=3 ;;
3178                         4*) osvers=4 ;;
3179                         *)      osvers="$3" ;;
3180                         esac
3181                         ;;
3182                 ultrix) osname=ultrix
3183                         osvers="$3"
3184                         ;;
3185                 osf1|mls+)      case "$5" in
3186                                 alpha)
3187                                         osname=dec_osf
3188                                         osvers=`sizer -v | awk -FUNIX '{print $2}' | awk '{print $1}' |  tr '[A-Z]' '[a-z]' | sed 's/^[xvt]//'`
3189                                         case "$osvers" in
3190                                         [1-9].[0-9]*) ;;
3191                                         *) osvers=`echo "$3" | sed 's/^[xvt]//'` ;;
3192                                         esac
3193                                         ;;
3194                         hp*)    osname=hp_osf1  ;;
3195                         mips)   osname=mips_osf1 ;;
3196                         esac
3197                         ;;
3198                 # UnixWare 8 is now known as OpenUnix
3199                 openunix|unixware) osname=svr5
3200                         osvers="$4"
3201                         ;;
3202                 uts)    osname=uts
3203                         osvers="$3"
3204                         ;;
3205                 vos) osvers="$3"
3206                         ;;
3207                 $2) case "$osname" in
3208                         *isc*) ;;
3209                         *freebsd*) ;;
3210                         svr*)
3211                                 : svr4.x or possibly later
3212                                 case "svr$3" in 
3213                                 ${osname}*)
3214                                         osname=svr$3
3215                                         osvers=$4
3216                                         ;;
3217                                 esac
3218                                 case "$osname" in
3219                                 svr4.0)
3220                                         : Check for ESIX
3221                                         if test -f /stand/boot ; then
3222                                                 eval `grep '^INITPROG=[a-z/0-9]*$' /stand/boot`
3223                                                 if test -n "$INITPROG" -a -f "$INITPROG"; then
3224                         isesix=`strings -a $INITPROG|grep 'ESIX SYSTEM V/386 Release 4.0'`
3225                                                         if test -n "$isesix"; then
3226                                                                 osname=esix4
3227                                                         fi
3228                                                 fi
3229                                         fi
3230                                         ;;
3231                                 esac
3232                                 ;;
3233                         *)      if test -f /etc/systemid; then
3234                                         osname=sco
3235                                         set `echo $3 | $sed 's/\./ /g'` $4
3236                                         if $test -f $src/hints/sco_$1_$2_$3.sh; then
3237                                                 osvers=$1.$2.$3
3238                                         elif $test -f $src/hints/sco_$1_$2.sh; then
3239                                                 osvers=$1.$2
3240                                         elif $test -f $src/hints/sco_$1.sh; then
3241                                                 osvers=$1
3242                                         fi
3243                                 else
3244                                         case "$osname" in
3245                                         '') : Still unknown.  Probably a generic Sys V.
3246                                                 osname="sysv"
3247                                                 osvers="$3"
3248                                                 ;;
3249                                         esac
3250                                 fi
3251                                 ;;
3252                         esac
3253                         ;;
3254                 *)      case "$osname" in
3255                         '') : Still unknown.  Probably a generic BSD.
3256                                 osname="$1"
3257                                 osvers="$3"
3258                                 ;;
3259                         esac
3260                         ;;
3261                 esac
3262         else
3263                 if test -f /vmunix -a -f $src/hints/news_os.sh; then
3264                         (what /vmunix | UU/tr '[A-Z]' '[a-z]') > UU/kernel.what 2>&1
3265                         if $contains news-os UU/kernel.what >/dev/null 2>&1; then
3266                                 osname=news_os
3267                         fi
3268                         $rm -f UU/kernel.what
3269                 elif test -d c:/. -o -n "$is_os2" ; then
3270                         set X $myuname
3271                         osname=os2
3272                         osvers="$5"
3273                 fi
3274         fi
3275         
3276         case "$targetarch" in
3277         '') ;;
3278         *)  hostarch=$osname
3279             osname=`echo $targetarch|sed 's,^[^-]*-,,'`
3280             osvers=''
3281             ;;
3282         esac
3283
3284         : Now look for a hint file osname_osvers, unless one has been
3285         : specified already.
3286         case "$hintfile" in
3287         ''|' ')
3288                 file=`echo "${osname}_${osvers}" | $sed -e 's%\.%_%g' -e 's%_$%%'`
3289                 : Also try without trailing minor version numbers.
3290                 xfile=`echo $file | $sed -e 's%_[^_]*$%%'`
3291                 xxfile=`echo $xfile | $sed -e 's%_[^_]*$%%'`
3292                 xxxfile=`echo $xxfile | $sed -e 's%_[^_]*$%%'`
3293                 xxxxfile=`echo $xxxfile | $sed -e 's%_[^_]*$%%'`
3294                 case "$file" in
3295                 '') dflt=none ;;
3296                 *)  case "$osvers" in
3297                         '') dflt=$file
3298                                 ;;
3299                         *)  if $test -f $src/hints/$file.sh ; then
3300                                         dflt=$file
3301                                 elif $test -f $src/hints/$xfile.sh ; then
3302                                         dflt=$xfile
3303                                 elif $test -f $src/hints/$xxfile.sh ; then
3304                                         dflt=$xxfile
3305                                 elif $test -f $src/hints/$xxxfile.sh ; then
3306                                         dflt=$xxxfile
3307                                 elif $test -f $src/hints/$xxxxfile.sh ; then
3308                                         dflt=$xxxxfile
3309                                 elif $test -f "$src/hints/${osname}.sh" ; then
3310                                         dflt="${osname}"
3311                                 else
3312                                         dflt=none
3313                                 fi
3314                                 ;;
3315                         esac
3316                         ;;
3317                 esac
3318                 if $test -f Policy.sh ; then
3319                         case "$dflt" in
3320                         *Policy*) ;;
3321                         none) dflt="Policy" ;;
3322                         *) dflt="Policy $dflt" ;;
3323                         esac
3324                 fi
3325                 ;;
3326         *)
3327                 dflt=`echo $hintfile | $sed 's/\.sh$//'`
3328                 ;;
3329         esac
3330
3331         if $test -f Policy.sh ; then
3332                 $cat <<EOM
3333
3334 There's also a Policy hint file available, which should make the
3335 site-specific (policy) questions easier to answer.
3336 EOM
3337
3338         fi
3339
3340         $cat <<EOM
3341
3342 You may give one or more space-separated answers, or "none" if appropriate.
3343 A well-behaved OS will have no hints, so answering "none" or just "Policy"
3344 is a good thing.  DO NOT give a wrong version or a wrong OS.
3345
3346 EOM
3347
3348         rp="Which of these apply, if any?"
3349         . UU/myread
3350         tans=$ans
3351         for file in $tans; do
3352                 if $test X$file = XPolicy -a -f Policy.sh; then
3353                         . Policy.sh
3354                         $cat Policy.sh >> UU/config.sh
3355                 elif $test -f $src/hints/$file.sh; then
3356                         . $src/hints/$file.sh
3357                         $cat $src/hints/$file.sh >> UU/config.sh
3358                 elif $test X"$tans" = X -o X"$tans" = Xnone ; then
3359                         : nothing
3360                 else
3361                         : Give one chance to correct a possible typo.
3362                         echo "$file.sh does not exist"
3363                         dflt=$file
3364                         rp="hint to use instead?"
3365                         . UU/myread
3366                         for file in $ans; do
3367                                 if $test -f "$src/hints/$file.sh"; then
3368                                         . $src/hints/$file.sh
3369                                         $cat $src/hints/$file.sh >> UU/config.sh
3370                                 elif $test X$ans = X -o X$ans = Xnone ; then
3371                                         : nothing
3372                                 else
3373                                         echo "$file.sh does not exist -- ignored."
3374                                 fi
3375                         done
3376                 fi
3377         done
3378
3379         hint=recommended
3380         : Remember our hint file for later.
3381         if $test -f "$src/hints/$file.sh" ; then
3382                 hintfile="$file"
3383         else
3384                 hintfile=''
3385         fi
3386 fi
3387 cd UU
3388 ;;
3389 *)
3390         echo " "
3391         echo "Fetching default answers from $config_sh..." >&4
3392         tmp_n="$n"
3393         tmp_c="$c"
3394         cd ..
3395         cp $config_sh config.sh 2>/dev/null
3396         chmod +w config.sh
3397         . ./config.sh
3398         cd UU
3399         cp ../config.sh .
3400         n="$tmp_n"
3401         c="$tmp_c"
3402         hint=previous
3403         ;;
3404 esac
3405 test "$override" && . ./optdef.sh
3406
3407 : Restore computed paths
3408 for file in $loclist $trylist; do
3409         eval $file="\$_$file"
3410 done
3411
3412 cat << EOM
3413
3414 Configure uses the operating system name and version to set some defaults.
3415 The default value is probably right if the name rings a bell. Otherwise,
3416 since spelling matters for me, either accept the default or answer "none"
3417 to leave it blank.
3418
3419 EOM
3420 case "$osname" in
3421         ''|' ')
3422                 case "$hintfile" in
3423                 ''|' '|none) dflt=none ;;
3424                 *)  dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/_.*$//'` ;;
3425                 esac
3426                 ;;
3427         *) dflt="$osname" ;;
3428 esac
3429 rp="Operating system name?"
3430 . ./myread
3431 case "$ans" in
3432 none)  osname='' ;;
3433 *) osname=`echo "$ans" | $sed -e 's/[   ][      ]*/_/g' | ./tr '[A-Z]' '[a-z]'`;;
3434 esac
3435 echo " "
3436 case "$osvers" in
3437         ''|' ')
3438                 case "$hintfile" in
3439                 ''|' '|none) dflt=none ;;
3440                 *)      dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/^[^_]*//'`
3441                         dflt=`echo $dflt | $sed -e 's/^_//' -e 's/_/./g'`
3442                         case "$dflt" in
3443                         ''|' ') dflt=none ;;
3444                         esac
3445                         ;;
3446                 esac
3447                 ;;
3448         *) dflt="$osvers" ;;
3449 esac
3450 rp="Operating system version?"
3451 . ./myread
3452 case "$ans" in
3453 none)  osvers='' ;;
3454 *) osvers="$ans" ;;
3455 esac
3456
3457
3458 . ./posthint.sh
3459
3460 : who configured the system
3461 cf_time=`LC_ALL=C; LANGUAGE=C; export LC_ALL; export LANGUAGE; $date 2>&1`
3462 cf_by=`(logname) 2>/dev/null`
3463 case "$cf_by" in
3464 "")
3465         cf_by=`(whoami) 2>/dev/null`
3466         case "$cf_by" in
3467         "") cf_by=unknown ;;
3468         esac ;;
3469 esac
3470
3471 : set up the script used to warn in case of inconsistency
3472 cat <<EOS >whoa
3473 $startsh
3474 EOS
3475 cat <<'EOSC' >>whoa
3476 dflt=y
3477 echo " "
3478 echo "*** WHOA THERE!!! ***" >&4
3479 echo "    The $hint value for \$$var on this machine was \"$was\"!" >&4
3480 rp="    Keep the $hint value?"
3481 . ./myread
3482 case "$ans" in
3483 y) td=$was; tu=$was;;
3484 esac
3485 EOSC
3486
3487 : function used to set $1 to $val
3488 setvar='var=$1; eval "was=\$$1"; td=$define; tu=$undef;
3489 case "$val$was" in
3490 $define$undef) . ./whoa; eval "$var=\$td";;
3491 $undef$define) . ./whoa; eval "$var=\$tu";;
3492 *) eval "$var=$val";;
3493 esac'
3494
3495 case "$usesocks" in
3496 $define|true|[yY]*)     dflt='y';;
3497 *) dflt='n';;
3498 esac
3499 cat <<EOM
3500
3501 Perl can be built to use the SOCKS proxy protocol library.  To do so,
3502 Configure must be run with -Dusesocks.  If you use SOCKS you also need
3503 to use the PerlIO abstraction layer, this will be implicitly selected.
3504
3505 If this doesn't make any sense to you, just accept the default '$dflt'.
3506 EOM
3507 rp='Build Perl for SOCKS?'
3508 . ./myread
3509 case "$ans" in
3510 y|Y)    val="$define" ;;     
3511 *)      val="$undef" ;;
3512 esac
3513 set usesocks
3514 eval $setvar
3515
3516 case "$usesocks" in
3517 $define|true|[yY]*) useperlio="$define";;
3518 esac
3519
3520 case "$useperlio" in
3521 $define|true|[yY]*|'')  dflt='y';;
3522 *) dflt='n';;
3523 esac
3524 cat <<EOM
3525
3526 Previous version of $package used the standard IO mechanisms as
3527 defined in <stdio.h>.  Versions 5.003_02 and later of $package allow
3528 alternate IO mechanisms via the PerlIO abstraction layer, but the
3529 stdio mechanism is still available if needed.  The abstraction layer
3530 can use AT&T's sfio (if you already have sfio installed) or regular stdio.
3531 Using PerlIO with sfio may cause problems with some extension modules.
3532
3533 If this doesn't make any sense to you, just accept the default '$dflt'.
3534 EOM
3535 rp='Use the PerlIO abstraction layer?'
3536 . ./myread
3537 case "$ans" in
3538 y|Y) 
3539         val="$define"
3540         ;;
3541 *)      
3542         echo "Ok, doing things the stdio way."
3543         val="$undef"
3544         ;;
3545 esac
3546 set useperlio
3547 eval $setvar 
3548
3549 case "$usesocks" in
3550 $define|true|[yY]*)
3551         case "$useperlio" in
3552         $define|true|[yY]*) ;;
3553         *)      cat >&4 <<EOM
3554
3555 You are using the SOCKS proxy protocol library which means that you
3556 should also use the PerlIO layer.  You may be headed for trouble.
3557
3558 EOM
3559                 ;;
3560         esac
3561         ;;
3562 esac
3563
3564         
3565 case "$usethreads" in
3566 $define|true|[yY]*)     dflt='y';;
3567 *)     # Catch case where user specified ithreads or 5005threads but
3568        # forgot -Dusethreads (A.D. 4/2002)
3569        case "$useithreads$use5005threads" in
3570        *$define*)      
3571                 case "$useperlio" in
3572                 "$define")      dflt='y' ;;
3573                 *)              dflt='n' ;;
3574                 esac
3575                 ;;
3576        *)       dflt='n';;
3577        esac
3578        ;;
3579 esac
3580 cat <<EOM
3581
3582 Perl can be built to take advantage of threads on some systems.
3583 To do so, Configure can be run with -Dusethreads.
3584
3585 Note that Perl built with threading support runs slightly slower
3586 and uses more memory than plain Perl. The current implementation
3587 is believed to be stable, but it is fairly new, and so should be
3588 treated with caution.
3589
3590 If this doesn't make any sense to you, just accept the default '$dflt'.
3591 EOM
3592 rp='Build a threading Perl?'
3593 . ./myread
3594 case "$ans" in
3595 y|Y)    val="$define" ;;
3596 *)      val="$undef" ;;
3597 esac
3598 set usethreads
3599 eval $setvar
3600
3601 case "$usethreads" in
3602 $define)
3603         $cat <<EOM
3604
3605 Since release 5.6, Perl has had two different threading implementations,
3606 the newer interpreter-based version (ithreads) with one interpreter per
3607 thread, and the older 5.005 version (5005threads).
3608 The 5005threads version is effectively unmaintained and will probably be
3609 removed in Perl 5.10, so there should be no need to build a Perl using it
3610 unless needed for backwards compatibility with some existing 5.005threads
3611 code.
3612
3613 EOM
3614         : Default to ithreads unless overridden on command line or with
3615         : old config.sh
3616         dflt='y'
3617         case "$use5005threads" in
3618                 $define|true|[yY]*) dflt='n';;
3619         esac
3620         case "$useithreads" in
3621                 $undef|false|[nN]*) dflt='n';;
3622         esac
3623         rp='Use the newer interpreter-based ithreads?'
3624         . ./myread
3625         case "$ans" in
3626         y|Y)    val="$define" ;;
3627         *)      val="$undef" ;;
3628         esac
3629         set useithreads
3630         eval $setvar
3631         : Now set use5005threads to the opposite value.
3632         case "$useithreads" in
3633         $define) val="$undef" ;;
3634         *) val="$define" ;;
3635         esac
3636         set use5005threads
3637         eval $setvar
3638         ;;
3639 *)
3640         useithreads="$undef"
3641         use5005threads="$undef"
3642         ;;
3643 esac
3644
3645 case "$useithreads$use5005threads" in
3646 "$define$define")
3647         $cat >&4 <<EOM
3648
3649 You cannot have both the ithreads and the 5.005 threads enabled
3650 at the same time.  Disabling the 5.005 threads since they are
3651 much less stable than the ithreads.
3652
3653 EOM
3654         use5005threads="$undef"
3655         ;;
3656 esac
3657
3658 if test X"$usethreads" = "X$define" -a "X$useperlio" = "Xundef"; then
3659         cat >&4 <<EOF
3660 ***
3661 *** To build with ithreads you must also use the PerlIO layer.
3662 *** Cannot continue, aborting.
3663 ***
3664 EOF
3665         exit 1
3666 fi
3667
3668 case "$d_oldpthreads" in
3669 '')     : Configure tests would be welcome here.  For now, assume undef.
3670         val="$undef" ;;
3671 *)      val="$d_oldpthreads" ;;
3672 esac
3673 set d_oldpthreads
3674 eval $setvar
3675
3676
3677 case "$usethreads" in
3678 "$define"|true|[yY]*)
3679 : Look for a hint-file generated 'call-back-unit'.  If the
3680 : user has specified that a threading perl is to be built,
3681 : we may need to set or change some other defaults.
3682         if $test -f usethreads.cbu; then
3683                 echo "Your platform has some specific hints for threaded builds, using them..."
3684                 . ./usethreads.cbu
3685         else
3686                 $cat <<EOM
3687 (Your platform doesn't have any specific hints for threaded builds.
3688  Assuming POSIX threads, then.)
3689 EOM
3690         fi
3691         ;;
3692 esac
3693
3694 cat <<EOM
3695
3696 Perl can be built so that multiple Perl interpreters can coexist
3697 within the same Perl executable.
3698 EOM
3699
3700 case "$useithreads" in
3701 $define)
3702         cat <<EOM
3703 This multiple interpreter support is required for interpreter-based threads.
3704 EOM
3705         val="$define"
3706         ;;
3707 *)      case "$usemultiplicity" in
3708         $define|true|[yY]*)     dflt='y';;
3709         *) dflt='n';;
3710         esac
3711         echo " "
3712         echo "If this doesn't make any sense to you, just accept the default '$dflt'."
3713         rp='Build Perl for multiplicity?'
3714         . ./myread
3715         case "$ans" in
3716         y|Y)    val="$define" ;;
3717         *)      val="$undef" ;;
3718         esac
3719         ;;
3720 esac
3721 set usemultiplicity
3722 eval $setvar
3723
3724
3725 case "$usemorebits" in
3726 "$define"|true|[yY]*)
3727         use64bitint="$define"
3728         uselongdouble="$define"
3729         usemorebits="$define"
3730         ;;
3731 *)      usemorebits="$undef"
3732         ;;
3733 esac
3734
3735 : make some quick guesses about what we are up against
3736 echo " "
3737 $echo $n "Hmm...  $c"
3738 echo exit 1 >bsd
3739 echo exit 1 >usg
3740 echo exit 1 >v7
3741 echo exit 1 >osf1
3742 echo exit 1 >eunice
3743 echo exit 1 >xenix
3744 echo exit 1 >venix
3745 echo exit 1 >os2
3746 d_bsd="$undef"
3747 $cat /usr/include/signal.h /usr/include/sys/signal.h >foo 2>/dev/null
3748 if test -f /osf_boot || $contains 'OSF/1' /usr/include/ctype.h >/dev/null 2>&1
3749 then
3750         echo "Looks kind of like an OSF/1 system, but we'll see..."
3751         echo exit 0 >osf1
3752 elif test `echo abc | $tr a-z A-Z` = Abc ; then
3753         xxx=`./loc addbib blurfl $pth`
3754         if $test -f $xxx; then
3755         echo "Looks kind of like a USG system with BSD features, but we'll see..."
3756                 echo exit 0 >bsd
3757                 echo exit 0 >usg
3758         else
3759                 if $contains SIGTSTP foo >/dev/null 2>&1 ; then
3760                         echo "Looks kind of like an extended USG system, but we'll see..."
3761                 else
3762                         echo "Looks kind of like a USG system, but we'll see..."
3763                 fi
3764                 echo exit 0 >usg
3765         fi
3766 elif $contains SIGTSTP foo >/dev/null 2>&1 ; then
3767         echo "Looks kind of like a BSD system, but we'll see..."
3768         d_bsd="$define"
3769         echo exit 0 >bsd
3770 else
3771         echo "Looks kind of like a Version 7 system, but we'll see..."
3772         echo exit 0 >v7
3773 fi
3774 case "$eunicefix" in
3775 *unixtovms*)
3776         $cat <<'EOI'
3777 There is, however, a strange, musty smell in the air that reminds me of
3778 something...hmm...yes...I've got it...there's a VMS nearby, or I'm a Blit.
3779 EOI
3780         echo exit 0 >eunice
3781         d_eunice="$define"
3782 : it so happens the Eunice I know will not run shell scripts in Unix format
3783         ;;
3784 *)
3785         echo " "
3786         echo "Congratulations.  You aren't running Eunice."
3787         d_eunice="$undef"
3788         ;;
3789 esac
3790 : Detect OS2.  The p_ variable is set above in the Head.U unit.
3791 : Note that this also -- wrongly -- detects e.g. dos-djgpp, which also uses
3792 : semicolon as a patch separator
3793 case "$p_" in
3794 :) ;;
3795 *)
3796         $cat <<'EOI'
3797 I have the feeling something is not exactly right, however...don't tell me...
3798 lemme think...does HAL ring a bell?...no, of course, you're only running OS/2!
3799 (Or you may be running DOS with DJGPP.)
3800 EOI
3801         echo exit 0 >os2
3802         ;;
3803 esac
3804 if test -f /xenix; then
3805         echo "Actually, this looks more like a XENIX system..."
3806         echo exit 0 >xenix
3807         d_xenix="$define"
3808 else
3809         echo " "
3810         echo "It's not Xenix..."
3811         d_xenix="$undef"
3812 fi
3813 chmod +x xenix
3814 $eunicefix xenix
3815 if test -f /venix; then
3816         echo "Actually, this looks more like a VENIX system..."
3817         echo exit 0 >venix
3818 else
3819         echo " "
3820         if ./xenix; then
3821                 : null
3822         else
3823                 echo "Nor is it Venix..."
3824         fi
3825 fi
3826 chmod +x bsd usg v7 osf1 eunice xenix venix os2
3827 $eunicefix bsd usg v7 osf1 eunice xenix venix os2
3828 $rm -f foo
3829
3830 case "$cc" in
3831 '') dflt=cc;;
3832 *) dflt="$cc";;
3833 esac
3834 rp="Use which C compiler?"
3835 . ./myread
3836 cc="$ans"
3837
3838 : See if they have not cc but they do have gcc
3839 . ./trygcc
3840 : Look for a hint-file generated 'call-back-unit'.  Now that the
3841 : user has specified the compiler, we may need to set or change some
3842 : other defaults.
3843 if $test -f cc.cbu; then
3844     . ./cc.cbu
3845 fi
3846 . ./checkcc
3847
3848 echo " "
3849 echo "Checking for GNU cc in disguise and/or its version number..." >&4
3850 $cat >try.c <<EOM
3851 #include <stdio.h>
3852 int main() {
3853 #ifdef __GNUC__
3854 #ifdef __VERSION__
3855         printf("%s\n", __VERSION__);
3856 #else
3857         printf("%s\n", "1");
3858 #endif
3859 #endif
3860         return(0);
3861 }
3862 EOM
3863 if $cc -o try $ccflags $ldflags try.c; then
3864         gccversion=`$run ./try`
3865         case "$gccversion" in
3866         '') echo "You are not using GNU cc." ;;
3867         *)  echo "You are using GNU cc $gccversion."
3868             ccname=gcc
3869             ;;
3870         esac
3871 else
3872         echo " "
3873         echo "*** WHOA THERE!!! ***" >&4
3874         echo "    Your C compiler \"$cc\" doesn't seem to be working!" >&4
3875         case "$knowitall" in
3876         '')
3877         echo "    You'd better start hunting for one and let me know about it." >&4
3878                 exit 1
3879                 ;;
3880         esac
3881 fi
3882 $rm -f try try.*
3883 case "$gccversion" in
3884 1*) cpp=`./loc gcc-cpp $cpp $pth` ;;
3885 esac
3886 case "$gccversion" in
3887 '') gccosandvers='' ;;
3888 *) gccshortvers=`echo "$gccversion"|sed 's/ .*//'`
3889    gccosandvers=`$cc -v 2>&1|grep '/specs$'|sed "s!.*/[^-/]*-[^-/]*-\([^-/]*\)/$gccshortvers/specs!\1!"`
3890    gccshortvers=''
3891    case "$gccosandvers" in
3892    $osname) gccosandvers='' ;; # linux gccs seem to have no linux osvers, grr
3893    $osname$osvers) ;; # looking good
3894    $osname*) cat <<EOM >&4
3895
3896 *** WHOA THERE!!! ***
3897
3898     Your gcc has not been compiled for the exact release of
3899     your operating system ($gccosandvers versus $osname$osvers).
3900
3901     In general it is a good idea to keep gcc synchronized with
3902     the operating system because otherwise serious problems
3903     may ensue when trying to compile software, like Perl.
3904
3905     I'm trying to be optimistic here, though, and will continue.
3906     If later during the configuration and build icky compilation
3907     problems appear (headerfile conflicts being the most common
3908     manifestation), I suggest reinstalling the gcc to match
3909     your operating system release.
3910
3911 EOM
3912       ;;
3913    *) gccosandvers='' ;; # failed to parse, better be silent
3914    esac
3915    ;;
3916 esac
3917 case "$ccname" in
3918 '') ccname="$cc" ;;
3919 esac
3920
3921 # gcc 3.* complain about adding -Idirectories that they already know about,
3922 # so we will take those off from locincpth.
3923 case "$gccversion" in
3924 3*)
3925     echo "main(){}">try.c
3926     for incdir in $locincpth; do
3927        warn=`$cc $ccflags -I$incdir -c try.c 2>&1 | \
3928              grep '^c[cp]p*[01]: warning: changing search order '`
3929        if test "X$warn" != X; then
3930            locincpth=`echo " $locincpth " | sed "s! $incdir ! !"`
3931        fi
3932     done
3933     $rm -f try try.*
3934 esac
3935
3936 : decide how portable to be.  Allow command line overrides.
3937 case "$d_portable" in
3938 "$undef") ;;
3939 *)      d_portable="$define" ;;
3940 esac
3941
3942 : set up shell script to do ~ expansion
3943 cat >filexp <<EOSS
3944 $startsh
3945 : expand filename
3946 case "\$1" in
3947  ~/*|~)
3948         echo \$1 | $sed "s|~|\${HOME-\$LOGDIR}|"
3949         ;;
3950  ~*)
3951         if $test -f /bin/csh; then
3952                 /bin/csh -f -c "glob \$1"
3953                 failed=\$?
3954                 echo ""
3955                 exit \$failed
3956         else
3957                 name=\`$expr x\$1 : '..\([^/]*\)'\`
3958                 dir=\`$sed -n -e "/^\${name}:/{s/^[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:\([^:]*\).*"'\$'"/\1/" -e p -e q -e '}' </etc/passwd\`
3959                 if $test ! -d "\$dir"; then
3960                         me=\`basename \$0\`
3961                         echo "\$me: can't locate home directory for: \$name" >&2
3962                         exit 1
3963                 fi
3964                 case "\$1" in
3965                 */*)
3966                         echo \$dir/\`$expr x\$1 : '..[^/]*/\(.*\)'\`
3967                         ;;
3968                 *)
3969                         echo \$dir
3970                         ;;
3971                 esac
3972         fi
3973         ;;
3974 *)
3975         echo \$1
3976         ;;
3977 esac
3978 EOSS
3979 chmod +x filexp
3980 $eunicefix filexp
3981
3982 : now set up to get a file name
3983 cat <<EOS >getfile
3984 $startsh
3985 EOS
3986 cat <<'EOSC' >>getfile
3987 tilde=''
3988 fullpath=''
3989 already=''
3990 skip=''
3991 none_ok=''
3992 exp_file=''
3993 nopath_ok=''
3994 orig_rp="$rp"
3995 orig_dflt="$dflt"
3996 case "$gfpth" in
3997 '') gfpth='.' ;;
3998 esac
3999
4000 case "$fn" in
4001 *\(*)
4002         : getfile will accept an answer from the comma-separated list
4003         : enclosed in parentheses even if it does not meet other criteria.
4004         expr "$fn" : '.*(\(.*\)).*' | $tr ',' $trnl >getfile.ok
4005         fn=`echo $fn | sed 's/(.*)//'`
4006         ;;
4007 esac
4008
4009 case "$fn" in
4010 *:*)
4011         loc_file=`expr $fn : '.*:\(.*\)'`
4012         fn=`expr $fn : '\(.*\):.*'`
4013         ;;
4014 esac
4015
4016 case "$fn" in
4017 *~*) tilde=true;;
4018 esac
4019 case "$fn" in
4020 */*) fullpath=true;;
4021 esac
4022 case "$fn" in
4023 *+*) skip=true;;
4024 esac
4025 case "$fn" in
4026 *n*) none_ok=true;;
4027 esac
4028 case "$fn" in
4029 *e*) exp_file=true;;
4030 esac
4031 case "$fn" in
4032 *p*) nopath_ok=true;;
4033 esac
4034
4035 case "$fn" in
4036 *f*) type='File';;
4037 *d*) type='Directory';;
4038 *l*) type='Locate';;
4039 esac
4040
4041 what="$type"
4042 case "$what" in
4043 Locate) what='File';;
4044 esac
4045
4046 case "$exp_file" in
4047 '')
4048         case "$d_portable" in
4049         "$define") ;;
4050         *) exp_file=true;;
4051         esac
4052         ;;
4053 esac
4054
4055 cd ..
4056 while test "$type"; do
4057         redo=''
4058         rp="$orig_rp"
4059         dflt="$orig_dflt"
4060         case "$tilde" in
4061         true) rp="$rp (~name ok)";;
4062         esac
4063         . UU/myread
4064         if test -f UU/getfile.ok && \
4065                 $contains "^$ans\$" UU/getfile.ok >/dev/null 2>&1
4066         then
4067                 value="$ans"
4068                 ansexp="$ans"
4069                 break
4070         fi
4071         case "$ans" in
4072         none)
4073                 value=''
4074                 ansexp=''
4075                 case "$none_ok" in
4076                 true) type='';;
4077                 esac
4078                 ;;
4079         *)
4080                 case "$tilde" in
4081                 '') value="$ans"
4082                         ansexp="$ans";;
4083                 *)
4084                         value=`UU/filexp $ans`
4085                         case $? in
4086                         0)
4087                                 if test "$ans" != "$value"; then
4088                                         echo "(That expands to $value on this system.)"
4089                                 fi
4090                                 ;;
4091                         *) value="$ans";;
4092                         esac
4093                         ansexp="$value"
4094                         case "$exp_file" in
4095                         '') value="$ans";;
4096                         esac
4097                         ;;
4098                 esac
4099                 case "$fullpath" in
4100                 true)
4101                         case "$ansexp" in
4102                         /*) value="$ansexp" ;;
4103                         [a-zA-Z]:/*) value="$ansexp" ;;
4104                         *)
4105                                 redo=true
4106                                 case "$already" in
4107                                 true)
4108                                 echo "I shall only accept a full path name, as in /bin/ls." >&4
4109                                 echo "Use a ! shell escape if you wish to check pathnames." >&4
4110                                         ;;
4111                                 *)
4112                                 echo "Please give a full path name, starting with slash." >&4
4113                                         case "$tilde" in
4114                                         true)
4115                                 echo "Note that using ~name is ok provided it expands well." >&4
4116                                                 already=true
4117                                                 ;;
4118                                         esac
4119                                 esac
4120                                 ;;
4121                         esac
4122                         ;;
4123                 esac
4124                 case "$redo" in
4125                 '')
4126                         case "$type" in
4127                         File)
4128                                 for fp in $gfpth; do
4129                                         if test "X$fp" = X.; then
4130                                             pf="$ansexp"
4131                                         else    
4132                                             pf="$fp/$ansexp"
4133                                         fi
4134                                         if test -f "$pf"; then
4135                                                 type=''
4136                                         elif test -r "$pf" || (test -h "$pf") >/dev/null 2>&1
4137                                         then
4138                                                 echo "($value is not a plain file, but that's ok.)"
4139                                                 type=''
4140                                         fi
4141                                         if test X"$type" = X; then
4142                                             value="$pf"
4143                                             break
4144                                         fi
4145                                 done
4146                                 ;;
4147                         Directory)
4148                                 for fp in $gfpth; do
4149                                         if test "X$fp" = X.; then
4150                                             dir="$ans"
4151                                             direxp="$ansexp"
4152                                         else    
4153                                             dir="$fp/$ansexp"
4154                                             direxp="$fp/$ansexp"
4155                                         fi
4156                                         if test -d "$direxp"; then
4157                                                 type=''
4158                                                 value="$dir"
4159                                                 break
4160                                         fi
4161                                 done
4162                                 ;;
4163                         Locate)
4164                                 if test -d "$ansexp"; then
4165                                         echo "(Looking for $loc_file in directory $value.)"
4166                                         value="$value/$loc_file"
4167                                         ansexp="$ansexp/$loc_file"
4168                                 fi
4169                                 if test -f "$ansexp"; then
4170                                         type=''
4171                                 fi
4172                                 case "$nopath_ok" in
4173                                 true)   case "$value" in
4174                                         */*) ;;
4175                                         *)      echo "Assuming $value will be in people's path."
4176                                                 type=''
4177                                                 ;;
4178                                         esac
4179                                         ;;
4180                                 esac
4181                                 ;;
4182                         esac
4183
4184                         case "$skip" in
4185                         true) type='';
4186                         esac
4187
4188                         case "$type" in
4189                         '') ;;
4190                         *)
4191                                 if test "$fastread" = yes; then
4192                                         dflt=y
4193                                 else
4194                                         dflt=n
4195                                 fi
4196                                 rp="$what $value doesn't exist.  Use that name anyway?"
4197                                 . UU/myread
4198                                 dflt=''
4199                                 case "$ans" in
4200                                 y*) type='';;
4201                                 *) echo " ";;
4202                                 esac
4203                                 ;;
4204                         esac
4205                         ;;
4206                 esac
4207                 ;;
4208         esac
4209 done
4210 cd UU
4211 ans="$value"
4212 rp="$orig_rp"
4213 dflt="$orig_dflt"
4214 rm -f getfile.ok
4215 test "X$gfpthkeep" != Xy && gfpth=""
4216 EOSC
4217
4218 : What should the include directory be ?
4219 echo " "
4220 $echo $n "Hmm...  $c"
4221 dflt='/usr/include'
4222 incpath=''
4223 mips_type=''
4224 if $test -f /bin/mips && /bin/mips; then
4225         echo "Looks like a MIPS system..."
4226         $cat >usr.c <<'EOCP'
4227 #ifdef SYSTYPE_BSD43
4228 /bsd43
4229 #endif
4230 EOCP
4231         if cc -E usr.c > usr.out && $contains / usr.out >/dev/null 2>&1; then
4232                 dflt='/bsd43/usr/include'
4233                 incpath='/bsd43'
4234                 mips_type='BSD 4.3'
4235         else
4236                 mips_type='System V'
4237         fi
4238         $rm -f usr.c usr.out
4239         echo "and you're compiling with the $mips_type compiler and libraries."
4240         xxx_prompt=y
4241         echo "exit 0" >mips
4242 else
4243         echo "Doesn't look like a MIPS system."
4244         xxx_prompt=n
4245         echo "exit 1" >mips
4246 fi
4247 chmod +x mips
4248 $eunicefix mips
4249 case "$usrinc" in
4250 '') ;;
4251 *) dflt="$usrinc";;
4252 esac
4253 case "$xxx_prompt" in
4254 y)      fn=d/
4255         echo " "
4256         rp='Where are the include files you want to use?'
4257         . ./getfile
4258         usrinc="$ans"
4259         ;;
4260 *)      usrinc="$dflt"
4261         ;;
4262 esac
4263
4264 : see how we invoke the C preprocessor
4265 echo " "
4266 echo "Now, how can we feed standard input to your C preprocessor..." >&4
4267 cat <<'EOT' >testcpp.c
4268 #define ABC abc
4269 #define XYZ xyz
4270 ABC.XYZ
4271 EOT
4272 cd ..
4273 if test ! -f cppstdin; then
4274         if test "X$osname" = "Xaix" -a "X$gccversion" = X; then
4275                 # AIX cc -E doesn't show the absolute headerfile
4276                 # locations but we'll cheat by using the -M flag.
4277                 echo 'cat >.$$.c; rm -f .$$.u; '"$cc"' ${1+"$@"} -M -c .$$.c 2>/dev/null; test -s .$$.u && awk '"'"'$2 ~ /\.h$/ { print "# 0 \""$2"\"" }'"'"' .$$.u; rm -f .$$.o .$$.u; '"$cc"' -E ${1+"$@"} .$$.c; rm .$$.c' > cppstdin
4278         else
4279                 echo 'cat >.$$.c; '"$cc"' -E ${1+"$@"} .$$.c; rm .$$.c' >cppstdin
4280         fi
4281 else
4282         echo "Keeping your $hint cppstdin wrapper."
4283 fi
4284 chmod 755 cppstdin
4285 wrapper=`pwd`/cppstdin
4286 ok='false'
4287 cd UU
4288
4289 if $test "X$cppstdin" != "X" && \
4290         $cppstdin $cppminus <testcpp.c >testcpp.out 2>&1 && \
4291         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4292 then
4293         echo "You used to use $cppstdin $cppminus so we'll use that again."
4294         case "$cpprun" in
4295         '') echo "But let's see if we can live without a wrapper..." ;;
4296         *)
4297                 if $cpprun $cpplast <testcpp.c >testcpp.out 2>&1 && \
4298                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4299                 then
4300                         echo "(And we'll use $cpprun $cpplast to preprocess directly.)"
4301                         ok='true'
4302                 else
4303                         echo "(However, $cpprun $cpplast does not work, let's see...)"
4304                 fi
4305                 ;;
4306         esac
4307 else
4308         case "$cppstdin" in
4309         '') ;;
4310         *)
4311                 echo "Good old $cppstdin $cppminus does not seem to be of any help..."
4312                 ;;
4313         esac
4314 fi
4315
4316 if $ok; then
4317         : nothing
4318 elif echo 'Maybe "'"$cc"' -E" will work...'; \
4319         $cc -E <testcpp.c >testcpp.out 2>&1; \
4320         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4321         echo "Yup, it does."
4322         x_cpp="$cc -E"
4323         x_minus='';
4324 elif echo 'Nope...maybe "'"$cc"' -E -" will work...'; \
4325         $cc -E - <testcpp.c >testcpp.out 2>&1; \
4326         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4327         echo "Yup, it does."
4328         x_cpp="$cc -E"
4329         x_minus='-';
4330 elif echo 'Nope...maybe "'"$cc"' -P" will work...'; \
4331         $cc -P <testcpp.c >testcpp.out 2>&1; \
4332         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4333         echo "Yipee, that works!"
4334         x_cpp="$cc -P"
4335         x_minus='';
4336 elif echo 'Nope...maybe "'"$cc"' -P -" will work...'; \
4337         $cc -P - <testcpp.c >testcpp.out 2>&1; \
4338         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4339         echo "At long last!"
4340         x_cpp="$cc -P"
4341         x_minus='-';
4342 elif echo 'No such luck, maybe "'$cpp'" will work...'; \
4343         $cpp <testcpp.c >testcpp.out 2>&1; \
4344         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4345         echo "It works!"
4346         x_cpp="$cpp"
4347         x_minus='';
4348 elif echo 'Nixed again...maybe "'$cpp' -" will work...'; \
4349         $cpp - <testcpp.c >testcpp.out 2>&1; \
4350         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4351         echo "Hooray, it works!  I was beginning to wonder."
4352         x_cpp="$cpp"
4353         x_minus='-';
4354 elif echo 'Uh-uh.  Time to get fancy.  Trying a wrapper...'; \
4355         $wrapper <testcpp.c >testcpp.out 2>&1; \
4356         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4357         x_cpp="$wrapper"
4358         x_minus=''
4359         echo "Eureka!"
4360 else
4361         dflt=''
4362         rp="No dice.  I can't find a C preprocessor.  Name one:"
4363         . ./myread
4364         x_cpp="$ans"
4365         x_minus=''
4366         $x_cpp <testcpp.c >testcpp.out 2>&1
4367         if $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4368                 echo "OK, that will do." >&4
4369         else
4370 echo "Sorry, I can't get that to work.  Go find one and rerun Configure." >&4
4371                 exit 1
4372         fi
4373 fi
4374
4375 case "$ok" in
4376 false)
4377         cppstdin="$x_cpp"
4378         cppminus="$x_minus"
4379         cpprun="$x_cpp"
4380         cpplast="$x_minus"
4381         set X $x_cpp
4382         shift
4383         case "$1" in
4384         "$cpp")
4385                 echo "Perhaps can we force $cc -E using a wrapper..."
4386                 if $wrapper <testcpp.c >testcpp.out 2>&1; \
4387                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4388                 then
4389                         echo "Yup, we can."
4390                         cppstdin="$wrapper"
4391                         cppminus='';
4392                 else
4393                         echo "Nope, we'll have to live without it..."
4394                 fi
4395                 ;;
4396         esac
4397         case "$cpprun" in
4398         "$wrapper")
4399                 cpprun=''
4400                 cpplast=''
4401                 ;;
4402         esac
4403         ;;
4404 esac
4405
4406 case "$cppstdin" in
4407 "$wrapper"|'cppstdin') ;;
4408 *) $rm -f $wrapper;;
4409 esac
4410 $rm -f testcpp.c testcpp.out
4411
4412 : Set private lib path
4413 case "$plibpth" in
4414 '') if ./mips; then
4415                 plibpth="$incpath/usr/lib /usr/local/lib /usr/ccs/lib"
4416         fi;;
4417 esac
4418 case "$libpth" in
4419 ' ') dlist='';;
4420 '') dlist="$loclibpth $plibpth $glibpth";;
4421 *) dlist="$libpth";;
4422 esac
4423
4424 : Now check and see which directories actually exist, avoiding duplicates
4425 libpth=''
4426 for xxx in $dlist
4427 do
4428     if $test -d $xxx; then
4429                 case " $libpth " in
4430                 *" $xxx "*) ;;
4431                 *) libpth="$libpth $xxx";;
4432                 esac
4433     fi
4434 done
4435 $cat <<'EOM'
4436
4437 Some systems have incompatible or broken versions of libraries.  Among
4438 the directories listed in the question below, please remove any you
4439 know not to be holding relevant libraries, and add any that are needed.
4440 Say "none" for none.
4441
4442 EOM
4443 case "$libpth" in
4444 '') dflt='none';;
4445 *)
4446         set X $libpth
4447         shift
4448         dflt=${1+"$@"}
4449         ;;
4450 esac
4451 rp="Directories to use for library searches?"
4452 . ./myread
4453 case "$ans" in
4454 none) libpth=' ';;
4455 *) libpth="$ans";;
4456 esac
4457
4458 : compute shared library extension
4459 case "$so" in
4460 '')
4461         if xxx=`./loc libc.sl X $libpth`; $test -f "$xxx"; then
4462                 dflt='sl'
4463         else
4464                 dflt='so'
4465         fi
4466         ;;
4467 *) dflt="$so";;
4468 esac
4469 $cat <<EOM
4470
4471 On some systems, shared libraries may be available.  Answer 'none' if
4472 you want to suppress searching of shared libraries for the remainder
4473 of this configuration.
4474
4475 EOM
4476 rp='What is the file extension used for shared libraries?'
4477 . ./myread
4478 so="$ans"
4479
4480 : Define several unixisms.
4481 : Hints files or command line option can be used to override them.
4482 : The convoluted testing is in case hints files set either the old
4483 : or the new name.
4484 case "$_exe" in
4485 '')     case "$exe_ext" in
4486         '')     ;;
4487         *)      _exe="$exe_ext" ;;
4488         esac
4489         ;;
4490 esac
4491 case "$_a" in
4492 '')     case "$lib_ext" in
4493     '') _a='.a';;
4494         *)      _a="$lib_ext" ;;
4495         esac
4496         ;;
4497 esac
4498 case "$_o" in
4499 '') case "$obj_ext" in
4500         '')     _o='.o';;
4501         *)      _o="$obj_ext";;
4502         esac
4503         ;;
4504 esac
4505 case "$p_" in
4506 '') case "$path_sep" in
4507         '')     p_=':';;
4508         *)      p_="$path_sep";;
4509         esac
4510         ;;
4511 esac
4512 exe_ext=$_exe
4513 lib_ext=$_a
4514 obj_ext=$_o
4515 path_sep=$p_
4516
4517 : Which makefile gets called first.  This is used by make depend.
4518 case "$firstmakefile" in
4519 '') firstmakefile='makefile';;
4520 esac
4521
4522 case "$ccflags" in
4523 *-DUSE_LONG_DOUBLE*|*-DUSE_MORE_BITS*) uselongdouble="$define" ;;
4524 esac
4525
4526 case "$uselongdouble" in
4527 $define|true|[yY]*)     dflt='y';;
4528 *) dflt='n';;
4529 esac
4530 cat <<EOM
4531
4532 Perl can be built to take advantage of long doubles which
4533 (if available) may give more accuracy and range for floating point numbers.
4534
4535 If this doesn't make any sense to you, just accept the default '$dflt'.
4536 EOM
4537 rp='Try to use long doubles if available?'
4538 . ./myread
4539 case "$ans" in
4540 y|Y)    val="$define"   ;;
4541 *)      val="$undef"    ;;
4542 esac
4543 set uselongdouble
4544 eval $setvar
4545
4546 case "$uselongdouble" in
4547 true|[yY]*) uselongdouble="$define" ;;
4548 esac
4549
4550 case "$uselongdouble" in
4551 $define)
4552 : Look for a hint-file generated 'call-back-unit'.  If the
4553 : user has specified that long doubles should be used,
4554 : we may need to set or change some other defaults.
4555         if $test -f uselongdouble.cbu; then
4556                 echo "Your platform has some specific hints for long doubles, using them..."
4557                 . ./uselongdouble.cbu
4558         else
4559                 $cat <<EOM
4560 (Your platform doesn't have any specific hints for long doubles.)
4561 EOM
4562         fi
4563         ;;
4564 esac
4565
4566 : Looking for optional libraries
4567 echo " "
4568 echo "Checking for optional libraries..." >&4
4569 case "$libs" in
4570 ' '|'') dflt='';;
4571 *) dflt="$libs";;
4572 esac
4573 case "$libswanted" in
4574 '') libswanted='c_s';;
4575 esac
4576 case "$usesocks" in
4577 "$define") libswanted="$libswanted socks5 socks5_sh" ;;
4578 esac
4579 libsfound=''
4580 libsfiles=''
4581 libsdirs=''
4582 libspath=''
4583 for thisdir in $libpth $xlibpth; do
4584   test -d $thisdir && libspath="$libspath $thisdir"
4585 done
4586 for thislib in $libswanted; do
4587         for thisdir in $libspath; do
4588             xxx=''
4589             if $test ! -f "$xxx" -a "X$ignore_versioned_solibs" = "X"; then
4590                 xxx=`ls $thisdir/lib$thislib.$so.[0-9] 2>/dev/null|sed -n '$p'`
4591                 $test -f "$xxx" && eval $libscheck
4592                 $test -f "$xxx" && libstyle=shared
4593             fi
4594             if test ! -f "$xxx"; then
4595                 xxx=$thisdir/lib$thislib.$so
4596                 $test -f "$xxx" && eval $libscheck
4597                 $test -f "$xxx" && libstyle=shared
4598             fi  
4599             if test ! -f "$xxx"; then
4600                 xxx=$thisdir/lib$thislib$_a
4601                 $test -f "$xxx" && eval $libscheck
4602                 $test -f "$xxx" && libstyle=static
4603             fi
4604             if test ! -f "$xxx"; then
4605                 xxx=$thisdir/$thislib$_a
4606                 $test -f "$xxx" && eval $libscheck
4607                 $test -f "$xxx" && libstyle=static
4608             fi
4609             if test ! -f "$xxx"; then
4610                 xxx=$thisdir/lib${thislib}_s$_a
4611                 $test -f "$xxx" && eval $libscheck
4612                 $test -f "$xxx" && libstyle=static
4613                 $test -f "$xxx" && thislib=${thislib}_s
4614             fi
4615             if test ! -f "$xxx"; then
4616                 xxx=$thisdir/Slib$thislib$_a
4617                 $test -f "$xxx" && eval $libscheck
4618                 $test -f "$xxx" && libstyle=static
4619             fi
4620             if $test -f "$xxx"; then
4621                 case "$libstyle" in
4622                 shared) echo "Found -l$thislib (shared)." ;;
4623                 static) echo "Found -l$thislib." ;;
4624                 *)      echo "Found -l$thislib ($libstyle)." ;;
4625                 esac
4626                 case " $dflt " in
4627                 *"-l$thislib "*);;
4628                 *) dflt="$dflt -l$thislib"
4629                    libsfound="$libsfound $xxx"
4630                    yyy=`basename $xxx`
4631                    libsfiles="$libsfiles $yyy"
4632                    yyy=`echo $xxx|$sed -e "s%/$yyy\\$%%"`
4633                    case " $libsdirs " in
4634                    *" $yyy "*) ;;
4635                    *) libsdirs="$libsdirs $yyy" ;;
4636                    esac
4637                    ;;
4638                 esac
4639                 break
4640             fi  
4641         done
4642         if $test ! -f "$xxx"; then
4643             echo "No -l$thislib."
4644         fi
4645 done
4646 set X $dflt
4647 shift
4648 dflt="$*"
4649 case "$libs" in
4650 '') dflt="$dflt";;
4651 *) dflt="$libs";;
4652 esac
4653 case "$dflt" in
4654 ' '|'') dflt='none';;
4655 esac
4656
4657 $cat <<EOM
4658
4659 In order to compile $package on your machine, a number of libraries
4660 are usually needed.  Include any other special libraries here as well.
4661 Say "none" for none.  The default list is almost always right.
4662 EOM
4663
4664 echo " "
4665 rp="What libraries to use?"
4666 . ./myread
4667 case "$ans" in
4668 none) libs=' ';;
4669 *) libs="$ans";;
4670 esac
4671
4672 : determine optimization, if desired, or use for debug flag also
4673 case "$optimize" in
4674 ' '|$undef) dflt='none';;
4675 '') dflt='-O';;
4676 *) dflt="$optimize";;
4677 esac
4678 $cat <<EOH
4679
4680 By default, $package compiles with the -O flag to use the optimizer.
4681 Alternately, you might want to use the symbolic debugger, which uses
4682 the -g flag (on traditional Unix systems).  Either flag can be
4683 specified here.  To use neither flag, specify the word "none".
4684
4685 EOH
4686 rp="What optimizer/debugger flag should be used?"
4687 . ./myread
4688 optimize="$ans"
4689 case "$optimize" in
4690 'none') optimize=" ";;
4691 esac
4692
4693 dflt=''
4694 : We will not override a previous value, but we might want to
4695 : augment a hint file
4696 case "$hint" in
4697 default|recommended)
4698         case "$gccversion" in
4699         1*) dflt='-fpcc-struct-return' ;;
4700         esac
4701         case "$optimize" in
4702         *-g*) dflt="$dflt -DDEBUGGING";;
4703         esac
4704         case "$gccversion" in
4705         2*) if test -d /etc/conf/kconfig.d &&
4706                         $contains _POSIX_VERSION $usrinc/sys/unistd.h >/dev/null 2>&1
4707                 then
4708                         dflt="$dflt -posix"
4709                 fi
4710                 ;;
4711         esac
4712         case "$gccversion" in
4713         1*) ;;
4714         2.[0-8]*) ;;
4715         ?*)     echo " "
4716                 echo "Checking if your compiler accepts -fno-strict-aliasing" 2>&1
4717                 echo 'int main(void) { return 0; }' > gcctest.c
4718                 if $cc -O2 -fno-strict-aliasing -o gcctest gcctest.c; then
4719                         echo "Yes, it does." 2>&1
4720                         case "$ccflags" in
4721                         *strict-aliasing*) 
4722                                 echo "Leaving current flags $ccflags alone." 2>&1
4723                                 ;;
4724                         *) dflt="$dflt -fno-strict-aliasing" ;;
4725                         esac
4726                 else
4727                         echo "Nope, it doesn't, but that's ok." 2>&1
4728                 fi
4729                 ;;
4730         esac
4731         ;;
4732 esac
4733
4734 case "$mips_type" in
4735 *BSD*|'') inclwanted="$locincpth $usrinc";;
4736 *) inclwanted="$locincpth $inclwanted $usrinc/bsd";;
4737 esac
4738 for thisincl in $inclwanted; do
4739         if $test -d $thisincl; then
4740                 if $test x$thisincl != x$usrinc; then
4741                         case "$dflt" in
4742                         *" -I$thisincl "*);;
4743                         *) dflt="$dflt -I$thisincl ";;
4744                         esac
4745                 fi
4746         fi
4747 done
4748
4749 inctest='if $contains $2 $usrinc/$1 >/dev/null 2>&1; then
4750         xxx=true;
4751 elif $contains $2 $usrinc/sys/$1 >/dev/null 2>&1; then
4752         xxx=true;
4753 else
4754         xxx=false;
4755 fi;
4756 if $xxx; then
4757         case "$dflt" in
4758         *$2*);;
4759         *) dflt="$dflt -D$2";;
4760         esac;
4761 fi'
4762
4763 set signal.h LANGUAGE_C; eval $inctest
4764
4765 case "$usesocks" in
4766 $define)
4767         ccflags="$ccflags -DSOCKS"
4768         ;;
4769 esac
4770
4771 case "$hint" in
4772 default|recommended) dflt="$ccflags $dflt" ;;
4773 *) dflt="$ccflags";;
4774 esac
4775
4776 case "$dflt" in
4777 ''|' ') dflt=none;;
4778 esac
4779
4780 $cat <<EOH
4781
4782 Your C compiler may want other flags.  For this question you should include
4783 -I/whatever and -DWHATEVER flags and any other flags used by the C compiler,
4784 but you should NOT include libraries or ld flags like -lwhatever.  If you
4785 want $package to honor its debug switch, you should include -DDEBUGGING here.
4786 Your C compiler might also need additional flags, such as -D_POSIX_SOURCE.
4787
4788 To use no flags, specify the word "none".
4789
4790 EOH
4791 set X $dflt
4792 shift
4793 dflt=${1+"$@"}
4794 rp="Any additional cc flags?"
4795 . ./myread
4796 case "$ans" in
4797 none) ccflags='';;
4798 *) ccflags="$ans";;
4799 esac
4800
4801 : the following weeds options from ccflags that are of no interest to cpp
4802 case "$cppflags" in
4803 '') cppflags="$ccflags" ;;
4804 *)  cppflags="$cppflags $ccflags" ;;
4805 esac
4806 case "$gccversion" in
4807 1*) cppflags="$cppflags -D__GNUC__"
4808 esac
4809 case "$mips_type" in
4810 '');;
4811 *BSD*) cppflags="$cppflags -DSYSTYPE_BSD43";;
4812 esac
4813 case "$cppflags" in
4814 '');;
4815 *)
4816         echo " "
4817         echo "Let me guess what the preprocessor flags are..." >&4
4818         set X $cppflags
4819         shift
4820         cppflags=''
4821         $cat >cpp.c <<'EOM'
4822 #define BLURFL foo
4823
4824 BLURFL xx LFRULB
4825 EOM
4826         previous=''
4827         for flag in $*
4828         do
4829                 case "$flag" in
4830                 -*) ftry="$flag";;
4831                 *) ftry="$previous $flag";;
4832                 esac
4833                 if $cppstdin -DLFRULB=bar $cppflags $ftry $cppminus <cpp.c \
4834                         >cpp1.out 2>/dev/null && \
4835                         $cpprun -DLFRULB=bar $cppflags $ftry $cpplast <cpp.c \
4836                         >cpp2.out 2>/dev/null && \
4837                         $contains 'foo.*xx.*bar' cpp1.out >/dev/null 2>&1 && \
4838                         $contains 'foo.*xx.*bar' cpp2.out >/dev/null 2>&1
4839                 then
4840                         cppflags="$cppflags $ftry"
4841                         previous=''
4842                 else
4843                         previous="$flag"
4844                 fi
4845         done
4846         set X $cppflags
4847         shift
4848         cppflags=${1+"$@"}
4849         case "$cppflags" in
4850         *-*)  echo "They appear to be: $cppflags";;
4851         esac
4852         $rm -f cpp.c cpp?.out
4853         ;;
4854 esac
4855
4856 : flags used in final linking phase
4857 case "$ldflags" in
4858 '') if ./venix; then
4859                 dflt='-i -z'
4860         else
4861                 dflt=''
4862         fi
4863         case "$ccflags" in
4864         *-posix*) dflt="$dflt -posix" ;;
4865         esac
4866         ;;
4867 *) dflt="$ldflags";;
4868 esac
4869
4870 : Try to guess additional flags to pick up local libraries.
4871 for thislibdir in $libpth; do
4872         case " $loclibpth " in
4873         *" $thislibdir "*)
4874                 case "$dflt " in 
4875                 *"-L$thislibdir "*) ;;
4876                 *)  dflt="$dflt -L$thislibdir" ;;
4877                 esac
4878                 ;;
4879         esac
4880 done
4881
4882 case "$dflt" in
4883 '') dflt='none' ;;
4884 esac
4885
4886 $cat <<EOH
4887
4888 Your C linker may need flags.  For this question you should
4889 include -L/whatever and any other flags used by the C linker, but you
4890 should NOT include libraries like -lwhatever.
4891
4892 Make sure you include the appropriate -L/path flags if your C linker
4893 does not normally search all of the directories you specified above,
4894 namely
4895         $libpth
4896 To use no flags, specify the word "none".
4897
4898 EOH
4899
4900 rp="Any additional ld flags (NOT including libraries)?"
4901 . ./myread
4902 case "$ans" in
4903 none) ldflags='';;
4904 *) ldflags="$ans";;
4905 esac
4906 rmlist="$rmlist pdp11"
4907
4908 : coherency check
4909 echo " "
4910 echo "Checking your choice of C compiler and flags for coherency..." >&4
4911 $cat > try.c <<'EOF'
4912 #include <stdio.h>
4913 int main() { printf("Ok\n"); return(0); }
4914 EOF
4915 set X $cc -o try $optimize $ccflags $ldflags try.c $libs
4916 shift
4917 $cat >try.msg <<'EOM'
4918 I've tried to compile and run the following simple program:
4919
4920 EOM
4921 $cat try.c >> try.msg
4922
4923 $cat >> try.msg <<EOM
4924
4925 I used the command:
4926
4927         $*
4928         $run ./try
4929
4930 and I got the following output:
4931
4932 EOM
4933 dflt=y
4934 if $sh -c "$cc -o try $optimize $ccflags $ldflags try.c $libs" >>try.msg 2>&1; then
4935         if $sh -c "$run ./try" >>try.msg 2>&1; then
4936                 xxx=`$run ./try`
4937                 case "$xxx" in
4938                 "Ok") dflt=n ;;
4939                 *)      echo 'The program compiled OK, but produced no output.' >> try.msg
4940                         case " $libs " in
4941                         *" -lsfio "*)
4942                                 cat >> try.msg <<'EOQS'
4943 If $libs contains -lsfio, and sfio is mis-configured, then it
4944 sometimes (apparently) runs and exits with a 0 status, but with no
4945 output!  It may have to do with sfio's use of _exit vs. exit.
4946
4947 EOQS
4948                                 rp="You have a big problem.  Shall I abort Configure"
4949                                 dflt=y
4950                                 ;;
4951                         esac
4952                         ;;
4953                 esac
4954         else
4955                 echo "The program compiled OK, but exited with status $?." >>try.msg
4956                 rp="You have a problem.  Shall I abort Configure"
4957                 dflt=y
4958         fi
4959 else
4960         echo "I can't compile the test program." >>try.msg
4961         rp="You have a BIG problem.  Shall I abort Configure"
4962         dflt=y
4963 fi
4964 case "$dflt" in
4965 y)
4966         $cat try.msg >&4
4967         case "$knowitall" in
4968         '')
4969                 echo "(The supplied flags or libraries might be incorrect.)"
4970                 ;;
4971         *) dflt=n;;
4972         esac
4973         echo " "
4974         . ./myread
4975         case "$ans" in
4976         n*|N*) ;;
4977         *)      echo "Ok.  Stopping Configure." >&4
4978                 exit 1
4979                 ;;
4980         esac
4981         ;;
4982 n) echo "OK, that should do.";;
4983 esac
4984 $rm -f try try.* core
4985
4986 : define a shorthand compile call
4987 compile='
4988 mc_file=$1;
4989 shift;
4990 $cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs > /dev/null 2>&1;'
4991 : define a shorthand compile call for compilations that should be ok.
4992 compile_ok='
4993 mc_file=$1;
4994 shift;
4995 $cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs;'
4996
4997 : determine filename position in cpp output
4998 echo " "
4999 echo "Computing filename position in cpp output for #include directives..." >&4
5000 case "$osname" in
5001 vos) testaccess=-e ;;
5002 *)   testaccess=-r ;;
5003 esac
5004 echo '#include <stdio.h>' > foo.c
5005 $cat >fieldn <<EOF
5006 $startsh
5007 $cppstdin $cppflags $cppminus <foo.c 2>/dev/null | \
5008 $grep '^[       ]*#.*stdio\.h' | \
5009 while read cline; do
5010         pos=1
5011         set \$cline
5012         while $test \$# -gt 0; do
5013                 if $test $testaccess \`echo \$1 | $tr -d '"'\`; then
5014                         echo "\$pos"
5015                         exit 0
5016                 fi
5017                 shift
5018                 pos=\`expr \$pos + 1\`
5019         done
5020 done
5021 EOF
5022 chmod +x fieldn
5023 fieldn=`./fieldn`
5024 $rm -f foo.c fieldn
5025 case $fieldn in
5026 '') pos='???';;
5027 1) pos=first;;
5028 2) pos=second;;
5029 3) pos=third;;
5030 *) pos="${fieldn}th";;
5031 esac
5032 echo "Your cpp writes the filename in the $pos field of the line."
5033
5034 case "$osname" in
5035 vos) cppfilter="tr '\\\\>' '/' |" ;; # path component separator is >
5036 os2) cppfilter="sed -e 's|\\\\\\\\|/|g' |" ;; # path component separator is \
5037 *)   cppfilter='' ;;
5038 esac
5039 : locate header file
5040 $cat >findhdr <<EOF
5041 $startsh
5042 wanted=\$1
5043 name=''
5044 for usrincdir in $usrinc
5045 do
5046         if test -f \$usrincdir/\$wanted; then
5047                 echo "\$usrincdir/\$wanted"
5048                 exit 0
5049         fi
5050 done
5051 awkprg='{ print \$$fieldn }'
5052 echo "#include <\$wanted>" > foo\$\$.c
5053 $cppstdin $cppminus $cppflags < foo\$\$.c 2>/dev/null | \
5054 $cppfilter $grep "^[    ]*#.*\$wanted" | \
5055 while read cline; do
5056         name=\`echo \$cline | $awk "\$awkprg" | $tr -d '"'\`
5057         case "\$name" in
5058         *[/\\\\]\$wanted) echo "\$name"; exit 1;;
5059         *[\\\\/]\$wanted) echo "\$name"; exit 1;;
5060         *) exit 2;;
5061         esac;
5062 done;
5063 #
5064 # status = 0: grep returned 0 lines, case statement not executed
5065 # status = 1: headerfile found
5066 # status = 2: while loop executed, no headerfile found
5067 #
5068 status=\$?
5069 $rm -f foo\$\$.c;
5070 if test \$status -eq 1; then
5071         exit 0;
5072 fi
5073 exit 1
5074 EOF
5075 chmod +x findhdr
5076
5077 : define an alternate in-header-list? function
5078 inhdr='echo " "; td=$define; tu=$undef; yyy=$@;
5079 cont=true; xxf="echo \"<\$1> found.\" >&4";
5080 case $# in 2) xxnf="echo \"<\$1> NOT found.\" >&4";;
5081 *) xxnf="echo \"<\$1> NOT found, ...\" >&4";;
5082 esac;
5083 case $# in 4) instead=instead;; *) instead="at last";; esac;
5084 while $test "$cont"; do
5085         xxx=`./findhdr $1`
5086         var=$2; eval "was=\$$2";
5087         if $test "$xxx" && $test -r "$xxx";
5088         then eval $xxf;
5089         eval "case \"\$$var\" in $undef) . ./whoa; esac"; eval "$var=\$td";
5090                 cont="";
5091         else eval $xxnf;
5092         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu"; fi;
5093         set $yyy; shift; shift; yyy=$@;
5094         case $# in 0) cont="";;
5095         2) xxf="echo \"but I found <\$1> $instead.\" >&4";
5096                 xxnf="echo \"and I did not find <\$1> either.\" >&4";;
5097         *) xxf="echo \"but I found <\$1\> instead.\" >&4";
5098                 xxnf="echo \"there is no <\$1>, ...\" >&4";;
5099         esac;
5100 done;
5101 while $test "$yyy";
5102 do set $yyy; var=$2; eval "was=\$$2";
5103         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu";
5104         set $yyy; shift; shift; yyy=$@;
5105 done'
5106
5107 : see if stdlib is available
5108 set stdlib.h i_stdlib
5109 eval $inhdr
5110
5111 : check for lengths of integral types
5112 echo " "
5113 case "$intsize" in
5114 '')
5115         echo "Checking to see how big your integers are..." >&4
5116         $cat >try.c <<EOCP
5117 #include <stdio.h>
5118 #$i_stdlib I_STDLIB
5119 #ifdef I_STDLIB
5120 #include <stdlib.h>
5121 #endif
5122 int main()
5123 {
5124         printf("intsize=%d;\n", (int)sizeof(int));
5125         printf("longsize=%d;\n", (int)sizeof(long));
5126         printf("shortsize=%d;\n", (int)sizeof(short));
5127         exit(0);
5128 }
5129 EOCP
5130         set try
5131         if eval $compile_ok && $run ./try > /dev/null; then
5132                 eval `$run ./try`
5133                 echo "Your integers are $intsize bytes long."
5134                 echo "Your long integers are $longsize bytes long."
5135                 echo "Your short integers are $shortsize bytes long."
5136         else
5137                 $cat >&4 <<EOM
5138 !
5139 Help! I can't compile and run the intsize test program: please enlighten me!
5140 (This is probably a misconfiguration in your system or libraries, and
5141 you really ought to fix it.  Still, I'll try anyway.)
5142 !
5143 EOM
5144                 dflt=4
5145                 rp="What is the size of an integer (in bytes)?"
5146                 . ./myread
5147                 intsize="$ans"
5148                 dflt=$intsize
5149                 rp="What is the size of a long integer (in bytes)?"
5150                 . ./myread
5151                 longsize="$ans"
5152                 dflt=2
5153                 rp="What is the size of a short integer (in bytes)?"
5154                 . ./myread
5155                 shortsize="$ans"
5156         fi
5157         ;;
5158 esac
5159 $rm -f try try.*
5160
5161 : check for long long
5162 echo " "
5163 echo "Checking to see if you have long long..." >&4
5164 echo 'int main() { long long x = 7; return 0; }' > try.c
5165 set try
5166 if eval $compile; then
5167         val="$define"
5168         echo "You have long long."
5169 else
5170         val="$undef"
5171         echo "You do not have long long."
5172 fi
5173 $rm try.*
5174 set d_longlong
5175 eval $setvar
5176
5177 : check for length of long long
5178 case "${d_longlong}${longlongsize}" in
5179 $define)
5180         echo " "
5181         echo "Checking to see how big your long longs are..." >&4
5182         $cat >try.c <<'EOCP'
5183 #include <stdio.h>
5184 int main()
5185 {
5186     printf("%d\n", (int)sizeof(long long));
5187     return(0);
5188 }
5189 EOCP
5190         set try
5191         if eval $compile_ok; then
5192                 longlongsize=`$run ./try`
5193                 echo "Your long longs are $longlongsize bytes long."
5194         else
5195                 dflt='8'
5196                 echo " "
5197                 echo "(I can't seem to compile the test program.  Guessing...)"
5198                 rp="What is the size of a long long (in bytes)?"
5199                 . ./myread
5200                 longlongsize="$ans"
5201         fi
5202         if $test "X$longsize" = "X$longlongsize"; then
5203                 echo "(That isn't any different from an ordinary long.)"
5204         fi      
5205         ;;
5206 esac
5207 $rm -f try.* try
5208
5209 : see if inttypes.h is available
5210 : we want a real compile instead of Inhdr because some systems
5211 : have an inttypes.h which includes non-existent headers
5212 echo " "
5213 $cat >try.c <<EOCP
5214 #include <inttypes.h>
5215 int main() {
5216         static int32_t foo32 = 0x12345678;
5217 }
5218 EOCP
5219 set try
5220 if eval $compile; then
5221         echo "<inttypes.h> found." >&4
5222         val="$define"
5223 else
5224         echo "<inttypes.h> NOT found." >&4
5225         val="$undef"
5226 fi
5227 $rm -f try.c try
5228 set i_inttypes
5229 eval $setvar
5230
5231 : check for int64_t
5232 echo " "
5233 echo "Checking to see if you have int64_t..." >&4
5234 $cat >try.c <<EOCP
5235 #include <sys/types.h>
5236 #$i_inttypes I_INTTYPES
5237 #ifdef I_INTTYPES
5238 #include <inttypes.h>
5239 #endif
5240 int main() { int64_t x = 7; }
5241 EOCP
5242 set try
5243 if eval $compile; then
5244         val="$define"
5245         echo "You have int64_t."
5246 else
5247         val="$undef"
5248         echo "You do not have int64_t."
5249 fi
5250 $rm -f try try.*
5251 set d_int64_t
5252 eval $setvar
5253
5254
5255 echo " "
5256 echo "Checking which 64-bit integer type we could use..." >&4
5257
5258 case "$intsize" in
5259 8) val=int
5260    set quadtype
5261    eval $setvar
5262    val='"unsigned int"'
5263    set uquadtype
5264    eval $setvar
5265    quadkind=1
5266    ;;
5267 *) case "$longsize" in
5268    8) val=long
5269       set quadtype
5270       eval $setvar
5271       val='"unsigned long"'
5272       set uquadtype
5273       eval $setvar
5274       quadkind=2
5275       ;;
5276    *) case "$d_longlong:$longlongsize" in
5277       define:8)
5278         val='"long long"'
5279         set quadtype
5280         eval $setvar
5281         val='"unsigned long long"'
5282         set uquadtype
5283         eval $setvar
5284         quadkind=3
5285         ;;
5286       *) case "$d_int64_t" in
5287          define)
5288            val=int64_t
5289            set quadtype
5290            eval $setvar
5291            val=uint64_t
5292            set uquadtype
5293            eval $setvar
5294            quadkind=4
5295            ;;
5296          esac
5297          ;;
5298       esac
5299       ;;
5300    esac
5301    ;;
5302 esac
5303
5304 case "$quadtype" in
5305 '')     echo "Alas, no 64-bit integer types in sight." >&4
5306         d_quad="$undef"
5307         ;;
5308 *)      echo "We could use '$quadtype' for 64-bit integers." >&4
5309         d_quad="$define"
5310         ;;
5311 esac
5312
5313
5314 case "$uselonglong" in
5315 "$define"|true|[yY]*)
5316         cat <<EOM >&4
5317
5318 *** Configure -Duselonglong is deprecated, using -Duse64bitint instead.
5319 EOM
5320         use64bitint="$define"
5321         ;;
5322 esac                          
5323 case "$use64bits" in
5324 "$define"|true|[yY]*)
5325         cat <<EOM >&4
5326
5327 *** Configure -Duse64bits is deprecated, using -Duse64bitint instead.
5328 EOM
5329         use64bitint="$define"
5330         ;;
5331 esac                          
5332 case "$use64bitints" in
5333 "$define"|true|[yY]*)
5334         cat <<EOM >&4
5335
5336 *** There is no Configure -Duse64bitints, using -Duse64bitint instead.
5337 EOM
5338         use64bitint="$define"
5339         ;;
5340 esac                          
5341 case "$use64bitsint" in
5342 "$define"|true|[yY]*)
5343         cat <<EOM >&4
5344
5345 *** There is no Configure -Duse64bitsint, using -Duse64bitint instead.
5346 EOM
5347         use64bitint="$define"
5348         ;;
5349 esac                          
5350 case "$uselonglongs" in
5351 "$define"|true|[yY]*)
5352         cat <<EOM >&4
5353
5354 *** There is no Configure -Duselonglongs, using -Duse64bitint instead.
5355 EOM
5356         use64bitint="$define"
5357         ;;
5358 esac                          
5359 case "$use64bitsall" in
5360 "$define"|true|[yY]*)
5361         cat <<EOM >&4
5362
5363 *** There is no Configure -Duse64bitsall, using -Duse64bitall instead.
5364 EOM
5365         use64bitall="$define"
5366         ;;
5367 esac                          
5368
5369 case "$ccflags" in
5370 *-DUSE_LONG_LONG*|*-DUSE_64_BIT_INT*|*-DUSE_64_BIT_ALL*) use64bitint="$define";;
5371 esac
5372 case "$use64bitall" in
5373 "$define"|true|[yY]*) use64bitint="$define" ;;
5374 esac
5375
5376 case "$longsize" in
5377 8) cat <<EOM
5378
5379 You have natively 64-bit long integers.
5380 EOM
5381    val="$define"
5382    ;;
5383 *) case "$use64bitint" in
5384    "$define"|true|[yY]*) dflt='y';;
5385    *) dflt='n';;
5386    esac
5387    case "$d_quad" in
5388    "$define") ;;
5389    *) dflt='n' ;;
5390    esac
5391    cat <<EOM
5392
5393 Perl can be built to take advantage of 64-bit integer types
5394 on some systems.  To do so, Configure can be run with -Duse64bitint.
5395 Choosing this option will most probably introduce binary incompatibilities.
5396
5397 If this doesn't make any sense to you, just accept the default '$dflt'.
5398 (The default has been chosen based on your configuration.)
5399 EOM
5400    rp='Try to use 64-bit integers, if available?'
5401    . ./myread
5402    case "$ans" in
5403    [yY]*) val="$define" ;;
5404    *)     val="$undef"  ;;
5405    esac
5406    ;;
5407 esac
5408 set use64bitint
5409 eval $setvar
5410
5411 case "$use64bitall" in
5412 "$define"|true|[yY]*) dflt='y' ;;
5413 *) case "$longsize" in
5414    8) dflt='y' ;;
5415    *) dflt='n' ;;
5416    esac
5417    ;;
5418 esac    
5419 cat <<EOM
5420
5421 You may also choose to try maximal 64-bitness.  It means using as much
5422 64-bitness as possible on the platform.  This in turn means even more
5423 binary incompatibilities.  On the other hand, your platform may not
5424 have any more 64-bitness available than what you already have chosen.
5425
5426 If this doesn't make any sense to you, just accept the default '$dflt'.
5427 (The default has been chosen based on your configuration.)
5428 EOM
5429 rp='Try to use maximal 64-bit support, if available?'
5430 . ./myread
5431 case "$ans" in
5432 [yY]*) val="$define" ;;
5433 *)     val="$undef"  ;;
5434 esac
5435 set use64bitall
5436 eval $setvar
5437 case "$use64bitall" in
5438 "$define")
5439         case "$use64bitint" in
5440         "$undef")
5441                 cat <<EOM
5442
5443 Since you have chosen a maximally 64-bit build, I'm also turning on
5444 the use of 64-bit integers.
5445 EOM
5446                 use64bitint="$define" ;;
5447         esac
5448         ;;
5449 esac
5450
5451 case "$use64bitint" in
5452 "$define"|true|[yY]*)
5453 : Look for a hint-file generated 'call-back-unit'.  If the
5454 : user has specified that a 64-bit perl is to be built,
5455 : we may need to set or change some other defaults.
5456         if $test -f use64bitint.cbu; then
5457                 echo "Your platform has some specific hints for 64-bit integers, using them..."
5458                 . ./use64bitint.cbu
5459         fi
5460         case "$longsize" in
5461         4) case "$archname64" in
5462            '') archname64=64int ;;
5463            esac
5464            ;;
5465         esac
5466         ;;
5467 esac
5468
5469 case "$use64bitall" in
5470 "$define"|true|[yY]*)
5471 : Look for a hint-file generated 'call-back-unit'.  If the
5472 : user has specified that a maximally 64-bit perl is to be built,
5473 : we may need to set or change some other defaults.
5474         if $test -f use64bitall.cbu; then
5475                 echo "Your platform has some specific hints for 64-bit builds, using them..."
5476                 . ./use64bitall.cbu
5477         fi
5478         case "$longsize" in
5479         4) case "$archname64" in
5480            ''|64int) archname64=64all ;;
5481            esac
5482            ;;
5483         esac
5484         ;;
5485 esac
5486
5487 case "$d_quad:$use64bitint" in
5488 $undef:$define)
5489         cat >&4 <<EOF
5490
5491 *** You have chosen to use 64-bit integers,
5492 *** but none cannot be found.
5493 *** Please rerun Configure without -Duse64bitint and/or -Dusemorebits.
5494 *** Cannot continue, aborting.
5495
5496 EOF
5497         exit 1
5498         ;;
5499 esac
5500
5501 : check for length of double
5502 echo " "
5503 case "$doublesize" in
5504 '')
5505         echo "Checking to see how big your double precision numbers are..." >&4
5506         $cat >try.c <<EOCP
5507 #include <stdio.h>
5508 #$i_stdlib I_STDLIB
5509 #ifdef I_STDLIB
5510 #include <stdlib.h>
5511 #endif
5512 int main()
5513 {
5514     printf("%d\n", (int)sizeof(double));
5515     exit(0);
5516 }
5517 EOCP
5518         set try
5519         if eval $compile_ok; then
5520                 doublesize=`$run ./try`
5521                 echo "Your double is $doublesize bytes long."
5522         else
5523                 dflt='8'
5524                 echo "(I can't seem to compile the test program.  Guessing...)"
5525                 rp="What is the size of a double precision number (in bytes)?"
5526                 . ./myread
5527                 doublesize="$ans"
5528         fi
5529         ;;
5530 esac
5531 $rm -f try.c try
5532
5533 : check for long doubles
5534 echo " "
5535 echo "Checking to see if you have long double..." >&4
5536 echo 'int main() { long double x = 7.0; }' > try.c
5537 set try
5538 if eval $compile; then
5539         val="$define"
5540         echo "You have long double."
5541 else
5542         val="$undef"
5543         echo "You do not have long double."
5544 fi
5545 $rm try.*
5546 set d_longdbl
5547 eval $setvar
5548
5549 : check for length of long double
5550 case "${d_longdbl}${longdblsize}" in
5551 $define)
5552         echo " "
5553         echo "Checking to see how big your long doubles are..." >&4
5554         $cat >try.c <<'EOCP'
5555 #include <stdio.h>
5556 int main()
5557 {
5558         printf("%d\n", sizeof(long double));
5559 }
5560 EOCP
5561         set try
5562         set try
5563         if eval $compile; then
5564                 longdblsize=`$run ./try`
5565                 echo "Your long doubles are $longdblsize bytes long."
5566         else
5567                 dflt='8'
5568                 echo " "
5569                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
5570                 rp="What is the size of a long double (in bytes)?"
5571                 . ./myread
5572                 longdblsize="$ans"
5573         fi
5574         if $test "X$doublesize" = "X$longdblsize"; then
5575                 echo "(That isn't any different from an ordinary double.)"
5576         fi      
5577         ;;
5578 esac
5579 $rm -f try.* try
5580
5581 : determine the architecture name
5582 echo " "
5583 if xxx=`./loc arch blurfl $pth`; $test -f "$xxx"; then
5584         tarch=`arch`"-$osname"
5585 elif xxx=`./loc uname blurfl $pth`; $test -f "$xxx" ; then
5586         if uname -m > tmparch 2>&1 ; then
5587                 tarch=`$sed -e 's/ *$//' -e 's/ /_/g' \
5588                         -e 's/$/'"-$osname/" tmparch`
5589         else
5590                 tarch="$osname"
5591         fi
5592         $rm -f tmparch
5593 else
5594         tarch="$osname"
5595 fi
5596 case "$myarchname" in
5597 ''|"$tarch") ;;
5598 *)
5599         echo "(Your architecture name used to be $myarchname.)"
5600         archname=''
5601         ;;
5602 esac
5603 case "$targetarch" in
5604 '') ;;
5605 *)  archname=`echo $targetarch|sed 's,^[^-]*-,,'` ;;
5606 esac
5607 myarchname="$tarch"
5608 case "$archname" in
5609 '') dflt="$tarch";;
5610 *) dflt="$archname";;
5611 esac
5612 rp='What is your architecture name'
5613 . ./myread
5614 archname="$ans"
5615 case "$usethreads" in
5616 $define)
5617         echo "Threads selected." >&4
5618         case "$archname" in
5619         *-thread*) echo "...and architecture name already has -thread." >&4
5620                 ;;
5621         *)      archname="$archname-thread"
5622                 echo "...setting architecture name to $archname." >&4
5623                 ;;
5624         esac
5625         ;;
5626 esac
5627 case "$usemultiplicity" in
5628 $define)
5629         echo "Multiplicity selected." >&4
5630         case "$archname" in
5631         *-multi*) echo "...and architecture name already has -multi." >&4
5632                 ;;
5633         *)      archname="$archname-multi"
5634                 echo "...setting architecture name to $archname." >&4
5635                 ;;
5636         esac
5637         ;;
5638 esac
5639 case "$use64bitint$use64bitall" in
5640 *"$define"*)
5641         case "$archname64" in
5642         '')
5643                 echo "This architecture is naturally 64-bit, not changing architecture name." >&4
5644                 ;;
5645         *)
5646                 case "$use64bitint" in
5647                 "$define") echo "64 bit integers selected." >&4 ;;
5648                 esac
5649                 case "$use64bitall" in
5650                 "$define") echo "Maximal 64 bitness selected." >&4 ;;
5651                 esac
5652                 case "$archname" in
5653                 *-$archname64*) echo "...and architecture name already has $archname64." >&4
5654                         ;;
5655                 *)      archname="$archname-$archname64"
5656                         echo "...setting architecture name to $archname." >&4
5657                         ;;
5658                 esac
5659                 ;;
5660         esac
5661 esac
5662 case "$uselongdouble" in
5663 $define)
5664         echo "Long doubles selected." >&4
5665         case "$longdblsize" in
5666         $doublesize)
5667                 echo "...but long doubles are equal to doubles, not changing architecture name." >&4
5668                 ;;
5669         *)
5670                 case "$archname" in
5671                 *-ld*) echo "...and architecture name already has -ld." >&4
5672                         ;;
5673                 *)      archname="$archname-ld"
5674                         echo "...setting architecture name to $archname." >&4
5675                         ;;
5676                 esac
5677                 ;;
5678         esac
5679         ;;
5680 esac
5681 case "$useperlio" in
5682 $define)
5683         echo "Perlio selected." >&4
5684         ;;
5685 *)
5686         echo "Perlio not selected, using stdio." >&4
5687         case "$archname" in
5688         *-stdio*) echo "...and architecture name already has -stdio." >&4
5689                 ;;
5690         *)      archname="$archname-stdio"
5691                 echo "...setting architecture name to $archname." >&4
5692                 ;;
5693         esac
5694         ;;
5695 esac
5696
5697 : determine root of directory hierarchy where package will be installed.
5698 case "$prefix" in
5699 '')
5700         dflt=`./loc . /usr/local /usr/local /local /opt /usr`
5701         ;;
5702 *?/)
5703         dflt=`echo "$prefix" | sed 's/.$//'`
5704         ;;
5705 *)
5706         dflt="$prefix"
5707         ;;
5708 esac
5709 $cat <<EOM
5710
5711 By default, $package will be installed in $dflt/bin, manual pages
5712 under $dflt/man, etc..., i.e. with $dflt as prefix for all
5713 installation directories. Typically this is something like /usr/local.
5714 If you wish to have binaries under /usr/bin but other parts of the
5715 installation under /usr/local, that's ok: you will be prompted
5716 separately for each of the installation directories, the prefix being
5717 only used to set the defaults.
5718
5719 EOM
5720 fn=d~
5721 rp='Installation prefix to use?'
5722 . ./getfile
5723 oldprefix=''
5724 case "$prefix" in
5725 '') ;;
5726 *)
5727         case "$ans" in
5728         "$prefix") ;;
5729         *) oldprefix="$prefix";;
5730         esac
5731         ;;
5732 esac
5733 prefix="$ans"
5734 prefixexp="$ansexp"
5735
5736 case "$afsroot" in
5737 '')     afsroot=/afs ;;
5738 *)      afsroot=$afsroot ;;
5739 esac
5740
5741 : is AFS running?
5742 echo " "
5743 case "$afs" in
5744 $define|true)   afs=true ;;
5745 $undef|false)   afs=false ;;
5746 *)      if test -d $afsroot; then
5747                 afs=true
5748         else
5749                 afs=false
5750         fi
5751         ;;
5752 esac
5753 if $afs; then
5754         echo "AFS may be running... I'll be extra cautious then..." >&4
5755 else
5756         echo "AFS does not seem to be running..." >&4
5757 fi
5758
5759 : determine installation prefix for where package is to be installed.
5760 if $afs; then 
5761 $cat <<EOM
5762
5763 Since you are running AFS, I need to distinguish the directory in which
5764 files will reside from the directory in which they are installed (and from
5765 which they are presumably copied to the former directory by occult means).
5766
5767 EOM
5768         case "$installprefix" in
5769         '') dflt=`echo $prefix | sed 's#^/afs/#/afs/.#'`;;
5770         *) dflt="$installprefix";;
5771         esac
5772 else
5773 $cat <<EOM
5774
5775 In some special cases, particularly when building $package for distribution,
5776 it is convenient to distinguish the directory in which files should be
5777 installed from the directory ($prefix) in which they will
5778 eventually reside.  For most users, these two directories are the same.
5779
5780 EOM
5781         case "$installprefix" in
5782         '') dflt=$prefix ;;
5783         *) dflt=$installprefix;;
5784         esac
5785 fi
5786 fn=d~
5787 rp='What installation prefix should I use for installing files?'
5788 . ./getfile
5789 installprefix="$ans"
5790 installprefixexp="$ansexp"
5791
5792 : set the prefixit variable, to compute a suitable default value
5793 prefixit='case "$3" in
5794 ""|none)
5795         case "$oldprefix" in
5796         "") eval "$1=\"\$$2\"";;
5797         *)
5798                 case "$3" in
5799                 "") eval "$1=";;
5800                 none)
5801                         eval "tp=\"\$$2\"";
5802                         case "$tp" in
5803                         ""|" ") eval "$1=\"\$$2\"";;
5804                         *) eval "$1=";;
5805                         esac;;
5806                 esac;;
5807         esac;;
5808 *)
5809         eval "tp=\"$oldprefix-\$$2-\""; eval "tp=\"$tp\"";
5810         case "$tp" in
5811         --|/*--|\~*--) eval "$1=\"$prefix/$3\"";;
5812         /*-$oldprefix/*|\~*-$oldprefix/*)
5813                 eval "$1=\`echo \$$2 | sed \"s,^$oldprefix,$prefix,\"\`";;
5814         *) eval "$1=\"\$$2\"";;
5815         esac;;
5816 esac'
5817
5818 : get the patchlevel
5819 echo " "
5820 echo "Getting the current patchlevel..." >&4
5821 if $test -r $rsrc/patchlevel.h;then
5822         revision=`awk '/define[         ]+PERL_REVISION/ {print $3}' $rsrc/patchlevel.h`
5823         patchlevel=`awk '/define[       ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
5824         subversion=`awk '/define[       ]+PERL_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
5825         api_revision=`awk '/define[     ]+PERL_API_REVISION/ {print $3}' $rsrc/patchlevel.h`
5826         api_version=`awk '/define[      ]+PERL_API_VERSION/ {print $3}' $rsrc/patchlevel.h`
5827         api_subversion=`awk '/define[   ]+PERL_API_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
5828        perl_patchlevel=`grep ',"DEVEL[0-9][0-9]*"' $rsrc/patchlevel.h|sed 's/[^0-9]//g'`
5829 else
5830         revision=0
5831         patchlevel=0
5832         subversion=0
5833         api_revision=0
5834         api_version=0
5835         api_subversion=0
5836         perl_patchlevel=0
5837         $echo "(You do not have patchlevel.h.  Eek.)"
5838 fi
5839 if $test -r $rsrc/.patch ; then  
5840         if $test "`cat $rsrc/.patch`" -gt "$perl_patchlevel" ; then
5841                 perl_patchlevel=`cat $rsrc/.patch`
5842         fi
5843 fi
5844 : Define a handy string here to avoid duplication in myconfig.SH and configpm.
5845 version_patchlevel_string="version $patchlevel subversion $subversion"
5846 case "$perl_patchlevel" in
5847 0|'') ;;
5848 *) version_patchlevel_string="$version_patchlevel_string patch $perl_patchlevel" ;;
5849 esac
5850
5851 $echo "(You have $package $version_patchlevel_string.)"
5852
5853 case "$osname" in
5854 dos|vms)
5855         : XXX Should be a Configure test for double-dots in filenames.
5856         version=`echo $revision $patchlevel $subversion | \
5857                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
5858         api_versionstring=`echo $api_revision $api_version $api_subversion | \
5859                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
5860         ;;
5861 *)
5862         version=`echo $revision $patchlevel $subversion | \
5863                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
5864         api_versionstring=`echo $api_revision $api_version $api_subversion | \
5865                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
5866         ;;
5867 esac
5868 : Special case the 5.005_xx maintenance series, which used 5.005
5869 : without any subversion label as a subdirectory in $sitelib
5870 if test "${api_revision}${api_version}${api_subversion}" = "550"; then
5871         api_versionstring='5.005'
5872 fi
5873
5874 : determine installation style
5875 : For now, try to deduce it from prefix unless it is already set.
5876 : Reproduce behavior of 5.005 and earlier, maybe drop that in 5.7.
5877 case "$installstyle" in
5878 '')     case "$prefix" in
5879                 *perl*) dflt='lib';;
5880                 *) dflt='lib/perl5' ;;
5881         esac
5882         ;;
5883 *)      dflt="$installstyle" ;;
5884 esac
5885 : Probably not worth prompting for this since we prompt for all
5886 : the directories individually, and the prompt would be too long and
5887 : confusing anyway.
5888 installstyle=$dflt
5889
5890 : determine where private library files go
5891 : Usual default is /usr/local/lib/perl5/$version.
5892 : Also allow things like /opt/perl/lib/$version, since 
5893 : /opt/perl/lib/perl5... would be redundant.
5894 : The default "style" setting is made in installstyle.U
5895 case "$installstyle" in
5896 *lib/perl5*) set dflt privlib lib/$package/$version ;;
5897 *)       set dflt privlib lib/$version ;;
5898 esac
5899 eval $prefixit
5900 $cat <<EOM
5901
5902 There are some auxiliary files for $package that need to be put into a
5903 private library directory that is accessible by everyone.
5904
5905 EOM
5906 fn=d~+
5907 rp='Pathname where the private library files will reside?'
5908 . ./getfile
5909 privlib="$ans"
5910 privlibexp="$ansexp"
5911 : Change installation prefix, if necessary.
5912 if $test X"$prefix" != X"$installprefix"; then
5913         installprivlib=`echo $privlibexp | sed "s#^$prefix#$installprefix#"`
5914 else
5915         installprivlib="$privlibexp"
5916 fi
5917
5918 : set the prefixup variable, to restore leading tilda escape
5919 prefixup='case "$prefixexp" in
5920 "$prefix") ;;
5921 *) eval "$1=\`echo \$$1 | sed \"s,^$prefixexp,$prefix,\"\`";;
5922 esac'
5923
5924 : determine where public architecture dependent libraries go
5925 set archlib archlib
5926 eval $prefixit
5927 : privlib default is /usr/local/lib/$package/$version
5928 : archlib default is /usr/local/lib/$package/$version/$archname
5929 : privlib may have an optional trailing /share.
5930 tdflt=`echo $privlib | $sed 's,/share$,,'`
5931 tdflt=$tdflt/$archname
5932 case "$archlib" in
5933 '')     dflt=$tdflt
5934         ;;
5935 *)      dflt="$archlib"
5936     ;;
5937 esac
5938 $cat <<EOM
5939
5940 $spackage contains architecture-dependent library files.  If you are
5941 sharing libraries in a heterogeneous environment, you might store
5942 these files in a separate location.  Otherwise, you can just include
5943 them with the rest of the public library files.
5944
5945 EOM
5946 fn=d+~
5947 rp='Where do you want to put the public architecture-dependent libraries?'
5948 . ./getfile
5949 archlib="$ans"
5950 archlibexp="$ansexp"
5951 if $test X"$archlib" = X"$privlib"; then
5952         d_archlib="$undef"
5953 else
5954         d_archlib="$define"
5955 fi
5956 : Change installation prefix, if necessary.
5957 if $test X"$prefix" != X"$installprefix"; then
5958         installarchlib=`echo $archlibexp | sed "s#^$prefix#$installprefix#"`
5959 else
5960         installarchlib="$archlibexp"
5961 fi
5962
5963 : see if setuid scripts can be secure
5964 $cat <<EOM
5965
5966 Some kernels have a bug that prevents setuid #! scripts from being
5967 secure.  Some sites have disabled setuid #! scripts because of this.
5968
5969 First let's decide if your kernel supports secure setuid #! scripts.
5970 (If setuid #! scripts would be secure but have been disabled anyway,
5971 don't say that they are secure if asked.)
5972
5973 EOM
5974
5975 val="$undef"
5976 if $test -d /dev/fd; then
5977         echo "#!$ls" >reflect
5978         chmod +x,u+s reflect
5979         ./reflect >flect 2>&1
5980         if $contains "/dev/fd" flect >/dev/null; then
5981                 echo "Congratulations, your kernel has secure setuid scripts!" >&4
5982                 val="$define"
5983         else
5984                 $cat <<EOM
5985 If you are not sure if they are secure, I can check but I'll need a
5986 username and password different from the one you are using right now.
5987 If you don't have such a username or don't want me to test, simply
5988 enter 'none'.
5989
5990 EOM
5991                 rp='Other username to test security of setuid scripts with?'
5992                 dflt='none'
5993                 . ./myread
5994                 case "$ans" in
5995                 n|none)
5996                         case "$d_suidsafe" in
5997                         '')     echo "I'll assume setuid scripts are *not* secure." >&4
5998                                 dflt=n;;
5999                         "$undef")
6000                                 echo "Well, the $hint value is *not* secure." >&4
6001                                 dflt=n;;
6002                         *)      echo "Well, the $hint value *is* secure." >&4
6003                                 dflt=y;;
6004                         esac
6005                         ;;
6006                 *)
6007                         $rm -f reflect flect
6008                         echo "#!$ls" >reflect
6009                         chmod +x,u+s reflect
6010                         echo >flect
6011                         chmod a+w flect
6012                         echo '"su" will (probably) prompt you for '"$ans's password."
6013                         su $ans -c './reflect >flect'
6014                         if $contains "/dev/fd" flect >/dev/null; then
6015                                 echo "Okay, it looks like setuid scripts are secure." >&4
6016                                 dflt=y
6017                         else
6018                                 echo "I don't think setuid scripts are secure." >&4
6019                                 dflt=n
6020                         fi
6021                         ;;
6022                 esac
6023                 rp='Does your kernel have *secure* setuid scripts?'
6024                 . ./myread
6025                 case "$ans" in
6026                 [yY]*)  val="$define";;
6027                 *)      val="$undef";;
6028                 esac
6029         fi
6030 else
6031         echo "I don't think setuid scripts are secure (no /dev/fd directory)." >&4
6032         echo "(That's for file descriptors, not floppy disks.)"
6033         val="$undef"
6034 fi
6035 set d_suidsafe
6036 eval $setvar
6037
6038 $rm -f reflect flect
6039
6040 : now see if they want to do setuid emulation
6041 echo " "
6042 val="$undef"
6043 case "$d_suidsafe" in
6044 "$define")
6045         val="$undef"
6046         echo "No need to emulate SUID scripts since they are secure here." >&4
6047         ;;
6048 *)
6049         $cat <<EOM
6050 Some systems have disabled setuid scripts, especially systems where
6051 setuid scripts cannot be secure.  On systems where setuid scripts have
6052 been disabled, the setuid/setgid bits on scripts are currently
6053 useless.  It is possible for $package to detect those bits and emulate
6054 setuid/setgid in a secure fashion.  This emulation will only work if
6055 setuid scripts have been disabled in your kernel.
6056
6057 EOM
6058         case "$d_dosuid" in
6059         "$define") dflt=y ;;
6060         *) dflt=n ;;
6061         esac
6062         rp="Do you want to do setuid/setgid emulation?"
6063         . ./myread
6064         case "$ans" in
6065         [yY]*)  val="$define";;
6066         *)      val="$undef";;
6067         esac
6068         ;;
6069 esac
6070 set d_dosuid
6071 eval $setvar
6072
6073 : see if this is a malloc.h system
6074 : we want a real compile instead of Inhdr because some systems have a
6075 : malloc.h that just gives a compile error saying to use stdlib.h instead
6076 echo " "
6077 $cat >try.c <<EOCP
6078 #include <stdlib.h>
6079 #include <malloc.h>
6080 int main () { return 0; }
6081 EOCP
6082 set try
6083 if eval $compile; then
6084     echo "<malloc.h> found." >&4
6085     val="$define"
6086 else
6087     echo "<malloc.h> NOT found." >&4
6088     val="$undef"
6089 fi
6090 $rm -f try.c try
6091 set i_malloc
6092 eval $setvar
6093
6094 : check for void type
6095 echo " "
6096 echo "Checking to see how well your C compiler groks the void type..." >&4
6097 case "$voidflags" in
6098 '')
6099         $cat >try.c <<EOCP
6100 #$i_stdlib I_STDLIB
6101 #ifdef I_STDLIB
6102 #include <stdlib.h>
6103 #endif
6104 #if TRY & 1
6105 void sub() {
6106 #else
6107 sub() {
6108 #endif
6109         extern void moo();      /* function returning void */
6110         void (*goo)();          /* ptr to func returning void */
6111 #if TRY & 8
6112         void *hue;              /* generic ptr */
6113 #endif
6114 #if TRY & 2
6115         void (*foo[10])();
6116 #endif
6117
6118 #if TRY & 4
6119         if(goo == moo) {
6120                 exit(0);
6121         }
6122 #endif
6123         exit(0);
6124 }
6125 int main() { sub(); }
6126 EOCP
6127         if $cc $ccflags -c -DTRY=$defvoidused try.c >.out 2>&1 ; then
6128                 voidflags=$defvoidused
6129         echo "Good.  It appears to support void to the level $package wants.">&4
6130                 if $contains warning .out >/dev/null 2>&1; then
6131                         echo "However, you might get some warnings that look like this:"
6132                         $cat .out
6133                 fi
6134         else
6135 echo "Hmm, your compiler has some difficulty with void. Checking further..." >&4
6136                 if $cc $ccflags -c -DTRY=1 try.c >/dev/null 2>&1; then
6137                         echo "It supports 1..."
6138                         if $cc $ccflags -c -DTRY=3 try.c >/dev/null 2>&1; then
6139                                 echo "It also supports 2..."
6140                                 if $cc $ccflags -c -DTRY=7 try.c >/dev/null 2>&1; then
6141                                         voidflags=7
6142                                         echo "And it supports 4 but not 8 definitely."
6143                                 else
6144                                         echo "It doesn't support 4..."
6145                                         if $cc $ccflags -c -DTRY=11 try.c >/dev/null 2>&1; then
6146                                                 voidflags=11
6147                                                 echo "But it supports 8."
6148                                         else
6149                                                 voidflags=3
6150                                                 echo "Neither does it support 8."
6151                                         fi
6152                                 fi
6153                         else
6154                                 echo "It does not support 2..."
6155                                 if $cc $ccflags -c -DTRY=13 try.c >/dev/null 2>&1; then
6156                                         voidflags=13
6157                                         echo "But it supports 4 and 8."
6158                                 else
6159                                         if $cc $ccflags -c -DTRY=5 try.c >/dev/null 2>&1; then
6160                                                 voidflags=5
6161                                                 echo "And it supports 4 but has not heard about 8."
6162                                         else
6163                                                 echo "However it supports 8 but not 4."
6164                                         fi
6165                                 fi
6166                         fi
6167                 else
6168                         echo "There is no support at all for void."
6169                         voidflags=0
6170                 fi
6171         fi
6172 esac
6173 case "$voidflags" in
6174 "$defvoidused") ;;
6175 *)      $cat >&4 <<'EOM'
6176   Support flag bits are:
6177     1: basic void declarations.
6178     2: arrays of pointers to functions returning void.
6179     4: operations between pointers to and addresses of void functions.
6180     8: generic void pointers.
6181 EOM
6182         dflt="$voidflags";
6183         rp="Your void support flags add up to what?"
6184         . ./myread
6185         voidflags="$ans"
6186         ;;
6187 esac
6188 $rm -f try.* .out
6189
6190 : check for length of pointer
6191 echo " "
6192 case "$ptrsize" in
6193 '')
6194         echo "Checking to see how big your pointers are..." >&4
6195         if test "$voidflags" -gt 7; then
6196                 echo '#define VOID_PTR char *' > try.c
6197         else
6198                 echo '#define VOID_PTR void *' > try.c
6199         fi
6200         $cat >>try.c <<EOCP
6201 #include <stdio.h>
6202 #$i_stdlib I_STDLIB
6203 #ifdef I_STDLIB
6204 #include <stdlib.h>
6205 #endif
6206 int main()
6207 {
6208     printf("%d\n", (int)sizeof(VOID_PTR));
6209     exit(0);
6210 }
6211 EOCP
6212         set try
6213         if eval $compile_ok; then
6214                 ptrsize=`$run ./try`
6215                 echo "Your pointers are $ptrsize bytes long."
6216         else
6217                 dflt='4'
6218                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
6219                 rp="What is the size of a pointer (in bytes)?"
6220                 . ./myread
6221                 ptrsize="$ans"
6222         fi
6223         ;;
6224 esac
6225 $rm -f try.c try
6226 case "$use64bitall" in
6227 "$define"|true|[yY]*)
6228         case "$ptrsize" in
6229         4)      cat <<EOM >&4
6230
6231 *** You have chosen a maximally 64-bit build,
6232 *** but your pointers are only 4 bytes wide.
6233 *** Please rerun Configure without -Duse64bitall.
6234 EOM
6235                 case "$d_quad" in
6236                 define)
6237                         cat <<EOM >&4
6238 *** Since you have quads, you could possibly try with -Duse64bitint.
6239 EOM
6240                         ;;
6241                 esac
6242                 cat <<EOM >&4
6243 *** Cannot continue, aborting.
6244
6245 EOM
6246
6247                 exit 1
6248                 ;;
6249         esac
6250         ;;
6251 esac
6252
6253
6254 : determine which malloc to compile in
6255 echo " "
6256 case "$usemymalloc" in
6257 [yY]*|true|$define)     dflt='y' ;;
6258 [nN]*|false|$undef)     dflt='n' ;;
6259 *)      case "$ptrsize" in
6260         4) dflt='y' ;;
6261         *) dflt='n' ;;
6262         esac
6263         ;;
6264 esac
6265 rp="Do you wish to attempt to use the malloc that comes with $package?"
6266 . ./myread
6267 usemymalloc="$ans"
6268 case "$ans" in
6269 y*|true)
6270         usemymalloc='y'
6271         mallocsrc='malloc.c'
6272         mallocobj="malloc$_o"
6273         d_mymalloc="$define"
6274         case "$libs" in
6275         *-lmalloc*)
6276                 : Remove malloc from list of libraries to use
6277                 echo "Removing unneeded -lmalloc from library list" >&4
6278                 set `echo X $libs | $sed -e 's/-lmalloc / /' -e 's/-lmalloc$//'`
6279                 shift
6280                 libs="$*"
6281                 echo "libs = $libs" >&4
6282                 ;;
6283         esac
6284         ;;
6285 *)
6286         usemymalloc='n'
6287         mallocsrc=''
6288         mallocobj=''
6289         d_mymalloc="$undef"
6290         ;;
6291 esac
6292
6293 : compute the return types of malloc and free
6294 echo " "
6295 $cat >malloc.c <<END
6296 #$i_malloc I_MALLOC
6297 #$i_stdlib I_STDLIB
6298 #include <stdio.h>
6299 #include <sys/types.h>
6300 #ifdef I_MALLOC
6301 #include <malloc.h>
6302 #endif
6303 #ifdef I_STDLIB
6304 #include <stdlib.h>
6305 #endif
6306 #ifdef TRY_MALLOC
6307 void *malloc();
6308 #endif
6309 #ifdef TRY_FREE
6310 void free();
6311 #endif
6312 END
6313 case "$malloctype" in
6314 '')
6315         if $cc $ccflags -c -DTRY_MALLOC malloc.c >/dev/null 2>&1; then
6316                 malloctype='void *'
6317         else
6318                 malloctype='char *'
6319         fi
6320         ;;
6321 esac
6322 echo "Your system wants malloc to return '$malloctype', it would seem." >&4
6323
6324 case "$freetype" in
6325 '')
6326         if $cc $ccflags -c -DTRY_FREE malloc.c >/dev/null 2>&1; then
6327                 freetype='void'
6328         else
6329                 freetype='int'
6330         fi
6331         ;;
6332 esac
6333 echo "Your system uses $freetype free(), it would seem." >&4
6334 $rm -f malloc.[co]
6335 $cat <<EOM
6336
6337 After $package is installed, you may wish to install various
6338 add-on modules and utilities.  Typically, these add-ons will
6339 be installed under $prefix with the rest
6340 of this package.  However, you may wish to install such add-ons
6341 elsewhere under a different prefix.
6342
6343 If you do not wish to put everything under a single prefix, that's
6344 ok.  You will be prompted for the individual locations; this siteprefix
6345 is only used to suggest the defaults.
6346
6347 The default should be fine for most people.
6348
6349 EOM
6350 fn=d~+
6351 rp='Installation prefix to use for add-on modules and utilities?'
6352 : XXX Here might be another good place for an installstyle setting.
6353 case "$siteprefix" in
6354 '') dflt=$prefix ;;
6355 *)  dflt=$siteprefix ;;
6356 esac
6357 . ./getfile
6358 : XXX Prefixit unit does not yet support siteprefix and vendorprefix
6359 oldsiteprefix=''
6360 case "$siteprefix" in
6361 '') ;;
6362 *)      case "$ans" in
6363         "$prefix") ;;
6364         *) oldsiteprefix="$prefix";;
6365         esac
6366         ;;
6367 esac
6368 siteprefix="$ans"
6369 siteprefixexp="$ansexp"
6370
6371 : determine where site specific libraries go.
6372 : Usual default is /usr/local/lib/perl5/site_perl/$version
6373 : The default "style" setting is made in installstyle.U
6374 : XXX No longer works with Prefixit stuff.
6375 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6376 case "$sitelib" in
6377 '') case "$installstyle" in
6378         *lib/perl5*) dflt=$siteprefix/lib/$package/site_$prog/$version ;;
6379         *)       dflt=$siteprefix/lib/site_$prog/$version ;;
6380         esac
6381         ;;
6382 *)      dflt="$sitelib"
6383         ;;
6384 esac
6385 $cat <<EOM
6386
6387 The installation process will create a directory for
6388 site-specific extensions and modules.  Most users find it convenient
6389 to place all site-specific files in this directory rather than in the
6390 main distribution directory.
6391
6392 EOM
6393 fn=d~+
6394 rp='Pathname for the site-specific library files?'
6395 . ./getfile
6396 sitelib="$ans"
6397 sitelibexp="$ansexp"
6398 sitelib_stem=`echo "$sitelibexp" | sed "s,/$version$,,"`
6399 : Change installation prefix, if necessary.
6400 if $test X"$prefix" != X"$installprefix"; then
6401         installsitelib=`echo $sitelibexp | $sed "s#^$prefix#$installprefix#"`
6402 else
6403         installsitelib="$sitelibexp"
6404 fi
6405
6406 : determine where site specific architecture-dependent libraries go.
6407 : sitelib  default is /usr/local/lib/perl5/site_perl/$version
6408 : sitearch default is /usr/local/lib/perl5/site_perl/$version/$archname
6409 : sitelib may have an optional trailing /share.
6410 case "$sitearch" in
6411 '')     dflt=`echo $sitelib | $sed 's,/share$,,'`
6412         dflt="$dflt/$archname"
6413         ;;
6414 *)      dflt="$sitearch"
6415         ;;
6416 esac
6417 set sitearch sitearch none
6418 eval $prefixit
6419 $cat <<EOM
6420
6421 The installation process will also create a directory for
6422 architecture-dependent site-specific extensions and modules.
6423
6424 EOM
6425 fn=d~+
6426 rp='Pathname for the site-specific architecture-dependent library files?'
6427 . ./getfile
6428 sitearch="$ans"
6429 sitearchexp="$ansexp"
6430 : Change installation prefix, if necessary.
6431 if $test X"$prefix" != X"$installprefix"; then
6432         installsitearch=`echo $sitearchexp | sed "s#^$prefix#$installprefix#"`
6433 else
6434         installsitearch="$sitearchexp"
6435 fi
6436
6437 $cat <<EOM
6438
6439 The installation process will also create a directory for
6440 vendor-supplied add-ons.  Vendors who supply perl with their system
6441 may find it convenient to place all vendor-supplied files in this
6442 directory rather than in the main distribution directory.  This will
6443 ease upgrades between binary-compatible maintenance versions of perl.
6444
6445 Of course you may also use these directories in whatever way you see
6446 fit.  For example, you might use them to access modules shared over a
6447 company-wide network.
6448
6449 The default answer should be fine for most people.
6450 This causes further questions about vendor add-ons to be skipped
6451 and no vendor-specific directories will be configured for perl.
6452
6453 EOM
6454 rp='Do you want to configure vendor-specific add-on directories?'
6455 case "$usevendorprefix" in
6456 define|true|[yY]*) dflt=y ;;
6457 *)      : User may have set vendorprefix directly on Configure command line.
6458         case "$vendorprefix" in
6459         ''|' ') dflt=n ;;
6460         *)      dflt=y ;;
6461         esac
6462         ;;
6463 esac
6464 . ./myread
6465 case "$ans" in
6466 [yY]*)  fn=d~+
6467         rp='Installation prefix to use for vendor-supplied add-ons?'
6468         case "$vendorprefix" in
6469         '') dflt='' ;;
6470         *)  dflt=$vendorprefix ;;
6471         esac
6472         . ./getfile
6473         : XXX Prefixit unit does not yet support siteprefix and vendorprefix
6474         oldvendorprefix=''
6475         case "$vendorprefix" in
6476         '') ;;
6477         *)      case "$ans" in
6478                 "$prefix") ;;
6479                 *) oldvendorprefix="$prefix";;
6480                 esac
6481                 ;;
6482         esac
6483         usevendorprefix="$define"
6484         vendorprefix="$ans"
6485         vendorprefixexp="$ansexp"
6486         ;;
6487 *)      usevendorprefix="$undef"
6488         vendorprefix=''
6489         vendorprefixexp=''
6490         ;;
6491 esac
6492
6493 case "$vendorprefix" in
6494 '')     d_vendorlib="$undef"
6495         vendorlib=''
6496         vendorlibexp=''
6497         ;;
6498 *)      d_vendorlib="$define"
6499         : determine where vendor-supplied modules go.
6500         : Usual default is /usr/local/lib/perl5/vendor_perl/$version
6501         case "$vendorlib" in
6502         '')
6503                 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6504                 case "$installstyle" in
6505                 *lib/perl5*) dflt=$vendorprefix/lib/$package/vendor_$prog/$version ;;
6506                 *)           dflt=$vendorprefix/lib/vendor_$prog/$version ;;
6507                 esac
6508                 ;;
6509         *)      dflt="$vendorlib"
6510                 ;;
6511         esac
6512         fn=d~+
6513         rp='Pathname for the vendor-supplied library files?'
6514         . ./getfile
6515         vendorlib="$ans"
6516         vendorlibexp="$ansexp"
6517         ;;
6518 esac
6519 vendorlib_stem=`echo "$vendorlibexp" | sed "s,/$version$,,"`
6520 : Change installation prefix, if necessary.
6521 if $test X"$prefix" != X"$installprefix"; then
6522         installvendorlib=`echo $vendorlibexp | $sed "s#^$prefix#$installprefix#"`
6523 else
6524         installvendorlib="$vendorlibexp"
6525 fi
6526
6527 case "$vendorprefix" in
6528 '')     d_vendorarch="$undef"
6529         vendorarch=''
6530         vendorarchexp=''
6531         ;;
6532 *)      d_vendorarch="$define"
6533         : determine where vendor-supplied architecture-dependent libraries go.
6534         : vendorlib  default is /usr/local/lib/perl5/vendor_perl/$version
6535         : vendorarch default is /usr/local/lib/perl5/vendor_perl/$version/$archname
6536         : vendorlib may have an optional trailing /share.
6537         case "$vendorarch" in
6538         '')     dflt=`echo $vendorlib | $sed 's,/share$,,'`
6539                 dflt="$dflt/$archname"
6540                 ;;
6541         *)      dflt="$vendorarch" ;;
6542         esac
6543         fn=d~+
6544         rp='Pathname for vendor-supplied architecture-dependent files?'
6545         . ./getfile
6546         vendorarch="$ans"
6547         vendorarchexp="$ansexp"
6548         ;;
6549 esac
6550 : Change installation prefix, if necessary.
6551 if $test X"$prefix" != X"$installprefix"; then
6552         installvendorarch=`echo $vendorarchexp | sed "s#^$prefix#$installprefix#"`
6553 else
6554         installvendorarch="$vendorarchexp"
6555 fi
6556
6557 : Final catch-all directories to search
6558 $cat <<EOM
6559
6560 Lastly, you can have perl look in other directories for extensions and
6561 modules in addition to those already specified.
6562 These directories will be searched after 
6563         $sitearch 
6564         $sitelib 
6565 EOM
6566 test X"$vendorlib" != "X" && echo '     ' $vendorlib
6567 test X"$vendorarch" != "X" && echo '    ' $vendorarch
6568 echo ' '
6569 case "$otherlibdirs" in
6570 ''|' ') dflt='none' ;;
6571 *)      dflt="$otherlibdirs" ;;
6572 esac
6573 $cat <<EOM
6574 Enter a colon-separated set of extra paths to include in perl's @INC
6575 search path, or enter 'none' for no extra paths.
6576
6577 EOM
6578
6579 rp='Colon-separated list of additional directories for perl to search?'
6580 . ./myread
6581 case "$ans" in
6582 ' '|''|none)    otherlibdirs=' ' ;;     
6583 *)      otherlibdirs="$ans" ;;
6584 esac
6585 case "$otherlibdirs" in
6586 ' ') val=$undef ;;
6587 *)      val=$define ;;
6588 esac
6589 set d_perl_otherlibdirs
6590 eval $setvar
6591
6592 : Cruising for prototypes
6593 echo " "
6594 echo "Checking out function prototypes..." >&4
6595 $cat >prototype.c <<EOCP
6596 #$i_stdlib I_STDLIB
6597 #ifdef I_STDLIB
6598 #include <stdlib.h>
6599 #endif
6600 int main(int argc, char *argv[]) {
6601         exit(0);}
6602 EOCP
6603 if $cc $ccflags -c prototype.c >prototype.out 2>&1 ; then
6604         echo "Your C compiler appears to support function prototypes."
6605         val="$define"
6606 else
6607         echo "Your C compiler doesn't seem to understand function prototypes."
6608         val="$undef"
6609 fi
6610 set prototype
6611 eval $setvar
6612 $rm -f prototype*
6613
6614 case "$prototype" in
6615 "$define") ;;
6616 *)      ansi2knr='ansi2knr'
6617         echo " "
6618         cat <<EOM >&4
6619
6620 $me:  FATAL ERROR:
6621 This version of $package can only be compiled by a compiler that 
6622 understands function prototypes.  Unfortunately, your C compiler 
6623         $cc $ccflags
6624 doesn't seem to understand them.  Sorry about that.
6625
6626 If GNU cc is available for your system, perhaps you could try that instead.  
6627
6628 Eventually, we hope to support building Perl with pre-ANSI compilers.
6629 If you would like to help in that effort, please contact <perlbug@perl.org>.
6630
6631 Aborting Configure now.
6632 EOM
6633         exit 2
6634         ;;
6635 esac
6636
6637 : determine where public executables go
6638 echo " "
6639 set dflt bin bin
6640 eval $prefixit
6641 fn=d~
6642 rp='Pathname where the public executables will reside?'
6643 . ./getfile
6644 if $test "X$ansexp" != "X$binexp"; then
6645         installbin=''
6646 fi
6647 bin="$ans"
6648 binexp="$ansexp"
6649 : Change installation prefix, if necessary.
6650 : XXX Bug? -- ignores Configure -Dinstallprefix setting.
6651 if $test X"$prefix" != X"$installprefix"; then
6652         installbin=`echo $binexp | sed "s#^$prefix#$installprefix#"`
6653 else
6654         installbin="$binexp"
6655 fi
6656
6657 echo " "
6658 case "$extras" in
6659 '') dflt='n';;
6660 *) dflt='y';;
6661 esac
6662 cat <<EOM
6663 Perl can be built with extra modules or bundles of modules which
6664 will be fetched from the CPAN and installed alongside Perl.
6665
6666 Notice that you will need access to the CPAN; either via the Internet,
6667 or a local copy, for example a CD-ROM or a local CPAN mirror.  (You will
6668 be asked later to configure the CPAN.pm module which will in turn do
6669 the installation of the rest of the extra modules or bundles.)
6670
6671 Notice also that if the modules require any external software such as
6672 libraries and headers (the libz library and the zlib.h header for the
6673 Compress::Zlib module, for example) you MUST have any such software
6674 already installed, this configuration process will NOT install such
6675 things for you.
6676
6677 If this doesn't make any sense to you, just accept the default '$dflt'.
6678 EOM
6679 rp='Install any extra modules (y or n)?'
6680 . ./myread
6681 case "$ans" in
6682 y|Y)
6683         cat <<EOM
6684
6685 Please list any extra modules or bundles to be installed from CPAN,
6686 with spaces between the names.  The names can be in any format the
6687 'install' command of CPAN.pm will understand.  (Answer 'none',
6688 without the quotes, to install no extra modules or bundles.)
6689 EOM
6690         rp='Extras?'
6691         dflt="$extras"
6692         . ./myread
6693         extras="$ans"
6694 esac
6695 case "$extras" in
6696 ''|'none')
6697         val=''
6698         $rm -f ../extras.lst
6699         ;;
6700 *)      echo "(Saving the list of extras for later...)"
6701         echo "$extras" > ../extras.lst
6702         val="'$extras'"
6703         ;;
6704 esac
6705 set extras
6706 eval $setvar
6707 echo " "
6708
6709 : determine where html pages for programs go
6710 set html1dir html1dir none
6711 eval $prefixit
6712 $cat <<EOM
6713
6714 If you wish to install html files for programs in $spackage, indicate 
6715 the appropriate directory here.  To skip installing html files,
6716 answer "none".
6717 EOM
6718 case "$html1dir" in
6719 ''|none|$undef|' ') dflt=none ;;
6720 *) dflt=$html1dir ;;
6721 esac
6722 fn=dn+~
6723 rp="Directory for the main $spackage html pages?"
6724 . ./getfile
6725 html1dir="$ans"
6726 html1direxp="$ansexp"
6727 : Use ' ' for none so value is preserved next time through Configure
6728 $test X"$html1dir" = "X" && html1dir=' '
6729 : Change installation prefix, if necessary.
6730 if $test X"$prefix" != X"$installprefix"; then
6731         installhtml1dir=`echo $html1direxp | sed "s#^$prefix#$installprefix#"`
6732 else
6733         installhtml1dir="$html1direxp"
6734 fi
6735
6736 : determine where html pages for libraries and modules go
6737 set html3dir html3dir none
6738 eval $prefixit
6739 $cat <<EOM
6740
6741 If you wish to install html files for modules associated with $spackage,
6742 indicate the appropriate directory here.  To skip installing html files,
6743 answer "none".
6744 EOM
6745 : There is no obvious default.  If they have specified html1dir, then
6746 : try to key off that, possibly changing .../html1 into .../html3.
6747 case "$html3dir" in
6748 '') html3dir=`echo "$html1dir" | $sed 's/1$/3$/'` ;;
6749 *) dflt=$html3dir ;;
6750 esac
6751 fn=dn+~
6752 rp="Directory for the $spackage module html pages?"
6753 . ./getfile
6754 html3dir="$ans"
6755 html3direxp="$ansexp"
6756 : Use ' ' for none so value is preserved next time through Configure
6757 $test X"$html3dir" = "X" && html3dir=' '
6758 : Change installation prefix, if necessary.
6759 if $test X"$prefix" != X"$installprefix"; then
6760         installhtml3dir=`echo $html3direxp | sed "s#^$prefix#$installprefix#"`
6761 else
6762         installhtml3dir="$html3direxp"
6763 fi
6764
6765 : Find perl5.005 or later.
6766 echo "Looking for a previously installed perl5.005 or later... "
6767 case "$perl5" in
6768 '')     for tdir in `echo "$binexp$path_sep$PATH" | $sed "s/$path_sep/ /g"`; do
6769                 : Check if this perl is recent and can load a simple module
6770                 if $test -x $tdir/perl$exe_ext && $tdir/perl -Mless -e 'use 5.005;' >/dev/null 2>&1; then
6771                         perl5=$tdir/perl
6772                         break;
6773                 elif $test -x $tdir/perl5$exe_ext && $tdir/perl5 -Mless -e 'use 5.005;' >/dev/null 2>&1; then
6774                         perl5=$tdir/perl5
6775                         break;
6776                 fi
6777         done
6778         ;;
6779 *)      perl5="$perl5"
6780         ;;
6781 esac
6782 case "$perl5" in
6783 '')     echo "None found.  That's ok.";;
6784 *)      echo "Using $perl5." ;;
6785 esac
6786
6787 : Determine list of previous versions to include in @INC
6788 $cat > getverlist <<EOPL
6789 #!$perl5 -w
6790 use File::Basename;
6791 \$api_versionstring = "$api_versionstring";
6792 \$version = "$version";
6793 \$stem = "$sitelib_stem";
6794 \$archname = "$archname";
6795 EOPL
6796         $cat >> getverlist <<'EOPL'
6797 # Can't have leading @ because metaconfig interprets it as a command!
6798 ;@inc_version_list=();
6799 # XXX Redo to do opendir/readdir? 
6800 if (-d $stem) {
6801     chdir($stem);
6802     ;@candidates = glob("5.*");
6803 }
6804 else {
6805     ;@candidates = ();
6806 }
6807
6808 # XXX ToDo:  These comparisons must be reworked when two-digit
6809 # subversions come along, so that 5.7.10 compares as greater than
6810 # 5.7.3!  By that time, hope that 5.6.x is sufficiently
6811 # widespread that we can use the built-in version vectors rather
6812 # than reinventing them here.  For 5.6.0, however, we must
6813 # assume this script will likely be run by 5.005_0x.  --AD 1/2000.
6814 foreach $d (@candidates) {
6815     if ($d lt $version) {
6816         if ($d ge $api_versionstring) {
6817             unshift(@inc_version_list, grep { -d } "$d/$archname", $d);
6818         }
6819         elsif ($d ge "5.005") {
6820             unshift(@inc_version_list, grep { -d } $d);
6821         }
6822     }
6823     else {
6824         # Skip newer version.  I.e. don't look in
6825         # 5.7.0 if we're installing 5.6.1.
6826     }
6827 }
6828
6829 if (@inc_version_list) {
6830     print join(' ', @inc_version_list);
6831 }
6832 else {
6833     # Blank space to preserve value for next Configure run.
6834     print " ";
6835 }
6836 EOPL
6837 chmod +x getverlist
6838 case "$inc_version_list" in
6839 '')     if test -x "$perl5$exe_ext"; then
6840                 dflt=`$perl5 getverlist`
6841         else
6842                 dflt='none'
6843         fi
6844         ;;
6845 $undef) dflt='none' ;;
6846 *)  eval dflt=\"$inc_version_list\" ;;
6847 esac
6848 case "$dflt" in
6849 ''|' ') dflt=none ;;
6850 esac
6851 case "$dflt" in
6852 5.005) dflt=none ;;
6853 esac
6854 $cat <<EOM
6855
6856 In order to ease the process of upgrading, this version of perl 
6857 can be configured to use modules built and installed with earlier 
6858 versions of perl that were installed under $prefix.  Specify here
6859 the list of earlier versions that this version of perl should check.
6860 If Configure detected no earlier versions of perl installed under
6861 $prefix, then the list will be empty.  Answer 'none' to tell perl
6862 to not search earlier versions.
6863
6864 The default should almost always be sensible, so if you're not sure,
6865 just accept the default.
6866 EOM
6867
6868 rp='List of earlier versions to include in @INC?'
6869 . ./myread
6870 case "$ans" in
6871 [Nn]one|''|' ') inc_version_list=' ' ;;
6872 *) inc_version_list="$ans" ;;
6873 esac
6874 case "$inc_version_list" in
6875 ''|' ') 
6876         inc_version_list_init='0';;
6877 *)      inc_version_list_init=`echo $inc_version_list |
6878                 $sed -e 's/^/"/' -e 's/ /","/g' -e 's/$/",0/'`
6879         ;;
6880 esac
6881 $rm -f getverlist
6882
6883 : determine whether to install perl also as /usr/bin/perl
6884
6885 echo " "
6886 if $test -d /usr/bin -a "X$installbin" != X/usr/bin; then
6887         $cat <<EOM
6888 Many scripts expect perl to be installed as /usr/bin/perl.
6889
6890 If you want to, I can install the perl you are about to compile
6891 as /usr/bin/perl (in addition to $bin/perl).
6892 EOM
6893         if test -f /usr/bin/perl; then
6894             $cat <<EOM
6895
6896 However, please note that because you already have a /usr/bin/perl,
6897 overwriting that with a new Perl would very probably cause problems.
6898 Therefore I'm assuming you don't want to do that (unless you insist).
6899
6900 EOM
6901             case "$installusrbinperl" in
6902             "$define"|[yY]*)    dflt='y';;
6903             *)                  dflt='n';;
6904             esac
6905         else
6906             $cat <<EOM
6907
6908 Since you don't have a /usr/bin/perl I'm assuming creating one is okay.
6909
6910 EOM
6911             case "$installusrbinperl" in
6912             "$undef"|[nN]*)     dflt='n';;
6913             *)                  dflt='y';;
6914             esac
6915         fi
6916         rp="Do you want to install perl as /usr/bin/perl?"
6917         . ./myread
6918         case "$ans" in
6919         [yY]*)  val="$define";;
6920         *)      val="$undef" ;;
6921         esac
6922 else
6923         val="$undef"
6924 fi
6925 set installusrbinperl
6926 eval $setvar
6927
6928 echo " "
6929 echo "Checking for GNU C Library..." >&4
6930 cat >try.c <<'EOCP'
6931 /* Find out version of GNU C library.  __GLIBC__ and __GLIBC_MINOR__
6932    alone are insufficient to distinguish different versions, such as
6933    2.0.6 and 2.0.7.  The function gnu_get_libc_version() appeared in
6934    libc version 2.1.0.      A. Dougherty,  June 3, 2002.
6935 */
6936 #include <stdio.h>
6937 int main(void)
6938 {
6939 #ifdef __GLIBC__
6940 #   ifdef __GLIBC_MINOR__
6941 #       if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
6942 #           include <gnu/libc-version.h>
6943             printf("%s\n",  gnu_get_libc_version());
6944 #       else
6945             printf("%d.%d\n",  __GLIBC__, __GLIBC_MINOR__);
6946 #       endif
6947 #   else
6948         printf("%d\n",  __GLIBC__);
6949 #   endif
6950     return 0;
6951 #else
6952     return 1;
6953 #endif
6954 }
6955 EOCP
6956 set try
6957 if eval $compile_ok && $run ./try > glibc.ver; then
6958         val="$define"
6959         gnulibc_version=`$cat glibc.ver`
6960         echo "You are using the GNU C Library version $gnulibc_version"
6961 else
6962         val="$undef"
6963         gnulibc_version=''
6964         echo "You are not using the GNU C Library"
6965 fi
6966 $rm -f try try.* glibc.ver
6967 set d_gnulibc
6968 eval $setvar
6969
6970 : see if nm is to be used to determine whether a symbol is defined or not
6971 case "$usenm" in
6972 '')
6973         dflt=''
6974         case "$d_gnulibc" in
6975         "$define")
6976                 echo " "
6977                 echo "nm probably won't work on the GNU C Library." >&4
6978                 dflt=n
6979                 ;;
6980         esac
6981         case "$dflt" in
6982         '') 
6983                 if $test "$osname" = aix -a "X$PASE" != "Xdefine" -a ! -f /lib/syscalls.exp; then
6984                         echo " "
6985                         echo "Whoops!  This is an AIX system without /lib/syscalls.exp!" >&4
6986                         echo "'nm' won't be sufficient on this sytem." >&4
6987                         dflt=n
6988                 fi
6989                 ;;
6990         esac
6991         case "$dflt" in
6992         '') dflt=`$egrep 'inlibc|csym' $rsrc/Configure | wc -l 2>/dev/null`
6993                 if $test $dflt -gt 20; then
6994                         dflt=y
6995                 else
6996                         dflt=n
6997                 fi
6998                 ;;
6999         esac
7000         ;;
7001 *)
7002         case "$usenm" in
7003         true|$define) dflt=y;;
7004         *) dflt=n;;
7005         esac
7006         ;;
7007 esac
7008 $cat <<EOM
7009
7010 I can use $nm to extract the symbols from your C libraries. This
7011 is a time consuming task which may generate huge output on the disk (up
7012 to 3 megabytes) but that should make the symbols extraction faster. The
7013 alternative is to skip the 'nm' extraction part and to compile a small
7014 test program instead to determine whether each symbol is present. If
7015 you have a fast C compiler and/or if your 'nm' output cannot be parsed,
7016 this may be the best solution.
7017
7018 You probably shouldn't let me use 'nm' if you are using the GNU C Library.
7019
7020 EOM
7021 rp="Shall I use $nm to extract C symbols from the libraries?"
7022 . ./myread
7023 case "$ans" in
7024 [Nn]*) usenm=false;;
7025 *) usenm=true;;
7026 esac
7027
7028 runnm=$usenm
7029 case "$reuseval" in
7030 true) runnm=false;;
7031 esac
7032
7033 : nm options which may be necessary
7034 case "$nm_opt" in
7035 '') if $test -f /mach_boot; then
7036                 nm_opt=''       # Mach
7037         elif $test -d /usr/ccs/lib; then
7038                 nm_opt='-p'     # Solaris (and SunOS?)
7039         elif $test -f /dgux; then
7040                 nm_opt='-p'     # DG-UX
7041         elif $test -f /lib64/rld; then
7042                 nm_opt='-p'     # 64-bit Irix
7043         else
7044                 nm_opt=''
7045         fi;;
7046 esac
7047
7048 : nm options which may be necessary for shared libraries but illegal
7049 : for archive libraries.  Thank you, Linux.
7050 case "$nm_so_opt" in
7051 '')     case "$myuname" in
7052         *linux*)
7053                 if $nm --help | $grep 'dynamic' > /dev/null 2>&1; then
7054                         nm_so_opt='--dynamic'
7055                 fi
7056                 ;;
7057         esac
7058         ;;
7059 esac
7060
7061 case "$runnm" in
7062 true)
7063 : get list of predefined functions in a handy place
7064 echo " "
7065 case "$libc" in
7066 '') libc=unknown
7067         case "$libs" in
7068         *-lc_s*) libc=`./loc libc_s$_a $libc $libpth`
7069         esac
7070         ;;
7071 esac
7072 case "$libs" in
7073 '') ;;
7074 *)  for thislib in $libs; do
7075         case "$thislib" in
7076         -lc|-lc_s)
7077                 : Handle C library specially below.
7078                 ;;
7079         -l*)
7080                 thislib=`echo $thislib | $sed -e 's/^-l//'`
7081                 if try=`./loc lib$thislib.$so.'*' X $libpth`; $test -f "$try"; then
7082                         :
7083                 elif try=`./loc lib$thislib.$so X $libpth`; $test -f "$try"; then
7084                         :
7085                 elif try=`./loc lib$thislib$_a X $libpth`; $test -f "$try"; then
7086                         :
7087                 elif try=`./loc $thislib$_a X $libpth`; $test -f "$try"; then
7088                         :
7089                 elif try=`./loc lib$thislib X $libpth`; $test -f "$try"; then
7090                         :
7091                 elif try=`./loc $thislib X $libpth`; $test -f "$try"; then
7092                         :
7093                 elif try=`./loc Slib$thislib$_a X $xlibpth`; $test -f "$try"; then
7094                         :
7095                 else
7096                         try=''
7097                 fi
7098                 libnames="$libnames $try"
7099                 ;;
7100         *) libnames="$libnames $thislib" ;;
7101         esac
7102         done
7103         ;;
7104 esac
7105 xxx=normal
7106 case "$libc" in
7107 unknown)
7108         set /lib/libc.$so
7109         for xxx in $libpth; do
7110                 $test -r $1 || set $xxx/libc.$so
7111                 : The messy sed command sorts on library version numbers.
7112                 $test -r $1 || \
7113                         set `echo blurfl; echo $xxx/libc.$so.[0-9]* | \
7114                         tr ' ' $trnl | egrep -v '\.[A-Za-z]*$' | $sed -e '
7115                                 h
7116                                 s/[0-9][0-9]*/0000&/g
7117                                 s/0*\([0-9][0-9][0-9][0-9][0-9]\)/\1/g
7118                                 G
7119                                 s/\n/ /' | \
7120                          $sort | $sed -e 's/^.* //'`
7121                 eval set \$$#
7122         done
7123         $test -r $1 || set /usr/ccs/lib/libc.$so
7124         $test -r $1 || set /lib/libsys_s$_a
7125         ;;
7126 *)
7127         set blurfl
7128         ;;
7129 esac
7130 if $test -r "$1"; then
7131         echo "Your (shared) C library seems to be in $1."
7132         libc="$1"
7133 elif $test -r /lib/libc && $test -r /lib/clib; then
7134         echo "Your C library seems to be in both /lib/clib and /lib/libc."
7135         xxx=apollo
7136         libc='/lib/clib /lib/libc'
7137         if $test -r /lib/syslib; then
7138                 echo "(Your math library is in /lib/syslib.)"
7139                 libc="$libc /lib/syslib"
7140         fi
7141 elif $test -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
7142         echo "Your C library seems to be in $libc, as you said before."
7143 elif $test -r $incpath/usr/lib/libc$_a; then
7144         libc=$incpath/usr/lib/libc$_a;
7145         echo "Your C library seems to be in $libc.  That's fine."
7146 elif $test -r /lib/libc$_a; then
7147         libc=/lib/libc$_a;
7148         echo "Your C library seems to be in $libc.  You're normal."
7149 else
7150         if tans=`./loc libc$_a blurfl/dyick $libpth`; $test -r "$tans"; then
7151                 :
7152         elif tans=`./loc libc blurfl/dyick $libpth`; $test -r "$tans"; then
7153                 libnames="$libnames "`./loc clib blurfl/dyick $libpth`
7154         elif tans=`./loc clib blurfl/dyick $libpth`; $test -r "$tans"; then
7155                 :
7156         elif tans=`./loc Slibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
7157                 :
7158         elif tans=`./loc Mlibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
7159                 :
7160         else
7161                 tans=`./loc Llibc$_a blurfl/dyick $xlibpth`
7162         fi
7163         if $test -r "$tans"; then
7164                 echo "Your C library seems to be in $tans, of all places."
7165                 libc=$tans
7166         else
7167                 libc='blurfl'
7168         fi
7169 fi
7170 if $test $xxx = apollo -o -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
7171         dflt="$libc"
7172         cat <<EOM
7173
7174 If the guess above is wrong (which it might be if you're using a strange
7175 compiler, or your machine supports multiple models), you can override it here.
7176
7177 EOM
7178 else
7179         dflt=''
7180         echo $libpth | $tr ' ' $trnl | $sort | $uniq > libpath
7181         cat >&4 <<EOM
7182 I can't seem to find your C library.  I've looked in the following places:
7183
7184 EOM
7185         $sed 's/^/      /' libpath
7186         cat <<EOM
7187
7188 None of these seems to contain your C library. I need to get its name...
7189
7190 EOM
7191 fi
7192 fn=f
7193 rp='Where is your C library?'
7194 . ./getfile
7195 libc="$ans"
7196
7197 echo " "
7198 echo $libc $libnames | $tr ' ' $trnl | $sort | $uniq > libnames
7199 set X `cat libnames`
7200 shift
7201 xxx=files
7202 case $# in 1) xxx=file; esac
7203 echo "Extracting names from the following $xxx for later perusal:" >&4
7204 echo " "
7205 $sed 's/^/      /' libnames >&4
7206 echo " "
7207 $echo $n "This may take a while...$c" >&4
7208
7209 for file in $*; do
7210         case $file in
7211         *$so*) $nm $nm_so_opt $nm_opt $file 2>/dev/null;;
7212         *) $nm $nm_opt $file 2>/dev/null;;
7213         esac
7214 done >libc.tmp
7215
7216 $echo $n ".$c"
7217 $grep fprintf libc.tmp > libc.ptf
7218 xscan='eval "<libc.ptf $com >libc.list"; $echo $n ".$c" >&4'
7219 xrun='eval "<libc.tmp $com >libc.list"; echo "done." >&4'
7220 xxx='[ADTSIW]'
7221 if com="$sed -n -e 's/__IO//' -e 's/^.* $xxx  *_[_.]*//p' -e 's/^.* $xxx  *//p'";\
7222         eval $xscan;\
7223         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7224                 eval $xrun
7225 elif com="$sed -n -e 's/^__*//' -e 's/^\([a-zA-Z_0-9$]*\).*xtern.*/\1/p'";\
7226         eval $xscan;\
7227         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7228                 eval $xrun
7229 elif com="$sed -n -e '/|UNDEF/d' -e '/FUNC..GL/s/^.*|__*//p'";\
7230         eval $xscan;\
7231         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7232                 eval $xrun
7233 elif com="$sed -n -e 's/^.* D __*//p' -e 's/^.* D //p'";\
7234         eval $xscan;\
7235         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7236                 eval $xrun
7237 elif com="$sed -n -e 's/^_//' -e 's/^\([a-zA-Z_0-9]*\).*xtern.*text.*/\1/p'";\
7238         eval $xscan;\
7239         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7240                 eval $xrun
7241 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p'";\
7242         eval $xscan;\
7243         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7244                 eval $xrun
7245 elif com="$grep '|' | $sed -n -e '/|COMMON/d' -e '/|DATA/d' \
7246                                 -e '/ file/d' -e 's/^\([^       ]*\).*/\1/p'";\
7247         eval $xscan;\
7248         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7249                 eval $xrun
7250 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p' -e 's/^.*|FUNC |WEAK .*|//p'";\
7251         eval $xscan;\
7252         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7253                 eval $xrun
7254 elif com="$sed -n -e 's/^__//' -e '/|Undef/d' -e '/|Proc/s/ .*//p'";\
7255         eval $xscan;\
7256         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7257                 eval $xrun
7258 elif com="$sed -n -e 's/^.*|Proc .*|Text *| *//p'";\
7259         eval $xscan;\
7260         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7261                 eval $xrun
7262 elif com="$sed -n -e '/Def. Text/s/.* \([^ ]*\)\$/\1/p'";\
7263         eval $xscan;\
7264         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7265                 eval $xrun
7266 elif com="$sed -n -e 's/^[-0-9a-f ]*_\(.*\)=.*/\1/p'";\
7267         eval $xscan;\
7268         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7269                 eval $xrun
7270 elif com="$sed -n -e 's/.*\.text n\ \ \ \.//p'";\
7271         eval $xscan;\
7272         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7273                 eval $xrun
7274 elif com="sed -n -e 's/^__.*//' -e 's/[       ]*D[    ]*[0-9]*.*//p'";\
7275         eval $xscan;\
7276         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7277                 eval $xrun
7278 else
7279         $nm -p $* 2>/dev/null >libc.tmp
7280         $grep fprintf libc.tmp > libc.ptf
7281         if com="$sed -n -e 's/^.* [ADTSIW]  *_[_.]*//p' -e 's/^.* [ADTSIW] //p'";\
7282                 eval $xscan; $contains '^fprintf$' libc.list >/dev/null 2>&1
7283         then
7284                 nm_opt='-p'
7285                 eval $xrun
7286         else
7287                 echo " "
7288                 echo "$nm didn't seem to work right. Trying $ar instead..." >&4
7289                 com=''
7290                 if $ar t $libc > libc.tmp && $contains '^fprintf$' libc.tmp >/dev/null 2>&1; then
7291                         for thisname in $libnames $libc; do
7292                                 $ar t $thisname >>libc.tmp
7293                         done
7294                         $sed -e "s/\\$_o\$//" < libc.tmp > libc.list
7295                         echo "Ok." >&4
7296                 elif test "X$osname" = "Xos2" && $ar tv $libc > libc.tmp; then
7297                         # Repeat libc to extract forwarders to DLL entries too
7298                         for thisname in $libnames $libc; do
7299                                 $ar tv $thisname >>libc.tmp
7300                                 # Revision 50 of EMX has bug in $ar.
7301                                 # it will not extract forwarders to DLL entries
7302                                 # Use emximp which will extract exactly them.
7303                                 emximp -o tmp.imp $thisname \
7304                                     2>/dev/null && \
7305                                     $sed -e 's/^\([_a-zA-Z0-9]*\) .*$/\1/p' \
7306                                     < tmp.imp >>libc.tmp
7307                                 $rm tmp.imp
7308                         done
7309                         $sed -e "s/\\$_o\$//" -e 's/^ \+//' < libc.tmp > libc.list
7310                         echo "Ok." >&4
7311                 else
7312                         echo "$ar didn't seem to work right." >&4
7313                         echo "Maybe this is a Cray...trying bld instead..." >&4
7314                         if bld t $libc | $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" > libc.list
7315                         then
7316                                 for thisname in $libnames; do
7317                                         bld t $libnames | \
7318                                         $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" >>libc.list
7319                                         $ar t $thisname >>libc.tmp
7320                                 done
7321                                 echo "Ok." >&4
7322                         else
7323                                 echo "That didn't work either.  Giving up." >&4
7324                                 exit 1
7325                         fi
7326                 fi
7327         fi
7328 fi
7329 nm_extract="$com"
7330 case "$PASE" in
7331 define)
7332     echo " "
7333     echo "Since you are compiling for PASE, extracting more symbols from libc.a ...">&4
7334     dump -Tv /lib/libc.a | awk '$7 == "/unix" {print $5 " " $8}' | grep "^SV" | awk '{print $2}' >> libc.list
7335     ;;
7336 *)  if $test -f /lib/syscalls.exp; then
7337         echo " "
7338         echo "Also extracting names from /lib/syscalls.exp for good ole AIX..." >&4
7339         $sed -n 's/^\([^        ]*\)[   ]*syscall[0-9]*[        ]*$/\1/p' /lib/syscalls.exp >>libc.list
7340     fi
7341     ;;
7342 esac
7343 ;;
7344 esac
7345 $rm -f libnames libpath
7346
7347 : see if dld is available
7348 set dld.h i_dld
7349 eval $inhdr
7350
7351 : is a C symbol defined?
7352 csym='tlook=$1;
7353 case "$3" in
7354 -v) tf=libc.tmp; tc=""; tdc="";;
7355 -a) tf=libc.tmp; tc="[0]"; tdc="[]";;
7356 *) tlook="^$1\$"; tf=libc.list; tc="()"; tdc="()";;
7357 esac;
7358 tx=yes;
7359 case "$reuseval-$4" in
7360 true-) ;;
7361 true-*) tx=no; eval "tval=\$$4"; case "$tval" in "") tx=yes;; esac;;
7362 esac;
7363 case "$tx" in
7364 yes)
7365         case "$runnm" in
7366         true)
7367                 if $contains $tlook $tf >/dev/null 2>&1;
7368                 then tval=true;
7369                 else tval=false;
7370                 fi;;
7371         *)
7372                 echo "int main() { extern short $1$tdc; printf(\"%hd\", $1$tc); }" > t.c;
7373                 if $cc -o t $optimize $ccflags $ldflags t.c $libs >/dev/null 2>&1;
7374                 then tval=true;
7375                 else tval=false;
7376                 fi;
7377                 $rm -f t t.c;;
7378         esac;;
7379 *)
7380         case "$tval" in
7381         $define) tval=true;;
7382         *) tval=false;;
7383         esac;;
7384 esac;
7385 eval "$2=$tval"'
7386
7387 : define an is-in-libc? function
7388 inlibc='echo " "; td=$define; tu=$undef;
7389 sym=$1; var=$2; eval "was=\$$2";
7390 tx=yes;
7391 case "$reuseval$was" in
7392 true) ;;
7393 true*) tx=no;;
7394 esac;
7395 case "$tx" in
7396 yes)
7397         set $sym tres -f;
7398         eval $csym;
7399         case "$tres" in
7400         true)
7401                 echo "$sym() found." >&4;
7402                 case "$was" in $undef) . ./whoa; esac; eval "$var=\$td";;
7403         *)
7404                 echo "$sym() NOT found." >&4;
7405                 case "$was" in $define) . ./whoa; esac; eval "$var=\$tu";;
7406         esac;;
7407 *)
7408         case "$was" in
7409         $define) echo "$sym() found." >&4;;
7410         *) echo "$sym() NOT found." >&4;;
7411         esac;;
7412 esac'
7413
7414 : see if dlopen exists
7415 xxx_runnm="$runnm"
7416 runnm=false
7417 set dlopen d_dlopen
7418 eval $inlibc
7419 runnm="$xxx_runnm"
7420
7421 : determine which dynamic loading, if any, to compile in
7422 echo " "
7423 dldir="ext/DynaLoader"
7424 case "$usedl" in
7425 $define|y|true)
7426         dflt='y'
7427         usedl="$define"
7428         ;;
7429 $undef|n|false)
7430         dflt='n'
7431         usedl="$undef"
7432         ;;
7433 *) 
7434         dflt='n'
7435         case "$d_dlopen" in
7436             $define) dflt='y' ;;
7437         esac
7438         case "$i_dld" in
7439             $define) dflt='y' ;;
7440         esac
7441         : Does a dl_xxx.xs file exist for this operating system
7442         $test -f $rsrc/$dldir/dl_${osname}.xs && dflt='y'
7443         ;;
7444 esac
7445 rp="Do you wish to use dynamic loading?"
7446 . ./myread
7447 usedl="$ans"
7448 case "$ans" in
7449 y*) usedl="$define"
7450         case "$dlsrc" in
7451         '')
7452                 if $test -f $rsrc/$dldir/dl_${osname}.xs ; then
7453                         dflt="$dldir/dl_${osname}.xs"
7454                 elif $test "$d_dlopen" = "$define" ; then
7455                         dflt="$dldir/dl_dlopen.xs"
7456                 elif $test "$i_dld" = "$define" ; then
7457                         dflt="$dldir/dl_dld.xs"
7458                 else
7459                         dflt=''
7460                 fi
7461                 ;;
7462         *)      dflt="$dldir/$dlsrc"
7463                 ;;
7464         esac
7465     echo "The following dynamic loading files are available:"
7466         : Can not go over to $dldir because getfile has path hard-coded in.
7467         tdir=`pwd`; cd "$rsrc"; $ls -C $dldir/dl*.xs; cd "$tdir"
7468         rp="Source file to use for dynamic loading"
7469         fn="fne"
7470         gfpth="$src"
7471         . ./getfile
7472         usedl="$define"
7473         : emulate basename
7474         dlsrc=`echo $ans | $sed -e 's%.*/\([^/]*\)$%\1%'`
7475
7476         $cat << EOM
7477
7478 Some systems may require passing special flags to $cc -c to
7479 compile modules that will be used to create a shared library.
7480 To use no flags, say "none".
7481
7482 EOM
7483     case "$cccdlflags" in
7484     '') case "$gccversion" in
7485                 '') case "$osname" in
7486                         hpux)   dflt='+z' ;;
7487                         next)   dflt='none' ;;
7488                         irix*)  dflt='-KPIC' ;;
7489                         svr4*|esix*|solaris|nonstopux) dflt='-KPIC' ;;
7490                         sunos)  dflt='-pic' ;;
7491                         *)      dflt='none' ;;
7492                     esac
7493                         ;;
7494                 *)  case "$osname" in
7495                         darwin) dflt='none' ;;
7496                         svr4*|esix*|solaris|nonstopux) dflt='-fPIC' ;;
7497                         *)      dflt='-fpic' ;;
7498                     esac ;;
7499             esac ;;
7500         ' ') dflt='none' ;;
7501     *)  dflt="$cccdlflags" ;;
7502     esac
7503     rp="Any special flags to pass to $cc -c to compile shared library modules?"
7504     . ./myread
7505     case "$ans" in
7506     none) cccdlflags=' ' ;;
7507     *) cccdlflags="$ans" ;;
7508     esac
7509
7510     cat << EOM
7511
7512 Some systems use ld to create libraries that can be dynamically loaded,
7513 while other systems (such as those using ELF) use $cc.
7514
7515 EOM
7516         case "$ld" in
7517         '')     $cat >try.c <<EOM
7518 /* Test for whether ELF binaries are produced */
7519 #include <fcntl.h>
7520 #$i_stdlib I_STDLIB
7521 #ifdef I_STDLIB
7522 #include <stdlib.h>
7523 #endif
7524 int main() {
7525         char b[4];
7526         int i = open("a.out",O_RDONLY);
7527         if(i == -1) 
7528                 exit(1); /* fail */
7529         if(read(i,b,4)==4 && b[0]==127 && b[1]=='E' && b[2]=='L' && b[3]=='F')
7530                 exit(0); /* succeed (yes, it's ELF) */
7531         else
7532                 exit(1); /* fail */
7533 }
7534 EOM
7535                 if $cc $ccflags $ldflags try.c >/dev/null 2>&1 && $run ./a.out; then
7536                         cat <<EOM
7537 You appear to have ELF support.  I'll use $cc to build dynamic libraries.
7538 EOM
7539                         dflt="$cc"
7540                 else
7541                         echo "I'll use ld to build dynamic libraries."
7542                         dflt='ld'
7543                 fi
7544                 rm -f try.c a.out
7545                 ;;
7546         *)      dflt="$ld"
7547                 ;;
7548         esac
7549
7550     rp="What command should be used to create dynamic libraries?"
7551     . ./myread
7552         ld="$ans"
7553
7554     cat << EOM
7555
7556 Some systems may require passing special flags to $ld to create a
7557 library that can be dynamically loaded.  If your ld flags include
7558 -L/other/path options to locate libraries outside your loader's normal
7559 search path, you may need to specify those -L options here as well.  To
7560 use no flags, say "none".
7561
7562 EOM
7563     case "$lddlflags" in
7564     '') case "$osname" in
7565                         beos) dflt='-nostart' ;;
7566                         hpux) dflt='-b';
7567                               case "$gccversion" in
7568                               '') dflt="$dflt +vnocompatwarnings" ;;
7569                               esac
7570                               ;;        
7571                         linux|irix*)    dflt='-shared' ;;
7572                         next)  dflt='none' ;;
7573                         solaris) dflt='-G' ;;
7574                         sunos) dflt='-assert nodefinitions' ;;
7575                         svr4*|esix*|nonstopux) dflt="-G $ldflags" ;;
7576                 *)     dflt='none' ;;
7577                         esac
7578                         ;;
7579     *) dflt="$lddlflags" ;;
7580     esac
7581
7582         : Try to guess additional flags to pick up local libraries.
7583         : Be careful not to append to a plain 'none'
7584         case "$dflt" in
7585         none) dflt='' ;;
7586         esac
7587         for thisflag in $ldflags; do
7588                 case "$thisflag" in
7589                 -L*|-R*|-Wl,-R*)
7590                         case " $dflt " in
7591                         *" $thisflag "*) ;;
7592                         *) dflt="$dflt $thisflag" ;;
7593                         esac
7594                         ;;
7595                 esac
7596         done
7597
7598         case "$dflt" in
7599         ''|' ') dflt='none' ;;
7600         esac
7601
7602     rp="Any special flags to pass to $ld to create a dynamically loaded library?"
7603     . ./myread
7604     case "$ans" in
7605     none) lddlflags=' ' ;;
7606     *) lddlflags="$ans" ;;
7607     esac
7608
7609         cat <<EOM
7610
7611 Some systems may require passing special flags to $cc to indicate that
7612 the resulting executable will use dynamic linking.  To use no flags,
7613 say "none".
7614
7615 EOM
7616     case "$ccdlflags" in
7617     '') case "$osname" in
7618                 hpux)   dflt='-Wl,-E' ;;
7619                 linux)  dflt='-rdynamic' ;;
7620                 next)   dflt='none' ;;
7621                 sunos)  dflt='none' ;;
7622                 *)      dflt='none' ;;
7623             esac ;;
7624     ' ')  dflt='none' ;;
7625     *)  dflt="$ccdlflags" ;;
7626     esac
7627     rp="Any special flags to pass to $cc to use dynamic linking?"
7628     . ./myread
7629     case "$ans" in
7630     none) ccdlflags=' ' ;;
7631     *) ccdlflags="$ans" ;;
7632     esac
7633     ;;
7634 *)  usedl="$undef"
7635         ld='ld'
7636     dlsrc='dl_none.xs'
7637     lddlflags=''
7638     ccdlflags=''
7639     ;;
7640 esac
7641
7642 also=''
7643 case "$usedl" in
7644 $undef)
7645         # No dynamic loading being used, so don't bother even to prompt.
7646         useshrplib='false'
7647         ;;
7648 *)      case "$useshrplib" in
7649         '')     case "$osname" in
7650                 svr4*|nonstopux|dgux|dynixptx|esix|powerux|beos|cygwin*)
7651                         dflt=y
7652                         also='Building a shared libperl is required for dynamic loading to work on your system.'
7653                         ;;
7654                 next*)
7655                         case "$osvers" in
7656                         4*)     dflt=y
7657                                 also='Building a shared libperl is needed for MAB support.'
7658                                 ;;
7659                         *)      dflt=n
7660                                 ;;
7661                         esac
7662                         ;;
7663                 *)      dflt=n
7664                         ;;
7665                 esac
7666                 ;;
7667         $define|true|[Yy]*)
7668                 dflt=y
7669                 ;;
7670         *)      dflt=n
7671                 ;;
7672         esac
7673         $cat << EOM
7674
7675 The perl executable is normally obtained by linking perlmain.c with
7676 libperl${_a}, any static extensions (usually just DynaLoader), and
7677 any other libraries needed on this system (such as -lm, etc.).  Since
7678 your system supports dynamic loading, it is probably possible to build
7679 a shared libperl.$so.  If you will have more than one executable linked
7680 to libperl.$so, this will significantly reduce the size of each
7681 executable, but it may have a noticeable affect on performance.  The
7682 default is probably sensible for your system.
7683 $also
7684
7685 EOM
7686         rp="Build a shared libperl.$so (y/n)"
7687         . ./myread
7688         case "$ans" in
7689         true|$define|[Yy]*)
7690                 useshrplib='true'  ;;
7691         *)      useshrplib='false' ;;
7692         esac
7693         ;;
7694 esac
7695
7696 case "$useshrplib" in
7697 true)
7698         case "$libperl" in
7699         '')
7700                 # Figure out a good name for libperl.so.  Since it gets stored in
7701                 # a version-specific architecture-dependent library, the version
7702                 # number isn't really that important, except for making cc/ld happy.
7703                 #
7704                 # A name such as libperl.so.3.1
7705                 majmin="libperl.$so.$patchlevel.$subversion"
7706                 # A name such as libperl.so.301
7707                 majonly=`echo $patchlevel $subversion |
7708                         $awk '{printf "%d%02d", $1, $2}'`
7709                 majonly=libperl.$so.$majonly
7710                 # I'd prefer to keep the os-specific stuff here to a minimum, and
7711                 # rely on figuring it out from the naming of libc.
7712                 case "${osname}${osvers}" in
7713                 next4*)
7714                         dflt=libperl.5.$so
7715                         # XXX How handle the --version stuff for MAB?
7716                         ;;
7717                 linux*)  # ld won't link with a bare -lperl otherwise.
7718                         dflt=libperl.$so
7719                         ;;
7720                 cygwin*) # ld links against an importlib
7721                         dflt=libperl$lib_ext
7722                         ;;
7723                 *)      # Try to guess based on whether libc has major.minor.
7724                         case "$libc" in
7725                         *libc.$so.[0-9]*.[0-9]*) dflt=$majmin ;;
7726                         *libc.$so.[0-9]*) dflt=$majonly ;;
7727                         *)      dflt=libperl.$so ;;
7728                         esac
7729                         ;;
7730                 esac
7731                 ;;
7732         *)      dflt=$libperl
7733                 ;;
7734         esac
7735         cat << EOM
7736
7737 I need to select a good name for the shared libperl.  If your system uses
7738 library names with major and minor numbers, then you might want something
7739 like $majmin.  Alternatively, if your system uses a single version
7740 number for shared libraries, then you might want to use $majonly.
7741 Or, your system might be quite happy with a simple libperl.$so.
7742
7743 Since the shared libperl will get installed into a version-specific
7744 architecture-dependent directory, the version number of the shared perl
7745 library probably isn't important, so the default should be o.k.
7746
7747 EOM
7748         rp='What name do you want to give to the shared libperl?'
7749         . ./myread
7750         libperl=$ans
7751         echo "Ok, I'll use $libperl"
7752         ;;
7753 *)
7754         libperl="libperl${_a}"
7755         ;;
7756 esac
7757
7758 # Detect old use of shrpdir via undocumented Configure -Dshrpdir
7759 case "$shrpdir" in
7760 '') ;;
7761 *)      $cat >&4 <<EOM
7762 WARNING:  Use of the shrpdir variable for the installation location of
7763 the shared $libperl is not supported.  It was never documented and
7764 will not work in this version.  Let me (perlbug@perl.org)
7765 know of any problems this may cause.
7766
7767 EOM
7768         case "$shrpdir" in
7769         "$archlibexp/CORE")
7770                 $cat >&4 <<EOM
7771 But your current setting of $shrpdir is
7772 the default anyway, so it's harmless.
7773 EOM
7774                 ;;
7775         *)
7776                 $cat >&4 <<EOM
7777 Further, your current attempted setting of $shrpdir
7778 conflicts with the value of $archlibexp/CORE
7779 that installperl will use.
7780 EOM
7781                 ;;
7782         esac
7783         ;;
7784 esac
7785
7786 # How will the perl executable find the installed shared $libperl?
7787 # Add $xxx to ccdlflags.
7788 # If we can't figure out a command-line option, use $shrpenv to
7789 # set env LD_RUN_PATH.  The main perl makefile uses this.
7790 shrpdir=$archlibexp/CORE
7791 xxx=''
7792 tmp_shrpenv=''
7793 if "$useshrplib"; then
7794     case "$osname" in 
7795         aix)
7796                 # We'll set it in Makefile.SH...
7797                 ;;
7798         solaris)
7799                 xxx="-R $shrpdir"
7800                 ;;
7801         freebsd|netbsd|openbsd)
7802                 xxx="-Wl,-R$shrpdir"
7803                 ;;
7804         bsdos|linux|irix*|dec_osf)
7805                 xxx="-Wl,-rpath,$shrpdir"
7806                 ;;
7807         next)
7808                 # next doesn't like the default...
7809                 ;;
7810         beos)
7811                 # beos doesn't like the default, either.
7812                 ;;
7813         hpux*)
7814                 # hpux doesn't like the default, either.
7815                 tmp_shrpenv="env LDOPTS=\"+s +b${shrpdir}\""
7816                 ;;
7817         *)
7818                 tmp_shrpenv="env LD_RUN_PATH=$shrpdir"
7819                 ;;
7820         esac
7821         case "$xxx" in
7822         '') ;;
7823         *)      
7824                 # Only add $xxx if it isn't already in ccdlflags.
7825                 case " $ccdlflags " in
7826                 *" $xxx "*)     ;;
7827                 *)      ccdlflags="$ccdlflags $xxx"
7828                         cat <<EOM >&4
7829
7830 Adding $xxx to the flags
7831 passed to $ld so that the perl executable will find the 
7832 installed shared $libperl.
7833
7834 EOM
7835                         ;;
7836                 esac
7837                 ;;
7838         esac
7839 fi
7840 # Fix ccdlflags in AIX for building external extensions.
7841 # (For building Perl itself bare -bE:perl.exp is needed,
7842 #  Makefile.SH takes care of this.)
7843 case "$osname" in
7844 aix) ccdlflags="$ccdlflags -bE:$installarchlib/CORE/perl.exp" ;;
7845 esac
7846 # Respect a hint or command-line value.
7847 case "$shrpenv" in
7848 '') shrpenv="$tmp_shrpenv" ;;
7849 esac
7850 case "$ldlibpthname" in
7851 '')     ldlibpthname=LD_LIBRARY_PATH ;;
7852 none)   ldlibpthname='' ;;
7853 esac
7854
7855 : determine where manual pages are on this system
7856 echo " "
7857 case "$sysman" in
7858 '') 
7859         syspath='/usr/share/man/man1 /usr/man/man1'
7860         syspath="$syspath /usr/man/mann /usr/man/manl /usr/man/local/man1"
7861         syspath="$syspath /usr/man/u_man/man1"
7862         syspath="$syspath /usr/catman/u_man/man1 /usr/man/l_man/man1"
7863         syspath="$syspath /usr/local/man/u_man/man1 /usr/local/man/l_man/man1"
7864         syspath="$syspath /usr/man/man.L /local/man/man1 /usr/local/man/man1"
7865         sysman=`./loc . /usr/man/man1 $syspath`
7866         ;;
7867 esac
7868 if $test -d "$sysman"; then
7869         echo "System manual is in $sysman." >&4
7870 else
7871         echo "Could not find manual pages in source form." >&4
7872 fi
7873
7874 : determine where manual pages go
7875 set man1dir man1dir none
7876 eval $prefixit
7877 $cat <<EOM
7878
7879 $spackage has manual pages available in source form.
7880 EOM
7881 case "$nroff" in
7882 nroff)
7883         echo "However, you don't have nroff, so they're probably useless to you."
7884         case "$man1dir" in
7885         '') man1dir="none";;
7886         esac;;
7887 esac
7888 echo "If you don't want the manual sources installed, answer 'none'."
7889 case "$man1dir" in
7890 ' ') dflt=none
7891         ;;
7892 '')
7893         lookpath="$prefixexp/share/man/man1"
7894         lookpath="$lookpath $prefixexp/man/man1 $prefixexp/man/l_man/man1"
7895         lookpath="$lookpath $prefixexp/man/p_man/man1"
7896         lookpath="$lookpath $prefixexp/man/u_man/man1"
7897         lookpath="$lookpath $prefixexp/man/man.1"
7898         case "$sysman" in
7899         */?_man*)       dflt=`./loc . $prefixexp/l_man/man1 $lookpath` ;;
7900         *)      dflt=`./loc . $prefixexp/man/man1 $lookpath` ;;
7901         esac
7902         set dflt
7903         eval $prefixup
7904         ;;
7905 *)  dflt="$man1dir"
7906         ;;
7907 esac
7908 echo " "
7909 fn=dn+~
7910 rp="Where do the main $spackage manual pages (source) go?"
7911 . ./getfile
7912 if $test "X$man1direxp" != "X$ansexp"; then
7913         installman1dir=''
7914 fi
7915 man1dir="$ans"
7916 man1direxp="$ansexp"
7917 case "$man1dir" in
7918 '')     man1dir=' '
7919         installman1dir='';;
7920 esac
7921
7922 : Change installation prefix, if necessary.
7923 if $test X"$prefix" != X"$installprefix"; then
7924         installman1dir=`echo $man1direxp | $sed "s#^$prefix#$installprefix#"`
7925 else
7926         installman1dir="$man1direxp"
7927 fi
7928
7929 : What suffix to use on installed man pages
7930
7931 case "$man1dir" in
7932 ' ')
7933         man1ext='0'
7934         ;;
7935 *)
7936         rp="What suffix should be used for the main $spackage man pages?"
7937         case "$man1ext" in
7938         '')     case "$man1dir" in
7939                 *1)  dflt=1 ;;
7940                 *1p) dflt=1p ;;
7941                 *1pm) dflt=1pm ;;
7942                 *l) dflt=l;;
7943                 *n) dflt=n;;
7944                 *o) dflt=o;;
7945                 *p) dflt=p;;
7946                 *C) dflt=C;;
7947                 *L) dflt=L;;
7948                 *L1) dflt=L1;;
7949                 *) dflt=1;;
7950                 esac
7951                 ;;
7952         *)      dflt="$man1ext";;
7953         esac
7954         . ./myread
7955         man1ext="$ans"
7956         ;;
7957 esac
7958
7959 : see if we can have long filenames
7960 echo " "
7961 first=123456789abcdef
7962 $rm -f $first
7963 if (echo hi >$first) 2>/dev/null; then
7964         if $test -f 123456789abcde; then
7965                 echo 'You cannot have filenames longer than 14 characters.  Sigh.' >&4
7966                 val="$undef"
7967         else
7968                 echo 'You can have filenames longer than 14 characters.'>&4
7969                 val="$define"
7970         fi
7971 else
7972         $cat <<'EOM'
7973 You can't have filenames longer than 14 chars.
7974 You can't even think about them!
7975 EOM
7976         val="$undef"
7977 fi 
7978 set d_flexfnam
7979 eval $setvar
7980 $rm -rf 123456789abcde*
7981
7982 : determine where library module manual pages go
7983 set man3dir man3dir none
7984 eval $prefixit
7985 $cat <<EOM
7986
7987 $spackage has manual pages for many of the library modules.
7988 EOM
7989
7990 case "$nroff" in
7991 nroff)
7992         $cat <<'EOM'
7993 However, you don't have nroff, so they're probably useless to you.
7994 EOM
7995         case "$man3dir" in
7996         '') man3dir="none";;
7997         esac;;
7998 esac
7999
8000 case "$d_flexfnam" in
8001 undef)
8002         $cat <<'EOM'
8003 However, your system can't handle the long file names like File::Basename.3. 
8004 EOM
8005         case "$man3dir" in
8006         '') man3dir="none";;
8007         esac;;
8008 esac
8009
8010 echo "If you don't want the manual sources installed, answer 'none'."
8011 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
8012 case "$man3dir" in
8013 '')     dflt=`echo "$man1dir" | $sed -e 's/man1/man3/g' -e 's/man\.1/man\.3/g'`
8014         if $test -d "$privlib/man/man3"; then
8015                 cat <<EOM >&4
8016
8017 WARNING:  Previous versions of perl installed man3 pages into
8018 $privlib/man/man3.  This version will suggest a 
8019 new default of $dflt.  
8020 EOM
8021                 tdflt=$dflt
8022                 dflt='n'
8023                 rp='Do you wish to preserve the old behavior?(y/n)'
8024                 . ./myread
8025                 case "$ans" in
8026                 y*) dflt="$privlib/man/man3" ;;
8027                 *)  dflt=$tdflt ;;
8028                 esac
8029     fi
8030         ;;
8031 *)      dflt="$man3dir" ;;
8032 esac
8033 case "$dflt" in
8034 ' ') dflt=none ;;
8035 esac
8036 echo " "
8037 fn=dn+~
8038 rp="Where do the $package library man pages (source) go?"
8039 . ./getfile
8040 man3dir="$ans"
8041 man3direxp="$ansexp"
8042 case "$man3dir" in
8043 '')     man3dir=' '
8044         installman3dir='';;
8045 esac
8046
8047 : Change installation prefix, if necessary.
8048 if $test X"$prefix" != X"$installprefix"; then
8049         installman3dir=`echo $man3direxp | $sed "s#^$prefix#$installprefix#"`
8050 else
8051         installman3dir="$man3direxp"
8052 fi
8053
8054 : What suffix to use on installed man pages
8055 case "$man3dir" in
8056 ' ')
8057         man3ext='0'
8058         ;;
8059 *)
8060         rp="What suffix should be used for the $package library man pages?"
8061         case "$man3ext" in
8062         '')     case "$man3dir" in
8063                 *3)  dflt=3 ;;
8064                 *3p) dflt=3p ;;
8065                 *3pm) dflt=3pm ;;
8066                 *l) dflt=l;;
8067                 *n) dflt=n;;
8068                 *o) dflt=o;;
8069                 *p) dflt=p;;
8070                 *C) dflt=C;;
8071                 *L) dflt=L;;
8072                 *L3) dflt=L3;;
8073                 *) dflt=3;;
8074                 esac
8075                 ;;
8076         *)      dflt="$man3ext";;
8077         esac
8078         . ./myread
8079         man3ext="$ans"
8080         ;;
8081 esac
8082
8083 : see if we have to deal with yellow pages, now NIS.
8084 if $test -d /usr/etc/yp || $test -d /etc/yp || $test -d /usr/lib/yp; then
8085         if $test -f /usr/etc/nibindd; then
8086                 echo " "
8087                 echo "I'm fairly confident you're on a NeXT."
8088                 echo " "
8089                 rp='Do you get the hosts file via NetInfo?'
8090                 dflt=y
8091                 case "$hostcat" in
8092                 nidump*) ;;
8093                 '') ;;
8094                 *) dflt=n;;
8095                 esac
8096                 . ./myread
8097                 case "$ans" in
8098                 y*) hostcat='nidump hosts .';;
8099                 *)      case "$hostcat" in
8100                         nidump*) hostcat='';;
8101                         esac
8102                         ;;
8103                 esac
8104         fi
8105         case "$hostcat" in
8106         nidump*) ;;
8107         *)
8108                 case "$hostcat" in
8109                 *ypcat*) dflt=y;;
8110                 '') if $contains '^\+' /etc/passwd >/dev/null 2>&1; then
8111                                 dflt=y
8112                         else
8113                                 dflt=n
8114                         fi;;
8115                 *) dflt=n;;
8116                 esac
8117                 echo " "
8118                 rp='Are you getting the hosts file via yellow pages?'
8119                 . ./myread
8120                 case "$ans" in
8121                 y*) hostcat='ypcat hosts';;
8122                 *) hostcat='cat /etc/hosts';;
8123                 esac
8124                 ;;
8125         esac
8126 fi
8127 case "$hostcat" in
8128 '') test -f /etc/hosts && hostcat='cat /etc/hosts';;
8129 esac
8130 case "$groupcat" in
8131 '') test -f /etc/group && groupcat='cat /etc/group';;
8132 esac
8133 case "$passcat" in
8134 '') test -f /etc/passwd && passcat='cat /etc/passwd';;
8135 esac
8136
8137 : now get the host name
8138 echo " "
8139 echo "Figuring out host name..." >&4
8140 case "$myhostname" in
8141 '') cont=true
8142         echo 'Maybe "hostname" will work...'
8143         if tans=`sh -c hostname 2>&1` ; then
8144                 myhostname=$tans
8145                 phostname=hostname
8146                 cont=''
8147         fi
8148         ;;
8149 *) cont='';;
8150 esac
8151 if $test "$cont"; then
8152         if ./xenix; then
8153                 echo 'Oh, dear.  Maybe "/etc/systemid" is the key...'
8154                 if tans=`cat /etc/systemid 2>&1` ; then
8155                         myhostname=$tans
8156                         phostname='cat /etc/systemid'
8157                         echo "Whadyaknow.  Xenix always was a bit strange..."
8158                         cont=''
8159                 fi
8160         elif $test -r /etc/systemid; then
8161                 echo "(What is a non-Xenix system doing with /etc/systemid?)"
8162         fi
8163 fi
8164 if $test "$cont"; then
8165         echo 'No, maybe "uuname -l" will work...'
8166         if tans=`sh -c 'uuname -l' 2>&1` ; then
8167                 myhostname=$tans
8168                 phostname='uuname -l'
8169         else
8170                 echo 'Strange.  Maybe "uname -n" will work...'
8171                 if tans=`sh -c 'uname -n' 2>&1` ; then
8172                         myhostname=$tans
8173                         phostname='uname -n'
8174                 else
8175                         echo 'Oh well, maybe I can mine it out of whoami.h...'
8176                         if tans=`sh -c $contains' sysname $usrinc/whoami.h' 2>&1` ; then
8177                                 myhostname=`echo "$tans" | $sed 's/^.*"\(.*\)"/\1/'`
8178                                 phostname="sed -n -e '"'/sysname/s/^.*\"\\(.*\\)\"/\1/{'"' -e p -e q -e '}' <$usrinc/whoami.h"
8179                         else
8180                                 case "$myhostname" in
8181                                 '') echo "Does this machine have an identity crisis or something?"
8182                                         phostname='';;
8183                                 *)
8184                                         echo "Well, you said $myhostname before..."
8185                                         phostname='echo $myhostname';;
8186                                 esac
8187                         fi
8188                 fi
8189         fi
8190 fi
8191 case "$myhostname" in
8192 '') myhostname=noname ;;
8193 esac
8194 : you do not want to know about this
8195 set $myhostname
8196 myhostname=$1
8197
8198 : verify guess
8199 if $test "$myhostname" ; then
8200         dflt=y
8201         rp='Your host name appears to be "'$myhostname'".'" Right?"
8202         . ./myread
8203         case "$ans" in
8204         y*) ;;
8205         *) myhostname='';;
8206         esac
8207 fi
8208
8209 : bad guess or no guess
8210 while $test "X$myhostname" = X ; do
8211         dflt=''
8212         rp="Please type the (one word) name of your host:"
8213         . ./myread
8214         myhostname="$ans"
8215 done
8216
8217 : translate upper to lower if necessary
8218 case "$myhostname" in
8219 *[A-Z]*)
8220         echo "(Normalizing case in your host name)"
8221         myhostname=`echo $myhostname | ./tr '[A-Z]' '[a-z]'`
8222         ;;
8223 esac
8224
8225 case "$myhostname" in
8226 *.*)
8227         dflt=`expr "X$myhostname" : "X[^.]*\(\..*\)"`
8228         myhostname=`expr "X$myhostname" : "X\([^.]*\)\."`
8229         echo "(Trimming domain name from host name--host name is now $myhostname)"
8230         ;;
8231 *) case "$mydomain" in
8232         '')
8233                 {
8234                         test "X$hostcat" = "Xypcat hosts" &&
8235                         ypmatch "$myhostname" hosts 2>/dev/null |\
8236                                 $sed -e 's/[     ]*#.*//; s/$/ /' > hosts && \
8237                         $test -s hosts
8238                 } || {
8239                         test "X$hostcat" != "X" &&
8240                         $hostcat | $sed -n -e "s/[       ]*#.*//; s/\$/ /
8241                                         /[       ]$myhostname[  . ]/p" > hosts
8242                 }
8243                 tmp_re="[       . ]"
8244                 if $test -f hosts; then
8245                         $test x`$awk "/[0-9].*[  ]$myhostname$tmp_re/ { sum++ }
8246                              END { print sum }" hosts` = x1 || tmp_re="[         ]"
8247                         dflt=.`$awk "/[0-9].*[   ]$myhostname$tmp_re/ {for(i=2; i<=NF;i++) print \\\$i}" \
8248                                 hosts | $sort | $uniq | \
8249                                 $sed -n -e "s/$myhostname\.\([-a-zA-Z0-9_.]\)/\1/p"`
8250                         case `$echo X$dflt` in
8251                         X*\ *)  echo "(Several hosts in the database matched hostname)"
8252                                 dflt=.
8253                                 ;;
8254                         X.) echo "(You do not have fully-qualified names in the hosts database)"
8255                                 ;;
8256                         esac
8257                 else
8258                         echo "(I cannot locate a hosts database anywhere)"
8259                         dflt=.
8260                 fi
8261                 case "$dflt" in
8262                 .)
8263                         tans=`./loc resolv.conf X /etc /usr/etc`
8264                         if $test -f "$tans"; then
8265                                 echo "(Attempting domain name extraction from $tans)"
8266                                 dflt=.`$sed -n -e 's/   / /g' \
8267                                   -e 's/^search  *\([^ ]*\).*/\1/p' $tans \
8268                                   | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8269                                 case "$dflt" in
8270                                 .) dflt=.`$sed -n -e 's/        / /g' \
8271                                      -e 's/^domain  *\([^ ]*\).*/\1/p' $tans \
8272                                      | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8273                                         ;;
8274                                 esac
8275                         fi
8276                         ;;
8277                 esac
8278                 case "$dflt" in
8279                 .) echo "(No help from resolv.conf either -- attempting clever guess)"
8280                         dflt=.`sh -c domainname 2>/dev/null`
8281                         case "$dflt" in
8282                         '') dflt='.';;
8283                         .nis.*|.yp.*|.main.*) dflt=`echo $dflt | $sed -e 's/^\.[^.]*//'`;;
8284                         esac
8285                         ;;
8286                 esac
8287                 case "$dflt$osname" in
8288                 .os390) echo "(Attempting domain name extraction from //'SYS1.TCPPARMS(TCPDATA)')"
8289                         dflt=.`awk '/^DOMAINORIGIN/ {print $2}' "//'SYS1.TCPPARMS(TCPDATA)'" 2>/dev/null`
8290                         ;;
8291                 esac
8292                 case "$dflt" in
8293                 .) echo "(Lost all hope -- silly guess then)"
8294                         dflt='.nonet'
8295                         ;;
8296                 esac
8297                 $rm -f hosts
8298                 ;;
8299         *) dflt="$mydomain";;
8300         esac;;
8301 esac
8302 echo " "
8303 rp="What is your domain name?"
8304 . ./myread
8305 tans="$ans"
8306 case "$ans" in
8307 '') ;;
8308 .*) ;;
8309 *) tans=".$tans";;
8310 esac
8311 mydomain="$tans"
8312
8313 : translate upper to lower if necessary
8314 case "$mydomain" in
8315 *[A-Z]*)
8316         echo "(Normalizing case in your domain name)"
8317         mydomain=`echo $mydomain | ./tr '[A-Z]' '[a-z]'`
8318         ;;
8319 esac
8320
8321 : a little sanity check here
8322 case "$phostname" in
8323 '') ;;
8324 *)
8325         case `$phostname | ./tr '[A-Z]' '[a-z]'` in
8326         $myhostname$mydomain|$myhostname) ;;
8327         *)
8328                 case "$phostname" in
8329                 sed*)
8330                         echo "(That doesn't agree with your whoami.h file, by the way.)"
8331                         ;;
8332                 *)
8333                         echo "(That doesn't agree with your $phostname command, by the way.)"
8334                         ;;
8335                 esac
8336         ;;
8337         esac
8338         ;;
8339 esac
8340
8341 $cat <<EOM
8342
8343 I need to get your e-mail address in Internet format if possible, i.e.
8344 something like user@host.domain. Please answer accurately since I have
8345 no easy means to double check it. The default value provided below
8346 is most probably close to reality but may not be valid from outside
8347 your organization...
8348
8349 EOM
8350 cont=x
8351 while test "$cont"; do
8352         case "$cf_email" in
8353         '') dflt="$cf_by@$myhostname$mydomain";;
8354         *) dflt="$cf_email";;
8355         esac
8356         rp='What is your e-mail address?'
8357         . ./myread
8358         cf_email="$ans"
8359         case "$cf_email" in
8360         *@*.*) cont='' ;;
8361         *)
8362                 rp='Address does not look like an Internet one.  Use it anyway?'
8363                 case "$fastread" in
8364                 yes) dflt=y ;;
8365                 *) dflt=n ;;
8366                 esac
8367                 . ./myread
8368                 case "$ans" in
8369                 y*) cont='' ;;
8370                 *) echo " " ;;
8371                 esac
8372                 ;;
8373         esac
8374 done
8375
8376 $cat <<EOM
8377
8378 If you or somebody else will be maintaining perl at your site, please
8379 fill in the correct e-mail address here so that they may be contacted
8380 if necessary. Currently, the "perlbug" program included with perl
8381 will send mail to this address in addition to perlbug@perl.org. You may
8382 enter "none" for no administrator.
8383
8384 EOM
8385 case "$perladmin" in
8386 '') dflt="$cf_email";;
8387 *) dflt="$perladmin";;
8388 esac
8389 rp='Perl administrator e-mail address'
8390 . ./myread
8391 perladmin="$ans"
8392
8393 : determine whether to only install version-specific parts.
8394 echo " "
8395 $cat <<EOM
8396 Do you want to install only the version-specific parts of the perl
8397 distribution?  Usually you do *not* want to do this.
8398 EOM
8399 case "$versiononly" in
8400 "$define"|[Yy]*|true) dflt='y' ;;
8401 *) dflt='n';
8402 esac
8403 rp="Do you want to install only the version-specific parts of perl?"
8404 . ./myread
8405 case "$ans" in
8406 [yY]*)  val="$define";;
8407 *)      val="$undef" ;;
8408 esac
8409 set versiononly
8410 eval $setvar
8411
8412 case "$versiononly" in
8413 "$define") inc_version_list=''
8414            inc_version_list_init=0
8415            ;;
8416 esac
8417
8418 : figure out how to guarantee perl startup
8419 case "$startperl" in
8420 '')
8421         case "$sharpbang" in
8422         *!)
8423                 $cat <<EOH
8424
8425 I can use the #! construct to start perl on your system. This will
8426 make startup of perl scripts faster, but may cause problems if you
8427 want to share those scripts and perl is not in a standard place
8428 ($binexp/perl) on all your platforms. The alternative is to force
8429 a shell by starting the script with a single ':' character.
8430
8431 EOH
8432                 case "$versiononly" in
8433                 "$define")      dflt="$binexp/perl$version";;  
8434                 *)              dflt="$binexp/perl";;
8435                 esac
8436                 rp='What shall I put after the #! to start up perl ("none" to not use #!)?'
8437                 . ./myread
8438                 case "$ans" in
8439                 none)   startperl=": # use perl";;
8440                 *)      startperl="#!$ans"
8441                         if $test 30 -lt `echo "$ans" | wc -c`; then
8442                                 $cat >&4 <<EOM
8443
8444 WARNING:  Some systems limit the #! command to 32 characters.
8445 If you experience difficulty running Perl scripts with #!, try
8446 installing Perl in a directory with a shorter pathname.
8447
8448 EOM
8449                         fi ;;
8450                 esac
8451                 ;;
8452         *) startperl=": # use perl"
8453                 ;;
8454         esac
8455         ;;
8456 esac
8457 echo "I'll use $startperl to start perl scripts."
8458
8459 : figure best path for perl in scripts
8460 case "$perlpath" in
8461 '')
8462         case "$versiononly" in
8463         "$define")      perlpath="$binexp/perl$version";;
8464         *)              perlpath="$binexp/perl";;
8465         esac
8466         case "$startperl" in
8467         *!*) ;;
8468         *)
8469                 $cat <<EOH
8470
8471 I will use the "eval 'exec'" idiom to start Perl on your system.
8472 I can use the full path of your Perl binary for this purpose, but
8473 doing so may cause problems if you want to share those scripts and
8474 Perl is not always in a standard place ($binexp/perl).
8475
8476 EOH
8477                 dflt="$binexp/perl"
8478                 rp="What path shall I use in \"eval 'exec'\"?"
8479                 . ./myread
8480                 perlpath="$ans"
8481                 ;;
8482         esac
8483         ;;
8484 esac
8485 case "$startperl" in
8486 *!*)    ;;
8487 *)      echo "I'll use $perlpath in \"eval 'exec'\"" ;;
8488 esac
8489
8490 : determine where public executable scripts go
8491 set scriptdir scriptdir
8492 eval $prefixit
8493 case "$scriptdir" in
8494 '')
8495         dflt="$bin"
8496         : guess some guesses
8497         $test -d /usr/share/scripts && dflt=/usr/share/scripts
8498         $test -d /usr/share/bin     && dflt=/usr/share/bin
8499         $test -d /usr/local/script  && dflt=/usr/local/script
8500         $test -d /usr/local/scripts && dflt=/usr/local/scripts
8501         $test -d $prefixexp/script  && dflt=$prefixexp/script
8502         set dflt
8503         eval $prefixup
8504         ;;
8505 *)  dflt="$scriptdir"
8506         ;;
8507 esac
8508 $cat <<EOM
8509  
8510 Some installations have a separate directory just for executable scripts so
8511 that they can mount it across multiple architectures but keep the scripts in
8512 one spot.  You might, for example, have a subdirectory of /usr/share for this.
8513 Or you might just lump your scripts in with all your other executables.
8514  
8515 EOM
8516 fn=d~
8517 rp='Where do you keep publicly executable scripts?'
8518 . ./getfile
8519 if $test "X$ansexp" != "X$scriptdirexp"; then
8520         installscript=''
8521 fi
8522 scriptdir="$ans"
8523 scriptdirexp="$ansexp"
8524 : Change installation prefix, if necessary.
8525 if $test X"$prefix" != X"$installprefix"; then
8526         installscript=`echo $scriptdirexp | sed "s#^$prefix#$installprefix#"`
8527 else
8528         installscript="$scriptdirexp"
8529 fi
8530
8531 : determine where add-on public executables go
8532 case "$sitebin" in
8533 '')     dflt=$siteprefix/bin ;;
8534 *)      dflt=$sitebin ;;
8535 esac
8536 fn=d~
8537 rp='Pathname where the add-on public executables should be installed?'
8538 . ./getfile
8539 sitebin="$ans"
8540 sitebinexp="$ansexp"
8541 : Change installation prefix, if necessary.
8542 if $test X"$prefix" != X"$installprefix"; then
8543         installsitebin=`echo $sitebinexp | sed "s#^$prefix#$installprefix#"`
8544 else
8545         installsitebin="$sitebinexp"
8546 fi
8547
8548 : determine where add-on html pages go
8549 : There is no standard location, so try to copy the previously-selected 
8550 : directory structure for the core html pages.
8551 case "$sitehtml1" in
8552 '')     dflt=`echo "$html1dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8553 *)      dflt=$sitehtml1 ;;
8554 esac
8555 case "$dflt" in
8556 ''|' ') dflt=none ;;
8557 esac
8558 fn=dn+~
8559 rp='Pathname where the site-specific html pages should be installed?'
8560 . ./getfile
8561 sitehtml1="$ans"
8562 sitehtml1exp="$ansexp"
8563 : Use ' ' for none so value is preserved next time through Configure
8564 $test X"$sitehtml1" = "X" && sitehtml1=' '
8565 : Change installation prefix, if necessary.
8566 if $test X"$prefix" != X"$installprefix"; then
8567         installsitehtml1=`echo "$sitehtml1exp" | $sed "s#^$prefix#$installprefix#"`
8568 else
8569         installsitehtml1="$sitehtml1exp"
8570 fi
8571
8572 : determine where add-on library html pages go
8573 : There is no standard location, so try to copy the previously-selected
8574 : directory structure for the core html pages.
8575 case "$sitehtml3" in
8576 '')     dflt=`echo "$html3dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8577 *)      dflt=$sitehtml3 ;;
8578 esac
8579 case "$dflt" in
8580 ''|' ') dflt=none ;;
8581 esac
8582 fn=dn+~
8583 rp='Pathname where the site-specific library html pages should be installed?'
8584 . ./getfile
8585 sitehtml3="$ans"
8586 sitehtml3exp="$ansexp"
8587 : Use ' ' for none so value is preserved next time through Configure
8588 $test X"$sitehtml3" = "X" && sitehtml3=' '
8589 : Change installation prefix, if necessary.
8590 if $test X"$prefix" != X"$installprefix"; then
8591         installsitehtml3=`echo "$sitehtml3exp" | $sed "s#^$prefix#$installprefix#"`
8592 else
8593         installsitehtml3="$sitehtml3exp"
8594 fi
8595
8596 : determine where add-on manual pages go
8597 case "$siteman1" in
8598 '')     dflt=`echo "$man1dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8599 *)      dflt=$siteman1 ;;
8600 esac
8601 case "$dflt" in
8602 ''|' ') dflt=none ;;
8603 esac
8604 fn=dn+~
8605 rp='Pathname where the site-specific manual pages should be installed?'
8606 . ./getfile
8607 siteman1="$ans"
8608 siteman1exp="$ansexp"
8609 : Use ' ' for none so value is preserved next time through Configure
8610 $test X"$siteman1" = "X" && siteman1=' '
8611 : Change installation prefix, if necessary.
8612 if $test X"$prefix" != X"$installprefix"; then
8613         installsiteman1=`echo "$siteman1exp" | $sed "s#^$prefix#$installprefix#"`
8614 else
8615         installsiteman1="$siteman1exp"
8616 fi
8617
8618 : determine where add-on library man pages go
8619 case "$siteman3" in
8620 '')     dflt=`echo "$man3dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8621 *)      dflt=$siteman3 ;;
8622 esac
8623 case "$dflt" in
8624 ''|' ') dflt=none ;;
8625 esac
8626 fn=dn+~
8627 rp='Pathname where the site-specific library manual pages should be installed?'
8628 . ./getfile
8629 siteman3="$ans"
8630 siteman3exp="$ansexp"
8631 : Use ' ' for none so value is preserved next time through Configure
8632 $test X"$siteman3" = "X" && siteman3=' '
8633 : Change installation prefix, if necessary.
8634 if $test X"$prefix" != X"$installprefix"; then
8635         installsiteman3=`echo "$siteman3exp" | $sed "s#^$prefix#$installprefix#"`
8636 else
8637         installsiteman3="$siteman3exp"
8638 fi
8639
8640 : determine where add-on public executable scripts go
8641 case "$sitescript" in
8642 '')     dflt=$siteprefix/script
8643         $test -d $dflt || dflt=$sitebin ;;
8644 *)  dflt="$sitescript" ;;
8645 esac
8646 fn=d~+
8647 rp='Pathname where add-on public executable scripts should be installed?'
8648 . ./getfile
8649 sitescript="$ans"
8650 sitescriptexp="$ansexp"
8651 : Change installation prefix, if necessary.
8652 if $test X"$prefix" != X"$installprefix"; then
8653         installsitescript=`echo $sitescriptexp | sed "s#^$prefix#$installprefix#"`
8654 else
8655         installsitescript="$sitescriptexp"
8656 fi
8657
8658 case "$usefaststdio" in
8659 $define|true|[yY]*|'')
8660         xversion=`awk '/define[         ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
8661         case "$xversion" in
8662         [68])   dflt='y' ;;
8663         *)      dflt='n' ;;
8664         esac
8665         ;;
8666 *) dflt='n';;
8667 esac
8668 cat <<EOM
8669
8670 Perl can be built to use 'fast stdio', which means using the stdio
8671 library but also directly manipulating the stdio buffers to enable
8672 faster I/O.  Using stdio is better for backward compatibility (especially
8673 for Perl extensions), but on the other hand since Perl 5.8 the 'perlio'
8674 interface has been preferred instead of stdio.
8675
8676 If this doesn't make any sense to you, just accept the default '$dflt'.
8677 EOM
8678 rp='Use the "fast stdio" if available?'
8679 . ./myread
8680 case "$ans" in
8681 y|Y)    val="$define" ;;     
8682 *)      val="$undef" ;;
8683 esac
8684 set usefaststdio
8685 eval $setvar
8686
8687
8688 : define an is-a-typedef? function
8689 typedef='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
8690 case "$inclist" in
8691 "") inclist="sys/types.h";;
8692 esac;
8693 eval "varval=\$$var";
8694 case "$varval" in
8695 "")
8696         $rm -f temp.c;
8697         for inc in $inclist; do
8698                 echo "#include <$inc>" >>temp.c;
8699         done;
8700         echo "#ifdef $type" >> temp.c;
8701         echo "printf(\"We have $type\");" >> temp.c;
8702         echo "#endif" >> temp.c;
8703         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
8704         if $contains $type temp.E >/dev/null 2>&1; then
8705                 eval "$var=\$type";
8706         else
8707                 eval "$var=\$def";
8708         fi;
8709         $rm -f temp.?;;
8710 *) eval "$var=\$varval";;
8711 esac'
8712
8713 : define an is-a-typedef? function that prompts if the type is not available.
8714 typedef_ask='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
8715 case "$inclist" in
8716 "") inclist="sys/types.h";;
8717 esac;
8718 eval "varval=\$$var";
8719 case "$varval" in
8720 "")
8721         $rm -f temp.c;
8722         for inc in $inclist; do
8723                 echo "#include <$inc>" >>temp.c;
8724         done;
8725         echo "#ifdef $type" >> temp.c;
8726         echo "printf(\"We have $type\");" >> temp.c;
8727         echo "#endif" >> temp.c;
8728         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
8729         echo " " ;
8730         echo "$rp" | $sed -e "s/What is/Looking for/" -e "s/?/./";
8731         if $contains $type temp.E >/dev/null 2>&1; then
8732                 echo "$type found." >&4;
8733                 eval "$var=\$type";
8734         else
8735                 echo "$type NOT found." >&4;
8736                 dflt="$def";
8737                 . ./myread ;
8738                 eval "$var=\$ans";
8739         fi;
8740         $rm -f temp.?;;
8741 *) eval "$var=\$varval";;
8742 esac'
8743
8744 : see what type lseek is declared as in the kernel
8745 rp="What is the type used for lseek's offset on this system?"
8746 set off_t lseektype long stdio.h sys/types.h
8747 eval $typedef_ask
8748
8749 echo " "
8750 echo "Checking to see how big your file offsets are..." >&4
8751 $cat >try.c <<EOCP
8752 #include <sys/types.h>
8753 #include <stdio.h>
8754 int main()
8755 {
8756     printf("%d\n", (int)sizeof($lseektype));
8757     return(0); 
8758 }
8759 EOCP
8760 set try
8761 if eval $compile_ok; then
8762         lseeksize=`$run ./try`
8763         echo "Your file offsets are $lseeksize bytes long."
8764 else
8765         dflt=$longsize
8766         echo " "
8767         echo "(I can't seem to compile the test program.  Guessing...)"
8768         rp="What is the size of your file offsets (in bytes)?"
8769         . ./myread
8770         lseeksize="$ans"
8771 fi
8772 $rm -f try.c try
8773
8774 : see what type file positions are declared as in the library
8775 rp="What is the type for file position used by fsetpos()?"
8776 set fpos_t fpostype long stdio.h sys/types.h
8777 eval $typedef_ask
8778
8779 echo " "
8780 case "$fpostype" in
8781 *_t) zzz="$fpostype"    ;;
8782 *)   zzz="fpos_t"       ;;
8783 esac
8784 echo "Checking the size of $zzz..." >&4 
8785 cat > try.c <<EOCP
8786 #include <sys/types.h>
8787 #include <stdio.h>
8788 #$i_stdlib I_STDLIB
8789 #ifdef I_STDLIB
8790 #include <stdlib.h>
8791 #endif
8792 int main() {
8793     printf("%d\n", (int)sizeof($fpostype));
8794     exit(0);
8795 }
8796 EOCP
8797 set try
8798 if eval $compile_ok; then
8799         yyy=`$run ./try`
8800         case "$yyy" in
8801         '')     fpossize=4
8802                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
8803                 ;;
8804         *)      fpossize=$yyy
8805                 echo "Your $zzz is $fpossize bytes long."
8806                 ;;
8807         esac
8808 else
8809         dflt="$longsize"
8810         echo " " >&4
8811         echo "(I can't compile the test program.  Guessing...)" >&4
8812         rp="What is the size of your file positions (in bytes)?"
8813         . ./myread
8814         fpossize="$ans"
8815 fi
8816
8817 # Backward compatibility (uselfs is deprecated).
8818 case "$uselfs" in
8819 "$define"|true|[yY]*)
8820         cat <<EOM >&4
8821
8822 *** Configure -Duselfs is deprecated, using -Duselargefiles instead.
8823 EOM
8824         uselargefiles="$define"
8825         ;;
8826 esac                          
8827
8828 case "$lseeksize:$fpossize" in
8829 8:8) cat <<EOM
8830
8831 You can have files larger than 2 gigabytes.
8832 EOM
8833    val="$define" ;;
8834 *)    case "$uselargefiles" in
8835    "$undef"|false|[nN]*) dflt='n' ;;
8836    *)   dflt='y' ;;
8837    esac
8838    cat <<EOM
8839
8840 Perl can be built to understand large files (files larger than 2 gigabytes)
8841 on some systems.  To do so, Configure can be run with -Duselargefiles.
8842
8843 If this doesn't make any sense to you, just accept the default '$dflt'.
8844 EOM
8845    rp='Try to understand large files, if available?'
8846    . ./myread
8847    case "$ans" in
8848    y|Y)         val="$define" ;;
8849    *)           val="$undef"  ;;
8850    esac
8851    ;;
8852 esac
8853 set uselargefiles
8854 eval $setvar
8855 case "$uselargefiles" in
8856 "$define")
8857 : Look for a hint-file generated 'call-back-unit'.  If the
8858 : user has specified that a large files perl is to be built,
8859 : we may need to set or change some other defaults.
8860         if $test -f uselargefiles.cbu; then
8861                 echo "Your platform has some specific hints for large file builds, using them..."
8862                 . ./uselargefiles.cbu
8863                 echo " "
8864                 echo "Rechecking to see how big your file offsets are..." >&4
8865                 $cat >try.c <<EOCP
8866 #include <sys/types.h>
8867 #include <stdio.h>
8868 int main()
8869 {
8870     printf("%d\n", (int)sizeof($lseektype));
8871     return(0); 
8872 }
8873 EOCP
8874                 set try
8875                 if eval $compile_ok; then
8876                         lseeksize=`$run ./try`
8877                         $echo "Your file offsets are now $lseeksize bytes long."
8878                 else
8879                         dflt="$lseeksize"
8880                         echo " "
8881                         echo "(I can't seem to compile the test program.  Guessing...)"
8882                         rp="What is the size of your file offsets (in bytes)?"
8883                         . ./myread
8884                         lseeksize="$ans"
8885                 fi
8886                 case "$fpostype" in
8887                 *_t) zzz="$fpostype"    ;;
8888                 *)   zzz="fpos_t"       ;;
8889                 esac
8890                 $echo $n "Rechecking the size of $zzz...$c" >&4 
8891                 $cat > try.c <<EOCP
8892 #include <sys/types.h>
8893 #include <stdio.h>
8894 #$i_stdlib I_STDLIB
8895 #ifdef I_STDLIB
8896 #include <stdlib.h>
8897 #endif
8898 int main() {
8899     printf("%d\n", (int)sizeof($fpostype));
8900     return(0);
8901 }
8902 EOCP
8903                 set try
8904                 if eval $compile_ok; then
8905                         yyy=`$run ./try`
8906                         dflt="$lseeksize"
8907                         case "$yyy" in
8908                         '')     echo " "
8909                                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
8910                                 ;;
8911                         *)      fpossize=$yyy
8912                                 echo " $fpossize bytes." >&4
8913                                 ;;
8914                         esac
8915                 else
8916                         dflt="$fpossize"
8917                         echo " "
8918                         echo "(I can't compile the test program.  Guessing...)" >&4
8919                         rp="What is the size of your file positions (in bytes)?"
8920                         . ./myread
8921                         fpossize="$ans"
8922                 fi
8923                 $rm -f try.c try
8924         fi
8925         ;;
8926 esac
8927
8928 case "$vendorprefix" in
8929 '')     d_vendorbin="$undef"
8930         vendorbin=''
8931         vendorbinexp=''
8932         ;;
8933 *)      d_vendorbin="$define"
8934         : determine where vendor-supplied executables go.
8935         case "$vendorbin" in
8936         '') dflt=$vendorprefix/bin ;;
8937         *)      dflt="$vendorbin" ;;
8938         esac
8939         fn=d~+
8940         rp='Pathname for the vendor-supplied executables directory?'
8941         . ./getfile
8942         vendorbin="$ans"
8943         vendorbinexp="$ansexp"
8944         ;;
8945 esac
8946 : Change installation prefix, if necessary.
8947 if $test X"$prefix" != X"$installprefix"; then
8948         installvendorbin=`echo $vendorbinexp | $sed "s#^$prefix#$installprefix#"`
8949 else
8950         installvendorbin="$vendorbinexp"
8951 fi
8952
8953 case "$vendorprefix" in
8954 '')     vendorhtml1=''
8955         vendorhtml1exp=''
8956         ;;
8957 *)      : determine where vendor-supplied html pages go.
8958         : There is no standard location, so try to copy the previously-selected
8959         : directory structure for the core html pages.
8960         : XXX Better default suggestions would be welcome.
8961         case "$vendorhtml1" in
8962         '')     dflt=`echo "$html1dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
8963         *)      dflt=$vendorhtml1 ;;
8964         esac
8965         case "$dflt" in
8966         ''|' ') dflt=none ;;
8967         esac
8968         fn=dn+~
8969         rp='Pathname for the vendor-supplied html pages?'
8970         . ./getfile
8971         vendorhtml1="$ans"
8972         vendorhtml1exp="$ansexp"
8973         ;;
8974 esac
8975 : Use ' ' for none so value is preserved next time through Configure
8976 $test X"$vendorhtml1" = "X" && vendorhtml1=' '
8977 : Change installation prefix, if necessary.
8978 if $test X"$prefix" != X"$installprefix"; then
8979         installvendorhtml1=`echo $vendorhtml1exp | $sed "s#^$prefix#$installprefix#"`
8980 else
8981         installvendorhtml1="$vendorhtml1exp"
8982 fi
8983
8984 case "$vendorprefix" in
8985 '')     vendorhtml3=''
8986         vendorhtml3exp=''
8987         ;;
8988 *)      : determine where vendor-supplied module html pages go.
8989         : There is no standard location, so try to copy the previously-selected
8990         : directory structure for the core html pages.
8991         : XXX Better default suggestions would be welcome.
8992         case "$vendorhtml3" in
8993         '')     dflt=`echo "$html3dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
8994         *)      dflt=$vendorhtml3 ;;
8995         esac
8996         case "$dflt" in
8997         ''|' ') dflt=none ;;
8998         esac
8999         fn=dn+~
9000         rp='Pathname for the vendor-supplied html pages?'
9001         . ./getfile
9002         vendorhtml3="$ans"
9003         vendorhtml3exp="$ansexp"
9004         ;;
9005 esac
9006 : Use ' ' for none so value is preserved next time through Configure
9007 $test X"$vendorhtml3" = "X" && vendorhtml3=' '
9008 : Change installation prefix, if necessary.
9009 if $test X"$prefix" != X"$installprefix"; then
9010         installvendorhtml3=`echo $vendorhtml3exp | $sed "s#^$prefix#$installprefix#"`
9011 else
9012         installvendorhtml3="$vendorhtml3exp"
9013 fi
9014
9015 case "$vendorprefix" in
9016 '')     vendorman1=''
9017         vendorman1exp=''
9018         ;;
9019 *)      : determine where vendor-supplied manual pages go.
9020         case "$vendorman1" in
9021         '') dflt=`echo "$man1dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9022         *)      dflt=$vendorman1 ;;
9023         esac
9024         case "$dflt" in
9025         ''|' ') dflt=none ;;
9026         esac
9027         fn=nd~+
9028         rp='Pathname for the vendor-supplied manual section 1 pages?'
9029         . ./getfile
9030         vendorman1="$ans"
9031         vendorman1exp="$ansexp"
9032         ;;
9033 esac
9034 : Use ' ' for none so value is preserved next time through Configure
9035 $test X"$vendorman1" = "X" && vendorman1=' '
9036 : Change installation prefix, if necessary.
9037 if $test X"$prefix" != X"$installprefix"; then
9038         installvendorman1=`echo "$vendorman1exp" | $sed "s#^$prefix#$installprefix#"`
9039 else
9040         installvendorman1="$vendorman1exp"
9041 fi
9042
9043 case "$vendorprefix" in
9044 '')     vendorman3=''
9045         vendorman3exp=''
9046         ;;
9047 *)      : determine where vendor-supplied module manual pages go.
9048         case "$vendorman3" in
9049         '') dflt=`echo "$man3dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9050         *)      dflt=$vendorman3 ;;
9051         esac
9052         case "$dflt" in
9053         ''|' ') dflt=none ;;
9054         esac
9055         fn=nd~+
9056         rp='Pathname for the vendor-supplied manual section 3 pages?'
9057         . ./getfile
9058         vendorman3="$ans"
9059         vendorman3exp="$ansexp"
9060         ;;
9061 esac
9062 : Use ' ' for none so value is preserved next time through Configure
9063 $test X"$vendorman3" = "X" && vendorman3=' '
9064 : Change installation prefix, if necessary.
9065 if $test X"$prefix" != X"$installprefix"; then
9066         installvendorman3=`echo "$vendorman3exp" | $sed "s#^$prefix#$installprefix#"`
9067 else
9068         installvendorman3="$vendorman3exp"
9069 fi
9070
9071 case "$vendorprefix" in
9072 '')     d_vendorscript="$undef"
9073         vendorscript=''
9074         vendorscriptexp=''
9075         ;;
9076 *)      d_vendorscript="$define"
9077         : determine where vendor-supplied scripts go.
9078         case "$vendorscript" in
9079         '')     dflt=$vendorprefix/script
9080                 $test -d $dflt || dflt=$vendorbin ;;
9081         *)  dflt="$vendorscript" ;;
9082         esac
9083         $cat <<EOM
9084
9085 The installation process will create a directory for 
9086 vendor-supplied scripts.
9087
9088 EOM
9089         fn=d~+
9090         rp='Pathname for the vendor-supplied scripts directory?'
9091         . ./getfile
9092         vendorscript="$ans"
9093         vendorscriptexp="$ansexp"
9094         ;;
9095 esac
9096 : Change installation prefix, if necessary.
9097 if $test X"$prefix" != X"$installprefix"; then
9098         installvendorscript=`echo $vendorscriptexp | $sed "s#^$prefix#$installprefix#"`
9099 else
9100         installvendorscript="$vendorscriptexp"
9101 fi
9102
9103 : see if qgcvt exists
9104 set qgcvt d_qgcvt
9105 eval $inlibc
9106
9107 echo " "
9108
9109 if $test X"$d_longdbl" = X"$define"; then
9110
9111 echo "Checking how to print long doubles..." >&4
9112
9113 if $test X"$sPRIfldbl" = X -a X"$doublesize" = X"$longdblsize"; then
9114         $cat >try.c <<'EOCP'
9115 #include <sys/types.h>
9116 #include <stdio.h>
9117 int main() {
9118   double d = 123.456;
9119   printf("%.3f\n", d);
9120 }
9121 EOCP
9122         set try
9123         if eval $compile; then
9124                 yyy=`$run ./try`
9125                 case "$yyy" in
9126                 123.456)
9127                         sPRIfldbl='"f"'; sPRIgldbl='"g"'; sPRIeldbl='"e"';
9128                         sPRIFUldbl='"F"'; sPRIGUldbl='"G"'; sPRIEUldbl='"E"';
9129                         echo "We will use %f."
9130                         ;;
9131                 esac
9132         fi
9133 fi
9134
9135 if $test X"$sPRIfldbl" = X; then
9136         $cat >try.c <<'EOCP'
9137 #include <sys/types.h>
9138 #include <stdio.h>
9139 int main() {
9140   long double d = 123.456;
9141   printf("%.3Lf\n", d);
9142 }
9143 EOCP
9144         set try
9145         if eval $compile; then
9146                 yyy=`$run ./try`
9147                 case "$yyy" in
9148                 123.456)
9149                         sPRIfldbl='"Lf"'; sPRIgldbl='"Lg"'; sPRIeldbl='"Le"';
9150                         sPRIFUldbl='"LF"'; sPRIGUldbl='"LG"'; sPRIEUldbl='"LE"';
9151                         echo "We will use %Lf."
9152                         ;;
9153                 esac
9154         fi
9155 fi
9156
9157 if $test X"$sPRIfldbl" = X; then
9158         $cat >try.c <<'EOCP'
9159 #include <sys/types.h>
9160 #include <stdio.h>
9161 int main() {
9162   long double d = 123.456;
9163   printf("%.3llf\n", d);
9164 }
9165 EOCP
9166         set try
9167         if eval $compile; then
9168                 yyy=`$run ./try`
9169                 case "$yyy" in
9170                 123.456)
9171                         sPRIfldbl='"llf"'; sPRIgldbl='"llg"'; sPRIeldbl='"lle"';
9172                         sPRIFUldbl='"llF"'; sPRIGUldbl='"llG"'; sPRIEUldbl='"llE"';
9173                         echo "We will use %llf."
9174                         ;;
9175                 esac
9176         fi
9177 fi
9178
9179 if $test X"$sPRIfldbl" = X; then
9180         $cat >try.c <<'EOCP'
9181 #include <sys/types.h>
9182 #include <stdio.h>
9183 int main() {
9184   long double d = 123.456;
9185   printf("%.3lf\n", d);
9186 }
9187 EOCP
9188         set try
9189         if eval $compile; then
9190                 yyy=`$run ./try`
9191                 case "$yyy" in
9192                 123.456)
9193                         sPRIfldbl='"lf"'; sPRIgldbl='"lg"'; sPRIeldbl='"le"';
9194                         sPRIFUldbl='"lF"'; sPRIGUldbl='"lG"'; sPRIEUldbl='"lE"';
9195                         echo "We will use %lf."
9196                         ;;
9197                 esac
9198         fi
9199 fi
9200
9201 if $test X"$sPRIfldbl" = X; then
9202         echo "Cannot figure out how to print long doubles." >&4
9203 else
9204         sSCNfldbl=$sPRIfldbl    # expect consistency
9205 fi
9206
9207 $rm -f try try.*
9208
9209 fi # d_longdbl
9210
9211 case "$sPRIfldbl" in
9212 '')     d_PRIfldbl="$undef"; d_PRIgldbl="$undef"; d_PRIeldbl="$undef"; 
9213         d_PRIFUldbl="$undef"; d_PRIGUldbl="$undef"; d_PRIEUldbl="$undef"; 
9214         d_SCNfldbl="$undef";
9215         ;;
9216 *)      d_PRIfldbl="$define"; d_PRIgldbl="$define"; d_PRIeldbl="$define"; 
9217         d_PRIFUldbl="$define"; d_PRIGUldbl="$define"; d_PRIEUldbl="$define"; 
9218         d_SCNfldbl="$define";
9219         ;;
9220 esac
9221
9222 : Check how to convert floats to strings.
9223
9224 if test "X$d_Gconvert" = X; then
9225
9226 echo " "
9227 echo "Checking for an efficient way to convert floats to strings."
9228 echo " " > try.c
9229 case "$uselongdouble" in
9230 "$define") echo "#define USE_LONG_DOUBLE" >>try.c ;;
9231 esac
9232 case "$d_longdbl" in
9233 "$define") echo "#define HAS_LONG_DOUBLE" >>try.c ;;
9234 esac
9235 case "$d_PRIgldbl" in
9236 "$define") echo "#define HAS_PRIgldbl"    >>try.c ;;
9237 esac
9238 $cat >>try.c <<EOP
9239 #ifdef TRY_gconvert
9240 #define Gconvert(x,n,t,b) gconvert((x),(n),(t),(b))
9241 char *myname = "gconvert";
9242 #endif
9243 #ifdef TRY_gcvt
9244 #define Gconvert(x,n,t,b) gcvt((x),(n),(b))
9245 char *myname = "gcvt";
9246 #endif
9247 #ifdef TRY_qgcvt
9248 #define Gconvert(x,n,t,b) qgcvt((x),(n),(b))
9249 char *myname = "qgcvt";
9250 #define DOUBLETYPE long double
9251 #endif
9252 #ifdef TRY_sprintf
9253 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
9254 #ifdef HAS_PRIgldbl
9255 #define Gconvert(x,n,t,b) sprintf((b),"%.*"$sPRIgldbl,(n),(x))
9256 #else
9257 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(double)(x))
9258 #endif
9259 #else
9260 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))
9261 #endif
9262 char *myname = "sprintf";
9263 #endif
9264
9265 #ifndef DOUBLETYPE
9266 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
9267 #define DOUBLETYPE long double
9268 #else
9269 #define DOUBLETYPE double
9270 #endif
9271 #endif
9272
9273 #include <stdio.h>
9274
9275 #define I_STDLIB $i_stdlib
9276 #ifdef I_STDLIB
9277 #include <stdlib.h>
9278 #endif
9279
9280 int
9281 checkit(expect, got)
9282 char *expect;
9283 char *got;
9284 {
9285     if (strcmp(expect, got)) {
9286                 printf("%s oddity:  Expected %s, got %s\n",
9287                         myname, expect, got);
9288                 exit(1);
9289         }
9290 }
9291
9292 int main()
9293
9294         char buf[64]; 
9295         buf[63] = '\0';
9296
9297         /* This must be 1st test on (which?) platform */
9298         /* Alan Burlison <AlanBurlsin@unn.unisys.com> */
9299         Gconvert((DOUBLETYPE)0.1, 8, 0, buf);
9300         checkit("0.1", buf);
9301
9302         Gconvert((DOUBLETYPE)0.01, 8, 0, buf); 
9303         checkit("0.01", buf);
9304
9305         Gconvert((DOUBLETYPE)0.001, 8, 0, buf); 
9306         checkit("0.001", buf);
9307
9308         Gconvert((DOUBLETYPE)0.0001, 8, 0, buf); 
9309         checkit("0.0001", buf);
9310
9311         Gconvert((DOUBLETYPE)0.00009, 8, 0, buf);
9312         if (strlen(buf) > 5)
9313             checkit("9e-005", buf); /* for Microsoft ?? */
9314         else
9315             checkit("9e-05", buf);
9316
9317         Gconvert((DOUBLETYPE)1.0, 8, 0, buf); 
9318         checkit("1", buf);
9319
9320         Gconvert((DOUBLETYPE)1.1, 8, 0, buf); 
9321         checkit("1.1", buf);
9322
9323         Gconvert((DOUBLETYPE)1.01, 8, 0, buf); 
9324         checkit("1.01", buf);
9325
9326         Gconvert((DOUBLETYPE)1.001, 8, 0, buf); 
9327         checkit("1.001", buf);
9328
9329         Gconvert((DOUBLETYPE)1.0001, 8, 0, buf); 
9330         checkit("1.0001", buf);
9331
9332         Gconvert((DOUBLETYPE)1.00001, 8, 0, buf); 
9333         checkit("1.00001", buf);
9334
9335         Gconvert((DOUBLETYPE)1.000001, 8, 0, buf); 
9336         checkit("1.000001", buf);
9337
9338         Gconvert((DOUBLETYPE)0.0, 8, 0, buf); 
9339         checkit("0", buf);
9340
9341         Gconvert((DOUBLETYPE)-1.0, 8, 0, buf); 
9342         checkit("-1", buf);
9343
9344         /* Some Linux gcvt's give 1.e+5 here. */
9345         Gconvert((DOUBLETYPE)100000.0, 8, 0, buf); 
9346         checkit("100000", buf);
9347         
9348         /* Some Linux gcvt's give -1.e+5 here. */
9349         Gconvert((DOUBLETYPE)-100000.0, 8, 0, buf); 
9350         checkit("-100000", buf);
9351
9352         Gconvert((DOUBLETYPE)123.456, 8, 0, buf); 
9353         checkit("123.456", buf);
9354
9355         /* Testing of 1e+129 in bigintpm.t must not get extra '.' here. */
9356         Gconvert((DOUBLETYPE)1e34, 8, 0, buf);
9357         /* 34 should be enough to scare even long double
9358          * places into using the e notation. */
9359         if (strlen(buf) > 5)
9360             checkit("1e+034", buf); /* for Microsoft */
9361         else
9362             checkit("1e+34", buf);
9363
9364         /* For Perl, if you add additional tests here, also add them to
9365          * t/base/num.t for benefit of platforms not using Configure or
9366          * overriding d_Gconvert */
9367
9368         exit(0);
9369 }
9370 EOP
9371 : first add preferred functions to our list
9372 xxx_list=""
9373 for xxx_convert in $gconvert_preference; do
9374     case $xxx_convert in
9375     gcvt|gconvert|sprintf) xxx_list="$xxx_list $xxx_convert" ;;
9376     *) echo "Discarding unrecognized gconvert_preference $xxx_convert" >&4 ;;
9377     esac 
9378 done
9379 : then add any others
9380 for xxx_convert in gconvert gcvt sprintf; do
9381     case "$xxx_list" in
9382     *$xxx_convert*) ;;
9383     *) xxx_list="$xxx_list $xxx_convert" ;;
9384     esac 
9385 done
9386
9387 case "$d_longdbl$uselongdouble" in
9388 "$define$define")
9389     : again, add prefered functions to our list first
9390     xxx_ld_list=""
9391     for xxx_convert in $gconvert_ld_preference; do
9392         case $xxx_convert in
9393         qgcvt|gcvt|gconvert|sprintf) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
9394         *) echo "Discarding unrecognized gconvert_ld_preference $xxx_convert" ;;
9395         esac
9396     done
9397     : then add qgcvt, sprintf--then, in xxx_list order, gconvert and gcvt
9398     for xxx_convert in qgcvt sprintf $xxx_list; do
9399         case "$xxx_ld_list" in
9400         $xxx_convert*|*" $xxx_convert"*) ;;
9401         *) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
9402         esac
9403     done
9404     : if sprintf cannot do long doubles, move it to the end
9405     if test "$d_PRIgldbl" != "$define"; then
9406         xxx_ld_list="`echo $xxx_ld_list|sed s/sprintf//` sprintf"
9407     fi
9408     : if no qgcvt, remove it
9409     if test "$d_qgcvt" != "$define"; then
9410         xxx_ld_list="`echo $xxx_ld_list|sed s/qgcvt//`"
9411     fi
9412     : use the ld_list
9413     xxx_list="$xxx_ld_list"
9414     ;;
9415 esac
9416
9417 for xxx_convert in $xxx_list; do
9418         echo "Trying $xxx_convert..."
9419         $rm -f try try$_o
9420         set try -DTRY_$xxx_convert
9421         if eval $compile; then
9422                 echo "$xxx_convert() found." >&4
9423                 if $run ./try; then
9424                         echo "I'll use $xxx_convert to convert floats into a string." >&4
9425                         break;
9426                 else
9427                         echo "...But $xxx_convert didn't work as I expected."
9428                         xxx_convert=''
9429                 fi
9430         else
9431                 echo "$xxx_convert NOT found." >&4
9432         fi
9433 done
9434
9435 if test X$xxx_convert = X; then
9436     echo "*** WHOA THERE!!! ***" >&4
9437     echo "None of ($xxx_list)  seemed to work properly.  I'll use sprintf." >&4
9438     xxx_convert=sprintf
9439 fi
9440
9441 case "$xxx_convert" in
9442 gconvert) d_Gconvert='gconvert((x),(n),(t),(b))' ;;
9443 gcvt) d_Gconvert='gcvt((x),(n),(b))' ;;
9444 qgcvt) d_Gconvert='qgcvt((x),(n),(b))' ;;
9445 *) case "$uselongdouble$d_longdbl$d_PRIgldbl" in
9446    "$define$define$define")
9447       d_Gconvert="sprintf((b),\"%.*\"$sPRIgldbl,(n),(x))" ;;
9448    "$define$define$undef")
9449       d_Gconvert='sprintf((b),"%.*g",(n),(double)(x))' ;;
9450    *) d_Gconvert='sprintf((b),"%.*g",(n),(x))' ;;
9451    esac
9452    ;;  
9453 esac
9454
9455 fi
9456
9457 : see if _fwalk exists
9458 set fwalk d__fwalk
9459 eval $inlibc
9460
9461 : Initialize h_fcntl
9462 h_fcntl=false
9463
9464 : Initialize h_sysfile
9465 h_sysfile=false
9466
9467 : access call always available on UNIX
9468 set access d_access
9469 eval $inlibc
9470
9471 : locate the flags for 'access()'
9472 case "$d_access" in
9473 "$define")
9474         echo " "
9475         $cat >access.c <<EOCP
9476 #include <sys/types.h>
9477 #ifdef I_FCNTL
9478 #include <fcntl.h>
9479 #endif
9480 #ifdef I_SYS_FILE
9481 #include <sys/file.h>
9482 #endif
9483 #ifdef I_UNISTD
9484 #include <unistd.h>
9485 #endif
9486 #$i_stdlib I_STDLIB
9487 #ifdef I_STDLIB
9488 #include <stdlib.h>
9489 #endif
9490 int main() {
9491         exit(R_OK);
9492 }
9493 EOCP
9494         : check sys/file.h first, no particular reason here
9495         if $test `./findhdr sys/file.h` && \
9496                 $cc -o access $cppflags -DI_SYS_FILE access.c >/dev/null 2>&1 ; then
9497                 h_sysfile=true;
9498                 echo "<sys/file.h> defines the *_OK access constants." >&4
9499         elif $test `./findhdr fcntl.h` && \
9500                 $cc -o access $cppflags -DI_FCNTL access.c >/dev/null 2>&1 ; then
9501                 h_fcntl=true;
9502                 echo "<fcntl.h> defines the *_OK access constants." >&4
9503         elif $test `./findhdr unistd.h` && \
9504                 $cc -o access $cppflags -DI_UNISTD access.c >/dev/null 2>&1 ; then
9505                 echo "<unistd.h> defines the *_OK access constants." >&4
9506         else
9507                 echo "I can't find the four *_OK access constants--I'll use mine." >&4
9508         fi
9509         ;;
9510 esac
9511 $rm -f access*
9512
9513 : see if accessx exists
9514 set accessx d_accessx
9515 eval $inlibc
9516
9517 : see if aintl exists
9518 set aintl d_aintl
9519 eval $inlibc
9520
9521 : see if alarm exists
9522 set alarm d_alarm
9523 eval $inlibc
9524
9525 : see if POSIX threads are available
9526 set pthread.h i_pthread
9527 eval $inhdr
9528
9529 : define a fucntion to check prototypes
9530 $cat > protochk <<EOSH
9531 $startsh
9532 cc="$cc"
9533 optimize="$optimize"
9534 ccflags="$ccflags"
9535 prototype="$prototype"
9536 define="$define"
9537 rm=$rm
9538 usethreads=$usethreads
9539 i_pthread=$i_pthread
9540 pthread_h_first=$pthread_h_first
9541 EOSH
9542
9543 $cat >> protochk <<'EOSH'
9544
9545 $rm -f try.c
9546 foo="$1"
9547 shift
9548 while test $# -ge 2; do
9549         case "$1" in
9550                 $define) echo "#include <$2>" >> try.c ;;
9551                 literal) echo "$2" >> try.c ;;
9552         esac
9553     # Extra magic for the benefit of systems that need pthread.h
9554     # to be included early to correctly detect threadsafe functions.
9555     # Such functions must guarantee themselves, though, that the usethreads
9556     # and i_pthread have been defined, before calling protochk.
9557     if test "$usethreads" = "$define" -a "$i_pthread" = "$define" -a "$pthread_h_first" = "$define" -a "$pthread_h_done" = ""; then
9558         echo "#include <pthread.h>" >> try.c
9559         pthread_h_done=yes
9560     fi
9561     shift 2
9562 done
9563 test "$prototype" = "$define"  && echo '#define CAN_PROTOTYPE' >> try.c
9564 cat >> try.c <<'EOCP'
9565 #ifdef CAN_PROTOTYPE
9566 #define _(args) args
9567 #else
9568 #define _(args) ()
9569 #endif
9570 EOCP
9571 echo "$foo" >> try.c
9572 echo 'int no_real_function_has_this_name _((void)) { return 0; }' >> try.c
9573 $cc $optimize $ccflags -c try.c > /dev/null 2>&1
9574 status=$?
9575 $rm -f try.[co]
9576 exit $status
9577 EOSH
9578 chmod +x protochk
9579 $eunicefix protochk
9580
9581 hasproto='varname=$1; func=$2; shift; shift;
9582 while $test $# -ge 2; do
9583         case "$1" in
9584         $define) echo "#include <$2>";;
9585         esac ;
9586     shift 2;
9587 done > try.c;
9588 $cppstdin $cppflags $cppminus < try.c > tryout.c 2>/dev/null;
9589 if $contains "$func.*(" tryout.c >/dev/null 2>&1; then
9590         echo "$func() prototype found.";
9591         val="$define";
9592 else
9593         echo "$func() prototype NOT found.";
9594         val="$undef";
9595 fi;
9596 set $varname;
9597 eval $setvar;
9598 $rm -f try.c tryout.c'
9599
9600 : see if sys/types.h has to be included
9601 set sys/types.h i_systypes
9602 eval $inhdr
9603
9604 : see if sys/select.h has to be included
9605 set sys/select.h i_sysselct
9606 eval $inhdr
9607
9608 hasfield='varname=$1; struct=$2; field=$3; shift; shift; shift;
9609 while $test $# -ge 2; do
9610         case "$1" in
9611         $define) echo "#include <$2>";;
9612         esac ;
9613     shift 2;
9614 done > try.c;
9615 echo "int main () { struct $struct foo; char* bar; bar = (char*)foo.$field; }" >> try.c;
9616 set try;
9617 if eval $compile; then
9618         val="$define";
9619 else
9620         val="$undef";
9621 fi;
9622 set $varname;
9623 eval $setvar;
9624 $rm -f try.c try.o'
9625
9626 : see if we should include time.h, sys/time.h, or both
9627 echo " "
9628 if test "X$timeincl" = X; then
9629         echo "Testing to see if we should include <time.h>, <sys/time.h> or both." >&4
9630         $echo $n "I'm now running the test program...$c"
9631         $cat >try.c <<EOCP
9632 #include <sys/types.h>
9633 #ifdef I_TIME
9634 #include <time.h>
9635 #endif
9636 #ifdef I_SYSTIME
9637 #ifdef SYSTIMEKERNEL
9638 #define KERNEL
9639 #endif
9640 #include <sys/time.h>
9641 #endif
9642 #ifdef I_SYSSELECT
9643 #include <sys/select.h>
9644 #endif
9645 #$i_stdlib I_STDLIB
9646 #ifdef I_STDLIB
9647 #include <stdlib.h>
9648 #endif
9649 int main()
9650 {
9651         struct tm foo;
9652 #ifdef S_TIMEVAL
9653         struct timeval bar;
9654 #endif
9655 #ifdef S_TIMEZONE
9656         struct timezone tzp;
9657 #endif
9658         if (foo.tm_sec == foo.tm_sec)
9659                 exit(0);
9660 #ifdef S_TIMEVAL
9661         if (bar.tv_sec == bar.tv_sec)
9662                 exit(0);
9663 #endif
9664         exit(1);
9665 }
9666 EOCP
9667         flags=''
9668         for s_timezone in '-DS_TIMEZONE' ''; do
9669         sysselect=''
9670         for s_timeval in '-DS_TIMEVAL' ''; do
9671         for i_systimek in '' '-DSYSTIMEKERNEL'; do
9672         for i_time in '' '-DI_TIME'; do
9673         for i_systime in '-DI_SYSTIME' ''; do
9674                 case "$flags" in
9675                 '') $echo $n ".$c"
9676                         set try $i_time $i_systime $i_systimek $sysselect $s_timeval $s_timezone
9677                         if eval $compile; then
9678                                 set X $i_time $i_systime $i_systimek $sysselect $s_timeval
9679                                 shift
9680                                 flags="$*"
9681                                 echo " "
9682                                 $echo $n "Succeeded with $flags$c"
9683                         fi
9684                         ;;
9685                 esac
9686         done
9687         done
9688         done
9689         done
9690         done
9691         timeincl=''
9692         echo " "
9693         case "$flags" in
9694         *SYSTIMEKERNEL*) i_systimek="$define"
9695                 timeincl=`./findhdr sys/time.h`
9696                 echo "We'll include <sys/time.h> with KERNEL defined." >&4;;
9697         *) i_systimek="$undef";;
9698         esac
9699         case "$flags" in
9700         *I_TIME*) i_time="$define"
9701                 timeincl=`./findhdr time.h`" $timeincl"
9702                 echo "We'll include <time.h>." >&4;;
9703         *) i_time="$undef";;
9704         esac
9705         case "$flags" in
9706         *I_SYSTIME*) i_systime="$define"
9707                 timeincl=`./findhdr sys/time.h`" $timeincl"
9708                 echo "We'll include <sys/time.h>." >&4;;
9709         *) i_systime="$undef";;
9710         esac
9711         $rm -f try.c try
9712 fi
9713 : see if struct tm knows about tm_zone
9714 case "$i_systime$i_time" in
9715 *$define*) 
9716         echo " "
9717         echo "Checking to see if your struct tm has tm_zone field..." >&4
9718         set d_tm_tm_zone tm tm_zone $i_systime sys/time.h $i_time time.h
9719         eval $hasfield
9720         ;;
9721 *)      val="$undef"
9722         set d_tm_tm_zone
9723         eval $setvar
9724         ;;
9725 esac
9726 case "$d_tm_tm_zone" in
9727 "$define")      echo "Yes, it does."   ;;
9728 *)              echo "No, it doesn't." ;;
9729 esac
9730 : see if struct tm knows about tm_gmtoff
9731 case "$i_systime$i_time" in
9732 *$define*) 
9733         echo " "
9734         echo "Checking to see if your struct tm has tm_gmtoff field..." >&4
9735         set d_tm_tm_gmtoff tm tm_gmtoff $i_systime sys/time.h $i_time time.h
9736         eval $hasfield
9737         ;;
9738 *)      val="$undef"
9739         set d_tm_tm_gmtoff
9740         eval $setvar
9741         ;;
9742 esac
9743 case "$d_tm_tm_gmtoff" in
9744 "$define")      echo "Yes, it does."   ;;
9745 *)              echo "No, it doesn't." ;;
9746 esac
9747
9748 : see if asctime_r exists
9749 set asctime_r d_asctime_r
9750 eval $inlibc
9751 case "$d_asctime_r" in
9752 "$define")
9753         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
9754         case "$d_asctime_r_proto:$usethreads" in
9755         ":define")      d_asctime_r_proto=define
9756                 set d_asctime_r_proto asctime_r $hdrs
9757                 eval $hasproto ;;
9758         *)      ;;
9759         esac
9760         case "$d_asctime_r_proto" in
9761         define)
9762         case "$asctime_r_proto" in
9763         ''|0) try='char* asctime_r(const struct tm*, char*);'
9764         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SB ;;
9765         esac
9766         case "$asctime_r_proto" in
9767         ''|0) try='char* asctime_r(const struct tm*, char*, int);'
9768         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SBI ;;
9769         esac
9770         case "$asctime_r_proto" in
9771         ''|0) try='int asctime_r(const struct tm*, char*);'
9772         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SB ;;
9773         esac
9774         case "$asctime_r_proto" in
9775         ''|0) try='int asctime_r(const struct tm*, char*, int);'
9776         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SBI ;;
9777         esac
9778         case "$asctime_r_proto" in
9779         ''|0)   d_asctime_r=undef
9780                 asctime_r_proto=0
9781                 echo "Disabling asctime_r, cannot determine prototype." >&4 ;;
9782         * )     case "$asctime_r_proto" in
9783                 REENTRANT_PROTO*) ;;
9784                 *) asctime_r_proto="REENTRANT_PROTO_$asctime_r_proto" ;;
9785                 esac
9786                 echo "Prototype: $try" ;;
9787         esac
9788         ;;
9789         *)      case "$usethreads" in
9790                 define) echo "asctime_r has no prototype, not using it." >&4 ;;
9791                 esac
9792                 d_asctime_r=undef
9793                 asctime_r_proto=0
9794                 ;;
9795         esac
9796         ;;
9797 *)      asctime_r_proto=0
9798         ;;
9799 esac
9800
9801 : see if atolf exists
9802 set atolf d_atolf
9803 eval $inlibc
9804
9805 : see if atoll exists
9806 set atoll d_atoll
9807 eval $inlibc
9808
9809 : Look for GNU-cc style attribute checking
9810 echo " "
9811 echo "Checking whether your compiler can handle __attribute__ ..." >&4
9812 $cat >attrib.c <<'EOCP'
9813 #include <stdio.h>
9814 void croak (char* pat,...) __attribute__((format(printf,1,2),noreturn));
9815 EOCP
9816 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
9817         if $contains 'warning' attrib.out >/dev/null 2>&1; then
9818                 echo "Your C compiler doesn't fully support __attribute__."
9819                 val="$undef"
9820         else
9821                 echo "Your C compiler supports __attribute__."
9822                 val="$define"
9823         fi
9824 else
9825         echo "Your C compiler doesn't seem to understand __attribute__ at all."
9826         val="$undef"
9827 fi
9828 set d_attribut
9829 eval $setvar
9830 $rm -f attrib*
9831
9832 : see if bcmp exists
9833 set bcmp d_bcmp
9834 eval $inlibc
9835
9836 : see if bcopy exists
9837 set bcopy d_bcopy
9838 eval $inlibc
9839
9840 : see if this is a unistd.h system
9841 set unistd.h i_unistd
9842 eval $inhdr
9843
9844 : see if getpgrp exists
9845 set getpgrp d_getpgrp
9846 eval $inlibc
9847
9848 case "$d_getpgrp" in
9849 "$define")
9850         echo " "
9851         echo "Checking to see which flavor of getpgrp is in use..."
9852         $cat >try.c <<EOP
9853 #$i_unistd I_UNISTD
9854 #include <sys/types.h>
9855 #ifdef I_UNISTD
9856 #  include <unistd.h>
9857 #endif
9858 #$i_stdlib I_STDLIB
9859 #ifdef I_STDLIB
9860 #include <stdlib.h>
9861 #endif
9862 int main()
9863 {
9864         if (getuid() == 0) {
9865                 printf("(I see you are running Configure as super-user...)\n");
9866                 setuid(1);
9867         }
9868 #ifdef TRY_BSD_PGRP
9869         if (getpgrp(1) == 0)
9870                 exit(0);
9871 #else
9872         if (getpgrp() > 0)
9873                 exit(0);
9874 #endif
9875         exit(1);
9876 }
9877 EOP
9878         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9879                 echo "You have to use getpgrp(pid) instead of getpgrp()." >&4
9880                 val="$define"
9881         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9882                 echo "You have to use getpgrp() instead of getpgrp(pid)." >&4
9883                 val="$undef"
9884         else
9885                 echo "I can't seem to compile and run the test program."
9886                 if ./usg; then
9887                         xxx="a USG one, i.e. you use getpgrp()."
9888                 else
9889                         # SVR4 systems can appear rather BSD-ish.
9890                         case "$i_unistd" in
9891                         $undef)
9892                                 xxx="a BSD one, i.e. you use getpgrp(pid)."
9893                                 val="$define"
9894                                 ;;
9895                         $define)
9896                                 xxx="probably a USG one, i.e. you use getpgrp()."
9897                                 val="$undef"
9898                                 ;;
9899                         esac
9900                 fi
9901                 echo "Assuming your getpgrp is $xxx" >&4
9902         fi
9903         ;;
9904 *) val="$undef";;
9905 esac
9906 set d_bsdgetpgrp
9907 eval $setvar
9908 $rm -f try try.*
9909
9910 : see if setpgrp exists
9911 set setpgrp d_setpgrp
9912 eval $inlibc
9913
9914 case "$d_setpgrp" in
9915 "$define")
9916         echo " "
9917         echo "Checking to see which flavor of setpgrp is in use..."
9918         $cat >try.c <<EOP
9919 #$i_unistd I_UNISTD
9920 #include <sys/types.h>
9921 #ifdef I_UNISTD
9922 #  include <unistd.h>
9923 #endif
9924 #$i_stdlib I_STDLIB
9925 #ifdef I_STDLIB
9926 #include <stdlib.h>
9927 #endif
9928 int main()
9929 {
9930         if (getuid() == 0) {
9931                 printf("(I see you are running Configure as super-user...)\n");
9932                 setuid(1);
9933         }
9934 #ifdef TRY_BSD_PGRP
9935         if (-1 == setpgrp(1, 1))
9936                 exit(0);
9937 #else
9938         if (setpgrp() != -1)
9939                 exit(0);
9940 #endif
9941         exit(1);
9942 }
9943 EOP
9944         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9945                 echo 'You have to use setpgrp(pid,pgrp) instead of setpgrp().' >&4
9946                 val="$define"
9947         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9948                 echo 'You have to use setpgrp() instead of setpgrp(pid,pgrp).' >&4
9949                 val="$undef"
9950         else
9951                 echo "(I can't seem to compile and run the test program.)"
9952                 if ./usg; then
9953                         xxx="a USG one, i.e. you use setpgrp()."
9954                 else
9955                         # SVR4 systems can appear rather BSD-ish.
9956                         case "$i_unistd" in
9957                         $undef)
9958                                 xxx="a BSD one, i.e. you use setpgrp(pid,pgrp)."
9959                                 val="$define"
9960                                 ;;
9961                         $define)
9962                                 xxx="probably a USG one, i.e. you use setpgrp()."
9963                                 val="$undef"
9964                                 ;;
9965                         esac
9966                 fi
9967                 echo "Assuming your setpgrp is $xxx" >&4
9968         fi
9969         ;;
9970 *) val="$undef";;
9971 esac
9972 set d_bsdsetpgrp
9973 eval $setvar
9974 $rm -f try try.*
9975 : see if bzero exists
9976 set bzero d_bzero
9977 eval $inlibc
9978
9979 : see if signal is declared as pointer to function returning int or void
9980 echo " "
9981 xxx=`./findhdr signal.h`
9982 $test "$xxx" && $cppstdin $cppminus $cppflags < $xxx >$$.tmp 2>/dev/null
9983 if $contains 'int.*\*[  ]*signal' $$.tmp >/dev/null 2>&1 ; then
9984         echo "You have int (*signal())() instead of void." >&4
9985         val="$undef"
9986 elif $contains 'void.*\*[       ]*signal' $$.tmp >/dev/null 2>&1 ; then
9987         echo "You have void (*signal())()." >&4
9988         val="$define"
9989 elif $contains 'extern[         ]*[(\*]*signal' $$.tmp >/dev/null 2>&1 ; then
9990         echo "You have int (*signal())() instead of void." >&4
9991         val="$undef"
9992 elif $contains 'void.*\*.*sig' $$.tmp >/dev/null 2>&1 ; then
9993         echo "You have void (*signal())()." >&4
9994         val="$define"
9995 else
9996         case "$d_voidsig" in
9997         '')
9998         echo "I can't determine whether signal handler returns void or int..." >&4
9999                 dflt=void
10000                 rp="What type does your signal handler return?"
10001                 . ./myread
10002                 case "$ans" in
10003                 v*) val="$define";;
10004                 *) val="$undef";;
10005                 esac;;
10006         "$define")
10007                 echo "As you already told me, signal handler returns void." >&4
10008                 val="$define"
10009                 ;;
10010         *)      echo "As you already told me, signal handler returns int." >&4
10011                 val="$undef"
10012                 ;;
10013         esac
10014 fi
10015 set d_voidsig
10016 eval $setvar
10017 case "$d_voidsig" in
10018 "$define") signal_t="void";;
10019 *) signal_t="int";;
10020 esac
10021 $rm -f $$.tmp
10022
10023 : check for ability to cast large floats to 32-bit ints.
10024 echo " "
10025 echo 'Checking whether your C compiler can cast large floats to int32.' >&4
10026 if $test "$intsize" -ge 4; then
10027         xxx=int
10028 else
10029         xxx=long
10030 fi
10031 $cat >try.c <<EOCP
10032 #include <stdio.h>
10033 #$i_stdlib I_STDLIB
10034 #ifdef I_STDLIB
10035 #include <stdlib.h>
10036 #endif
10037 #include <sys/types.h>
10038 #include <signal.h>
10039 $signal_t blech(s) int s; { exit(3); }
10040 int main()
10041 {
10042         $xxx i32;
10043         double f, g;
10044         int result = 0;
10045         char str[16];
10046         signal(SIGFPE, blech);
10047
10048         /* Don't let compiler optimize the test away.  Store the number 
10049            in a writable string for gcc to pass to sscanf under HP/UX.
10050         */
10051         sprintf(str, "2147483647");
10052         sscanf(str, "%lf", &f); /* f = (double) 0x7fffffff; */
10053         g = 10 * f;
10054         i32  = ($xxx) g;
10055
10056         /* x86 processors will probably give 0x8000 0000, which is a
10057        sign change.  We don't want that.  We want to mimic SPARC
10058            behavior here, which is to preserve the sign and give
10059            back 0x7fff ffff.
10060         */
10061         if (i32 != ($xxx) f)
10062                 result |= 1;
10063         exit(result);
10064 }
10065 EOCP
10066 set try
10067 if eval $compile_ok; then
10068         $run ./try
10069         yyy=$?
10070 else
10071         echo "(I can't seem to compile the test program--assuming it can't)"
10072         yyy=1
10073 fi
10074 case "$yyy" in
10075 0)      val="$define"
10076         echo "Yup, it can."
10077         ;;
10078 *)      val="$undef"
10079         echo "Nope, it can't."
10080         ;;
10081 esac
10082 set d_casti32
10083 eval $setvar
10084 $rm -f try try.*
10085
10086 : check for ability to cast negative floats to unsigned
10087 echo " "
10088 echo 'Checking whether your C compiler can cast negative float to unsigned.' >&4
10089 $cat >try.c <<EOCP
10090 #include <stdio.h>
10091 #$i_stdlib I_STDLIB
10092 #ifdef I_STDLIB
10093 #include <stdlib.h>
10094 #endif
10095 #include <sys/types.h>
10096 #include <signal.h>
10097 $signal_t blech(s) int s; { exit(7); }
10098 $signal_t blech_in_list(s) int s; { exit(4); }
10099 unsigned long dummy_long(p) unsigned long p; { return p; }
10100 unsigned int dummy_int(p) unsigned int p; { return p; }
10101 unsigned short dummy_short(p) unsigned short p; { return p; }
10102 int main()
10103 {
10104         double f;
10105         unsigned long along;
10106         unsigned int aint;
10107         unsigned short ashort;
10108         int result = 0;
10109         char str[16];
10110         
10111         /* Frustrate gcc-2.7.2's optimizer which failed this test with
10112            a direct f = -123. assignment.  gcc-2.8.0 reportedly
10113            optimized the whole file away
10114         */
10115         /* Store the number in a writable string for gcc to pass to 
10116            sscanf under HP/UX.
10117         */
10118         sprintf(str, "-123");
10119         sscanf(str, "%lf", &f);  /* f = -123.; */
10120
10121         signal(SIGFPE, blech);
10122         along = (unsigned long)f;
10123         aint = (unsigned int)f;
10124         ashort = (unsigned short)f;
10125         if (along != (unsigned long)-123)
10126                 result |= 1;
10127         if (aint != (unsigned int)-123)
10128                 result |= 1;
10129         if (ashort != (unsigned short)-123)
10130                 result |= 1;
10131         sprintf(str, "1073741824.");
10132         sscanf(str, "%lf", &f); /* f = (double)0x40000000; */
10133         f = f + f;
10134         along = 0;
10135         along = (unsigned long)f;
10136         if (along != 0x80000000)
10137                 result |= 2;
10138         f -= 1.;
10139         along = 0;
10140         along = (unsigned long)f;
10141         if (along != 0x7fffffff)
10142                 result |= 1;
10143         f += 2.;
10144         along = 0;
10145         along = (unsigned long)f;
10146         if (along != 0x80000001)
10147                 result |= 2;
10148         if (result)
10149                 exit(result);
10150         signal(SIGFPE, blech_in_list);
10151         sprintf(str, "123.");
10152         sscanf(str, "%lf", &f);  /* f = 123.; */
10153         along = dummy_long((unsigned long)f);
10154         aint = dummy_int((unsigned int)f);
10155         ashort = dummy_short((unsigned short)f);
10156         if (along != (unsigned long)123)
10157                 result |= 4;
10158         if (aint != (unsigned int)123)
10159                 result |= 4;
10160         if (ashort != (unsigned short)123)
10161                 result |= 4;
10162         exit(result);
10163
10164 }
10165 EOCP
10166 set try
10167 if eval $compile_ok; then
10168         $run ./try
10169         castflags=$?
10170 else
10171         echo "(I can't seem to compile the test program--assuming it can't)"
10172         castflags=7
10173 fi
10174 case "$castflags" in
10175 0)      val="$define"
10176         echo "Yup, it can."
10177         ;;
10178 *)      val="$undef"
10179         echo "Nope, it can't."
10180         ;;
10181 esac
10182 set d_castneg
10183 eval $setvar
10184 $rm -f try.*
10185
10186 : see if vprintf exists
10187 echo " "
10188 if set vprintf val -f d_vprintf; eval $csym; $val; then
10189         echo 'vprintf() found.' >&4
10190         val="$define"
10191         $cat >try.c <<EOF
10192 #include <varargs.h>
10193 #$i_stdlib I_STDLIB
10194 #ifdef I_STDLIB
10195 #include <stdlib.h>
10196 #endif
10197
10198 int main() { xxx("foo"); }
10199
10200 xxx(va_alist)
10201 va_dcl
10202 {
10203         va_list args;
10204         char buf[10];
10205
10206         va_start(args);
10207         exit((unsigned long)vsprintf(buf,"%s",args) > 10L);
10208 }
10209 EOF
10210         set try
10211         if eval $compile && $run ./try; then
10212                 echo "Your vsprintf() returns (int)." >&4
10213                 val2="$undef"
10214         else
10215                 echo "Your vsprintf() returns (char*)." >&4
10216                 val2="$define"
10217         fi
10218 else
10219         echo 'vprintf() NOT found.' >&4
10220                 val="$undef"
10221                 val2="$undef"
10222 fi
10223 $rm -f try try.*
10224 set d_vprintf
10225 eval $setvar
10226 val=$val2
10227 set d_charvspr
10228 eval $setvar
10229
10230 : see if chown exists
10231 set chown d_chown
10232 eval $inlibc
10233
10234 : see if chroot exists
10235 set chroot d_chroot
10236 eval $inlibc
10237
10238 : see if chsize exists
10239 set chsize d_chsize
10240 eval $inlibc
10241
10242 : see if class exists
10243 set class d_class
10244 eval $inlibc
10245
10246 hasstruct='varname=$1; struct=$2; shift; shift;
10247 while $test $# -ge 2; do
10248         case "$1" in
10249         $define) echo "#include <$2>";;
10250         esac ;
10251     shift 2;
10252 done > try.c;
10253 echo "int main () { struct $struct foo; }" >> try.c;
10254 set try;
10255 if eval $compile; then
10256         val="$define";
10257 else
10258         val="$undef";
10259 fi;
10260 set $varname;
10261 eval $setvar;
10262 $rm -f try.c try.o'
10263
10264 socketlib=''
10265 sockethdr=''
10266 : see whether socket exists
10267 echo " "
10268 $echo $n "Hmm... $c" >&4
10269 if set socket val -f d_socket; eval $csym; $val; then
10270         echo "Looks like you have Berkeley networking support." >&4
10271         d_socket="$define"
10272         if set setsockopt val -f; eval $csym; $val; then
10273                 d_oldsock="$undef"
10274         else
10275                 echo "...but it uses the old BSD 4.1c interface, rather than 4.2." >&4
10276                 d_oldsock="$define"
10277         fi
10278 else
10279         if $contains socklib libc.list >/dev/null 2>&1; then
10280                 echo "Looks like you have Berkeley networking support." >&4
10281                 d_socket="$define"
10282                 : we will have to assume that it supports the 4.2 BSD interface
10283                 d_oldsock="$undef"
10284         else
10285                 echo "You don't have Berkeley networking in libc$_a..." >&4
10286                 if test "X$d_socket" = "X$define"; then
10287                    echo "...but you seem to believe that you have sockets." >&4
10288                 else
10289                         for net in net socket
10290                         do
10291                                 if test -f /usr/lib/lib$net$_a; then
10292                                         ( ($nm $nm_opt /usr/lib/lib$net$_a | eval $nm_extract) ||  \
10293                                         $ar t /usr/lib/lib$net$_a) 2>/dev/null >> libc.list
10294                                         if $contains socket libc.list >/dev/null 2>&1; then
10295                                                 d_socket="$define"
10296                                                 socketlib="-l$net"
10297                                                 case "$net" in
10298                                                 net)
10299                                                         echo "...but the Wollongong group seems to have hacked it in." >&4
10300                                                         sockethdr="-I/usr/netinclude"
10301                                                         ;;
10302                                                 esac
10303                                                 echo "Found Berkeley sockets interface in lib$net." >&4 
10304                                                 if $contains setsockopt libc.list >/dev/null 2>&1; then
10305                                                         d_oldsock="$undef"
10306                                                 else
10307                                                         echo "...using the old BSD 4.1c interface, rather than 4.2." >&4
10308                                                         d_oldsock="$define"
10309                                                 fi
10310                                                 break
10311                                         fi
10312                                 fi
10313                         done
10314                         if test "X$d_socket" != "X$define"; then
10315                            echo "or anywhere else I see." >&4
10316                            d_socket="$undef"
10317                            d_oldsock="$undef"
10318                         fi
10319                 fi
10320         fi
10321 fi
10322
10323 : see if socketpair exists
10324 set socketpair d_sockpair
10325 eval $inlibc
10326
10327
10328 echo " "
10329 echo "Checking the availability of certain socket constants..." >&4
10330 for ENUM in MSG_CTRUNC MSG_DONTROUTE MSG_OOB MSG_PEEK MSG_PROXY SCM_RIGHTS; do
10331         enum=`$echo $ENUM|./tr '[A-Z]' '[a-z]'`
10332         $cat >try.c <<EOF
10333 #include <sys/types.h>
10334 #include <sys/socket.h>
10335 int main() {
10336     int i = $ENUM;
10337 }
10338 EOF
10339         val="$undef"
10340         set try; if eval $compile; then
10341                 val="$define"
10342         fi
10343         set d_${enum}; eval $setvar
10344         $rm -f try.c try
10345 done
10346
10347 : see if this is a sys/uio.h system
10348 set sys/uio.h i_sysuio
10349 eval $inhdr
10350
10351
10352 echo " "
10353 echo "Checking to see if your system supports struct cmsghdr..." >&4
10354 set d_cmsghdr_s cmsghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
10355 eval $hasstruct
10356 case "$d_cmsghdr_s" in
10357 "$define")      echo "Yes, it does."   ;;
10358 *)              echo "No, it doesn't." ;;
10359 esac
10360
10361
10362 : check for const keyword
10363 echo " "
10364 echo 'Checking to see if your C compiler knows about "const"...' >&4
10365 $cat >const.c <<'EOCP'
10366 typedef struct spug { int drokk; } spug;
10367 int main()
10368 {
10369         const char *foo;
10370         const spug y;
10371 }
10372 EOCP
10373 if $cc -c $ccflags const.c >/dev/null 2>&1 ; then
10374         val="$define"
10375         echo "Yup, it does."
10376 else
10377         val="$undef"
10378         echo "Nope, it doesn't."
10379 fi
10380 set d_const
10381 eval $setvar
10382
10383 : see if copysignl exists
10384 set copysignl d_copysignl
10385 eval $inlibc
10386
10387 : see if crypt exists
10388 echo " "
10389 set crypt d_crypt
10390 eval $inlibc
10391 case "$d_crypt" in
10392 $define) cryptlib='' ;;
10393 *)      if set crypt val -f d_crypt; eval $csym; $val; then
10394                 echo 'crypt() found.' >&4
10395                 val="$define"
10396                 cryptlib=''
10397         else
10398                 cryptlib=`./loc Slibcrypt$_a "" $xlibpth`
10399                 if $test -z "$cryptlib"; then
10400                         cryptlib=`./loc Mlibcrypt$_a "" $xlibpth`
10401                 else
10402                         cryptlib=-lcrypt
10403                 fi
10404                 if $test -z "$cryptlib"; then
10405                         cryptlib=`./loc Llibcrypt$_a "" $xlibpth`
10406                 else
10407                         cryptlib=-lcrypt
10408                 fi
10409                 if $test -z "$cryptlib"; then
10410                         cryptlib=`./loc libcrypt$_a "" $libpth`
10411                 else
10412                         cryptlib=-lcrypt
10413                 fi
10414                 if $test -z "$cryptlib"; then
10415                         echo 'crypt() NOT found.' >&4
10416                         val="$undef"
10417                 else
10418                         val="$define"
10419                 fi
10420         fi
10421         set d_crypt
10422         eval $setvar
10423         ;;
10424 esac
10425
10426 : see if this is a crypt.h system
10427 set crypt.h i_crypt
10428 eval $inhdr
10429
10430 : see if crypt_r exists
10431 set crypt_r d_crypt_r
10432 eval $inlibc
10433 case "$d_crypt_r" in
10434 "$define")
10435         hdrs="$i_systypes sys/types.h define stdio.h $i_crypt crypt.h"
10436         case "$d_crypt_r_proto:$usethreads" in
10437         ":define")      d_crypt_r_proto=define
10438                 set d_crypt_r_proto crypt_r $hdrs
10439                 eval $hasproto ;;
10440         *)      ;;
10441         esac
10442         case "$d_crypt_r_proto" in
10443         define)
10444         case "$crypt_r_proto" in
10445         ''|0) try='char* crypt_r(const char*, const char*, struct crypt_data*);'
10446         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCS ;;
10447         esac
10448         case "$crypt_r_proto" in
10449         ''|0) try='char* crypt_r(const char*, const char*, CRYPTD*);'
10450         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCD ;;
10451         esac
10452         case "$crypt_r_proto" in
10453         ''|0)   d_crypt_r=undef
10454                 crypt_r_proto=0
10455                 echo "Disabling crypt_r, cannot determine prototype." >&4 ;;
10456         * )     case "$crypt_r_proto" in
10457                 REENTRANT_PROTO*) ;;
10458                 *) crypt_r_proto="REENTRANT_PROTO_$crypt_r_proto" ;;
10459                 esac
10460                 echo "Prototype: $try" ;;
10461         esac
10462         ;;
10463         *)      case "$usethreads" in
10464                 define) echo "crypt_r has no prototype, not using it." >&4 ;;
10465                 esac
10466                 d_crypt_r=undef
10467                 crypt_r_proto=0
10468                 ;;
10469         esac
10470         ;;
10471 *)      crypt_r_proto=0
10472         ;;
10473 esac
10474
10475 : get csh whereabouts
10476 case "$csh" in
10477 'csh') val="$undef" ;;
10478 *) val="$define" ;;
10479 esac
10480 set d_csh
10481 eval $setvar
10482 : Respect a hint or command line value for full_csh.
10483 case "$full_csh" in
10484 '') full_csh=$csh ;;
10485 esac
10486
10487 : see if ctermid_r exists
10488 set ctermid_r d_ctermid_r
10489 eval $inlibc
10490 case "$d_ctermid_r" in
10491 "$define")
10492         hdrs="$i_systypes sys/types.h define stdio.h "
10493         case "$d_ctermid_r_proto:$usethreads" in
10494         ":define")      d_ctermid_r_proto=define
10495                 set d_ctermid_r_proto ctermid_r $hdrs
10496                 eval $hasproto ;;
10497         *)      ;;
10498         esac
10499         case "$d_ctermid_r_proto" in
10500         define)
10501         case "$ctermid_r_proto" in
10502         ''|0) try='char* ctermid_r(char*);'
10503         ./protochk "extern $try" $hdrs && ctermid_r_proto=B_B ;;
10504         esac
10505         case "$ctermid_r_proto" in
10506         ''|0)   d_ctermid_r=undef
10507                 ctermid_r_proto=0
10508                 echo "Disabling ctermid_r, cannot determine prototype." >&4 ;;
10509         * )     case "$ctermid_r_proto" in
10510                 REENTRANT_PROTO*) ;;
10511                 *) ctermid_r_proto="REENTRANT_PROTO_$ctermid_r_proto" ;;
10512                 esac
10513                 echo "Prototype: $try" ;;
10514         esac
10515         ;;
10516         *)      case "$usethreads" in
10517                 define) echo "ctermid_r has no prototype, not using it." >&4 ;;
10518                 esac
10519                 d_ctermid_r=undef
10520                 ctermid_r_proto=0
10521                 ;;
10522         esac
10523         ;;
10524 *)      ctermid_r_proto=0
10525         ;;
10526 esac
10527
10528 : see if ctime_r exists
10529 set ctime_r d_ctime_r
10530 eval $inlibc
10531 case "$d_ctime_r" in
10532 "$define")
10533         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
10534         case "$d_ctime_r_proto:$usethreads" in
10535         ":define")      d_ctime_r_proto=define
10536                 set d_ctime_r_proto ctime_r $hdrs
10537                 eval $hasproto ;;
10538         *)      ;;
10539         esac
10540         case "$d_ctime_r_proto" in
10541         define)
10542         case "$ctime_r_proto" in
10543         ''|0) try='char* ctime_r(const time_t*, char*);'
10544         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SB ;;
10545         esac
10546         case "$ctime_r_proto" in
10547         ''|0) try='char* ctime_r(const time_t*, char*, int);'
10548         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SBI ;;
10549         esac
10550         case "$ctime_r_proto" in
10551         ''|0) try='int ctime_r(const time_t*, char*);'
10552         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SB ;;
10553         esac
10554         case "$ctime_r_proto" in
10555         ''|0) try='int ctime_r(const time_t*, char*, int);'
10556         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SBI ;;
10557         esac
10558         case "$ctime_r_proto" in
10559         ''|0)   d_ctime_r=undef
10560                 ctime_r_proto=0
10561                 echo "Disabling ctime_r, cannot determine prototype." >&4 ;;
10562         * )     case "$ctime_r_proto" in
10563                 REENTRANT_PROTO*) ;;
10564                 *) ctime_r_proto="REENTRANT_PROTO_$ctime_r_proto" ;;
10565                 esac
10566                 echo "Prototype: $try" ;;
10567         esac
10568         ;;
10569         *)      case "$usethreads" in
10570                 define) echo "ctime_r has no prototype, not using it." >&4 ;;
10571                 esac
10572                 d_ctime_r=undef
10573                 ctime_r_proto=0
10574                 ;;
10575         esac
10576         ;;
10577 *)      ctime_r_proto=0
10578         ;;
10579 esac
10580
10581 : see if cuserid exists
10582 set cuserid d_cuserid
10583 eval $inlibc
10584
10585 : see if this is a limits.h system
10586 set limits.h i_limits
10587 eval $inhdr
10588
10589 : see if this is a float.h system
10590 set float.h i_float
10591 eval $inhdr
10592
10593 : See if number of significant digits in a double precision number is known
10594 echo " "
10595 $cat >dbl_dig.c <<EOM
10596 #$i_limits I_LIMITS
10597 #$i_float I_FLOAT
10598 #ifdef I_LIMITS
10599 #include <limits.h>
10600 #endif
10601 #ifdef I_FLOAT
10602 #include <float.h>
10603 #endif
10604 #ifdef DBL_DIG
10605 printf("Contains DBL_DIG");
10606 #endif
10607 EOM
10608 $cppstdin $cppflags $cppminus < dbl_dig.c >dbl_dig.E 2>/dev/null
10609 if $contains 'DBL_DIG' dbl_dig.E >/dev/null 2>&1; then
10610         echo "DBL_DIG found." >&4
10611         val="$define"
10612 else
10613         echo "DBL_DIG NOT found." >&4
10614         val="$undef"
10615 fi
10616 $rm -f dbl_dig.?
10617 set d_dbl_dig
10618 eval $setvar
10619
10620 : see if dbm.h is available
10621 : see if dbmclose exists
10622 set dbmclose d_dbmclose
10623 eval $inlibc
10624
10625 case "$d_dbmclose" in
10626 $define)
10627         set dbm.h i_dbm
10628         eval $inhdr
10629         case "$i_dbm" in
10630         $define)
10631                 val="$undef"
10632                 set i_rpcsvcdbm
10633                 eval $setvar
10634                 ;;
10635         *)      set rpcsvc/dbm.h i_rpcsvcdbm
10636                 eval $inhdr
10637                 ;;
10638         esac
10639         ;;
10640 *)      echo "We won't be including <dbm.h>"
10641         val="$undef"
10642         set i_dbm
10643         eval $setvar
10644         val="$undef"
10645         set i_rpcsvcdbm
10646         eval $setvar
10647         ;;
10648 esac
10649
10650 : see if prototype for dbminit is available
10651 echo " "
10652 set d_dbminitproto dbminit $i_dbm dbm.h
10653 eval $hasproto
10654
10655 : see if difftime exists
10656 set difftime d_difftime
10657 eval $inlibc
10658
10659 : see if this is a dirent system
10660 echo " "
10661 if xinc=`./findhdr dirent.h`; $test "$xinc"; then
10662         val="$define"
10663         echo "<dirent.h> found." >&4
10664 else
10665         val="$undef"
10666         if xinc=`./findhdr sys/dir.h`; $test "$xinc"; then
10667                 echo "<sys/dir.h> found." >&4
10668                 echo " "
10669         else
10670                 xinc=`./findhdr sys/ndir.h`
10671         fi
10672         echo "<dirent.h> NOT found." >&4
10673 fi
10674 set i_dirent
10675 eval $setvar
10676
10677 : Look for type of directory structure.
10678 echo " "
10679 $cppstdin $cppflags $cppminus < "$xinc" > try.c
10680
10681 case "$direntrytype" in
10682 ''|' ')
10683         case "$i_dirent" in
10684         $define) guess1='struct dirent' ;;
10685         *) guess1='struct direct'  ;;
10686         esac
10687         ;;
10688 *)      guess1="$direntrytype"
10689         ;;
10690 esac
10691
10692 case "$guess1" in
10693 'struct dirent') guess2='struct direct' ;;
10694 *) guess2='struct dirent' ;;
10695 esac
10696                 
10697 if $contains "$guess1" try.c >/dev/null 2>&1; then
10698         direntrytype="$guess1"
10699         echo "Your directory entries are $direntrytype." >&4
10700 elif $contains "$guess2" try.c >/dev/null 2>&1; then
10701         direntrytype="$guess2"
10702         echo "Your directory entries seem to be $direntrytype." >&4
10703 else
10704         echo "I don't recognize your system's directory entries." >&4
10705         rp="What type is used for directory entries on this system?"
10706         dflt="$guess1"
10707         . ./myread
10708         direntrytype="$ans"
10709 fi
10710 $rm -f try.c
10711
10712
10713 : see if the directory entry stores field length
10714 echo " "
10715 $cppstdin $cppflags $cppminus < "$xinc" > try.c
10716 if $contains 'd_namlen' try.c >/dev/null 2>&1; then
10717         echo "Good, your directory entry keeps length information in d_namlen." >&4
10718         val="$define"
10719 else
10720         echo "Your directory entry does not know about the d_namlen field." >&4
10721         val="$undef"
10722 fi
10723 set d_dirnamlen
10724 eval $setvar
10725 $rm -f try.c
10726
10727 : see if this is an sysdir system
10728 set sys/dir.h i_sysdir
10729 eval $inhdr
10730
10731 : see if this is an sysndir system
10732 set sys/ndir.h i_sysndir
10733 eval $inhdr
10734
10735 : Look for dirfd
10736 echo " "
10737 $cat >dirfd.c <<EOM
10738 #include <stdio.h>
10739 #$i_stdlib I_STDLIB
10740 #ifdef I_STDLIB
10741 #include <stdlib.h>
10742 #endif
10743 #$i_dirent I_DIRENT             /**/
10744 #$i_sysdir I_SYS_DIR            /**/
10745 #$i_sysndir I_SYS_NDIR          /**/
10746 #$i_systypes I_SYS_TYPES        /**/
10747 #if defined(I_SYS_TYPES)
10748 #include <sys/types.h>
10749 #endif
10750 #if defined(I_DIRENT)
10751 #include <dirent.h>
10752 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
10753 #include <sys/dir.h>
10754 #endif
10755 #else
10756 #ifdef I_SYS_NDIR
10757 #include <sys/ndir.h>
10758 #else
10759 #ifdef I_SYS_DIR
10760 #ifdef hp9000s500
10761 #include <ndir.h>       /* may be wrong in the future */
10762 #else
10763 #include <sys/dir.h>
10764 #endif
10765 #endif
10766 #endif
10767 #endif 
10768 int main() {
10769         DIR *dirp = opendir(".");
10770         if (dirfd(dirp) >= 0)
10771                 exit(0);
10772         else
10773                 exit(1);
10774 }
10775 EOM
10776 set dirfd
10777 if eval $compile; then
10778         val="$define"
10779 fi
10780 case "$val" in
10781 $define)        echo "dirfd() found." >&4       ;;
10782 *)              echo "dirfd() NOT found." >&4   ;;
10783 esac
10784 set d_dirfd
10785 eval $setvar
10786 $rm -f dirfd*
10787
10788 : see if dlerror exists
10789 xxx_runnm="$runnm"
10790 runnm=false
10791 set dlerror d_dlerror
10792 eval $inlibc
10793 runnm="$xxx_runnm"
10794
10795 : see if dlfcn is available
10796 set dlfcn.h i_dlfcn
10797 eval $inhdr
10798
10799 case "$usedl" in
10800 $define|y|true)
10801         $cat << EOM
10802
10803 On a few systems, the dynamically loaded modules that perl generates and uses
10804 will need a different extension than shared libs. The default will probably
10805 be appropriate.
10806
10807 EOM
10808         case "$dlext" in
10809         '')     dflt="$so" ;;
10810         *)      dflt="$dlext" ;;
10811         esac
10812         rp='What is the extension of dynamically loaded modules'
10813         . ./myread
10814         dlext="$ans"
10815         ;;
10816 *)
10817         dlext="none"
10818         ;;
10819 esac
10820
10821 : Check if dlsym need a leading underscore
10822 echo " "
10823 val="$undef"
10824
10825 case "$dlsrc" in
10826 dl_dlopen.xs)
10827         echo "Checking whether your dlsym() needs a leading underscore ..." >&4
10828         $cat >dyna.c <<'EOM'
10829 fred () { }
10830 EOM
10831
10832 $cat >fred.c<<EOM
10833
10834 #include <stdio.h>
10835 #$i_stdlib I_STDLIB
10836 #ifdef I_STDLIB
10837 #include <stdlib.h>
10838 #endif
10839 #$i_dlfcn I_DLFCN
10840 #ifdef I_DLFCN
10841 #include <dlfcn.h>      /* the dynamic linker include file for SunOS/Solaris */
10842 #else
10843 #include <sys/types.h>
10844 #include <nlist.h>
10845 #include <link.h>
10846 #endif
10847
10848 extern int fred() ;
10849
10850 int main()
10851 {
10852     void * handle ;
10853     void * symbol ;
10854 #ifndef RTLD_LAZY
10855     int mode = 1 ;
10856 #else
10857     int mode = RTLD_LAZY ;
10858 #endif
10859     handle = dlopen("./dyna.$dlext", mode) ;
10860     if (handle == NULL) {
10861         printf ("1\n") ;
10862         fflush (stdout) ;
10863         exit(0);
10864     }
10865     symbol = dlsym(handle, "fred") ;
10866     if (symbol == NULL) {
10867         /* try putting a leading underscore */
10868         symbol = dlsym(handle, "_fred") ;
10869         if (symbol == NULL) {
10870             printf ("2\n") ;
10871             fflush (stdout) ;
10872             exit(0);
10873         }
10874         printf ("3\n") ;
10875     }
10876     else
10877         printf ("4\n") ;
10878     fflush (stdout) ;
10879     exit(0);
10880 }
10881 EOM
10882         : Call the object file tmp-dyna.o in case dlext=o.
10883         if $cc $ccflags $cccdlflags -c dyna.c > /dev/null 2>&1 && 
10884                 mv dyna${_o} tmp-dyna${_o} > /dev/null 2>&1 && 
10885                 $ld -o dyna.$dlext $ldflags $lddlflags tmp-dyna${_o} > /dev/null 2>&1 && 
10886                 $cc -o fred $ccflags $ldflags $cccdlflags $ccdlflags fred.c $libs > /dev/null 2>&1 && $to dyna.$dlext; then
10887                 xxx=`$run ./fred`
10888                 case $xxx in
10889                 1)      echo "Test program failed using dlopen." >&4
10890                         echo "Perhaps you should not use dynamic loading." >&4;;
10891                 2)      echo "Test program failed using dlsym." >&4
10892                         echo "Perhaps you should not use dynamic loading." >&4;;
10893                 3)      echo "dlsym needs a leading underscore" >&4
10894                         val="$define" ;;
10895                 4)      echo "dlsym doesn't need a leading underscore." >&4;;
10896                 esac
10897         else
10898                 echo "I can't compile and run the test program." >&4
10899                 echo "I'm guessing that dlsym doesn't need a leading underscore." >&4
10900         fi
10901         ;;
10902 esac
10903                 
10904 $rm -f fred fred.* dyna.$dlext dyna.* tmp-dyna.*
10905
10906 set d_dlsymun
10907 eval $setvar
10908
10909 : see if drand48_r exists
10910 set drand48_r d_drand48_r
10911 eval $inlibc
10912 case "$d_drand48_r" in
10913 "$define")
10914         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
10915         case "$d_drand48_r_proto:$usethreads" in
10916         ":define")      d_drand48_r_proto=define
10917                 set d_drand48_r_proto drand48_r $hdrs
10918                 eval $hasproto ;;
10919         *)      ;;
10920         esac
10921         case "$d_drand48_r_proto" in
10922         define)
10923         case "$drand48_r_proto" in
10924         ''|0) try='int drand48_r(struct drand48_data*, double*);'
10925         ./protochk "extern $try" $hdrs && drand48_r_proto=I_ST ;;
10926         esac
10927         case "$drand48_r_proto" in
10928         ''|0)   d_drand48_r=undef
10929                 drand48_r_proto=0
10930                 echo "Disabling drand48_r, cannot determine prototype." >&4 ;;
10931         * )     case "$drand48_r_proto" in
10932                 REENTRANT_PROTO*) ;;
10933                 *) drand48_r_proto="REENTRANT_PROTO_$drand48_r_proto" ;;
10934                 esac
10935                 echo "Prototype: $try" ;;
10936         esac
10937         ;;
10938         *)      case "$usethreads" in
10939                 define) echo "drand48_r has no prototype, not using it." >&4 ;;
10940                 esac
10941                 d_drand48_r=undef
10942                 drand48_r_proto=0
10943                 ;;
10944         esac
10945         ;;
10946 *)      drand48_r_proto=0
10947         ;;
10948 esac
10949
10950 : see if prototype for drand48 is available
10951 echo " "
10952 set d_drand48proto drand48 $i_stdlib stdlib.h $i_unistd unistd.h
10953 eval $hasproto
10954
10955 : see if dup2 exists
10956 set dup2 d_dup2
10957 eval $inlibc
10958
10959 : see if eaccess exists
10960 set eaccess d_eaccess
10961 eval $inlibc
10962
10963 : see if endgrent exists
10964 set endgrent d_endgrent
10965 eval $inlibc
10966
10967 : see if this is an grp system
10968 set grp.h i_grp
10969 eval $inhdr
10970
10971 case "$i_grp" in
10972 $define)
10973         xxx=`./findhdr grp.h`
10974         $cppstdin $cppflags $cppminus < $xxx >$$.h
10975
10976         if $contains 'gr_passwd' $$.h >/dev/null 2>&1; then
10977                 val="$define"
10978         else
10979                 val="$undef"
10980         fi
10981         set d_grpasswd
10982         eval $setvar
10983
10984         $rm -f $$.h
10985         ;;
10986 *)
10987         val="$undef";
10988         set d_grpasswd; eval $setvar
10989         ;;
10990 esac
10991
10992 : see if endgrent_r exists
10993 set endgrent_r d_endgrent_r
10994 eval $inlibc
10995 case "$d_endgrent_r" in
10996 "$define")
10997         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
10998         case "$d_endgrent_r_proto:$usethreads" in
10999         ":define")      d_endgrent_r_proto=define
11000                 set d_endgrent_r_proto endgrent_r $hdrs
11001                 eval $hasproto ;;
11002         *)      ;;
11003         esac
11004         case "$d_endgrent_r_proto" in
11005         define)
11006         case "$endgrent_r_proto" in
11007         ''|0) try='int endgrent_r(FILE**);'
11008         ./protochk "extern $try" $hdrs && endgrent_r_proto=I_H ;;
11009         esac
11010         case "$endgrent_r_proto" in
11011         ''|0) try='void endgrent_r(FILE**);'
11012         ./protochk "extern $try" $hdrs && endgrent_r_proto=V_H ;;
11013         esac
11014         case "$endgrent_r_proto" in
11015         ''|0)   d_endgrent_r=undef
11016                 endgrent_r_proto=0
11017                 echo "Disabling endgrent_r, cannot determine prototype." >&4 ;;
11018         * )     case "$endgrent_r_proto" in
11019                 REENTRANT_PROTO*) ;;
11020                 *) endgrent_r_proto="REENTRANT_PROTO_$endgrent_r_proto" ;;
11021                 esac
11022                 echo "Prototype: $try" ;;
11023         esac
11024         ;;
11025         *)      case "$usethreads" in
11026                 define) echo "endgrent_r has no prototype, not using it." >&4 ;;
11027                 esac
11028                 d_endgrent_r=undef
11029                 endgrent_r_proto=0
11030                 ;;
11031         esac
11032         ;;
11033 *)      endgrent_r_proto=0
11034         ;;
11035 esac
11036
11037 : see if endhostent exists
11038 set endhostent d_endhent
11039 eval $inlibc
11040
11041 : see if this is a netdb.h system
11042 set netdb.h i_netdb
11043 eval $inhdr
11044
11045 : see if endhostent_r exists
11046 set endhostent_r d_endhostent_r
11047 eval $inlibc
11048 case "$d_endhostent_r" in
11049 "$define")
11050         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11051         case "$d_endhostent_r_proto:$usethreads" in
11052         ":define")      d_endhostent_r_proto=define
11053                 set d_endhostent_r_proto endhostent_r $hdrs
11054                 eval $hasproto ;;
11055         *)      ;;
11056         esac
11057         case "$d_endhostent_r_proto" in
11058         define)
11059         case "$endhostent_r_proto" in
11060         ''|0) try='int endhostent_r(struct hostent_data*);'
11061         ./protochk "extern $try" $hdrs && endhostent_r_proto=I_D ;;
11062         esac
11063         case "$endhostent_r_proto" in
11064         ''|0) try='void endhostent_r(struct hostent_data*);'
11065         ./protochk "extern $try" $hdrs && endhostent_r_proto=V_D ;;
11066         esac
11067         case "$endhostent_r_proto" in
11068         ''|0)   d_endhostent_r=undef
11069                 endhostent_r_proto=0
11070                 echo "Disabling endhostent_r, cannot determine prototype." >&4 ;;
11071         * )     case "$endhostent_r_proto" in
11072                 REENTRANT_PROTO*) ;;
11073                 *) endhostent_r_proto="REENTRANT_PROTO_$endhostent_r_proto" ;;
11074                 esac
11075                 echo "Prototype: $try" ;;
11076         esac
11077         ;;
11078         *)      case "$usethreads" in
11079                 define) echo "endhostent_r has no prototype, not using it." >&4 ;;
11080                 esac
11081                 d_endhostent_r=undef
11082                 endhostent_r_proto=0
11083                 ;;
11084         esac
11085         ;;
11086 *)      endhostent_r_proto=0
11087         ;;
11088 esac
11089
11090 : see if endnetent exists
11091 set endnetent d_endnent
11092 eval $inlibc
11093
11094 : see if endnetent_r exists
11095 set endnetent_r d_endnetent_r
11096 eval $inlibc
11097 case "$d_endnetent_r" in
11098 "$define")
11099         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11100         case "$d_endnetent_r_proto:$usethreads" in
11101         ":define")      d_endnetent_r_proto=define
11102                 set d_endnetent_r_proto endnetent_r $hdrs
11103                 eval $hasproto ;;
11104         *)      ;;
11105         esac
11106         case "$d_endnetent_r_proto" in
11107         define)
11108         case "$endnetent_r_proto" in
11109         ''|0) try='int endnetent_r(struct netent_data*);'
11110         ./protochk "extern $try" $hdrs && endnetent_r_proto=I_D ;;
11111         esac
11112         case "$endnetent_r_proto" in
11113         ''|0) try='void endnetent_r(struct netent_data*);'
11114         ./protochk "extern $try" $hdrs && endnetent_r_proto=V_D ;;
11115         esac
11116         case "$endnetent_r_proto" in
11117         ''|0)   d_endnetent_r=undef
11118                 endnetent_r_proto=0
11119                 echo "Disabling endnetent_r, cannot determine prototype." >&4 ;;
11120         * )     case "$endnetent_r_proto" in
11121                 REENTRANT_PROTO*) ;;
11122                 *) endnetent_r_proto="REENTRANT_PROTO_$endnetent_r_proto" ;;
11123                 esac
11124                 echo "Prototype: $try" ;;
11125         esac
11126         ;;
11127         *)      case "$usethreads" in
11128                 define) echo "endnetent_r has no prototype, not using it." >&4 ;;
11129                 esac
11130                 d_endnetent_r=undef
11131                 endnetent_r_proto=0
11132                 ;;
11133         esac
11134         ;;
11135 *)      endnetent_r_proto=0
11136         ;;
11137 esac
11138
11139 : see if endprotoent exists
11140 set endprotoent d_endpent
11141 eval $inlibc
11142
11143 : see if endprotoent_r exists
11144 set endprotoent_r d_endprotoent_r
11145 eval $inlibc
11146 case "$d_endprotoent_r" in
11147 "$define")
11148         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11149         case "$d_endprotoent_r_proto:$usethreads" in
11150         ":define")      d_endprotoent_r_proto=define
11151                 set d_endprotoent_r_proto endprotoent_r $hdrs
11152                 eval $hasproto ;;
11153         *)      ;;
11154         esac
11155         case "$d_endprotoent_r_proto" in
11156         define)
11157         case "$endprotoent_r_proto" in
11158         ''|0) try='int endprotoent_r(struct protoent_data*);'
11159         ./protochk "extern $try" $hdrs && endprotoent_r_proto=I_D ;;
11160         esac
11161         case "$endprotoent_r_proto" in
11162         ''|0) try='void endprotoent_r(struct protoent_data*);'
11163         ./protochk "extern $try" $hdrs && endprotoent_r_proto=V_D ;;
11164         esac
11165         case "$endprotoent_r_proto" in
11166         ''|0)   d_endprotoent_r=undef
11167                 endprotoent_r_proto=0
11168                 echo "Disabling endprotoent_r, cannot determine prototype." >&4 ;;
11169         * )     case "$endprotoent_r_proto" in
11170                 REENTRANT_PROTO*) ;;
11171                 *) endprotoent_r_proto="REENTRANT_PROTO_$endprotoent_r_proto" ;;
11172                 esac
11173                 echo "Prototype: $try" ;;
11174         esac
11175         ;;
11176         *)      case "$usethreads" in
11177                 define) echo "endprotoent_r has no prototype, not using it." >&4 ;;
11178                 esac
11179                 d_endprotoent_r=undef
11180                 endprotoent_r_proto=0
11181                 ;;
11182         esac
11183         ;;
11184 *)      endprotoent_r_proto=0
11185         ;;
11186 esac
11187
11188 : see if endpwent exists
11189 set endpwent d_endpwent
11190 eval $inlibc
11191
11192 : see if this is a pwd.h system
11193 set pwd.h i_pwd
11194 eval $inhdr
11195
11196 case "$i_pwd" in
11197 $define)
11198         xxx=`./findhdr pwd.h`
11199         $cppstdin $cppflags $cppminus < $xxx >$$.h
11200
11201         if $contains 'pw_quota' $$.h >/dev/null 2>&1; then
11202                 val="$define"
11203         else
11204                 val="$undef"
11205         fi
11206         set d_pwquota
11207         eval $setvar
11208
11209         if $contains 'pw_age' $$.h >/dev/null 2>&1; then
11210                 val="$define"
11211         else
11212                 val="$undef"
11213         fi
11214         set d_pwage
11215         eval $setvar
11216
11217         if $contains 'pw_change' $$.h >/dev/null 2>&1; then
11218                 val="$define"
11219         else
11220                 val="$undef"
11221         fi
11222         set d_pwchange
11223         eval $setvar
11224
11225         if $contains 'pw_class' $$.h >/dev/null 2>&1; then
11226                 val="$define"
11227         else
11228                 val="$undef"
11229         fi
11230         set d_pwclass
11231         eval $setvar
11232
11233         if $contains 'pw_expire' $$.h >/dev/null 2>&1; then
11234                 val="$define"
11235         else
11236                 val="$undef"
11237         fi
11238         set d_pwexpire
11239         eval $setvar
11240
11241         if $contains 'pw_comment' $$.h >/dev/null 2>&1; then
11242                 val="$define"
11243         else
11244                 val="$undef"
11245         fi
11246         set d_pwcomment
11247         eval $setvar
11248
11249         if $contains 'pw_gecos' $$.h >/dev/null 2>&1; then
11250                 val="$define"
11251         else
11252                 val="$undef"
11253         fi
11254         set d_pwgecos
11255         eval $setvar
11256
11257         if $contains 'pw_passwd' $$.h >/dev/null 2>&1; then
11258                 val="$define"
11259         else
11260                 val="$undef"
11261         fi
11262         set d_pwpasswd
11263         eval $setvar
11264
11265         $rm -f $$.h
11266         ;;
11267 *)
11268         val="$undef"; 
11269         set d_pwquota; eval $setvar
11270         set d_pwage; eval $setvar
11271         set d_pwchange; eval $setvar
11272         set d_pwclass; eval $setvar
11273         set d_pwexpire; eval $setvar
11274         set d_pwcomment; eval $setvar
11275         set d_pwgecos; eval $setvar
11276         set d_pwpasswd; eval $setvar
11277         ;;
11278 esac
11279
11280 : see if endpwent_r exists
11281 set endpwent_r d_endpwent_r
11282 eval $inlibc
11283 case "$d_endpwent_r" in
11284 "$define")
11285         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
11286         case "$d_endpwent_r_proto:$usethreads" in
11287         ":define")      d_endpwent_r_proto=define
11288                 set d_endpwent_r_proto endpwent_r $hdrs
11289                 eval $hasproto ;;
11290         *)      ;;
11291         esac
11292         case "$d_endpwent_r_proto" in
11293         define)
11294         case "$endpwent_r_proto" in
11295         ''|0) try='int endpwent_r(FILE**);'
11296         ./protochk "extern $try" $hdrs && endpwent_r_proto=I_H ;;
11297         esac
11298         case "$endpwent_r_proto" in
11299         ''|0) try='void endpwent_r(FILE**);'
11300         ./protochk "extern $try" $hdrs && endpwent_r_proto=V_H ;;
11301         esac
11302         case "$endpwent_r_proto" in
11303         ''|0)   d_endpwent_r=undef
11304                 endpwent_r_proto=0
11305                 echo "Disabling endpwent_r, cannot determine prototype." >&4 ;;
11306         * )     case "$endpwent_r_proto" in
11307                 REENTRANT_PROTO*) ;;
11308                 *) endpwent_r_proto="REENTRANT_PROTO_$endpwent_r_proto" ;;
11309                 esac
11310                 echo "Prototype: $try" ;;
11311         esac
11312         ;;
11313         *)      case "$usethreads" in
11314                 define) echo "endpwent_r has no prototype, not using it." >&4 ;;
11315                 esac
11316                 d_endpwent_r=undef
11317                 endpwent_r_proto=0
11318                 ;;
11319         esac
11320         ;;
11321 *)      endpwent_r_proto=0
11322         ;;
11323 esac
11324
11325 : see if endservent exists
11326 set endservent d_endsent
11327 eval $inlibc
11328
11329 : see if endservent_r exists
11330 set endservent_r d_endservent_r
11331 eval $inlibc
11332 case "$d_endservent_r" in
11333 "$define")
11334         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11335         case "$d_endservent_r_proto:$usethreads" in
11336         ":define")      d_endservent_r_proto=define
11337                 set d_endservent_r_proto endservent_r $hdrs
11338                 eval $hasproto ;;
11339         *)      ;;
11340         esac
11341         case "$d_endservent_r_proto" in
11342         define)
11343         case "$endservent_r_proto" in
11344         ''|0) try='int endservent_r(struct servent_data*);'
11345         ./protochk "extern $try" $hdrs && endservent_r_proto=I_D ;;
11346         esac
11347         case "$endservent_r_proto" in
11348         ''|0) try='void endservent_r(struct servent_data*);'
11349         ./protochk "extern $try" $hdrs && endservent_r_proto=V_D ;;
11350         esac
11351         case "$endservent_r_proto" in
11352         ''|0)   d_endservent_r=undef
11353                 endservent_r_proto=0
11354                 echo "Disabling endservent_r, cannot determine prototype." >&4 ;;
11355         * )     case "$endservent_r_proto" in
11356                 REENTRANT_PROTO*) ;;
11357                 *) endservent_r_proto="REENTRANT_PROTO_$endservent_r_proto" ;;
11358                 esac
11359                 echo "Prototype: $try" ;;
11360         esac
11361         ;;
11362         *)      case "$usethreads" in
11363                 define) echo "endservent_r has no prototype, not using it." >&4 ;;
11364                 esac
11365                 d_endservent_r=undef
11366                 endservent_r_proto=0
11367                 ;;
11368         esac
11369         ;;
11370 *)      endservent_r_proto=0
11371         ;;
11372 esac
11373
11374 : Locate the flags for 'open()'
11375 echo " "
11376 $cat >try.c <<EOCP
11377 #include <sys/types.h>
11378 #ifdef I_FCNTL
11379 #include <fcntl.h>
11380 #endif
11381 #ifdef I_SYS_FILE
11382 #include <sys/file.h>
11383 #endif
11384 #$i_stdlib I_STDLIB
11385 #ifdef I_STDLIB
11386 #include <stdlib.h>
11387 #endif
11388 int main() {
11389         if(O_RDONLY);
11390 #ifdef O_TRUNC
11391         exit(0);
11392 #else
11393         exit(1);
11394 #endif
11395 }
11396 EOCP
11397 : check sys/file.h first to get FREAD on Sun
11398 if $test `./findhdr sys/file.h` && \
11399                 set try -DI_SYS_FILE && eval $compile; then
11400         h_sysfile=true;
11401         echo "<sys/file.h> defines the O_* constants..." >&4
11402         if $run ./try; then
11403                 echo "and you have the 3 argument form of open()." >&4
11404                 val="$define"
11405         else
11406                 echo "but not the 3 argument form of open().  Oh, well." >&4
11407                 val="$undef"
11408         fi
11409 elif $test `./findhdr fcntl.h` && \
11410                 set try -DI_FCNTL && eval $compile; then
11411         h_fcntl=true;
11412         echo "<fcntl.h> defines the O_* constants..." >&4
11413         if $run ./try; then
11414                 echo "and you have the 3 argument form of open()." >&4
11415                 val="$define"
11416         else
11417                 echo "but not the 3 argument form of open().  Oh, well." >&4
11418                 val="$undef"
11419         fi
11420 else
11421         val="$undef"
11422         echo "I can't find the O_* constant definitions!  You got problems." >&4
11423 fi
11424 set d_open3
11425 eval $setvar
11426 $rm -f try try.*
11427
11428 : see which of string.h or strings.h is needed
11429 echo " "
11430 strings=`./findhdr string.h`
11431 if $test "$strings" && $test -r "$strings"; then
11432         echo "Using <string.h> instead of <strings.h>." >&4
11433         val="$define"
11434 else
11435         val="$undef"
11436         strings=`./findhdr strings.h`
11437         if $test "$strings" && $test -r "$strings"; then
11438                 echo "Using <strings.h> instead of <string.h>." >&4
11439         else
11440                 echo "No string header found -- You'll surely have problems." >&4
11441         fi
11442 fi
11443 set i_string
11444 eval $setvar
11445 case "$i_string" in
11446 "$undef") strings=`./findhdr strings.h`;;
11447 *)        strings=`./findhdr string.h`;;
11448 esac
11449
11450 : see if this is a sys/file.h system
11451 val=''
11452 set sys/file.h val
11453 eval $inhdr
11454
11455 : do we need to include sys/file.h ?
11456 case "$val" in
11457 "$define")
11458         echo " "
11459         if $h_sysfile; then
11460                 val="$define"
11461                 echo "We'll be including <sys/file.h>." >&4
11462         else
11463                 val="$undef"
11464                 echo "We won't be including <sys/file.h>." >&4
11465         fi
11466         ;;
11467 *)
11468         h_sysfile=false
11469         ;;
11470 esac
11471 set i_sysfile
11472 eval $setvar
11473
11474 : see if fcntl.h is there
11475 val=''
11476 set fcntl.h val
11477 eval $inhdr
11478
11479 : see if we can include fcntl.h
11480 case "$val" in
11481 "$define")
11482         echo " "
11483         if $h_fcntl; then
11484                 val="$define"
11485                 echo "We'll be including <fcntl.h>." >&4
11486         else
11487                 val="$undef"
11488                 if $h_sysfile; then
11489         echo "We don't need to include <fcntl.h> if we include <sys/file.h>." >&4
11490                 else
11491                         echo "We won't be including <fcntl.h>." >&4
11492                 fi
11493         fi
11494         ;;
11495 *)
11496         h_fcntl=false
11497         val="$undef"
11498         ;;
11499 esac
11500 set i_fcntl
11501 eval $setvar
11502
11503 : check for non-blocking I/O stuff
11504 case "$h_sysfile" in
11505 true) echo "#include <sys/file.h>" > head.c;;
11506 *)
11507        case "$h_fcntl" in
11508        true) echo "#include <fcntl.h>" > head.c;;
11509        *) echo "#include <sys/fcntl.h>" > head.c;;
11510        esac
11511        ;;
11512 esac
11513 echo " "
11514 echo "Figuring out the flag used by open() for non-blocking I/O..." >&4
11515 case "$o_nonblock" in
11516 '')
11517         $cat head.c > try.c
11518         $cat >>try.c <<EOCP
11519 #include <stdio.h>
11520 #$i_stdlib I_STDLIB
11521 #ifdef I_STDLIB
11522 #include <stdlib.h>
11523 #endif
11524 #$i_fcntl I_FCNTL
11525 #ifdef I_FCNTL
11526 #include <fcntl.h>
11527 #endif
11528 int main() {
11529 #ifdef O_NONBLOCK
11530         printf("O_NONBLOCK\n");
11531         exit(0);
11532 #endif
11533 #ifdef O_NDELAY
11534         printf("O_NDELAY\n");
11535         exit(0);
11536 #endif
11537 #ifdef FNDELAY
11538         printf("FNDELAY\n");
11539         exit(0);
11540 #endif
11541         exit(0);
11542 }
11543 EOCP
11544         set try
11545         if eval $compile_ok; then
11546                 o_nonblock=`$run ./try`
11547                 case "$o_nonblock" in
11548                 '') echo "I can't figure it out, assuming O_NONBLOCK will do.";;
11549                 *) echo "Seems like we can use $o_nonblock.";;
11550                 esac
11551         else
11552                 echo "(I can't compile the test program; pray O_NONBLOCK is right!)"
11553         fi
11554         ;;
11555 *) echo "Using $hint value $o_nonblock.";;
11556 esac
11557 $rm -f try try.* .out core
11558
11559 echo " "
11560 echo "Let's see what value errno gets from read() on a $o_nonblock file..." >&4
11561 case "$eagain" in
11562 '')
11563         $cat head.c > try.c
11564         $cat >>try.c <<EOCP
11565 #include <errno.h>
11566 #include <sys/types.h>
11567 #include <signal.h>
11568 #include <stdio.h> 
11569 #$i_stdlib I_STDLIB
11570 #ifdef I_STDLIB
11571 #include <stdlib.h>
11572 #endif
11573 #$i_fcntl I_FCNTL
11574 #ifdef I_FCNTL
11575 #include <fcntl.h>
11576 #endif
11577 #define MY_O_NONBLOCK $o_nonblock
11578 #ifndef errno  /* XXX need better Configure test */
11579 extern int errno;
11580 #endif
11581 #$i_unistd I_UNISTD
11582 #ifdef I_UNISTD
11583 #include <unistd.h>
11584 #endif
11585 #$i_string I_STRING
11586 #ifdef I_STRING
11587 #include <string.h>
11588 #else
11589 #include <strings.h>
11590 #endif
11591 $signal_t blech(x) int x; { exit(3); }
11592 EOCP
11593         $cat >> try.c <<'EOCP'
11594 int main()
11595 {
11596         int pd[2];
11597         int pu[2];
11598         char buf[1];
11599         char string[100];
11600
11601         pipe(pd);       /* Down: child -> parent */
11602         pipe(pu);       /* Up: parent -> child */
11603         if (0 != fork()) {
11604                 int ret;
11605                 close(pd[1]);   /* Parent reads from pd[0] */
11606                 close(pu[0]);   /* Parent writes (blocking) to pu[1] */
11607 #ifdef F_SETFL
11608                 if (-1 == fcntl(pd[0], F_SETFL, MY_O_NONBLOCK))
11609                         exit(1);
11610 #else
11611                 exit(4);
11612 #endif
11613                 signal(SIGALRM, blech);
11614                 alarm(5);
11615                 if ((ret = read(pd[0], buf, 1)) > 0)    /* Nothing to read! */
11616                         exit(2);
11617                 sprintf(string, "%d\n", ret);
11618                 write(2, string, strlen(string));
11619                 alarm(0);
11620 #ifdef EAGAIN
11621                 if (errno == EAGAIN) {
11622                         printf("EAGAIN\n");
11623                         goto ok;
11624                 }
11625 #endif
11626 #ifdef EWOULDBLOCK
11627                 if (errno == EWOULDBLOCK)
11628                         printf("EWOULDBLOCK\n");
11629 #endif
11630         ok:
11631                 write(pu[1], buf, 1);   /* Unblocks child, tell it to close our pipe */
11632                 sleep(2);                               /* Give it time to close our pipe */
11633                 alarm(5);
11634                 ret = read(pd[0], buf, 1);      /* Should read EOF */
11635                 alarm(0);
11636                 sprintf(string, "%d\n", ret);
11637                 write(4, string, strlen(string));
11638                 exit(0);
11639         }
11640
11641         close(pd[0]);                   /* We write to pd[1] */
11642         close(pu[1]);                   /* We read from pu[0] */
11643         read(pu[0], buf, 1);    /* Wait for parent to signal us we may continue */
11644         close(pd[1]);                   /* Pipe pd is now fully closed! */
11645         exit(0);                                /* Bye bye, thank you for playing! */
11646 }
11647 EOCP
11648         set try
11649         if eval $compile_ok; then
11650                 echo "$startsh" >mtry
11651                 echo "$run ./try >try.out 2>try.ret 4>try.err || exit 4" >>mtry
11652                 chmod +x mtry
11653                 ./mtry >/dev/null 2>&1
11654                 case $? in
11655                 0) eagain=`$cat try.out`;;
11656                 1) echo "Could not perform non-blocking setting!";;
11657                 2) echo "I did a successful read() for something that was not there!";;
11658                 3) echo "Hmm... non-blocking I/O does not seem to be working!";;
11659                 4) echo "Could not find F_SETFL!";;
11660                 *) echo "Something terribly wrong happened during testing.";;
11661                 esac
11662                 rd_nodata=`$cat try.ret`
11663                 echo "A read() system call with no data present returns $rd_nodata."
11664                 case "$rd_nodata" in
11665                 0|-1) ;;
11666                 *)
11667                         echo "(That's peculiar, fixing that to be -1.)"
11668                         rd_nodata=-1
11669                         ;;
11670                 esac
11671                 case "$eagain" in
11672                 '')
11673                         echo "Forcing errno EAGAIN on read() with no data available."
11674                         eagain=EAGAIN
11675                         ;;
11676                 *)
11677                         echo "Your read() sets errno to $eagain when no data is available."
11678                         ;;
11679                 esac
11680                 status=`$cat try.err`
11681                 case "$status" in
11682                 0) echo "And it correctly returns 0 to signal EOF.";;
11683                 -1) echo "But it also returns -1 to signal EOF, so be careful!";;
11684                 *) echo "However, your read() returns '$status' on EOF??";;
11685                 esac
11686                 val="$define"
11687                 if test "$status" = "$rd_nodata"; then
11688                         echo "WARNING: you can't distinguish between EOF and no data!"
11689                         val="$undef"
11690                 fi
11691         else
11692                 echo "I can't compile the test program--assuming errno EAGAIN will do."
11693                 eagain=EAGAIN
11694         fi
11695         set d_eofnblk
11696         eval $setvar
11697         ;;
11698 *)
11699         echo "Using $hint value $eagain."
11700         echo "Your read() returns $rd_nodata when no data is present."
11701         case "$d_eofnblk" in
11702         "$define") echo "And you can see EOF because read() returns 0.";;
11703         "$undef") echo "But you can't see EOF status from read() returned value.";;
11704         *)
11705                 echo "(Assuming you can't see EOF status from read anyway.)"
11706                 d_eofnblk=$undef
11707                 ;;
11708         esac
11709         ;;
11710 esac
11711 $rm -f try try.* .out core head.c mtry
11712
11713 : see if _ptr and _cnt from stdio act std
11714 echo " "
11715
11716 if $contains '_lbfsize' `./findhdr stdio.h` >/dev/null 2>&1 ; then
11717         echo "(Looks like you have stdio.h from BSD.)"
11718         case "$stdio_ptr" in
11719         '') stdio_ptr='((fp)->_p)'
11720                 ptr_lval=$define
11721                 ;;
11722         *)      ptr_lval=$d_stdio_ptr_lval;;
11723         esac
11724         case "$stdio_cnt" in
11725         '') stdio_cnt='((fp)->_r)'
11726                 cnt_lval=$define
11727                 ;;
11728         *)      cnt_lval=$d_stdio_cnt_lval;;
11729         esac
11730         case "$stdio_base" in
11731         '') stdio_base='((fp)->_ub._base ? (fp)->_ub._base : (fp)->_bf._base)';;
11732         esac
11733         case "$stdio_bufsiz" in
11734         '') stdio_bufsiz='((fp)->_ub._base ? (fp)->_ub._size : (fp)->_bf._size)';;
11735         esac
11736 elif $contains '_IO_fpos_t' `./findhdr stdio.h` `./findhdr libio.h` >/dev/null 2>&1 ; then
11737         echo "(Looks like you have stdio.h from Linux.)"
11738         case "$stdio_ptr" in
11739         '') stdio_ptr='((fp)->_IO_read_ptr)'
11740                 ptr_lval=$define
11741                 ;;
11742         *)      ptr_lval=$d_stdio_ptr_lval;;
11743         esac
11744         case "$stdio_cnt" in
11745         '') stdio_cnt='((fp)->_IO_read_end - (fp)->_IO_read_ptr)'
11746                 cnt_lval=$undef
11747                 ;;
11748         *)      cnt_lval=$d_stdio_cnt_lval;;
11749         esac
11750         case "$stdio_base" in
11751         '') stdio_base='((fp)->_IO_read_base)';;
11752         esac
11753         case "$stdio_bufsiz" in
11754         '') stdio_bufsiz='((fp)->_IO_read_end - (fp)->_IO_read_base)';;
11755         esac
11756 else
11757         case "$stdio_ptr" in
11758         '') stdio_ptr='((fp)->_ptr)'
11759                 ptr_lval=$define
11760                 ;;
11761         *)      ptr_lval=$d_stdio_ptr_lval;;
11762         esac
11763         case "$stdio_cnt" in
11764         '') stdio_cnt='((fp)->_cnt)'
11765                 cnt_lval=$define
11766                 ;;
11767         *)      cnt_lval=$d_stdio_cnt_lval;;
11768         esac
11769         case "$stdio_base" in
11770         '') stdio_base='((fp)->_base)';;
11771         esac
11772         case "$stdio_bufsiz" in
11773         '') stdio_bufsiz='((fp)->_cnt + (fp)->_ptr - (fp)->_base)';;
11774         esac
11775 fi
11776
11777 : test whether _ptr and _cnt really work
11778 echo "Checking how std your stdio is..." >&4
11779 $cat >try.c <<EOP
11780 #include <stdio.h>
11781 #$i_stdlib I_STDLIB
11782 #ifdef I_STDLIB
11783 #include <stdlib.h>
11784 #endif
11785 #define FILE_ptr(fp)    $stdio_ptr
11786 #define FILE_cnt(fp)    $stdio_cnt
11787 int main() {
11788         FILE *fp = fopen("try.c", "r");
11789         char c = getc(fp);
11790         if (
11791                 18 <= FILE_cnt(fp) &&
11792                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
11793         )
11794                 exit(0);
11795         exit(1);
11796 }
11797 EOP
11798 val="$undef"
11799 set try
11800 if eval $compile && $to try.c; then
11801         if $run ./try; then
11802                 echo "Your stdio acts pretty std."
11803                 val="$define"
11804         else
11805                 echo "Your stdio isn't very std."
11806         fi
11807 else
11808         echo "Your stdio doesn't appear very std."
11809 fi
11810 $rm -f try.c try
11811
11812 # glibc 2.2.90 and above apparently change stdio streams so Perl's
11813 # direct buffer manipulation no longer works.  The Configure tests
11814 # should be changed to correctly detect this, but until then,
11815 # the following check should at least let perl compile and run.
11816 # (This quick fix should be updated before 5.8.1.)
11817 # To be defensive, reject all unknown versions, and all versions  > 2.2.9.
11818 # A. Dougherty, June 3, 2002.
11819 case "$d_gnulibc" in
11820 $define)
11821         case "$gnulibc_version" in
11822         2.[01]*)  ;;
11823         2.2) ;;
11824         2.2.[0-9]) ;;
11825         *)  echo "But I will not snoop inside glibc $gnulibc_version stdio buffers."
11826                 val="$undef"
11827                 ;;
11828         esac
11829         ;;
11830 esac
11831 set d_stdstdio
11832 eval $setvar
11833
11834 : Can _ptr be used as an lvalue?
11835 case "$d_stdstdio$ptr_lval" in
11836 $define$define) val=$define ;;
11837 *) val=$undef ;;
11838 esac
11839 set d_stdio_ptr_lval
11840 eval $setvar
11841
11842 : Can _cnt be used as an lvalue?
11843 case "$d_stdstdio$cnt_lval" in
11844 $define$define) val=$define ;;
11845 *) val=$undef ;;
11846 esac
11847 set d_stdio_cnt_lval
11848 eval $setvar
11849
11850
11851 : test whether setting _ptr sets _cnt as a side effect
11852 d_stdio_ptr_lval_sets_cnt="$undef"
11853 d_stdio_ptr_lval_nochange_cnt="$undef"
11854 case "$d_stdio_ptr_lval$d_stdstdio" in
11855 $define$define)
11856         echo "Checking to see what happens if we set the stdio ptr..." >&4
11857 $cat >try.c <<EOP
11858 #include <stdio.h>
11859 /* Can we scream? */
11860 /* Eat dust sed :-) */
11861 /* In the buffer space, no one can hear you scream. */
11862 #$i_stdlib I_STDLIB
11863 #ifdef I_STDLIB
11864 #include <stdlib.h>
11865 #endif
11866 #define FILE_ptr(fp)    $stdio_ptr
11867 #define FILE_cnt(fp)    $stdio_cnt
11868 #include <sys/types.h>
11869 int main() {
11870         FILE *fp = fopen("try.c", "r");
11871         int c;
11872         char *ptr;
11873         size_t cnt;
11874         if (!fp) {
11875             puts("Fail even to read");
11876             exit(1);
11877         }
11878         c = getc(fp); /* Read away the first # */
11879         if (c == EOF) {
11880             puts("Fail even to read");
11881             exit(1);
11882         }
11883         if (!(
11884                 18 <= FILE_cnt(fp) &&
11885                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
11886         )) {
11887                 puts("Fail even to read");
11888                 exit (1);
11889         }
11890         ptr = (char*) FILE_ptr(fp);
11891         cnt = (size_t)FILE_cnt(fp);
11892
11893         FILE_ptr(fp) += 42;
11894
11895         if ((char*)FILE_ptr(fp) != (ptr + 42)) {
11896                 printf("Fail ptr check %p != %p", FILE_ptr(fp), (ptr + 42));
11897                 exit (1);
11898         }
11899         if (FILE_cnt(fp) <= 20) {
11900                 printf ("Fail (<20 chars to test)");
11901                 exit (1);
11902         }
11903         if (strncmp(FILE_ptr(fp), "Eat dust sed :-) */\n", 20) != 0) {
11904                 puts("Fail compare");
11905                 exit (1);
11906         }
11907         if (cnt == FILE_cnt(fp)) {
11908                 puts("Pass_unchanged");
11909                 exit (0);
11910         }       
11911         if (FILE_cnt(fp) == (cnt - 42)) {
11912                 puts("Pass_changed");
11913                 exit (0);
11914         }
11915         printf("Fail count was %d now %d\n", cnt, FILE_cnt(fp));
11916         return 1;
11917
11918 }
11919 EOP
11920         set try
11921         if eval $compile && $to try.c; then
11922                 case `$run ./try` in
11923                 Pass_changed)
11924                         echo "Increasing ptr in your stdio decreases cnt by the same amount.  Good." >&4
11925                         d_stdio_ptr_lval_sets_cnt="$define" ;;
11926                 Pass_unchanged)
11927                         echo "Increasing ptr in your stdio leaves cnt unchanged.  Good." >&4
11928                         d_stdio_ptr_lval_nochange_cnt="$define" ;;
11929                 Fail*)
11930                         echo "Increasing ptr in your stdio didn't do exactly what I expected.  We'll not be doing that then." >&4 ;;
11931                 *)
11932                         echo "It appears attempting to set ptr in your stdio is a bad plan." >&4 ;;
11933         esac
11934         else
11935                 echo "It seems we can't set ptr in your stdio.  Nevermind." >&4
11936         fi
11937         $rm -f try.c try
11938         ;;
11939 esac
11940
11941 : see if _base is also standard
11942 val="$undef"
11943 case "$d_stdstdio" in
11944 $define)
11945         $cat >try.c <<EOP
11946 #include <stdio.h>
11947 #$i_stdlib I_STDLIB
11948 #ifdef I_STDLIB
11949 #include <stdlib.h>
11950 #endif
11951 #define FILE_base(fp)   $stdio_base
11952 #define FILE_bufsiz(fp) $stdio_bufsiz
11953 int main() {
11954         FILE *fp = fopen("try.c", "r");
11955         char c = getc(fp);
11956         if (
11957                 19 <= FILE_bufsiz(fp) &&
11958                 strncmp(FILE_base(fp), "#include <stdio.h>\n", 19) == 0
11959         )
11960                 exit(0);
11961         exit(1);
11962 }
11963 EOP
11964         set try
11965         if eval $compile && $to try.c; then
11966                 if $run ./try; then
11967                         echo "And its _base field acts std."
11968                         val="$define"
11969                 else
11970                         echo "But its _base field isn't std."
11971                 fi
11972         else
11973                 echo "However, it seems to be lacking the _base field."
11974         fi
11975         $rm -f try.c try
11976         ;;
11977 esac
11978 set d_stdiobase
11979 eval $setvar
11980
11981 : see if fast_stdio exists
11982 val="$undef"
11983 case "$d_stdstdio:$d_stdio_ptr_lval" in
11984 "$define:$define")
11985         case "$d_stdio_cnt_lval$d_stdio_ptr_lval_sets_cnt" in
11986         *$define*)
11987                 echo "You seem to have 'fast stdio' to directly manipulate the stdio buffers." >& 4
11988                 val="$define"
11989                 ;;
11990         esac
11991         ;;
11992 esac
11993 set d_faststdio
11994 eval $setvar
11995
11996
11997
11998 : see if fchdir exists
11999 set fchdir d_fchdir
12000 eval $inlibc
12001
12002 : see if fchmod exists
12003 set fchmod d_fchmod
12004 eval $inlibc
12005
12006 : see if fchown exists
12007 set fchown d_fchown
12008 eval $inlibc
12009
12010 : see if this is an fcntl system
12011 set fcntl d_fcntl
12012 eval $inlibc
12013
12014 echo " "
12015 : See if fcntl-based locking works.
12016 $cat >try.c <<EOCP
12017 #$i_stdlib I_STDLIB
12018 #ifdef I_STDLIB
12019 #include <stdlib.h>
12020 #endif
12021 #include <unistd.h>
12022 #include <fcntl.h>
12023 #include <signal.h>
12024 $signal_t blech(x) int x; { exit(3); }
12025 int main() {
12026 #if defined(F_SETLK) && defined(F_SETLKW)
12027      struct flock flock;
12028      int retval, fd;
12029      fd = open("try.c", O_RDONLY);
12030      flock.l_type = F_RDLCK;
12031      flock.l_whence = SEEK_SET;
12032      flock.l_start = flock.l_len = 0;
12033      signal(SIGALRM, blech);
12034      alarm(10);
12035      retval = fcntl(fd, F_SETLK, &flock);
12036      close(fd);
12037      (retval < 0 ? exit(2) : exit(0));
12038 #else
12039      exit(2);
12040 #endif
12041 }
12042 EOCP
12043 echo "Checking if fcntl-based file locking works... "
12044 case "$d_fcntl" in
12045 "$define")
12046         set try
12047         if eval $compile_ok; then
12048                 if $run ./try; then
12049                         echo "Yes, it seems to work."
12050                         val="$define"
12051                 else
12052                         echo "Nope, it didn't work."
12053                         val="$undef"
12054                         case "$?" in
12055                         3) $cat >&4 <<EOM
12056 ***
12057 *** I had to forcibly timeout from fcntl(..., F_SETLK, ...).
12058 *** This is (almost) impossible.
12059 *** If your NFS lock daemons are not feeling well, something like
12060 *** this may happen, please investigate.  Cannot continue, aborting.
12061 ***
12062 EOM
12063                                 exit 1
12064                                 ;;
12065                         esac
12066                 fi
12067         else
12068                 echo "I'm unable to compile the test program, so I'll assume not."
12069                 val="$undef"
12070         fi
12071         ;;
12072 *) val="$undef";
12073         echo "Nope, since you don't even have fcntl()."
12074         ;;
12075 esac
12076 set d_fcntl_can_lock
12077 eval $setvar
12078 $rm -f try*
12079
12080
12081 : check for fd_set items
12082 $cat <<EOM
12083
12084 Checking to see how well your C compiler handles fd_set and friends ...
12085 EOM
12086 $cat >try.c <<EOCP
12087 #$i_stdlib I_STDLIB
12088 #ifdef I_STDLIB
12089 #include <stdlib.h>
12090 #endif
12091 #$i_systime I_SYS_TIME
12092 #$i_sysselct I_SYS_SELECT
12093 #$d_socket HAS_SOCKET
12094 #include <sys/types.h>
12095 #ifdef HAS_SOCKET
12096 #include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
12097 #endif
12098 #ifdef I_SYS_TIME
12099 #include <sys/time.h>
12100 #endif
12101 #ifdef I_SYS_SELECT
12102 #include <sys/select.h>
12103 #endif
12104 int main() {
12105         fd_set fds;
12106
12107 #ifdef TRYBITS
12108         if(fds.fds_bits);
12109 #endif
12110
12111 #if defined(FD_SET) && defined(FD_CLR) && defined(FD_ISSET) && defined(FD_ZERO)
12112         exit(0);
12113 #else
12114         exit(1);
12115 #endif
12116 }
12117 EOCP
12118 set try -DTRYBITS
12119 if eval $compile; then
12120         d_fds_bits="$define"
12121         d_fd_set="$define"
12122         echo "Well, your system knows about the normal fd_set typedef..." >&4
12123         if $run ./try; then
12124                 echo "and you have the normal fd_set macros (just as I'd expect)." >&4
12125                 d_fd_macros="$define"
12126         else
12127                 $cat >&4 <<'EOM'
12128 but not the normal fd_set macros!  Gaaack!  I'll have to cover for you.
12129 EOM
12130                 d_fd_macros="$undef"
12131         fi
12132 else
12133         $cat <<'EOM'
12134 Hmm, your compiler has some difficulty with fd_set.  Checking further...
12135 EOM
12136         set try
12137         if eval $compile; then
12138                 d_fds_bits="$undef"
12139                 d_fd_set="$define"
12140                 echo "Well, your system has some sort of fd_set available..." >&4
12141                 if $run ./try; then
12142                         echo "and you have the normal fd_set macros." >&4
12143                         d_fd_macros="$define"
12144                 else
12145                         $cat <<'EOM'
12146 but not the normal fd_set macros!  Gross!  More work for me...
12147 EOM
12148                         d_fd_macros="$undef"
12149                 fi
12150         else
12151         echo "Well, you got zip.  That's OK, I can roll my own fd_set stuff." >&4
12152                 d_fd_set="$undef"
12153                 d_fds_bits="$undef"
12154                 d_fd_macros="$undef"
12155         fi
12156 fi
12157 $rm -f try try.*
12158
12159 : see if fgetpos exists
12160 set fgetpos d_fgetpos
12161 eval $inlibc
12162
12163 : see if finite exists
12164 set finite d_finite
12165 eval $inlibc
12166
12167 : see if finitel exists
12168 set finitel d_finitel
12169 eval $inlibc
12170
12171 : see if flock exists
12172 set flock d_flock
12173 eval $inlibc
12174
12175 : see if prototype for flock is available
12176 echo " "
12177 set d_flockproto flock $i_sysfile sys/file.h
12178 eval $hasproto
12179
12180 : see if fork exists
12181 set fork d_fork
12182 eval $inlibc
12183
12184 : see if fp_class exists
12185 set fp_class d_fp_class
12186 eval $inlibc
12187
12188 : see if pathconf exists
12189 set pathconf d_pathconf
12190 eval $inlibc
12191
12192 : see if fpathconf exists
12193 set fpathconf d_fpathconf
12194 eval $inlibc
12195
12196 : see if fpclass exists
12197 set fpclass d_fpclass
12198 eval $inlibc
12199
12200 : see if fpclassify exists
12201 set fpclassify d_fpclassify
12202 eval $inlibc
12203
12204 : see if fpclassl exists
12205 set fpclassl d_fpclassl
12206 eval $inlibc
12207
12208
12209 : check for fpos64_t
12210 echo " "
12211 echo "Checking to see if you have fpos64_t..." >&4
12212 $cat >try.c <<EOCP
12213 #include <stdio.h>
12214 int main() { fpos64_t x = 7; }
12215 EOCP
12216 set try
12217 if eval $compile; then
12218         val="$define"
12219         echo "You have fpos64_t."
12220 else
12221         val="$undef"
12222         echo "You do not have fpos64_t."
12223         case "$fpossize" in
12224         8) echo "(Your fpos_t is 64 bits, so you could use that.)" ;;
12225         esac
12226 fi
12227 $rm -f try.* try
12228 set d_fpos64_t
12229 eval $setvar
12230
12231 : see if frexpl exists
12232 set frexpl d_frexpl
12233 eval $inlibc
12234
12235 : see if this is a sys/param system
12236 set sys/param.h i_sysparam
12237 eval $inhdr
12238
12239 : see if this is a sys/mount.h system
12240 set sys/mount.h i_sysmount
12241 eval $inhdr
12242
12243
12244 echo " "
12245 echo "Checking to see if your system supports struct fs_data..." >&4
12246 set d_fs_data_s fs_data $i_systypes sys/types.h $i_sysparam sys/param.h $i_sysmount sys/mount.h
12247 eval $hasstruct
12248 case "$d_fs_data_s" in
12249 "$define")      echo "Yes, it does."   ;;
12250 *)              echo "No, it doesn't." ;;
12251 esac
12252
12253 : see if fseeko exists
12254 set fseeko d_fseeko
12255 eval $inlibc
12256 case "$longsize" in
12257 8) echo "(Your long is 64 bits, so you could use fseek.)" ;;
12258 esac
12259
12260 : see if fsetpos exists
12261 set fsetpos d_fsetpos
12262 eval $inlibc
12263
12264
12265 : see if fstatfs exists
12266 set fstatfs d_fstatfs
12267 eval $inlibc
12268
12269
12270 : see if statvfs exists
12271 set statvfs d_statvfs
12272 eval $inlibc
12273
12274 : see if fstatvfs exists
12275 set fstatvfs d_fstatvfs
12276 eval $inlibc
12277
12278
12279 : see if fsync exists
12280 set fsync d_fsync
12281 eval $inlibc
12282
12283 : see if ftello exists
12284 set ftello d_ftello
12285 eval $inlibc
12286 case "$longsize" in
12287 8) echo "(Your long is 64 bits, so you could use ftell.)" ;;
12288 esac
12289
12290 : see if getcwd exists
12291 set getcwd d_getcwd
12292 eval $inlibc
12293
12294 : see if getespwnam exists
12295 set getespwnam d_getespwnam
12296 eval $inlibc
12297
12298
12299 : see if getfsstat exists
12300 set getfsstat d_getfsstat
12301 eval $inlibc
12302
12303 : see if getgrent exists
12304 set getgrent d_getgrent
12305 eval $inlibc
12306
12307 : see if getgrent_r exists
12308 set getgrent_r d_getgrent_r
12309 eval $inlibc
12310 case "$d_getgrent_r" in
12311 "$define")
12312         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12313         case "$d_getgrent_r_proto:$usethreads" in
12314         ":define")      d_getgrent_r_proto=define
12315                 set d_getgrent_r_proto getgrent_r $hdrs
12316                 eval $hasproto ;;
12317         *)      ;;
12318         esac
12319         case "$d_getgrent_r_proto" in
12320         define)
12321         case "$getgrent_r_proto" in
12322         ''|0) try='int getgrent_r(struct group*, char*, size_t, struct group**);'
12323         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBWR ;;
12324         esac
12325         case "$getgrent_r_proto" in
12326         ''|0) try='int getgrent_r(struct group*, char*, int, struct group**);'
12327         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIR ;;
12328         esac
12329         case "$getgrent_r_proto" in
12330         ''|0) try='struct group* getgrent_r(struct group*, char*, size_t);'
12331         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBW ;;
12332         esac
12333         case "$getgrent_r_proto" in
12334         ''|0) try='struct group* getgrent_r(struct group*, char*, int);'
12335         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBI ;;
12336         esac
12337         case "$getgrent_r_proto" in
12338         ''|0) try='int getgrent_r(struct group*, char*, int);'
12339         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBI ;;
12340         esac
12341         case "$getgrent_r_proto" in
12342         ''|0) try='int getgrent_r(struct group*, char*, int, FILE**);'
12343         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIH ;;
12344         esac
12345         case "$getgrent_r_proto" in
12346         ''|0)   d_getgrent_r=undef
12347                 getgrent_r_proto=0
12348                 echo "Disabling getgrent_r, cannot determine prototype." >&4 ;;
12349         * )     case "$getgrent_r_proto" in
12350                 REENTRANT_PROTO*) ;;
12351                 *) getgrent_r_proto="REENTRANT_PROTO_$getgrent_r_proto" ;;
12352                 esac
12353                 echo "Prototype: $try" ;;
12354         esac
12355         ;;
12356         *)      case "$usethreads" in
12357                 define) echo "getgrent_r has no prototype, not using it." >&4 ;;
12358                 esac
12359                 d_getgrent_r=undef
12360                 getgrent_r_proto=0
12361                 ;;
12362         esac
12363         ;;
12364 *)      getgrent_r_proto=0
12365         ;;
12366 esac
12367
12368 : see if getgrgid_r exists
12369 set getgrgid_r d_getgrgid_r
12370 eval $inlibc
12371 case "$d_getgrgid_r" in
12372 "$define")
12373         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12374         case "$d_getgrgid_r_proto:$usethreads" in
12375         ":define")      d_getgrgid_r_proto=define
12376                 set d_getgrgid_r_proto getgrgid_r $hdrs
12377                 eval $hasproto ;;
12378         *)      ;;
12379         esac
12380         case "$d_getgrgid_r_proto" in
12381         define)
12382         case "$getgrgid_r_proto" in
12383         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, size_t, struct group**);'
12384         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBWR ;;
12385         esac
12386         case "$getgrgid_r_proto" in
12387         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int, struct group**);'
12388         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBIR ;;
12389         esac
12390         case "$getgrgid_r_proto" in
12391         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int);'
12392         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBI ;;
12393         esac
12394         case "$getgrgid_r_proto" in
12395         ''|0) try='struct group* getgrgid_r(gid_t, struct group*, char*, int);'
12396         ./protochk "extern $try" $hdrs && getgrgid_r_proto=S_TSBI ;;
12397         esac
12398         case "$getgrgid_r_proto" in
12399         ''|0)   d_getgrgid_r=undef
12400                 getgrgid_r_proto=0
12401                 echo "Disabling getgrgid_r, cannot determine prototype." >&4 ;;
12402         * )     case "$getgrgid_r_proto" in
12403                 REENTRANT_PROTO*) ;;
12404                 *) getgrgid_r_proto="REENTRANT_PROTO_$getgrgid_r_proto" ;;
12405                 esac
12406                 echo "Prototype: $try" ;;
12407         esac
12408         ;;
12409         *)      case "$usethreads" in
12410                 define) echo "getgrgid_r has no prototype, not using it." >&4 ;;
12411                 esac
12412                 d_getgrgid_r=undef
12413                 getgrgid_r_proto=0
12414                 ;;
12415         esac
12416         ;;
12417 *)      getgrgid_r_proto=0
12418         ;;
12419 esac
12420
12421 : see if getgrnam_r exists
12422 set getgrnam_r d_getgrnam_r
12423 eval $inlibc
12424 case "$d_getgrnam_r" in
12425 "$define")
12426         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12427         case "$d_getgrnam_r_proto:$usethreads" in
12428         ":define")      d_getgrnam_r_proto=define
12429                 set d_getgrnam_r_proto getgrnam_r $hdrs
12430                 eval $hasproto ;;
12431         *)      ;;
12432         esac
12433         case "$d_getgrnam_r_proto" in
12434         define)
12435         case "$getgrnam_r_proto" in
12436         ''|0) try='int getgrnam_r(const char*, struct group*, char*, size_t, struct group**);'
12437         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBWR ;;
12438         esac
12439         case "$getgrnam_r_proto" in
12440         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int, struct group**);'
12441         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBIR ;;
12442         esac
12443         case "$getgrnam_r_proto" in
12444         ''|0) try='struct group* getgrnam_r(const char*, char*, int);'
12445         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CBI ;;
12446         esac
12447         case "$getgrnam_r_proto" in
12448         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int);'
12449         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBI ;;
12450         esac
12451         case "$getgrnam_r_proto" in
12452         ''|0) try='struct group* getgrnam_r(const char*, struct group*, char*, int);'
12453         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CSBI ;;
12454         esac
12455         case "$getgrnam_r_proto" in
12456         ''|0)   d_getgrnam_r=undef
12457                 getgrnam_r_proto=0
12458                 echo "Disabling getgrnam_r, cannot determine prototype." >&4 ;;
12459         * )     case "$getgrnam_r_proto" in
12460                 REENTRANT_PROTO*) ;;
12461                 *) getgrnam_r_proto="REENTRANT_PROTO_$getgrnam_r_proto" ;;
12462                 esac
12463                 echo "Prototype: $try" ;;
12464         esac
12465         ;;
12466         *)      case "$usethreads" in
12467                 define) echo "getgrnam_r has no prototype, not using it." >&4 ;;
12468                 esac
12469                 d_getgrnam_r=undef
12470                 getgrnam_r_proto=0
12471                 ;;
12472         esac
12473         ;;
12474 *)      getgrnam_r_proto=0
12475         ;;
12476 esac
12477
12478 : see if gethostbyaddr exists
12479 set gethostbyaddr d_gethbyaddr
12480 eval $inlibc
12481
12482 : see if gethostbyname exists
12483 set gethostbyname d_gethbyname
12484 eval $inlibc
12485
12486 : see if gethostent exists
12487 set gethostent d_gethent
12488 eval $inlibc
12489
12490 : see how we will look up host name
12491 echo " "
12492 call=''
12493 if set gethostname val -f d_gethname; eval $csym; $val; then
12494         echo 'gethostname() found.' >&4
12495         d_gethname="$define"
12496         call=gethostname
12497 fi
12498 if set uname val -f d_uname; eval $csym; $val; then
12499         if ./xenix; then
12500                 $cat <<'EOM'
12501 uname() was found, but you're running xenix, and older versions of xenix
12502 have a broken uname(). If you don't really know whether your xenix is old
12503 enough to have a broken system call, use the default answer.
12504
12505 EOM
12506                 dflt=y
12507                 case "$d_uname" in
12508                 "$define") dflt=n;;
12509                 esac
12510                 rp='Is your uname() broken?'
12511                 . ./myread
12512                 case "$ans" in
12513                 n*) d_uname="$define"; call=uname;;
12514                 esac
12515         else
12516                 echo 'uname() found.' >&4
12517                 d_uname="$define"
12518                 case "$call" in
12519                 '') call=uname ;;
12520                 esac
12521         fi
12522 fi
12523 case "$d_gethname" in
12524 '') d_gethname="$undef";;
12525 esac
12526 case "$d_uname" in
12527 '') d_uname="$undef";;
12528 esac
12529 case "$d_uname$d_gethname" in
12530 *define*)
12531         dflt=n
12532         cat <<EOM
12533  
12534 Every now and then someone has a $call() that lies about the hostname
12535 but can't be fixed for political or economic reasons.  If you wish, I can
12536 pretend $call() isn't there and maybe compute hostname at run-time
12537 thanks to the '$phostname' command.
12538
12539 EOM
12540         rp="Shall I ignore $call() from now on?"
12541         . ./myread
12542         case "$ans" in
12543         y*) d_uname="$undef" d_gethname="$undef"; $echo $n "Okay...$c";;
12544         esac;;
12545 esac
12546 case "$phostname" in
12547 '') aphostname='';;
12548 *) case "$aphostname" in
12549         /*) ;;
12550         *) set X $phostname
12551                 shift
12552                 file=$1
12553                 shift
12554                 file=`./loc $file $file $pth`
12555                 aphostname=`echo $file $*`
12556                 ;;
12557         esac
12558         ;;
12559 esac
12560 case "$d_uname$d_gethname" in
12561 *define*) ;;
12562 *)
12563         case "$phostname" in
12564         '')
12565                 echo "There will be no way for $package to get your hostname." >&4;;
12566         *)
12567         echo "I'll use 'popen("'"'$aphostname'", "r")'"' to get your hostname." >&4
12568                 ;;
12569         esac;;
12570 esac
12571 case "$d_phostname" in
12572 '') d_phostname="$undef";;
12573 esac
12574
12575 : see if gethostbyaddr_r exists
12576 set gethostbyaddr_r d_gethostbyaddr_r
12577 eval $inlibc
12578 case "$d_gethostbyaddr_r" in
12579 "$define")
12580         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12581         case "$d_gethostbyaddr_r_proto:$usethreads" in
12582         ":define")      d_gethostbyaddr_r_proto=define
12583                 set d_gethostbyaddr_r_proto gethostbyaddr_r $hdrs
12584                 eval $hasproto ;;
12585         *)      ;;
12586         esac
12587         case "$d_gethostbyaddr_r_proto" in
12588         define)
12589         case "$gethostbyaddr_r_proto" in
12590         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
12591         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISBWRE ;;
12592         esac
12593         case "$gethostbyaddr_r_proto" in
12594         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, int, int*);'
12595         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBWIE ;;
12596         esac
12597         case "$gethostbyaddr_r_proto" in
12598         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, int, int*);'
12599         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBIE ;;
12600         esac
12601         case "$gethostbyaddr_r_proto" in
12602         ''|0) try='struct hostent* gethostbyaddr_r(const void*, size_t, int, struct hostent*, char*, int, int*);'
12603         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TWISBIE ;;
12604         esac
12605         case "$gethostbyaddr_r_proto" in
12606         ''|0) try='struct hostent* gethostbyaddr_r(const char*, int, int, struct hostent*, char*, int, int*);'
12607         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CIISBIE ;;
12608         esac
12609         case "$gethostbyaddr_r_proto" in
12610         ''|0) try='struct hostent* gethostbyaddr_r(const char*, struct hostent*, char*, int, int*);'
12611         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CSBIE ;;
12612         esac
12613         case "$gethostbyaddr_r_proto" in
12614         ''|0) try='struct hostent* gethostbyaddr_r(const void*, struct hostent*, char*, int, int*);'
12615         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TSBIE ;;
12616         esac
12617         case "$gethostbyaddr_r_proto" in
12618         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, struct hostent_data*);'
12619         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISD ;;
12620         esac
12621         case "$gethostbyaddr_r_proto" in
12622         ''|0) try='int gethostbyaddr_r(const char*, int, int, struct hostent*, struct hostent_data*);'
12623         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CIISD ;;
12624         esac
12625         case "$gethostbyaddr_r_proto" in
12626         ''|0) try='int gethostbyaddr_r(const char*, int, int);'
12627         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CII ;;
12628         esac
12629         case "$gethostbyaddr_r_proto" in
12630         ''|0) try='int gethostbyaddr_r(const void*, socklen_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
12631         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_TsISBWRE ;;
12632         esac
12633         case "$gethostbyaddr_r_proto" in
12634         ''|0)   d_gethostbyaddr_r=undef
12635                 gethostbyaddr_r_proto=0
12636                 echo "Disabling gethostbyaddr_r, cannot determine prototype." >&4 ;;
12637         * )     case "$gethostbyaddr_r_proto" in
12638                 REENTRANT_PROTO*) ;;
12639                 *) gethostbyaddr_r_proto="REENTRANT_PROTO_$gethostbyaddr_r_proto" ;;
12640                 esac
12641                 echo "Prototype: $try" ;;
12642         esac
12643         ;;
12644         *)      case "$usethreads" in
12645                 define) echo "gethostbyaddr_r has no prototype, not using it." >&4 ;;
12646                 esac
12647                 d_gethostbyaddr_r=undef
12648                 gethostbyaddr_r_proto=0
12649                 ;;
12650         esac
12651         ;;
12652 *)      gethostbyaddr_r_proto=0
12653         ;;
12654 esac
12655
12656 : see if gethostbyname_r exists
12657 set gethostbyname_r d_gethostbyname_r
12658 eval $inlibc
12659 case "$d_gethostbyname_r" in
12660 "$define")
12661         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12662         case "$d_gethostbyname_r_proto:$usethreads" in
12663         ":define")      d_gethostbyname_r_proto=define
12664                 set d_gethostbyname_r_proto gethostbyname_r $hdrs
12665                 eval $hasproto ;;
12666         *)      ;;
12667         esac
12668         case "$d_gethostbyname_r_proto" in
12669         define)
12670         case "$gethostbyname_r_proto" in
12671         ''|0) try='int gethostbyname_r(const char*, struct hostent*, char*, size_t, struct hostent**, int*);'
12672         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSBWRE ;;
12673         esac
12674         case "$gethostbyname_r_proto" in
12675         ''|0) try='struct hostent* gethostbyname_r(const char*, struct hostent*, char*, int, int*);'
12676         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=S_CSBIE ;;
12677         esac
12678         case "$gethostbyname_r_proto" in
12679         ''|0) try='int gethostbyname_r(const char*, struct hostent*, struct hostent_data*);'
12680         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSD ;;
12681         esac
12682         case "$gethostbyname_r_proto" in
12683         ''|0)   d_gethostbyname_r=undef
12684                 gethostbyname_r_proto=0
12685                 echo "Disabling gethostbyname_r, cannot determine prototype." >&4 ;;
12686         * )     case "$gethostbyname_r_proto" in
12687                 REENTRANT_PROTO*) ;;
12688                 *) gethostbyname_r_proto="REENTRANT_PROTO_$gethostbyname_r_proto" ;;
12689                 esac
12690                 echo "Prototype: $try" ;;
12691         esac
12692         ;;
12693         *)      case "$usethreads" in
12694                 define) echo "gethostbyname_r has no prototype, not using it." >&4 ;;
12695                 esac
12696                 d_gethostbyname_r=undef
12697                 gethostbyname_r_proto=0
12698                 ;;
12699         esac
12700         ;;
12701 *)      gethostbyname_r_proto=0
12702         ;;
12703 esac
12704
12705 : see if gethostent_r exists
12706 set gethostent_r d_gethostent_r
12707 eval $inlibc
12708 case "$d_gethostent_r" in
12709 "$define")
12710         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12711         case "$d_gethostent_r_proto:$usethreads" in
12712         ":define")      d_gethostent_r_proto=define
12713                 set d_gethostent_r_proto gethostent_r $hdrs
12714                 eval $hasproto ;;
12715         *)      ;;
12716         esac
12717         case "$d_gethostent_r_proto" in
12718         define)
12719         case "$gethostent_r_proto" in
12720         ''|0) try='int gethostent_r(struct hostent*, char*, size_t, struct hostent**, int*);'
12721         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBWRE ;;
12722         esac
12723         case "$gethostent_r_proto" in
12724         ''|0) try='int gethostent_r(struct hostent*, char*, int, int*);'
12725         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBIE ;;
12726         esac
12727         case "$gethostent_r_proto" in
12728         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int, int*);'
12729         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBIE ;;
12730         esac
12731         case "$gethostent_r_proto" in
12732         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int);'
12733         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBI ;;
12734         esac
12735         case "$gethostent_r_proto" in
12736         ''|0) try='int gethostent_r(struct hostent*, char*, int);'
12737         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBI ;;
12738         esac
12739         case "$gethostent_r_proto" in
12740         ''|0) try='int gethostent_r(struct hostent*, struct hostent_data*);'
12741         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SD ;;
12742         esac
12743         case "$gethostent_r_proto" in
12744         ''|0)   d_gethostent_r=undef
12745                 gethostent_r_proto=0
12746                 echo "Disabling gethostent_r, cannot determine prototype." >&4 ;;
12747         * )     case "$gethostent_r_proto" in
12748                 REENTRANT_PROTO*) ;;
12749                 *) gethostent_r_proto="REENTRANT_PROTO_$gethostent_r_proto" ;;
12750                 esac
12751                 echo "Prototype: $try" ;;
12752         esac
12753         ;;
12754         *)      case "$usethreads" in
12755                 define) echo "gethostent_r has no prototype, not using it." >&4 ;;
12756                 esac
12757                 d_gethostent_r=undef
12758                 gethostent_r_proto=0
12759                 ;;
12760         esac
12761         ;;
12762 *)      gethostent_r_proto=0
12763         ;;
12764 esac
12765
12766 : see if prototypes for various gethostxxx netdb.h functions are available
12767 echo " "
12768 set d_gethostprotos gethostent $i_netdb netdb.h
12769 eval $hasproto
12770
12771 : see if getitimer exists
12772 set getitimer d_getitimer
12773 eval $inlibc
12774
12775 : see if getlogin exists
12776 set getlogin d_getlogin
12777 eval $inlibc
12778
12779 : see if getlogin_r exists
12780 set getlogin_r d_getlogin_r
12781 eval $inlibc
12782 case "$d_getlogin_r" in
12783 "$define")
12784         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
12785         case "$d_getlogin_r_proto:$usethreads" in
12786         ":define")      d_getlogin_r_proto=define
12787                 set d_getlogin_r_proto getlogin_r $hdrs
12788                 eval $hasproto ;;
12789         *)      ;;
12790         esac
12791         case "$d_getlogin_r_proto" in
12792         define)
12793         case "$getlogin_r_proto" in
12794         ''|0) try='int getlogin_r(char*, size_t);'
12795         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BW ;;
12796         esac
12797         case "$getlogin_r_proto" in
12798         ''|0) try='int getlogin_r(char*, int);'
12799         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BI ;;
12800         esac
12801         case "$getlogin_r_proto" in
12802         ''|0) try='char* getlogin_r(char*, size_t);'
12803         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BW ;;
12804         esac
12805         case "$getlogin_r_proto" in
12806         ''|0) try='char* getlogin_r(char*, int);'
12807         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BI ;;
12808         esac
12809         case "$getlogin_r_proto" in
12810         ''|0)   d_getlogin_r=undef
12811                 getlogin_r_proto=0
12812                 echo "Disabling getlogin_r, cannot determine prototype." >&4 ;;
12813         * )     case "$getlogin_r_proto" in
12814                 REENTRANT_PROTO*) ;;
12815                 *) getlogin_r_proto="REENTRANT_PROTO_$getlogin_r_proto" ;;
12816                 esac
12817                 echo "Prototype: $try" ;;
12818         esac
12819         ;;
12820         *)      case "$usethreads" in
12821                 define) echo "getlogin_r has no prototype, not using it." >&4 ;;
12822                 esac
12823                 d_getlogin_r=undef
12824                 getlogin_r_proto=0
12825                 ;;
12826         esac
12827         ;;
12828 *)      getlogin_r_proto=0
12829         ;;
12830 esac
12831
12832 : see if getmnt exists
12833 set getmnt d_getmnt
12834 eval $inlibc
12835
12836 : see if getmntent exists
12837 set getmntent d_getmntent
12838 eval $inlibc
12839
12840 : see if getnetbyaddr exists
12841 set getnetbyaddr d_getnbyaddr
12842 eval $inlibc
12843
12844 : see if getnetbyname exists
12845 set getnetbyname d_getnbyname
12846 eval $inlibc
12847
12848 : see if getnetent exists
12849 set getnetent d_getnent
12850 eval $inlibc
12851
12852 : see if getnetbyaddr_r exists
12853 set getnetbyaddr_r d_getnetbyaddr_r
12854 eval $inlibc
12855 case "$d_getnetbyaddr_r" in
12856 "$define")
12857         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12858         case "$d_getnetbyaddr_r_proto:$usethreads" in
12859         ":define")      d_getnetbyaddr_r_proto=define
12860                 set d_getnetbyaddr_r_proto getnetbyaddr_r $hdrs
12861                 eval $hasproto ;;
12862         *)      ;;
12863         esac
12864         case "$d_getnetbyaddr_r_proto" in
12865         define)
12866         case "$getnetbyaddr_r_proto" in
12867         ''|0) try='int getnetbyaddr_r(unsigned long, int, struct netent*, char*, size_t, struct netent**, int*);'
12868         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_UISBWRE ;;
12869         esac
12870         case "$getnetbyaddr_r_proto" in
12871         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, char*, int);'
12872         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISBI ;;
12873         esac
12874         case "$getnetbyaddr_r_proto" in
12875         ''|0) try='struct netent* getnetbyaddr_r(in_addr_t, int, struct netent*, char*, int);'
12876         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_TISBI ;;
12877         esac
12878         case "$getnetbyaddr_r_proto" in
12879         ''|0) try='struct netent* getnetbyaddr_r(long, int, struct netent*, char*, int);'
12880         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_LISBI ;;
12881         esac
12882         case "$getnetbyaddr_r_proto" in
12883         ''|0) try='int getnetbyaddr_r(in_addr_t, int, struct netent*, struct netent_data*);'
12884         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_TISD ;;
12885         esac
12886         case "$getnetbyaddr_r_proto" in
12887         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, struct netent_data*);'
12888         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISD ;;
12889         esac
12890         case "$getnetbyaddr_r_proto" in
12891         ''|0) try='int getnetbyaddr_r(int, int, struct netent*, struct netent_data*);'
12892         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_IISD ;;
12893         esac
12894         case "$getnetbyaddr_r_proto" in
12895         ''|0) try='int getnetbyaddr_r(uint32_t, int, struct netent*, char*, size_t, struct netent**, int*);'
12896         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_uISBWRE ;;
12897         esac
12898         case "$getnetbyaddr_r_proto" in
12899         ''|0)   d_getnetbyaddr_r=undef
12900                 getnetbyaddr_r_proto=0
12901                 echo "Disabling getnetbyaddr_r, cannot determine prototype." >&4 ;;
12902         * )     case "$getnetbyaddr_r_proto" in
12903                 REENTRANT_PROTO*) ;;
12904                 *) getnetbyaddr_r_proto="REENTRANT_PROTO_$getnetbyaddr_r_proto" ;;
12905                 esac
12906                 echo "Prototype: $try" ;;
12907         esac
12908         ;;
12909         *)      case "$usethreads" in
12910                 define) echo "getnetbyaddr_r has no prototype, not using it." >&4 ;;
12911                 esac
12912                 d_getnetbyaddr_r=undef
12913                 getnetbyaddr_r_proto=0
12914                 ;;
12915         esac
12916         ;;
12917 *)      getnetbyaddr_r_proto=0
12918         ;;
12919 esac
12920
12921 : see if getnetbyname_r exists
12922 set getnetbyname_r d_getnetbyname_r
12923 eval $inlibc
12924 case "$d_getnetbyname_r" in
12925 "$define")
12926         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12927         case "$d_getnetbyname_r_proto:$usethreads" in
12928         ":define")      d_getnetbyname_r_proto=define
12929                 set d_getnetbyname_r_proto getnetbyname_r $hdrs
12930                 eval $hasproto ;;
12931         *)      ;;
12932         esac
12933         case "$d_getnetbyname_r_proto" in
12934         define)
12935         case "$getnetbyname_r_proto" in
12936         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, size_t, struct netent**, int*);'
12937         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBWRE ;;
12938         esac
12939         case "$getnetbyname_r_proto" in
12940         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, int);'
12941         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBI ;;
12942         esac
12943         case "$getnetbyname_r_proto" in
12944         ''|0) try='struct netent* getnetbyname_r(const char*, struct netent*, char*, int);'
12945         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=S_CSBI ;;
12946         esac
12947         case "$getnetbyname_r_proto" in
12948         ''|0) try='int getnetbyname_r(const char*, struct netent*, struct netent_data*);'
12949         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSD ;;
12950         esac
12951         case "$getnetbyname_r_proto" in
12952         ''|0)   d_getnetbyname_r=undef
12953                 getnetbyname_r_proto=0
12954                 echo "Disabling getnetbyname_r, cannot determine prototype." >&4 ;;
12955         * )     case "$getnetbyname_r_proto" in
12956                 REENTRANT_PROTO*) ;;
12957                 *) getnetbyname_r_proto="REENTRANT_PROTO_$getnetbyname_r_proto" ;;
12958                 esac
12959                 echo "Prototype: $try" ;;
12960         esac
12961         ;;
12962         *)      case "$usethreads" in
12963                 define) echo "getnetbyname_r has no prototype, not using it." >&4 ;;
12964                 esac
12965                 d_getnetbyname_r=undef
12966                 getnetbyname_r_proto=0
12967                 ;;
12968         esac
12969         ;;
12970 *)      getnetbyname_r_proto=0
12971         ;;
12972 esac
12973
12974 : see if getnetent_r exists
12975 set getnetent_r d_getnetent_r
12976 eval $inlibc
12977 case "$d_getnetent_r" in
12978 "$define")
12979         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12980         case "$d_getnetent_r_proto:$usethreads" in
12981         ":define")      d_getnetent_r_proto=define
12982                 set d_getnetent_r_proto getnetent_r $hdrs
12983                 eval $hasproto ;;
12984         *)      ;;
12985         esac
12986         case "$d_getnetent_r_proto" in
12987         define)
12988         case "$getnetent_r_proto" in
12989         ''|0) try='int getnetent_r(struct netent*, char*, size_t, struct netent**, int*);'
12990         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBWRE ;;
12991         esac
12992         case "$getnetent_r_proto" in
12993         ''|0) try='int getnetent_r(struct netent*, char*, int, int*);'
12994         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBIE ;;
12995         esac
12996         case "$getnetent_r_proto" in
12997         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int, int*);'
12998         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBIE ;;
12999         esac
13000         case "$getnetent_r_proto" in
13001         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int);'
13002         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBI ;;
13003         esac
13004         case "$getnetent_r_proto" in
13005         ''|0) try='int getnetent_r(struct netent*, char*, int);'
13006         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBI ;;
13007         esac
13008         case "$getnetent_r_proto" in
13009         ''|0) try='int getnetent_r(struct netent*, struct netent_data*);'
13010         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SD ;;
13011         esac
13012         case "$getnetent_r_proto" in
13013         ''|0)   d_getnetent_r=undef
13014                 getnetent_r_proto=0
13015                 echo "Disabling getnetent_r, cannot determine prototype." >&4 ;;
13016         * )     case "$getnetent_r_proto" in
13017                 REENTRANT_PROTO*) ;;
13018                 *) getnetent_r_proto="REENTRANT_PROTO_$getnetent_r_proto" ;;
13019                 esac
13020                 echo "Prototype: $try" ;;
13021         esac
13022         ;;
13023         *)      case "$usethreads" in
13024                 define) echo "getnetent_r has no prototype, not using it." >&4 ;;
13025                 esac
13026                 d_getnetent_r=undef
13027                 getnetent_r_proto=0
13028                 ;;
13029         esac
13030         ;;
13031 *)      getnetent_r_proto=0
13032         ;;
13033 esac
13034
13035 : see if prototypes for various getnetxxx netdb.h functions are available
13036 echo " "
13037 set d_getnetprotos getnetent $i_netdb netdb.h
13038 eval $hasproto
13039
13040 : see if getpagesize exists
13041 set getpagesize d_getpagsz
13042 eval $inlibc
13043
13044
13045 : see if getprotobyname exists
13046 set getprotobyname d_getpbyname
13047 eval $inlibc
13048
13049 : see if getprotobynumber exists
13050 set getprotobynumber d_getpbynumber
13051 eval $inlibc
13052
13053 : see if getprotoent exists
13054 set getprotoent d_getpent
13055 eval $inlibc
13056
13057 : see if getpgid exists
13058 set getpgid d_getpgid
13059 eval $inlibc
13060
13061 : see if getpgrp2 exists
13062 set getpgrp2 d_getpgrp2
13063 eval $inlibc
13064
13065 : see if getppid exists
13066 set getppid d_getppid
13067 eval $inlibc
13068
13069 : see if getpriority exists
13070 set getpriority d_getprior
13071 eval $inlibc
13072
13073 : see if getprotobyname_r exists
13074 set getprotobyname_r d_getprotobyname_r
13075 eval $inlibc
13076 case "$d_getprotobyname_r" in
13077 "$define")
13078         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13079         case "$d_getprotobyname_r_proto:$usethreads" in
13080         ":define")      d_getprotobyname_r_proto=define
13081                 set d_getprotobyname_r_proto getprotobyname_r $hdrs
13082                 eval $hasproto ;;
13083         *)      ;;
13084         esac
13085         case "$d_getprotobyname_r_proto" in
13086         define)
13087         case "$getprotobyname_r_proto" in
13088         ''|0) try='int getprotobyname_r(const char*, struct protoent*, char*, size_t, struct protoent**);'
13089         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSBWR ;;
13090         esac
13091         case "$getprotobyname_r_proto" in
13092         ''|0) try='struct protoent* getprotobyname_r(const char*, struct protoent*, char*, int);'
13093         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=S_CSBI ;;
13094         esac
13095         case "$getprotobyname_r_proto" in
13096         ''|0) try='int getprotobyname_r(const char*, struct protoent*, struct protoent_data*);'
13097         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSD ;;
13098         esac
13099         case "$getprotobyname_r_proto" in
13100         ''|0)   d_getprotobyname_r=undef
13101                 getprotobyname_r_proto=0
13102                 echo "Disabling getprotobyname_r, cannot determine prototype." >&4 ;;
13103         * )     case "$getprotobyname_r_proto" in
13104                 REENTRANT_PROTO*) ;;
13105                 *) getprotobyname_r_proto="REENTRANT_PROTO_$getprotobyname_r_proto" ;;
13106                 esac
13107                 echo "Prototype: $try" ;;
13108         esac
13109         ;;
13110         *)      case "$usethreads" in
13111                 define) echo "getprotobyname_r has no prototype, not using it." >&4 ;;
13112                 esac
13113                 d_getprotobyname_r=undef
13114                 getprotobyname_r_proto=0
13115                 ;;
13116         esac
13117         ;;
13118 *)      getprotobyname_r_proto=0
13119         ;;
13120 esac
13121
13122 : see if getprotobynumber_r exists
13123 set getprotobynumber_r d_getprotobynumber_r
13124 eval $inlibc
13125 case "$d_getprotobynumber_r" in
13126 "$define")
13127         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13128         case "$d_getprotobynumber_r_proto:$usethreads" in
13129         ":define")      d_getprotobynumber_r_proto=define
13130                 set d_getprotobynumber_r_proto getprotobynumber_r $hdrs
13131                 eval $hasproto ;;
13132         *)      ;;
13133         esac
13134         case "$d_getprotobynumber_r_proto" in
13135         define)
13136         case "$getprotobynumber_r_proto" in
13137         ''|0) try='int getprotobynumber_r(int, struct protoent*, char*, size_t, struct protoent**);'
13138         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISBWR ;;
13139         esac
13140         case "$getprotobynumber_r_proto" in
13141         ''|0) try='struct protoent* getprotobynumber_r(int, struct protoent*, char*, int);'
13142         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=S_ISBI ;;
13143         esac
13144         case "$getprotobynumber_r_proto" in
13145         ''|0) try='int getprotobynumber_r(int, struct protoent*, struct protoent_data*);'
13146         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISD ;;
13147         esac
13148         case "$getprotobynumber_r_proto" in
13149         ''|0)   d_getprotobynumber_r=undef
13150                 getprotobynumber_r_proto=0
13151                 echo "Disabling getprotobynumber_r, cannot determine prototype." >&4 ;;
13152         * )     case "$getprotobynumber_r_proto" in
13153                 REENTRANT_PROTO*) ;;
13154                 *) getprotobynumber_r_proto="REENTRANT_PROTO_$getprotobynumber_r_proto" ;;
13155                 esac
13156                 echo "Prototype: $try" ;;
13157         esac
13158         ;;
13159         *)      case "$usethreads" in
13160                 define) echo "getprotobynumber_r has no prototype, not using it." >&4 ;;
13161                 esac
13162                 d_getprotobynumber_r=undef
13163                 getprotobynumber_r_proto=0
13164                 ;;
13165         esac
13166         ;;
13167 *)      getprotobynumber_r_proto=0
13168         ;;
13169 esac
13170
13171 : see if getprotoent_r exists
13172 set getprotoent_r d_getprotoent_r
13173 eval $inlibc
13174 case "$d_getprotoent_r" in
13175 "$define")
13176         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13177         case "$d_getprotoent_r_proto:$usethreads" in
13178         ":define")      d_getprotoent_r_proto=define
13179                 set d_getprotoent_r_proto getprotoent_r $hdrs
13180                 eval $hasproto ;;
13181         *)      ;;
13182         esac
13183         case "$d_getprotoent_r_proto" in
13184         define)
13185         case "$getprotoent_r_proto" in
13186         ''|0) try='int getprotoent_r(struct protoent*, char*, size_t, struct protoent**);'
13187         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBWR ;;
13188         esac
13189         case "$getprotoent_r_proto" in
13190         ''|0) try='int getprotoent_r(struct protoent*, char*, int);'
13191         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBI ;;
13192         esac
13193         case "$getprotoent_r_proto" in
13194         ''|0) try='struct protoent* getprotoent_r(struct protoent*, char*, int);'
13195         ./protochk "extern $try" $hdrs && getprotoent_r_proto=S_SBI ;;
13196         esac
13197         case "$getprotoent_r_proto" in
13198         ''|0) try='int getprotoent_r(struct protoent*, struct protoent_data*);'
13199         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SD ;;
13200         esac
13201         case "$getprotoent_r_proto" in
13202         ''|0)   d_getprotoent_r=undef
13203                 getprotoent_r_proto=0
13204                 echo "Disabling getprotoent_r, cannot determine prototype." >&4 ;;
13205         * )     case "$getprotoent_r_proto" in
13206                 REENTRANT_PROTO*) ;;
13207                 *) getprotoent_r_proto="REENTRANT_PROTO_$getprotoent_r_proto" ;;
13208                 esac
13209                 echo "Prototype: $try" ;;
13210         esac
13211         ;;
13212         *)      case "$usethreads" in
13213                 define) echo "getprotoent_r has no prototype, not using it." >&4 ;;
13214                 esac
13215                 d_getprotoent_r=undef
13216                 getprotoent_r_proto=0
13217                 ;;
13218         esac
13219         ;;
13220 *)      getprotoent_r_proto=0
13221         ;;
13222 esac
13223
13224 : see if prototypes for various getprotoxxx netdb.h functions are available
13225 echo " "
13226 set d_getprotoprotos getprotoent $i_netdb netdb.h
13227 eval $hasproto
13228
13229 : see if getprpwnam exists
13230 set getprpwnam d_getprpwnam
13231 eval $inlibc
13232
13233 : see if getpwent exists
13234 set getpwent d_getpwent
13235 eval $inlibc
13236
13237 : see if getpwent_r exists
13238 set getpwent_r d_getpwent_r
13239 eval $inlibc
13240 case "$d_getpwent_r" in
13241 "$define")
13242         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13243         case "$d_getpwent_r_proto:$usethreads" in
13244         ":define")      d_getpwent_r_proto=define
13245                 set d_getpwent_r_proto getpwent_r $hdrs
13246                 eval $hasproto ;;
13247         *)      ;;
13248         esac
13249         case "$d_getpwent_r_proto" in
13250         define)
13251         case "$getpwent_r_proto" in
13252         ''|0) try='int getpwent_r(struct passwd*, char*, size_t, struct passwd**);'
13253         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBWR ;;
13254         esac
13255         case "$getpwent_r_proto" in
13256         ''|0) try='int getpwent_r(struct passwd*, char*, int, struct passwd**);'
13257         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIR ;;
13258         esac
13259         case "$getpwent_r_proto" in
13260         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, size_t);'
13261         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBW ;;
13262         esac
13263         case "$getpwent_r_proto" in
13264         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, int);'
13265         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBI ;;
13266         esac
13267         case "$getpwent_r_proto" in
13268         ''|0) try='int getpwent_r(struct passwd*, char*, int);'
13269         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBI ;;
13270         esac
13271         case "$getpwent_r_proto" in
13272         ''|0) try='int getpwent_r(struct passwd*, char*, int, FILE**);'
13273         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIH ;;
13274         esac
13275         case "$getpwent_r_proto" in
13276         ''|0)   d_getpwent_r=undef
13277                 getpwent_r_proto=0
13278                 echo "Disabling getpwent_r, cannot determine prototype." >&4 ;;
13279         * )     case "$getpwent_r_proto" in
13280                 REENTRANT_PROTO*) ;;
13281                 *) getpwent_r_proto="REENTRANT_PROTO_$getpwent_r_proto" ;;
13282                 esac
13283                 echo "Prototype: $try" ;;
13284         esac
13285         ;;
13286         *)      case "$usethreads" in
13287                 define) echo "getpwent_r has no prototype, not using it." >&4 ;;
13288                 esac
13289                 d_getpwent_r=undef
13290                 getpwent_r_proto=0
13291                 ;;
13292         esac
13293         ;;
13294 *)      getpwent_r_proto=0
13295         ;;
13296 esac
13297
13298 : see if getpwnam_r exists
13299 set getpwnam_r d_getpwnam_r
13300 eval $inlibc
13301 case "$d_getpwnam_r" in
13302 "$define")
13303         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13304         case "$d_getpwnam_r_proto:$usethreads" in
13305         ":define")      d_getpwnam_r_proto=define
13306                 set d_getpwnam_r_proto getpwnam_r $hdrs
13307                 eval $hasproto ;;
13308         *)      ;;
13309         esac
13310         case "$d_getpwnam_r_proto" in
13311         define)
13312         case "$getpwnam_r_proto" in
13313         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);'
13314         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBWR ;;
13315         esac
13316         case "$getpwnam_r_proto" in
13317         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int, struct passwd**);'
13318         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBIR ;;
13319         esac
13320         case "$getpwnam_r_proto" in
13321         ''|0) try='struct passwd* getpwnam_r(const char*, struct passwd*, char*, int);'
13322         ./protochk "extern $try" $hdrs && getpwnam_r_proto=S_CSBI ;;
13323         esac
13324         case "$getpwnam_r_proto" in
13325         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int);'
13326         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBI ;;
13327         esac
13328         case "$getpwnam_r_proto" in
13329         ''|0)   d_getpwnam_r=undef
13330                 getpwnam_r_proto=0
13331                 echo "Disabling getpwnam_r, cannot determine prototype." >&4 ;;
13332         * )     case "$getpwnam_r_proto" in
13333                 REENTRANT_PROTO*) ;;
13334                 *) getpwnam_r_proto="REENTRANT_PROTO_$getpwnam_r_proto" ;;
13335                 esac
13336                 echo "Prototype: $try" ;;
13337         esac
13338         ;;
13339         *)      case "$usethreads" in
13340                 define) echo "getpwnam_r has no prototype, not using it." >&4 ;;
13341                 esac
13342                 d_getpwnam_r=undef
13343                 getpwnam_r_proto=0
13344                 ;;
13345         esac
13346         ;;
13347 *)      getpwnam_r_proto=0
13348         ;;
13349 esac
13350
13351 : see if getpwuid_r exists
13352 set getpwuid_r d_getpwuid_r
13353 eval $inlibc
13354 case "$d_getpwuid_r" in
13355 "$define")
13356         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13357         case "$d_getpwuid_r_proto:$usethreads" in
13358         ":define")      d_getpwuid_r_proto=define
13359                 set d_getpwuid_r_proto getpwuid_r $hdrs
13360                 eval $hasproto ;;
13361         *)      ;;
13362         esac
13363         case "$d_getpwuid_r_proto" in
13364         define)
13365         case "$getpwuid_r_proto" in
13366         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**);'
13367         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBWR ;;
13368         esac
13369         case "$getpwuid_r_proto" in
13370         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int, struct passwd**);'
13371         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBIR ;;
13372         esac
13373         case "$getpwuid_r_proto" in
13374         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int);'
13375         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBI ;;
13376         esac
13377         case "$getpwuid_r_proto" in
13378         ''|0) try='struct passwd* getpwuid_r(uid_t, struct passwd*, char*, int);'
13379         ./protochk "extern $try" $hdrs && getpwuid_r_proto=S_TSBI ;;
13380         esac
13381         case "$getpwuid_r_proto" in
13382         ''|0)   d_getpwuid_r=undef
13383                 getpwuid_r_proto=0
13384                 echo "Disabling getpwuid_r, cannot determine prototype." >&4 ;;
13385         * )     case "$getpwuid_r_proto" in
13386                 REENTRANT_PROTO*) ;;
13387                 *) getpwuid_r_proto="REENTRANT_PROTO_$getpwuid_r_proto" ;;
13388                 esac
13389                 echo "Prototype: $try" ;;
13390         esac
13391         ;;
13392         *)      case "$usethreads" in
13393                 define) echo "getpwuid_r has no prototype, not using it." >&4 ;;
13394                 esac
13395                 d_getpwuid_r=undef
13396                 getpwuid_r_proto=0
13397                 ;;
13398         esac
13399         ;;
13400 *)      getpwuid_r_proto=0
13401         ;;
13402 esac
13403
13404
13405 : see if getservbyname exists
13406 set getservbyname d_getsbyname
13407 eval $inlibc
13408
13409 : see if getservbyport exists
13410 set getservbyport d_getsbyport
13411 eval $inlibc
13412
13413 : see if getservent exists
13414 set getservent d_getsent
13415 eval $inlibc
13416
13417 : see if getservbyname_r exists
13418 set getservbyname_r d_getservbyname_r
13419 eval $inlibc
13420 case "$d_getservbyname_r" in
13421 "$define")
13422         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13423         case "$d_getservbyname_r_proto:$usethreads" in
13424         ":define")      d_getservbyname_r_proto=define
13425                 set d_getservbyname_r_proto getservbyname_r $hdrs
13426                 eval $hasproto ;;
13427         *)      ;;
13428         esac
13429         case "$d_getservbyname_r_proto" in
13430         define)
13431         case "$getservbyname_r_proto" in
13432         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, char*, size_t, struct servent**);'
13433         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSBWR ;;
13434         esac
13435         case "$getservbyname_r_proto" in
13436         ''|0) try='struct servent* getservbyname_r(const char*, const char*, struct servent*, char*, int);'
13437         ./protochk "extern $try" $hdrs && getservbyname_r_proto=S_CCSBI ;;
13438         esac
13439         case "$getservbyname_r_proto" in
13440         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, struct servent_data*);'
13441         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSD ;;
13442         esac
13443         case "$getservbyname_r_proto" in
13444         ''|0)   d_getservbyname_r=undef
13445                 getservbyname_r_proto=0
13446                 echo "Disabling getservbyname_r, cannot determine prototype." >&4 ;;
13447         * )     case "$getservbyname_r_proto" in
13448                 REENTRANT_PROTO*) ;;
13449                 *) getservbyname_r_proto="REENTRANT_PROTO_$getservbyname_r_proto" ;;
13450                 esac
13451                 echo "Prototype: $try" ;;
13452         esac
13453         ;;
13454         *)      case "$usethreads" in
13455                 define) echo "getservbyname_r has no prototype, not using it." >&4 ;;
13456                 esac
13457                 d_getservbyname_r=undef
13458                 getservbyname_r_proto=0
13459                 ;;
13460         esac
13461         ;;
13462 *)      getservbyname_r_proto=0
13463         ;;
13464 esac
13465
13466 : see if getservbyport_r exists
13467 set getservbyport_r d_getservbyport_r
13468 eval $inlibc
13469 case "$d_getservbyport_r" in
13470 "$define")
13471         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13472         case "$d_getservbyport_r_proto:$usethreads" in
13473         ":define")      d_getservbyport_r_proto=define
13474                 set d_getservbyport_r_proto getservbyport_r $hdrs
13475                 eval $hasproto ;;
13476         *)      ;;
13477         esac
13478         case "$d_getservbyport_r_proto" in
13479         define)
13480         case "$getservbyport_r_proto" in
13481         ''|0) try='int getservbyport_r(int, const char*, struct servent*, char*, size_t, struct servent**);'
13482         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSBWR ;;
13483         esac
13484         case "$getservbyport_r_proto" in
13485         ''|0) try='struct servent* getservbyport_r(int, const char*, struct servent*, char*, int);'
13486         ./protochk "extern $try" $hdrs && getservbyport_r_proto=S_ICSBI ;;
13487         esac
13488         case "$getservbyport_r_proto" in
13489         ''|0) try='int getservbyport_r(int, const char*, struct servent*, struct servent_data*);'
13490         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSD ;;
13491         esac
13492         case "$getservbyport_r_proto" in
13493         ''|0)   d_getservbyport_r=undef
13494                 getservbyport_r_proto=0
13495                 echo "Disabling getservbyport_r, cannot determine prototype." >&4 ;;
13496         * )     case "$getservbyport_r_proto" in
13497                 REENTRANT_PROTO*) ;;
13498                 *) getservbyport_r_proto="REENTRANT_PROTO_$getservbyport_r_proto" ;;
13499                 esac
13500                 echo "Prototype: $try" ;;
13501         esac
13502         ;;
13503         *)      case "$usethreads" in
13504                 define) echo "getservbyport_r has no prototype, not using it." >&4 ;;
13505                 esac
13506                 d_getservbyport_r=undef
13507                 getservbyport_r_proto=0
13508                 ;;
13509         esac
13510         ;;
13511 *)      getservbyport_r_proto=0
13512         ;;
13513 esac
13514
13515 : see if getservent_r exists
13516 set getservent_r d_getservent_r
13517 eval $inlibc
13518 case "$d_getservent_r" in
13519 "$define")
13520         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13521         case "$d_getservent_r_proto:$usethreads" in
13522         ":define")      d_getservent_r_proto=define
13523                 set d_getservent_r_proto getservent_r $hdrs
13524                 eval $hasproto ;;
13525         *)      ;;
13526         esac
13527         case "$d_getservent_r_proto" in
13528         define)
13529         case "$getservent_r_proto" in
13530         ''|0) try='int getservent_r(struct servent*, char*, size_t, struct servent**);'
13531         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBWR ;;
13532         esac
13533         case "$getservent_r_proto" in
13534         ''|0) try='int getservent_r(struct servent*, char*, int);'
13535         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBI ;;
13536         esac
13537         case "$getservent_r_proto" in
13538         ''|0) try='struct servent* getservent_r(struct servent*, char*, int);'
13539         ./protochk "extern $try" $hdrs && getservent_r_proto=S_SBI ;;
13540         esac
13541         case "$getservent_r_proto" in
13542         ''|0) try='int getservent_r(struct servent*, struct servent_data*);'
13543         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SD ;;
13544         esac
13545         case "$getservent_r_proto" in
13546         ''|0)   d_getservent_r=undef
13547                 getservent_r_proto=0
13548                 echo "Disabling getservent_r, cannot determine prototype." >&4 ;;
13549         * )     case "$getservent_r_proto" in
13550                 REENTRANT_PROTO*) ;;
13551                 *) getservent_r_proto="REENTRANT_PROTO_$getservent_r_proto" ;;
13552                 esac
13553                 echo "Prototype: $try" ;;
13554         esac
13555         ;;
13556         *)      case "$usethreads" in
13557                 define) echo "getservent_r has no prototype, not using it." >&4 ;;
13558                 esac
13559                 d_getservent_r=undef
13560                 getservent_r_proto=0
13561                 ;;
13562         esac
13563         ;;
13564 *)      getservent_r_proto=0
13565         ;;
13566 esac
13567
13568 : see if prototypes for various getservxxx netdb.h functions are available
13569 echo " "
13570 set d_getservprotos getservent $i_netdb netdb.h
13571 eval $hasproto
13572
13573 : see if getspnam exists
13574 set getspnam d_getspnam
13575 eval $inlibc
13576
13577 : see if this is a shadow.h system
13578 set shadow.h i_shadow
13579 eval $inhdr
13580
13581 : see if getspnam_r exists
13582 set getspnam_r d_getspnam_r
13583 eval $inlibc
13584 case "$d_getspnam_r" in
13585 "$define")
13586         hdrs="$i_systypes sys/types.h define stdio.h $i_shadow shadow.h"
13587         case "$d_getspnam_r_proto:$usethreads" in
13588         ":define")      d_getspnam_r_proto=define
13589                 set d_getspnam_r_proto getspnam_r $hdrs
13590                 eval $hasproto ;;
13591         *)      ;;
13592         esac
13593         case "$d_getspnam_r_proto" in
13594         define)
13595         case "$getspnam_r_proto" in
13596         ''|0) try='int getspnam_r(const char*, struct spwd*, char*, size_t, struct spwd**);'
13597         ./protochk "extern $try" $hdrs && getspnam_r_proto=I_CSBWR ;;
13598         esac
13599         case "$getspnam_r_proto" in
13600         ''|0) try='struct spwd* getspnam_r(const char*, struct spwd*, char*, int);'
13601         ./protochk "extern $try" $hdrs && getspnam_r_proto=S_CSBI ;;
13602         esac
13603         case "$getspnam_r_proto" in
13604         ''|0)   d_getspnam_r=undef
13605                 getspnam_r_proto=0
13606                 echo "Disabling getspnam_r, cannot determine prototype." >&4 ;;
13607         * )     case "$getspnam_r_proto" in
13608                 REENTRANT_PROTO*) ;;
13609                 *) getspnam_r_proto="REENTRANT_PROTO_$getspnam_r_proto" ;;
13610                 esac
13611                 echo "Prototype: $try" ;;
13612         esac
13613         ;;
13614         *)      case "$usethreads" in
13615                 define) echo "getspnam_r has no prototype, not using it." >&4 ;;
13616                 esac
13617                 d_getspnam_r=undef
13618                 getspnam_r_proto=0
13619                 ;;
13620         esac
13621         ;;
13622 *)      getspnam_r_proto=0
13623         ;;
13624 esac
13625
13626 : see if gettimeofday or ftime exists
13627 set gettimeofday d_gettimeod
13628 eval $inlibc
13629 case "$d_gettimeod" in
13630 "$undef")
13631         set ftime d_ftime 
13632         eval $inlibc
13633         ;;
13634 *)
13635         val="$undef"; set d_ftime; eval $setvar
13636         ;;
13637 esac
13638 case "$d_gettimeod$d_ftime" in
13639 "$undef$undef")
13640         echo " "
13641         echo 'No ftime() nor gettimeofday() -- timing may be less accurate.' >&4
13642         ;;
13643 esac
13644
13645 : see if gmtime_r exists
13646 set gmtime_r d_gmtime_r
13647 eval $inlibc
13648 case "$d_gmtime_r" in
13649 "$define")
13650         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
13651         case "$d_gmtime_r_proto:$usethreads" in
13652         ":define")      d_gmtime_r_proto=define
13653                 set d_gmtime_r_proto gmtime_r $hdrs
13654                 eval $hasproto ;;
13655         *)      ;;
13656         esac
13657         case "$d_gmtime_r_proto" in
13658         define)
13659         case "$gmtime_r_proto" in
13660         ''|0) try='struct tm* gmtime_r(const time_t*, struct tm*);'
13661         ./protochk "extern $try" $hdrs && gmtime_r_proto=S_TS ;;
13662         esac
13663         case "$gmtime_r_proto" in
13664         ''|0) try='int gmtime_r(const time_t*, struct tm*);'
13665         ./protochk "extern $try" $hdrs && gmtime_r_proto=I_TS ;;
13666         esac
13667         case "$gmtime_r_proto" in
13668         ''|0)   d_gmtime_r=undef
13669                 gmtime_r_proto=0
13670                 echo "Disabling gmtime_r, cannot determine prototype." >&4 ;;
13671         * )     case "$gmtime_r_proto" in
13672                 REENTRANT_PROTO*) ;;
13673                 *) gmtime_r_proto="REENTRANT_PROTO_$gmtime_r_proto" ;;
13674                 esac
13675                 echo "Prototype: $try" ;;
13676         esac
13677         ;;
13678         *)      case "$usethreads" in
13679                 define) echo "gmtime_r has no prototype, not using it." >&4 ;;
13680                 esac
13681                 d_gmtime_r=undef
13682                 gmtime_r_proto=0
13683                 ;;
13684         esac
13685         ;;
13686 *)      gmtime_r_proto=0
13687         ;;
13688 esac
13689
13690 : see if hasmntopt exists
13691 set hasmntopt d_hasmntopt
13692 eval $inlibc
13693
13694 : see if this is a netinet/in.h or sys/in.h system
13695 set netinet/in.h i_niin sys/in.h i_sysin
13696 eval $inhdr
13697
13698 : see if arpa/inet.h has to be included
13699 set arpa/inet.h i_arpainet
13700 eval $inhdr
13701
13702 : see if htonl --and friends-- exists
13703 val=''
13704 set htonl val
13705 eval $inlibc
13706
13707 : Maybe they are macros.
13708 case "$val" in
13709 $undef)
13710         $cat >htonl.c <<EOM
13711 #include <stdio.h>
13712 #include <sys/types.h>
13713 #$i_niin I_NETINET_IN
13714 #$i_sysin I_SYS_IN
13715 #$i_arpainet I_ARPA_INET
13716 #ifdef I_NETINET_IN
13717 #include <netinet/in.h>
13718 #endif
13719 #ifdef I_SYS_IN
13720 #include <sys/in.h>
13721 #endif
13722 #ifdef I_ARPA_INET
13723 #include <arpa/inet.h>
13724 #endif
13725 #ifdef htonl
13726 printf("Defined as a macro.");
13727 #endif
13728 EOM
13729         $cppstdin $cppflags $cppminus < htonl.c >htonl.E 2>/dev/null
13730         if $contains 'Defined as a macro' htonl.E >/dev/null 2>&1; then
13731                 val="$define"
13732                 echo "But it seems to be defined as a macro." >&4
13733         fi
13734         $rm -f htonl.?
13735         ;;
13736 esac
13737 set d_htonl
13738 eval $setvar
13739
13740 : see if ilogbl exists
13741 set ilogbl d_ilogbl
13742 eval $inlibc
13743
13744 : index or strchr
13745 echo " "
13746 if set index val -f; eval $csym; $val; then
13747         if set strchr val -f d_strchr; eval $csym; $val; then
13748                 if $contains strchr "$strings" >/dev/null 2>&1 ; then
13749                         val="$define"
13750                         vali="$undef"
13751                         echo "strchr() found." >&4
13752                 else
13753                         val="$undef"
13754                         vali="$define"
13755                         echo "index() found." >&4
13756                 fi
13757         else
13758                 val="$undef"
13759                 vali="$define"
13760                 echo "index() found." >&4
13761         fi
13762 else
13763         if set strchr val -f d_strchr; eval $csym; $val; then
13764                 val="$define"
13765                 vali="$undef"
13766                 echo "strchr() found." >&4
13767         else
13768                 echo "No index() or strchr() found!" >&4
13769                 val="$undef"
13770                 vali="$undef"
13771         fi
13772 fi
13773 set d_strchr; eval $setvar
13774 val="$vali"
13775 set d_index; eval $setvar
13776
13777 : check whether inet_aton exists
13778 set inet_aton d_inetaton
13779 eval $inlibc
13780
13781 : Look for isascii
13782 echo " "
13783 $cat >isascii.c <<EOCP
13784 #include <stdio.h>
13785 #include <ctype.h>
13786 #$i_stdlib I_STDLIB
13787 #ifdef I_STDLIB
13788 #include <stdlib.h>
13789 #endif
13790 int main() {
13791         int c = 'A';
13792         if (isascii(c))
13793                 exit(0);
13794         else
13795                 exit(1);
13796 }
13797 EOCP
13798 set isascii
13799 if eval $compile; then
13800         echo "isascii() found." >&4
13801         val="$define"
13802 else
13803         echo "isascii() NOT found." >&4
13804         val="$undef"
13805 fi
13806 set d_isascii
13807 eval $setvar
13808 $rm -f isascii*
13809
13810 : see if isfinite exists
13811 set isfinite d_isfinite
13812 eval $inlibc
13813
13814 : see if isinf exists
13815 set isinf d_isinf
13816 eval $inlibc
13817
13818 : see if isnan exists
13819 set isnan d_isnan
13820 eval $inlibc
13821
13822 : see if isnanl exists
13823 set isnanl d_isnanl
13824 eval $inlibc
13825
13826 : see if killpg exists
13827 set killpg d_killpg
13828 eval $inlibc
13829
13830 : see if lchown exists
13831 echo " "
13832 $cat > try.c <<'EOCP'
13833 /* System header to define __stub macros and hopefully few prototypes,
13834     which can conflict with char lchown(); below.  */
13835 #include <assert.h>
13836 /* Override any gcc2 internal prototype to avoid an error.  */
13837 /* We use char because int might match the return type of a gcc2
13838    builtin and then its argument prototype would still apply.  */
13839 char lchown();
13840 int main() {
13841     /*  The GNU C library defines this for functions which it implements
13842         to always fail with ENOSYS.  Some functions are actually named
13843         something starting with __ and the normal name is an alias.  */
13844 #if defined (__stub_lchown) || defined (__stub___lchown)
13845 choke me
13846 #else
13847 lchown();
13848 #endif
13849 ; return 0; }
13850 EOCP
13851 set try
13852 if eval $compile; then
13853     $echo "lchown() found." >&4
13854     val="$define"
13855 else
13856     $echo "lchown() NOT found." >&4
13857     val="$undef"
13858 fi
13859 set d_lchown
13860 eval $setvar
13861
13862 : See if number of significant digits in a double precision number is known
13863 echo " "
13864 $cat >ldbl_dig.c <<EOM
13865 #$i_limits I_LIMITS
13866 #$i_float I_FLOAT
13867 #ifdef I_LIMITS
13868 #include <limits.h>
13869 #endif
13870 #ifdef I_FLOAT
13871 #include <float.h>
13872 #endif
13873 #ifdef LDBL_DIG
13874 printf("Contains LDBL_DIG");
13875 #endif
13876 EOM
13877 $cppstdin $cppflags $cppminus < ldbl_dig.c >ldbl_dig.E 2>/dev/null
13878 if $contains 'LDBL_DIG' ldbl_dig.E >/dev/null 2>&1; then
13879         echo "LDBL_DIG found." >&4
13880         val="$define"
13881 else
13882         echo "LDBL_DIG NOT found." >&4
13883         val="$undef"
13884 fi
13885 $rm -f ldbl_dig.?
13886 set d_ldbl_dig
13887 eval $setvar
13888
13889 : see if link exists
13890 set link d_link
13891 eval $inlibc
13892
13893 : see if localtime_r exists
13894 set localtime_r d_localtime_r
13895 eval $inlibc
13896 case "$d_localtime_r" in
13897 "$define")
13898         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
13899         case "$d_localtime_r_proto:$usethreads" in
13900         ":define")      d_localtime_r_proto=define
13901                 set d_localtime_r_proto localtime_r $hdrs
13902                 eval $hasproto ;;
13903         *)      ;;
13904         esac
13905         case "$d_localtime_r_proto" in
13906         define)
13907         case "$localtime_r_proto" in
13908         ''|0) try='struct tm* localtime_r(const time_t*, struct tm*);'
13909         ./protochk "extern $try" $hdrs && localtime_r_proto=S_TS ;;
13910         esac
13911         case "$localtime_r_proto" in
13912         ''|0) try='int localtime_r(const time_t*, struct tm*);'
13913         ./protochk "extern $try" $hdrs && localtime_r_proto=I_TS ;;
13914         esac
13915         case "$localtime_r_proto" in
13916         ''|0)   d_localtime_r=undef
13917                 localtime_r_proto=0
13918                 echo "Disabling localtime_r, cannot determine prototype." >&4 ;;
13919         * )     case "$localtime_r_proto" in
13920                 REENTRANT_PROTO*) ;;
13921                 *) localtime_r_proto="REENTRANT_PROTO_$localtime_r_proto" ;;
13922                 esac
13923                 echo "Prototype: $try" ;;
13924         esac
13925         ;;
13926         *)      case "$usethreads" in
13927                 define) echo "localtime_r has no prototype, not using it." >&4 ;;
13928                 esac
13929                 d_localtime_r=undef
13930                 localtime_r_proto=0
13931                 ;;
13932         esac
13933         ;;
13934 *)      localtime_r_proto=0
13935         ;;
13936 esac
13937
13938 : see if localeconv exists
13939 set localeconv d_locconv
13940 eval $inlibc
13941
13942 : see if lockf exists
13943 set lockf d_lockf
13944 eval $inlibc
13945
13946 : see if prototype for lseek is available
13947 echo " "
13948 set d_lseekproto lseek $i_systypes sys/types.h $i_unistd unistd.h
13949 eval $hasproto
13950
13951 : see if lstat exists
13952 set lstat d_lstat
13953 eval $inlibc
13954
13955 : see if madvise exists
13956 set madvise d_madvise
13957 eval $inlibc
13958
13959 : see if mblen exists
13960 set mblen d_mblen
13961 eval $inlibc
13962
13963 : see if mbstowcs exists
13964 set mbstowcs d_mbstowcs
13965 eval $inlibc
13966
13967 : see if mbtowc exists
13968 set mbtowc d_mbtowc
13969 eval $inlibc
13970
13971 : see if memchr exists
13972 set memchr d_memchr
13973 eval $inlibc
13974
13975 : see if memcmp exists
13976 set memcmp d_memcmp
13977 eval $inlibc
13978
13979 : see if memcpy exists
13980 set memcpy d_memcpy
13981 eval $inlibc
13982
13983 : see if memmove exists
13984 set memmove d_memmove
13985 eval $inlibc
13986
13987 : see if memset exists
13988 set memset d_memset
13989 eval $inlibc
13990
13991 : see if mkdir exists
13992 set mkdir d_mkdir
13993 eval $inlibc
13994
13995 : see if mkdtemp exists
13996 set mkdtemp d_mkdtemp
13997 eval $inlibc
13998
13999 : see if mkfifo exists
14000 set mkfifo d_mkfifo
14001 eval $inlibc
14002
14003 : see if mkstemp exists
14004 set mkstemp d_mkstemp
14005 eval $inlibc
14006
14007 : see if mkstemps exists
14008 set mkstemps d_mkstemps
14009 eval $inlibc
14010
14011 : see if mktime exists
14012 set mktime d_mktime
14013 eval $inlibc
14014
14015 : see if this is a sys/mman.h system
14016 set sys/mman.h i_sysmman
14017 eval $inhdr
14018
14019 : see if mmap exists
14020 set mmap d_mmap
14021 eval $inlibc
14022 : see what shmat returns
14023 : default to something harmless
14024 mmaptype='void *'
14025 case "$i_sysmman$d_mmap" in
14026 "$define$define")
14027         $cat >mmap.c <<'END'
14028 #include <sys/mman.h>
14029 void *mmap();
14030 END
14031         if $cc $ccflags -c mmap.c >/dev/null 2>&1; then
14032                 mmaptype='void *'
14033         else
14034                 mmaptype='caddr_t'
14035         fi
14036         echo "and it returns ($mmaptype)." >&4
14037         ;;
14038 esac
14039
14040
14041
14042 : see if sqrtl exists
14043 set sqrtl d_sqrtl
14044 eval $inlibc
14045
14046 : see if modfl exists
14047 set modfl d_modfl
14048 eval $inlibc
14049
14050 : see if prototype for modfl is available
14051 echo " "
14052 set d_modflproto modfl math.h
14053 eval $hasproto
14054
14055 d_modfl_pow32_bug="$undef"
14056
14057 case "$d_longdbl$d_modfl" in
14058 $define$define)
14059         $cat <<EOM
14060 Checking to see whether your modfl() is okay for large values...
14061 EOM
14062 $cat >try.c <<EOCP
14063 #include <math.h> 
14064 #include <stdio.h>
14065 EOCP
14066 if $test "X$d_modflproto" != "X$define"; then
14067         $cat >>try.c <<EOCP
14068 /* Sigh. many current glibcs provide the function, but do not prototype it.  */ 
14069 long double modfl (long double, long double *);
14070 EOCP
14071 fi
14072 $cat >>try.c <<EOCP
14073 int main() {
14074     long double nv = 4294967303.15;
14075     long double v, w;
14076     v = modfl(nv, &w);         
14077 #ifdef __GLIBC__
14078     printf("glibc");
14079 #endif
14080     printf(" %"$sPRIfldbl" %"$sPRIfldbl" %"$sPRIfldbl"\n", nv, v, w);
14081     return 0;
14082 }
14083 EOCP
14084         case "$osname:$gccversion" in
14085         aix:)   saveccflags="$ccflags"
14086                 ccflags="$ccflags -qlongdouble" ;; # to avoid core dump
14087         esac
14088         set try
14089         if eval $compile; then
14090                 foo=`$run ./try`
14091                 case "$foo" in
14092                 *" 4294967303.150000 1.150000 4294967302.000000")
14093                         echo >&4 "Your modfl() is broken for large values."
14094                         d_modfl_pow32_bug="$define"
14095                         case "$foo" in
14096                         glibc)  echo >&4 "You should upgrade your glibc to at least 2.2.2 to get a fixed modfl()."
14097                         ;;
14098                         esac
14099                         ;;
14100                 *" 4294967303.150000 0.150000 4294967303.000000")
14101                         echo >&4 "Your modfl() seems okay for large values."
14102                         ;;
14103                 *)      echo >&4 "I don't understand your modfl() at all."
14104                         d_modfl="$undef"
14105                         ;;
14106                 esac
14107                 $rm -f try.* try core core.try.*
14108         else
14109                 echo "I cannot figure out whether your modfl() is okay, assuming it isn't."
14110                 d_modfl="$undef"
14111         fi
14112         case "$osname:$gccversion" in
14113         aix:)   ccflags="$saveccflags" ;; # restore
14114         esac
14115         ;;
14116 esac
14117
14118 if $test "$uselongdouble" = "$define"; then
14119     message=none
14120     case "$d_sqrtl:$d_modfl" in
14121     $define:$define)
14122         : You have both
14123         ;;
14124     $define:$undef)
14125         if $test "$d_aintl:$d_copysignl" = "$define:$define"; then
14126             echo "You have both aintl and copysignl, so I can emulate modfl."
14127         else
14128             message="I could not find modfl."
14129         fi
14130         ;;
14131     $undef:$define)
14132         message="I could not find sqrtl."
14133         ;;
14134     $undef:$undef)
14135         message="I found neither sqrtl nor modfl."
14136         ;;
14137     esac
14138
14139     if $test "$message" != none; then
14140         $cat <<EOM >&4
14141
14142 *** You requested the use of long doubles but you do not seem to have
14143 *** the mathematic functions for long doubles.
14144 *** ($message)
14145 *** Please rerun Configure without -Duselongdouble and/or -Dusemorebits.
14146 *** Cannot continue, aborting.
14147
14148 EOM
14149
14150         exit 1
14151     fi
14152 fi
14153
14154 : see if mprotect exists
14155 set mprotect d_mprotect
14156 eval $inlibc
14157
14158 : see if msgctl exists
14159 set msgctl d_msgctl
14160 eval $inlibc
14161
14162 : see if msgget exists
14163 set msgget d_msgget
14164 eval $inlibc
14165
14166 : see if msgsnd exists
14167 set msgsnd d_msgsnd
14168 eval $inlibc
14169
14170 : see if msgrcv exists
14171 set msgrcv d_msgrcv
14172 eval $inlibc
14173
14174 : see how much of the 'msg*(2)' library is present.
14175 h_msg=true
14176 echo " "
14177 case "$d_msgctl$d_msgget$d_msgsnd$d_msgrcv" in
14178 *"$undef"*) h_msg=false;;
14179 esac
14180 case "$osname" in
14181 freebsd)
14182     case "`ipcs 2>&1`" in
14183     "SVID messages"*"not configured"*)
14184         echo "Your $osname does not have the msg*(2) configured." >&4
14185         h_msg=false
14186         val="$undef"
14187         set msgctl d_msgctl
14188         eval $setvar
14189         set msgget d_msgget
14190         eval $setvar
14191         set msgsnd d_msgsnd
14192         eval $setvar
14193         set msgrcv d_msgrcv
14194         eval $setvar
14195         ;;
14196     esac
14197     ;;
14198 esac
14199 : we could also check for sys/ipc.h ...
14200 if $h_msg && $test `./findhdr sys/msg.h`; then
14201         echo "You have the full msg*(2) library." >&4
14202         val="$define"
14203 else
14204         echo "You don't have the full msg*(2) library." >&4
14205         val="$undef"
14206 fi
14207 set d_msg
14208 eval $setvar
14209
14210
14211 echo " "
14212 echo "Checking to see if your system supports struct msghdr..." >&4
14213 set d_msghdr_s msghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
14214 eval $hasstruct
14215 case "$d_msghdr_s" in
14216 "$define")      echo "Yes, it does."   ;;
14217 *)              echo "No, it doesn't." ;;
14218 esac
14219
14220
14221 : see if msync exists
14222 set msync d_msync
14223 eval $inlibc
14224
14225 : see if munmap exists
14226 set munmap d_munmap
14227 eval $inlibc
14228
14229 : see if nanosleep exists
14230 set nanosleep d_nanosleep
14231 eval $inlibc
14232
14233 : see if nice exists
14234 set nice d_nice
14235 eval $inlibc
14236
14237 : see if this is a langinfo.h system
14238 set langinfo.h i_langinfo
14239 eval $inhdr
14240
14241 : see if nl_langinfo exists
14242 set nl_langinfo d_nl_langinfo
14243 eval $inlibc
14244
14245 : check for length of character
14246 echo " "
14247 case "$charsize" in
14248 '')
14249         echo "Checking to see how big your characters are (hey, you never know)..." >&4
14250         $cat >try.c <<EOCP
14251 #include <stdio.h>
14252 #$i_stdlib I_STDLIB
14253 #ifdef I_STDLIB
14254 #include <stdlib.h>
14255 #endif
14256 int main()
14257 {
14258     printf("%d\n", (int)sizeof(char));
14259     exit(0);
14260 }
14261 EOCP
14262         set try
14263         if eval $compile_ok; then
14264                 dflt=`$run ./try`
14265         else
14266                 dflt='1'
14267                 echo "(I can't seem to compile the test program.  Guessing...)"
14268         fi
14269         ;;
14270 *)
14271         dflt="$charsize"
14272         ;;
14273 esac
14274 rp="What is the size of a character (in bytes)?"
14275 . ./myread
14276 charsize="$ans"
14277 $rm -f try.c try
14278
14279 : check for volatile keyword
14280 echo " "
14281 echo 'Checking to see if your C compiler knows about "volatile"...' >&4
14282 $cat >try.c <<'EOCP'
14283 int main()
14284 {
14285         typedef struct _goo_struct goo_struct;
14286         goo_struct * volatile goo = ((goo_struct *)0);
14287         struct _goo_struct {
14288                 long long_int;
14289                 int reg_int;
14290                 char char_var;
14291         };
14292         typedef unsigned short foo_t;
14293         char *volatile foo;
14294         volatile int bar;
14295         volatile foo_t blech;
14296         foo = foo;
14297 }
14298 EOCP
14299 if $cc -c $ccflags try.c >/dev/null 2>&1 ; then
14300         val="$define"
14301         echo "Yup, it does."
14302 else
14303         val="$undef"
14304         echo "Nope, it doesn't."
14305 fi
14306 set d_volatile
14307 eval $setvar
14308 $rm -f try.*
14309
14310
14311 echo " "
14312 $echo "Choosing the C types to be used for Perl's internal types..." >&4
14313
14314 case "$use64bitint:$d_quad:$quadtype" in
14315 define:define:?*)
14316         ivtype="$quadtype"
14317         uvtype="$uquadtype"
14318         ivsize=8
14319         uvsize=8
14320         ;;
14321 *)      ivtype="long"
14322         uvtype="unsigned long"
14323         ivsize=$longsize
14324         uvsize=$longsize
14325         ;;
14326 esac
14327
14328 case "$uselongdouble:$d_longdbl" in
14329 define:define)
14330         nvtype="long double"
14331         nvsize=$longdblsize
14332         ;;
14333 *)      nvtype=double
14334         nvsize=$doublesize
14335         ;;
14336 esac
14337
14338 $echo "(IV will be "$ivtype", $ivsize bytes)"
14339 $echo "(UV will be "$uvtype", $uvsize bytes)"
14340 $echo "(NV will be "$nvtype", $nvsize bytes)"
14341
14342 $cat >try.c <<EOCP
14343 #$i_inttypes I_INTTYPES
14344 #ifdef I_INTTYPES
14345 #include <inttypes.h>
14346 #endif
14347 #include <stdio.h>
14348 int main() {
14349 #ifdef INT8
14350    int8_t i =  INT8_MAX;
14351   uint8_t u = UINT8_MAX;
14352   printf("int8_t\n");
14353 #endif
14354 #ifdef INT16
14355    int16_t i =  INT16_MAX;
14356   uint16_t i = UINT16_MAX;
14357   printf("int16_t\n");
14358 #endif
14359 #ifdef INT32
14360    int32_t i =  INT32_MAX;
14361   uint32_t u = UINT32_MAX;
14362   printf("int32_t\n");
14363 #endif
14364 }
14365 EOCP
14366
14367 case "$i8type" in
14368 '')     case "$charsize" in
14369         1)      i8type=char
14370                 u8type="unsigned char"
14371                 i8size=$charsize
14372                 u8size=$charsize
14373                 ;;
14374         esac
14375         ;;
14376 esac
14377 case "$i8type" in
14378 '')     set try -DINT8
14379         if eval $compile; then
14380                 case "`$run ./try`" in
14381                 int8_t) i8type=int8_t
14382                         u8type=uint8_t
14383                         i8size=1
14384                         u8size=1
14385                         ;;
14386                 esac
14387         fi
14388         ;;
14389 esac
14390 case "$i8type" in
14391 '')     if $test $charsize -ge 1; then
14392                 i8type=char
14393                 u8type="unsigned char"
14394                 i8size=$charsize
14395                 u8size=$charsize
14396         fi
14397         ;;
14398 esac
14399
14400 case "$i16type" in
14401 '')     case "$shortsize" in
14402         2)      i16type=short
14403                 u16type="unsigned short"
14404                 i16size=$shortsize
14405                 u16size=$shortsize
14406                 ;;
14407         esac
14408         ;;
14409 esac
14410 case "$i16type" in
14411 '')     set try -DINT16
14412         if eval $compile; then
14413                 case "`$run ./try`" in
14414                 int16_t)
14415                         i16type=int16_t
14416                         u16type=uint16_t
14417                         i16size=2
14418                         u16size=2
14419                         ;;
14420                 esac
14421         fi
14422         ;;
14423 esac
14424 case "$i16type" in
14425 '')     if $test $shortsize -ge 2; then
14426                 i16type=short
14427                 u16type="unsigned short"
14428                 i16size=$shortsize
14429                 u16size=$shortsize
14430         fi
14431         ;;
14432 esac
14433
14434 case "$i32type" in
14435 '')     case "$longsize" in
14436         4)      i32type=long
14437                 u32type="unsigned long"
14438                 i32size=$longsize
14439                 u32size=$longsize
14440                 ;;
14441         *)      case "$intsize" in
14442                 4)      i32type=int
14443                         u32type="unsigned int"
14444                         i32size=$intsize
14445                         u32size=$intsize
14446                         ;;
14447                 esac
14448                 ;;
14449         esac
14450         ;;
14451 esac
14452 case "$i32type" in
14453 '')     set try -DINT32
14454         if eval $compile; then
14455                 case "`$run ./try`" in
14456                 int32_t)
14457                         i32type=int32_t
14458                         u32type=uint32_t
14459                         i32size=4
14460                         u32size=4
14461                         ;;
14462                 esac
14463         fi
14464         ;;
14465 esac
14466 case "$i32type" in
14467 '')     if $test $intsize -ge 4; then
14468                 i32type=int
14469                 u32type="unsigned int"
14470                 i32size=$intsize
14471                 u32size=$intsize
14472         fi
14473         ;;
14474 esac
14475
14476 case "$i64type" in
14477 '')     case "$d_quad:$quadtype" in
14478         define:?*)
14479                 i64type="$quadtype"
14480                 u64type="$uquadtype"
14481                 i64size=8
14482                 u64size=8
14483                 ;;
14484         esac
14485         ;;
14486 esac
14487
14488 $echo "Checking how many bits of your UVs your NVs can preserve..." >&4
14489 : volatile so that the compiler has to store it out to memory.
14490 if test X"$d_volatile" = X"$define"; then
14491         volatile=volatile
14492 fi
14493 $cat <<EOP >try.c
14494 #include <stdio.h>
14495 #$i_stdlib I_STDLIB
14496 #ifdef I_STDLIB
14497 #include <stdlib.h>
14498 #endif
14499 #include <sys/types.h>
14500 #include <signal.h>
14501 #ifdef SIGFPE
14502 $volatile int bletched = 0;
14503 $signal_t blech(s) int s; { bletched = 1; }
14504 #endif
14505 int main() {
14506     $uvtype u = 0;
14507     $nvtype d;
14508     int     n = 8 * $uvsize;
14509     int     i;
14510 #ifdef SIGFPE
14511     signal(SIGFPE, blech);
14512 #endif
14513
14514     for (i = 0; i < n; i++) {
14515       u = u << 1 | ($uvtype)1;
14516       d = ($nvtype)u;
14517       if (($uvtype)d != u)
14518         break;
14519       if (d <= 0)
14520         break;
14521       d = ($nvtype)(u - 1);
14522       if (($uvtype)d != (u - 1))
14523         break;
14524 #ifdef SIGFPE
14525       if (bletched) {
14526         break;
14527 #endif
14528       } 
14529     }
14530     printf("%d\n", ((i == n) ? -n : i));
14531     exit(0);
14532 }
14533 EOP
14534 set try
14535
14536 d_nv_preserves_uv="$undef"
14537 if eval $compile; then
14538         nv_preserves_uv_bits="`$run ./try`"
14539 fi
14540 case "$nv_preserves_uv_bits" in
14541 \-[1-9]*)       
14542         nv_preserves_uv_bits=`expr 0 - $nv_preserves_uv_bits`
14543         $echo "Your NVs can preserve all $nv_preserves_uv_bits bits of your UVs."  2>&1
14544         d_nv_preserves_uv="$define"
14545         ;;
14546 [1-9]*) $echo "Your NVs can preserve only $nv_preserves_uv_bits bits of your UVs."  2>&1
14547         d_nv_preserves_uv="$undef" ;;
14548 *)      $echo "Can't figure out how many bits your NVs preserve." 2>&1
14549         nv_preserves_uv_bits="$undef" ;;
14550 esac
14551
14552 $rm -f try.* try
14553
14554
14555 : check for off64_t
14556 echo " "
14557 echo "Checking to see if you have off64_t..." >&4
14558 $cat >try.c <<EOCP
14559 #include <sys/types.h>
14560 #include <unistd.h>
14561 int main() { off64_t x = 7; }
14562 EOCP
14563 set try
14564 if eval $compile; then
14565         val="$define"
14566         echo "You have off64_t."
14567 else
14568         val="$undef"
14569         echo "You do not have off64_t."
14570         case "$lseeksize" in
14571         8) echo "(Your off_t is 64 bits, so you could use that.)" ;;
14572         esac
14573 fi
14574 $rm -f try.* try
14575 set d_off64_t
14576 eval $setvar
14577
14578 : how to create joinable pthreads
14579 if test "X$usethreads" = "X$define" -a "X$i_pthread" = "X$define"; then
14580         echo " "
14581         echo "Checking what constant to use for creating joinable pthreads..." >&4 
14582         $cat >try.c <<'EOCP'
14583 #include <pthread.h>
14584 int main() {
14585     int detachstate = JOINABLE;
14586 }
14587 EOCP
14588         set try -DJOINABLE=PTHREAD_CREATE_JOINABLE
14589         if eval $compile; then
14590                 echo "You seem to use PTHREAD_CREATE_JOINABLE." >&4
14591                 val="$undef" # Yes, undef.
14592                 set d_old_pthread_create_joinable
14593                 eval $setvar
14594                 val=""
14595                 set old_pthread_create_joinable
14596                 eval $setvar
14597         else
14598                 set try -DJOINABLE=PTHREAD_CREATE_UNDETACHED
14599                 if eval $compile; then
14600                         echo "You seem to use PTHREAD_CREATE_UNDETACHED." >&4
14601                         val="$define"
14602                         set d_old_pthread_create_joinable
14603                         eval $setvar
14604                         val=PTHREAD_CREATE_UNDETACHED
14605                         set old_pthread_create_joinable
14606                         eval $setvar
14607                 else            
14608                         set try -DJOINABLE=__UNDETACHED
14609                         if eval $compile; then
14610                                 echo "You seem to use __UNDETACHED." >&4
14611                                 val="$define"
14612                                 set d_old_pthread_create_joinable
14613                                 eval $setvar
14614                                 val=__UNDETACHED
14615                                 set old_pthread_create_joinable
14616                                 eval $setvar
14617                         else
14618                                 echo "Egads, nothing obvious found.  Guessing that you use 0." >&4
14619                                 val="$define"
14620                                 set d_old_pthread_create_joinable
14621                                 eval $setvar
14622                                 val=0
14623                                 set old_pthread_create_joinable
14624                                 eval $setvar
14625                         fi
14626                 fi
14627         fi
14628         $rm -f try try.*
14629 else
14630     d_old_pthread_create_joinable="$undef"
14631     old_pthread_create_joinable=""
14632 fi
14633
14634 : see if pause exists
14635 set pause d_pause
14636 eval $inlibc
14637
14638 : see if pipe exists
14639 set pipe d_pipe
14640 eval $inlibc
14641
14642 : see if poll exists
14643 set poll d_poll
14644 eval $inlibc
14645
14646 : see if readlink exists
14647 set readlink d_readlink
14648 eval $inlibc
14649
14650 echo " "
14651 procselfexe=''
14652 val="$undef"
14653 case "$d_readlink" in
14654 "$define")
14655         if $issymlink /proc/self/exe ; then
14656                 $ls -l /proc/self/exe > reflect
14657                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
14658                         echo "You have Linux-like /proc/self/exe."
14659                         procselfexe='"/proc/self/exe"'
14660                         val="$define"
14661                 fi
14662         fi
14663         if $issymlink /proc/curproc/file ; then
14664                 $ls -l /proc/curproc/file > reflect
14665                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
14666                         echo "You have BSD-like /proc/curproc/file."
14667                         procselfexe='"/proc/curproc/file"'
14668                         val="$define"
14669                 fi
14670         fi
14671         ;;
14672 esac
14673 $rm -f reflect
14674 set d_procselfexe
14675 eval $setvar
14676
14677 : see whether the pthread_atfork exists
14678 $cat >try.c <<EOP
14679 #include <pthread.h>
14680 #include <stdio.h>
14681 int main() {
14682 #ifdef  PTHREAD_ATFORK
14683         pthread_atfork(NULL,NULL,NULL);
14684 #endif
14685 }
14686 EOP
14687
14688 : see if pthread_atfork exists
14689 set try -DPTHREAD_ATFORK
14690 if eval $compile; then
14691     val="$define"
14692 else
14693     val="$undef"
14694 fi
14695 case "$usethreads" in
14696 $define)
14697         case "$val" in
14698         $define) echo 'pthread_atfork found.' >&4        ;;
14699         *)       echo 'pthread_atfork NOT found.' >&4    ;;
14700         esac
14701 esac
14702 set d_pthread_atfork
14703 eval $setvar
14704
14705
14706 : see whether the various POSIXish _yields exist
14707 $cat >try.c <<EOP
14708 #include <pthread.h>
14709 #include <stdio.h>
14710 int main() {
14711 #ifdef SCHED_YIELD
14712         sched_yield();
14713 #else
14714 #ifdef PTHREAD_YIELD
14715         pthread_yield();
14716 #else
14717 #ifdef PTHREAD_YIELD_NULL
14718         pthread_yield(NULL);
14719 #endif
14720 #endif
14721 #endif
14722 }
14723 EOP
14724 : see if sched_yield exists
14725 set try -DSCHED_YIELD
14726 if eval $compile; then
14727     val="$define"
14728     sched_yield='sched_yield()'
14729 else
14730     val="$undef"
14731 fi
14732 case "$usethreads" in
14733 $define)
14734         case "$val" in
14735         $define) echo 'sched_yield() found.' >&4        ;;
14736         *)       echo 'sched_yield() NOT found.' >&4    ;;
14737         esac
14738 esac
14739 set d_sched_yield
14740 eval $setvar
14741
14742 : see if pthread_yield exists
14743 set try -DPTHREAD_YIELD
14744 if eval $compile; then
14745     val="$define"
14746     case "$sched_yield" in
14747     '') sched_yield='pthread_yield()' ;;
14748     esac
14749 else
14750     set try -DPTHREAD_YIELD_NULL
14751     if eval $compile; then
14752         val="$define"
14753         case "$sched_yield" in
14754         '') sched_yield='pthread_yield(NULL)' ;;
14755         esac
14756     else
14757         val="$undef"
14758     fi
14759 fi
14760 case "$usethreads" in
14761 $define)
14762         case "$val" in
14763         $define) echo 'pthread_yield() found.' >&4      ;;
14764         *)       echo 'pthread_yield() NOT found.' >&4  ;;
14765         esac
14766         ;;
14767 esac
14768 set d_pthread_yield
14769 eval $setvar
14770
14771 case "$sched_yield" in
14772 '') sched_yield=undef ;;
14773 esac
14774
14775 $rm -f try try.*
14776
14777 : see if random_r exists
14778 set random_r d_random_r
14779 eval $inlibc
14780 case "$d_random_r" in
14781 "$define")
14782         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
14783         case "$d_random_r_proto:$usethreads" in
14784         ":define")      d_random_r_proto=define
14785                 set d_random_r_proto random_r $hdrs
14786                 eval $hasproto ;;
14787         *)      ;;
14788         esac
14789         case "$d_random_r_proto" in
14790         define)
14791         case "$random_r_proto" in
14792         ''|0) try='int random_r(int*, struct random_data*);'
14793         ./protochk "extern $try" $hdrs && random_r_proto=I_iS ;;
14794         esac
14795         case "$random_r_proto" in
14796         ''|0) try='int random_r(long*, struct random_data*);'
14797         ./protochk "extern $try" $hdrs && random_r_proto=I_lS ;;
14798         esac
14799         case "$random_r_proto" in
14800         ''|0) try='int random_r(struct random_data*, int32_t*);'
14801         ./protochk "extern $try" $hdrs && random_r_proto=I_St ;;
14802         esac
14803         case "$random_r_proto" in
14804         ''|0)   d_random_r=undef
14805                 random_r_proto=0
14806                 echo "Disabling random_r, cannot determine prototype." >&4 ;;
14807         * )     case "$random_r_proto" in
14808                 REENTRANT_PROTO*) ;;
14809                 *) random_r_proto="REENTRANT_PROTO_$random_r_proto" ;;
14810                 esac
14811                 echo "Prototype: $try" ;;
14812         esac
14813         ;;
14814         *)      case "$usethreads" in
14815                 define) echo "random_r has no prototype, not using it." >&4 ;;
14816                 esac
14817                 d_random_r=undef
14818                 random_r_proto=0
14819                 ;;
14820         esac
14821         ;;
14822 *)      random_r_proto=0
14823         ;;
14824 esac
14825
14826 : see if readdir and friends exist
14827 set readdir d_readdir
14828 eval $inlibc
14829 set seekdir d_seekdir
14830 eval $inlibc
14831 set telldir d_telldir
14832 eval $inlibc
14833 set rewinddir d_rewinddir
14834 eval $inlibc
14835
14836 : see if readdir64_r exists
14837 set readdir64_r d_readdir64_r
14838 eval $inlibc
14839 case "$d_readdir64_r" in
14840 "$define")
14841         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
14842         case "$d_readdir64_r_proto:$usethreads" in
14843         ":define")      d_readdir64_r_proto=define
14844                 set d_readdir64_r_proto readdir64_r $hdrs
14845                 eval $hasproto ;;
14846         *)      ;;
14847         esac
14848         case "$d_readdir64_r_proto" in
14849         define)
14850         case "$readdir64_r_proto" in
14851         ''|0) try='int readdir64_r(DIR*, struct dirent64*, struct dirent64**);'
14852         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TSR ;;
14853         esac
14854         case "$readdir64_r_proto" in
14855         ''|0) try='int readdir64_r(DIR*, struct dirent64*);'
14856         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TS ;;
14857         esac
14858         case "$readdir64_r_proto" in
14859         ''|0)   d_readdir64_r=undef
14860                 readdir64_r_proto=0
14861                 echo "Disabling readdir64_r, cannot determine prototype." >&4 ;;
14862         * )     case "$readdir64_r_proto" in
14863                 REENTRANT_PROTO*) ;;
14864                 *) readdir64_r_proto="REENTRANT_PROTO_$readdir64_r_proto" ;;
14865                 esac
14866                 echo "Prototype: $try" ;;
14867         esac
14868         ;;
14869         *)      case "$usethreads" in
14870                 define) echo "readdir64_r has no prototype, not using it." >&4 ;;
14871                 esac
14872                 d_readdir64_r=undef
14873                 readdir64_r_proto=0
14874                 ;;
14875         esac
14876         ;;
14877 *)      readdir64_r_proto=0
14878         ;;
14879 esac
14880
14881 : see if readdir_r exists
14882 set readdir_r d_readdir_r
14883 eval $inlibc
14884 case "$d_readdir_r" in
14885 "$define")
14886         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
14887         case "$d_readdir_r_proto:$usethreads" in
14888         ":define")      d_readdir_r_proto=define
14889                 set d_readdir_r_proto readdir_r $hdrs
14890                 eval $hasproto ;;
14891         *)      ;;
14892         esac
14893         case "$d_readdir_r_proto" in
14894         define)
14895         case "$readdir_r_proto" in
14896         ''|0) try='int readdir_r(DIR*, struct dirent*, struct dirent**);'
14897         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TSR ;;
14898         esac
14899         case "$readdir_r_proto" in
14900         ''|0) try='int readdir_r(DIR*, struct dirent*);'
14901         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TS ;;
14902         esac
14903         case "$readdir_r_proto" in
14904         ''|0)   d_readdir_r=undef
14905                 readdir_r_proto=0
14906                 echo "Disabling readdir_r, cannot determine prototype." >&4 ;;
14907         * )     case "$readdir_r_proto" in
14908                 REENTRANT_PROTO*) ;;
14909                 *) readdir_r_proto="REENTRANT_PROTO_$readdir_r_proto" ;;
14910                 esac
14911                 echo "Prototype: $try" ;;
14912         esac
14913         ;;
14914         *)      case "$usethreads" in
14915                 define) echo "readdir_r has no prototype, not using it." >&4 ;;
14916                 esac
14917                 d_readdir_r=undef
14918                 readdir_r_proto=0
14919                 ;;
14920         esac
14921         ;;
14922 *)      readdir_r_proto=0
14923         ;;
14924 esac
14925
14926 : see if readv exists
14927 set readv d_readv
14928 eval $inlibc
14929
14930 : see if recvmsg exists
14931 set recvmsg d_recvmsg
14932 eval $inlibc
14933
14934 : see if rename exists
14935 set rename d_rename
14936 eval $inlibc
14937
14938 : see if rmdir exists
14939 set rmdir d_rmdir
14940 eval $inlibc
14941
14942 : see if memory.h is available.
14943 val=''
14944 set memory.h val
14945 eval $inhdr
14946
14947 : See if it conflicts with string.h
14948 case "$val" in
14949 $define)
14950         case "$strings" in
14951         '') ;;
14952         *)
14953                 $cppstdin $cppflags $cppminus < $strings > mem.h
14954                 if $contains 'memcpy' mem.h >/dev/null 2>&1; then
14955                         echo " "
14956                         echo "We won't be including <memory.h>."
14957                         val="$undef"
14958                 fi
14959                 $rm -f mem.h
14960                 ;;
14961         esac
14962 esac
14963 set i_memory
14964 eval $setvar
14965
14966 : can bcopy handle overlapping blocks?
14967 echo " "
14968 val="$undef"
14969 case "$d_memmove" in
14970 "$define") echo "I'll use memmove() instead of bcopy() for overlapping copies." ;;
14971 *)      case "$d_bcopy" in
14972         "$define")
14973                 echo "Checking to see if bcopy() can do overlapping copies..." >&4
14974                 $cat >try.c <<EOCP
14975 #$i_memory I_MEMORY
14976 #$i_stdlib I_STDLIB
14977 #$i_string I_STRING
14978 #$i_unistd I_UNISTD
14979 EOCP
14980         $cat >>try.c <<'EOCP'
14981 #include <stdio.h>
14982 #ifdef I_MEMORY
14983 #  include <memory.h>
14984 #endif
14985 #ifdef I_STDLIB
14986 #  include <stdlib.h>
14987 #endif
14988 #ifdef I_STRING
14989 #  include <string.h>
14990 #else
14991 #  include <strings.h>
14992 #endif
14993 #ifdef I_UNISTD
14994 #  include <unistd.h>  /* Needed for NetBSD */
14995 #endif
14996 int main()
14997 {
14998 char buf[128], abc[128];
14999 char *b;
15000 int len;
15001 int off;
15002 int align;
15003
15004 /* Copy "abcde..." string to char abc[] so that gcc doesn't
15005    try to store the string in read-only memory. */
15006 bcopy("abcdefghijklmnopqrstuvwxyz0123456789", abc, 36);
15007
15008 for (align = 7; align >= 0; align--) {
15009         for (len = 36; len; len--) {
15010                 b = buf+align;
15011                 bcopy(abc, b, len);
15012                 for (off = 1; off <= len; off++) {
15013                         bcopy(b, b+off, len);
15014                         bcopy(b+off, b, len);
15015                         if (bcmp(b, abc, len))
15016                                 exit(1);
15017                 }
15018         }
15019 }
15020 exit(0);
15021 }
15022 EOCP
15023                 set try
15024                 if eval $compile_ok; then
15025                         if ./try 2>/dev/null; then
15026                                 echo "Yes, it can."
15027                                 val="$define"
15028                         else
15029                                 echo "It can't, sorry."
15030                         fi
15031                 else
15032                         echo "(I can't compile the test program, so we'll assume not...)"
15033                 fi
15034                 ;;
15035         esac
15036         $rm -f try.* try core
15037         ;;
15038 esac
15039 set d_safebcpy
15040 eval $setvar
15041
15042 : can memcpy handle overlapping blocks?
15043 echo " "
15044 val="$undef"
15045 case "$d_memmove" in
15046 "$define") echo "I'll use memmove() instead of memcpy() for overlapping copies." ;;
15047 *)      case "$d_memcpy" in
15048         "$define")
15049                 echo "Checking to see if memcpy() can do overlapping copies..." >&4
15050                 $cat >try.c <<EOCP
15051 #$i_memory I_MEMORY
15052 #$i_stdlib I_STDLIB
15053 #$i_string I_STRING
15054 #$i_unistd I_UNISTD
15055 EOCP
15056         $cat >>try.c <<'EOCP'
15057 #include <stdio.h>
15058 #ifdef I_MEMORY
15059 #  include <memory.h>
15060 #endif
15061 #ifdef I_STDLIB
15062 #  include <stdlib.h>
15063 #endif
15064 #ifdef I_STRING
15065 #  include <string.h>
15066 #else
15067 #  include <strings.h>
15068 #endif
15069 #ifdef I_UNISTD
15070 #  include <unistd.h>  /* Needed for NetBSD */
15071 #endif
15072 int main()
15073 {
15074 char buf[128], abc[128];
15075 char *b;
15076 int len;
15077 int off;
15078 int align;
15079
15080 /* Copy "abcde..." string to char abc[] so that gcc doesn't
15081    try to store the string in read-only memory. */
15082 memcpy(abc, "abcdefghijklmnopqrstuvwxyz0123456789", 36);
15083
15084 for (align = 7; align >= 0; align--) {
15085         for (len = 36; len; len--) {
15086                 b = buf+align;
15087                 memcpy(b, abc, len);
15088                 for (off = 1; off <= len; off++) {
15089                         memcpy(b+off, b, len);
15090                         memcpy(b, b+off, len);
15091                         if (memcmp(b, abc, len))
15092                                 exit(1);
15093                 }
15094         }
15095 }
15096 exit(0);
15097 }
15098 EOCP
15099                 set try
15100                 if eval $compile_ok; then
15101                         if ./try 2>/dev/null; then
15102                                 echo "Yes, it can."
15103                                 val="$define"
15104                         else
15105                                 echo "It can't, sorry."
15106                         fi
15107                 else
15108                         echo "(I can't compile the test program, so we'll assume not...)"
15109                 fi
15110                 ;;
15111         esac
15112         $rm -f try.* try core
15113         ;;
15114 esac
15115 set d_safemcpy
15116 eval $setvar
15117
15118 : can memcmp be trusted to compare relative magnitude?
15119 val="$undef"
15120 case "$d_memcmp" in
15121 "$define")
15122         echo " "
15123         echo "Checking if your memcmp() can compare relative magnitude..." >&4
15124         $cat >try.c <<EOCP
15125 #$i_memory I_MEMORY
15126 #$i_stdlib I_STDLIB
15127 #$i_string I_STRING
15128 #$i_unistd I_UNISTD
15129 EOCP
15130         $cat >>try.c <<'EOCP'
15131 #include <stdio.h>
15132 #ifdef I_MEMORY
15133 #  include <memory.h>
15134 #endif
15135 #ifdef I_STDLIB
15136 #  include <stdlib.h>
15137 #endif
15138 #ifdef I_STRING
15139 #  include <string.h>
15140 #else
15141 #  include <strings.h>
15142 #endif
15143 #ifdef I_UNISTD
15144 #  include <unistd.h>  /* Needed for NetBSD */
15145 #endif
15146 int main()
15147 {
15148 char a = -1;
15149 char b = 0;
15150 if ((a < b) && memcmp(&a, &b, 1) < 0)
15151         exit(1);
15152 exit(0);
15153 }
15154 EOCP
15155         set try
15156         if eval $compile_ok; then
15157                 if $run ./try 2>/dev/null; then
15158                         echo "Yes, it can."
15159                         val="$define"
15160                 else
15161                         echo "No, it can't (it uses signed chars)."
15162                 fi
15163         else
15164                 echo "(I can't compile the test program, so we'll assume not...)"
15165         fi
15166         ;;
15167 esac
15168 $rm -f try.* try core
15169 set d_sanemcmp
15170 eval $setvar
15171
15172 : see if prototype for sbrk is available
15173 echo " "
15174 set d_sbrkproto sbrk $i_unistd unistd.h
15175 eval $hasproto
15176
15177 : see if scalbnl exists
15178 set scalbnl d_scalbnl
15179 eval $inlibc
15180
15181 : see if select exists
15182 set select d_select
15183 eval $inlibc
15184
15185 : see if semctl exists
15186 set semctl d_semctl
15187 eval $inlibc
15188
15189 : see if semget exists
15190 set semget d_semget
15191 eval $inlibc
15192
15193 : see if semop exists
15194 set semop d_semop
15195 eval $inlibc
15196
15197 : see how much of the 'sem*(2)' library is present.
15198 h_sem=true
15199 echo " "
15200 case "$d_semctl$d_semget$d_semop" in
15201 *"$undef"*) h_sem=false;;
15202 esac
15203 case "$osname" in
15204 freebsd)
15205     case "`ipcs 2>&1`" in
15206     "SVID messages"*"not configured"*)
15207         echo "Your $osname does not have the sem*(2) configured." >&4
15208         h_sem=false
15209         val="$undef"
15210         set semctl d_semctl
15211         eval $setvar
15212         set semget d_semget
15213         eval $setvar
15214         set semop d_semop
15215         eval $setvar
15216         ;;
15217     esac
15218     ;;
15219 esac
15220 : we could also check for sys/ipc.h ...
15221 if $h_sem && $test `./findhdr sys/sem.h`; then
15222         echo "You have the full sem*(2) library." >&4
15223         val="$define"
15224 else
15225         echo "You don't have the full sem*(2) library." >&4
15226         val="$undef"
15227 fi
15228 set d_sem
15229 eval $setvar
15230
15231 : see whether sys/sem.h defines union semun
15232 echo " "
15233 $cat > try.c <<'END'
15234 #include <sys/types.h>
15235 #include <sys/ipc.h>
15236 #include <sys/sem.h>
15237 int main () { union semun semun; semun.buf = 0; }
15238 END
15239 set try
15240 if eval $compile; then
15241     echo "You have union semun in <sys/sem.h>." >&4
15242     val="$define"
15243 else
15244     echo "You do not have union semun in <sys/sem.h>." >&4
15245     val="$undef"
15246 fi
15247 $rm -f try try.c try.h
15248 set d_union_semun
15249 eval $setvar
15250
15251 : see how to do semctl IPC_STAT
15252 case "$d_sem" in
15253 $define)
15254     : see whether semctl IPC_STAT can use union semun
15255     echo " "
15256     $cat > try.h <<END
15257 #ifndef S_IRUSR
15258 #   ifdef S_IREAD
15259 #       define S_IRUSR S_IREAD
15260 #       define S_IWUSR S_IWRITE
15261 #       define S_IXUSR S_IEXEC
15262 #   else
15263 #       define S_IRUSR 0400
15264 #       define S_IWUSR 0200
15265 #       define S_IXUSR 0100
15266 #   endif
15267 #   define S_IRGRP (S_IRUSR>>3)
15268 #   define S_IWGRP (S_IWUSR>>3)
15269 #   define S_IXGRP (S_IXUSR>>3)
15270 #   define S_IROTH (S_IRUSR>>6)
15271 #   define S_IWOTH (S_IWUSR>>6)
15272 #   define S_IXOTH (S_IXUSR>>6)
15273 #endif
15274 #ifndef S_IRWXU
15275 #   define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
15276 #   define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
15277 #   define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
15278 #endif
15279 END
15280
15281     $cat > try.c <<END
15282 #include <sys/types.h>
15283 #include <sys/ipc.h>
15284 #include <sys/sem.h>
15285 #include <sys/stat.h>
15286 #include <stdio.h>
15287 #include <errno.h>
15288 #include "try.h"
15289 #ifndef errno
15290 extern int errno;
15291 #endif
15292 #$d_union_semun HAS_UNION_SEMUN
15293 int main() {
15294     union semun
15295 #ifndef HAS_UNION_SEMUN
15296     {
15297         int val;
15298         struct semid_ds *buf;
15299         unsigned short *array;
15300     }
15301 #endif
15302     arg;
15303     int sem, st;
15304
15305 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) && defined(S_IRWXO) && defined(IPC_CREAT)
15306     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
15307     if (sem > -1) {
15308         struct semid_ds argbuf;
15309         arg.buf = &argbuf;
15310 #       ifdef IPC_STAT
15311         st = semctl(sem, 0, IPC_STAT, arg);
15312         if (st == 0)
15313             printf("semun\n");
15314         else
15315 #       endif /* IPC_STAT */
15316             printf("semctl IPC_STAT failed: errno = %d\n", errno);
15317 #       ifdef IPC_RMID
15318         if (semctl(sem, 0, IPC_RMID, arg) != 0)
15319 #       endif /* IPC_RMID */
15320             printf("semctl IPC_RMID failed: errno = %d\n", errno);
15321     } else
15322 #endif /* IPC_PRIVATE && ... */
15323         printf("semget failed: errno = %d\n", errno);
15324   return 0;
15325 }
15326 END
15327     val="$undef"
15328     set try
15329     if eval $compile; then
15330         xxx=`$run ./try`
15331         case "$xxx" in
15332         semun) val="$define" ;;
15333         esac
15334     fi
15335     $rm -f try try.c
15336     set d_semctl_semun
15337     eval $setvar
15338     case "$d_semctl_semun" in
15339     $define)
15340         echo "You can use union semun for semctl IPC_STAT." >&4
15341         also='also'
15342         ;;
15343     *)  echo "You cannot use union semun for semctl IPC_STAT." >&4
15344         also=''
15345         ;;
15346     esac
15347
15348     : see whether semctl IPC_STAT can use struct semid_ds pointer
15349     $cat > try.c <<'END'
15350 #include <sys/types.h>
15351 #include <sys/ipc.h>
15352 #include <sys/sem.h>
15353 #include <sys/stat.h>
15354 #include "try.h"
15355 #include <stdio.h>
15356 #include <errno.h>
15357 #ifndef errno
15358 extern int errno;
15359 #endif
15360 int main() {
15361     struct semid_ds arg;
15362     int sem, st;
15363
15364 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) &&  defined(S_IRWXO) && defined(IPC_CREAT)
15365     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
15366     if (sem > -1) {
15367 #       ifdef IPC_STAT
15368         st = semctl(sem, 0, IPC_STAT, &arg);
15369         if (st == 0)
15370             printf("semid_ds\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
15382     return 0;
15383 }
15384 END
15385     val="$undef"
15386     set try
15387     if eval $compile; then
15388         xxx=`$run ./try`
15389         case "$xxx" in
15390         semid_ds) val="$define" ;;
15391         esac
15392     fi
15393     $rm -f try try.c
15394     set d_semctl_semid_ds
15395     eval $setvar
15396     case "$d_semctl_semid_ds" in
15397     $define)
15398         echo "You can $also use struct semid_ds* for semctl IPC_STAT." >&4
15399         ;;
15400     *)  echo "You cannot use struct semid_ds* for semctl IPC_STAT." >&4
15401         ;;
15402     esac
15403     $rm -f try.h
15404     ;;
15405 *)  val="$undef"
15406
15407     # We do not have the full sem*(2) library, so assume we can not
15408     # use either.
15409
15410     set d_semctl_semun
15411     eval $setvar
15412
15413     set d_semctl_semid_ds
15414     eval $setvar
15415     ;;
15416 esac
15417
15418 : see if sendmsg exists
15419 set sendmsg d_sendmsg
15420 eval $inlibc
15421
15422 : see if setegid exists
15423 set setegid d_setegid
15424 eval $inlibc
15425
15426 : see if seteuid exists
15427 set seteuid d_seteuid
15428 eval $inlibc
15429
15430 : see if setgrent exists
15431 set setgrent d_setgrent
15432 eval $inlibc
15433
15434 : see if setgrent_r exists
15435 set setgrent_r d_setgrent_r
15436 eval $inlibc
15437 case "$d_setgrent_r" in
15438 "$define")
15439         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
15440         case "$d_setgrent_r_proto:$usethreads" in
15441         ":define")      d_setgrent_r_proto=define
15442                 set d_setgrent_r_proto setgrent_r $hdrs
15443                 eval $hasproto ;;
15444         *)      ;;
15445         esac
15446         case "$d_setgrent_r_proto" in
15447         define)
15448         case "$setgrent_r_proto" in
15449         ''|0) try='int setgrent_r(FILE**);'
15450         ./protochk "extern $try" $hdrs && setgrent_r_proto=I_H ;;
15451         esac
15452         case "$setgrent_r_proto" in
15453         ''|0) try='void setgrent_r(FILE**);'
15454         ./protochk "extern $try" $hdrs && setgrent_r_proto=V_H ;;
15455         esac
15456         case "$setgrent_r_proto" in
15457         ''|0)   d_setgrent_r=undef
15458                 setgrent_r_proto=0
15459                 echo "Disabling setgrent_r, cannot determine prototype." >&4 ;;
15460         * )     case "$setgrent_r_proto" in
15461                 REENTRANT_PROTO*) ;;
15462                 *) setgrent_r_proto="REENTRANT_PROTO_$setgrent_r_proto" ;;
15463                 esac
15464                 echo "Prototype: $try" ;;
15465         esac
15466         ;;
15467         *)      case "$usethreads" in
15468                 define) echo "setgrent_r has no prototype, not using it." >&4 ;;
15469                 esac
15470                 d_setgrent_r=undef
15471                 setgrent_r_proto=0
15472                 ;;
15473         esac
15474         ;;
15475 *)      setgrent_r_proto=0
15476         ;;
15477 esac
15478
15479 : see if sethostent exists
15480 set sethostent d_sethent
15481 eval $inlibc
15482
15483 : see if sethostent_r exists
15484 set sethostent_r d_sethostent_r
15485 eval $inlibc
15486 case "$d_sethostent_r" in
15487 "$define")
15488         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15489         case "$d_sethostent_r_proto:$usethreads" in
15490         ":define")      d_sethostent_r_proto=define
15491                 set d_sethostent_r_proto sethostent_r $hdrs
15492                 eval $hasproto ;;
15493         *)      ;;
15494         esac
15495         case "$d_sethostent_r_proto" in
15496         define)
15497         case "$sethostent_r_proto" in
15498         ''|0) try='int sethostent_r(int, struct hostent_data*);'
15499         ./protochk "extern $try" $hdrs && sethostent_r_proto=I_ID ;;
15500         esac
15501         case "$sethostent_r_proto" in
15502         ''|0) try='void sethostent_r(int, struct hostent_data*);'
15503         ./protochk "extern $try" $hdrs && sethostent_r_proto=V_ID ;;
15504         esac
15505         case "$sethostent_r_proto" in
15506         ''|0)   d_sethostent_r=undef
15507                 sethostent_r_proto=0
15508                 echo "Disabling sethostent_r, cannot determine prototype." >&4 ;;
15509         * )     case "$sethostent_r_proto" in
15510                 REENTRANT_PROTO*) ;;
15511                 *) sethostent_r_proto="REENTRANT_PROTO_$sethostent_r_proto" ;;
15512                 esac
15513                 echo "Prototype: $try" ;;
15514         esac
15515         ;;
15516         *)      case "$usethreads" in
15517                 define) echo "sethostent_r has no prototype, not using it." >&4 ;;
15518                 esac
15519                 d_sethostent_r=undef
15520                 sethostent_r_proto=0
15521                 ;;
15522         esac
15523         ;;
15524 *)      sethostent_r_proto=0
15525         ;;
15526 esac
15527
15528 : see if setitimer exists
15529 set setitimer d_setitimer
15530 eval $inlibc
15531
15532 : see if setlinebuf exists
15533 set setlinebuf d_setlinebuf
15534 eval $inlibc
15535
15536 : see if setlocale exists
15537 set setlocale d_setlocale
15538 eval $inlibc
15539
15540 : see if locale.h is available
15541 set locale.h i_locale
15542 eval $inhdr
15543
15544 : see if setlocale_r exists
15545 set setlocale_r d_setlocale_r
15546 eval $inlibc
15547 case "$d_setlocale_r" in
15548 "$define")
15549         hdrs="$i_systypes sys/types.h define stdio.h $i_locale locale.h"
15550         case "$d_setlocale_r_proto:$usethreads" in
15551         ":define")      d_setlocale_r_proto=define
15552                 set d_setlocale_r_proto setlocale_r $hdrs
15553                 eval $hasproto ;;
15554         *)      ;;
15555         esac
15556         case "$d_setlocale_r_proto" in
15557         define)
15558         case "$setlocale_r_proto" in
15559         ''|0) try='int setlocale_r(int, const char*, char*, int);'
15560         ./protochk "extern $try" $hdrs && setlocale_r_proto=I_ICBI ;;
15561         esac
15562         case "$setlocale_r_proto" in
15563         ''|0)   d_setlocale_r=undef
15564                 setlocale_r_proto=0
15565                 echo "Disabling setlocale_r, cannot determine prototype." >&4 ;;
15566         * )     case "$setlocale_r_proto" in
15567                 REENTRANT_PROTO*) ;;
15568                 *) setlocale_r_proto="REENTRANT_PROTO_$setlocale_r_proto" ;;
15569                 esac
15570                 echo "Prototype: $try" ;;
15571         esac
15572         ;;
15573         *)      case "$usethreads" in
15574                 define) echo "setlocale_r has no prototype, not using it." >&4 ;;
15575                 esac
15576                 d_setlocale_r=undef
15577                 setlocale_r_proto=0
15578                 ;;
15579         esac
15580         ;;
15581 *)      setlocale_r_proto=0
15582         ;;
15583 esac
15584
15585 : see if setnetent exists
15586 set setnetent d_setnent
15587 eval $inlibc
15588
15589 : see if setnetent_r exists
15590 set setnetent_r d_setnetent_r
15591 eval $inlibc
15592 case "$d_setnetent_r" in
15593 "$define")
15594         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15595         case "$d_setnetent_r_proto:$usethreads" in
15596         ":define")      d_setnetent_r_proto=define
15597                 set d_setnetent_r_proto setnetent_r $hdrs
15598                 eval $hasproto ;;
15599         *)      ;;
15600         esac
15601         case "$d_setnetent_r_proto" in
15602         define)
15603         case "$setnetent_r_proto" in
15604         ''|0) try='int setnetent_r(int, struct netent_data*);'
15605         ./protochk "extern $try" $hdrs && setnetent_r_proto=I_ID ;;
15606         esac
15607         case "$setnetent_r_proto" in
15608         ''|0) try='void setnetent_r(int, struct netent_data*);'
15609         ./protochk "extern $try" $hdrs && setnetent_r_proto=V_ID ;;
15610         esac
15611         case "$setnetent_r_proto" in
15612         ''|0)   d_setnetent_r=undef
15613                 setnetent_r_proto=0
15614                 echo "Disabling setnetent_r, cannot determine prototype." >&4 ;;
15615         * )     case "$setnetent_r_proto" in
15616                 REENTRANT_PROTO*) ;;
15617                 *) setnetent_r_proto="REENTRANT_PROTO_$setnetent_r_proto" ;;
15618                 esac
15619                 echo "Prototype: $try" ;;
15620         esac
15621         ;;
15622         *)      case "$usethreads" in
15623                 define) echo "setnetent_r has no prototype, not using it." >&4 ;;
15624                 esac
15625                 d_setnetent_r=undef
15626                 setnetent_r_proto=0
15627                 ;;
15628         esac
15629         ;;
15630 *)      setnetent_r_proto=0
15631         ;;
15632 esac
15633
15634 : see if setprotoent exists
15635 set setprotoent d_setpent
15636 eval $inlibc
15637
15638 : see if setpgid exists
15639 set setpgid d_setpgid
15640 eval $inlibc
15641
15642 : see if setpgrp2 exists
15643 set setpgrp2 d_setpgrp2
15644 eval $inlibc
15645
15646 : see if setpriority exists
15647 set setpriority d_setprior
15648 eval $inlibc
15649
15650 : see if setproctitle exists
15651 set setproctitle d_setproctitle
15652 eval $inlibc
15653
15654 : see if setprotoent_r exists
15655 set setprotoent_r d_setprotoent_r
15656 eval $inlibc
15657 case "$d_setprotoent_r" in
15658 "$define")
15659         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15660         case "$d_setprotoent_r_proto:$usethreads" in
15661         ":define")      d_setprotoent_r_proto=define
15662                 set d_setprotoent_r_proto setprotoent_r $hdrs
15663                 eval $hasproto ;;
15664         *)      ;;
15665         esac
15666         case "$d_setprotoent_r_proto" in
15667         define)
15668         case "$setprotoent_r_proto" in
15669         ''|0) try='int setprotoent_r(int, struct protoent_data*);'
15670         ./protochk "extern $try" $hdrs && setprotoent_r_proto=I_ID ;;
15671         esac
15672         case "$setprotoent_r_proto" in
15673         ''|0) try='void setprotoent_r(int, struct protoent_data*);'
15674         ./protochk "extern $try" $hdrs && setprotoent_r_proto=V_ID ;;
15675         esac
15676         case "$setprotoent_r_proto" in
15677         ''|0)   d_setprotoent_r=undef
15678                 setprotoent_r_proto=0
15679                 echo "Disabling setprotoent_r, cannot determine prototype." >&4 ;;
15680         * )     case "$setprotoent_r_proto" in
15681                 REENTRANT_PROTO*) ;;
15682                 *) setprotoent_r_proto="REENTRANT_PROTO_$setprotoent_r_proto" ;;
15683                 esac
15684                 echo "Prototype: $try" ;;
15685         esac
15686         ;;
15687         *)      case "$usethreads" in
15688                 define) echo "setprotoent_r has no prototype, not using it." >&4 ;;
15689                 esac
15690                 d_setprotoent_r=undef
15691                 setprotoent_r_proto=0
15692                 ;;
15693         esac
15694         ;;
15695 *)      setprotoent_r_proto=0
15696         ;;
15697 esac
15698
15699 : see if setpwent exists
15700 set setpwent d_setpwent
15701 eval $inlibc
15702
15703 : see if setpwent_r exists
15704 set setpwent_r d_setpwent_r
15705 eval $inlibc
15706 case "$d_setpwent_r" in
15707 "$define")
15708         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
15709         case "$d_setpwent_r_proto:$usethreads" in
15710         ":define")      d_setpwent_r_proto=define
15711                 set d_setpwent_r_proto setpwent_r $hdrs
15712                 eval $hasproto ;;
15713         *)      ;;
15714         esac
15715         case "$d_setpwent_r_proto" in
15716         define)
15717         case "$setpwent_r_proto" in
15718         ''|0) try='int setpwent_r(FILE**);'
15719         ./protochk "extern $try" $hdrs && setpwent_r_proto=I_H ;;
15720         esac
15721         case "$setpwent_r_proto" in
15722         ''|0) try='void setpwent_r(FILE**);'
15723         ./protochk "extern $try" $hdrs && setpwent_r_proto=V_H ;;
15724         esac
15725         case "$setpwent_r_proto" in
15726         ''|0)   d_setpwent_r=undef
15727                 setpwent_r_proto=0
15728                 echo "Disabling setpwent_r, cannot determine prototype." >&4 ;;
15729         * )     case "$setpwent_r_proto" in
15730                 REENTRANT_PROTO*) ;;
15731                 *) setpwent_r_proto="REENTRANT_PROTO_$setpwent_r_proto" ;;
15732                 esac
15733                 echo "Prototype: $try" ;;
15734         esac
15735         ;;
15736         *)      case "$usethreads" in
15737                 define) echo "setpwent_r has no prototype, not using it." >&4 ;;
15738                 esac
15739                 d_setpwent_r=undef
15740                 setpwent_r_proto=0
15741                 ;;
15742         esac
15743         ;;
15744 *)      setpwent_r_proto=0
15745         ;;
15746 esac
15747
15748 : see if setregid exists
15749 set setregid d_setregid
15750 eval $inlibc
15751 set setresgid d_setresgid
15752 eval $inlibc
15753
15754 : see if setreuid exists
15755 set setreuid d_setreuid
15756 eval $inlibc
15757 set setresuid d_setresuid
15758 eval $inlibc
15759
15760 : see if setrgid exists
15761 set setrgid d_setrgid
15762 eval $inlibc
15763
15764 : see if setruid exists
15765 set setruid d_setruid
15766 eval $inlibc
15767
15768 : see if setservent exists
15769 set setservent d_setsent
15770 eval $inlibc
15771
15772 : see if setservent_r exists
15773 set setservent_r d_setservent_r
15774 eval $inlibc
15775 case "$d_setservent_r" in
15776 "$define")
15777         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15778         case "$d_setservent_r_proto:$usethreads" in
15779         ":define")      d_setservent_r_proto=define
15780                 set d_setservent_r_proto setservent_r $hdrs
15781                 eval $hasproto ;;
15782         *)      ;;
15783         esac
15784         case "$d_setservent_r_proto" in
15785         define)
15786         case "$setservent_r_proto" in
15787         ''|0) try='int setservent_r(int, struct servent_data*);'
15788         ./protochk "extern $try" $hdrs && setservent_r_proto=I_ID ;;
15789         esac
15790         case "$setservent_r_proto" in
15791         ''|0) try='void setservent_r(int, struct servent_data*);'
15792         ./protochk "extern $try" $hdrs && setservent_r_proto=V_ID ;;
15793         esac
15794         case "$setservent_r_proto" in
15795         ''|0)   d_setservent_r=undef
15796                 setservent_r_proto=0
15797                 echo "Disabling setservent_r, cannot determine prototype." >&4 ;;
15798         * )     case "$setservent_r_proto" in
15799                 REENTRANT_PROTO*) ;;
15800                 *) setservent_r_proto="REENTRANT_PROTO_$setservent_r_proto" ;;
15801                 esac
15802                 echo "Prototype: $try" ;;
15803         esac
15804         ;;
15805         *)      case "$usethreads" in
15806                 define) echo "setservent_r has no prototype, not using it." >&4 ;;
15807                 esac
15808                 d_setservent_r=undef
15809                 setservent_r_proto=0
15810                 ;;
15811         esac
15812         ;;
15813 *)      setservent_r_proto=0
15814         ;;
15815 esac
15816
15817 : see if setsid exists
15818 set setsid d_setsid
15819 eval $inlibc
15820
15821 : see if setvbuf exists
15822 set setvbuf d_setvbuf
15823 eval $inlibc
15824
15825 : see if sfio.h is available
15826 set sfio.h i_sfio
15827 eval $inhdr
15828
15829
15830 : see if sfio library is available
15831 case "$i_sfio" in
15832 $define)
15833         val=''
15834         set sfreserve val
15835         eval $inlibc
15836         ;;
15837 *)
15838         val="$undef"
15839         ;;
15840 esac
15841 : Ok, but do we want to use it.
15842 case "$val" in
15843 $define)
15844         case "$usesfio" in
15845         true|$define|[yY]*) dflt='y';;
15846         *) dflt='n';;
15847         esac
15848         echo "$package can use the sfio library, but it is experimental."
15849         case "$useperlio" in
15850         "$undef")
15851             echo "For sfio also the PerlIO abstraction layer is needed."
15852             echo "Earlier you said you wouldn't want that."
15853             ;;
15854         esac
15855         rp="You seem to have sfio available, do you want to try using it?"
15856         . ./myread
15857         case "$ans" in
15858         y|Y)    echo "Ok, turning on both sfio and PerlIO, then."
15859                 useperlio="$define"
15860                 val="$define"
15861                 ;;
15862         *)      echo "Ok, avoiding sfio this time.  I'll use stdio instead."
15863                 val="$undef"
15864                 ;;
15865         esac
15866         ;;
15867 *)      case "$usesfio" in
15868         true|$define|[yY]*)
15869                 echo "Sorry, cannot find sfio on this machine." >&4
15870                 echo "Ignoring your setting of usesfio=$usesfio." >&4
15871                 val="$undef"
15872                 ;;
15873         esac
15874         ;;
15875 esac
15876 set d_sfio
15877 eval $setvar
15878 case "$d_sfio" in
15879 $define) usesfio='true';;
15880 *) usesfio='false';;
15881 esac
15882 case "$d_sfio" in
15883 $define) ;;
15884 *)      : Remove sfio from list of libraries to use
15885         case "$libs" in
15886         *-lsfio*)
15887                 echo "Removing unneeded -lsfio from library list" >&4
15888                 set `echo X $libs | $sed -e 's/-lsfio / /' -e 's/-lsfio$//'`
15889                 shift
15890                 libs="$*"
15891                 echo "libs = $libs" >&4
15892                 ;;
15893         esac
15894 ;;
15895 esac
15896
15897
15898 : see if shmctl exists
15899 set shmctl d_shmctl
15900 eval $inlibc
15901
15902 : see if shmget exists
15903 set shmget d_shmget
15904 eval $inlibc
15905
15906 : see if shmat exists
15907 set shmat d_shmat
15908 eval $inlibc
15909 : see what shmat returns
15910 case "$d_shmat" in
15911 "$define")
15912         $cat >shmat.c <<'END'
15913 #include <sys/shm.h>
15914 void *shmat();
15915 END
15916         if $cc $ccflags -c shmat.c >/dev/null 2>&1; then
15917                 shmattype='void *'
15918         else
15919                 shmattype='char *'
15920         fi
15921         echo "and it returns ($shmattype)." >&4
15922         : see if a prototype for shmat is available
15923         xxx=`./findhdr sys/shm.h`
15924         $cppstdin $cppflags $cppminus < $xxx > shmat.c 2>/dev/null
15925         if $contains 'shmat.*(' shmat.c >/dev/null 2>&1; then
15926                 val="$define"
15927         else
15928                 val="$undef"
15929         fi
15930         $rm -f shmat.[co]
15931         ;;
15932 *)
15933         val="$undef"
15934         ;;
15935 esac
15936 set d_shmatprototype
15937 eval $setvar
15938
15939 : see if shmdt exists
15940 set shmdt d_shmdt
15941 eval $inlibc
15942
15943 : see how much of the 'shm*(2)' library is present.
15944 h_shm=true
15945 echo " "
15946 case "$d_shmctl$d_shmget$d_shmat$d_shmdt" in
15947 *"$undef"*) h_shm=false;;
15948 esac
15949 case "$osname" in
15950 freebsd)
15951     case "`ipcs 2>&1`" in
15952     "SVID shared memory"*"not configured"*)
15953         echo "Your $osname does not have the shm*(2) configured." >&4
15954         h_shm=false
15955         val="$undef"
15956         set shmctl d_shmctl
15957         evat $setvar
15958         set shmget d_shmget
15959         evat $setvar
15960         set shmat d_shmat
15961         evat $setvar
15962         set shmdt d_shmdt
15963         evat $setvar
15964         ;;
15965     esac
15966     ;;
15967 esac
15968 : we could also check for sys/ipc.h ...
15969 if $h_shm && $test `./findhdr sys/shm.h`; then
15970         echo "You have the full shm*(2) library." >&4
15971         val="$define"
15972 else
15973         echo "You don't have the full shm*(2) library." >&4
15974         val="$undef"
15975 fi
15976 set d_shm
15977 eval $setvar
15978
15979 echo " "
15980 : see if we have sigaction
15981 if set sigaction val -f d_sigaction; eval $csym; $val; then
15982         echo 'sigaction() found.' >&4
15983         $cat > try.c <<EOP
15984 #include <stdio.h>
15985 #include <sys/types.h>
15986 #include <signal.h>
15987 #$i_stdlib I_STDLIB
15988 #ifdef I_STDLIB
15989 #include <stdlib.h>
15990 #endif
15991 int main()
15992 {
15993     struct sigaction act, oact;
15994     act.sa_flags = 0;
15995     oact.sa_handler = 0;
15996     /* so that act and oact are used */
15997     exit(act.sa_flags == 0 &&  oact.sa_handler == 0);
15998 }
15999 EOP
16000         set try
16001         if eval $compile_ok; then
16002                 val="$define"
16003         else
16004                 echo "But you don't seem to have a useable struct sigaction." >&4
16005                 val="$undef"
16006         fi
16007 else
16008         echo 'sigaction NOT found.' >&4
16009         val="$undef"
16010 fi
16011 set d_sigaction; eval $setvar
16012 $rm -f try try$_o try.c
16013
16014 : see if sigprocmask exists
16015 set sigprocmask d_sigprocmask
16016 eval $inlibc
16017
16018 : see if sigsetjmp exists
16019 echo " "
16020 case "$d_sigsetjmp" in
16021 '')
16022         $cat >try.c <<EOP
16023 #include <setjmp.h>
16024 #$i_stdlib I_STDLIB
16025 #ifdef I_STDLIB
16026 #include <stdlib.h>
16027 #endif
16028 sigjmp_buf env;
16029 int set = 1;
16030 int main()
16031 {
16032         if (sigsetjmp(env,1))
16033                 exit(set);
16034         set = 0;
16035         siglongjmp(env, 1);
16036         exit(1);
16037 }
16038 EOP
16039         set try
16040         if eval $compile; then
16041                 if $run ./try >/dev/null 2>&1; then
16042                         echo "POSIX sigsetjmp found." >&4
16043                         val="$define"
16044                 else
16045                         $cat >&4 <<EOM
16046 Uh-Oh! You have POSIX sigsetjmp and siglongjmp, but they do not work properly!!
16047 I'll ignore them.
16048 EOM
16049                         val="$undef"
16050                 fi
16051         else
16052                 echo "sigsetjmp not found." >&4
16053                 val="$undef"
16054         fi
16055         ;;
16056 *) val="$d_sigsetjmp"
16057         case "$d_sigsetjmp" in
16058         $define) echo "POSIX sigsetjmp found." >&4;;
16059         $undef) echo "sigsetjmp not found." >&4;;
16060         esac
16061         ;;
16062 esac
16063 set d_sigsetjmp
16064 eval $setvar
16065 $rm -f try.c try
16066
16067 : see if sockatmark exists
16068 set sockatmark d_sockatmark
16069 eval $inlibc
16070
16071 : see if prototype for sockatmark is available
16072 echo " "
16073 set d_sockatmarkproto sockatmark $d_socket sys/socket.h
16074 eval $hasproto
16075
16076 : see if socks5_init exists
16077 set socks5_init d_socks5_init
16078 eval $inlibc
16079
16080 : see if srand48_r exists
16081 set srand48_r d_srand48_r
16082 eval $inlibc
16083 case "$d_srand48_r" in
16084 "$define")
16085         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
16086         case "$d_srand48_r_proto:$usethreads" in
16087         ":define")      d_srand48_r_proto=define
16088                 set d_srand48_r_proto srand48_r $hdrs
16089                 eval $hasproto ;;
16090         *)      ;;
16091         esac
16092         case "$d_srand48_r_proto" in
16093         define)
16094         case "$srand48_r_proto" in
16095         ''|0) try='int srand48_r(long, struct drand48_data*);'
16096         ./protochk "extern $try" $hdrs && srand48_r_proto=I_LS ;;
16097         esac
16098         case "$srand48_r_proto" in
16099         ''|0)   d_srand48_r=undef
16100                 srand48_r_proto=0
16101                 echo "Disabling srand48_r, cannot determine prototype." >&4 ;;
16102         * )     case "$srand48_r_proto" in
16103                 REENTRANT_PROTO*) ;;
16104                 *) srand48_r_proto="REENTRANT_PROTO_$srand48_r_proto" ;;
16105                 esac
16106                 echo "Prototype: $try" ;;
16107         esac
16108         ;;
16109         *)      case "$usethreads" in
16110                 define) echo "srand48_r has no prototype, not using it." >&4 ;;
16111                 esac
16112                 d_srand48_r=undef
16113                 srand48_r_proto=0
16114                 ;;
16115         esac
16116         ;;
16117 *)      srand48_r_proto=0
16118         ;;
16119 esac
16120
16121 : see if srandom_r exists
16122 set srandom_r d_srandom_r
16123 eval $inlibc
16124 case "$d_srandom_r" in
16125 "$define")
16126         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
16127         case "$d_srandom_r_proto:$usethreads" in
16128         ":define")      d_srandom_r_proto=define
16129                 set d_srandom_r_proto srandom_r $hdrs
16130                 eval $hasproto ;;
16131         *)      ;;
16132         esac
16133         case "$d_srandom_r_proto" in
16134         define)
16135         case "$srandom_r_proto" in
16136         ''|0) try='int srandom_r(unsigned int, struct random_data*);'
16137         ./protochk "extern $try" $hdrs && srandom_r_proto=I_TS ;;
16138         esac
16139         case "$srandom_r_proto" in
16140         ''|0)   d_srandom_r=undef
16141                 srandom_r_proto=0
16142                 echo "Disabling srandom_r, cannot determine prototype." >&4 ;;
16143         * )     case "$srandom_r_proto" in
16144                 REENTRANT_PROTO*) ;;
16145                 *) srandom_r_proto="REENTRANT_PROTO_$srandom_r_proto" ;;
16146                 esac
16147                 echo "Prototype: $try" ;;
16148         esac
16149         ;;
16150         *)      case "$usethreads" in
16151                 define) echo "srandom_r has no prototype, not using it." >&4 ;;
16152                 esac
16153                 d_srandom_r=undef
16154                 srandom_r_proto=0
16155                 ;;
16156         esac
16157         ;;
16158 *)      srandom_r_proto=0
16159         ;;
16160 esac
16161
16162 : see if prototype for setresgid is available
16163 echo " "
16164 set d_sresgproto setresgid $i_unistd unistd.h
16165 eval $hasproto
16166
16167 : see if prototype for setresuid is available
16168 echo " "
16169 set d_sresuproto setresuid $i_unistd unistd.h
16170 eval $hasproto
16171
16172 : see if sys/stat.h is available
16173 set sys/stat.h i_sysstat
16174 eval $inhdr
16175
16176
16177 : see if stat knows about block sizes
16178 echo " "
16179 echo "Checking to see if your struct stat has st_blocks field..." >&4
16180 set d_statblks stat st_blocks $i_sysstat sys/stat.h
16181 eval $hasfield
16182
16183
16184 : see if this is a sys/vfs.h system
16185 set sys/vfs.h i_sysvfs
16186 eval $inhdr
16187
16188
16189 : see if this is a sys/statfs.h system
16190 set sys/statfs.h i_sysstatfs
16191 eval $inhdr
16192
16193
16194 echo " "
16195 echo "Checking to see if your system supports struct statfs..." >&4
16196 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
16197 eval $hasstruct
16198 case "$d_statfs_s" in
16199 "$define")      echo "Yes, it does."   ;;
16200 *)              echo "No, it doesn't." ;;
16201 esac
16202
16203
16204
16205 : see if struct statfs knows about f_flags
16206 case "$d_statfs_s" in
16207 define) 
16208         echo " "
16209         echo "Checking to see if your struct statfs has f_flags field..." >&4
16210         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
16211         eval $hasfield
16212         ;;
16213 *)      val="$undef"
16214         set d_statfs_f_flags
16215         eval $setvar
16216         ;;
16217 esac
16218 case "$d_statfs_f_flags" in
16219 "$define")      echo "Yes, it does."   ;;
16220 *)              echo "No, it doesn't." ;;
16221 esac
16222
16223 $cat >&4 <<EOM
16224 Checking how to access stdio streams by file descriptor number...
16225 EOM
16226 case "$stdio_stream_array" in
16227 '')     $cat >try.c <<EOCP
16228 #include <stdio.h>
16229 int main() {
16230   if (&STDIO_STREAM_ARRAY[fileno(stdin)] == stdin)
16231     printf("yes\n");
16232 }
16233 EOCP
16234         for s in _iob __iob __sF
16235         do
16236                 set try -DSTDIO_STREAM_ARRAY=$s
16237                 if eval $compile; then
16238                         case "`$run ./try`" in
16239                         yes)    stdio_stream_array=$s; break ;;
16240                         esac
16241                 fi
16242         done
16243         $rm -f try.* try$exe_ext
16244 esac
16245 case "$stdio_stream_array" in
16246 '')     $cat >&4 <<EOM
16247 I can't figure out how to access stdio streams by file descriptor number.
16248 EOM
16249         d_stdio_stream_array="$undef"
16250         ;;
16251 *)      $cat >&4 <<EOM
16252 You can access stdio streams by file descriptor number by the $stdio_stream_array array.
16253 EOM
16254         d_stdio_stream_array="$define"
16255         ;;
16256 esac
16257
16258 : see if strcoll exists
16259 set strcoll d_strcoll
16260 eval $inlibc
16261
16262 : check for structure copying
16263 echo " "
16264 echo "Checking to see if your C compiler can copy structs..." >&4
16265 $cat >try.c <<'EOCP'
16266 int main()
16267 {
16268         struct blurfl {
16269                 int dyick;
16270         } foo, bar;
16271
16272         foo = bar;
16273 }
16274 EOCP
16275 if $cc -c try.c >/dev/null 2>&1 ; then
16276         val="$define"
16277         echo "Yup, it can."
16278 else
16279         val="$undef"
16280         echo "Nope, it can't."
16281 fi
16282 set d_strctcpy
16283 eval $setvar
16284 $rm -f try.*
16285
16286 : see if strerror and/or sys_errlist[] exist
16287 echo " "
16288 if test "X$d_strerror" = X -o "X$d_syserrlst" = X; then
16289     if set strerror val -f d_strerror; eval $csym; $val; then
16290                 echo 'strerror() found.' >&4
16291                 d_strerror="$define"
16292                 d_strerrm='strerror(e)'
16293                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
16294                         echo "(You also have sys_errlist[], so we could roll our own strerror.)" 
16295                         d_syserrlst="$define"
16296                 else
16297                         echo "(Since you don't have sys_errlist[], sterror() is welcome.)"
16298                         d_syserrlst="$undef"
16299                 fi
16300     elif xxx=`./findhdr string.h`; test "$xxx" || xxx=`./findhdr strings.h`; \
16301                         $contains '#[   ]*define.*strerror' "$xxx" >/dev/null 2>&1; then
16302                 echo 'strerror() found in string header.' >&4
16303                 d_strerror="$define"
16304                 d_strerrm='strerror(e)'
16305                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
16306                         echo "(Most probably, strerror() uses sys_errlist[] for descriptions.)"
16307                                 d_syserrlst="$define"
16308                 else
16309                         echo "(You don't appear to have any sys_errlist[], how can this be?)"
16310                         d_syserrlst="$undef"
16311                 fi
16312     elif set sys_errlist val -a d_syserrlst; eval $csym; $val; then
16313                 echo "strerror() not found, but you have sys_errlist[] so we'll use that." >&4
16314                 d_strerror="$undef"
16315                 d_syserrlst="$define"
16316                 d_strerrm='((e)<0||(e)>=sys_nerr?"unknown":sys_errlist[e])'
16317     else
16318                 echo 'strerror() and sys_errlist[] NOT found.' >&4
16319                 d_strerror="$undef"
16320                 d_syserrlst="$undef"
16321                 d_strerrm='"unknown"'
16322     fi
16323 fi
16324
16325 : see if strerror_r exists
16326 set strerror_r d_strerror_r
16327 eval $inlibc
16328 case "$d_strerror_r" in
16329 "$define")
16330         hdrs="$i_systypes sys/types.h define stdio.h $i_string string.h"
16331         case "$d_strerror_r_proto:$usethreads" in
16332         ":define")      d_strerror_r_proto=define
16333                 set d_strerror_r_proto strerror_r $hdrs
16334                 eval $hasproto ;;
16335         *)      ;;
16336         esac
16337         case "$d_strerror_r_proto" in
16338         define)
16339         case "$strerror_r_proto" in
16340         ''|0) try='int strerror_r(int, char*, size_t);'
16341         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBW ;;
16342         esac
16343         case "$strerror_r_proto" in
16344         ''|0) try='int strerror_r(int, char*, int);'
16345         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBI ;;
16346         esac
16347         case "$strerror_r_proto" in
16348         ''|0) try='char* strerror_r(int, char*, size_t);'
16349         ./protochk "extern $try" $hdrs && strerror_r_proto=B_IBW ;;
16350         esac
16351         case "$strerror_r_proto" in
16352         ''|0)   d_strerror_r=undef
16353                 strerror_r_proto=0
16354                 echo "Disabling strerror_r, cannot determine prototype." >&4 ;;
16355         * )     case "$strerror_r_proto" in
16356                 REENTRANT_PROTO*) ;;
16357                 *) strerror_r_proto="REENTRANT_PROTO_$strerror_r_proto" ;;
16358                 esac
16359                 echo "Prototype: $try" ;;
16360         esac
16361         ;;
16362         *)      case "$usethreads" in
16363                 define) echo "strerror_r has no prototype, not using it." >&4 ;;
16364                 esac
16365                 d_strerror_r=undef
16366                 strerror_r_proto=0
16367                 ;;
16368         esac
16369         ;;
16370 *)      strerror_r_proto=0
16371         ;;
16372 esac
16373
16374 : see if strftime exists
16375 set strftime d_strftime
16376 eval $inlibc
16377
16378 : see if strtod exists
16379 set strtod d_strtod
16380 eval $inlibc
16381
16382 : see if strtol exists
16383 set strtol d_strtol
16384 eval $inlibc
16385
16386 : see if strtold exists
16387 set strtold d_strtold
16388 eval $inlibc
16389
16390 : see if strtoll exists
16391 set strtoll d_strtoll
16392 eval $inlibc
16393
16394 case "$d_longlong-$d_strtoll" in
16395 "$define-$define")
16396         $cat <<EOM
16397 Checking whether your strtoll() works okay...
16398 EOM
16399         $cat >try.c <<'EOCP'
16400 #include <errno.h>
16401 #ifdef __hpux
16402 #define strtoll __strtoll
16403 #endif
16404 #ifdef __EMX__
16405 #define strtoll _strtoll
16406 #endif
16407 #include <stdio.h>
16408 extern long long int strtoll(char *s, char **, int); 
16409 static int bad = 0;
16410 int check(char *s, long long ell, int een) {
16411         long long gll;
16412         errno = 0;
16413         gll = strtoll(s, 0, 10);
16414         if (!((gll == ell) && (errno == een)))
16415                 bad++;
16416 }
16417 int main() {
16418         check(" 1",                                      1LL, 0);
16419         check(" 0",                                      0LL, 0);
16420         check("-1",                                     -1LL, 0);
16421         check("-9223372036854775808", -9223372036854775808LL, 0);
16422         check("-9223372036854775808", -9223372036854775808LL, 0);
16423         check(" 9223372036854775807",  9223372036854775807LL, 0);
16424         check("-9223372036854775808", -9223372036854775808LL, 0);
16425         check(" 9223372036854775808",  9223372036854775807LL, ERANGE);
16426         check("-9223372036854775809", -9223372036854775808LL, ERANGE);
16427         if (!bad)
16428                 printf("ok\n");
16429 }
16430 EOCP
16431         set try
16432         if eval $compile; then
16433                 yyy=`$run ./try`
16434                 case "$yyy" in
16435                 ok) echo "Your strtoll() seems to be working okay." ;;
16436                 *) cat <<EOM >&4
16437 Your strtoll() doesn't seem to be working okay.
16438 EOM
16439                    d_strtoll="$undef"
16440                    ;;
16441                 esac
16442         else
16443                 echo "(I can't seem to compile the test program--assuming it doesn't)"
16444                 d_strtoll="$undef"
16445         fi
16446         ;;
16447 esac
16448
16449 : see if strtoq exists
16450 set strtoq d_strtoq
16451 eval $inlibc
16452
16453 : see if strtoul exists
16454 set strtoul d_strtoul
16455 eval $inlibc
16456
16457 case "$d_strtoul" in
16458 "$define")
16459         $cat <<EOM
16460 Checking whether your strtoul() works okay...
16461 EOM
16462         $cat >try.c <<'EOCP'
16463 #include <errno.h>
16464 #include <stdio.h>
16465 extern unsigned long int strtoul(char *s, char **, int); 
16466 static int bad = 0;
16467 void check(char *s, unsigned long eul, int een) {
16468         unsigned long gul;
16469         errno = 0;
16470         gul = strtoul(s, 0, 10);
16471         if (!((gul == eul) && (errno == een)))
16472                 bad++;
16473 }
16474 int main() {
16475         check(" 1", 1L, 0);
16476         check(" 0", 0L, 0);
16477 EOCP
16478         case "$longsize" in
16479         8)
16480             $cat >>try.c <<'EOCP'
16481         check("18446744073709551615", 18446744073709551615UL, 0);
16482         check("18446744073709551616", 18446744073709551615UL, ERANGE);
16483 #if 0 /* strtoul() for /^-/ strings is undefined. */
16484         check("-1", 18446744073709551615UL, 0);
16485         check("-18446744073709551614", 2, 0);
16486         check("-18446744073709551615", 1, 0);
16487         check("-18446744073709551616", 18446744073709551615UL, ERANGE);
16488         check("-18446744073709551617", 18446744073709551615UL, ERANGE);
16489 #endif
16490 EOCP
16491                 ;;
16492         4)
16493                     $cat >>try.c <<'EOCP'
16494         check("4294967295", 4294967295UL, 0);
16495         check("4294967296", 4294967295UL, ERANGE);
16496 #if 0 /* strtoul() for /^-/ strings is undefined. */
16497         check("-1", 4294967295UL, 0);
16498         check("-4294967294", 2, 0);
16499         check("-4294967295", 1, 0);
16500         check("-4294967296", 4294967295UL, ERANGE);
16501         check("-4294967297", 4294967295UL, ERANGE);
16502 #endif
16503 EOCP
16504                 ;;
16505         *)
16506 : Should we write these tests to be more portable by sprintf-ing
16507 : ~0 and then manipulating that char string as input for strtol?
16508                 ;;
16509         esac
16510         $cat >>try.c <<'EOCP'
16511         if (!bad)
16512                 printf("ok\n");
16513         return 0;
16514 }
16515 EOCP
16516         set try
16517         if eval $compile; then
16518                 case "`$run ./try`" in
16519                 ok) echo "Your strtoul() seems to be working okay." ;;
16520                 *) cat <<EOM >&4
16521 Your strtoul() doesn't seem to be working okay.
16522 EOM
16523                    d_strtoul="$undef"
16524                    ;;
16525                 esac
16526         fi
16527         ;;
16528 esac
16529
16530 : see if strtoull exists
16531 set strtoull d_strtoull
16532 eval $inlibc
16533
16534 case "$d_longlong-$d_strtoull" in
16535 "$define-$define")
16536         $cat <<EOM
16537 Checking whether your strtoull() works okay...
16538 EOM
16539         $cat >try.c <<'EOCP'
16540 #include <errno.h>
16541 #ifdef __hpux
16542 #define strtoull __strtoull
16543 #endif
16544 #include <stdio.h>
16545 extern unsigned long long int strtoull(char *s, char **, int); 
16546 static int bad = 0;
16547 int check(char *s, long long eull, int een) {
16548         long long gull;
16549         errno = 0;
16550         gull = strtoull(s, 0, 10);
16551         if (!((gull == eull) && (errno == een)))
16552                 bad++;
16553 }
16554 int main() {
16555         check(" 1",                                        1LL, 0);
16556         check(" 0",                                        0LL, 0);
16557         check("18446744073709551615",  18446744073709551615ULL, 0);
16558         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
16559 #if 0 /* strtoull() for /^-/ strings is undefined. */
16560         check("-1",                    18446744073709551615ULL, 0);
16561         check("-18446744073709551614",                     2LL, 0);
16562         check("-18446744073709551615",                     1LL, 0);
16563         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
16564         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
16565 #endif
16566         if (!bad)
16567                 printf("ok\n");
16568 }
16569 EOCP
16570         set try
16571         if eval $compile; then
16572                 case "`$run ./try`" in
16573                 ok) echo "Your strtoull() seems to be working okay." ;;
16574                 *) cat <<EOM >&4
16575 Your strtoull() doesn't seem to be working okay.
16576 EOM
16577                    d_strtoull="$undef"
16578                    ;;
16579                 esac
16580         fi
16581         ;;
16582 esac
16583
16584 : see if strtouq exists
16585 set strtouq d_strtouq
16586 eval $inlibc
16587
16588 case "$d_strtouq" in
16589 "$define")
16590         $cat <<EOM
16591 Checking whether your strtouq() works okay...
16592 EOM
16593         $cat >try.c <<'EOCP'
16594 #include <errno.h>
16595 #include <stdio.h>
16596 extern unsigned long long int strtouq(char *s, char **, int); 
16597 static int bad = 0;
16598 void check(char *s, unsigned long long eull, int een) {
16599         unsigned long long gull;
16600         errno = 0;
16601         gull = strtouq(s, 0, 10);
16602         if (!((gull == eull) && (errno == een)))
16603                 bad++;
16604 }
16605 int main() {
16606         check(" 1",                                        1LL, 0);
16607         check(" 0",                                        0LL, 0);
16608         check("18446744073709551615",  18446744073709551615ULL, 0);
16609         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
16610 #if 0 /* strtouq() for /^-/ strings is undefined. */
16611         check("-1",                    18446744073709551615ULL, 0);
16612         check("-18446744073709551614",                     2LL, 0);
16613         check("-18446744073709551615",                     1LL, 0);
16614         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
16615         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
16616 #endif
16617         if (!bad)
16618                 printf("ok\n");
16619         return 0;
16620 }
16621 EOCP
16622         set try
16623         if eval $compile; then
16624                 case "`$run ./try`" in
16625                 ok) echo "Your strtouq() seems to be working okay." ;;
16626                 *) cat <<EOM >&4
16627 Your strtouq() doesn't seem to be working okay.
16628 EOM
16629                    d_strtouq="$undef"
16630                    ;;
16631                 esac
16632         fi
16633         ;;
16634 esac
16635
16636 : see if strxfrm exists
16637 set strxfrm d_strxfrm
16638 eval $inlibc
16639
16640 : see if symlink exists
16641 set symlink d_symlink
16642 eval $inlibc
16643
16644 : see if syscall exists
16645 set syscall d_syscall
16646 eval $inlibc
16647
16648 : see if prototype for syscall is available
16649 echo " "
16650 set d_syscallproto syscall $i_unistd unistd.h
16651 eval $hasproto
16652
16653 : see if sysconf exists
16654 set sysconf d_sysconf
16655 eval $inlibc
16656
16657 : see if system exists
16658 set system d_system
16659 eval $inlibc
16660
16661 : see if tcgetpgrp exists
16662 set tcgetpgrp d_tcgetpgrp
16663 eval $inlibc
16664
16665 : see if tcsetpgrp exists
16666 set tcsetpgrp d_tcsetpgrp
16667 eval $inlibc
16668
16669 : see if prototype for telldir is available
16670 echo " "
16671 set d_telldirproto telldir $i_systypes sys/types.h $i_dirent dirent.h
16672 eval $hasproto
16673
16674 : see if time exists
16675 echo " "
16676 if test "X$d_time" = X -o X"$timetype" = X; then
16677     if set time val -f d_time; eval $csym; $val; then
16678                 echo 'time() found.' >&4
16679                 val="$define"
16680                 rp="What is the type returned by time() on this system?"
16681                 set time_t timetype long stdio.h sys/types.h
16682                 eval $typedef_ask
16683     else
16684                 echo 'time() not found, hope that will do.' >&4
16685                 val="$undef"
16686                 timetype='int';
16687     fi
16688     set d_time
16689     eval $setvar
16690 fi
16691
16692 : see if this is a sys/times.h system
16693 set sys/times.h i_systimes
16694 eval $inhdr
16695
16696 : see if times exists
16697 echo " "
16698 if set times val -f d_times; eval $csym; $val; then
16699         echo 'times() found.' >&4
16700         d_times="$define"
16701         inc=''
16702         case "$i_systimes" in
16703         "$define") inc='sys/times.h';;
16704         esac
16705         rp="What is the type returned by times() on this system?"
16706         set clock_t clocktype long stdio.h sys/types.h $inc
16707         eval $typedef_ask
16708 else
16709         echo 'times() NOT found, hope that will do.' >&4
16710         d_times="$undef"
16711         clocktype='int'
16712 fi
16713
16714 : see if tmpnam_r exists
16715 set tmpnam_r d_tmpnam_r
16716 eval $inlibc
16717 case "$d_tmpnam_r" in
16718 "$define")
16719         hdrs="$i_systypes sys/types.h define stdio.h "
16720         case "$d_tmpnam_r_proto:$usethreads" in
16721         ":define")      d_tmpnam_r_proto=define
16722                 set d_tmpnam_r_proto tmpnam_r $hdrs
16723                 eval $hasproto ;;
16724         *)      ;;
16725         esac
16726         case "$d_tmpnam_r_proto" in
16727         define)
16728         case "$tmpnam_r_proto" in
16729         ''|0) try='char* tmpnam_r(char*);'
16730         ./protochk "extern $try" $hdrs && tmpnam_r_proto=B_B ;;
16731         esac
16732         case "$tmpnam_r_proto" in
16733         ''|0)   d_tmpnam_r=undef
16734                 tmpnam_r_proto=0
16735                 echo "Disabling tmpnam_r, cannot determine prototype." >&4 ;;
16736         * )     case "$tmpnam_r_proto" in
16737                 REENTRANT_PROTO*) ;;
16738                 *) tmpnam_r_proto="REENTRANT_PROTO_$tmpnam_r_proto" ;;
16739                 esac
16740                 echo "Prototype: $try" ;;
16741         esac
16742         ;;
16743         *)      case "$usethreads" in
16744                 define) echo "tmpnam_r has no prototype, not using it." >&4 ;;
16745                 esac
16746                 d_tmpnam_r=undef
16747                 tmpnam_r_proto=0
16748                 ;;
16749         esac
16750         ;;
16751 *)      tmpnam_r_proto=0
16752         ;;
16753 esac
16754
16755 : see if truncate exists
16756 set truncate d_truncate
16757 eval $inlibc
16758
16759 : see if ttyname_r exists
16760 set ttyname_r d_ttyname_r
16761 eval $inlibc
16762 case "$d_ttyname_r" in
16763 "$define")
16764         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
16765         case "$d_ttyname_r_proto:$usethreads" in
16766         ":define")      d_ttyname_r_proto=define
16767                 set d_ttyname_r_proto ttyname_r $hdrs
16768                 eval $hasproto ;;
16769         *)      ;;
16770         esac
16771         case "$d_ttyname_r_proto" in
16772         define)
16773         case "$ttyname_r_proto" in
16774         ''|0) try='int ttyname_r(int, char*, size_t);'
16775         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBW ;;
16776         esac
16777         case "$ttyname_r_proto" in
16778         ''|0) try='int ttyname_r(int, char*, int);'
16779         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBI ;;
16780         esac
16781         case "$ttyname_r_proto" in
16782         ''|0) try='char* ttyname_r(int, char*, int);'
16783         ./protochk "extern $try" $hdrs && ttyname_r_proto=B_IBI ;;
16784         esac
16785         case "$ttyname_r_proto" in
16786         ''|0)   d_ttyname_r=undef
16787                 ttyname_r_proto=0
16788                 echo "Disabling ttyname_r, cannot determine prototype." >&4 ;;
16789         * )     case "$ttyname_r_proto" in
16790                 REENTRANT_PROTO*) ;;
16791                 *) ttyname_r_proto="REENTRANT_PROTO_$ttyname_r_proto" ;;
16792                 esac
16793                 echo "Prototype: $try" ;;
16794         esac
16795         ;;
16796         *)      case "$usethreads" in
16797                 define) echo "ttyname_r has no prototype, not using it." >&4 ;;
16798                 esac
16799                 d_ttyname_r=undef
16800                 ttyname_r_proto=0
16801                 ;;
16802         esac
16803         ;;
16804 *)      ttyname_r_proto=0
16805         ;;
16806 esac
16807
16808 : see if tzname[] exists
16809 echo " "
16810 if set tzname val -a d_tzname; eval $csym; $val; then
16811         val="$define"
16812         echo 'tzname[] found.' >&4
16813 else
16814         val="$undef"
16815         echo 'tzname[] NOT found.' >&4
16816 fi
16817 set d_tzname
16818 eval $setvar
16819
16820 case "$osname" in
16821 next|rhapsody|darwin) multiarch="$define" ;;
16822 esac
16823 case "$multiarch" in
16824 ''|[nN]*) multiarch="$undef" ;;
16825 esac
16826
16827 : check for ordering of bytes in a UV
16828 echo " "
16829 case "$usecrosscompile$multiarch" in
16830 *$define*)
16831         $cat <<EOM
16832 You seem to be either cross-compiling or doing a multiarchitecture build,
16833 skipping the byteorder check.
16834
16835 EOM
16836         byteorder='ffff'
16837         ;;
16838 *)
16839         case "$byteorder" in
16840         '')
16841                 $cat <<'EOM'
16842 In the following, larger digits indicate more significance.  A big-endian
16843 machine like a Pyramid or a Motorola 680?0 chip will come out to 4321. A
16844 little-endian machine like a Vax or an Intel 80?86 chip would be 1234. Other
16845 machines may have weird orders like 3412.  A Cray will report 87654321,
16846 an Alpha will report 12345678. If the test program works the default is
16847 probably right.
16848 I'm now running the test program...
16849 EOM
16850                 $cat >try.c <<EOCP
16851 #include <stdio.h>
16852 #$i_stdlib I_STDLIB
16853 #ifdef I_STDLIB
16854 #include <stdlib.h>
16855 #endif
16856 #include <sys/types.h>
16857 typedef $uvtype UV;
16858 int main()
16859 {
16860         int i;
16861         union {
16862                 UV l;
16863                 char c[$uvsize];
16864         } u;
16865
16866         if ($uvsize > 4)
16867                 u.l = (((UV)0x08070605) << 32) | (UV)0x04030201;
16868         else
16869                 u.l = (UV)0x04030201;
16870         for (i = 0; i < $uvsize; i++)
16871                 printf("%c", u.c[i]+'0');
16872         printf("\n");
16873         exit(0);
16874 }
16875 EOCP
16876                 xxx_prompt=y
16877                 set try
16878                 if eval $compile && ./try > /dev/null; then
16879                         dflt=`$run ./try`
16880                         case "$dflt" in
16881                         [1-4][1-4][1-4][1-4]|12345678|87654321)
16882                                 echo "(The test program ran ok.)"
16883                                 echo "byteorder=$dflt"
16884                                 xxx_prompt=n
16885                         ;;
16886                         ????|????????) echo "(The test program ran ok.)" ;;
16887                         *) echo "(The test program didn't run right for some reason.)" ;;
16888                         esac
16889                 else
16890                         dflt='4321'
16891                         cat <<'EOM'
16892 (I can't seem to compile the test program.  Guessing big-endian...)
16893 EOM
16894                 fi
16895                 case "$xxx_prompt" in
16896                 y)
16897                         rp="What is the order of bytes in $uvtype?"
16898                         . ./myread
16899                         byteorder="$ans"
16900                         ;;
16901                 *)      byteorder=$dflt
16902                         ;;
16903                 esac
16904                 ;;
16905         esac
16906         $rm -f try.c try
16907         ;;
16908 esac
16909
16910
16911 $cat <<EOM
16912
16913 Checking to see whether you can access character data unalignedly...
16914 EOM
16915 case "$d_u32align" in
16916 '')   $cat >try.c <<EOCP
16917 #include <stdio.h>
16918 #$i_stdlib I_STDLIB
16919 #ifdef I_STDLIB
16920 #include <stdlib.h>
16921 #endif
16922 #define U32 $u32type
16923 #define BYTEORDER 0x$byteorder
16924 #define U8 $u8type
16925 #include <signal.h>
16926 #ifdef SIGBUS
16927 $signal_t bletch(s) int s; { exit(4); }
16928 #endif
16929 int main() {
16930 #if BYTEORDER == 0x1234 || BYTEORDER == 0x4321
16931     U8 buf[8];
16932     U32 *up;
16933     int i;
16934
16935     if (sizeof(U32) != 4) {
16936         printf("sizeof(U32) is not 4, but %d\n", sizeof(U32));
16937         exit(1);
16938     }
16939
16940     fflush(stdout);
16941
16942 #ifdef SIGBUS
16943     signal(SIGBUS, bletch);
16944 #endif
16945
16946     buf[0] = 0;
16947     buf[1] = 0;
16948     buf[2] = 0;
16949     buf[3] = 1;
16950     buf[5] = 0;
16951     buf[6] = 0;
16952     buf[7] = 0;
16953     buf[8] = 1;
16954
16955     for (i = 0; i < 4; i++) {
16956         up = (U32*)(buf + i);
16957         if (! ((*up == 1 << (8*i)) ||   /* big-endian */
16958                (*up == 1 << (8*(3-i)))  /* little-endian */
16959               )
16960            )
16961         {
16962             printf("read failed (%x)\n", *up);
16963             exit(2);
16964         }
16965     }
16966
16967     /* write test */
16968     for (i = 0; i < 4; i++) {
16969         up = (U32*)(buf + i);
16970         *up = 0xBeef;
16971         if (*up != 0xBeef) {
16972             printf("write failed (%x)\n", *up);
16973             exit(3);
16974         }
16975     }
16976
16977     exit(0);
16978 #else
16979     printf("1\n");
16980     exit(1);
16981 #endif
16982     return 0;
16983 }
16984 EOCP
16985 set try
16986 if eval $compile_ok; then
16987         echo "(Testing for character data alignment may crash the test.  That's okay.)" >&4
16988         $run ./try 2>&1 >/dev/null
16989         case "$?" in
16990         0)      cat >&4 <<EOM
16991 You can access character data pretty unalignedly.
16992 EOM
16993                 d_u32align="$undef"
16994                 ;;
16995         *)      cat >&4 <<EOM
16996 It seems that you must access character data in an aligned manner.
16997 EOM
16998                 d_u32align="$define"
16999                 ;;
17000         esac
17001 else
17002         rp='Can you access character data at unaligned addresses?'
17003         dflt='n'
17004         . ./myread
17005         case "$ans" in
17006         [yY]*)  d_u32align="$undef"  ;;
17007         *)      d_u32align="$define" ;;
17008         esac
17009 fi
17010 $rm -f core core.try.* try.core
17011 ;;
17012 esac
17013
17014 : see if ualarm exists
17015 set ualarm d_ualarm
17016 eval $inlibc
17017
17018 : see if umask exists
17019 set umask d_umask
17020 eval $inlibc
17021
17022 : see if unordered exists
17023 set unordered d_unordered
17024 eval $inlibc
17025
17026 : see if usleep exists
17027 set usleep d_usleep
17028 eval $inlibc
17029
17030 : see if prototype for usleep is available
17031 echo " "
17032 set d_usleepproto usleep $i_unistd unistd.h
17033 eval $hasproto
17034
17035 : see if ustat exists
17036 set ustat d_ustat
17037 eval $inlibc
17038
17039 : backward compatibility for d_hvfork
17040 if test X$d_hvfork != X; then
17041         d_vfork="$d_hvfork"
17042         d_hvfork=''
17043 fi
17044 : see if there is a vfork
17045 val=''
17046 set vfork val
17047 eval $inlibc
17048
17049 : Ok, but do we want to use it. vfork is reportedly unreliable in 
17050 : perl on Solaris 2.x, and probably elsewhere.
17051 case "$val" in
17052 $define)
17053         echo " "
17054         case "$usevfork" in
17055         false) dflt='n';;
17056         *) dflt='y';;
17057         esac
17058         cat <<'EOM'
17059  
17060 Perl can only use a vfork() that doesn't suffer from strict
17061 restrictions on calling functions or modifying global data in
17062 the child.  For example, glibc-2.1 contains such a vfork()
17063 that is unsuitable.  If your system provides a proper fork()
17064 call, chances are that you do NOT want perl to use vfork().
17065
17066 EOM
17067         rp="Do you still want to use vfork()?"
17068         . ./myread
17069         case "$ans" in
17070         y|Y) ;;
17071         *)
17072                 echo "Ok, we won't use vfork()."
17073                 val="$undef"
17074                 ;;
17075         esac
17076         ;;
17077 esac
17078 set d_vfork
17079 eval $setvar
17080 case "$d_vfork" in
17081 $define) usevfork='true';;
17082 *) usevfork='false';;
17083 esac
17084
17085 : see if closedir exists
17086 set closedir d_closedir
17087 eval $inlibc
17088
17089 case "$d_closedir" in
17090 "$define")
17091         echo " "
17092         echo "Checking whether closedir() returns a status..." >&4
17093         cat > try.c <<EOM
17094 #$i_dirent I_DIRENT             /**/
17095 #$i_sysdir I_SYS_DIR            /**/
17096 #$i_sysndir I_SYS_NDIR          /**/
17097 #$i_systypes I_SYS_TYPES        /**/
17098
17099 #if defined(I_SYS_TYPES)
17100 #include <sys/types.h>
17101 #endif
17102 #if defined(I_DIRENT)
17103 #include <dirent.h>
17104 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
17105 #include <sys/dir.h>
17106 #endif
17107 #else
17108 #ifdef I_SYS_NDIR
17109 #include <sys/ndir.h>
17110 #else
17111 #ifdef I_SYS_DIR
17112 #ifdef hp9000s500
17113 #include <ndir.h>       /* may be wrong in the future */
17114 #else
17115 #include <sys/dir.h>
17116 #endif
17117 #endif
17118 #endif
17119 #endif 
17120 int main() { return closedir(opendir(".")); }
17121 EOM
17122         set try
17123         if eval $compile_ok; then
17124                 if $run ./try > /dev/null 2>&1 ; then
17125                         echo "Yes, it does."
17126                         val="$undef"
17127                 else
17128                         echo "No, it doesn't."
17129                         val="$define"
17130                 fi
17131         else
17132                 echo "(I can't seem to compile the test program--assuming it doesn't)"
17133                 val="$define"
17134         fi
17135         ;;
17136 *)
17137         val="$undef";
17138         ;;
17139 esac
17140 set d_void_closedir
17141 eval $setvar
17142 $rm -f try try.*
17143 : see if there is a wait4
17144 set wait4 d_wait4
17145 eval $inlibc
17146
17147 : see if waitpid exists
17148 set waitpid d_waitpid
17149 eval $inlibc
17150
17151 : see if wcstombs exists
17152 set wcstombs d_wcstombs
17153 eval $inlibc
17154
17155 : see if wctomb exists
17156 set wctomb d_wctomb
17157 eval $inlibc
17158
17159 : see if writev exists
17160 set writev d_writev
17161 eval $inlibc
17162
17163 : preserve RCS keywords in files with variable substitution, grrr
17164 Date='$Date'
17165 Id='$Id'
17166 Log='$Log'
17167 RCSfile='$RCSfile'
17168 Revision='$Revision'
17169
17170 : check for alignment requirements
17171 echo " "
17172 case "$usecrosscompile$multiarch" in
17173 *$define*)
17174         $cat <<EOM
17175 You seem to be either cross-compiling or doing a multiarchitecture build,
17176 skipping the memory alignment check.
17177
17178 EOM
17179         case "$alignbytes" in
17180         '') alignbytes=8 ;;
17181         esac
17182         ;;
17183 *)
17184         case "$alignbytes" in
17185         '') echo "Checking alignment constraints..." >&4
17186                 if $test "X$uselongdouble" = Xdefine -a "X$d_longdbl" = Xdefine; then
17187                         $cat >try.c <<'EOCP'
17188 typedef long double NV;
17189 EOCP
17190                 else
17191                         $cat >try.c <<'EOCP'
17192 typedef double NV;
17193 EOCP
17194                 fi
17195                 $cat >>try.c <<'EOCP'
17196 #include <stdio.h>
17197 struct foobar {
17198         char foo;
17199         NV bar;
17200 } try_algn;
17201 int main()
17202 {
17203     printf("%d\n", (int)((char *)&try_algn.bar - (char *)&try_algn.foo));
17204     return(0);
17205 }
17206 EOCP
17207                 set try
17208                 if eval $compile_ok; then
17209                         dflt=`$run ./try`
17210                 else
17211                         dflt='8'
17212                         echo "(I can't seem to compile the test program...)"
17213                 fi
17214                 ;;
17215         *) dflt="$alignbytes"
17216                 ;;
17217         esac
17218         rp="Doubles must be aligned on a how-many-byte boundary?"
17219         . ./myread
17220         alignbytes="$ans"
17221         $rm -f try.c try
17222         ;;
17223 esac
17224
17225
17226 : set the base revision
17227 baserev=5.0
17228
17229 : how do we catenate cpp tokens here?
17230 echo " "
17231 echo "Checking to see how your cpp does stuff like catenate tokens..." >&4
17232 $cat >cpp_stuff.c <<'EOCP'
17233 #define RCAT(a,b)a/**/b
17234 #define ACAT(a,b)a ## b
17235 RCAT(Rei,ser)
17236 ACAT(Cir,cus)
17237 EOCP
17238 $cppstdin $cppflags $cppminus <cpp_stuff.c >cpp_stuff.out 2>&1
17239 if $contains 'Circus' cpp_stuff.out >/dev/null 2>&1; then
17240         echo "Oh!  Smells like ANSI's been here." >&4
17241         echo "We can catify or stringify, separately or together!"
17242         cpp_stuff=42
17243 elif $contains 'Reiser' cpp_stuff.out >/dev/null 2>&1; then
17244         echo "Ah, yes!  The good old days!" >&4
17245         echo "However, in the good old days we don't know how to stringify and"
17246         echo "catify at the same time."
17247         cpp_stuff=1
17248 else
17249         $cat >&4 <<EOM
17250 Hmm, I don't seem to be able to catenate tokens with your cpp.  You're going
17251 to have to edit the values of CAT[2-5] in config.h...
17252 EOM
17253         cpp_stuff="/* Help! How do we handle cpp_stuff? */*/"
17254 fi
17255 $rm -f cpp_stuff.*
17256
17257 : see if this is a db.h system
17258 set db.h i_db
17259 eval $inhdr
17260
17261 case "$i_db" in
17262 $define)
17263         : Check db version.
17264         echo " "
17265         echo "Checking Berkeley DB version ..." >&4
17266         $cat >try.c <<EOCP
17267 #$d_const HASCONST
17268 #ifndef HASCONST
17269 #define const
17270 #endif
17271 #include <sys/types.h>
17272 #include <stdio.h>
17273 #$i_stdlib I_STDLIB
17274 #ifdef I_STDLIB
17275 #include <stdlib.h>
17276 #endif
17277 #include <db.h>
17278 int main(int argc, char *argv[])
17279 {
17280 #ifdef DB_VERSION_MAJOR /* DB version >= 2 */
17281     int Major, Minor, Patch ;
17282     unsigned long Version ;
17283     (void)db_version(&Major, &Minor, &Patch) ;
17284     if (argc == 2) {
17285         printf("%d %d %d %d %d %d\n",
17286                DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH,
17287                Major, Minor, Patch);
17288         exit(0);
17289     }
17290     printf("You have Berkeley DB Version 2 or greater.\n");
17291
17292     printf("db.h is from Berkeley DB Version %d.%d.%d\n",
17293                 DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH);
17294     printf("libdb is from Berkeley DB Version %d.%d.%d\n",
17295                 Major, Minor, Patch) ;
17296
17297     /* check that db.h & libdb are compatible */
17298     if (DB_VERSION_MAJOR != Major || DB_VERSION_MINOR != Minor || DB_VERSION_PATCH != Patch) {
17299         printf("db.h and libdb are incompatible.\n") ;
17300         exit(3);        
17301     }
17302
17303     printf("db.h and libdb are compatible.\n") ;
17304
17305     Version = DB_VERSION_MAJOR * 1000000 + DB_VERSION_MINOR * 1000
17306                 + DB_VERSION_PATCH ;
17307
17308     /* needs to be >= 2.3.4 */
17309     if (Version < 2003004) {
17310     /* if (DB_VERSION_MAJOR == 2 && DB_VERSION_MINOR == 0 && DB_VERSION_PATCH < 5) { */
17311         printf("Perl needs Berkeley DB 2.3.4 or greater.\n") ;
17312         exit(2);        
17313     }
17314
17315     exit(0);
17316 #else
17317 #if defined(_DB_H_) && defined(BTREEMAGIC) && defined(HASHMAGIC)
17318     if (argc == 2) {
17319         printf("1 0 0\n");
17320         exit(0);
17321     }
17322     printf("You have Berkeley DB Version 1.\n");
17323     exit(0);    /* DB version < 2: the coast is clear. */
17324 #else
17325     exit(1);    /* <db.h> not Berkeley DB? */
17326 #endif
17327 #endif
17328 }
17329 EOCP
17330         set try
17331         if eval $compile_ok && $run ./try; then
17332                 echo 'Looks OK.' >&4
17333                 set `$run ./try 1`
17334                 db_version_major=$1
17335                 db_version_minor=$2
17336                 db_version_patch=$3
17337         else
17338                 echo "I can't use Berkeley DB with your <db.h>.  I'll disable Berkeley DB." >&4
17339                 i_db=$undef
17340                 case " $libs " in
17341                 *"-ldb "*)
17342                         : Remove db from list of libraries to use
17343                         echo "Removing unusable -ldb from library list" >&4
17344                         set `echo X $libs | $sed -e 's/-ldb / /' -e 's/-ldb$//'`
17345                         shift
17346                         libs="$*"
17347                         echo "libs = $libs" >&4
17348                         ;;
17349                 esac
17350         fi
17351         $rm -f try.*
17352         ;;
17353 esac
17354
17355 case "$i_db" in
17356 define)
17357         : Check the return type needed for hash 
17358         echo " "
17359         echo "Checking return type needed for hash for Berkeley DB ..." >&4
17360         $cat >try.c <<EOCP
17361 #$d_const HASCONST
17362 #ifndef HASCONST
17363 #define const
17364 #endif
17365 #include <sys/types.h>
17366 #include <db.h>
17367
17368 #ifndef DB_VERSION_MAJOR
17369 u_int32_t hash_cb (ptr, size)
17370 const void *ptr;
17371 size_t size;
17372 {
17373 }
17374 HASHINFO info;
17375 int main()
17376 {
17377         info.hash = hash_cb;
17378 }
17379 #endif
17380 EOCP
17381         if $cc $ccflags -c try.c >try.out 2>&1 ; then
17382                 if $contains warning try.out >>/dev/null 2>&1 ; then
17383                         db_hashtype='int'
17384                 else
17385                         db_hashtype='u_int32_t'
17386                 fi
17387         else
17388                 : XXX Maybe we should just give up here.
17389                 db_hashtype=u_int32_t
17390                 $cat try.out >&4
17391                 echo "Help:  I can't seem to compile the db test program." >&4
17392                 echo "Something's wrong, but I'll assume you use $db_hashtype." >&4
17393         fi
17394         $rm -f try.*
17395         echo "Your version of Berkeley DB uses $db_hashtype for hash."
17396         ;;
17397 *)      db_hashtype=u_int32_t
17398         ;;
17399 esac
17400 case "$i_db" in
17401 define)
17402         : Check the return type needed for prefix 
17403         echo " "
17404         echo "Checking return type needed for prefix for Berkeley DB ..." >&4
17405         cat >try.c <<EOCP
17406 #$d_const HASCONST
17407 #ifndef HASCONST
17408 #define const
17409 #endif
17410 #include <sys/types.h>
17411 #include <db.h>
17412
17413 #ifndef DB_VERSION_MAJOR
17414 size_t prefix_cb (key1, key2)
17415 const DBT *key1;
17416 const DBT *key2;
17417 {
17418 }
17419 BTREEINFO info;
17420 int main()
17421 {
17422         info.prefix = prefix_cb;
17423 }
17424 #endif
17425 EOCP
17426         if $cc $ccflags -c try.c  >try.out 2>&1 ; then
17427                 if $contains warning try.out >>/dev/null 2>&1 ; then
17428                         db_prefixtype='int'
17429                 else
17430                         db_prefixtype='size_t'
17431                 fi
17432         else
17433                 db_prefixtype='size_t'
17434                 : XXX Maybe we should just give up here.
17435                 $cat try.out >&4
17436                 echo "Help:  I can't seem to compile the db test program." >&4
17437                 echo "Something's wrong, but I'll assume you use $db_prefixtype." >&4
17438         fi
17439         $rm -f try.*
17440         echo "Your version of Berkeley DB uses $db_prefixtype for prefix."
17441         ;;
17442 *)      db_prefixtype='size_t'
17443         ;;
17444 esac
17445
17446
17447 : How can we generate normalized random numbers ?
17448 echo " "
17449 echo "Looking for a random number function..." >&4
17450 case "$randfunc" in
17451 '')
17452         if set drand48 val -f; eval $csym; $val; then
17453                 dflt="drand48"
17454                 echo "Good, found drand48()." >&4
17455         elif set random val -f; eval $csym; $val; then
17456                 dflt="random"
17457                 echo "OK, found random()." >&4
17458         else
17459                 dflt="rand"
17460                 echo "Yick, looks like I have to use rand()." >&4
17461         fi
17462         echo " "
17463         ;;
17464 *)
17465         dflt="$randfunc"
17466         ;;
17467 esac
17468 cont=true
17469
17470 case "$ccflags" in
17471 *-Dmy_rand=*|*-Dmy_srand=*)
17472         echo "Removing obsolete -Dmy_rand, -Dmy_srand, and -Drandbits from ccflags." >&4
17473         ccflags="`echo $ccflags | sed -e 's/-Dmy_rand=random/ /'`"
17474         ccflags="`echo $ccflags | sed -e 's/-Dmy_srand=srandom/ /'`"
17475         ccflags="`echo $ccflags | sed -e 's/-Drandbits=[0-9][0-9]*/ /'`"
17476         ;;
17477 esac
17478
17479 while $test "$cont"; do
17480         rp="Use which function to generate random numbers?"
17481         . ./myread
17482         if $test "$ans" = "$dflt"; then
17483                 : null
17484         else
17485                 randbits=''
17486         fi
17487         randfunc="$ans"
17488         if set $ans val -f; eval $csym; $val; then
17489                 cont=''
17490         else
17491                 dflt=y
17492                 rp="I cannot find function $ans. Use that name anyway?"
17493                 . ./myread
17494                 dflt=rand
17495                 case "$ans" in
17496                         [yY]*) cont='';;
17497                 esac
17498         fi
17499         case "$cont" in
17500         '')
17501                 case "$randfunc" in
17502                 drand48)
17503                         drand01="drand48()"
17504                         seedfunc="srand48"
17505                         randbits=48
17506                         randseedtype=long
17507                         ;;
17508                 rand|random)
17509                         case "$randbits" in
17510                         '')
17511 echo "Checking to see how many bits your $randfunc() function produces..." >&4
17512                                 $cat >try.c <<EOCP
17513 #$i_unistd I_UNISTD
17514 #$i_stdlib I_STDLIB
17515 #include <stdio.h>
17516 #ifdef I_UNISTD
17517 #  include <unistd.h>
17518 #endif
17519 #ifdef I_STDLIB
17520 #  include <stdlib.h>
17521 #endif
17522 int main()
17523 {
17524         register int i;
17525         register unsigned long tmp;
17526         register unsigned long max = 0L;
17527
17528         for (i = 1000; i; i--) {
17529                 tmp = (unsigned long) $randfunc();
17530                 if (tmp > max) max = tmp;
17531         }
17532         for (i = 0; max; i++)
17533                 max /= 2;
17534         printf("%d\n",i);
17535 }
17536 EOCP
17537                                 set try
17538                                 if eval $compile_ok; then
17539                                         dflt=`try`
17540                                 else
17541                                         dflt='?'
17542                                         echo "(I can't seem to compile the test program...)"
17543                                 fi
17544                                 ;;
17545                         *)
17546                                 dflt="$randbits"
17547                                 ;;
17548                         esac
17549                         rp="How many bits does your $randfunc() function produce?"
17550                         . ./myread
17551                         randbits="$ans"
17552                         $rm -f try.c try
17553                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
17554                         seedfunc="s$randfunc"
17555                         randseedtype=unsigned
17556                         ;;
17557                 *)
17558                         dflt="31"
17559                         rp="How many bits does your $randfunc() function produce?"
17560                         . ./myread
17561                         randbits="$ans"
17562                         seedfunc="s$randfunc"
17563                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
17564                         if set $seedfunc val -f; eval $csym; $val; then
17565                                 echo "(Using $seedfunc() to seed random generator)"
17566                         else
17567                                 echo "(Warning: no $seedfunc() to seed random generator)"
17568                                 seedfunc=rand
17569                         fi
17570                         randseedtype=unsigned
17571                         ;;
17572                 esac
17573                 ;;
17574         esac
17575 done
17576
17577 echo " "
17578 echo "Determining whether or not we are on an EBCDIC system..." >&4
17579 $cat >try.c <<'EOM'
17580 int main()
17581 {
17582   if ('M'==0xd4) return 0;
17583   return 1;
17584 }
17585 EOM
17586
17587 val=$undef
17588 set try
17589 if eval $compile_ok; then
17590         if $run ./try; then
17591                 echo "You seem to speak EBCDIC." >&4
17592                 val="$define"
17593         else
17594                 echo "Nope, no EBCDIC, probably ASCII or some ISO Latin. Or UTF-8." >&4
17595         fi
17596 else
17597         echo "I'm unable to compile the test program." >&4
17598         echo "I'll assume ASCII or some ISO Latin. Or UTF8." >&4
17599 fi
17600 $rm -f try try.*
17601 set ebcdic
17602 eval $setvar
17603
17604 echo " "
17605 $cat >&4 <<EOM
17606 Checking how to flush all pending stdio output...
17607 EOM
17608 # I only know how to find the first 32 possibly open files on SunOS.
17609 # See also hints/sunos_4_1.sh and util.c  --AD
17610 case "$osname" in
17611 sunos) $echo '#define PERL_FFLUSH_ALL_FOPEN_MAX 32' > try.c ;;
17612 esac
17613 $cat >>try.c <<EOCP
17614 #include <stdio.h>
17615 #$i_stdlib I_STDLIB
17616 #ifdef I_STDLIB
17617 #include <stdlib.h>
17618 #endif
17619 #$i_unistd I_UNISTD
17620 #ifdef I_UNISTD
17621 # include <unistd.h>
17622 #endif
17623 #$d_sysconf HAS_SYSCONF
17624 #$d_stdio_stream_array HAS_STDIO_STREAM_ARRAY
17625 #ifdef HAS_STDIO_STREAM_ARRAY
17626 # define STDIO_STREAM_ARRAY $stdio_stream_array
17627 #endif
17628 int main() {
17629   FILE* p;
17630   unlink("try.out");
17631   p = fopen("try.out", "w");
17632 #ifdef TRY_FPUTC
17633   fputc('x', p);
17634 #else
17635 # ifdef TRY_FPRINTF
17636   fprintf(p, "x");
17637 # endif
17638 #endif
17639 #ifdef TRY_FFLUSH_NULL
17640   fflush(NULL);
17641 #endif
17642 #ifdef TRY_FFLUSH_ALL
17643   {
17644     long open_max = -1;
17645 # ifdef PERL_FFLUSH_ALL_FOPEN_MAX
17646     open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
17647 # else
17648 #  if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
17649     open_max = sysconf(_SC_OPEN_MAX);
17650 #  else
17651 #   ifdef FOPEN_MAX
17652     open_max = FOPEN_MAX;
17653 #   else
17654 #    ifdef OPEN_MAX
17655     open_max = OPEN_MAX;
17656 #    else
17657 #     ifdef _NFILE
17658     open_max = _NFILE;
17659 #     endif
17660 #    endif
17661 #   endif
17662 #  endif
17663 # endif 
17664 # ifdef HAS_STDIO_STREAM_ARRAY
17665     if (open_max > 0) {
17666       long i;
17667       for (i = 0; i < open_max; i++)
17668             if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
17669                 STDIO_STREAM_ARRAY[i]._file < open_max &&
17670                 STDIO_STREAM_ARRAY[i]._flag)
17671                 fflush(&STDIO_STREAM_ARRAY[i]);
17672     }   
17673   }
17674 # endif
17675 #endif
17676   _exit(42);
17677 }
17678 EOCP
17679 : first we have to find out how _not_ to flush
17680 $to try.c
17681 if $test "X$fflushNULL" = X -o "X$fflushall" = X; then
17682     output=''
17683     set try -DTRY_FPUTC
17684     if eval $compile; then
17685             $run ./try 2>/dev/null
17686             code="$?"
17687             $from try.out
17688             if $test ! -s try.out -a "X$code" = X42; then
17689                 output=-DTRY_FPUTC
17690             fi
17691     fi
17692     case "$output" in
17693     '')
17694             set try -DTRY_FPRINTF
17695             if eval $compile; then
17696                     $run ./try 2>/dev/null
17697                     code="$?"
17698                     $from try.out
17699                     if $test ! -s try.out -a "X$code" = X42; then
17700                         output=-DTRY_FPRINTF
17701                     fi
17702             fi
17703         ;;
17704     esac
17705 fi
17706 : check for fflush NULL behaviour
17707 case "$fflushNULL" in
17708 '')     set try -DTRY_FFLUSH_NULL $output
17709         if eval $compile; then
17710                 $run ./try 2>/dev/null
17711                 code="$?"
17712                 $from try.out
17713                 if $test -s try.out -a "X$code" = X42; then
17714                         fflushNULL="`$cat try.out`"
17715                 else
17716                         if $test "X$code" != X42; then
17717                                 $cat >&4 <<EOM
17718 (If this test failed, don't worry, we'll try another method shortly.)
17719 EOM
17720                         fi
17721                 fi
17722         fi
17723         $rm -f core try.core core.try.*
17724         case "$fflushNULL" in
17725         x)      $cat >&4 <<EOM
17726 Your fflush(NULL) works okay for output streams.
17727 Let's see if it clobbers input pipes...
17728 EOM
17729 # As of mid-March 2000 all versions of Solaris appear to have a stdio
17730 # bug that improperly flushes the input end of pipes.  So we avoid the
17731 # autoflush on fork/system/exec support for now. :-(
17732 $cat >tryp.c <<EOCP
17733 #include <stdio.h>
17734 int
17735 main(int argc, char **argv)
17736 {
17737     char buf[1024];
17738     int i;
17739     char *bp = buf;
17740     while (1) {
17741         while ((i = getc(stdin)) != -1
17742                && (*bp++ = i) != '\n'
17743                && bp < &buf[1024])
17744         /* DO NOTHING */ ;
17745         *bp = '\0';
17746         fprintf(stdout, "%s", buf);
17747         fflush(NULL);
17748         if (i == -1)
17749             return 0;
17750         bp = buf;
17751     }
17752 }
17753 EOCP
17754                 fflushNULL="$define"
17755                 set tryp
17756                 if eval $compile; then
17757                     $rm -f tryp.out
17758                     $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
17759                     if cmp tryp.c tryp.out >/dev/null 2>&1; then
17760                        $cat >&4 <<EOM
17761 fflush(NULL) seems to behave okay with input streams.
17762 EOM
17763                         fflushNULL="$define"
17764                     else
17765                         $cat >&4 <<EOM
17766 Ouch, fflush(NULL) clobbers input pipes!  We will not use it.
17767 EOM
17768                         fflushNULL="$undef"
17769                     fi
17770                 fi
17771                 $rm -f core tryp.c tryp.core core.tryp.*
17772                 ;;
17773         '')     $cat >&4 <<EOM
17774 Your fflush(NULL) isn't working (contrary to ANSI C).
17775 EOM
17776                 fflushNULL="$undef"
17777                 ;;
17778         *)      $cat >&4 <<EOM
17779 Cannot figure out whether your fflush(NULL) works or not.
17780 I'm assuming it doesn't (contrary to ANSI C).
17781 EOM
17782                 fflushNULL="$undef"
17783                 ;;
17784         esac
17785         ;;
17786 $define|true|[yY]*)
17787         fflushNULL="$define"
17788         ;;
17789 *)
17790         fflushNULL="$undef"
17791         ;;
17792 esac
17793 : check explicit looping only if NULL did not work, and if the pipe
17794 : bug does not show up on an explicit flush too
17795 case "$fflushNULL" in
17796 "$undef")
17797         $cat >tryp.c <<EOCP
17798 #include <stdio.h>
17799 int
17800 main(int argc, char **argv)
17801 {
17802     char buf[1024];
17803     int i;
17804     char *bp = buf;
17805     while (1) {
17806         while ((i = getc(stdin)) != -1
17807                && (*bp++ = i) != '\n'
17808                && bp < &buf[1024])
17809         /* DO NOTHING */ ;
17810         *bp = '\0';
17811         fprintf(stdout, "%s", buf);
17812         fflush(stdin);
17813         if (i == -1)
17814             return 0;
17815         bp = buf;
17816     }
17817 }
17818 EOCP
17819         set tryp
17820         if eval $compile; then
17821             $rm -f tryp.out
17822             $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
17823             if cmp tryp.c tryp.out >/dev/null 2>&1; then
17824                $cat >&4 <<EOM
17825 Good, at least fflush(stdin) seems to behave okay when stdin is a pipe.
17826 EOM
17827                 : now check for fflushall behaviour
17828                 case "$fflushall" in
17829                 '')     set try -DTRY_FFLUSH_ALL $output
17830                         if eval $compile; then
17831                                 $cat >&4 <<EOM
17832 (Now testing the other method--but note that this also may fail.)
17833 EOM
17834                                 $run ./try 2>/dev/null
17835                                 code=$?
17836                                 $from try.out
17837                                 if $test -s try.out -a "X$code" = X42; then
17838                                         fflushall="`$cat try.out`"
17839                                 fi
17840                         fi
17841                         $rm -f core try.core core.try.*
17842                         case "$fflushall" in
17843                         x)      $cat >&4 <<EOM
17844 Whew. Flushing explicitly all the stdio streams works.
17845 EOM
17846                                 fflushall="$define"
17847                                 ;;
17848                         '')     $cat >&4 <<EOM
17849 Sigh. Flushing explicitly all the stdio streams doesn't work.
17850 EOM
17851                                 fflushall="$undef"
17852                                 ;;
17853                         *)      $cat >&4 <<EOM
17854 Cannot figure out whether flushing stdio streams explicitly works or not.
17855 I'm assuming it doesn't.
17856 EOM
17857                                 fflushall="$undef"
17858                                 ;;
17859                         esac
17860                         ;;
17861                 "$define"|true|[yY]*)
17862                         fflushall="$define"
17863                         ;;
17864                 *)
17865                         fflushall="$undef"
17866                         ;;
17867                 esac
17868             else
17869                 $cat >&4 <<EOM
17870 All is futile.  Even fflush(stdin) clobbers input pipes!
17871 EOM
17872                 fflushall="$undef"
17873             fi
17874         else
17875             fflushall="$undef"
17876         fi
17877         $rm -f core tryp.c tryp.core core.tryp.*
17878         ;;
17879 *)      fflushall="$undef"
17880         ;;
17881 esac
17882
17883 case "$fflushNULL$fflushall" in
17884 undefundef)
17885         $cat <<EOM
17886 OK, I give up.  I cannot figure out how to flush pending stdio output.
17887 We won't be flushing handles at all before fork/exec/popen.
17888 EOM
17889         ;;
17890 esac
17891 $rm -f try.* try$exe_ext
17892
17893 : Store the full pathname to the ar program for use in the C program
17894 : Respect a hint or command line value for full_ar.
17895 case "$full_ar" in
17896 '') full_ar=$ar ;;
17897 esac
17898
17899 : Store the full pathname to the sed program for use in the C program
17900 full_sed=$sed
17901
17902 : see what type gids are declared as in the kernel
17903 echo " "
17904 echo "Looking for the type for group ids returned by getgid()."
17905 set gid_t gidtype xxx stdio.h sys/types.h
17906 eval $typedef
17907 case "$gidtype" in
17908 xxx)
17909         xxx=`./findhdr sys/user.h`
17910         set `grep 'groups\[NGROUPS\];' "$xxx" 2>/dev/null` unsigned short
17911         case $1 in
17912         unsigned) dflt="$1 $2" ;;
17913         *) dflt="$1" ;;
17914         esac
17915         ;;
17916 *) dflt="$gidtype";;
17917 esac
17918 case "$gidtype" in
17919 gid_t) echo "gid_t found." ;;
17920 *)      rp="What is the type for group ids returned by getgid()?"
17921         . ./myread
17922         gidtype="$ans"
17923         ;;
17924 esac
17925
17926 echo " "
17927 case "$gidtype" in
17928 *_t) zzz="$gidtype"     ;;
17929 *)   zzz="gid"          ;;
17930 esac
17931 echo "Checking the size of $zzz..." >&4 
17932 cat > try.c <<EOCP
17933 #include <sys/types.h>
17934 #include <stdio.h>
17935 #$i_stdlib I_STDLIB
17936 #ifdef I_STDLIB
17937 #include <stdlib.h>
17938 #endif
17939 int main() {
17940     printf("%d\n", (int)sizeof($gidtype));
17941     exit(0);
17942 }
17943 EOCP
17944 set try
17945 if eval $compile_ok; then
17946         yyy=`$run ./try`
17947         case "$yyy" in
17948         '')     gidsize=4
17949                 echo "(I can't execute the test program--guessing $gidsize.)" >&4
17950                 ;;
17951         *)      gidsize=$yyy
17952                 echo "Your $zzz is $gidsize bytes long."
17953                 ;;
17954         esac
17955 else
17956         gidsize=4
17957         echo "(I can't compile the test program--guessing $gidsize.)" >&4
17958 fi
17959
17960
17961 echo " "
17962 case "$gidtype" in
17963 *_t) zzz="$gidtype"     ;;
17964 *)   zzz="gid"          ;;
17965 esac
17966 echo "Checking the sign of $zzz..." >&4 
17967 cat > try.c <<EOCP
17968 #include <sys/types.h>
17969 #include <stdio.h>
17970 int main() {
17971         $gidtype foo = -1;
17972         if (foo < 0)
17973                 printf("-1\n");
17974         else
17975                 printf("1\n");
17976 }
17977 EOCP
17978 set try
17979 if eval $compile; then
17980         yyy=`$run ./try`
17981         case "$yyy" in
17982         '')     gidsign=1
17983                 echo "(I can't execute the test program--guessing unsigned.)" >&4
17984                 ;;
17985         *)      gidsign=$yyy
17986                 case "$gidsign" in
17987                  1) echo "Your $zzz is unsigned." ;;
17988                 -1) echo "Your $zzz is signed."   ;;
17989                 esac
17990                 ;;
17991         esac
17992 else
17993         gidsign=1
17994         echo "(I can't compile the test program--guessing unsigned.)" >&4
17995 fi
17996
17997
17998 echo " "
17999
18000 if $test X"$quadtype" != X; then
18001
18002 echo "Checking how to print 64-bit integers..." >&4
18003
18004 if $test X"$sPRId64" = X -a X"$quadtype" = Xint; then
18005         $cat >try.c <<'EOCP'
18006 #include <sys/types.h>
18007 #include <stdio.h>
18008 int main() {
18009   int q = 12345678901;
18010   printf("%ld\n", q);
18011 }
18012 EOCP
18013         set try
18014         if eval $compile; then
18015                 yyy=`$run ./try`
18016                 case "$yyy" in
18017                 12345678901)
18018                         sPRId64='"d"'; sPRIi64='"i"'; sPRIu64='"u"';
18019                         sPRIo64='"o"'; sPRIx64='"x"'; sPRIXU64='"X"';
18020                         echo "We will use %d."
18021                         ;;
18022                 esac
18023         fi
18024 fi
18025
18026 if $test X"$sPRId64" = X -a X"$quadtype" = Xlong; then
18027         $cat >try.c <<'EOCP'
18028 #include <sys/types.h>
18029 #include <stdio.h>
18030 int main() {
18031   long q = 12345678901;
18032   printf("%ld\n", q);
18033 }
18034 EOCP
18035         set try
18036         if eval $compile; then
18037                 yyy=`$run ./try`
18038                 case "$yyy" in
18039                 12345678901)
18040                         sPRId64='"ld"'; sPRIi64='"li"'; sPRIu64='"lu"';
18041                         sPRIo64='"lo"'; sPRIx64='"lx"'; sPRIXU64='"lX"';
18042                         echo "We will use %ld."
18043                         ;;
18044                 esac
18045         fi
18046 fi
18047
18048 if $test X"$sPRId64" = X -a X"$i_inttypes" = X"$define" -a X"$quadtype" = Xint64_t; then
18049         $cat >try.c <<'EOCP'
18050 #include <sys/types.h>
18051 #include <inttypes.h>
18052 #include <stdio.h>
18053 int main() {
18054   int64_t q = 12345678901;
18055   printf("%" PRId64 "\n", q);
18056 }
18057 EOCP
18058         set try
18059         if eval $compile; then
18060                 yyy=`$run ./try`
18061                 case "$yyy" in
18062                 12345678901)
18063                         sPRId64=PRId64; sPRIi64=PRIi64; sPRIu64=PRIu64;
18064                         sPRIo64=PRIo64; sPRIx64=PRIx64; sPRIXU64=PRIXU64;
18065                         echo "We will use the C9X style."
18066                         ;;
18067                 esac
18068         fi
18069 fi
18070
18071 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
18072         $cat >try.c <<EOCP
18073 #include <sys/types.h>
18074 #include <stdio.h>
18075 int main() {
18076   $quadtype q = 12345678901;
18077   printf("%Ld\n", q);
18078 }
18079 EOCP
18080         set try
18081         if eval $compile; then
18082                 yyy=`$run ./try`
18083                 case "$yyy" in
18084                 12345678901)
18085                         sPRId64='"Ld"'; sPRIi64='"Li"'; sPRIu64='"Lu"';
18086                         sPRIo64='"Lo"'; sPRIx64='"Lx"'; sPRIXU64='"LX"';
18087                         echo "We will use %Ld."
18088                         ;;
18089                 esac
18090         fi
18091 fi
18092
18093 if $test X"$sPRId64" = X -a X"$quadtype" = X"long long"; then
18094         $cat >try.c <<'EOCP'
18095 #include <sys/types.h>
18096 #include <stdio.h>
18097 int main() {
18098   long long q = 12345678901LL; /* AIX cc requires the LL suffix. */
18099   printf("%lld\n", q);
18100 }
18101 EOCP
18102         set try
18103         if eval $compile; then
18104                 yyy=`$run ./try`
18105                 case "$yyy" in
18106                 12345678901)
18107                         sPRId64='"lld"'; sPRIi64='"lli"'; sPRIu64='"llu"';
18108                         sPRIo64='"llo"'; sPRIx64='"llx"'; sPRIXU64='"llX"';
18109                         echo "We will use the %lld style."
18110                         ;;
18111                 esac
18112         fi
18113 fi
18114
18115 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
18116         $cat >try.c <<EOCP
18117 #include <sys/types.h>
18118 #include <stdio.h>
18119 int main() {
18120   $quadtype q = 12345678901;
18121   printf("%qd\n", q);
18122 }
18123 EOCP
18124         set try
18125         if eval $compile; then
18126                 yyy=`$run ./try`
18127                 case "$yyy" in
18128                 12345678901)
18129                         sPRId64='"qd"'; sPRIi64='"qi"'; sPRIu64='"qu"';
18130                         sPRIo64='"qo"'; sPRIx64='"qx"'; sPRIXU64='"qX"';
18131                         echo "We will use %qd."
18132                         ;;
18133                 esac
18134         fi
18135 fi
18136
18137 if $test X"$sPRId64" = X; then
18138         echo "Cannot figure out how to print 64-bit integers." >&4
18139 fi
18140
18141 $rm -f try try.*
18142
18143 fi
18144
18145 case "$sPRId64" in
18146 '')     d_PRId64="$undef"; d_PRIi64="$undef"; d_PRIu64="$undef"; 
18147         d_PRIo64="$undef"; d_PRIx64="$undef"; d_PRIXU64="$undef"; 
18148         ;;
18149 *)      d_PRId64="$define"; d_PRIi64="$define"; d_PRIu64="$define"; 
18150         d_PRIo64="$define"; d_PRIx64="$define"; d_PRIXU64="$define"; 
18151         ;;
18152 esac
18153
18154
18155 echo " "
18156 $echo "Checking the format strings to be used for Perl's internal types..." >&4
18157
18158 if $test X"$ivsize" = X8; then
18159         ivdformat="$sPRId64"
18160         uvuformat="$sPRIu64"
18161         uvoformat="$sPRIo64"
18162         uvxformat="$sPRIx64"
18163         uvXUformat="$sPRIXU64"
18164 else
18165         if $test X"$ivsize" = X"$longsize"; then
18166                 ivdformat='"ld"'
18167                 uvuformat='"lu"'
18168                 uvoformat='"lo"'
18169                 uvxformat='"lx"'
18170                 uvXUformat='"lX"'
18171         else
18172                 if $test X"$ivsize" = X"$intsize"; then
18173                         ivdformat='"d"'
18174                         uvuformat='"u"'
18175                         uvoformat='"o"'
18176                         uvxformat='"x"'
18177                         uvXUformat='"X"'
18178                 else
18179                         : far out
18180                         if $test X"$ivsize" = X"$shortsize"; then
18181                                 ivdformat='"hd"'
18182                                 uvuformat='"hu"'
18183                                 uvoformat='"ho"'
18184                                 uvxformat='"hx"'
18185                                 uvXUformat='"hX"'
18186                         fi
18187                 fi
18188         fi
18189 fi
18190
18191 if $test X"$uselongdouble" = X"$define" -a X"$d_longdbl" = X"$define" -a X"$d_PRIgldbl" = X"$define"; then
18192         nveformat="$sPRIeldbl"
18193         nvfformat="$sPRIfldbl"
18194         nvgformat="$sPRIgldbl"
18195         nvEUformat="$sPRIEUldbl"
18196         nvFUformat="$sPRIFUldbl"
18197         nvGUformat="$sPRIGUldbl"
18198 else
18199         nveformat='"e"'
18200         nvfformat='"f"'
18201         nvgformat='"g"'
18202         nvEUformat='"E"'
18203         nvFUformat='"F"'
18204         nvGUformat='"G"'
18205 fi
18206
18207 case "$ivdformat" in
18208 '') echo "$0: Fatal: failed to find format strings, cannot continue." >&4
18209     exit 1
18210     ;;
18211 esac
18212
18213
18214 echo " "
18215 $echo "Checking the format string to be used for gids..." >&4
18216
18217 case "$gidsign" in
18218 -1)     if $test X"$gidsize" = X"$ivsize"; then
18219                 gidformat="$ivdformat"
18220         else
18221                 if $test X"$gidsize" = X"$longsize"; then
18222                         gidformat='"ld"'
18223                 else
18224                         if $test X"$gidsize" = X"$intsize"; then
18225                                 gidformat='"d"'
18226                         else
18227                                 if $test X"$gidsize" = X"$shortsize"; then
18228                                         gidformat='"hd"'
18229                                 fi
18230                         fi
18231                 fi
18232         fi
18233         ;;
18234 *)      if $test X"$gidsize" = X"$uvsize"; then
18235                 gidformat="$uvuformat"
18236         else
18237                 if $test X"$gidsize" = X"$longsize"; then
18238                         gidformat='"lu"'
18239                 else
18240                         if $test X"$gidsize" = X"$intsize"; then
18241                                 gidformat='"u"'
18242                         else
18243                                 if $test X"$gidsize" = X"$shortsize"; then
18244                                         gidformat='"hu"'
18245                                 fi
18246                         fi
18247                 fi
18248         fi
18249         ;;
18250 esac
18251
18252 : see if getgroups exists
18253 set getgroups d_getgrps
18254 eval $inlibc
18255
18256 : see if setgroups exists
18257 set setgroups d_setgrps
18258 eval $inlibc
18259
18260
18261 : Find type of 2nd arg to 'getgroups()' and 'setgroups()'
18262 echo " "
18263 case "$d_getgrps$d_setgrps" in
18264 *define*)
18265         case "$groupstype" in
18266         '') dflt="$gidtype" ;;
18267         *)  dflt="$groupstype" ;;
18268         esac
18269         $cat <<EOM
18270 What type of pointer is the second argument to getgroups() and setgroups()?
18271 Usually this is the same as group ids, $gidtype, but not always.
18272
18273 EOM
18274         rp='What type pointer is the second argument to getgroups() and setgroups()?'
18275         . ./myread
18276         groupstype="$ans"
18277         ;;
18278 *)  groupstype="$gidtype";;
18279 esac
18280
18281 echo " "
18282 echo "Checking if your $make program sets \$(MAKE)..." >&4
18283 case "$make_set_make" in
18284 '')
18285         $sed 's/^X //' > testmake.mak << 'EOF'
18286 Xall:
18287 X       @echo 'maketemp="$(MAKE)"'
18288 EOF
18289         case "`$make -f testmake.mak 2>/dev/null`" in
18290         *maketemp=*) make_set_make='#' ;;
18291         *)      make_set_make="MAKE=$make" ;;
18292         esac
18293         $rm -f testmake.mak
18294         ;;
18295 esac
18296 case "$make_set_make" in
18297 '#') echo "Yup, it does.";;
18298 *) echo "Nope, it doesn't.";;
18299 esac
18300
18301 : see what type is used for mode_t
18302 rp="What is the type used for file modes for system calls (e.g. fchmod())?"
18303 set mode_t modetype int stdio.h sys/types.h
18304 eval $typedef_ask
18305
18306 : see if stdarg is available
18307 echo " "
18308 if $test `./findhdr stdarg.h`; then
18309         echo "<stdarg.h> found." >&4
18310         valstd="$define"
18311 else
18312         echo "<stdarg.h> NOT found." >&4
18313         valstd="$undef"
18314 fi
18315
18316 : see if varags is available
18317 echo " "
18318 if $test `./findhdr varargs.h`; then
18319         echo "<varargs.h> found." >&4
18320 else
18321         echo "<varargs.h> NOT found, but that's ok (I hope)." >&4
18322 fi
18323
18324 : set up the varargs testing programs
18325 $cat > varargs.c <<EOP
18326 #ifdef I_STDARG
18327 #include <stdarg.h>
18328 #endif
18329 #ifdef I_VARARGS
18330 #include <varargs.h>
18331 #endif
18332
18333 #ifdef I_STDARG
18334 int f(char *p, ...)
18335 #else
18336 int f(va_alist)
18337 va_dcl
18338 #endif
18339 {
18340         va_list ap;
18341 #ifndef I_STDARG
18342         char *p;
18343 #endif
18344 #ifdef I_STDARG
18345         va_start(ap,p);
18346 #else
18347         va_start(ap);
18348         p = va_arg(ap, char *);
18349 #endif
18350         va_end(ap);
18351 }
18352 EOP
18353 $cat > varargs <<EOP
18354 $startsh
18355 if $cc -c $ccflags -D\$1 varargs.c >/dev/null 2>&1; then
18356         echo "true"
18357 else
18358         echo "false"
18359 fi
18360 $rm -f varargs$_o
18361 EOP
18362 chmod +x varargs
18363
18364 : now check which varargs header should be included
18365 echo " "
18366 i_varhdr=''
18367 case "$valstd" in
18368 "$define")
18369         if `./varargs I_STDARG`; then
18370                 val='stdarg.h'
18371         elif `./varargs I_VARARGS`; then
18372                 val='varargs.h'
18373         fi
18374         ;;
18375 *)
18376         if `./varargs I_VARARGS`; then
18377                 val='varargs.h'
18378         fi
18379         ;;
18380 esac
18381 case "$val" in
18382 '')
18383 echo "I could not find the definition for va_dcl... You have problems..." >&4
18384         val="$undef"; set i_stdarg; eval $setvar
18385         val="$undef"; set i_varargs; eval $setvar
18386         ;;
18387 *) 
18388         set i_varhdr
18389         eval $setvar
18390         case "$i_varhdr" in
18391         stdarg.h)
18392                 val="$define"; set i_stdarg; eval $setvar
18393                 val="$undef"; set i_varargs; eval $setvar
18394                 ;;
18395         varargs.h)
18396                 val="$undef"; set i_stdarg; eval $setvar
18397                 val="$define"; set i_varargs; eval $setvar
18398                 ;;
18399         esac
18400         echo "We'll include <$i_varhdr> to get va_dcl definition." >&4;;
18401 esac
18402 $rm -f varargs*
18403
18404 : see if we need va_copy
18405 echo " "
18406 case "$i_stdarg" in
18407 "$define")
18408         $cat >try.c <<EOCP
18409 #include <stdarg.h>
18410 #include <stdio.h>
18411 #$i_stdlib I_STDLIB
18412 #ifdef I_STDLIB
18413 #include <stdlib.h>
18414 #endif
18415 #include <signal.h>
18416
18417 int
18418 ivfprintf(FILE *f, const char *fmt, va_list *valp)
18419 {
18420   return vfprintf(f, fmt, *valp);
18421 }
18422  
18423 int    
18424 myvfprintf(FILE *f, const  char *fmt, va_list val)
18425 {
18426   return ivfprintf(f, fmt, &val);
18427 }
18428       
18429 int
18430 myprintf(char *fmt, ...) 
18431 {
18432   va_list val;
18433   va_start(val, fmt);
18434   return myvfprintf(stdout, fmt, val); 
18435 }         
18436
18437 int
18438 main(int ac, char **av)
18439 {
18440   signal(SIGSEGV, exit);
18441
18442   myprintf("%s%cs all right, then\n", "that", '\'');                            
18443   exit(0);      
18444 }
18445 EOCP
18446         set try
18447         if eval $compile && $run ./try 2>&1 >/dev/null; then
18448                 case "`$run ./try`" in
18449                 "that's all right, then")
18450                         okay=yes
18451                         ;;
18452                 esac
18453         fi
18454         case "$okay" in
18455         yes)    echo "It seems that you don't need va_copy()." >&4
18456                 need_va_copy="$undef"
18457                 ;;
18458         *)      echo "It seems that va_copy() or similar will be needed." >&4
18459                 need_va_copy="$define"
18460                 ;;
18461         esac
18462         $rm -f try.* core core.* *.core *.core.*
18463         ;;
18464 *)      echo "You don't have <stdarg.h>, not checking for va_copy()." >&4
18465         ;;
18466 esac
18467
18468 : see what type is used for size_t
18469 rp="What is the type used for the length parameter for string functions?"
18470 set size_t sizetype 'unsigned int' stdio.h sys/types.h
18471 eval $typedef_ask
18472
18473 : check for type of arguments to gethostbyaddr. 
18474 if test "X$netdb_host_type" = X -o "X$netdb_hlen_type" = X; then
18475         case "$d_gethbyaddr" in
18476         $define)
18477                 $cat <<EOM
18478
18479 Checking to see what type of arguments are accepted by gethostbyaddr().
18480 EOM
18481                 hdrs="$define sys/types.h
18482                         $d_socket sys/socket.h 
18483                         $i_niin netinet/in.h 
18484                         $i_netdb netdb.h
18485                         $i_unistd unistd.h"
18486                 : The first arg can 'char *' or 'void *'
18487                 : The second arg is some of integral type
18488                 for xxx in in_addr_t 'const void *' 'const char *' 'void *' 'char *'; do
18489                         for yyy in size_t long int; do
18490                                 case "$netdb_host_type" in
18491                                 '')     try="extern struct hostent *gethostbyaddr($xxx, $yyy, int);"
18492                                         if ./protochk "$try" $hdrs; then
18493                                                 echo "Your system accepts $xxx for the first arg."
18494                                                 echo "...and $yyy for the second arg."
18495                                                 netdb_host_type="$xxx"
18496                                                 netdb_hlen_type="$yyy"
18497                                         fi
18498                                         ;;
18499                                 esac
18500                         done
18501                 done
18502                 : In case none of those worked, prompt the user.
18503                 case "$netdb_host_type" in
18504                 '')     rp='What is the type for the 1st argument to gethostbyaddr?'
18505                         dflt='char *'
18506                         . ./myread
18507                         netdb_host_type=$ans
18508                         rp='What is the type for the 2nd argument to gethostbyaddr?'
18509                         dflt="$sizetype"
18510                         . ./myread
18511                         netdb_hlen_type=$ans
18512                         ;;
18513                 esac
18514                 ;;
18515         *)      : no gethostbyaddr, so pick harmless defaults
18516                 netdb_host_type='char *'
18517                 netdb_hlen_type="$sizetype"
18518                 ;;
18519         esac
18520         # Remove the "const" if needed. -- but then we'll have a 
18521         # prototype clash!
18522         # netdb_host_type=`echo "$netdb_host_type" | sed 's/^const //'`
18523 fi
18524
18525 : check for type of argument to gethostbyname. 
18526 if test "X$netdb_name_type" = X ; then
18527         case "$d_gethbyname" in
18528         $define)
18529                 $cat <<EOM
18530
18531 Checking to see what type of argument is accepted by gethostbyname().
18532 EOM
18533                 hdrs="$define sys/types.h
18534                         $d_socket sys/socket.h 
18535                         $i_niin netinet/in.h 
18536                         $i_netdb netdb.h
18537                         $i_unistd unistd.h"
18538                 for xxx in "const char *" "char *"; do
18539                         case "$netdb_name_type" in
18540                         '')     try="extern struct hostent *gethostbyname($xxx);"
18541                                 if ./protochk "$try" $hdrs; then
18542                                         echo "Your system accepts $xxx."
18543                                         netdb_name_type="$xxx"
18544                                 fi
18545                                 ;;
18546                         esac
18547                 done
18548                 : In case none of those worked, prompt the user.
18549                 case "$netdb_name_type" in
18550                 '')     rp='What is the type for the 1st argument to gethostbyname?'
18551                         dflt='char *'
18552                         . ./myread
18553                         netdb_name_type=$ans
18554                         ;;
18555                 esac
18556                 ;;
18557         *)      : no gethostbyname, so pick harmless default
18558                 netdb_name_type='char *'
18559                 ;;
18560         esac
18561 fi
18562
18563 : check for type of 1st argument to getnetbyaddr. 
18564 if test "X$netdb_net_type" = X ; then
18565         case "$d_getnbyaddr" in
18566         $define)
18567                 $cat <<EOM
18568
18569 Checking to see what type of 1st argument is accepted by getnetbyaddr().
18570 EOM
18571                 hdrs="$define sys/types.h
18572                         $d_socket sys/socket.h 
18573                         $i_niin netinet/in.h 
18574                         $i_netdb netdb.h
18575                         $i_unistd unistd.h"
18576                 for xxx in in_addr_t "unsigned long" long "unsigned int" int; do
18577                         case "$netdb_net_type" in
18578                         '')     try="extern struct netent *getnetbyaddr($xxx, int);"
18579                                 if ./protochk "$try" $hdrs; then
18580                                         echo "Your system accepts $xxx."
18581                                         netdb_net_type="$xxx"
18582                                 fi
18583                                 ;;
18584                         esac
18585                 done
18586                 : In case none of those worked, prompt the user.
18587                 case "$netdb_net_type" in
18588                 '')     rp='What is the type for the 1st argument to getnetbyaddr?'
18589                         dflt='long'
18590                         . ./myread
18591                         netdb_net_type=$ans
18592                         ;;
18593                 esac
18594                 ;;
18595         *)      : no getnetbyaddr, so pick harmless default
18596                 netdb_net_type='long'
18597                 ;;
18598         esac
18599 fi
18600 : locate the preferred pager for this system
18601 fn=f/
18602 case "$pager" in
18603 '')
18604         dflt=''
18605         case "$pg" in
18606         /*) dflt=$pg;;
18607         [a-zA-Z]:/*) dflt=$pg;;
18608         esac
18609         case "$more" in
18610         /*) dflt=$more;;
18611         [a-zA-Z]:/*) dflt=$more;;
18612         esac
18613         case "$less" in
18614         /*) dflt=$less;;
18615         [a-zA-Z]:/*) dflt=$less;;
18616         esac
18617         case "$dflt" in
18618         '') dflt=/usr/ucb/more;;
18619         esac
18620         ;;
18621 *)      dflt="$pager"
18622         : Instruct ./getfile to trust the hinted or previous pager value,
18623         : even if it does not begin with a slash.  For example, on os2,
18624         : pager might be cmd /c more.  See comments in UU/getfile.
18625         fn="f/($pager)"
18626         ;;
18627 esac
18628 echo " "
18629 rp='What pager is used on your system?'
18630 . ./getfile
18631 pager="$ans"
18632
18633 : see what type pids are declared as in the kernel
18634 rp="What is the type of process ids on this system?"
18635 set pid_t pidtype int stdio.h sys/types.h
18636 eval $typedef_ask
18637
18638 : Find earliest binary compatible site_perl subdirectory perl can use.
18639 xs_apiversion=$version # The current site_perl version.
18640 : Find earliest pure perl site_perl subdirectory perl can use.
18641 : The versioned directories started at 5.005.
18642 pm_apiversion='5.005'
18643
18644 : see if ar generates random libraries by itself
18645 echo " "
18646 echo "Checking how to generate random libraries on your machine..." >&4
18647 echo 'int bar1() { return bar2(); }' > bar1.c
18648 echo 'int bar2() { return 2; }' > bar2.c
18649 $cat > foo.c <<EOP
18650 #$i_stdlib I_STDLIB
18651 #ifdef I_STDLIB
18652 #include <stdlib.h>
18653 #endif
18654 int main() { printf("%d\n", bar1()); exit(0); }
18655 EOP
18656 $cc $ccflags -c bar1.c >/dev/null 2>&1
18657 $cc $ccflags -c bar2.c >/dev/null 2>&1
18658 $cc $ccflags -c foo.c >/dev/null 2>&1
18659 $ar rc bar$_a bar2$_o bar1$_o >/dev/null 2>&1
18660 if $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
18661         $run ./foobar >/dev/null 2>&1; then
18662         echo "$ar appears to generate random libraries itself."
18663         orderlib=false
18664         ranlib=":"
18665 elif $ar ts bar$_a >/dev/null 2>&1 &&
18666         $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
18667         $run ./foobar >/dev/null 2>&1; then
18668                 echo "a table of contents needs to be added with '$ar ts'."
18669                 orderlib=false
18670                 ranlib="$ar ts"
18671 else
18672         case "$ranlib" in
18673         :) ranlib='';;
18674         '')
18675                 ranlib=`./loc ranlib X /usr/bin /bin /usr/local/bin`
18676                 $test -f $ranlib || ranlib=''
18677                 ;;
18678         esac
18679         if $test -n "$ranlib"; then
18680                 echo "your system has '$ranlib'; we'll use that."
18681                 orderlib=false
18682         else
18683                 echo "your system doesn't seem to support random libraries"
18684                 echo "so we'll use lorder and tsort to order the libraries."
18685                 orderlib=true
18686                 ranlib=":"
18687         fi
18688 fi
18689 $rm -f foo* bar* 
18690
18691 : check for type of arguments to select. 
18692 case "$selecttype" in
18693 '') case "$d_select" in
18694         $define)
18695                 echo " "
18696                 $cat <<EOM
18697 Checking to see what type of arguments are accepted by select().
18698 EOM
18699                 hdrs="$define sys/types.h
18700                         $i_systime sys/time.h 
18701                         $i_sysselct sys/select.h
18702                         $d_socket sys/socket.h"
18703                 : The first arg can be int, unsigned, or size_t
18704                 : The last arg may or may not be 'const'
18705                 val=''
18706                 : void pointer has been seen but using that
18707                 : breaks the selectminbits test
18708                 for xxx in 'fd_set *' 'int *'; do
18709                         for nfd in 'int' 'size_t' 'unsigned long' 'unsigned' ; do
18710                                 for tmo in 'struct timeval *' 'const struct timeval *'; do
18711                                         case "$val" in
18712                                         '')     try="extern select _(($nfd, $xxx, $xxx, $xxx, $tmo));"
18713                                                 if ./protochk "$try" $hdrs; then
18714                                                         echo "Your system accepts $xxx."
18715                                                         val="$xxx"
18716                                                 fi
18717                                                 ;;
18718                                         esac
18719                                 done
18720                         done
18721                 done
18722                 case "$val" in
18723                 '')     rp='What is the type for the 2nd, 3rd, and 4th arguments to select?'
18724                         case "$d_fd_set" in
18725                                 $define) dflt="fd_set *" ;;
18726                                 *)              dflt="int *" ;;
18727                         esac
18728                         . ./myread
18729                         val=$ans
18730                         ;;
18731                 esac
18732                 selecttype="$val"
18733                 ;;
18734         *)      : no select, so pick a harmless default
18735                 selecttype='int *'
18736                 ;;
18737         esac
18738         ;;
18739 esac
18740
18741 : check for the select 'width'
18742 case "$selectminbits" in
18743 '') safebits=`expr $ptrsize \* 8`
18744     case "$d_select" in
18745         $define)
18746                 $cat <<EOM
18747
18748 Checking to see on how many bits at a time your select() operates...
18749 EOM
18750                 $cat >try.c <<EOCP
18751 #include <sys/types.h>
18752 #$i_time I_TIME
18753 #$i_systime I_SYS_TIME
18754 #$i_systimek I_SYS_TIME_KERNEL
18755 #ifdef I_TIME
18756 #   include <time.h>
18757 #endif
18758 #ifdef I_SYS_TIME
18759 #   ifdef I_SYS_TIME_KERNEL
18760 #       define KERNEL
18761 #   endif
18762 #   include <sys/time.h>
18763 #   ifdef I_SYS_TIME_KERNEL
18764 #       undef KERNEL
18765 #   endif
18766 #endif
18767 #$i_sysselct I_SYS_SELECT
18768 #ifdef I_SYS_SELECT
18769 #include <sys/select.h>
18770 #endif
18771 #$d_socket HAS_SOCKET
18772 #ifdef HAS_SOCKET
18773 #   include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
18774 #endif
18775 #include <stdio.h>
18776 #$i_stdlib I_STDLIB
18777 #ifdef I_STDLIB
18778 #include <stdlib.h>
18779 #endif
18780 $selecttype b;
18781 #define S sizeof(*(b))
18782 #define MINBITS 64
18783 #define NBYTES (S * 8 > MINBITS ? S : MINBITS/8)
18784 #define NBITS  (NBYTES * 8)
18785 int main() {
18786     char *s = malloc(NBYTES);
18787     struct timeval t;
18788     int i;
18789     FILE* fp;
18790     int fd;
18791
18792     if (!s)
18793         exit(1);
18794     fclose(stdin);
18795     fp = fopen("try.c", "r");
18796     if (fp == 0)
18797       exit(2);
18798     fd = fileno(fp);
18799     if (fd < 0)
18800       exit(3);
18801     b = ($selecttype)s;
18802     for (i = 0; i < NBITS; i++)
18803         FD_SET(i, b);
18804     t.tv_sec  = 0;
18805     t.tv_usec = 0;
18806     select(fd + 1, b, 0, 0, &t);
18807     for (i = NBITS - 1; i > fd && FD_ISSET(i, b); i--);
18808     free(s);
18809     printf("%d\n", i + 1);
18810     return 0;
18811 }
18812 EOCP
18813                 set try
18814                 if eval $compile_ok; then
18815                         selectminbits=`$run ./try`
18816                         case "$selectminbits" in
18817                         '')     cat >&4 <<EOM
18818 Cannot figure out on how many bits at a time your select() operates.
18819 I'll play safe and guess it is $safebits bits.
18820 EOM
18821                                 selectminbits=$safebits
18822                                 bits="$safebits bits"
18823                                 ;;
18824                         1)      bits="1 bit" ;;
18825                         *)      bits="$selectminbits bits" ;;
18826                         esac
18827                         echo "Your select() operates on $bits at a time." >&4
18828                 else
18829                         rp='What is the minimum number of bits your select() operates on?'
18830                         case "$byteorder" in
18831                         12345678)       dflt=64 ;;
18832                         1234)           dflt=32 ;;
18833                         *)              dflt=1  ;;
18834                         esac
18835                         . ./myread
18836                         val=$ans
18837                         selectminbits="$val"
18838                 fi
18839                 $rm -f try.* try
18840                 ;;
18841         *)      : no select, so pick a harmless default
18842                 selectminbits=$safebits
18843                 ;;
18844         esac
18845         ;;
18846 esac
18847
18848 : Trace out the files included by signal.h, then look for SIGxxx names.
18849 : Remove SIGARRAYSIZE used by HPUX.
18850 : Remove SIGSTKSIZE used by Linux.
18851 : Remove SIGSTKSZ used by Posix.
18852 : Remove SIGTYP void lines used by OS2.
18853 : Some cpps, like os390, dont give the file name anywhere
18854 if [ "X$fieldn" = X ]; then
18855         : Just make some guesses.  We check them later.
18856         xxx='/usr/include/signal.h /usr/include/sys/signal.h'
18857 else
18858         xxx=`echo '#include <signal.h>' |
18859         $cppstdin $cppminus $cppflags 2>/dev/null |
18860         $grep '^[       ]*#.*include' | 
18861         $awk "{print \\$$fieldn}" | $sed 's!"!!g' | $sed 's!\\\\\\\\!/!g' | $sort | $uniq`
18862 fi
18863 : Check this list of files to be sure we have parsed the cpp output ok.
18864 : This will also avoid potentially non-existent files, such 
18865 : as ../foo/bar.h
18866 xxxfiles=''
18867 for xx in $xxx /dev/null ; do
18868         $test -f "$xx" && xxxfiles="$xxxfiles $xx"
18869 done
18870 : If we have found no files, at least try signal.h
18871 case "$xxxfiles" in
18872 '')     xxxfiles=`./findhdr signal.h` ;;
18873 esac
18874 xxx=`awk '
18875 $1 ~ /^#define$/ && $2 ~ /^SIG[A-Z0-9]*$/ && $2 !~ /SIGARRAYSIZE/ && $2 !~ /SIGSTKSIZE/ && $2 !~ /SIGSTKSZ/ && $3 !~ /void/ {
18876         print substr($2, 4, 20)
18877 }
18878 $1 == "#" && $2 ~ /^define$/ && $3 ~ /^SIG[A-Z0-9]*$/ && $3 !~ /SIGARRAYSIZE/ && $4 !~ /void/ {
18879         print substr($3, 4, 20)
18880 }' $xxxfiles`
18881 : Append some common names just in case the awk scan failed.
18882 xxx="$xxx ABRT ALRM BUS CANCEL CHLD CLD CONT DIL EMT FPE"
18883 xxx="$xxx FREEZE HUP ILL INT IO IOT KILL LOST LWP PHONE"
18884 xxx="$xxx PIPE POLL PROF PWR QUIT RTMAX RTMIN SEGV STKFLT STOP"
18885 xxx="$xxx SYS TERM THAW TRAP TSTP TTIN TTOU URG USR1 USR2"
18886 xxx="$xxx USR3 USR4 VTALRM WAITING WINCH WIND WINDOW XCPU XFSZ"
18887
18888 : generate a few handy files for later
18889 $cat > signal.c <<EOCP
18890 #include <sys/types.h>
18891 #include <signal.h>
18892 #$i_stdlib I_STDLIB
18893 #ifdef I_STDLIB
18894 #include <stdlib.h>
18895 #endif
18896 #include <stdio.h>
18897 int main() {
18898
18899 /* Strange style to avoid deeply-nested #if/#else/#endif */
18900 #ifndef NSIG
18901 #  ifdef _NSIG
18902 #    define NSIG (_NSIG)
18903 #  endif
18904 #endif
18905
18906 #ifndef NSIG
18907 #  ifdef SIGMAX
18908 #    define NSIG (SIGMAX+1)
18909 #  endif
18910 #endif
18911
18912 #ifndef NSIG
18913 #  ifdef SIG_MAX
18914 #    define NSIG (SIG_MAX+1)
18915 #  endif
18916 #endif
18917
18918 #ifndef NSIG
18919 #  ifdef MAXSIG
18920 #    define NSIG (MAXSIG+1)
18921 #  endif
18922 #endif
18923
18924 #ifndef NSIG
18925 #  ifdef MAX_SIG
18926 #    define NSIG (MAX_SIG+1)
18927 #  endif
18928 #endif
18929
18930 #ifndef NSIG
18931 #  ifdef SIGARRAYSIZE
18932 #    define NSIG (SIGARRAYSIZE+1) /* Not sure of the +1 */
18933 #  endif
18934 #endif
18935
18936 #ifndef NSIG
18937 #  ifdef _sys_nsig
18938 #    define NSIG (_sys_nsig) /* Solaris 2.5 */
18939 #  endif
18940 #endif
18941
18942 /* Default to some arbitrary number that's big enough to get most
18943    of the common signals.
18944 */
18945 #ifndef NSIG
18946 #    define NSIG 50
18947 #endif
18948
18949 printf("NSIG %d\n", NSIG);
18950
18951 #ifndef JUST_NSIG
18952
18953 EOCP
18954
18955 echo $xxx | $tr ' ' $trnl | $sort | $uniq | $awk '
18956 {
18957         printf "#ifdef SIG"; printf $1; printf "\n"
18958         printf "printf(\""; printf $1; printf " %%d\\n\",SIG";
18959         printf $1; printf ");\n"
18960         printf "#endif\n"
18961 }
18962 END {
18963         printf "#endif /* JUST_NSIG */\n";
18964         printf "exit(0);\n}\n";
18965 }
18966 ' >>signal.c
18967 $cat >signal.awk <<'EOP'
18968 BEGIN { ndups = 0 }
18969 $1 ~ /^NSIG$/ { nsig = $2 }
18970 ($1 !~ /^NSIG$/) && (NF == 2) && ($2 ~ /^[0-9][0-9]*$/) {
18971     if ($2 > maxsig) { maxsig = $2 }
18972     if (sig_name[$2]) {
18973         dup_name[ndups] = $1
18974         dup_num[ndups] = $2
18975         ndups++ 
18976     }
18977     else {
18978         sig_name[$2] = $1
18979         sig_num[$2] = $2
18980     }
18981 }
18982 END { 
18983     if (nsig == 0) {
18984         nsig = maxsig + 1
18985     }
18986     printf("NSIG %d\n", nsig);
18987     for (n = 1; n < nsig; n++) {
18988         if (sig_name[n]) {
18989             printf("%s %d\n", sig_name[n], sig_num[n])
18990         }
18991         else {
18992             printf("NUM%d %d\n", n, n) 
18993         }
18994     }
18995     for (n = 0; n < ndups; n++) {
18996         printf("%s %d\n", dup_name[n], dup_num[n])
18997     }
18998 }
18999 EOP
19000 $cat >signal_cmd <<EOS
19001 $startsh
19002 if $test -s signal.lst; then
19003     echo "Using your existing signal.lst file"
19004         exit 0
19005 fi
19006 xxx="$xxx"
19007 EOS
19008 $cat >>signal_cmd <<'EOS'
19009
19010 set signal
19011 if eval $compile_ok; then
19012         $run ./signal$_exe | ($sort -n -k 2 2>/dev/null || $sort -n +1) | $uniq | $awk -f signal.awk >signal.lst
19013 else
19014         echo "(I can't seem be able to compile the whole test program)" >&4
19015         echo "(I'll try it in little pieces.)" >&4
19016         set signal -DJUST_NSIG
19017         if eval $compile_ok; then
19018                 $run ./signal$_exe > signal.nsg
19019                 $cat signal.nsg
19020         else
19021                 echo "I can't seem to figure out how many signals you have." >&4
19022                 echo "Guessing 50." >&4
19023                 echo 'NSIG 50' > signal.nsg
19024         fi
19025         : Now look at all the signal names, one at a time.
19026         for xx in `echo $xxx | $tr ' ' $trnl | $sort | $uniq`; do
19027                 $cat > signal.c <<EOCP
19028 #include <sys/types.h>
19029 #include <signal.h>
19030 #include <stdio.h>
19031 int main() {
19032 printf("$xx %d\n", SIG${xx});
19033 return 0;
19034 }
19035 EOCP
19036                 set signal
19037                 if eval $compile; then
19038                         echo "SIG${xx} found."
19039                         $run ./signal$_exe  >> signal.ls1
19040                 else
19041                         echo "SIG${xx} NOT found."
19042                 fi
19043         done
19044         if $test -s signal.ls1; then
19045                 $cat signal.nsg signal.ls1 |
19046                         $sort -n | $uniq | $awk -f signal.awk >signal.lst
19047         fi
19048
19049 fi
19050 if $test -s signal.lst; then
19051         :
19052 else
19053         echo "(AAK! I can't compile the test programs -- Guessing)" >&4
19054         echo 'kill -l' >signal
19055         set X `csh -f <signal`
19056         $rm -f signal
19057         shift
19058         case $# in
19059         0) set HUP INT QUIT ILL TRAP ABRT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM;;
19060         esac
19061         echo $@ | $tr ' ' $trnl | \
19062             $awk '{ printf "%s %d\n", $1, ++s; }
19063                   END { printf "NSIG %d\n", ++s }' >signal.lst
19064 fi
19065 $rm -f signal.c signal$_exe signal$_o signal.nsg signal.ls1
19066 EOS
19067 chmod a+x signal_cmd
19068 $eunicefix signal_cmd
19069
19070 : generate list of signal names
19071 echo " "
19072 case "$sig_name_init" in
19073 '') doinit=yes ;;
19074 *)  case "$sig_num_init" in
19075     ''|*,*) doinit=yes ;;
19076     esac ;;
19077 esac
19078 case "$doinit" in
19079 yes)
19080         echo "Generating a list of signal names and numbers..." >&4
19081         . ./signal_cmd
19082         sig_count=`$awk '/^NSIG/ { printf "%d", $2 }' signal.lst`
19083         sig_name=`$awk 'BEGIN { printf "ZERO " }
19084                         !/^NSIG/ { printf "%s ", $1 }' signal.lst`
19085         sig_num=`$awk  'BEGIN { printf "0 " }
19086                         !/^NSIG/ { printf "%d ", $2 }' signal.lst`
19087         sig_name_init=`$awk 'BEGIN      { printf "\"ZERO\", " }
19088                              !/^NSIG/   { printf "\"%s\", ", $1 }
19089                              END        { printf "0\n" }' signal.lst`
19090         sig_num_init=`$awk  'BEGIN      { printf "0, " }
19091                              !/^NSIG/   { printf "%d, ", $2}
19092                              END        { printf "0\n"}' signal.lst`
19093         ;;
19094 esac
19095 echo "The following $sig_count signals are available:"
19096 echo " "
19097 echo $sig_name | $awk \
19098 'BEGIN { linelen = 0 }
19099 {
19100         for (i = 1; i <= NF; i++) {
19101                 name = "SIG" $i " "
19102                 linelen = linelen + length(name)
19103                 if (linelen > 70) {
19104                         printf "\n"
19105                         linelen = length(name)
19106                 }
19107                 printf "%s", name
19108         }
19109         printf "\n"
19110 }'
19111 sig_size=`echo $sig_name | awk '{print NF}'`
19112 $rm -f signal signal.c signal.awk signal.lst signal_cmd 
19113
19114 echo " "
19115 case "$sizetype" in
19116 *_t) zzz="$sizetype"    ;;
19117 *)   zzz="filesize"     ;;
19118 esac
19119 echo "Checking the size of $zzz..." >&4 
19120 cat > try.c <<EOCP
19121 #include <sys/types.h>
19122 #include <stdio.h>
19123 #$i_stdlib I_STDLIB
19124 #ifdef I_STDLIB
19125 #include <stdlib.h>
19126 #endif
19127 int main() {
19128     printf("%d\n", (int)sizeof($sizetype));
19129     exit(0);
19130 }
19131 EOCP
19132 set try
19133 if eval $compile_ok; then
19134         yyy=`$run ./try`
19135         case "$yyy" in
19136         '')     sizesize=4
19137                 echo "(I can't execute the test program--guessing $sizesize.)" >&4
19138                 ;;
19139         *)      sizesize=$yyy
19140                 echo "Your $zzz size is $sizesize bytes."
19141                 ;;
19142         esac
19143 else
19144         sizesize=4
19145         echo "(I can't compile the test program--guessing $sizesize.)" >&4
19146 fi
19147
19148
19149 : check for socklen_t
19150 echo " "
19151 echo "Checking to see if you have socklen_t..." >&4
19152 $cat >try.c <<EOCP
19153 #include <sys/types.h>
19154 #$d_socket HAS_SOCKET
19155 #ifdef HAS_SOCKET
19156 #include <sys/socket.h>
19157 #endif
19158 int main() { socklen_t x = 16; }
19159 EOCP
19160 set try
19161 if eval $compile; then
19162         val="$define"
19163         echo "You have socklen_t."
19164 else
19165         val="$undef"
19166         echo "You do not have socklen_t."
19167         case "$sizetype" in
19168         size_t) echo "(You do have size_t, that might work. Some people are happy with just an int.)" ;;
19169         esac
19170 fi
19171 $rm -f try try.*
19172 set d_socklen_t
19173 eval $setvar
19174
19175 : see if this is a socks.h system
19176 set socks.h i_socks
19177 eval $inhdr
19178
19179 : check for type of the size argument to socket calls
19180 case "$d_socket" in
19181 "$define")
19182         $cat <<EOM
19183
19184 Checking to see what type is the last argument of accept().
19185 EOM
19186         yyy=''
19187         case "$d_socklen_t" in
19188         "$define") yyy="$yyy socklen_t"
19189         esac
19190         yyy="$yyy $sizetype int long unsigned"
19191         for xxx in $yyy; do
19192                 case "$socksizetype" in
19193                 '')     try="extern int accept(int, struct sockaddr *, $xxx *);"
19194                         case "$usesocks" in
19195                         "$define")
19196                                 if ./protochk "$try" $i_systypes sys/types.h $d_socket sys/socket.h literal '#define INCLUDE_PROTOTYPES' $i_socks socks.h.; then
19197                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
19198                                         socksizetype="$xxx"
19199                                 fi
19200                                 ;;
19201                         *)      if ./protochk "$try"  $i_systypes sys/types.h $d_socket sys/socket.h; then
19202                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
19203                                         socksizetype="$xxx"
19204                                 fi
19205                                 ;;
19206                         esac
19207                         ;;
19208                 esac
19209         done
19210 : In case none of those worked, prompt the user.
19211         case "$socksizetype" in
19212         '')     rp='What is the type for socket address structure sizes?'
19213                 dflt='int'
19214                 . ./myread
19215                 socksizetype=$ans
19216                 ;;
19217         esac
19218         ;;
19219 *)      : no sockets, so pick relatively harmless default
19220         socksizetype='int'
19221         ;;
19222 esac
19223
19224 : see what type is used for signed size_t
19225 set ssize_t ssizetype int stdio.h sys/types.h
19226 eval $typedef
19227 dflt="$ssizetype"
19228 $cat > try.c <<EOM
19229 #include <stdio.h>
19230 #$i_stdlib I_STDLIB
19231 #ifdef I_STDLIB
19232 #include <stdlib.h>
19233 #endif
19234 #include <sys/types.h>
19235 #define Size_t $sizetype
19236 #define SSize_t $dflt
19237 int main()
19238 {
19239         if (sizeof(Size_t) == sizeof(SSize_t))
19240                 printf("$dflt\n");
19241         else if (sizeof(Size_t) == sizeof(int))
19242                 printf("int\n");
19243         else 
19244                 printf("long\n");
19245         exit(0);
19246 }
19247 EOM
19248 echo " "
19249 set try
19250 if eval $compile_ok && $run ./try > /dev/null; then
19251         ssizetype=`$run ./try`
19252         echo "I'll be using $ssizetype for functions returning a byte count." >&4
19253 else
19254         $cat >&4 <<EOM
19255 Help! I can't compile and run the ssize_t test program: please enlighten me!
19256 (This is probably a misconfiguration in your system or libraries, and
19257 you really ought to fix it.  Still, I'll try anyway.)
19258
19259 I need a type that is the same size as $sizetype, but is guaranteed to
19260 be signed.  Common values are ssize_t, int and long.
19261
19262 EOM
19263         rp="What signed type is the same size as $sizetype?"
19264         . ./myread
19265         ssizetype="$ans"
19266 fi
19267 $rm -f try try.*
19268
19269 : see what type of char stdio uses.
19270 echo " "
19271 echo '#include <stdio.h>' | $cppstdin $cppminus > stdioh
19272 if $contains 'unsigned.*char.*_ptr;' stdioh >/dev/null 2>&1 ; then
19273         echo "Your stdio uses unsigned chars." >&4
19274         stdchar="unsigned char"
19275 else
19276         echo "Your stdio uses signed chars." >&4
19277         stdchar="char"
19278 fi
19279 $rm -f stdioh
19280
19281
19282
19283 : see what type uids are declared as in the kernel
19284 echo " "
19285 echo "Looking for the type for user ids returned by getuid()."
19286 set uid_t uidtype xxx stdio.h sys/types.h
19287 eval $typedef
19288 case "$uidtype" in
19289 xxx)
19290         xxx=`./findhdr sys/user.h`
19291         set `grep '_ruid;' "$xxx" 2>/dev/null` unsigned short
19292         case $1 in
19293         unsigned) dflt="$1 $2" ;;
19294         *) dflt="$1" ;;
19295         esac
19296         ;;
19297 *) dflt="$uidtype";;
19298 esac
19299 case "$uidtype" in
19300 uid_t)  echo "uid_t found." ;;
19301 *)      rp="What is the type for user ids returned by getuid()?"
19302         . ./myread
19303         uidtype="$ans"
19304         ;;
19305 esac
19306
19307 echo " "
19308 case "$uidtype" in
19309 *_t) zzz="$uidtype"     ;;
19310 *)   zzz="uid"          ;;
19311 esac
19312 echo "Checking the size of $zzz..." >&4 
19313 cat > try.c <<EOCP
19314 #include <sys/types.h>
19315 #include <stdio.h>
19316 #$i_stdlib I_STDLIB
19317 #ifdef I_STDLIB
19318 #include <stdlib.h>
19319 #endif
19320 int main() {
19321     printf("%d\n", (int)sizeof($uidtype));
19322     exit(0);
19323 }
19324 EOCP
19325 set try
19326 if eval $compile_ok; then
19327         yyy=`$run ./try`
19328         case "$yyy" in
19329         '')     uidsize=4
19330                 echo "(I can't execute the test program--guessing $uidsize.)" >&4
19331                 ;;
19332         *)      uidsize=$yyy
19333                 echo "Your $zzz is $uidsize bytes long."
19334                 ;;
19335         esac
19336 else
19337         uidsize=4
19338         echo "(I can't compile the test program--guessing $uidsize.)" >&4
19339 fi
19340
19341 echo " "
19342 case "$uidtype" in
19343 *_t) zzz="$uidtype"     ;;
19344 *)   zzz="uid"          ;;
19345 esac
19346 echo "Checking the sign of $zzz..." >&4
19347 cat > try.c <<EOCP
19348 #include <sys/types.h>
19349 #include <stdio.h>
19350 int main() {
19351         $uidtype foo = -1;
19352         if (foo < 0)
19353                 printf("-1\n");
19354         else
19355                 printf("1\n");
19356 }
19357 EOCP
19358 set try
19359 if eval $compile; then
19360         yyy=`$run ./try`
19361         case "$yyy" in
19362         '')     uidsign=1
19363                 echo "(I can't execute the test program--guessing unsigned.)" >&4
19364                 ;;
19365         *)      uidsign=$yyy
19366                 case "$uidsign" in
19367                  1) echo "Your $zzz is unsigned." ;;
19368                 -1) echo "Your $zzz is signed."   ;;
19369                 esac
19370                 ;;
19371         esac
19372 else
19373         uidsign=1
19374         echo "(I can't compile the test program--guessing unsigned.)" >&4
19375 fi
19376
19377
19378
19379 echo " "
19380 $echo "Checking the format string to be used for uids..." >&4
19381
19382 case "$uidsign" in
19383 -1)     if $test X"$uidsize" = X"$ivsize"; then
19384                 uidformat="$ivdformat"
19385         else
19386                 if $test X"$uidsize" = X"$longsize"; then
19387                         uidformat='"ld"'
19388                 else
19389                         if $test X"$uidsize" = X"$intsize"; then
19390                                 uidformat='"d"'
19391                         else
19392                                 if $test X"$uidsize" = X"$shortsize"; then
19393                                         uidformat='"hd"'
19394                                 fi
19395                         fi
19396                 fi
19397         fi
19398         ;;
19399 *)      if $test X"$uidsize" = X"$uvsize"; then
19400                 uidformat="$uvuformat"
19401         else
19402                 if $test X"$uidsize" = X"$longsize"; then
19403                         uidformat='"lu"'
19404                 else
19405                         if $test X"$uidsize" = X"$intsize"; then
19406                                 uidformat='"u"'
19407                         else
19408                                 if $test X"$uidsize" = X"$shortsize"; then
19409                                         uidformat='"hu"'
19410                                 fi
19411                         fi
19412                 fi
19413         fi
19414         ;;
19415 esac
19416
19417 : determine compiler compiler
19418 case "$yacc" in
19419 '')
19420         dflt=yacc;;
19421 *)
19422         dflt="$yacc";;
19423 esac
19424 echo " "
19425 comp='yacc'
19426 if $test -f "$byacc$_exe"; then
19427         dflt="$byacc"
19428         comp="byacc or $comp"
19429 fi
19430 if $test -f "$bison$_exe"; then
19431         comp="$comp or bison -y"
19432 fi
19433 rp="Which compiler compiler ($comp) shall I use?"
19434 . ./myread
19435 yacc="$ans"
19436 case "$yacc" in
19437 *bis*)
19438         case "$yacc" in
19439         *-y*) ;;
19440         *)
19441                 yacc="$yacc -y"
19442                 echo "(Adding -y option to bison to get yacc-compatible behaviour.)"
19443                 ;;
19444         esac
19445         ;;
19446 esac
19447
19448 : see if this is a fp.h system
19449 set fp.h i_fp
19450 eval $inhdr
19451
19452 : see if this is a fp_class.h system
19453 set fp_class.h i_fp_class
19454 eval $inhdr
19455
19456 : see if this is a ieeefp.h system
19457 case "$i_ieeefp" in
19458 '' ) set ieeefp.h i_ieeefp
19459      eval $inhdr
19460      ;;
19461 esac
19462
19463 : see if this is a libutil.h system
19464 set libutil.h i_libutil
19465 eval $inhdr
19466
19467 : see if mach cthreads are available
19468 if test "X$usethreads" = "X$define"; then
19469         set mach/cthreads.h i_machcthr
19470         eval $inhdr
19471 else
19472         i_machcthr="$undef"
19473 fi
19474
19475
19476
19477 : see if this is a math.h system
19478 set math.h i_math
19479 eval $inhdr
19480
19481 : see if this is a mntent.h system
19482 set mntent.h i_mntent
19483 eval $inhdr
19484
19485 : see if ndbm.h is available
19486 set ndbm.h t_ndbm
19487 eval $inhdr
19488
19489 case "$t_ndbm" in
19490 $undef)
19491     # Some Linux distributions such as RedHat 7.1 put the
19492     # ndbm.h header in /usr/include/gdbm/ndbm.h.
19493     if $test -f /usr/include/gdbm/ndbm.h; then
19494         echo '<gdbm/ndbm.h> found.'
19495         ccflags="$ccflags -I/usr/include/gdbm"
19496         cppflags="$cppflags -I/usr/include/gdbm"
19497         t_ndbm=$define
19498     fi
19499     ;;
19500 esac
19501
19502 case "$t_ndbm" in
19503 $define)
19504         : see if dbm_open exists
19505         set dbm_open d_dbm_open
19506         eval $inlibc
19507         case "$d_dbm_open" in
19508         $undef)
19509                 t_ndbm="$undef"
19510                 echo "We won't be including <ndbm.h>"
19511                 ;;
19512         esac
19513         ;;
19514 esac
19515 val="$t_ndbm"
19516 set i_ndbm
19517 eval $setvar
19518
19519 : see if net/errno.h is available
19520 val=''
19521 set net/errno.h val
19522 eval $inhdr
19523
19524 : Unfortunately, it causes problems on some systems.  Arrgh.
19525 case "$val" in
19526 $define)
19527         cat > try.c <<'EOM'
19528 #include <stdio.h>
19529 #include <errno.h>
19530 #include <net/errno.h>
19531 int func()
19532 {
19533         return ENOTSOCK;
19534 }
19535 EOM
19536         if $cc $ccflags -c try.c >/dev/null 2>&1; then
19537                 echo "We'll be including <net/errno.h>." >&4
19538         else
19539                 echo "We won't be including <net/errno.h>." >&4
19540                 val="$undef"
19541         fi
19542         $rm -f try.* try
19543         ;;
19544 esac
19545 set i_neterrno
19546 eval $setvar
19547
19548 : see if netinet/tcp.h is available
19549 set netinet/tcp.h i_netinettcp
19550 eval $inhdr
19551
19552 : see if this is a poll.h system
19553 set poll.h i_poll
19554 eval $inhdr
19555
19556 : see if this is a prot.h system
19557 set prot.h i_prot
19558 eval $inhdr
19559
19560 echo " "
19561 $echo "Guessing which symbols your C compiler and preprocessor define..." >&4 
19562 $cat <<'EOSH' > Cppsym.know
19563 a29k ABI64 aegis AES_SOURCE AIX AIX32 AIX370
19564 AIX41 AIX42 AIX43 AIX_SOURCE aixpc ALL_SOURCE
19565 alliant alpha am29000 AM29000 AMD64 amiga AMIGAOS AMIX
19566 ansi ANSI_C_SOURCE apollo ardent ARM32 atarist att386 att3b
19567 BeOS BIG_ENDIAN BIT_MSF bsd BSD bsd43 bsd4_2 bsd4_3 BSD4_3 bsd4_4
19568 BSD_4_3 BSD_4_4 BSD_NET2 BSD_TIME BSD_TYPES BSDCOMPAT bsdi
19569 bull c cadmus clipper CMU COFF COMPILER_VERSION
19570 concurrent convex cpu cray CRAY CRAYMPP ctix CX_UX
19571 CYGWIN DGUX DGUX_SOURCE DJGPP dmert DOLPHIN DPX2 DSO
19572 Dynix DynixPTX ELF encore EPI EXTENSIONS FAVOR_BSD
19573 FILE_OFFSET_BITS FreeBSD GCC_NEW_VARARGS gcos gcx gimpel
19574 GLIBC GLIBC_MINOR
19575 GNU_SOURCE GNUC GNUC_MINOR GNU_LIBRARY GO32 gould GOULD_PN
19576 H3050R H3050RX hbullx20 hcx host_mips
19577 hp200 hp300 hp700 HP700 hp800 hp9000
19578 hp9000s200 hp9000s300 hp9000s400 hp9000s500
19579 hp9000s700 hp9000s800 hp9k8 hp_osf hppa hpux HPUX_SOURCE
19580 i186 i286 i386 i486 i586 i686 i8086 i80960 i860 I960
19581 IA64 iAPX286 ibm ibm032 ibmesa IBMR2 ibmrt ILP32 ILP64
19582 INLINE_INTRINSICS INTRINSICS INT64 interdata is68k ksr1
19583 LANGUAGE_C LARGE_FILE_API LARGEFILE64_SOURCE
19584 LARGEFILE_SOURCE LFS64_LARGEFILE LFS_LARGEFILE
19585 Linux LITTLE_ENDIAN LONG64 LONG_DOUBLE LONG_LONG
19586 LONGDOUBLE LONGLONG LP64 luna luna88k Lynx
19587 M68000 m68k m88100 m88k M88KBCS_TARGET M_COFF
19588 M_I186 M_I286 M_I386 M_I8086 M_I86 M_I86SM M_SYS3
19589 M_SYS5 M_SYSIII M_SYSV M_UNIX M_XENIX MACH machine MachTen
19590 MATH_HAS_NO_SIDE_EFFECTS
19591 mc300 mc500 mc68000 mc68010 mc68020 mc68030 mc68040
19592 mc68060 mc68k mc68k32 mc700 mc88000 mc88100 merlin
19593 mert MiNT mips MIPS_FPSET MIPS_ISA MIPS_SIM MIPS_SZINT
19594 MIPS_SZLONG MIPS_SZPTR MIPSEB MIPSEL MODERN_C motorola
19595 mpeix MSDOS MTXINU MULTIMAX mvs MVS n16 ncl_el ncl_mr
19596 NetBSD news1500 news1700 news1800 news1900 news3700
19597 news700 news800 news900 NeXT NLS nonstopux ns16000 ns32000
19598 ns32016 ns32332 ns32k nsc32000
19599 OCS88 OEMVS OpenBSD os OS2 OS390 osf OSF1 OSF_SOURCE
19600 pa_risc PA_RISC1_1 PA_RISC2_0 PARAGON parisc
19601 pc532 pdp11 PGC PIC plexus PORTAR posix
19602 POSIX1B_SOURCE POSIX2_SOURCE POSIX4_SOURCE
19603 POSIX_C_SOURCE POSIX_SOURCE POWER
19604 PROTOTYPES PWB pyr QNX R3000 REENTRANT RES Rhapsody RISC6000
19605 riscix riscos RT S390 SA110 scs SCO sequent sgi SGI_SOURCE SH3 sinix
19606 SIZE_INT SIZE_LONG SIZE_PTR SOCKET_SOURCE SOCKETS_SOURCE
19607 sony sony_news sonyrisc sparc sparclite spectrum
19608 stardent stdc STDC_EXT stratos sun sun3 sun386
19609 Sun386i svr3 svr4 SVR4_2 SVR4_SOURCE svr5
19610 SX system SYSTYPE_BSD SYSTYPE_BSD43 SYSTYPE_BSD44
19611 SYSTYPE_SVR4 SYSTYPE_SVR5 SYSTYPE_SYSV SYSV SYSV3 SYSV4 SYSV5
19612 sysV68 sysV88 Tek4132 Tek4300 titan
19613 TM3200 TM5400 TM5600
19614 tower tower32 tower32_200 tower32_600 tower32_700
19615 tower32_800 tower32_850 tss
19616 u370 u3b u3b2 u3b20 u3b200 u3b20d u3b5
19617 ultrix UMAXV UnicomPBB UnicomPBD UNICOS UNICOSMK
19618 unix UNIX95 UNIX99 unixpc unos
19619 USE_BSD USE_FILE_OFFSET64 USE_GNU USE_ISOC9X USE_LARGEFILE USE_LARGEFILE64
19620 USE_MISC USE_POSIX USE_POSIX199309 USE_POSIX199506 USE_POSIX2
19621 USE_REENTRANT USE_SVID USE_UNIX98 USE_XOPEN USE_XOPEN_EXTENDED
19622 USGr4 USGr4_2
19623 Utek UTek UTS UWIN uxpm uxps vax venix VMESA vms xenix Xenix286
19624 XOPEN_SOURCE XOPEN_SOURCE_EXTENDED XPG2 XPG2_EXTENDED
19625 XPG3 XPG3_EXTENDED XPG4 XPG4_EXTENDED
19626 z8000
19627 EOSH
19628 # Maybe put other stuff here too.
19629 cat <<EOSH >>Cppsym.know
19630 $osname
19631 EOSH
19632 ./tr '[a-z]' '[A-Z]' < Cppsym.know > Cppsym.a
19633 ./tr '[A-Z]' '[a-z]' < Cppsym.know > Cppsym.b
19634 $cat Cppsym.know > Cppsym.c
19635 $cat Cppsym.a Cppsym.b Cppsym.c | $tr ' ' $trnl | $sort | $uniq > Cppsym.know
19636 $rm -f Cppsym.a Cppsym.b Cppsym.c
19637 cat <<EOSH > Cppsym
19638 $startsh
19639 if $test \$# -gt 0; then
19640     echo \$* | $tr " " "$trnl" | ./Cppsym.try > Cppsym.got
19641     if $test -s Cppsym.got; then
19642         $rm -f Cppsym.got
19643         exit 0
19644     fi
19645     $rm -f Cppsym.got
19646     exit 1
19647 else
19648     $tr " " "$trnl" | ./Cppsym.try
19649     exit 0
19650 fi
19651 EOSH
19652 chmod +x Cppsym
19653 $eunicefix Cppsym
19654 cat <<EOSH > Cppsym.try
19655 $startsh
19656 cat <<'EOCP' > try.c
19657 #include <stdio.h>
19658 int main() {
19659 EOCP
19660 $awk \\
19661 EOSH
19662 cat <<'EOSH' >> Cppsym.try
19663 'length($1) > 0 {
19664     printf "#ifdef %s\n#if %s+0\nprintf(\"%s=%%ld\\n\", (long)%s);\n#else\nprintf(\"%s\\n\");\n#endif\n#endif\n", $1, $1, $1, $1, $1
19665     printf "#ifdef _%s\n#if _%s+0\nprintf(\"_%s=%%ld\\n\", (long)_%s);\n#else\nprintf(\"_%s\\n\");\n#endif\n#endif\n", $1, $1, $1, $1, $1
19666     printf "#ifdef __%s\n#if __%s+0\nprintf(\"__%s=%%ld\\n\", (long)__%s);\n#else\nprintf(\"__%s\\n\");\n#endif\n#endif\n", $1, $1, $1, $1, $1
19667     printf "#ifdef __%s__\n#if __%s__+0\nprintf(\"__%s__=%%ld\\n\", (long)__%s__);\n#else\nprintf(\"__%s__\\n\");\n#endif\n#endif\n", $1, $1, $1, $1, $1
19668 }'       >> try.c
19669 echo 'return 0;}' >> try.c
19670 EOSH
19671 cat <<EOSH >> Cppsym.try
19672 ccflags="$ccflags"
19673 case "$osname-$gccversion" in
19674 irix-) ccflags="\$ccflags -woff 1178" ;;
19675 os2-*) ccflags="\$ccflags -Zlinker /PM:VIO" ;;
19676 esac
19677 $cc -o try $optimize \$ccflags $ldflags try.c $libs && $run ./try
19678 EOSH
19679 chmod +x Cppsym.try
19680 $eunicefix Cppsym.try
19681 ./Cppsym < Cppsym.know > Cppsym.true
19682 : now check the C compiler for additional symbols
19683 postprocess_cc_v=''
19684 case "$osname" in
19685 aix) postprocess_cc_v="|$tr , ' '" ;;
19686 esac
19687 $cat >ccsym <<EOS
19688 $startsh
19689 $cat >tmp.c <<EOF
19690 extern int foo;
19691 EOF
19692 for i in \`$cc -v -c tmp.c 2>&1 $postprocess_cc_v\`
19693 do
19694         case "\$i" in
19695         -D*) echo "\$i" | $sed 's/^-D//';;
19696         -A*) $test "$gccversion" && echo "\$i" | $sed 's/^-A//' | $sed 's/\(.*\)(\(.*\))/\1=\2/';;
19697         esac
19698 done
19699 $rm -f try.c
19700 EOS
19701 postprocess_cc_v=''
19702 chmod +x ccsym
19703 $eunicefix ccsym
19704 ./ccsym > ccsym1.raw
19705 if $test -s ccsym1.raw; then
19706        $sort ccsym1.raw | $uniq >ccsym.raw
19707 else
19708        mv ccsym1.raw ccsym.raw
19709 fi
19710
19711 $awk '/\=/ { print $0; next }
19712         { print $0"=1" }' ccsym.raw >ccsym.list
19713 $awk '/\=/ { print $0; next }
19714         { print $0"=1" }' Cppsym.true >ccsym.true
19715 $comm -13 ccsym.true ccsym.list >ccsym.own
19716 $comm -12 ccsym.true ccsym.list >ccsym.com
19717 $comm -23 ccsym.true ccsym.list >ccsym.cpp
19718 also=''
19719 if $test -z ccsym.raw; then
19720         echo "Your C compiler doesn't seem to define any symbols!" >&4
19721         echo " "
19722         echo "However, your C preprocessor defines the following symbols:"
19723         $cat Cppsym.true
19724         ccsymbols=''
19725         cppsymbols=`$cat Cppsym.true`
19726         cppsymbols=`echo $cppsymbols`
19727         cppccsymbols="$cppsymbols"
19728 else
19729         if $test -s ccsym.com; then
19730                 echo "Your C compiler and pre-processor define these symbols:"
19731                 $sed -e 's/\(..*\)=.*/\1/' ccsym.com
19732                 also='also '
19733                 symbols='ones'
19734                 cppccsymbols=`$cat ccsym.com`
19735                 cppccsymbols=`echo $cppccsymbols`
19736                 $test "$silent" || sleep 1
19737         fi
19738         if $test -s ccsym.cpp; then
19739                 $test "$also" && echo " "
19740                 echo "Your C pre-processor ${also}defines the following symbols:"
19741                 $sed -e 's/\(..*\)=.*/\1/' ccsym.cpp
19742                 also='further '
19743                 cppsymbols=`$cat ccsym.cpp`
19744                 cppsymbols=`echo $cppsymbols`
19745                 $test "$silent" || sleep 1
19746         fi
19747         if $test -s ccsym.own; then
19748                 $test "$also" && echo " "
19749                 echo "Your C compiler ${also}defines the following cpp symbols:"
19750                 $sed -e 's/\(..*\)=1/\1/' ccsym.own
19751                 $sed -e 's/\(..*\)=.*/\1/' ccsym.own | $uniq >>Cppsym.true
19752                 ccsymbols=`$cat ccsym.own`
19753                 ccsymbols=`echo $ccsymbols`
19754                 $test "$silent" || sleep 1
19755         fi
19756 fi
19757
19758 : see if this is a termio system
19759 val="$undef"
19760 val2="$undef"
19761 val3="$undef"
19762 if $test `./findhdr termios.h`; then
19763         set tcsetattr i_termios
19764         eval $inlibc
19765         val3="$i_termios"
19766 fi
19767 echo " "
19768 case "$val3" in
19769 "$define") echo "You have POSIX termios.h... good!" >&4;;
19770 *) if ./Cppsym pyr; then
19771                 case "`/bin/universe`" in
19772                 ucb) if $test `./findhdr sgtty.h`; then
19773                                 val2="$define"
19774                                 echo "<sgtty.h> found." >&4
19775                         else
19776                                 echo "System is pyramid with BSD universe."
19777                                 echo "<sgtty.h> not found--you could have problems." >&4
19778                         fi;;
19779                 *) if $test `./findhdr termio.h`; then
19780                                 val="$define"
19781                                 echo "<termio.h> found." >&4
19782                         else
19783                                 echo "System is pyramid with USG universe."
19784                                 echo "<termio.h> not found--you could have problems." >&4
19785                         fi;;
19786                 esac
19787         elif ./usg; then
19788                 if $test `./findhdr termio.h`; then
19789                         echo "<termio.h> found." >&4
19790                         val="$define"
19791                 elif $test `./findhdr sgtty.h`; then
19792                         echo "<sgtty.h> found." >&4
19793                         val2="$define"
19794                 else
19795 echo "Neither <termio.h> nor <sgtty.h> found--you could have problems." >&4
19796                 fi
19797         else
19798                 if $test `./findhdr sgtty.h`; then
19799                         echo "<sgtty.h> found." >&4
19800                         val2="$define"
19801                 elif $test `./findhdr termio.h`; then
19802                         echo "<termio.h> found." >&4
19803                         val="$define"
19804                 else
19805 echo "Neither <sgtty.h> nor <termio.h> found--you could have problems." >&4
19806                 fi
19807         fi;;
19808 esac
19809 set i_termio; eval $setvar
19810 val=$val2; set i_sgtty; eval $setvar
19811 val=$val3; set i_termios; eval $setvar
19812
19813 : see if stddef is available
19814 set stddef.h i_stddef
19815 eval $inhdr
19816
19817 : see if this is a sunmath.h system
19818 set sunmath.h i_sunmath
19819 eval $inhdr
19820
19821 : see if sys/access.h is available
19822 set sys/access.h i_sysaccess
19823 eval $inhdr
19824
19825 : see if ioctl defs are in sgtty, termio, sys/filio or sys/ioctl
19826 set sys/filio.h i_sysfilio
19827 eval $inhdr
19828 echo " "
19829 if $test `./findhdr sys/ioctl.h`; then
19830         val="$define"
19831         echo '<sys/ioctl.h> found.' >&4
19832 else
19833         val="$undef"
19834         if $test $i_sysfilio = "$define"; then
19835             echo '<sys/ioctl.h> NOT found.' >&4
19836         else
19837                 $test $i_sgtty = "$define" && xxx="sgtty.h"
19838                 $test $i_termio = "$define" && xxx="termio.h"
19839                 $test $i_termios = "$define" && xxx="termios.h"
19840 echo "No <sys/ioctl.h> found, assuming ioctl args are defined in <$xxx>." >&4
19841         fi
19842 fi
19843 set i_sysioctl
19844 eval $setvar
19845
19846 : see if socket ioctl defs are in sys/sockio.h
19847 echo " "
19848 xxx=`./findhdr sys/sockio.h`
19849 if $test "$xxx"; then
19850         if $contains SIOCATMARK $xxx >/dev/null 2>&1; then
19851                 val="$define"
19852                 echo "You have socket ioctls defined in <sys/sockio.h>." >&4
19853         else
19854                 val="$undef"
19855                 echo "No socket ioctls found in <sys/sockio.h>." >&4
19856         fi
19857 else
19858         val="$undef"
19859         $cat <<EOM
19860 <sys/sockio.h> not found, assuming socket ioctls are in <sys/ioctl.h>.
19861 EOM
19862 fi
19863 set i_syssockio
19864 eval $setvar
19865
19866
19867 : see if this is a syslog.h system
19868 set syslog.h i_syslog
19869 eval $inhdr
19870
19871
19872 : see if this is a sys/mode.h system
19873 set sys/mode.h i_sysmode
19874 eval $inhdr
19875
19876 : see if sys/resource.h has to be included
19877 set sys/resource.h i_sysresrc
19878 eval $inhdr
19879
19880 : see if sys/security.h is available
19881 set sys/security.h i_syssecrt
19882 eval $inhdr
19883
19884 : see if this is a sys/statvfs.h system
19885 set sys/statvfs.h i_sysstatvfs
19886 eval $inhdr
19887
19888 : see if this is a sys/un.h system
19889 set sys/un.h i_sysun
19890 eval $inhdr
19891
19892
19893 : see if this is a sys/utsname.h system
19894 set sys/utsname.h i_sysutsname
19895 eval $inhdr
19896
19897 : see if this is a syswait system
19898 set sys/wait.h i_syswait
19899 eval $inhdr
19900
19901 : see if this is a ustat.h system
19902 set ustat.h i_ustat
19903 eval $inhdr
19904
19905 : see if this is an utime system
19906 set utime.h i_utime
19907 eval $inhdr
19908
19909 : see if this is a values.h system
19910 set values.h i_values
19911 eval $inhdr
19912
19913 : see if this is a vfork system
19914 case "$d_vfork" in
19915 "$define")
19916         set vfork.h i_vfork
19917         eval $inhdr
19918         ;;
19919 *)
19920         i_vfork="$undef"
19921         ;;
19922 esac
19923
19924 : see if gdbm.h is available
19925 set gdbm.h t_gdbm
19926 eval $inhdr
19927 case "$t_gdbm" in
19928 $define)
19929         : see if gdbm_open exists
19930         set gdbm_open d_gdbm_open
19931         eval $inlibc
19932         case "$d_gdbm_open" in
19933         $undef)
19934                 t_gdbm="$undef"
19935                 echo "We won't be including <gdbm.h>"
19936                 ;;
19937         esac
19938         ;;
19939 esac
19940 val="$t_gdbm"
19941 set i_gdbm
19942 eval $setvar
19943
19944 echo " "
19945 echo "Looking for extensions..." >&4
19946 : If we are using the old config.sh, known_extensions may contain
19947 : old or inaccurate or duplicate values.
19948 known_extensions=''
19949 nonxs_extensions=''
19950 : We do not use find because it might not be available.
19951 : We do not just use MANIFEST because the user may have dropped
19952 : some additional extensions into the source tree and expect them
19953 : to be built.
19954
19955 : Function to recursively find available extensions, ignoring DynaLoader
19956 : NOTE: recursion limit of 10 to prevent runaway in case of symlink madness
19957 find_extensions='
19958     for xxx in *; do
19959        case "$xxx" in
19960            DynaLoader|dynaload) ;;
19961            *)
19962            if $test -f $xxx/$xxx.xs; then
19963                known_extensions="$known_extensions $1$xxx";
19964            elif $test -f $xxx/Makefile.PL; then
19965                nonxs_extensions="$nonxs_extensions $1$xxx";
19966            else
19967                if $test -d $xxx -a $# -lt 10; then
19968                    set $1$xxx/ $*;
19969                    cd "$xxx";
19970                    eval $find_extensions;
19971                    cd ..;
19972                    shift;
19973                fi;
19974            fi
19975            ;;
19976        esac;
19977     done'
19978 tdir=`pwd`
19979 cd "$rsrc/ext"
19980 set X
19981 shift
19982 eval $find_extensions
19983 # Special case:  Add in threads/shared since it is not picked up by the
19984 # recursive find above (and adding in general recursive finding breaks
19985 # SDBM_File/sdbm).  A.D.  10/25/2001.
19986 known_extensions="$known_extensions threads/shared"
19987 set X $nonxs_extensions
19988 shift
19989 nonxs_extensions="$*"
19990 set X $known_extensions
19991 shift
19992 known_extensions="$*"
19993 cd "$tdir"
19994
19995 : Now see which are supported on this system.
19996 avail_ext=''
19997 for xxx in $known_extensions ; do
19998         case "$xxx" in
19999         DB_File|db_file)
20000                 case "$i_db" in
20001                 $define) avail_ext="$avail_ext $xxx" ;;
20002                 esac
20003                 ;;
20004         GDBM_File|gdbm_fil)
20005                 case "$i_gdbm" in 
20006                 $define) avail_ext="$avail_ext $xxx" ;;
20007                 esac
20008                 ;;
20009         I18N/Langinfo|i18n_lan)
20010                 case "$i_langinfo$d_nl_langinfo" in 
20011                 $define$define) avail_ext="$avail_ext $xxx" ;;
20012                 esac
20013                 ;;
20014         NDBM_File|ndbm_fil)
20015                 case "$i_ndbm" in
20016                 $define)
20017                     case "$osname-$use64bitint" in
20018                     hpux-define)
20019                         case "$libs" in
20020                         *-lndbm*) avail_ext="$avail_ext $xxx" ;;
20021                         esac
20022                         ;;
20023                     *) avail_ext="$avail_ext $xxx" ;;
20024                     esac
20025                     ;;
20026                 esac
20027                 ;;
20028         ODBM_File|odbm_fil) 
20029                 case "${i_dbm}${i_rpcsvcdbm}" in
20030                 *"${define}"*)
20031                     case "$osname-$use64bitint" in
20032                     hpux-define)
20033                         case "$libs" in
20034                         *-ldbm*) avail_ext="$avail_ext $xxx" ;;
20035                         esac
20036                         ;;
20037                     *) avail_ext="$avail_ext $xxx" ;;
20038                     esac
20039                     ;;
20040                 esac
20041                 ;;
20042         POSIX|posix)
20043                 case "$useposix" in
20044                 true|define|y) avail_ext="$avail_ext $xxx" ;;
20045                 esac
20046                 ;;
20047         Opcode|opcode)
20048                 case "$useopcode" in
20049                 true|define|y) avail_ext="$avail_ext $xxx" ;;
20050                 esac
20051                 ;;
20052         Socket|socket)
20053                 case "$d_socket" in 
20054                 true|$define|y)
20055                     case "$osname" in
20056                     beos) ;; # not unless BONE
20057                     *) avail_ext="$avail_ext $xxx" ;;
20058                     esac
20059                     ;;
20060                 esac
20061                 ;;
20062         Sys/Syslog|sys/syslog)
20063                 : XXX syslog requires socket
20064                 case "$d_socket" in 
20065                 true|$define|y) avail_ext="$avail_ext $xxx" ;;
20066                 esac
20067                 ;;
20068         Thread|thread)
20069                 case "$usethreads" in
20070                 true|$define|y)
20071                         case "$useithreads" in
20072                         $undef|false|[nN]*) avail_ext="$avail_ext $xxx" ;;
20073                         esac
20074                 esac
20075                 ;;
20076         XS/APItest|xs/apitest)
20077                 # This is just for testing.  Skip it unless we have dynamic loading.
20078
20079                 case "$usedl" in
20080                 $define) avail_ext="$avail_ext $xxx" ;;
20081                 esac
20082                 ;;
20083         XS/Typemap|xs/typemap)
20084                 # This is just for testing.  Skip it unless we have dynamic loading.
20085                 case "$usedl" in
20086                 $define) avail_ext="$avail_ext $xxx" ;;
20087                 esac
20088                 ;;
20089         threads|threads/shared)
20090                 # threads and threads::shared are special cases.
20091                 # To stop people from asking "Perl 5.8.0 was supposed
20092                 # to have this new fancy threads implementation but my
20093                 # perl doesn't have it" and from people trying to
20094                 # (re)install the threads module using CPAN.pm and
20095                 # CPAN.pm then offering to reinstall Perl 5.8.0,
20096                 # the threads.pm and threads/shared.pm will always be
20097                 # there, croaking informatively ("you need to rebuild
20098                 # all of Perl with threads, sorry") when threads haven't
20099                 # been compiled in.
20100                 # --jhi
20101                 avail_ext="$avail_ext $xxx"
20102                 ;;
20103         IPC/SysV|ipc/sysv)
20104                 : XXX Do we need a useipcsysv variable here
20105                 case "${d_msg}${d_sem}${d_shm}" in 
20106                 *"${define}"*) avail_ext="$avail_ext $xxx" ;;
20107                 esac
20108                 ;;
20109         *)      avail_ext="$avail_ext $xxx"
20110                 ;;
20111         esac
20112 done
20113
20114 set X $avail_ext
20115 shift
20116 avail_ext="$*"
20117
20118 case "$onlyextensions" in
20119 '') ;;
20120 *)  keepextensions=''
20121     echo "You have requested that only certains extensions be included..." >&4
20122     for i in $onlyextensions; do
20123         case " $avail_ext " in
20124         *" $i "*)
20125             echo "Keeping extension $i."
20126             keepextensions="$keepextensions $i"
20127             ;;
20128         *) echo "Ignoring extension $i." ;;
20129         esac
20130     done
20131     avail_ext="$keepextensions"
20132     ;;
20133 esac
20134
20135 case "$noextensions" in
20136 '') ;;
20137 *)  keepextensions=''
20138     echo "You have requested that certain extensions be ignored..." >&4
20139     for i in $avail_ext; do
20140         case " $i " in
20141         " $noextensions ") echo "Ignoring extension $i." ;;
20142         *) echo "Keeping extension $i.";
20143            keepextensions="$keepextensions $i"
20144            ;;
20145         esac
20146     done
20147     avail_ext="$keepextensions"
20148     ;;
20149 esac
20150
20151 : Now see which nonxs extensions are supported on this system.
20152 : For now assume all are.
20153 nonxs_ext=''
20154 for xxx in $nonxs_extensions ; do
20155         case "$xxx" in
20156         *)      nonxs_ext="$nonxs_ext $xxx"
20157                 ;;
20158         esac
20159 done
20160
20161 set X $nonxs_ext
20162 shift
20163 nonxs_ext="$*"
20164
20165 case $usedl in
20166 $define)
20167         $cat <<EOM
20168 A number of extensions are supplied with $package.  You may choose to
20169 compile these extensions for dynamic loading (the default), compile
20170 them into the $package executable (static loading), or not include
20171 them at all.  Answer "none" to include no extensions.
20172 Note that DynaLoader is always built and need not be mentioned here.
20173
20174 EOM
20175         case "$dynamic_ext" in
20176         '')
20177                 : Exclude those listed in static_ext
20178                 dflt=''
20179                 for xxx in $avail_ext; do
20180                         case " $static_ext " in
20181                         *" $xxx "*) ;;
20182                         *) dflt="$dflt $xxx" ;;
20183                         esac
20184                 done
20185                 set X $dflt
20186                 shift
20187                 dflt="$*"
20188                 ;;
20189         *)      dflt="$dynamic_ext"
20190                 # Perhaps we are reusing an old out-of-date config.sh.
20191                 case "$hint" in
20192                 previous)
20193                         if test X"$dynamic_ext" != X"$avail_ext"; then
20194                                 $cat <<EOM
20195 NOTICE:  Your previous config.sh list may be incorrect. 
20196 The extensions now available to you are 
20197         ${avail_ext}
20198 but the default list from your previous config.sh is
20199         ${dynamic_ext} 
20200
20201 EOM
20202                         fi
20203                         ;;
20204                 esac
20205                 ;;
20206         esac
20207         case "$dflt" in
20208         '')     dflt=none;;
20209         esac
20210         rp="What extensions do you wish to load dynamically?"
20211         . ./myread
20212         case "$ans" in
20213         none) dynamic_ext=' ' ;;
20214         *) dynamic_ext="$ans" ;;
20215         esac
20216
20217         case "$static_ext" in
20218         '')
20219                 : Exclude those already listed in dynamic linking
20220                 dflt=''
20221                 for xxx in $avail_ext; do
20222                         case " $dynamic_ext " in
20223                         *" $xxx "*) ;;
20224                         *) dflt="$dflt $xxx" ;;
20225                         esac
20226                 done
20227                 set X $dflt
20228                 shift
20229                 dflt="$*"
20230                 ;;
20231         *)  dflt="$static_ext" 
20232                 ;;
20233         esac
20234
20235         case "$dflt" in
20236         '')     dflt=none;;
20237         esac
20238         rp="What extensions do you wish to load statically?"
20239         . ./myread
20240         case "$ans" in
20241         none) static_ext=' ' ;;
20242         *) static_ext="$ans" ;;
20243         esac
20244         ;;
20245 *)
20246         $cat <<EOM
20247 A number of extensions are supplied with $package.  Answer "none" 
20248 to include no extensions. 
20249 Note that DynaLoader is always built and need not be mentioned here.
20250
20251 EOM
20252         case "$static_ext" in
20253         '') dflt="$avail_ext" ;;
20254         *)      dflt="$static_ext"
20255                 # Perhaps we are reusing an old out-of-date config.sh.
20256                 case "$hint" in
20257                 previous)
20258                         if test X"$static_ext" != X"$avail_ext"; then
20259                                 $cat <<EOM
20260 NOTICE:  Your previous config.sh list may be incorrect. 
20261 The extensions now available to you are 
20262         ${avail_ext}
20263 but the default list from your previous config.sh is
20264         ${static_ext} 
20265
20266 EOM
20267                         fi
20268                         ;;
20269                 esac
20270                 ;;
20271         esac
20272         : Exclude those that are not xs extensions
20273         case "$dflt" in
20274         '')     dflt=none;;
20275         esac
20276         rp="What extensions do you wish to include?"
20277         . ./myread
20278         case "$ans" in
20279         none) static_ext=' ' ;;
20280         *) static_ext="$ans" ;;
20281         esac
20282         ;;
20283 esac
20284 #        
20285 # Encode is a special case.  If we are building Encode as a static
20286 # extension, we need to explicitly list its subextensions as well.
20287 # For other nested extensions, this is handled automatically by
20288 # the appropriate Makefile.PL.
20289 case " $static_ext " in
20290         *" Encode "*) # Add the subextensions of Encode
20291         cd "$rsrc/ext"
20292         for xxx in `ls Encode/*/Makefile.PL|awk -F/ '{print $2}'`; do
20293                 static_ext="$static_ext Encode/$xxx"
20294         done
20295         cd "$tdir"
20296         ;;
20297 esac
20298
20299 set X $dynamic_ext $static_ext $nonxs_ext
20300 shift
20301 extensions="$*"
20302
20303 # Sanity check:  We require an extension suitable for use with
20304 # AnyDBM_File, as well as Fcntl and IO.  (Failure to have these
20305 # should show up as failures in the test suite, but it's helpful to
20306 # catch them now.) The 'extensions' list is normally sorted
20307 # alphabetically, so we need to accept either
20308 #    DB_File ... Fcntl ... IO  ....
20309 # or something like
20310 #    Fcntl ... NDBM_File ... IO  ....
20311 case "$extensions" in
20312 *"_File "*" Fcntl "*" IO "*) ;;
20313 *" Fcntl "*"_File "*" IO "*) ;;
20314 *) echo "WARNING: Extensions DB_File or *DBM_File, Fcntl, and IO not configured." >&4
20315    echo "WARNING: The Perl you are building will be quite crippled." >& 4
20316    ;;
20317 esac
20318
20319 : Remove libraries needed only for extensions
20320 : The appropriate ext/Foo/Makefile.PL will add them back in, if necessary.
20321 : The exception is SunOS 4.x, which needs them.
20322 case "${osname}X${osvers}" in
20323 sunos*X4*)
20324     perllibs="$libs"
20325     ;;
20326 *) case "$usedl" in
20327     $define|true|[yY]*)
20328             set X `echo " $libs " | sed -e 's@ -lndbm @ @' -e 's@ -lgdbm @ @' -e 's@ -ldbm @ @' -e 's@ -ldb @ @'` 
20329             shift
20330             perllibs="$*"
20331             ;;
20332     *)  perllibs="$libs"
20333             ;;
20334     esac
20335     ;;
20336 esac
20337
20338 : Remove build directory name from cppstdin so it can be used from
20339 : either the present location or the final installed location.
20340 echo " "
20341 : Get out of the UU directory to get correct path name.
20342 cd ..
20343 case "$cppstdin" in
20344 `pwd`/cppstdin)
20345         echo "Stripping down cppstdin path name"
20346         cppstdin=cppstdin
20347         ;;
20348 esac
20349 cd UU
20350
20351 : end of configuration questions
20352 echo " "
20353 echo "End of configuration questions."
20354 echo " "
20355
20356 : back to where it started
20357 if test -d ../UU; then
20358         cd ..
20359 fi
20360
20361 : configuration may be patched via a 'config.arch' file
20362 if $test -f config.arch; then
20363         echo "I see a config.arch file, loading it."
20364         . ./config.arch
20365 fi
20366
20367 : configuration may be patched via a 'config.over' file
20368 if $test -f config.over; then
20369         echo " "
20370         dflt=y
20371         rp='I see a config.over file.  Do you wish to load it?'
20372         . UU/myread
20373         case "$ans" in
20374         n*) echo "OK, I'll ignore it.";;
20375         *)      . ./config.over
20376                 echo "Configuration override changes have been loaded."
20377                 ;;
20378         esac
20379 fi
20380
20381 : in case they want portability, strip down executable paths
20382 case "$d_portable" in
20383 "$define")
20384         echo " "
20385         echo "Stripping down executable paths..." >&4
20386         for file in $loclist $trylist; do
20387                 eval temp=\$$file
20388                 eval $file=`basename $temp`
20389         done
20390         ;;
20391 esac
20392
20393 : create config.sh file
20394 echo " "
20395 echo "Creating config.sh..." >&4
20396 $spitshell <<EOT >config.sh
20397 $startsh
20398 #
20399 # This file was produced by running the Configure script. It holds all the
20400 # definitions figured out by Configure. Should you modify one of these values,
20401 # do not forget to propagate your changes by running "Configure -der". You may
20402 # instead choose to run each of the .SH files by yourself, or "Configure -S".
20403 #
20404
20405 # Package name      : $package
20406 # Source directory  : $src
20407 # Configuration time: $cf_time
20408 # Configured by     : $cf_by
20409 # Target system     : $myuname
20410
20411 Author='$Author'
20412 Date='$Date'
20413 Header='$Header'
20414 Id='$Id'
20415 Locker='$Locker'
20416 Log='$Log'
20417 Mcc='$Mcc'
20418 RCSfile='$RCSfile'
20419 Revision='$Revision'
20420 Source='$Source'
20421 State='$State'
20422 _a='$_a'
20423 _exe='$_exe'
20424 _o='$_o'
20425 afs='$afs'
20426 afsroot='$afsroot'
20427 alignbytes='$alignbytes'
20428 ansi2knr='$ansi2knr'
20429 aphostname='$aphostname'
20430 api_revision='$api_revision'
20431 api_subversion='$api_subversion'
20432 api_version='$api_version'
20433 api_versionstring='$api_versionstring'
20434 ar='$ar'
20435 archlib='$archlib'
20436 archlibexp='$archlibexp'
20437 archname64='$archname64'
20438 archname='$archname'
20439 archobjs='$archobjs'
20440 asctime_r_proto='$asctime_r_proto'
20441 awk='$awk'
20442 baserev='$baserev'
20443 bash='$bash'
20444 bin='$bin'
20445 binexp='$binexp'
20446 bison='$bison'
20447 byacc='$byacc'
20448 byteorder='$byteorder'
20449 c='$c'
20450 castflags='$castflags'
20451 cat='$cat'
20452 cc='$cc'
20453 cccdlflags='$cccdlflags'
20454 ccdlflags='$ccdlflags'
20455 ccflags='$ccflags'
20456 ccflags_uselargefiles='$ccflags_uselargefiles'
20457 ccname='$ccname'
20458 ccsymbols='$ccsymbols'
20459 ccversion='$ccversion'
20460 cf_by='$cf_by'
20461 cf_email='$cf_email'
20462 cf_time='$cf_time'
20463 charsize='$charsize'
20464 chgrp='$chgrp'
20465 chmod='$chmod'
20466 chown='$chown'
20467 clocktype='$clocktype'
20468 comm='$comm'
20469 compress='$compress'
20470 contains='$contains'
20471 cp='$cp'
20472 cpio='$cpio'
20473 cpp='$cpp'
20474 cpp_stuff='$cpp_stuff'
20475 cppccsymbols='$cppccsymbols'
20476 cppflags='$cppflags'
20477 cpplast='$cpplast'
20478 cppminus='$cppminus'
20479 cpprun='$cpprun'
20480 cppstdin='$cppstdin'
20481 cppsymbols='$cppsymbols'
20482 crypt_r_proto='$crypt_r_proto'
20483 cryptlib='$cryptlib'
20484 csh='$csh'
20485 ctermid_r_proto='$ctermid_r_proto'
20486 ctime_r_proto='$ctime_r_proto'
20487 d_Gconvert='$d_Gconvert'
20488 d_PRIEUldbl='$d_PRIEUldbl'
20489 d_PRIFUldbl='$d_PRIFUldbl'
20490 d_PRIGUldbl='$d_PRIGUldbl'
20491 d_PRIXU64='$d_PRIXU64'
20492 d_PRId64='$d_PRId64'
20493 d_PRIeldbl='$d_PRIeldbl'
20494 d_PRIfldbl='$d_PRIfldbl'
20495 d_PRIgldbl='$d_PRIgldbl'
20496 d_PRIi64='$d_PRIi64'
20497 d_PRIo64='$d_PRIo64'
20498 d_PRIu64='$d_PRIu64'
20499 d_PRIx64='$d_PRIx64'
20500 d_SCNfldbl='$d_SCNfldbl'
20501 d__fwalk='$d__fwalk'
20502 d_access='$d_access'
20503 d_accessx='$d_accessx'
20504 d_aintl='$d_aintl'
20505 d_alarm='$d_alarm'
20506 d_archlib='$d_archlib'
20507 d_asctime_r='$d_asctime_r'
20508 d_atolf='$d_atolf'
20509 d_atoll='$d_atoll'
20510 d_attribut='$d_attribut'
20511 d_bcmp='$d_bcmp'
20512 d_bcopy='$d_bcopy'
20513 d_bsd='$d_bsd'
20514 d_bsdgetpgrp='$d_bsdgetpgrp'
20515 d_bsdsetpgrp='$d_bsdsetpgrp'
20516 d_bzero='$d_bzero'
20517 d_casti32='$d_casti32'
20518 d_castneg='$d_castneg'
20519 d_charvspr='$d_charvspr'
20520 d_chown='$d_chown'
20521 d_chroot='$d_chroot'
20522 d_chsize='$d_chsize'
20523 d_class='$d_class'
20524 d_closedir='$d_closedir'
20525 d_cmsghdr_s='$d_cmsghdr_s'
20526 d_const='$d_const'
20527 d_copysignl='$d_copysignl'
20528 d_crypt='$d_crypt'
20529 d_crypt_r='$d_crypt_r'
20530 d_csh='$d_csh'
20531 d_ctermid_r='$d_ctermid_r'
20532 d_ctime_r='$d_ctime_r'
20533 d_cuserid='$d_cuserid'
20534 d_dbl_dig='$d_dbl_dig'
20535 d_dbminitproto='$d_dbminitproto'
20536 d_difftime='$d_difftime'
20537 d_dirfd='$d_dirfd'
20538 d_dirnamlen='$d_dirnamlen'
20539 d_dlerror='$d_dlerror'
20540 d_dlopen='$d_dlopen'
20541 d_dlsymun='$d_dlsymun'
20542 d_dosuid='$d_dosuid'
20543 d_drand48_r='$d_drand48_r'
20544 d_drand48proto='$d_drand48proto'
20545 d_dup2='$d_dup2'
20546 d_eaccess='$d_eaccess'
20547 d_endgrent='$d_endgrent'
20548 d_endgrent_r='$d_endgrent_r'
20549 d_endhent='$d_endhent'
20550 d_endhostent_r='$d_endhostent_r'
20551 d_endnent='$d_endnent'
20552 d_endnetent_r='$d_endnetent_r'
20553 d_endpent='$d_endpent'
20554 d_endprotoent_r='$d_endprotoent_r'
20555 d_endpwent='$d_endpwent'
20556 d_endpwent_r='$d_endpwent_r'
20557 d_endsent='$d_endsent'
20558 d_endservent_r='$d_endservent_r'
20559 d_eofnblk='$d_eofnblk'
20560 d_eunice='$d_eunice'
20561 d_faststdio='$d_faststdio'
20562 d_fchdir='$d_fchdir'
20563 d_fchmod='$d_fchmod'
20564 d_fchown='$d_fchown'
20565 d_fcntl='$d_fcntl'
20566 d_fcntl_can_lock='$d_fcntl_can_lock'
20567 d_fd_macros='$d_fd_macros'
20568 d_fd_set='$d_fd_set'
20569 d_fds_bits='$d_fds_bits'
20570 d_fgetpos='$d_fgetpos'
20571 d_finite='$d_finite'
20572 d_finitel='$d_finitel'
20573 d_flexfnam='$d_flexfnam'
20574 d_flock='$d_flock'
20575 d_flockproto='$d_flockproto'
20576 d_fork='$d_fork'
20577 d_fp_class='$d_fp_class'
20578 d_fpathconf='$d_fpathconf'
20579 d_fpclass='$d_fpclass'
20580 d_fpclassify='$d_fpclassify'
20581 d_fpclassl='$d_fpclassl'
20582 d_fpos64_t='$d_fpos64_t'
20583 d_frexpl='$d_frexpl'
20584 d_fs_data_s='$d_fs_data_s'
20585 d_fseeko='$d_fseeko'
20586 d_fsetpos='$d_fsetpos'
20587 d_fstatfs='$d_fstatfs'
20588 d_fstatvfs='$d_fstatvfs'
20589 d_fsync='$d_fsync'
20590 d_ftello='$d_ftello'
20591 d_ftime='$d_ftime'
20592 d_getcwd='$d_getcwd'
20593 d_getespwnam='$d_getespwnam'
20594 d_getfsstat='$d_getfsstat'
20595 d_getgrent='$d_getgrent'
20596 d_getgrent_r='$d_getgrent_r'
20597 d_getgrgid_r='$d_getgrgid_r'
20598 d_getgrnam_r='$d_getgrnam_r'
20599 d_getgrps='$d_getgrps'
20600 d_gethbyaddr='$d_gethbyaddr'
20601 d_gethbyname='$d_gethbyname'
20602 d_gethent='$d_gethent'
20603 d_gethname='$d_gethname'
20604 d_gethostbyaddr_r='$d_gethostbyaddr_r'
20605 d_gethostbyname_r='$d_gethostbyname_r'
20606 d_gethostent_r='$d_gethostent_r'
20607 d_gethostprotos='$d_gethostprotos'
20608 d_getitimer='$d_getitimer'
20609 d_getlogin='$d_getlogin'
20610 d_getlogin_r='$d_getlogin_r'
20611 d_getmnt='$d_getmnt'
20612 d_getmntent='$d_getmntent'
20613 d_getnbyaddr='$d_getnbyaddr'
20614 d_getnbyname='$d_getnbyname'
20615 d_getnent='$d_getnent'
20616 d_getnetbyaddr_r='$d_getnetbyaddr_r'
20617 d_getnetbyname_r='$d_getnetbyname_r'
20618 d_getnetent_r='$d_getnetent_r'
20619 d_getnetprotos='$d_getnetprotos'
20620 d_getpagsz='$d_getpagsz'
20621 d_getpbyname='$d_getpbyname'
20622 d_getpbynumber='$d_getpbynumber'
20623 d_getpent='$d_getpent'
20624 d_getpgid='$d_getpgid'
20625 d_getpgrp2='$d_getpgrp2'
20626 d_getpgrp='$d_getpgrp'
20627 d_getppid='$d_getppid'
20628 d_getprior='$d_getprior'
20629 d_getprotobyname_r='$d_getprotobyname_r'
20630 d_getprotobynumber_r='$d_getprotobynumber_r'
20631 d_getprotoent_r='$d_getprotoent_r'
20632 d_getprotoprotos='$d_getprotoprotos'
20633 d_getprpwnam='$d_getprpwnam'
20634 d_getpwent='$d_getpwent'
20635 d_getpwent_r='$d_getpwent_r'
20636 d_getpwnam_r='$d_getpwnam_r'
20637 d_getpwuid_r='$d_getpwuid_r'
20638 d_getsbyname='$d_getsbyname'
20639 d_getsbyport='$d_getsbyport'
20640 d_getsent='$d_getsent'
20641 d_getservbyname_r='$d_getservbyname_r'
20642 d_getservbyport_r='$d_getservbyport_r'
20643 d_getservent_r='$d_getservent_r'
20644 d_getservprotos='$d_getservprotos'
20645 d_getspnam='$d_getspnam'
20646 d_getspnam_r='$d_getspnam_r'
20647 d_gettimeod='$d_gettimeod'
20648 d_gmtime_r='$d_gmtime_r'
20649 d_gnulibc='$d_gnulibc'
20650 d_grpasswd='$d_grpasswd'
20651 d_hasmntopt='$d_hasmntopt'
20652 d_htonl='$d_htonl'
20653 d_ilogbl='$d_ilogbl'
20654 d_index='$d_index'
20655 d_inetaton='$d_inetaton'
20656 d_int64_t='$d_int64_t'
20657 d_isascii='$d_isascii'
20658 d_isfinite='$d_isfinite'
20659 d_isinf='$d_isinf'
20660 d_isnan='$d_isnan'
20661 d_isnanl='$d_isnanl'
20662 d_killpg='$d_killpg'
20663 d_lchown='$d_lchown'
20664 d_ldbl_dig='$d_ldbl_dig'
20665 d_link='$d_link'
20666 d_localtime_r='$d_localtime_r'
20667 d_locconv='$d_locconv'
20668 d_lockf='$d_lockf'
20669 d_longdbl='$d_longdbl'
20670 d_longlong='$d_longlong'
20671 d_lseekproto='$d_lseekproto'
20672 d_lstat='$d_lstat'
20673 d_madvise='$d_madvise'
20674 d_mblen='$d_mblen'
20675 d_mbstowcs='$d_mbstowcs'
20676 d_mbtowc='$d_mbtowc'
20677 d_memchr='$d_memchr'
20678 d_memcmp='$d_memcmp'
20679 d_memcpy='$d_memcpy'
20680 d_memmove='$d_memmove'
20681 d_memset='$d_memset'
20682 d_mkdir='$d_mkdir'
20683 d_mkdtemp='$d_mkdtemp'
20684 d_mkfifo='$d_mkfifo'
20685 d_mkstemp='$d_mkstemp'
20686 d_mkstemps='$d_mkstemps'
20687 d_mktime='$d_mktime'
20688 d_mmap='$d_mmap'
20689 d_modfl='$d_modfl'
20690 d_modfl_pow32_bug='$d_modfl_pow32_bug'
20691 d_modflproto='$d_modflproto'
20692 d_mprotect='$d_mprotect'
20693 d_msg='$d_msg'
20694 d_msg_ctrunc='$d_msg_ctrunc'
20695 d_msg_dontroute='$d_msg_dontroute'
20696 d_msg_oob='$d_msg_oob'
20697 d_msg_peek='$d_msg_peek'
20698 d_msg_proxy='$d_msg_proxy'
20699 d_msgctl='$d_msgctl'
20700 d_msgget='$d_msgget'
20701 d_msghdr_s='$d_msghdr_s'
20702 d_msgrcv='$d_msgrcv'
20703 d_msgsnd='$d_msgsnd'
20704 d_msync='$d_msync'
20705 d_munmap='$d_munmap'
20706 d_mymalloc='$d_mymalloc'
20707 d_nanosleep='$d_nanosleep'
20708 d_nice='$d_nice'
20709 d_nl_langinfo='$d_nl_langinfo'
20710 d_nv_preserves_uv='$d_nv_preserves_uv'
20711 d_off64_t='$d_off64_t'
20712 d_old_pthread_create_joinable='$d_old_pthread_create_joinable'
20713 d_oldpthreads='$d_oldpthreads'
20714 d_oldsock='$d_oldsock'
20715 d_open3='$d_open3'
20716 d_pathconf='$d_pathconf'
20717 d_pause='$d_pause'
20718 d_perl_otherlibdirs='$d_perl_otherlibdirs'
20719 d_phostname='$d_phostname'
20720 d_pipe='$d_pipe'
20721 d_poll='$d_poll'
20722 d_portable='$d_portable'
20723 d_procselfexe='$d_procselfexe'
20724 d_pthread_atfork='$d_pthread_atfork'
20725 d_pthread_yield='$d_pthread_yield'
20726 d_pwage='$d_pwage'
20727 d_pwchange='$d_pwchange'
20728 d_pwclass='$d_pwclass'
20729 d_pwcomment='$d_pwcomment'
20730 d_pwexpire='$d_pwexpire'
20731 d_pwgecos='$d_pwgecos'
20732 d_pwpasswd='$d_pwpasswd'
20733 d_pwquota='$d_pwquota'
20734 d_qgcvt='$d_qgcvt'
20735 d_quad='$d_quad'
20736 d_random_r='$d_random_r'
20737 d_readdir64_r='$d_readdir64_r'
20738 d_readdir='$d_readdir'
20739 d_readdir_r='$d_readdir_r'
20740 d_readlink='$d_readlink'
20741 d_readv='$d_readv'
20742 d_recvmsg='$d_recvmsg'
20743 d_rename='$d_rename'
20744 d_rewinddir='$d_rewinddir'
20745 d_rmdir='$d_rmdir'
20746 d_safebcpy='$d_safebcpy'
20747 d_safemcpy='$d_safemcpy'
20748 d_sanemcmp='$d_sanemcmp'
20749 d_sbrkproto='$d_sbrkproto'
20750 d_scalbnl='$d_scalbnl'
20751 d_sched_yield='$d_sched_yield'
20752 d_scm_rights='$d_scm_rights'
20753 d_seekdir='$d_seekdir'
20754 d_select='$d_select'
20755 d_sem='$d_sem'
20756 d_semctl='$d_semctl'
20757 d_semctl_semid_ds='$d_semctl_semid_ds'
20758 d_semctl_semun='$d_semctl_semun'
20759 d_semget='$d_semget'
20760 d_semop='$d_semop'
20761 d_sendmsg='$d_sendmsg'
20762 d_setegid='$d_setegid'
20763 d_seteuid='$d_seteuid'
20764 d_setgrent='$d_setgrent'
20765 d_setgrent_r='$d_setgrent_r'
20766 d_setgrps='$d_setgrps'
20767 d_sethent='$d_sethent'
20768 d_sethostent_r='$d_sethostent_r'
20769 d_setitimer='$d_setitimer'
20770 d_setlinebuf='$d_setlinebuf'
20771 d_setlocale='$d_setlocale'
20772 d_setlocale_r='$d_setlocale_r'
20773 d_setnent='$d_setnent'
20774 d_setnetent_r='$d_setnetent_r'
20775 d_setpent='$d_setpent'
20776 d_setpgid='$d_setpgid'
20777 d_setpgrp2='$d_setpgrp2'
20778 d_setpgrp='$d_setpgrp'
20779 d_setprior='$d_setprior'
20780 d_setproctitle='$d_setproctitle'
20781 d_setprotoent_r='$d_setprotoent_r'
20782 d_setpwent='$d_setpwent'
20783 d_setpwent_r='$d_setpwent_r'
20784 d_setregid='$d_setregid'
20785 d_setresgid='$d_setresgid'
20786 d_setresuid='$d_setresuid'
20787 d_setreuid='$d_setreuid'
20788 d_setrgid='$d_setrgid'
20789 d_setruid='$d_setruid'
20790 d_setsent='$d_setsent'
20791 d_setservent_r='$d_setservent_r'
20792 d_setsid='$d_setsid'
20793 d_setvbuf='$d_setvbuf'
20794 d_sfio='$d_sfio'
20795 d_shm='$d_shm'
20796 d_shmat='$d_shmat'
20797 d_shmatprototype='$d_shmatprototype'
20798 d_shmctl='$d_shmctl'
20799 d_shmdt='$d_shmdt'
20800 d_shmget='$d_shmget'
20801 d_sigaction='$d_sigaction'
20802 d_sigprocmask='$d_sigprocmask'
20803 d_sigsetjmp='$d_sigsetjmp'
20804 d_sockatmark='$d_sockatmark'
20805 d_sockatmarkproto='$d_sockatmarkproto'
20806 d_socket='$d_socket'
20807 d_socklen_t='$d_socklen_t'
20808 d_sockpair='$d_sockpair'
20809 d_socks5_init='$d_socks5_init'
20810 d_sqrtl='$d_sqrtl'
20811 d_srand48_r='$d_srand48_r'
20812 d_srandom_r='$d_srandom_r'
20813 d_sresgproto='$d_sresgproto'
20814 d_sresuproto='$d_sresuproto'
20815 d_statblks='$d_statblks'
20816 d_statfs_f_flags='$d_statfs_f_flags'
20817 d_statfs_s='$d_statfs_s'
20818 d_statvfs='$d_statvfs'
20819 d_stdio_cnt_lval='$d_stdio_cnt_lval'
20820 d_stdio_ptr_lval='$d_stdio_ptr_lval'
20821 d_stdio_ptr_lval_nochange_cnt='$d_stdio_ptr_lval_nochange_cnt'
20822 d_stdio_ptr_lval_sets_cnt='$d_stdio_ptr_lval_sets_cnt'
20823 d_stdio_stream_array='$d_stdio_stream_array'
20824 d_stdiobase='$d_stdiobase'
20825 d_stdstdio='$d_stdstdio'
20826 d_strchr='$d_strchr'
20827 d_strcoll='$d_strcoll'
20828 d_strctcpy='$d_strctcpy'
20829 d_strerrm='$d_strerrm'
20830 d_strerror='$d_strerror'
20831 d_strerror_r='$d_strerror_r'
20832 d_strftime='$d_strftime'
20833 d_strtod='$d_strtod'
20834 d_strtol='$d_strtol'
20835 d_strtold='$d_strtold'
20836 d_strtoll='$d_strtoll'
20837 d_strtoq='$d_strtoq'
20838 d_strtoul='$d_strtoul'
20839 d_strtoull='$d_strtoull'
20840 d_strtouq='$d_strtouq'
20841 d_strxfrm='$d_strxfrm'
20842 d_suidsafe='$d_suidsafe'
20843 d_symlink='$d_symlink'
20844 d_syscall='$d_syscall'
20845 d_syscallproto='$d_syscallproto'
20846 d_sysconf='$d_sysconf'
20847 d_sysernlst='$d_sysernlst'
20848 d_syserrlst='$d_syserrlst'
20849 d_system='$d_system'
20850 d_tcgetpgrp='$d_tcgetpgrp'
20851 d_tcsetpgrp='$d_tcsetpgrp'
20852 d_telldir='$d_telldir'
20853 d_telldirproto='$d_telldirproto'
20854 d_time='$d_time'
20855 d_times='$d_times'
20856 d_tm_tm_gmtoff='$d_tm_tm_gmtoff'
20857 d_tm_tm_zone='$d_tm_tm_zone'
20858 d_tmpnam_r='$d_tmpnam_r'
20859 d_truncate='$d_truncate'
20860 d_ttyname_r='$d_ttyname_r'
20861 d_tzname='$d_tzname'
20862 d_u32align='$d_u32align'
20863 d_ualarm='$d_ualarm'
20864 d_umask='$d_umask'
20865 d_uname='$d_uname'
20866 d_union_semun='$d_union_semun'
20867 d_unordered='$d_unordered'
20868 d_usleep='$d_usleep'
20869 d_usleepproto='$d_usleepproto'
20870 d_ustat='$d_ustat'
20871 d_vendorarch='$d_vendorarch'
20872 d_vendorbin='$d_vendorbin'
20873 d_vendorlib='$d_vendorlib'
20874 d_vendorscript='$d_vendorscript'
20875 d_vfork='$d_vfork'
20876 d_void_closedir='$d_void_closedir'
20877 d_voidsig='$d_voidsig'
20878 d_voidtty='$d_voidtty'
20879 d_volatile='$d_volatile'
20880 d_vprintf='$d_vprintf'
20881 d_wait4='$d_wait4'
20882 d_waitpid='$d_waitpid'
20883 d_wcstombs='$d_wcstombs'
20884 d_wctomb='$d_wctomb'
20885 d_writev='$d_writev'
20886 d_xenix='$d_xenix'
20887 date='$date'
20888 db_hashtype='$db_hashtype'
20889 db_prefixtype='$db_prefixtype'
20890 db_version_major='$db_version_major'
20891 db_version_minor='$db_version_minor'
20892 db_version_patch='$db_version_patch'
20893 defvoidused='$defvoidused'
20894 direntrytype='$direntrytype'
20895 dlext='$dlext'
20896 dlsrc='$dlsrc'
20897 doublesize='$doublesize'
20898 drand01='$drand01'
20899 drand48_r_proto='$drand48_r_proto'
20900 dynamic_ext='$dynamic_ext'
20901 eagain='$eagain'
20902 ebcdic='$ebcdic'
20903 echo='$echo'
20904 egrep='$egrep'
20905 emacs='$emacs'
20906 endgrent_r_proto='$endgrent_r_proto'
20907 endhostent_r_proto='$endhostent_r_proto'
20908 endnetent_r_proto='$endnetent_r_proto'
20909 endprotoent_r_proto='$endprotoent_r_proto'
20910 endpwent_r_proto='$endpwent_r_proto'
20911 endservent_r_proto='$endservent_r_proto'
20912 eunicefix='$eunicefix'
20913 exe_ext='$exe_ext'
20914 expr='$expr'
20915 extensions='$extensions'
20916 extras='$extras'
20917 fflushNULL='$fflushNULL'
20918 fflushall='$fflushall'
20919 find='$find'
20920 firstmakefile='$firstmakefile'
20921 flex='$flex'
20922 fpossize='$fpossize'
20923 fpostype='$fpostype'
20924 freetype='$freetype'
20925 from='$from'
20926 full_ar='$full_ar'
20927 full_csh='$full_csh'
20928 full_sed='$full_sed'
20929 gccansipedantic='$gccansipedantic'
20930 gccosandvers='$gccosandvers'
20931 gccversion='$gccversion'
20932 getgrent_r_proto='$getgrent_r_proto'
20933 getgrgid_r_proto='$getgrgid_r_proto'
20934 getgrnam_r_proto='$getgrnam_r_proto'
20935 gethostbyaddr_r_proto='$gethostbyaddr_r_proto'
20936 gethostbyname_r_proto='$gethostbyname_r_proto'
20937 gethostent_r_proto='$gethostent_r_proto'
20938 getlogin_r_proto='$getlogin_r_proto'
20939 getnetbyaddr_r_proto='$getnetbyaddr_r_proto'
20940 getnetbyname_r_proto='$getnetbyname_r_proto'
20941 getnetent_r_proto='$getnetent_r_proto'
20942 getprotobyname_r_proto='$getprotobyname_r_proto'
20943 getprotobynumber_r_proto='$getprotobynumber_r_proto'
20944 getprotoent_r_proto='$getprotoent_r_proto'
20945 getpwent_r_proto='$getpwent_r_proto'
20946 getpwnam_r_proto='$getpwnam_r_proto'
20947 getpwuid_r_proto='$getpwuid_r_proto'
20948 getservbyname_r_proto='$getservbyname_r_proto'
20949 getservbyport_r_proto='$getservbyport_r_proto'
20950 getservent_r_proto='$getservent_r_proto'
20951 getspnam_r_proto='$getspnam_r_proto'
20952 gidformat='$gidformat'
20953 gidsign='$gidsign'
20954 gidsize='$gidsize'
20955 gidtype='$gidtype'
20956 glibpth='$glibpth'
20957 gmake='$gmake'
20958 gmtime_r_proto='$gmtime_r_proto'
20959 gnulibc_version='$gnulibc_version'
20960 grep='$grep'
20961 groupcat='$groupcat'
20962 groupstype='$groupstype'
20963 gzip='$gzip'
20964 h_fcntl='$h_fcntl'
20965 h_sysfile='$h_sysfile'
20966 hint='$hint'
20967 hostcat='$hostcat'
20968 html1dir='$html1dir'
20969 html1direxp='$html1direxp'
20970 html3dir='$html3dir'
20971 html3direxp='$html3direxp'
20972 i16size='$i16size'
20973 i16type='$i16type'
20974 i32size='$i32size'
20975 i32type='$i32type'
20976 i64size='$i64size'
20977 i64type='$i64type'
20978 i8size='$i8size'
20979 i8type='$i8type'
20980 i_arpainet='$i_arpainet'
20981 i_bsdioctl='$i_bsdioctl'
20982 i_crypt='$i_crypt'
20983 i_db='$i_db'
20984 i_dbm='$i_dbm'
20985 i_dirent='$i_dirent'
20986 i_dld='$i_dld'
20987 i_dlfcn='$i_dlfcn'
20988 i_fcntl='$i_fcntl'
20989 i_float='$i_float'
20990 i_fp='$i_fp'
20991 i_fp_class='$i_fp_class'
20992 i_gdbm='$i_gdbm'
20993 i_grp='$i_grp'
20994 i_ieeefp='$i_ieeefp'
20995 i_inttypes='$i_inttypes'
20996 i_langinfo='$i_langinfo'
20997 i_libutil='$i_libutil'
20998 i_limits='$i_limits'
20999 i_locale='$i_locale'
21000 i_machcthr='$i_machcthr'
21001 i_malloc='$i_malloc'
21002 i_math='$i_math'
21003 i_memory='$i_memory'
21004 i_mntent='$i_mntent'
21005 i_ndbm='$i_ndbm'
21006 i_netdb='$i_netdb'
21007 i_neterrno='$i_neterrno'
21008 i_netinettcp='$i_netinettcp'
21009 i_niin='$i_niin'
21010 i_poll='$i_poll'
21011 i_prot='$i_prot'
21012 i_pthread='$i_pthread'
21013 i_pwd='$i_pwd'
21014 i_rpcsvcdbm='$i_rpcsvcdbm'
21015 i_sfio='$i_sfio'
21016 i_sgtty='$i_sgtty'
21017 i_shadow='$i_shadow'
21018 i_socks='$i_socks'
21019 i_stdarg='$i_stdarg'
21020 i_stddef='$i_stddef'
21021 i_stdlib='$i_stdlib'
21022 i_string='$i_string'
21023 i_sunmath='$i_sunmath'
21024 i_sysaccess='$i_sysaccess'
21025 i_sysdir='$i_sysdir'
21026 i_sysfile='$i_sysfile'
21027 i_sysfilio='$i_sysfilio'
21028 i_sysin='$i_sysin'
21029 i_sysioctl='$i_sysioctl'
21030 i_syslog='$i_syslog'
21031 i_sysmman='$i_sysmman'
21032 i_sysmode='$i_sysmode'
21033 i_sysmount='$i_sysmount'
21034 i_sysndir='$i_sysndir'
21035 i_sysparam='$i_sysparam'
21036 i_sysresrc='$i_sysresrc'
21037 i_syssecrt='$i_syssecrt'
21038 i_sysselct='$i_sysselct'
21039 i_syssockio='$i_syssockio'
21040 i_sysstat='$i_sysstat'
21041 i_sysstatfs='$i_sysstatfs'
21042 i_sysstatvfs='$i_sysstatvfs'
21043 i_systime='$i_systime'
21044 i_systimek='$i_systimek'
21045 i_systimes='$i_systimes'
21046 i_systypes='$i_systypes'
21047 i_sysuio='$i_sysuio'
21048 i_sysun='$i_sysun'
21049 i_sysutsname='$i_sysutsname'
21050 i_sysvfs='$i_sysvfs'
21051 i_syswait='$i_syswait'
21052 i_termio='$i_termio'
21053 i_termios='$i_termios'
21054 i_time='$i_time'
21055 i_unistd='$i_unistd'
21056 i_ustat='$i_ustat'
21057 i_utime='$i_utime'
21058 i_values='$i_values'
21059 i_varargs='$i_varargs'
21060 i_varhdr='$i_varhdr'
21061 i_vfork='$i_vfork'
21062 ignore_versioned_solibs='$ignore_versioned_solibs'
21063 inc_version_list='$inc_version_list'
21064 inc_version_list_init='$inc_version_list_init'
21065 incpath='$incpath'
21066 inews='$inews'
21067 installarchlib='$installarchlib'
21068 installbin='$installbin'
21069 installhtml1dir='$installhtml1dir'
21070 installhtml3dir='$installhtml3dir'
21071 installman1dir='$installman1dir'
21072 installman3dir='$installman3dir'
21073 installprefix='$installprefix'
21074 installprefixexp='$installprefixexp'
21075 installprivlib='$installprivlib'
21076 installscript='$installscript'
21077 installsitearch='$installsitearch'
21078 installsitebin='$installsitebin'
21079 installsitehtml1='$installsitehtml1'
21080 installsitehtml3='$installsitehtml3'
21081 installsitelib='$installsitelib'
21082 installsiteman1='$installsiteman1'
21083 installsiteman3='$installsiteman3'
21084 installsitescript='$installsitescript'
21085 installstyle='$installstyle'
21086 installusrbinperl='$installusrbinperl'
21087 installvendorarch='$installvendorarch'
21088 installvendorbin='$installvendorbin'
21089 installvendorhtml1='$installvendorhtml1'
21090 installvendorhtml3='$installvendorhtml3'
21091 installvendorlib='$installvendorlib'
21092 installvendorman1='$installvendorman1'
21093 installvendorman3='$installvendorman3'
21094 installvendorscript='$installvendorscript'
21095 intsize='$intsize'
21096 issymlink='$issymlink'
21097 ivdformat='$ivdformat'
21098 ivsize='$ivsize'
21099 ivtype='$ivtype'
21100 known_extensions='$known_extensions'
21101 ksh='$ksh'
21102 ld='$ld'
21103 lddlflags='$lddlflags'
21104 ldflags='$ldflags'
21105 ldflags_uselargefiles='$ldflags_uselargefiles'
21106 ldlibpthname='$ldlibpthname'
21107 less='$less'
21108 lib_ext='$lib_ext'
21109 libc='$libc'
21110 libperl='$libperl'
21111 libpth='$libpth'
21112 libs='$libs'
21113 libsdirs='$libsdirs'
21114 libsfiles='$libsfiles'
21115 libsfound='$libsfound'
21116 libspath='$libspath'
21117 libswanted='$libswanted'
21118 libswanted_uselargefiles='$libswanted_uselargefiles'
21119 line='$line'
21120 lint='$lint'
21121 lkflags='$lkflags'
21122 ln='$ln'
21123 lns='$lns'
21124 localtime_r_proto='$localtime_r_proto'
21125 locincpth='$locincpth'
21126 loclibpth='$loclibpth'
21127 longdblsize='$longdblsize'
21128 longlongsize='$longlongsize'
21129 longsize='$longsize'
21130 lp='$lp'
21131 lpr='$lpr'
21132 ls='$ls'
21133 lseeksize='$lseeksize'
21134 lseektype='$lseektype'
21135 mail='$mail'
21136 mailx='$mailx'
21137 make='$make'
21138 make_set_make='$make_set_make'
21139 mallocobj='$mallocobj'
21140 mallocsrc='$mallocsrc'
21141 malloctype='$malloctype'
21142 man1dir='$man1dir'
21143 man1direxp='$man1direxp'
21144 man1ext='$man1ext'
21145 man3dir='$man3dir'
21146 man3direxp='$man3direxp'
21147 man3ext='$man3ext'
21148 mips_type='$mips_type'
21149 mkdir='$mkdir'
21150 mmaptype='$mmaptype'
21151 modetype='$modetype'
21152 more='$more'
21153 multiarch='$multiarch'
21154 mv='$mv'
21155 myarchname='$myarchname'
21156 mydomain='$mydomain'
21157 myhostname='$myhostname'
21158 myuname='$myuname'
21159 n='$n'
21160 need_va_copy='$need_va_copy'
21161 netdb_hlen_type='$netdb_hlen_type'
21162 netdb_host_type='$netdb_host_type'
21163 netdb_name_type='$netdb_name_type'
21164 netdb_net_type='$netdb_net_type'
21165 nm='$nm'
21166 nm_opt='$nm_opt'
21167 nm_so_opt='$nm_so_opt'
21168 nonxs_ext='$nonxs_ext'
21169 nroff='$nroff'
21170 nvEUformat='$nvEUformat'
21171 nvFUformat='$nvFUformat'
21172 nvGUformat='$nvGUformat'
21173 nv_preserves_uv_bits='$nv_preserves_uv_bits'
21174 nveformat='$nveformat'
21175 nvfformat='$nvfformat'
21176 nvgformat='$nvgformat'
21177 nvsize='$nvsize'
21178 nvtype='$nvtype'
21179 o_nonblock='$o_nonblock'
21180 obj_ext='$obj_ext'
21181 old_pthread_create_joinable='$old_pthread_create_joinable'
21182 optimize='$optimize'
21183 orderlib='$orderlib'
21184 osname='$osname'
21185 osvers='$osvers'
21186 otherlibdirs='$otherlibdirs'
21187 package='$package'
21188 pager='$pager'
21189 passcat='$passcat'
21190 patchlevel='$patchlevel'
21191 path_sep='$path_sep'
21192 perl5='$perl5'
21193 perl='$perl'
21194 perl_patchlevel='$perl_patchlevel'
21195 perladmin='$perladmin'
21196 perllibs='$perllibs'
21197 perlpath='$perlpath'
21198 pg='$pg'
21199 phostname='$phostname'
21200 pidtype='$pidtype'
21201 plibpth='$plibpth'
21202 pm_apiversion='$pm_apiversion'
21203 pmake='$pmake'
21204 pr='$pr'
21205 prefix='$prefix'
21206 prefixexp='$prefixexp'
21207 privlib='$privlib'
21208 privlibexp='$privlibexp'
21209 procselfexe='$procselfexe'
21210 prototype='$prototype'
21211 ptrsize='$ptrsize'
21212 quadkind='$quadkind'
21213 quadtype='$quadtype'
21214 randbits='$randbits'
21215 randfunc='$randfunc'
21216 random_r_proto='$random_r_proto'
21217 randseedtype='$randseedtype'
21218 ranlib='$ranlib'
21219 rd_nodata='$rd_nodata'
21220 readdir64_r_proto='$readdir64_r_proto'
21221 readdir_r_proto='$readdir_r_proto'
21222 revision='$revision'
21223 rm='$rm'
21224 rmail='$rmail'
21225 run='$run'
21226 runnm='$runnm'
21227 sPRIEUldbl='$sPRIEUldbl'
21228 sPRIFUldbl='$sPRIFUldbl'
21229 sPRIGUldbl='$sPRIGUldbl'
21230 sPRIXU64='$sPRIXU64'
21231 sPRId64='$sPRId64'
21232 sPRIeldbl='$sPRIeldbl'
21233 sPRIfldbl='$sPRIfldbl'
21234 sPRIgldbl='$sPRIgldbl'
21235 sPRIi64='$sPRIi64'
21236 sPRIo64='$sPRIo64'
21237 sPRIu64='$sPRIu64'
21238 sPRIx64='$sPRIx64'
21239 sSCNfldbl='$sSCNfldbl'
21240 sched_yield='$sched_yield'
21241 scriptdir='$scriptdir'
21242 scriptdirexp='$scriptdirexp'
21243 sed='$sed'
21244 seedfunc='$seedfunc'
21245 selectminbits='$selectminbits'
21246 selecttype='$selecttype'
21247 sendmail='$sendmail'
21248 setgrent_r_proto='$setgrent_r_proto'
21249 sethostent_r_proto='$sethostent_r_proto'
21250 setlocale_r_proto='$setlocale_r_proto'
21251 setnetent_r_proto='$setnetent_r_proto'
21252 setprotoent_r_proto='$setprotoent_r_proto'
21253 setpwent_r_proto='$setpwent_r_proto'
21254 setservent_r_proto='$setservent_r_proto'
21255 sh='$sh'
21256 shar='$shar'
21257 sharpbang='$sharpbang'
21258 shmattype='$shmattype'
21259 shortsize='$shortsize'
21260 shrpenv='$shrpenv'
21261 shsharp='$shsharp'
21262 sig_count='$sig_count'
21263 sig_name='$sig_name'
21264 sig_name_init='$sig_name_init'
21265 sig_num='$sig_num'
21266 sig_num_init='$sig_num_init'
21267 sig_size='$sig_size'
21268 signal_t='$signal_t'
21269 sitearch='$sitearch'
21270 sitearchexp='$sitearchexp'
21271 sitebin='$sitebin'
21272 sitebinexp='$sitebinexp'
21273 sitehtml1='$sitehtml1'
21274 sitehtml1exp='$sitehtml1exp'
21275 sitehtml3='$sitehtml3'
21276 sitehtml3exp='$sitehtml3exp'
21277 sitelib='$sitelib'
21278 sitelib_stem='$sitelib_stem'
21279 sitelibexp='$sitelibexp'
21280 siteman1='$siteman1'
21281 siteman1exp='$siteman1exp'
21282 siteman3='$siteman3'
21283 siteman3exp='$siteman3exp'
21284 siteprefix='$siteprefix'
21285 siteprefixexp='$siteprefixexp'
21286 sitescript='$sitescript'
21287 sitescriptexp='$sitescriptexp'
21288 sizesize='$sizesize'
21289 sizetype='$sizetype'
21290 sleep='$sleep'
21291 smail='$smail'
21292 so='$so'
21293 sockethdr='$sockethdr'
21294 socketlib='$socketlib'
21295 socksizetype='$socksizetype'
21296 sort='$sort'
21297 spackage='$spackage'
21298 spitshell='$spitshell'
21299 srand48_r_proto='$srand48_r_proto'
21300 srandom_r_proto='$srandom_r_proto'
21301 src='$src'
21302 ssizetype='$ssizetype'
21303 startperl='$startperl'
21304 startsh='$startsh'
21305 static_ext='$static_ext'
21306 stdchar='$stdchar'
21307 stdio_base='$stdio_base'
21308 stdio_bufsiz='$stdio_bufsiz'
21309 stdio_cnt='$stdio_cnt'
21310 stdio_filbuf='$stdio_filbuf'
21311 stdio_ptr='$stdio_ptr'
21312 stdio_stream_array='$stdio_stream_array'
21313 strerror_r_proto='$strerror_r_proto'
21314 strings='$strings'
21315 submit='$submit'
21316 subversion='$subversion'
21317 sysman='$sysman'
21318 tail='$tail'
21319 tar='$tar'
21320 targetarch='$targetarch'
21321 tbl='$tbl'
21322 tee='$tee'
21323 test='$test'
21324 timeincl='$timeincl'
21325 timetype='$timetype'
21326 tmpnam_r_proto='$tmpnam_r_proto'
21327 to='$to'
21328 touch='$touch'
21329 tr='$tr'
21330 trnl='$trnl'
21331 troff='$troff'
21332 ttyname_r_proto='$ttyname_r_proto'
21333 u16size='$u16size'
21334 u16type='$u16type'
21335 u32size='$u32size'
21336 u32type='$u32type'
21337 u64size='$u64size'
21338 u64type='$u64type'
21339 u8size='$u8size'
21340 u8type='$u8type'
21341 uidformat='$uidformat'
21342 uidsign='$uidsign'
21343 uidsize='$uidsize'
21344 uidtype='$uidtype'
21345 uname='$uname'
21346 uniq='$uniq'
21347 uquadtype='$uquadtype'
21348 use5005threads='$use5005threads'
21349 use64bitall='$use64bitall'
21350 use64bitint='$use64bitint'
21351 usecrosscompile='$usecrosscompile'
21352 usedl='$usedl'
21353 usefaststdio='$usefaststdio'
21354 useithreads='$useithreads'
21355 uselargefiles='$uselargefiles'
21356 uselongdouble='$uselongdouble'
21357 usemorebits='$usemorebits'
21358 usemultiplicity='$usemultiplicity'
21359 usemymalloc='$usemymalloc'
21360 usenm='$usenm'
21361 useopcode='$useopcode'
21362 useperlio='$useperlio'
21363 useposix='$useposix'
21364 usereentrant='$usereentrant'
21365 usesfio='$usesfio'
21366 useshrplib='$useshrplib'
21367 usesocks='$usesocks'
21368 usethreads='$usethreads'
21369 usevendorprefix='$usevendorprefix'
21370 usevfork='$usevfork'
21371 usrinc='$usrinc'
21372 uuname='$uuname'
21373 uvXUformat='$uvXUformat'
21374 uvoformat='$uvoformat'
21375 uvsize='$uvsize'
21376 uvtype='$uvtype'
21377 uvuformat='$uvuformat'
21378 uvxformat='$uvxformat'
21379 vendorarch='$vendorarch'
21380 vendorarchexp='$vendorarchexp'
21381 vendorbin='$vendorbin'
21382 vendorbinexp='$vendorbinexp'
21383 vendorhtml1='$vendorhtml1'
21384 vendorhtml1exp='$vendorhtml1exp'
21385 vendorhtml3='$vendorhtml3'
21386 vendorhtml3exp='$vendorhtml3exp'
21387 vendorlib='$vendorlib'
21388 vendorlib_stem='$vendorlib_stem'
21389 vendorlibexp='$vendorlibexp'
21390 vendorman1='$vendorman1'
21391 vendorman1exp='$vendorman1exp'
21392 vendorman3='$vendorman3'
21393 vendorman3exp='$vendorman3exp'
21394 vendorprefix='$vendorprefix'
21395 vendorprefixexp='$vendorprefixexp'
21396 vendorscript='$vendorscript'
21397 vendorscriptexp='$vendorscriptexp'
21398 version='$version'
21399 version_patchlevel_string='$version_patchlevel_string'
21400 versiononly='$versiononly'
21401 vi='$vi'
21402 voidflags='$voidflags'
21403 xlibpth='$xlibpth'
21404 xs_apiversion='$xs_apiversion'
21405 yacc='$yacc'
21406 yaccflags='$yaccflags'
21407 zcat='$zcat'
21408 zip='$zip'
21409 EOT
21410
21411 : Add in command line options if available
21412 $test -f UU/cmdline.opt && $cat UU/cmdline.opt >> config.sh
21413
21414 : add special variables
21415 $test -f $src/patchlevel.h && \
21416 awk '/^#define[         ]+PERL_/ {printf "%s=%s\n",$2,$3}' $src/patchlevel.h >>config.sh
21417 echo "PERL_PATCHLEVEL=$perl_patchlevel" >>config.sh
21418 echo "PERL_CONFIG_SH=true" >>config.sh
21419
21420 : propagate old symbols
21421 if $test -f UU/config.sh; then
21422         <UU/config.sh $sort | $uniq >UU/oldconfig.sh
21423         sed -n 's/^\([a-zA-Z_0-9]*\)=.*/\1/p' config.sh config.sh UU/oldconfig.sh |\
21424         $sort | $uniq -u >UU/oldsyms
21425         set X `cat UU/oldsyms`
21426         shift
21427         case $# in
21428         0) ;;
21429         *)
21430                 cat <<EOM
21431 Hmm...You had some extra variables I don't know about...I'll try to keep 'em...
21432 EOM
21433                 echo "# Variables propagated from previous config.sh file." >>config.sh
21434                 for sym in `cat UU/oldsyms`; do
21435                         echo "    Propagating $hint variable "'$'"$sym..."
21436                         eval 'tmp="$'"${sym}"'"'
21437                         echo "$tmp" | \
21438                                 sed -e "s/'/'\"'\"'/g" -e "s/^/$sym='/" -e "s/$/'/" >>config.sh
21439                 done
21440                 ;;
21441         esac
21442 fi
21443
21444 : Finish up by extracting the .SH files
21445 case "$alldone" in
21446 exit)
21447         $rm -rf UU
21448         echo "Extraction done."
21449         exit 0
21450         ;;
21451 cont)
21452         ;;
21453 '')
21454         dflt=''
21455         nostick=true
21456         $cat <<EOM
21457
21458 If you'd like to make any changes to the config.sh file before I begin
21459 to configure things, do it as a shell escape now (e.g. !vi config.sh).
21460
21461 EOM
21462         rp="Press return or use a shell escape to edit config.sh:"
21463         . UU/myread
21464         nostick=''
21465         case "$ans" in
21466         '') ;;
21467         *) : in case they cannot read
21468                 sh 1>&4 -c "$ans";;
21469         esac
21470         ;;
21471 esac
21472
21473 : if this fails, just run all the .SH files by hand
21474 . ./config.sh
21475
21476 echo " "
21477 exec 1>&4
21478 pwd=`pwd`
21479 . ./UU/extract
21480 cd "$pwd"
21481
21482 if $contains '^depend:' [Mm]akefile >/dev/null 2>&1; then
21483         dflt=y
21484         case "$silent" in
21485         true) ;;
21486         *)
21487                 $cat <<EOM
21488
21489 Now you need to generate make dependencies by running "$make depend".
21490 You might prefer to run it in background: "$make depend > makedepend.out &"
21491 It can take a while, so you might not want to run it right now.
21492
21493 EOM
21494                 ;;
21495         esac
21496         rp="Run $make depend now?"
21497         . UU/myread
21498         case "$ans" in
21499         y*)
21500                 $make depend && echo "Now you must run '$make'."
21501                 ;;
21502         *)
21503                 echo "You must run '$make depend' then '$make'."
21504                 ;;
21505         esac
21506 elif test -f [Mm]akefile; then
21507         echo " "
21508         echo "Now you must run a $make."
21509 else
21510         echo "Configure done."
21511 fi
21512
21513 if $test -f Policy.sh; then
21514     $cat <<EOM
21515
21516 If you compile $package on a different machine or from a different object
21517 directory, copy the Policy.sh file from this object directory to the
21518 new one before you run Configure -- this will help you with most of
21519 the policy defaults.
21520
21521 EOM
21522 fi
21523 if $test -f config.msg; then
21524     echo "Hmm.  I also noted the following information while running:"
21525     echo " "
21526     $cat config.msg >&4
21527     $rm -f config.msg
21528 fi
21529 $rm -f kit*isdone ark*isdone
21530 $rm -rf UU
21531
21532 : End of Configure
21533