This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: [gherteg@csc.com: your CPAN page on EBCDIC]
[perl5.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 Thu Sep 18 09:10:02 EEST 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 mistrustnm=''
192 perllibs=''
193 dynamic_ext=''
194 extensions=''
195 known_extensions=''
196 nonxs_ext=''
197 static_ext=''
198 useopcode=''
199 useposix=''
200 extras=''
201 d_bsd=''
202 d_eunice=''
203 d_xenix=''
204 eunicefix=''
205 Mcc=''
206 ar=''
207 awk=''
208 bash=''
209 bison=''
210 byacc=''
211 cat=''
212 chgrp=''
213 chmod=''
214 chown=''
215 comm=''
216 compress=''
217 cp=''
218 cpio=''
219 cpp=''
220 csh=''
221 date=''
222 echo=''
223 egrep=''
224 emacs=''
225 expr=''
226 find=''
227 flex=''
228 gmake=''
229 grep=''
230 gzip=''
231 inews=''
232 ksh=''
233 less=''
234 line=''
235 lint=''
236 ln=''
237 lp=''
238 lpr=''
239 ls=''
240 mail=''
241 mailx=''
242 make=''
243 mkdir=''
244 more=''
245 mv=''
246 nm=''
247 nroff=''
248 perl=''
249 pg=''
250 pmake=''
251 pr=''
252 rm=''
253 rmail=''
254 sed=''
255 sendmail=''
256 shar=''
257 sleep=''
258 smail=''
259 sort=''
260 submit=''
261 tail=''
262 tar=''
263 tbl=''
264 tee=''
265 test=''
266 touch=''
267 tr=''
268 troff=''
269 uname=''
270 uniq=''
271 uuname=''
272 vi=''
273 zcat=''
274 zip=''
275 full_ar=''
276 full_sed=''
277 libswanted=''
278 hint=''
279 myuname=''
280 osname=''
281 osvers=''
282 Author=''
283 Date=''
284 Header=''
285 Id=''
286 Locker=''
287 Log=''
288 RCSfile=''
289 Revision=''
290 Source=''
291 State=''
292 _a=''
293 _exe=''
294 _o=''
295 archobjs=''
296 exe_ext=''
297 firstmakefile=''
298 lib_ext=''
299 obj_ext=''
300 path_sep=''
301 afs=''
302 afsroot=''
303 alignbytes=''
304 ansi2knr=''
305 archlib=''
306 archlibexp=''
307 d_archlib=''
308 installarchlib=''
309 archname=''
310 myarchname=''
311 d_atolf=''
312 d_atoll=''
313 baserev=''
314 bin=''
315 binexp=''
316 installbin=''
317 byteorder=''
318 cc=''
319 ccflags=''
320 cppflags=''
321 ldflags=''
322 lkflags=''
323 locincpth=''
324 optimize=''
325 cf_email=''
326 cf_by=''
327 cf_time=''
328 charsize=''
329 contains=''
330 cpp_stuff=''
331 cpplast=''
332 cppminus=''
333 cpprun=''
334 cppstdin=''
335 d__fwalk=''
336 d_access=''
337 d_accessx=''
338 d_aintl=''
339 d_alarm=''
340 asctime_r_proto=''
341 d_asctime_r=''
342 d_attribut=''
343 d_bcmp=''
344 d_bcopy=''
345 d_bzero=''
346 d_casti32=''
347 castflags=''
348 d_castneg=''
349 d_chown=''
350 d_chroot=''
351 d_chsize=''
352 d_class=''
353 d_closedir=''
354 d_void_closedir=''
355 d_cmsghdr_s=''
356 d_const=''
357 d_copysignl=''
358 cryptlib=''
359 d_crypt=''
360 crypt_r_proto=''
361 d_crypt_r=''
362 d_csh=''
363 full_csh=''
364 ctermid_r_proto=''
365 d_ctermid_r=''
366 ctime_r_proto=''
367 d_ctime_r=''
368 d_cuserid=''
369 d_dbl_dig=''
370 d_dbminitproto=''
371 d_difftime=''
372 d_dirfd=''
373 d_dlerror=''
374 d_dlopen=''
375 d_dlsymun=''
376 d_dosuid=''
377 d_suidsafe=''
378 d_drand48_r=''
379 drand48_r_proto=''
380 d_drand48proto=''
381 d_dup2=''
382 d_eaccess=''
383 d_endgrent=''
384 d_endgrent_r=''
385 endgrent_r_proto=''
386 d_endhent=''
387 d_endhostent_r=''
388 endhostent_r_proto=''
389 d_endnent=''
390 d_endnetent_r=''
391 endnetent_r_proto=''
392 d_endpent=''
393 d_endprotoent_r=''
394 endprotoent_r_proto=''
395 d_endpwent=''
396 d_endpwent_r=''
397 endpwent_r_proto=''
398 d_endsent=''
399 d_endservent_r=''
400 endservent_r_proto=''
401 d_faststdio=''
402 d_fchdir=''
403 d_fchmod=''
404 d_fchown=''
405 d_fcntl=''
406 d_fcntl_can_lock=''
407 d_fd_macros=''
408 d_fd_set=''
409 d_fds_bits=''
410 d_fgetpos=''
411 d_finite=''
412 d_finitel=''
413 d_flexfnam=''
414 d_flock=''
415 d_flockproto=''
416 d_fork=''
417 d_fp_class=''
418 d_fpclass=''
419 d_fpclassify=''
420 d_fpclassl=''
421 d_fpos64_t=''
422 d_frexpl=''
423 d_fs_data_s=''
424 d_fseeko=''
425 d_fsetpos=''
426 d_fstatfs=''
427 d_fsync=''
428 d_ftello=''
429 d_ftime=''
430 d_gettimeod=''
431 d_Gconvert=''
432 d_getcwd=''
433 d_getespwnam=''
434 d_getfsstat=''
435 d_getgrent=''
436 d_getgrent_r=''
437 getgrent_r_proto=''
438 d_getgrgid_r=''
439 getgrgid_r_proto=''
440 d_getgrnam_r=''
441 getgrnam_r_proto=''
442 d_getgrps=''
443 d_gethbyaddr=''
444 d_gethbyname=''
445 d_gethent=''
446 aphostname=''
447 d_gethname=''
448 d_phostname=''
449 d_uname=''
450 d_gethostbyaddr_r=''
451 gethostbyaddr_r_proto=''
452 d_gethostbyname_r=''
453 gethostbyname_r_proto=''
454 d_gethostent_r=''
455 gethostent_r_proto=''
456 d_gethostprotos=''
457 d_getitimer=''
458 d_getlogin=''
459 d_getlogin_r=''
460 getlogin_r_proto=''
461 d_getmnt=''
462 d_getmntent=''
463 d_getnbyaddr=''
464 d_getnbyname=''
465 d_getnent=''
466 d_getnetbyaddr_r=''
467 getnetbyaddr_r_proto=''
468 d_getnetbyname_r=''
469 getnetbyname_r_proto=''
470 d_getnetent_r=''
471 getnetent_r_proto=''
472 d_getnetprotos=''
473 d_getpagsz=''
474 d_getpent=''
475 d_getpgid=''
476 d_getpgrp2=''
477 d_bsdgetpgrp=''
478 d_getpgrp=''
479 d_getppid=''
480 d_getprior=''
481 d_getpbyname=''
482 d_getpbynumber=''
483 d_getprotobyname_r=''
484 getprotobyname_r_proto=''
485 d_getprotobynumber_r=''
486 getprotobynumber_r_proto=''
487 d_getprotoent_r=''
488 getprotoent_r_proto=''
489 d_getprotoprotos=''
490 d_getprpwnam=''
491 d_getpwent=''
492 d_getpwent_r=''
493 getpwent_r_proto=''
494 d_getpwnam_r=''
495 getpwnam_r_proto=''
496 d_getpwuid_r=''
497 getpwuid_r_proto=''
498 d_getsent=''
499 d_getservbyname_r=''
500 getservbyname_r_proto=''
501 d_getservbyport_r=''
502 getservbyport_r_proto=''
503 d_getservent_r=''
504 getservent_r_proto=''
505 d_getservprotos=''
506 d_getspnam=''
507 d_getspnam_r=''
508 getspnam_r_proto=''
509 d_getsbyname=''
510 d_getsbyport=''
511 d_gmtime_r=''
512 gmtime_r_proto=''
513 d_gnulibc=''
514 gnulibc_version=''
515 d_hasmntopt=''
516 d_htonl=''
517 d_ilogbl=''
518 d_inetaton=''
519 d_int64_t=''
520 d_isascii=''
521 d_isfinite=''
522 d_isinf=''
523 d_isnan=''
524 d_isnanl=''
525 d_killpg=''
526 d_lchown=''
527 d_ldbl_dig=''
528 d_link=''
529 d_localtime_r=''
530 localtime_r_proto=''
531 d_locconv=''
532 d_lockf=''
533 d_longdbl=''
534 longdblsize=''
535 d_longlong=''
536 longlongsize=''
537 d_lseekproto=''
538 d_lstat=''
539 d_madvise=''
540 d_mblen=''
541 d_mbstowcs=''
542 d_mbtowc=''
543 d_memchr=''
544 d_memcmp=''
545 d_memcpy=''
546 d_memmove=''
547 d_memset=''
548 d_mkdir=''
549 d_mkdtemp=''
550 d_mkfifo=''
551 d_mkstemp=''
552 d_mkstemps=''
553 d_mktime=''
554 d_mmap=''
555 mmaptype=''
556 d_modfl=''
557 d_modfl_pow32_bug=''
558 d_modflproto=''
559 d_mprotect=''
560 d_msg=''
561 d_msgctl=''
562 d_msgget=''
563 d_msghdr_s=''
564 d_msgrcv=''
565 d_msgsnd=''
566 d_msync=''
567 d_munmap=''
568 d_nice=''
569 d_nl_langinfo=''
570 d_off64_t=''
571 d_open3=''
572 d_fpathconf=''
573 d_pathconf=''
574 d_pause=''
575 d_pipe=''
576 d_poll=''
577 d_portable=''
578 d_procselfexe=''
579 procselfexe=''
580 d_old_pthread_create_joinable=''
581 old_pthread_create_joinable=''
582 d_pthread_atfork=''
583 d_pthread_attr_setscope=''
584 d_pthread_yield=''
585 d_sched_yield=''
586 sched_yield=''
587 d_qgcvt=''
588 d_random_r=''
589 random_r_proto=''
590 d_readdir64_r=''
591 readdir64_r_proto=''
592 d_readdir=''
593 d_rewinddir=''
594 d_seekdir=''
595 d_telldir=''
596 d_readdir_r=''
597 readdir_r_proto=''
598 d_readlink=''
599 d_readv=''
600 d_recvmsg=''
601 d_rename=''
602 d_rmdir=''
603 d_safebcpy=''
604 d_safemcpy=''
605 d_sanemcmp=''
606 d_sbrkproto=''
607 d_scalbnl=''
608 d_select=''
609 d_sem=''
610 d_semctl=''
611 d_semget=''
612 d_semop=''
613 d_sendmsg=''
614 d_setegid=''
615 d_seteuid=''
616 d_setgrent=''
617 d_setgrent_r=''
618 setgrent_r_proto=''
619 d_setgrps=''
620 d_sethent=''
621 d_sethostent_r=''
622 sethostent_r_proto=''
623 d_setitimer=''
624 d_setlinebuf=''
625 d_setlocale=''
626 d_setlocale_r=''
627 setlocale_r_proto=''
628 d_setnent=''
629 d_setnetent_r=''
630 setnetent_r_proto=''
631 d_setpent=''
632 d_setpgid=''
633 d_setpgrp2=''
634 d_bsdsetpgrp=''
635 d_setpgrp=''
636 d_setprior=''
637 d_setproctitle=''
638 d_setprotoent_r=''
639 setprotoent_r_proto=''
640 d_setpwent=''
641 d_setpwent_r=''
642 setpwent_r_proto=''
643 d_setregid=''
644 d_setresgid=''
645 d_setresuid=''
646 d_setreuid=''
647 d_setrgid=''
648 d_setruid=''
649 d_setsent=''
650 d_setservent_r=''
651 setservent_r_proto=''
652 d_setsid=''
653 d_setvbuf=''
654 d_sfio=''
655 usesfio=''
656 d_shm=''
657 d_shmat=''
658 d_shmatprototype=''
659 shmattype=''
660 d_shmctl=''
661 d_shmdt=''
662 d_shmget=''
663 d_sigaction=''
664 d_sigprocmask=''
665 d_sigsetjmp=''
666 d_sockatmark=''
667 d_sockatmarkproto=''
668 d_msg_ctrunc=''
669 d_msg_dontroute=''
670 d_msg_oob=''
671 d_msg_peek=''
672 d_msg_proxy=''
673 d_oldsock=''
674 d_scm_rights=''
675 d_socket=''
676 d_sockpair=''
677 sockethdr=''
678 socketlib=''
679 d_socklen_t=''
680 d_socks5_init=''
681 d_sqrtl=''
682 d_srand48_r=''
683 srand48_r_proto=''
684 d_srandom_r=''
685 srandom_r_proto=''
686 d_sresgproto=''
687 d_sresuproto=''
688 d_statblks=''
689 d_statfs_f_flags=''
690 d_statfs_s=''
691 d_fstatvfs=''
692 d_statvfs=''
693 d_stdio_cnt_lval=''
694 d_stdio_ptr_lval=''
695 d_stdio_ptr_lval_nochange_cnt=''
696 d_stdio_ptr_lval_sets_cnt=''
697 d_stdiobase=''
698 d_stdstdio=''
699 stdio_base=''
700 stdio_bufsiz=''
701 stdio_cnt=''
702 stdio_filbuf=''
703 stdio_ptr=''
704 d_index=''
705 d_strchr=''
706 d_strcoll=''
707 d_strctcpy=''
708 d_strerrm=''
709 d_strerror=''
710 d_sysernlst=''
711 d_syserrlst=''
712 d_strerror_r=''
713 strerror_r_proto=''
714 d_strftime=''
715 d_strtod=''
716 d_strtol=''
717 d_strtold=''
718 d_strtoll=''
719 d_strtoq=''
720 d_strtoul=''
721 d_strtoull=''
722 d_strtouq=''
723 d_strxfrm=''
724 d_symlink=''
725 d_syscall=''
726 d_syscallproto=''
727 d_sysconf=''
728 d_system=''
729 d_tcgetpgrp=''
730 d_tcsetpgrp=''
731 d_telldirproto=''
732 d_time=''
733 timetype=''
734 clocktype=''
735 d_times=''
736 d_tmpnam_r=''
737 tmpnam_r_proto=''
738 d_truncate=''
739 d_ttyname_r=''
740 ttyname_r_proto=''
741 d_tzname=''
742 d_u32align=''
743 d_ualarm=''
744 d_umask=''
745 d_semctl_semid_ds=''
746 d_semctl_semun=''
747 d_union_semun=''
748 d_unordered=''
749 d_usleep=''
750 d_usleepproto=''
751 d_ustat=''
752 d_vfork=''
753 usevfork=''
754 d_voidsig=''
755 signal_t=''
756 d_volatile=''
757 d_charvspr=''
758 d_vprintf=''
759 d_wait4=''
760 d_waitpid=''
761 d_wcstombs=''
762 d_wctomb=''
763 d_writev=''
764 dlext=''
765 cccdlflags=''
766 ccdlflags=''
767 dlsrc=''
768 ld=''
769 lddlflags=''
770 usedl=''
771 doublesize=''
772 ebcdic=''
773 fflushNULL=''
774 fflushall=''
775 fpossize=''
776 fpostype=''
777 gccansipedantic=''
778 gccosandvers=''
779 gccversion=''
780 gidformat=''
781 gidsign=''
782 gidsize=''
783 gidtype=''
784 groupstype=''
785 h_fcntl=''
786 h_sysfile=''
787 html1dir=''
788 html1direxp=''
789 installhtml1dir=''
790 html3dir=''
791 html3direxp=''
792 installhtml3dir=''
793 i_arpainet=''
794 i_crypt=''
795 db_hashtype=''
796 db_prefixtype=''
797 db_version_major=''
798 db_version_minor=''
799 db_version_patch=''
800 i_db=''
801 i_dbm=''
802 i_rpcsvcdbm=''
803 d_dirnamlen=''
804 direntrytype=''
805 i_dirent=''
806 i_dld=''
807 i_dlfcn=''
808 i_fcntl=''
809 i_float=''
810 i_fp=''
811 i_fp_class=''
812 i_gdbm=''
813 d_grpasswd=''
814 i_grp=''
815 i_ieeefp=''
816 i_inttypes=''
817 i_langinfo=''
818 i_libutil=''
819 i_limits=''
820 i_locale=''
821 i_machcthr=''
822 i_malloc=''
823 i_math=''
824 i_memory=''
825 i_mntent=''
826 i_ndbm=''
827 i_netdb=''
828 i_neterrno=''
829 i_netinettcp=''
830 i_niin=''
831 i_sysin=''
832 i_poll=''
833 i_prot=''
834 i_pthread=''
835 d_pwage=''
836 d_pwchange=''
837 d_pwclass=''
838 d_pwcomment=''
839 d_pwexpire=''
840 d_pwgecos=''
841 d_pwpasswd=''
842 d_pwquota=''
843 i_pwd=''
844 i_sfio=''
845 i_shadow=''
846 i_socks=''
847 i_stddef=''
848 i_stdlib=''
849 i_string=''
850 strings=''
851 i_sunmath=''
852 i_sysaccess=''
853 i_sysdir=''
854 i_sysfile=''
855 d_voidtty=''
856 i_bsdioctl=''
857 i_sysfilio=''
858 i_sysioctl=''
859 i_syssockio=''
860 i_syslog=''
861 i_sysmman=''
862 i_sysmode=''
863 i_sysmount=''
864 i_sysndir=''
865 i_sysparam=''
866 i_sysresrc=''
867 i_syssecrt=''
868 i_sysselct=''
869 i_sysstat=''
870 i_sysstatfs=''
871 i_sysstatvfs=''
872 i_systimes=''
873 i_systypes=''
874 i_sysuio=''
875 i_sysun=''
876 i_sysutsname=''
877 i_sysvfs=''
878 i_syswait=''
879 i_sgtty=''
880 i_termio=''
881 i_termios=''
882 d_tm_tm_gmtoff=''
883 d_tm_tm_zone=''
884 i_systime=''
885 i_systimek=''
886 i_time=''
887 timeincl=''
888 i_unistd=''
889 i_ustat=''
890 i_utime=''
891 i_values=''
892 i_stdarg=''
893 i_varargs=''
894 i_varhdr=''
895 i_vfork=''
896 inc_version_list=''
897 inc_version_list_init=''
898 installprefix=''
899 installprefixexp=''
900 installstyle=''
901 installusrbinperl=''
902 intsize=''
903 longsize=''
904 shortsize=''
905 issymlink=''
906 libc=''
907 ldlibpthname=''
908 libperl=''
909 shrpenv=''
910 useshrplib=''
911 glibpth=''
912 libpth=''
913 loclibpth=''
914 plibpth=''
915 xlibpth=''
916 ignore_versioned_solibs=''
917 libs=''
918 libsdirs=''
919 libsfiles=''
920 libsfound=''
921 libspath=''
922 lns=''
923 d_PRIEUldbl=''
924 d_PRIFUldbl=''
925 d_PRIGUldbl=''
926 d_PRIeldbl=''
927 d_PRIfldbl=''
928 d_PRIgldbl=''
929 d_SCNfldbl=''
930 sPRIEUldbl=''
931 sPRIFUldbl=''
932 sPRIGUldbl=''
933 sPRIeldbl=''
934 sPRIfldbl=''
935 sPRIgldbl=''
936 sSCNfldbl=''
937 lseeksize=''
938 lseektype=''
939 make_set_make=''
940 d_mymalloc=''
941 freetype=''
942 mallocobj=''
943 mallocsrc=''
944 malloctype=''
945 usemymalloc=''
946 installman1dir=''
947 man1dir=''
948 man1direxp=''
949 man1ext=''
950 installman3dir=''
951 man3dir=''
952 man3direxp=''
953 man3ext=''
954 modetype=''
955 multiarch=''
956 mydomain=''
957 myhostname=''
958 phostname=''
959 c=''
960 n=''
961 d_eofnblk=''
962 eagain=''
963 o_nonblock=''
964 rd_nodata=''
965 need_va_copy=''
966 netdb_hlen_type=''
967 netdb_host_type=''
968 netdb_name_type=''
969 netdb_net_type=''
970 groupcat=''
971 hostcat=''
972 passcat=''
973 orderlib=''
974 ranlib=''
975 d_perl_otherlibdirs=''
976 otherlibdirs=''
977 package=''
978 spackage=''
979 pager=''
980 api_revision=''
981 api_subversion=''
982 api_version=''
983 api_versionstring=''
984 patchlevel=''
985 perl_patchlevel=''
986 revision=''
987 subversion=''
988 version=''
989 version_patchlevel_string=''
990 perl5=''
991 perladmin=''
992 perlpath=''
993 d_nv_preserves_uv=''
994 i16size=''
995 i16type=''
996 i32size=''
997 i32type=''
998 i64size=''
999 i64type=''
1000 i8size=''
1001 i8type=''
1002 ivsize=''
1003 ivtype=''
1004 nv_preserves_uv_bits=''
1005 nvsize=''
1006 nvtype=''
1007 u16size=''
1008 u16type=''
1009 u32size=''
1010 u32type=''
1011 u64size=''
1012 u64type=''
1013 u8size=''
1014 u8type=''
1015 uvsize=''
1016 uvtype=''
1017 ivdformat=''
1018 nvEUformat=''
1019 nvFUformat=''
1020 nvGUformat=''
1021 nveformat=''
1022 nvfformat=''
1023 nvgformat=''
1024 uvXUformat=''
1025 uvoformat=''
1026 uvuformat=''
1027 uvxformat=''
1028 pidtype=''
1029 prefix=''
1030 prefixexp=''
1031 installprivlib=''
1032 privlib=''
1033 privlibexp=''
1034 prototype=''
1035 ptrsize=''
1036 d_PRIXU64=''
1037 d_PRId64=''
1038 d_PRIi64=''
1039 d_PRIo64=''
1040 d_PRIu64=''
1041 d_PRIx64=''
1042 sPRIXU64=''
1043 sPRId64=''
1044 sPRIi64=''
1045 sPRIo64=''
1046 sPRIu64=''
1047 sPRIx64=''
1048 d_quad=''
1049 quadkind=''
1050 quadtype=''
1051 uquadtype=''
1052 drand01=''
1053 randbits=''
1054 randfunc=''
1055 randseedtype=''
1056 seedfunc=''
1057 installscript=''
1058 scriptdir=''
1059 scriptdirexp=''
1060 selectminbits=''
1061 selecttype=''
1062 sh=''
1063 sig_count=''
1064 sig_name=''
1065 sig_name_init=''
1066 sig_num=''
1067 sig_num_init=''
1068 sig_size=''
1069 installsitearch=''
1070 sitearch=''
1071 sitearchexp=''
1072 installsitebin=''
1073 sitebin=''
1074 sitebinexp=''
1075 installsitehtml1dir=''
1076 sitehtml1dir=''
1077 sitehtml1direxp=''
1078 installsitehtml3dir=''
1079 sitehtml3dir=''
1080 sitehtml3direxp=''
1081 installsitelib=''
1082 sitelib=''
1083 sitelib_stem=''
1084 sitelibexp=''
1085 installsiteman1dir=''
1086 siteman1dir=''
1087 siteman1direxp=''
1088 installsiteman3dir=''
1089 siteman3dir=''
1090 siteman3direxp=''
1091 siteprefix=''
1092 siteprefixexp=''
1093 installsitescript=''
1094 sitescript=''
1095 sitescriptexp=''
1096 sizesize=''
1097 sizetype=''
1098 so=''
1099 socksizetype=''
1100 sharpbang=''
1101 shsharp=''
1102 spitshell=''
1103 src=''
1104 ssizetype=''
1105 startperl=''
1106 startsh=''
1107 stdchar=''
1108 d_stdio_stream_array=''
1109 stdio_stream_array=''
1110 sysman=''
1111 trnl=''
1112 uidformat=''
1113 uidsign=''
1114 uidsize=''
1115 uidtype=''
1116 archname64=''
1117 use64bitall=''
1118 use64bitint=''
1119 usefaststdio=''
1120 ccflags_uselargefiles=''
1121 ldflags_uselargefiles=''
1122 libswanted_uselargefiles=''
1123 uselargefiles=''
1124 uselongdouble=''
1125 usemorebits=''
1126 usemultiplicity=''
1127 nm_opt=''
1128 nm_so_opt=''
1129 runnm=''
1130 usenm=''
1131 useperlio=''
1132 usesocks=''
1133 d_oldpthreads=''
1134 use5005threads=''
1135 useithreads=''
1136 usereentrant=''
1137 usethreads=''
1138 incpath=''
1139 mips_type=''
1140 usrinc=''
1141 d_vendorarch=''
1142 installvendorarch=''
1143 vendorarch=''
1144 vendorarchexp=''
1145 d_vendorbin=''
1146 installvendorbin=''
1147 vendorbin=''
1148 vendorbinexp=''
1149 installvendorhtml1dir=''
1150 vendorhtml1dir=''
1151 vendorhtml1direxp=''
1152 installvendorhtml3dir=''
1153 vendorhtml3dir=''
1154 vendorhtml3direxp=''
1155 d_vendorlib=''
1156 installvendorlib=''
1157 vendorlib=''
1158 vendorlib_stem=''
1159 vendorlibexp=''
1160 installvendorman1dir=''
1161 vendorman1dir=''
1162 vendorman1direxp=''
1163 installvendorman3dir=''
1164 vendorman3dir=''
1165 vendorman3direxp=''
1166 usevendorprefix=''
1167 vendorprefix=''
1168 vendorprefixexp=''
1169 d_vendorscript=''
1170 installvendorscript=''
1171 vendorscript=''
1172 vendorscriptexp=''
1173 versiononly=''
1174 defvoidused=''
1175 voidflags=''
1176 pm_apiversion=''
1177 xs_apiversion=''
1178 yacc=''
1179 yaccflags=''
1180 CONFIG=''
1181
1182 define='define'
1183 undef='undef'
1184 smallmach='pdp11 i8086 z8000 i80286 iAPX286'
1185 rmlist=''
1186
1187 : We must find out about Eunice early
1188 eunicefix=':'
1189 if test -f /etc/unixtovms; then
1190         eunicefix=/etc/unixtovms
1191 fi
1192 if test -f /etc/unixtovms.exe; then
1193         eunicefix=/etc/unixtovms.exe
1194 fi
1195
1196 : Set executable suffix now -- needed before hints available
1197 if test -f "/libs/version.library"; then
1198 : Amiga OS
1199     _exe=""
1200 elif test -f "/system/gnu_library/bin/ar.pm"; then
1201 : Stratus VOS
1202     _exe=".pm"
1203 elif test -n "$DJGPP"; then
1204 : DOS DJGPP
1205     _exe=".exe"
1206 elif test -d c:/. -o -n "$is_os2" ; then
1207 : OS/2 or cygwin
1208     _exe=".exe"
1209 fi
1210
1211 i_whoami=''
1212 : Possible local include directories to search.
1213 : Set locincpth to "" in a hint file to defeat local include searches.
1214 locincpth="/usr/local/include /opt/local/include /usr/gnu/include"
1215 locincpth="$locincpth /opt/gnu/include /usr/GNU/include /opt/GNU/include"
1216 :
1217 : no include file wanted by default
1218 inclwanted=''
1219
1220 siteman1dir=''
1221 siteman3dir=''
1222 sitescript=''
1223 : Trailing extension.  Override this in a hint file, if needed.
1224 : Extra object files, if any, needed on this platform.
1225 archobjs=''
1226 groupstype=''
1227 libnames=''
1228 : change the next line if compiling for Xenix/286 on Xenix/386
1229 xlibpth='/usr/lib/386 /lib/386'
1230 : Possible local library directories to search.
1231 loclibpth="/usr/local/lib /opt/local/lib /usr/gnu/lib"
1232 loclibpth="$loclibpth /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib"
1233
1234 : general looking path for locating libraries
1235 glibpth="/lib /usr/lib $xlibpth"
1236 glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/local/lib"
1237 test -f /usr/shlib/libc.so && glibpth="/usr/shlib $glibpth"
1238 test -f /shlib/libc.so     && glibpth="/shlib $glibpth"
1239
1240 : Private path used by Configure to find libraries.  Its value
1241 : is prepended to libpth. This variable takes care of special
1242 : machines, like the mips.  Usually, it should be empty.
1243 plibpth=''
1244
1245 : default library list
1246 libswanted=''
1247 : some systems want to use only the non-versioned libso:s
1248 ignore_versioned_solibs=''
1249 : full support for void wanted by default
1250 defvoidused=15
1251
1252 ccname=''
1253 ccversion=''
1254 perllibs=''
1255 : set useposix=false in your hint file to disable the POSIX extension.
1256 useposix=true
1257 : set useopcode=false in your hint file to disable the Opcode extension.
1258 useopcode=true
1259 archname64=''
1260 ccflags_uselargefiles=''
1261 ldflags_uselargefiles=''
1262 libswanted_uselargefiles=''
1263 : set usemultiplicity on the Configure command line to enable multiplicity.
1264 : set usesocks on the Configure command line to enable socks.
1265 archname=''
1266 : set usethreads on the Configure command line to enable threads.
1267 usereentrant='undef'
1268 : List of libraries we want.
1269 : If anyone needs extra -lxxx, put those in a hint file.
1270 libswanted="sfio socket bind inet nsl nm ndbm gdbm dbm db malloc dl dld ld sun"
1271 libswanted="$libswanted m crypt sec util c cposix posix ucb bsd BSD"
1272 : We probably want to search /usr/shlib before most other libraries.
1273 : This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist.
1274 glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'`
1275 glibpth="/usr/shlib $glibpth"
1276 : Do not use vfork unless overridden by a hint file.
1277 usevfork=false
1278
1279 : Find the basic shell for Bourne shell scripts
1280 case "$sh" in
1281 '')
1282         case "$SYSTYPE" in
1283         *bsd*|sys5*) xxx="/$SYSTYPE/bin/sh";;
1284         *) xxx='/bin/sh';;
1285         esac
1286         if test -f "$xxx"; then
1287                 sh="$xxx"
1288         else
1289                 : Build up a list and do a single loop so we can 'break' out.
1290                 pth=`echo $PATH | sed -e "s/$p_/ /g"`
1291                 for xxx in sh bash ksh pdksh ash; do
1292                         for p in $pth; do
1293                                 try="$try ${p}/${xxx}"
1294                         done
1295                 done
1296                 for xxx in $try; do
1297                         if test -f "$xxx"; then
1298                                 sh="$xxx";
1299                                 break
1300                         elif test "X$_exe" != X -a -f "$xxx$_exe"; then
1301                                 sh="$xxx";
1302                                 break
1303                         elif test -f "$xxx.exe"; then
1304                                 sh="$xxx";
1305                                 break
1306                         fi
1307                 done
1308         fi
1309         ;;
1310 esac
1311
1312 case "$sh" in
1313 '')     cat >&2 <<EOM
1314 $me:  Fatal Error:  I can't find a Bourne Shell anywhere.  
1315
1316 Usually it's in /bin/sh.  How did you even get this far?
1317 Please contact me (Perl Maintainers) at perlbug@perl.org and 
1318 we'll try to straighten this all out.
1319 EOM
1320         exit 1
1321         ;;
1322 esac
1323
1324 : see if sh knows # comments
1325 if `$sh -c '#' >/dev/null 2>&1`; then
1326         shsharp=true
1327         spitshell=cat
1328         xcat=/bin/cat
1329         test -f $xcat$_exe || xcat=/usr/bin/cat
1330         if test ! -f $xcat$_exe; then
1331                 for p in `echo $PATH | sed -e "s/$p_/ /g"` $paths; do
1332                         if test -f $p/cat$_exe; then
1333                                 xcat=$p/cat
1334                                 break
1335                         fi
1336                 done
1337                 if test ! -f $xcat$_exe; then
1338                         echo "Can't find cat anywhere!"
1339                         exit 1
1340                 fi
1341         fi
1342         echo "#!$xcat" >sharp
1343         $eunicefix sharp
1344         chmod +x sharp
1345         ./sharp > today
1346         if test -s today; then
1347                 sharpbang='#!'
1348         else
1349                 echo "#! $xcat" > sharp
1350                 $eunicefix sharp
1351                 chmod +x sharp
1352                 ./sharp > today
1353                 if test -s today; then
1354                         sharpbang='#! '
1355                 else
1356                         sharpbang=': use '
1357                 fi
1358         fi
1359 else
1360         echo " "
1361         echo "Your $sh doesn't grok # comments--I will strip them later on."
1362         shsharp=false
1363         cd ..
1364         echo "exec grep -v '^[  ]*#'" >spitshell
1365         chmod +x spitshell
1366         $eunicefix spitshell
1367         spitshell=`pwd`/spitshell
1368         cd UU
1369         echo "I presume that if # doesn't work, #! won't work either!"
1370         sharpbang=': use '
1371 fi
1372 rm -f sharp today
1373
1374 : figure out how to guarantee sh startup
1375 case "$startsh" in
1376 '') startsh=${sharpbang}${sh} ;;
1377 *)
1378 esac
1379 cat >sharp <<EOSS
1380 $startsh
1381 set abc
1382 test "$?abc" != 1
1383 EOSS
1384
1385 chmod +x sharp
1386 $eunicefix sharp
1387 if ./sharp; then
1388         : echo "Yup, it does."
1389 else
1390         echo "Hmm... '$startsh' does not guarantee sh startup..."
1391         echo "You may have to fix up the shell scripts to make sure $sh runs them."
1392 fi
1393 rm -f sharp
1394
1395
1396 : Save command line options in file UU/cmdline.opt for later use in
1397 : generating config.sh.
1398 cat > cmdline.opt <<EOSH
1399 # Configure command line arguments.
1400 config_arg0='$0'
1401 config_args='$*'
1402 config_argc=$#
1403 EOSH
1404 argn=1
1405 args_exp=''
1406 args_sep=''
1407 for arg in "$@"; do
1408         cat >>cmdline.opt <<EOSH
1409 config_arg$argn='$arg'
1410 EOSH
1411         # Extreme backslashitis: replace each ' by '"'"'
1412         cat <<EOC | sed -e "s/'/'"'"'"'"'"'"'/g" > cmdl.opt
1413 $arg
1414 EOC
1415         arg_exp=`cat cmdl.opt`
1416         args_exp="$args_exp$args_sep'$arg_exp'"
1417         argn=`expr $argn + 1`
1418         args_sep=' '
1419 done
1420 # args_exp is good for restarting self: eval "set X $args_exp"; shift; $0 "$@"
1421 # used by ./hints/os2.sh
1422 rm -f cmdl.opt
1423
1424 : produce awk script to parse command line options
1425 cat >options.awk <<'EOF'
1426 BEGIN {
1427         optstr = "A:dD:eEf:hKOrsSU:V";  # getopt-style specification
1428
1429         len = length(optstr);
1430         for (i = 1; i <= len; i++) {
1431                 c = substr(optstr, i, 1);
1432                 if (i < len) a = substr(optstr, i + 1, 1); else a = "";
1433                 if (a == ":") {
1434                         arg[c] = 1;
1435                         i++;
1436                 }
1437                 opt[c] = 1;
1438         }
1439 }
1440 {
1441         expect = 0;
1442         str = $0;
1443         if (substr(str, 1, 1) != "-") {
1444                 printf("'%s'\n", str);
1445                 next;
1446         }
1447         len = length($0);
1448         for (i = 2; i <= len; i++) {
1449                 c = substr(str, i, 1);
1450                 if (!opt[c]) {
1451                         printf("-%s\n", substr(str, i));
1452                         next;
1453                 }
1454                 printf("-%s\n", c);
1455                 if (arg[c]) {
1456                         if (i < len)
1457                                 printf("'%s'\n", substr(str, i + 1));
1458                         else
1459                                 expect = 1;
1460                         next;
1461                 }
1462         }
1463 }
1464 END {
1465         if (expect)
1466                 print "?";
1467 }
1468 EOF
1469
1470 : process the command line options
1471 set X `for arg in "$@"; do echo "X$arg"; done |
1472         sed -e s/X// | awk -f options.awk`
1473 eval "set $*"
1474 shift
1475 rm -f options.awk
1476
1477 : set up default values
1478 fastread=''
1479 reuseval=false
1480 config_sh=''
1481 alldone=''
1482 error=''
1483 silent=''
1484 extractsh=''
1485 override=''
1486 knowitall=''
1487 rm -f optdef.sh posthint.sh
1488 cat >optdef.sh <<EOS
1489 $startsh
1490 EOS
1491
1492
1493 : option parsing
1494 while test $# -gt 0; do
1495         case "$1" in
1496         -d) shift; fastread=yes;;
1497         -e) shift; alldone=cont;;
1498         -f)
1499                 shift
1500                 cd ..
1501                 if test -r "$1"; then
1502                         config_sh="$1"
1503                 else
1504                         echo "$me: cannot read config file $1." >&2
1505                         error=true
1506                 fi
1507                 cd UU
1508                 shift;;
1509         -h) shift; error=true;;
1510         -r) shift; reuseval=true;;
1511         -s) shift; silent=true; realsilent=true;;
1512         -E) shift; alldone=exit;;
1513         -K) shift; knowitall=true;;
1514         -O) shift; override=true;;
1515         -S) shift; silent=true; extractsh=true;;
1516         -D)
1517                 shift
1518                 case "$1" in
1519                 *=)
1520                         echo "$me: use '-U symbol=', not '-D symbol='." >&2
1521                         echo "$me: ignoring -D $1" >&2
1522                         ;;
1523                 *=*) echo "$1" | \
1524                                 sed -e "s/'/'\"'\"'/g" -e "s/=\(.*\)/='\1'/" >> optdef.sh;;
1525                 *) echo "$1='define'" >> optdef.sh;;
1526                 esac
1527                 shift
1528                 ;;
1529         -U)
1530                 shift
1531                 case "$1" in
1532                 *=) echo "$1" >> optdef.sh;;
1533                 *=*)
1534                         echo "$me: use '-D symbol=val', not '-U symbol=val'." >&2
1535                         echo "$me: ignoring -U $1" >&2
1536                         ;;
1537                 *) echo "$1='undef'" >> optdef.sh;;
1538                 esac
1539                 shift
1540                 ;;
1541         -A)
1542             shift
1543             xxx=''
1544             yyy="$1"
1545             zzz=''
1546             uuu=undef
1547             case "$yyy" in
1548             *=*) zzz=`echo "$yyy"|sed 's!=.*!!'`
1549                  case "$zzz" in
1550                  *:*) zzz='' ;;
1551                  *)   xxx=append
1552                       zzz=" "`echo "$yyy"|sed 's!^[^=]*=!!'` 
1553                       yyy=`echo "$yyy"|sed 's!=.*!!'` ;;
1554                  esac
1555                  ;;
1556             esac
1557             case "$xxx" in
1558             '')  case "$yyy" in
1559                  *:*) xxx=`echo "$yyy"|sed 's!:.*!!'`
1560                       yyy=`echo "$yyy"|sed 's!^[^:]*:!!'`
1561                       zzz=`echo "$yyy"|sed 's!^[^=]*=!!'`
1562                       yyy=`echo "$yyy"|sed 's!=.*!!'` ;;
1563                  *)   xxx=`echo "$yyy"|sed 's!:.*!!'`
1564                       yyy=`echo "$yyy"|sed 's!^[^:]*:!!'` ;;
1565                  esac
1566                  ;;       
1567             esac
1568             case "$xxx" in
1569             append)
1570                 echo "$yyy=\"\${$yyy}$zzz\""    >> posthint.sh ;;
1571             clear)
1572                 echo "$yyy=''"                  >> posthint.sh ;;
1573             define)
1574                 case "$zzz" in
1575                 '') zzz=define ;;
1576                 esac
1577                 echo "$yyy='$zzz'"              >> posthint.sh ;;
1578             eval)
1579                 echo "eval \"$yyy=$zzz\""       >> posthint.sh ;;
1580             prepend)
1581                 echo "$yyy=\"$zzz\${$yyy}\""    >> posthint.sh ;;
1582             undef)
1583                 case "$zzz" in
1584                 '') zzz="$uuu" ;;
1585                 esac
1586                 echo "$yyy=$zzz"                >> posthint.sh ;;
1587             *)  echo "$me: unknown -A command '$xxx', ignoring -A $1" >&2 ;;
1588             esac
1589             shift
1590             ;;
1591         -V) echo "$me generated by metaconfig 3.0 PL70." >&2
1592             exit 0;;
1593         --) break;;
1594         -*) echo "$me: unknown option $1" >&2; shift; error=true;;
1595         *) break;;
1596         esac
1597 done
1598
1599 case "$error" in
1600 true)
1601         cat >&2 <<EOM
1602 Usage: $me [-dehrsEKOSV] [-f config.sh] [-D symbol] [-D symbol=value]
1603                  [-U symbol] [-U symbol=] [-A command:symbol...]
1604   -d : use defaults for all answers.
1605   -e : go on without questioning past the production of config.sh.
1606   -f : specify an alternate default configuration file.
1607   -h : print this help message and exit (with an error status).
1608   -r : reuse C symbols value if possible (skips costly nm extraction).
1609   -s : silent mode, only echoes questions and essential information.
1610   -D : define symbol to have some value:
1611          -D symbol         symbol gets the value 'define'
1612          -D symbol=value   symbol gets the value 'value'
1613   -E : stop at the end of questions, after having produced config.sh.
1614   -K : do not use unless you know what you are doing.
1615   -O : let -D and -U override definitions from loaded configuration file.
1616   -S : perform variable substitutions on all .SH files (can mix with -f)
1617   -U : undefine symbol:
1618          -U symbol    symbol gets the value 'undef'
1619          -U symbol=   symbol gets completely empty
1620   -A : manipulate symbol after the platform specific hints have been applied:
1621          -A symbol=value                append " "value to symbol
1622          -A append:symbol=value         append value to symbol
1623          -A define:symbol=value         define symbol to have value
1624          -A clear:symbol                define symbol to be ''
1625          -A define:symbol               define symbol to be 'define'
1626          -A eval:symbol=value           define symbol to be eval of value
1627          -A prepend:symbol=value        prepend value to symbol
1628          -A undef:symbol                define symbol to be 'undef'
1629          -A undef:symbol=               define symbol to be ''
1630   -V : print version number and exit (with a zero status).
1631 EOM
1632         exit 1
1633         ;;
1634 esac
1635
1636 : Sanity checks
1637 case "$fastread$alldone" in
1638 yescont|yesexit) ;;
1639 *)
1640         case "$extractsh" in
1641         true) ;;
1642         *)
1643                 if test ! -t 0; then
1644                         echo "Say 'sh Configure', not 'sh <Configure'"
1645                         exit 1
1646                 fi
1647                 ;;
1648         esac
1649         ;;
1650 esac
1651
1652 exec 4>&1
1653 case "$silent" in
1654 true) exec 1>/dev/null;;
1655 esac
1656
1657 : run the defines and the undefines, if any, but leave the file out there...
1658 touch optdef.sh
1659 . ./optdef.sh
1660 : create the posthint manipulation script and leave the file out there...
1661 touch posthint.sh
1662
1663 : set package name
1664 package=perl5
1665 first=`echo $package | sed -e 's/^\(.\).*/\1/'`
1666 last=`echo $package | sed -e 's/^.\(.*\)/\1/'`
1667 case "`echo AbyZ | tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
1668 ABYZ) spackage=`echo $first | tr '[:lower:]' '[:upper:]'`$last;;
1669 *) spackage=`echo $first | tr '[a-z]' '[A-Z]'`$last;;
1670 esac
1671
1672 : Some greps do not return status, grrr.
1673 echo "grimblepritz" >grimble
1674 if grep blurfldyick grimble >/dev/null 2>&1 ; then
1675         contains=contains
1676 elif grep grimblepritz grimble >/dev/null 2>&1 ; then
1677         contains=grep
1678 else
1679         contains=contains
1680 fi
1681 rm -f grimble
1682 : the following should work in any shell
1683 case "$contains" in
1684 contains*)
1685         echo " "
1686         echo "AGH!  Grep doesn't return a status.  Attempting remedial action."
1687         cat >contains <<'EOSS'
1688 grep "$1" "$2" >.greptmp && cat .greptmp && test -s .greptmp
1689 EOSS
1690 chmod +x contains
1691 esac
1692
1693 : Find the path to the source tree
1694 case "$src" in
1695 '') case "$0" in
1696     */*) src=`echo $0 | sed -e 's%/[^/][^/]*$%%'`
1697          case "$src" in
1698          /*)    ;;
1699          .)     ;;
1700          *)     src=`cd ../$src && pwd` ;;
1701          esac
1702          ;;
1703     *)   src='.';;
1704     esac;;
1705 esac
1706 case "$src" in
1707 '')     src=/
1708         rsrc=/
1709         ;;
1710 /*) rsrc="$src";;
1711 *) rsrc="../$src";;
1712 esac
1713 if test -f $rsrc/Configure && \
1714         $contains "^package=$package$" $rsrc/Configure >/dev/null 2>&1
1715 then
1716    : found it, so we are ok.
1717 else
1718         rsrc=''
1719         for src in . .. ../.. ../../.. ../../../..; do
1720                 if test -f ../$src/Configure && \
1721                         $contains "^package=$package$" ../$src/Configure >/dev/null 2>&1
1722                 then
1723                         rsrc=../$src
1724                         break
1725                 fi
1726         done
1727 fi
1728 case "$rsrc" in
1729 '')
1730         cat <<EOM >&4
1731
1732 Sorry, I can't seem to locate the source dir for $package.  Please start
1733 Configure with an explicit path -- i.e. /some/path/Configure.
1734
1735 EOM
1736         exit 1
1737         ;;
1738 ../.)   rsrc='..';;
1739 *)
1740         echo " "
1741         echo "Sources for $package found in \"$src\"." >&4
1742         ;;
1743 esac
1744
1745 : script used to extract .SH files with variable substitutions
1746 cat >extract <<'EOS'
1747 PERL_CONFIG_SH=true
1748 echo "Doing variable substitutions on .SH files..."
1749 if test -f MANIFEST; then
1750         set x `awk '{print $1}' < MANIFEST | grep '\.SH$'`
1751 else
1752         echo "(Looking for .SH files under the source directory.)"
1753         set x `(cd "$src"; find . -name "*.SH" -print)`
1754 fi
1755 shift
1756 case $# in
1757 0) set x `(cd "$src"; echo *.SH)`; shift;;
1758 esac
1759 if test ! -f "$src/$1"; then
1760         shift
1761 fi
1762 mkdir_p='
1763 name=$1;
1764 create="";
1765 while test $name; do
1766         if test ! -d "$name"; then
1767                 create="$name $create";
1768                 name=`echo $name | sed -e "s|^[^/]*$||"`;
1769                 name=`echo $name | sed -e "s|\(.*\)/.*|\1|"`;
1770         else
1771                 name="";
1772         fi;
1773 done;
1774 for file in $create; do
1775         mkdir $file;
1776 done
1777 '
1778 for file in $*; do
1779         case "$src" in
1780         ".")
1781                 case "$file" in
1782                 */*)
1783                         dir=`expr X$file : 'X\(.*\)/'`
1784                         file=`expr X$file : 'X.*/\(.*\)'`
1785                         (cd "$dir" && . ./$file)
1786                         ;;
1787                 *)
1788                         . ./$file
1789                         ;;
1790                 esac
1791                 ;;
1792         *)
1793                 case "$file" in
1794                 */*)
1795                         dir=`expr X$file : 'X\(.*\)/'`
1796                         file=`expr X$file : 'X.*/\(.*\)'`
1797                         (set x $dir; shift; eval $mkdir_p)
1798                         sh <"$src/$dir/$file"
1799                         ;;
1800                 *)
1801                         sh <"$src/$file"
1802                         ;;
1803                 esac
1804                 ;;
1805         esac
1806 done
1807 if test -f "$src/config_h.SH"; then
1808         if test ! -f config.h; then
1809         : oops, they left it out of MANIFEST, probably, so do it anyway.
1810         . "$src/config_h.SH"
1811         fi
1812 fi
1813 EOS
1814
1815 : extract files and exit if asked to do so
1816 case "$extractsh" in
1817 true)
1818         case "$realsilent" in
1819         true) ;;
1820         *) exec 1>&4;;
1821         esac
1822         case "$config_sh" in
1823         '') config_sh='config.sh';;
1824         esac
1825         echo " "
1826         echo "Fetching answers from $config_sh..."
1827         cd ..
1828         . $config_sh
1829         test "$override" && . ./optdef.sh
1830         echo " "
1831         . UU/extract
1832         rm -rf UU
1833         echo "Extraction done."
1834         exit 0
1835         ;;
1836 esac
1837
1838 : Eunice requires " " instead of "", can you believe it
1839 echo " "
1840 : Here we go...
1841 echo "Beginning of configuration questions for $package."
1842
1843 trap 'echo " "; test -d ../UU && rm -rf X $rmlist; exit 1' 1 2 3 15
1844
1845 : first determine how to suppress newline on echo command
1846 echo " "
1847 echo "Checking echo to see how to suppress newlines..."
1848 (echo "hi there\c" ; echo " ") >.echotmp
1849 if $contains c .echotmp >/dev/null 2>&1 ; then
1850         echo "...using -n."
1851         n='-n'
1852         c=''
1853 else
1854         cat <<'EOM'
1855 ...using \c
1856 EOM
1857         n=''
1858         c='\c'
1859 fi
1860 echo $n "The star should be here-->$c"
1861 echo '*'
1862 rm -f .echotmp
1863
1864 : Now test for existence of everything in MANIFEST
1865 echo " "
1866 if test -f "$rsrc/MANIFEST"; then
1867         echo "First let's make sure your kit is complete.  Checking..." >&4
1868         awk '$1 !~ /PACK[A-Z]+/ {print $1}' "$rsrc/MANIFEST" | (split -l 50 2>/dev/null || split -50)
1869         rm -f missing
1870         tmppwd=`pwd`
1871         for filelist in x??; do
1872                 (cd "$rsrc"; ls `cat "$tmppwd/$filelist"` >/dev/null 2>>"$tmppwd/missing")
1873         done
1874         if test -s missing; then
1875                 cat missing >&4
1876                 cat >&4 <<'EOM'
1877
1878 THIS PACKAGE SEEMS TO BE INCOMPLETE.
1879
1880 You have the option of continuing the configuration process, despite the
1881 distinct possibility that your kit is damaged, by typing 'y'es.  If you
1882 do, don't blame me if something goes wrong.  I advise you to type 'n'o
1883 and contact the author (perlbug@perl.org).
1884
1885 EOM
1886                 echo $n "Continue? [n] $c" >&4
1887                 read ans
1888                 case "$ans" in
1889                 y*)
1890                         echo "Continuing..." >&4
1891                         rm -f missing
1892                         ;;
1893                 *)
1894                         echo "ABORTING..." >&4
1895                         kill $$
1896                         ;;
1897                 esac
1898         else
1899                 echo "Looks good..."
1900         fi
1901 else
1902         echo "There is no MANIFEST file.  I hope your kit is complete !"
1903 fi
1904 rm -f missing x??
1905
1906 echo " "
1907 : Find the appropriate value for a newline for tr
1908 if test -n "$DJGPP"; then
1909        trnl='\012'
1910 fi
1911 if test X"$trnl" = X; then
1912         case "`echo foo|tr '\n' x 2>/dev/null`" in
1913         foox) trnl='\n' ;;
1914         esac
1915 fi
1916 if test X"$trnl" = X; then
1917         case "`echo foo|tr '\012' x 2>/dev/null`" in
1918         foox) trnl='\012' ;;
1919         esac
1920 fi
1921 if test X"$trnl" = X; then
1922        case "`echo foo|tr '\r\n' xy 2>/dev/null`" in
1923        fooxy) trnl='\n\r' ;;
1924        esac
1925 fi
1926 if test X"$trnl" = X; then
1927         cat <<EOM >&2
1928
1929 $me: Fatal Error: cannot figure out how to translate newlines with 'tr'.
1930
1931 EOM
1932         exit 1
1933 fi
1934
1935 : compute the number of columns on the terminal for proper question formatting
1936 case "$COLUMNS" in
1937 '') COLUMNS='80';;
1938 esac
1939
1940 : set up the echo used in my read
1941 myecho="case \"\$xxxm\" in
1942 '') echo $n \"\$rp $c\" >&4;;
1943 *) case \"\$rp\" in
1944         '') echo $n \"[\$xxxm] $c\";;
1945         *)
1946                 if test \`echo \"\$rp [\$xxxm]  \" | wc -c\` -ge $COLUMNS; then
1947                         echo \"\$rp\" >&4
1948                         echo $n \"[\$xxxm] $c\" >&4
1949                 else
1950                         echo $n \"\$rp [\$xxxm] $c\" >&4
1951                 fi
1952                 ;;
1953         esac;;
1954 esac"
1955
1956 : now set up to do reads with possible shell escape and default assignment
1957 cat <<EOSC >myread
1958 $startsh
1959 xxxm=\$dflt
1960 $myecho
1961 ans='!'
1962 case "\$fastread" in
1963 yes) case "\$dflt" in
1964         '') ;;
1965         *) ans='';
1966                 case "\$silent-\$rp" in
1967                 true-) ;;
1968                 *) echo " " >&4;;
1969                 esac;;
1970         esac;;
1971 *) case "\$silent" in
1972         true) case "\$rp" in
1973                 '') ans='';;
1974                 esac;;
1975         esac;;
1976 esac
1977 while expr "X\$ans" : "X!" >/dev/null; do
1978         read answ
1979         set x \$xxxm
1980         shift
1981         aok=''; eval "ans=\\"\$answ\\"" && aok=y
1982         case  "\$answ" in
1983         "!")
1984                 sh 1>&4
1985                 echo " "
1986                 $myecho
1987                 ;;
1988         !*)
1989                 set x \`expr "X\$ans" : "X!\(.*\)\$"\`
1990                 shift
1991                 sh 1>&4 -c "\$*"
1992                 echo " "
1993                 $myecho
1994                 ;;
1995         "\$ans")
1996                 case "\$ans" in
1997                 \\&*)
1998                         set x \`expr "X\$ans" : "X&\(.*\)\$"\`
1999                         shift
2000                         case "\$1" in
2001                         -d)
2002                                 fastread=yes
2003                                 echo "(OK, I'll run with -d after this question.)" >&4
2004                                 ;;
2005                         -*)
2006                                 echo "*** Sorry, \$1 not supported yet." >&4
2007                                 ;;
2008                         esac
2009                         $myecho
2010                         ans=!
2011                         ;;
2012                 esac;;
2013         *)
2014                 case "\$aok" in
2015                 y)
2016                         echo "*** Substitution done -- please confirm."
2017                         xxxm="\$ans"
2018                         ans=\`echo $n "\$ans$c" | tr '$trnl' ' '\`
2019                         xxxm="\$ans"
2020                         ans=!
2021                         ;;
2022                 *)
2023                         echo "*** Error -- try again."
2024                         ans=!
2025                         ;;
2026                 esac
2027                 $myecho
2028                 ;;
2029         esac
2030         case "\$ans\$xxxm\$nostick" in
2031         '')
2032                 ans=!
2033                 $myecho
2034                 ;;
2035         esac
2036 done
2037 case "\$ans" in
2038 '') ans="\$xxxm";;
2039 esac
2040 EOSC
2041
2042 : create .config dir to save info across Configure sessions
2043 test -d ../.config || mkdir ../.config
2044 cat >../.config/README <<EOF
2045 This directory created by Configure to save information that should
2046 persist across sessions for $package.
2047
2048 You may safely delete it if you wish.
2049 EOF
2050
2051 xversion=`awk '/define[         ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
2052 case "$usedevel" in
2053 $define|true|[yY]*) ;;
2054 *) case "$xversion" in
2055    *[13579])
2056         cat >&4 <<EOH
2057 *** WHOA THERE!!! ***
2058
2059     This is an UNSTABLE DEVELOPMENT release.
2060     The version of this $package distribution is $xversion, that is, odd,
2061     (as opposed to even) and that signifies a development release.
2062     If you want a maintenance release, you want an even-numbered version.
2063
2064     Do ***NOT*** install this into production use.
2065     Data corruption and crashes are possible.
2066
2067     It is most seriously suggested that you do not continue any further
2068     unless you want to help in developing and debugging Perl.
2069
2070     If you *still* want to build perl, you can answer 'y' now,
2071     or pass -Dusedevel to Configure.
2072
2073 EOH
2074         rp='Do you really want to continue?'
2075         dflt='n'
2076         . ./myread
2077         case "$ans" in
2078         [yY]) echo >&4 "Okay, continuing."
2079               usedevel="$define" ;;
2080         *) echo >&4 "Okay, bye."
2081            exit 1
2082            ;;
2083         esac
2084         ;;
2085     esac
2086     ;;
2087 esac
2088 case "$usedevel" in
2089 $define|true|[yY]*)
2090         case "$versiononly" in
2091         '') versiononly="$define" ;;
2092         esac
2093         case "$installusrbinperl" in
2094         '') installusrbinperl="$undef" ;;
2095         esac
2096         ;;
2097 esac
2098
2099 : general instructions
2100 needman=true
2101 firsttime=true
2102 user=`(logname) 2>/dev/null`
2103 case "$user" in
2104 '') user=`whoami 2>&1`;;
2105 esac
2106 if $contains "^$user\$" ../.config/instruct >/dev/null 2>&1; then
2107         firsttime=false
2108         echo " "
2109         rp='Would you like to see the instructions?'
2110         dflt=n
2111         . ./myread
2112         case "$ans" in
2113         [yY]*) ;;
2114         *) needman=false;;
2115         esac
2116 fi
2117 if $needman; then
2118         cat <<EOH
2119
2120 This installation shell script will examine your system and ask you questions
2121 to determine how the perl5 package should be installed. If you get
2122 stuck on a question, you may use a ! shell escape to start a subshell or
2123 execute a command.  Many of the questions will have default answers in square
2124 brackets; typing carriage return will give you the default.
2125
2126 On some of the questions which ask for file or directory names you are allowed
2127 to use the ~name construct to specify the login directory belonging to "name",
2128 even if you don't have a shell which knows about that.  Questions where this is
2129 allowed will be marked "(~name ok)".
2130
2131 EOH
2132         rp=''
2133         dflt='Type carriage return to continue'
2134         . ./myread
2135         cat <<'EOH'
2136
2137 The prompter used in this script allows you to use shell variables and
2138 backticks in your answers.  You may use $1, $2, etc...  to refer to the words
2139 in the default answer, as if the default line was a set of arguments given to a
2140 script shell.  This means you may also use $* to repeat the whole default line,
2141 so you do not have to re-type everything to add something to the default.
2142
2143 Everytime there is a substitution, you will have to confirm.  If there is an
2144 error (e.g. an unmatched backtick), the default answer will remain unchanged
2145 and you will be prompted again.
2146
2147 If you are in a hurry, you may run 'Configure -d'.  This will bypass nearly all
2148 the questions and use the computed defaults (or the previous answers if there
2149 was already a config.sh file). Type 'Configure -h' for a list of options.
2150 You may also start interactively and then answer '& -d' at any prompt to turn
2151 on the non-interactive behaviour for the remainder of the execution.
2152
2153 EOH
2154         . ./myread
2155         cat <<EOH
2156
2157 Much effort has been expended to ensure that this shell script will run on any
2158 Unix system.  If despite that it blows up on yours, your best bet is to edit
2159 Configure and run it again.  If you can't run Configure for some reason,
2160 you'll have to generate a config.sh file by hand.  Whatever problems you
2161 have, let me (perlbug@perl.org) know how I blew it.
2162
2163 This installation script affects things in two ways:
2164
2165 1) it may do direct variable substitutions on some of the files included
2166    in this kit.
2167 2) it builds a config.h file for inclusion in C programs.  You may edit
2168    any of these files as the need arises after running this script.
2169
2170 If you make a mistake on a question, there is no easy way to back up to it
2171 currently.  The easiest thing to do is to edit config.sh and rerun all the SH
2172 files.  Configure will offer to let you do this before it runs the SH files.
2173
2174 EOH
2175         dflt='Type carriage return to continue'
2176         . ./myread
2177         case "$firsttime" in
2178         true) echo $user >>../.config/instruct;;
2179         esac
2180 fi
2181
2182 : find out where common programs are
2183 echo " "
2184 echo "Locating common programs..." >&4
2185 cat <<EOSC >loc
2186 $startsh
2187 case \$# in
2188 0) exit 1;;
2189 esac
2190 thing=\$1
2191 shift
2192 dflt=\$1
2193 shift
2194 for dir in \$*; do
2195         case "\$thing" in
2196         .)
2197         if test -d \$dir/\$thing; then
2198                 echo \$dir
2199                 exit 0
2200         fi
2201         ;;
2202         *)
2203         for thisthing in \$dir/\$thing; do
2204                 : just loop through to pick last item
2205         done
2206         if test -f \$thisthing; then
2207                 echo \$thisthing
2208                 exit 0
2209         elif test "X$_exe" != X -a -f \$thisthing$_exe; then
2210                 echo \$thisthing
2211                 exit 0
2212         elif test -f \$dir/\$thing.exe; then
2213                 if test -n "$DJGPP"; then
2214                         echo \$dir/\$thing.exe
2215                 elif test "$eunicefix" != ":"; then
2216                         : on Eunice apparently
2217                         echo \$dir/\$thing
2218                         exit 0
2219                 fi
2220                 exit 0
2221         fi
2222         ;;
2223         esac
2224 done
2225 echo \$dflt
2226 exit 1
2227 EOSC
2228 chmod +x loc
2229 $eunicefix loc
2230 loclist="
2231 awk
2232 cat
2233 chmod
2234 comm
2235 cp
2236 echo
2237 expr
2238 grep
2239 ls
2240 mkdir
2241 rm
2242 sed
2243 sort
2244 touch
2245 tr
2246 uniq
2247 "
2248 trylist="
2249 Mcc
2250 ar
2251 bison
2252 byacc
2253 cpp
2254 csh
2255 date
2256 egrep
2257 gmake
2258 gzip
2259 less
2260 ln
2261 make
2262 more
2263 nm
2264 nroff
2265 pg
2266 test
2267 uname
2268 zip
2269 "
2270 pth=`echo $PATH | sed -e "s/$p_/ /g"`
2271 pth="$pth /lib /usr/lib"
2272 for file in $loclist; do
2273         eval xxx=\$$file
2274         case "$xxx" in
2275         /*|?:[\\/]*)
2276                 if test -f "$xxx"; then
2277                         : ok
2278                 else
2279                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
2280                         xxx=`./loc $file $file $pth`
2281                 fi
2282                 ;;
2283         '') xxx=`./loc $file $file $pth`;;
2284         *) xxx=`./loc $xxx $xxx $pth`;;
2285         esac
2286         eval $file=$xxx$_exe
2287         eval _$file=$xxx
2288         case "$xxx" in
2289         /*)
2290                 echo $file is in $xxx.
2291                 ;;
2292         ?:[\\/]*)
2293                 echo $file is in $xxx.
2294                 ;;
2295         *)
2296                 echo "I don't know where '$file' is, and my life depends on it." >&4
2297                 echo "Go find a public domain implementation or fix your PATH setting!" >&4
2298                 exit 1
2299                 ;;
2300         esac
2301 done
2302 echo " "
2303 echo "Don't worry if any of the following aren't found..."
2304 say=offhand
2305 for file in $trylist; do
2306         eval xxx=\$$file
2307         case "$xxx" in
2308         /*|?:[\\/]*)
2309                 if test -f "$xxx"; then
2310                         : ok
2311                 else
2312                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
2313                         xxx=`./loc $file $file $pth`
2314                 fi
2315                 ;;
2316         '') xxx=`./loc $file $file $pth`;;
2317         *) xxx=`./loc $xxx $xxx $pth`;;
2318         esac
2319         eval $file=$xxx$_exe
2320         eval _$file=$xxx
2321         case "$xxx" in
2322         /*)
2323                 echo $file is in $xxx.
2324                 ;;
2325         ?:[\\/]*)
2326                 echo $file is in $xxx.
2327                 ;;
2328         *)
2329                 echo "I don't see $file out there, $say."
2330                 say=either
2331                 ;;
2332         esac
2333 done
2334 case "$egrep" in
2335 egrep)
2336         echo "Substituting grep for egrep."
2337         egrep=$grep
2338         _egrep=$grep
2339         ;;
2340 esac
2341 case "$ln" in
2342 ln)
2343         echo "Substituting cp for ln."
2344         ln=$cp
2345         _ln=$cp
2346         ;;
2347 esac
2348 case "$make" in
2349 make)   
2350         case "$gmake" in
2351         gmake)
2352         echo "I can't find make or gmake, and my life depends on it." >&4
2353         echo "Go find a public domain implementation or fix your PATH setting!" >&4
2354         exit 1
2355         ;;
2356         esac
2357         ;;
2358 esac    
2359 case "$gmake" in
2360 gmake)  ;;
2361 *)      # We can't have osname yet.
2362         if test -f "/system/gnu_library/bin/ar.pm"; then # Stratus VOS
2363                 # Assume that gmake, if found, is definitely GNU make
2364                 # and prefer it over the system make.
2365                 echo "Substituting gmake for make."
2366                 make=$gmake
2367                 _make=$gmake
2368         fi
2369         ;;
2370 esac
2371 case "$test" in
2372 test)
2373         echo "Hopefully test is built into your sh."
2374         ;;
2375 *)
2376         if `sh -c "PATH= test true" >/dev/null 2>&1`; then
2377                 echo "Using the test built into your sh."
2378                 test=test
2379                 _test=test
2380         fi
2381         ;;
2382 esac
2383 case "$echo" in
2384 echo)
2385         echo "Hopefully echo is built into your sh."
2386         ;;
2387 '') ;;
2388 *)
2389         echo " "
2390 echo "Checking compatibility between $echo and builtin echo (if any)..." >&4
2391         $echo $n "hi there$c" >foo1
2392         echo $n "hi there$c" >foo2
2393         if cmp foo1 foo2 >/dev/null 2>&1; then
2394                 echo "They are compatible.  In fact, they may be identical."
2395         else
2396                 case "$n" in
2397                 '-n') n='' c='\c';;
2398                 *) n='-n' c='';;
2399                 esac
2400                 cat <<FOO
2401 They are not compatible!  You are probably running ksh on a non-USG system.
2402 I'll have to use $echo instead of the builtin, since Bourne shell doesn't
2403 have echo built in and we may have to run some Bourne shell scripts.  That
2404 means I'll have to use '$n$c' to suppress newlines now.  Life is ridiculous.
2405
2406 FOO
2407                 $echo $n "The star should be here-->$c"
2408                 $echo "*"
2409         fi
2410         $rm -f foo1 foo2
2411         ;;
2412 esac
2413
2414 cat <<EOS >trygcc
2415 $startsh
2416 EOS
2417 cat <<'EOSC' >>trygcc
2418 case "$cc" in
2419 '') ;;
2420 *)  $rm -f try try.*
2421     $cat >try.c <<EOM
2422 int main(int argc, char *argv[]) {
2423   return 0;
2424 }
2425 EOM
2426     if $cc -o try $ccflags $ldflags try.c; then
2427        :
2428     else
2429         echo "Uh-oh, the C compiler '$cc' doesn't seem to be working." >&4
2430         despair=yes
2431         trygcc=yes
2432         case "$cc" in
2433         *gcc*) trygcc=no ;;
2434         esac
2435         case "`$cc -v -c try.c 2>&1`" in
2436         *gcc*) trygcc=no ;;
2437         esac
2438         if $test X"$trygcc" = Xyes; then
2439             if gcc -o try -c try.c; then
2440                 echo " "
2441                 echo "You seem to have a working gcc, though." >&4
2442                 rp="Would you like to use it?"
2443                 dflt=y
2444                 if $test -f myread; then
2445                     . ./myread
2446                 else
2447                     if $test -f UU/myread; then
2448                         . ./UU/myread
2449                     else
2450                         echo "Cannot find myread, sorry.  Aborting." >&2
2451                         exit 1
2452                     fi
2453                 fi  
2454                 case "$ans" in
2455                 [yY]*) cc=gcc; ccname=gcc; ccflags=''; despair=no;
2456                        if $test -f usethreads.cbu; then
2457                            $cat >&4 <<EOM 
2458
2459 *** However, any setting of the C compiler flags (e.g. for thread support)
2460 *** has been lost.  It may be necessary to pass -Dcc=gcc to Configure
2461 *** (together with e.g. -Dusethreads).
2462
2463 EOM
2464                        fi;;
2465                 esac
2466             fi
2467         fi
2468     fi
2469     $rm -f try try.*
2470     ;;
2471 esac
2472 EOSC
2473
2474 cat <<EOS >checkcc
2475 $startsh
2476 EOS
2477 cat <<'EOSC' >>checkcc
2478 case "$cc" in        
2479 '') ;;
2480 *)  $rm -f try try.*              
2481     $cat >try.c <<EOM
2482 int main(int argc, char *argv[]) {
2483   return 0;
2484 }
2485 EOM
2486     if $cc -o try $ccflags $ldflags try.c; then
2487        :
2488     else
2489         if $test X"$despair" = Xyes; then
2490            echo "Uh-oh, the C compiler '$cc' doesn't seem to be working." >&4
2491         fi
2492         $cat >&4 <<EOM         
2493 You need to find a working C compiler.
2494 Either (purchase and) install the C compiler supplied by your OS vendor,
2495 or for a free C compiler try http://gcc.gnu.org/
2496 I cannot continue any further, aborting.
2497 EOM
2498         exit 1
2499     fi
2500     $rm -f try try.*
2501     ;;
2502 esac
2503 EOSC
2504
2505 : determine whether symbolic links are supported
2506 echo " "
2507 $touch blurfl
2508 if $ln -s blurfl sym > /dev/null 2>&1 ; then
2509         echo "Symbolic links are supported." >&4
2510         lns="$ln -s"
2511 else
2512         echo "Symbolic links are NOT supported." >&4
2513         lns="$ln"
2514 fi
2515 $rm -f blurfl sym
2516
2517 : determine whether symbolic links are supported
2518 echo " "
2519 case "$lns" in
2520 *"ln"*" -s")
2521         echo "Checking how to test for symbolic links..." >&4
2522         $lns blurfl sym
2523         if $test "X$issymlink" = X; then
2524                 case "$newsh" in
2525                 '') sh     -c "PATH= test -h sym" >/dev/null 2>&1 ;;
2526                 *)  $newsh -c "PATH= test -h sym" >/dev/null 2>&1 ;;
2527                 esac
2528                 if test $? = 0; then
2529                         issymlink="test -h"
2530                 else
2531                         echo "Your builtin 'test -h' may be broken." >&4
2532                         case "$test" in
2533                         /*)     ;;
2534                         *)      pth=`echo $PATH | sed -e "s/$p_/ /g"`
2535                                 for p in $pth
2536                                 do
2537                                         if test -f "$p/$test"; then
2538                                                 test="$p/$test"
2539                                                 break
2540                                         fi
2541                                 done
2542                                 ;;
2543                         esac
2544                         case "$test" in
2545                         /*)
2546                                 echo "Trying external '$test -h'." >&4
2547                                 issymlink="$test -h"
2548                                 if $test ! -h sym >/dev/null 2>&1; then
2549                                         echo "External '$test -h' is broken, too." >&4
2550                                         issymlink=''
2551                                 fi
2552                                 ;;
2553                         *)      issymlink='' ;;
2554                         esac
2555                 fi              
2556         fi
2557         if $test "X$issymlink" = X; then
2558                 if $test -L sym 2>/dev/null; then
2559                         issymlink="$test -L"
2560                         echo "The builtin '$test -L' worked." >&4
2561                 fi
2562         fi
2563         if $test "X$issymlink" != X; then
2564                 echo "You can test for symbolic links with '$issymlink'." >&4
2565         else
2566                 echo "I do not know how you can test for symbolic links." >&4
2567         fi
2568         $rm -f blurfl sym
2569         ;;
2570 *)      echo "No symbolic links, so not testing for their testing..." >&4
2571         ;;
2572 esac
2573 echo " "
2574
2575
2576 case "$mksymlinks" in
2577 $define|true|[yY]*)
2578         case "$src" in
2579         ''|'.') echo "Cannot create symlinks in the original directory." >&4
2580                 exit 1
2581                 ;;
2582         *)      case "$lns:$issymlink" in
2583                 *"ln"*" -s:"*"test -"?)
2584                         echo "Creating the symbolic links..." >&4
2585                         echo "(First creating the subdirectories...)" >&4
2586                         cd ..
2587                         awk '{print $1}' $src/MANIFEST | grep / | sed 's:/[^/]*$::' | sort -u | while true; do
2588                                 read directory
2589                                 test -z "$directory" && break
2590                                 mkdir -p $directory
2591                         done
2592                         # Sanity check 1.
2593                         if test ! -d t/base; then
2594                                 echo "Failed to create the subdirectories.  Aborting." >&4
2595                                 exit 1
2596                         fi
2597                         echo "(Then creating the symlinks...)" >&4
2598                         awk '{print $1}' $src/MANIFEST | while true; do
2599                                 read filename
2600                                 test -z "$filename" && break
2601                                 if test -f $filename; then
2602                                         if $issymlink $filename; then
2603                                                 rm -f $filename
2604                                         fi
2605                                 fi
2606                                 if test -f $filename; then
2607                                         echo "$filename already exists, not symlinking."
2608                                 else
2609                                         ln -s $src/$filename $filename
2610                                 fi
2611                         done
2612                         # Sanity check 2.
2613                         if test ! -f t/base/lex.t; then
2614                                 echo "Failed to create the symlinks (t/base/lex.t missing).  Aborting." >&4
2615                                 exit 1
2616                         fi
2617                         cd UU
2618                         ;;
2619                 *)      echo "(I cannot figure out how to do symbolic links, ignoring mksymlinks)." >&4
2620                         ;;
2621                 esac
2622                 ;;
2623         esac
2624         ;;
2625 esac
2626
2627
2628 case "$usecrosscompile" in
2629 $define|true|[yY]*)
2630         $echo "Cross-compiling..."
2631         croak=''
2632         case "$cc" in
2633         *-*-gcc) # A cross-compiling gcc, probably.
2634             targetarch=`$echo $cc|$sed 's/-gcc$//'`
2635             ar=$targetarch-ar
2636             # leave out ld, choosing it is more complex
2637             nm=$targetarch-nm
2638             ranlib=$targetarch-ranlib
2639             $echo 'extern int foo;' > try.c
2640             set X `$cc -v -E try.c 2>&1 | $awk '/^#include </,/^End of search /'|$grep '/include'`
2641             shift
2642             if $test $# -gt 0; then
2643                 incpth="$incpth $*"
2644                 incpth="`$echo $incpth|$sed 's/^ //'`"
2645                 echo "Guessing incpth '$incpth'." >&4
2646                 for i in $*; do
2647                     j="`$echo $i|$sed 's,/include$,/lib,'`"
2648                     if $test -d $j; then
2649                         libpth="$libpth $j"
2650                     fi
2651                 done   
2652                 libpth="`$echo $libpth|$sed 's/^ //'`"
2653                 echo "Guessing libpth '$libpth'." >&4
2654             fi
2655             $rm -f try.c
2656             ;;
2657         esac
2658         case "$targetarch" in
2659         '') echo "Targetarch not defined." >&4; croak=y ;;
2660         *)  echo "Using targetarch $targetarch." >&4 ;;
2661         esac
2662         case "$incpth" in
2663         '') echo "Incpth not defined." >&4; croak=y ;;
2664         *)  echo "Using incpth '$incpth'." >&4 ;;
2665         esac
2666         case "$libpth" in
2667         '') echo "Libpth not defined." >&4; croak=y ;;
2668         *)  echo "Using libpth '$libpth'." >&4 ;;
2669         esac
2670         case "$usrinc" in
2671         '') for i in $incpth; do
2672                 if $test -f $i/errno.h -a -f $i/stdio.h -a -f $i/time.h; then
2673                     usrinc=$i
2674                     echo "Guessing usrinc $usrinc." >&4
2675                     break
2676                 fi
2677             done
2678             case "$usrinc" in
2679             '') echo "Usrinc not defined." >&4; croak=y ;;
2680             esac
2681             ;;
2682         *)  echo "Using usrinc $usrinc." >&4 ;;
2683         esac
2684         case "$targethost" in
2685         '') echo "Targethost not defined." >&4; croak=y ;;
2686         *)  echo "Using targethost $targethost." >&4
2687         esac
2688         locincpth=' '
2689         loclibpth=' '
2690         case "$croak" in
2691         y) echo "Cannot continue, aborting." >&4; exit 1 ;;
2692         esac
2693         case "$src" in
2694         /*) run=$src/Cross/run
2695             targetmkdir=$src/Cross/mkdir
2696             to=$src/Cross/to
2697             from=$src/Cross/from
2698             ;;
2699         *)  pwd=`$test -f ../Configure & cd ..; pwd`
2700             run=$pwd/Cross/run
2701             targetmkdir=$pwd/Cross/mkdir
2702             to=$pwd/Cross/to
2703             from=$pwd/Cross/from
2704             ;;
2705         esac
2706         case "$targetrun" in
2707         '') targetrun=ssh ;;
2708         esac
2709         case "$targetto" in
2710         '') targetto=scp ;;
2711         esac
2712         case "$targetfrom" in
2713         '') targetfrom=scp ;;
2714         esac
2715         run=$run-$targetrun
2716         to=$to-$targetto
2717         from=$from-$targetfrom
2718         case "$targetdir" in
2719         '')  targetdir=/tmp
2720              echo "Guessing targetdir $targetdir." >&4
2721              ;;
2722         esac
2723         case "$targetuser" in
2724         '')  targetuser=root
2725              echo "Guessing targetuser $targetuser." >&4
2726              ;;
2727         esac
2728         case "$targetfrom" in
2729         scp)    q=-q ;;
2730         *)      q='' ;;
2731         esac
2732         case "$targetrun" in
2733         ssh|rsh)
2734             cat >$run <<EOF
2735 #!/bin/sh
2736 case "\$1" in
2737 -cwd)
2738   shift
2739   cwd=\$1
2740   shift
2741   ;;
2742 esac
2743 case "\$cwd" in
2744 '') cwd=$targetdir ;;
2745 esac
2746 exe=\$1
2747 shift
2748 if $test ! -f \$exe.xok; then
2749   $to \$exe
2750   $touch \$exe.xok
2751 fi
2752 $targetrun -l $targetuser $targethost "cd \$cwd && ./\$exe \$@"
2753 EOF
2754             ;;
2755         *)  echo "Unknown targetrun '$targetrun'" >&4
2756             exit 1
2757             ;;
2758         esac
2759         case "$targetmkdir" in
2760         */Cross/mkdir)
2761             cat >$targetmkdir <<EOF
2762 #!/bin/sh
2763 $targetrun -l $targetuser $targethost "mkdir -p \$@"
2764 EOF
2765             $chmod a+rx $targetmkdir
2766             ;;
2767         *)  echo "Unknown targetmkdir '$targetmkdir'" >&4
2768             exit 1
2769             ;;
2770         esac
2771         case "$targetto" in
2772         scp|rcp)
2773             cat >$to <<EOF
2774 #!/bin/sh
2775 for f in \$@
2776 do
2777   case "\$f" in
2778   /*)
2779     $targetmkdir \`dirname \$f\`
2780     $targetto $q \$f $targetuser@$targethost:\$f            || exit 1
2781     ;;
2782   *)
2783     $targetmkdir $targetdir/\`dirname \$f\`
2784     $targetto $q \$f $targetuser@$targethost:$targetdir/\$f || exit 1
2785     ;;
2786   esac
2787 done
2788 exit 0
2789 EOF
2790             ;;
2791         cp) cat >$to <<EOF
2792 #!/bin/sh
2793 for f in \$@
2794 do
2795   case "\$f" in
2796   /*)
2797     $mkdir -p $targetdir/\`dirname \$f\`
2798     $cp \$f $targetdir/\$f || exit 1
2799     ;;
2800   *)
2801     $targetmkdir $targetdir/\`dirname \$f\`
2802     $cp \$f $targetdir/\$f || exit 1
2803     ;;
2804   esac
2805 done
2806 exit 0
2807 EOF
2808             ;;
2809         *)  echo "Unknown targetto '$targetto'" >&4
2810             exit 1
2811             ;;
2812         esac
2813         case "$targetfrom" in
2814         scp|rcp)
2815           cat >$from <<EOF
2816 #!/bin/sh
2817 for f in \$@
2818 do
2819   $rm -f \$f
2820   $targetfrom $q $targetuser@$targethost:$targetdir/\$f . || exit 1
2821 done
2822 exit 0
2823 EOF
2824             ;;
2825         cp) cat >$from <<EOF
2826 #!/bin/sh
2827 for f in \$@
2828 do
2829   $rm -f \$f
2830   cp $targetdir/\$f . || exit 1
2831 done
2832 exit 0
2833 EOF
2834             ;;
2835         *)  echo "Unknown targetfrom '$targetfrom'" >&4
2836             exit 1
2837             ;;
2838         esac
2839         if $test ! -f $run; then
2840             echo "Target 'run' script '$run' not found." >&4
2841         else
2842             $chmod a+rx $run
2843         fi
2844         if $test ! -f $to; then
2845             echo "Target 'to' script '$to' not found." >&4
2846         else
2847             $chmod a+rx $to
2848         fi
2849         if $test ! -f $from; then
2850             echo "Target 'from' script '$from' not found." >&4
2851         else
2852             $chmod a+rx $from
2853         fi
2854         if $test ! -f $run -o ! -f $to -o ! -f $from; then
2855             exit 1
2856         fi
2857         cat >&4 <<EOF
2858 Using '$run' for remote execution,
2859 and '$from' and '$to'
2860 for remote file transfer.
2861 EOF
2862         ;;
2863 *)      run=''
2864         to=:
2865         from=:
2866         usecrosscompile='undef'
2867         targetarch=''
2868         ;;
2869 esac
2870
2871 : see whether [:lower:] and [:upper:] are supported character classes
2872 echo " "
2873 case "`echo AbyZ | $tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
2874 ABYZ)
2875         echo "Good, your tr supports [:lower:] and [:upper:] to convert case." >&4
2876         up='[:upper:]'
2877         low='[:lower:]'
2878         ;;
2879 *)      # There is a discontinuity in EBCDIC between 'I' and 'J'
2880         # (0xc9 and 0xd1), therefore that is a nice testing point.
2881         if test "X$up" = X -o "X$low" = X; then
2882             case "`echo IJ | $tr '[I-J]' '[i-j]' 2>/dev/null`" in
2883             ij) up='[A-Z]'
2884                 low='[a-z]'
2885                 ;;
2886             esac
2887         fi
2888         if test "X$up" = X -o "X$low" = X; then
2889             case "`echo IJ | $tr I-J i-j 2>/dev/null`" in
2890             ij) up='A-Z'
2891                 low='a-z'
2892                 ;;
2893             esac
2894         fi
2895         if test "X$up" = X -o "X$low" = X; then
2896             case "`echo IJ | od -x 2>/dev/null`" in
2897             *C9D1*|*c9d1*)
2898                 echo "Hey, this might be EBCDIC." >&4
2899                 if test "X$up" = X -o "X$low" = X; then
2900                     case "`echo IJ | $tr '[A-IJ-RS-Z]' '[a-ij-rs-z]' 2>/dev/null`" in
2901                     ij) up='[A-IJ-RS-Z]'
2902                         low='[a-ij-rs-z]'
2903                         ;;
2904                     esac
2905                 fi
2906                 if test "X$up" = X -o "X$low" = X; then
2907                     case "`echo IJ | $tr A-IJ-RS-Z a-ij-rs-z 2>/dev/null`" in
2908                     ij) up='A-IJ-RS-Z'
2909                         low='a-ij-rs-z'
2910                         ;;
2911                     esac
2912                 fi
2913                 ;;
2914             esac
2915         fi
2916 esac
2917 case "`echo IJ | $tr \"$up\" \"$low\" 2>/dev/null`" in
2918 ij)
2919     echo "Using $up and $low to convert case." >&4
2920     ;;
2921 *)
2922     echo "I don't know how to translate letters from upper to lower case." >&4
2923     echo "Your tr is not acting any way I know of." >&4
2924     exit 1
2925     ;;
2926 esac
2927 : set up the translation script tr, must be called with ./tr of course
2928 cat >tr <<EOSC
2929 $startsh
2930 case "\$1\$2" in
2931 '[A-Z][a-z]') exec $tr '$up' '$low';;
2932 '[a-z][A-Z]') exec $tr '$low' '$up';;
2933 esac
2934 exec $tr "\$@"
2935 EOSC
2936 chmod +x tr
2937 $eunicefix tr
2938
2939 : Try to determine whether config.sh was made on this system
2940 case "$config_sh" in
2941 '')
2942 myuname=`$uname -a 2>/dev/null`
2943 $test -z "$myuname" && myuname=`hostname 2>/dev/null`
2944 # tr '[A-Z]' '[a-z]' would not work in EBCDIC
2945 # because the A-Z/a-z are not consecutive.
2946 myuname=`echo $myuname | $sed -e 's/^[^=]*=//' -e 's/\///g' | \
2947         ./tr '[A-Z]' '[a-z]' | $tr $trnl ' '`
2948 newmyuname="$myuname"
2949 dflt=n
2950 case "$knowitall" in
2951 '')
2952         if test -f ../config.sh; then
2953                 if $contains myuname= ../config.sh >/dev/null 2>&1; then
2954                         eval "`grep myuname= ../config.sh`"
2955                 fi
2956                 if test "X$myuname" = "X$newmyuname"; then
2957                         dflt=y
2958                 fi
2959         fi
2960         ;;
2961 *) dflt=y;;
2962 esac
2963
2964 : Get old answers from old config file if Configure was run on the
2965 : same system, otherwise use the hints.
2966 hint=default
2967 cd ..
2968 if test -f config.sh; then
2969         echo " "
2970         rp="I see a config.sh file.  Shall I use it to set the defaults?"
2971         . UU/myread
2972         case "$ans" in
2973         n*|N*) echo "OK, I'll ignore it."
2974                 mv config.sh config.sh.old
2975                 myuname="$newmyuname"
2976                 ;;
2977         *)  echo "Fetching default answers from your old config.sh file..." >&4
2978                 tmp_n="$n"
2979                 tmp_c="$c"
2980                 tmp_sh="$sh"
2981                 . ./config.sh
2982                 cp config.sh UU
2983                 n="$tmp_n"
2984                 c="$tmp_c"
2985                 : Older versions did not always set $sh.  Catch re-use of such
2986                 : an old config.sh.
2987                 case "$sh" in
2988                 '') sh="$tmp_sh" ;;
2989                 esac
2990                 hint=previous
2991                 ;;
2992         esac
2993 fi
2994 . ./UU/checkcc
2995 if test ! -f config.sh; then
2996         $cat <<EOM
2997
2998 First time through, eh?  I have some defaults handy for some systems
2999 that need some extra help getting the Configure answers right:
3000
3001 EOM
3002         (cd $src/hints; ls -C *.sh) | $sed 's/\.sh/   /g' >&4
3003         dflt=''
3004         : Half the following guesses are probably wrong... If you have better
3005         : tests or hints, please send them to perlbug@perl.org
3006         : The metaconfig authors would also appreciate a copy...
3007         $test -f /irix && osname=irix
3008         $test -f /xenix && osname=sco_xenix
3009         $test -f /dynix && osname=dynix
3010         $test -f /dnix && osname=dnix
3011         $test -f /lynx.os && osname=lynxos
3012         $test -f /unicos && osname=unicos && osvers=`$uname -r`
3013         $test -f /unicosmk && osname=unicosmk && osvers=`$uname -r`
3014         $test -f /unicosmk.ar && osname=unicosmk && osvers=`$uname -r`
3015         $test -f /bin/mips && /bin/mips && osname=mips
3016         $test -d /NextApps && set X `hostinfo | grep 'NeXT Mach.*:' | \
3017                 $sed -e 's/://' -e 's/\./_/'` && osname=next && osvers=$4
3018         $test -d /usr/apollo/bin && osname=apollo
3019         $test -f /etc/saf/_sactab && osname=svr4
3020         $test -d /usr/include/minix && osname=minix
3021         $test -f /system/gnu_library/bin/ar.pm && osname=vos
3022         if $test -d /MachTen -o -d /MachTen_Folder; then
3023                 osname=machten
3024                 if $test -x /sbin/version; then
3025                         osvers=`/sbin/version | $awk '{print $2}' |
3026                         $sed -e 's/[A-Za-z]$//'`
3027                 elif $test -x /usr/etc/version; then
3028                         osvers=`/usr/etc/version | $awk '{print $2}' |
3029                         $sed -e 's/[A-Za-z]$//'`
3030                 else
3031                         osvers="$2.$3"
3032                 fi
3033         fi
3034
3035         $test -f /sys/posix.dll &&
3036                 $test -f /usr/bin/what &&
3037                 set X `/usr/bin/what /sys/posix.dll` &&
3038                 $test "$3" = UWIN &&
3039                 osname=uwin &&
3040                 osvers="$5"
3041
3042         if $test -f $uname; then
3043                 set X $myuname
3044                 shift
3045
3046                 case "$5" in
3047                 fps*) osname=fps ;;
3048                 mips*)
3049                         case "$4" in
3050                         umips) osname=umips ;;
3051                         *) osname=mips ;;
3052                         esac;;
3053                 [23]100) osname=mips ;;
3054                 next*) osname=next ;;
3055                 i386*)
3056                         tmp=`/bin/uname -X 2>/dev/null|awk '/3\.2v[45]/{ print $(NF) }'`
3057                         if $test "$tmp" != "" -a "$3" = "3.2" -a -f '/etc/systemid'; then
3058                                 osname='sco'
3059                                 osvers=$tmp
3060                         elif $test -f /etc/kconfig; then
3061                                 osname=isc
3062                                 if test "$lns" = "$ln -s"; then
3063                                         osvers=4
3064                                 elif $contains _SYSV3 /usr/include/stdio.h > /dev/null 2>&1 ; then
3065                                         osvers=3
3066                                 elif $contains _POSIX_SOURCE /usr/include/stdio.h > /dev/null 2>&1 ; then
3067                                         osvers=2
3068                                 fi
3069                         fi
3070                         tmp=''
3071                         ;;
3072                 pc*)
3073                         if test -n "$DJGPP"; then
3074                                 osname=dos
3075                                 osvers=djgpp
3076                         fi
3077                         ;;
3078                 esac
3079
3080                 case "$1" in
3081                 aix) osname=aix
3082                         tmp=`( (oslevel) 2>/dev/null || echo "not found") 2>&1`
3083                         case "$tmp" in
3084                         'not found') osvers="$4"."$3" ;;
3085                         '<3240'|'<>3240') osvers=3.2.0 ;;
3086                         '=3240'|'>3240'|'<3250'|'<>3250') osvers=3.2.4 ;;
3087                         '=3250'|'>3250') osvers=3.2.5 ;;
3088                         *) osvers=$tmp;;
3089                         esac
3090                         ;;
3091                 bsd386) osname=bsd386
3092                         osvers=`$uname -r`
3093                         ;;
3094                 cygwin*) osname=cygwin
3095                         osvers="$3"
3096                         ;;
3097                 *dc.osx) osname=dcosx
3098                         osvers="$3"
3099                         ;;
3100                 dnix) osname=dnix
3101                         osvers="$3"
3102                         ;;
3103                 domainos) osname=apollo
3104                         osvers="$3"
3105                         ;;
3106                 dgux) osname=dgux 
3107                         osvers="$3"
3108                         ;;
3109                 dynixptx*) osname=dynixptx
3110                         osvers=`echo "$4"|sed 's/^v//'`
3111                         ;;
3112                 freebsd) osname=freebsd 
3113                         osvers="$3" ;;
3114                 genix) osname=genix ;;
3115                 hp*) osname=hpux 
3116                         osvers=`echo "$3" | $sed 's,.*\.\([0-9]*\.[0-9]*\),\1,'`
3117                         ;;
3118                 irix*) osname=irix
3119                         case "$3" in
3120                         4*) osvers=4 ;;
3121                         5*) osvers=5 ;;
3122                         *)      osvers="$3" ;;
3123                         esac
3124                         ;;
3125                 linux) osname=linux
3126                         case "$3" in
3127                         *)      osvers="$3" ;;
3128                         esac
3129                         ;;
3130                 MiNT) osname=mint
3131                         ;;
3132                 netbsd*) osname=netbsd
3133                         osvers="$3"
3134                         ;;
3135                 news-os) osvers="$3"
3136                         case "$3" in
3137                         4*) osname=newsos4 ;;
3138                         *) osname=newsos ;;
3139                         esac
3140                         ;;
3141                 next*) osname=next ;;
3142                 nonstop-ux) osname=nonstopux ;;
3143                 openbsd) osname=openbsd
3144                         osvers="$3"
3145                         ;;
3146                 os2)    osname=os2
3147                         osvers="$4"
3148                         ;;
3149                 POSIX-BC | posix-bc ) osname=posix-bc
3150                         osvers="$3"
3151                         ;;
3152                 powerux | power_ux | powermax_os | powermaxos | \
3153                 powerunix | power_unix) osname=powerux
3154                         osvers="$3"
3155                         ;;
3156                 qnx) osname=qnx
3157                         osvers="$4"
3158                         ;;
3159                 solaris) osname=solaris
3160                         case "$3" in
3161                         5*) osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3162                         *)      osvers="$3" ;;
3163                         esac
3164                         ;;
3165                 sunos) osname=sunos
3166                         case "$3" in
3167                         5*) osname=solaris
3168                                 osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3169                         *)      osvers="$3" ;;
3170                         esac
3171                         ;;
3172                 titanos) osname=titanos
3173                         case "$3" in
3174                         1*) osvers=1 ;;
3175                         2*) osvers=2 ;;
3176                         3*) osvers=3 ;;
3177                         4*) osvers=4 ;;
3178                         *)      osvers="$3" ;;
3179                         esac
3180                         ;;
3181                 ultrix) osname=ultrix
3182                         osvers="$3"
3183                         ;;
3184                 osf1|mls+)      case "$5" in
3185                                 alpha)
3186                                         osname=dec_osf
3187                                         osvers=`sizer -v | awk -FUNIX '{print $2}' | awk '{print $1}' |  tr '[A-Z]' '[a-z]' | sed 's/^[xvt]//'`
3188                                         case "$osvers" in
3189                                         [1-9].[0-9]*) ;;
3190                                         *) osvers=`echo "$3" | sed 's/^[xvt]//'` ;;
3191                                         esac
3192                                         ;;
3193                         hp*)    osname=hp_osf1  ;;
3194                         mips)   osname=mips_osf1 ;;
3195                         esac
3196                         ;;
3197                 # UnixWare 7.1.2 is known as Open UNIX 8
3198                 openunix|unixware) osname=svr5
3199                         osvers="$4"
3200                         ;;
3201                 uts)    osname=uts
3202                         osvers="$3"
3203                         ;;
3204                 vos) osvers="$3"
3205                         ;;
3206                 $2) case "$osname" in
3207                         *isc*) ;;
3208                         *freebsd*) ;;
3209                         svr*)
3210                                 : svr4.x or possibly later
3211                                 case "svr$3" in 
3212                                 ${osname}*)
3213                                         osname=svr$3
3214                                         osvers=$4
3215                                         ;;
3216                                 esac
3217                                 case "$osname" in
3218                                 svr4.0)
3219                                         : Check for ESIX
3220                                         if test -f /stand/boot ; then
3221                                                 eval `grep '^INITPROG=[a-z/0-9]*$' /stand/boot`
3222                                                 if test -n "$INITPROG" -a -f "$INITPROG"; then
3223                         isesix=`strings -a $INITPROG|grep 'ESIX SYSTEM V/386 Release 4.0'`
3224                                                         if test -n "$isesix"; then
3225                                                                 osname=esix4
3226                                                         fi
3227                                                 fi
3228                                         fi
3229                                         ;;
3230                                 esac
3231                                 ;;
3232                         *)      if test -f /etc/systemid; then
3233                                         osname=sco
3234                                         set `echo $3 | $sed 's/\./ /g'` $4
3235                                         if $test -f $src/hints/sco_$1_$2_$3.sh; then
3236                                                 osvers=$1.$2.$3
3237                                         elif $test -f $src/hints/sco_$1_$2.sh; then
3238                                                 osvers=$1.$2
3239                                         elif $test -f $src/hints/sco_$1.sh; then
3240                                                 osvers=$1
3241                                         fi
3242                                 else
3243                                         case "$osname" in
3244                                         '') : Still unknown.  Probably a generic Sys V.
3245                                                 osname="sysv"
3246                                                 osvers="$3"
3247                                                 ;;
3248                                         esac
3249                                 fi
3250                                 ;;
3251                         esac
3252                         ;;
3253                 *)      case "$osname" in
3254                         '') : Still unknown.  Probably a generic BSD.
3255                                 osname="$1"
3256                                 osvers="$3"
3257                                 ;;
3258                         esac
3259                         ;;
3260                 esac
3261         else
3262                 if test -f /vmunix -a -f $src/hints/news_os.sh; then
3263                         (what /vmunix | UU/tr '[A-Z]' '[a-z]') > UU/kernel.what 2>&1
3264                         if $contains news-os UU/kernel.what >/dev/null 2>&1; then
3265                                 osname=news_os
3266                         fi
3267                         $rm -f UU/kernel.what
3268                 elif test -d c:/. -o -n "$is_os2" ; then
3269                         set X $myuname
3270                         osname=os2
3271                         osvers="$5"
3272                 fi
3273         fi
3274         
3275         case "$targetarch" in
3276         '') ;;
3277         *)  hostarch=$osname
3278             osname=`echo $targetarch|sed 's,^[^-]*-,,'`
3279             osvers=''
3280             ;;
3281         esac
3282
3283         : Now look for a hint file osname_osvers, unless one has been
3284         : specified already.
3285         case "$hintfile" in
3286         ''|' ')
3287                 file=`echo "${osname}_${osvers}" | $sed -e 's%\.%_%g' -e 's%_$%%'`
3288                 : Also try without trailing minor version numbers.
3289                 xfile=`echo $file | $sed -e 's%_[^_]*$%%'`
3290                 xxfile=`echo $xfile | $sed -e 's%_[^_]*$%%'`
3291                 xxxfile=`echo $xxfile | $sed -e 's%_[^_]*$%%'`
3292                 xxxxfile=`echo $xxxfile | $sed -e 's%_[^_]*$%%'`
3293                 case "$file" in
3294                 '') dflt=none ;;
3295                 *)  case "$osvers" in
3296                         '') dflt=$file
3297                                 ;;
3298                         *)  if $test -f $src/hints/$file.sh ; then
3299                                         dflt=$file
3300                                 elif $test -f $src/hints/$xfile.sh ; then
3301                                         dflt=$xfile
3302                                 elif $test -f $src/hints/$xxfile.sh ; then
3303                                         dflt=$xxfile
3304                                 elif $test -f $src/hints/$xxxfile.sh ; then
3305                                         dflt=$xxxfile
3306                                 elif $test -f $src/hints/$xxxxfile.sh ; then
3307                                         dflt=$xxxxfile
3308                                 elif $test -f "$src/hints/${osname}.sh" ; then
3309                                         dflt="${osname}"
3310                                 else
3311                                         dflt=none
3312                                 fi
3313                                 ;;
3314                         esac
3315                         ;;
3316                 esac
3317                 if $test -f Policy.sh ; then
3318                         case "$dflt" in
3319                         *Policy*) ;;
3320                         none) dflt="Policy" ;;
3321                         *) dflt="Policy $dflt" ;;
3322                         esac
3323                 fi
3324                 ;;
3325         *)
3326                 dflt=`echo $hintfile | $sed 's/\.sh$//'`
3327                 ;;
3328         esac
3329
3330         if $test -f Policy.sh ; then
3331                 $cat <<EOM
3332
3333 There's also a Policy hint file available, which should make the
3334 site-specific (policy) questions easier to answer.
3335 EOM
3336
3337         fi
3338
3339         $cat <<EOM
3340
3341 You may give one or more space-separated answers, or "none" if appropriate.
3342 A well-behaved OS will have no hints, so answering "none" or just "Policy"
3343 is a good thing.  DO NOT give a wrong version or a wrong OS.
3344
3345 EOM
3346
3347         rp="Which of these apply, if any?"
3348         . UU/myread
3349         tans=$ans
3350         for file in $tans; do
3351                 if $test X$file = XPolicy -a -f Policy.sh; then
3352                         . Policy.sh
3353                         $cat Policy.sh >> UU/config.sh
3354                 elif $test -f $src/hints/$file.sh; then
3355                         . $src/hints/$file.sh
3356                         $cat $src/hints/$file.sh >> UU/config.sh
3357                 elif $test X"$tans" = X -o X"$tans" = Xnone ; then
3358                         : nothing
3359                 else
3360                         : Give one chance to correct a possible typo.
3361                         echo "$file.sh does not exist"
3362                         dflt=$file
3363                         rp="hint to use instead?"
3364                         . UU/myread
3365                         for file in $ans; do
3366                                 if $test -f "$src/hints/$file.sh"; then
3367                                         . $src/hints/$file.sh
3368                                         $cat $src/hints/$file.sh >> UU/config.sh
3369                                 elif $test X$ans = X -o X$ans = Xnone ; then
3370                                         : nothing
3371                                 else
3372                                         echo "$file.sh does not exist -- ignored."
3373                                 fi
3374                         done
3375                 fi
3376         done
3377
3378         hint=recommended
3379         : Remember our hint file for later.
3380         if $test -f "$src/hints/$file.sh" ; then
3381                 hintfile="$file"
3382         else
3383                 hintfile=''
3384         fi
3385 fi
3386 cd UU
3387 ;;
3388 *)
3389         echo " "
3390         echo "Fetching default answers from $config_sh..." >&4
3391         tmp_n="$n"
3392         tmp_c="$c"
3393         cd ..
3394         cp $config_sh config.sh 2>/dev/null
3395         chmod +w config.sh
3396         . ./config.sh
3397         cd UU
3398         cp ../config.sh .
3399         n="$tmp_n"
3400         c="$tmp_c"
3401         hint=previous
3402         ;;
3403 esac
3404 test "$override" && . ./optdef.sh
3405
3406 : Restore computed paths
3407 for file in $loclist $trylist; do
3408         eval $file="\$_$file"
3409 done
3410
3411 cat << EOM
3412
3413 Configure uses the operating system name and version to set some defaults.
3414 The default value is probably right if the name rings a bell. Otherwise,
3415 since spelling matters for me, either accept the default or answer "none"
3416 to leave it blank.
3417
3418 EOM
3419 case "$osname" in
3420         ''|' ')
3421                 case "$hintfile" in
3422                 ''|' '|none) dflt=none ;;
3423                 *)  dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/_.*$//'` ;;
3424                 esac
3425                 ;;
3426         *) dflt="$osname" ;;
3427 esac
3428 rp="Operating system name?"
3429 . ./myread
3430 case "$ans" in
3431 none)  osname='' ;;
3432 *) osname=`echo "$ans" | $sed -e 's/[   ][      ]*/_/g' | ./tr '[A-Z]' '[a-z]'`;;
3433 esac
3434 echo " "
3435 case "$osvers" in
3436         ''|' ')
3437                 case "$hintfile" in
3438                 ''|' '|none) dflt=none ;;
3439                 *)      dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/^[^_]*//'`
3440                         dflt=`echo $dflt | $sed -e 's/^_//' -e 's/_/./g'`
3441                         case "$dflt" in
3442                         ''|' ') dflt=none ;;
3443                         esac
3444                         ;;
3445                 esac
3446                 ;;
3447         *) dflt="$osvers" ;;
3448 esac
3449 rp="Operating system version?"
3450 . ./myread
3451 case "$ans" in
3452 none)  osvers='' ;;
3453 *) osvers="$ans" ;;
3454 esac
3455
3456
3457 . ./posthint.sh
3458
3459 : who configured the system
3460 cf_time=`LC_ALL=C; LANGUAGE=C; export LC_ALL; export LANGUAGE; $date 2>&1`
3461 cf_by=`(logname) 2>/dev/null`
3462 case "$cf_by" in
3463 "")
3464         cf_by=`(whoami) 2>/dev/null`
3465         case "$cf_by" in
3466         "") cf_by=unknown ;;
3467         esac ;;
3468 esac
3469
3470 : set up the script used to warn in case of inconsistency
3471 cat <<EOS >whoa
3472 $startsh
3473 EOS
3474 cat <<'EOSC' >>whoa
3475 dflt=y
3476 echo " "
3477 echo "*** WHOA THERE!!! ***" >&4
3478 echo "    The $hint value for \$$var on this machine was \"$was\"!" >&4
3479 rp="    Keep the $hint value?"
3480 . ./myread
3481 case "$ans" in
3482 y) td=$was; tu=$was;;
3483 esac
3484 EOSC
3485
3486 : function used to set $1 to $val
3487 setvar='var=$1; eval "was=\$$1"; td=$define; tu=$undef;
3488 case "$val$was" in
3489 $define$undef) . ./whoa; eval "$var=\$td";;
3490 $undef$define) . ./whoa; eval "$var=\$tu";;
3491 *) eval "$var=$val";;
3492 esac'
3493
3494 case "$usesocks" in
3495 $define|true|[yY]*)     dflt='y';;
3496 *) dflt='n';;
3497 esac
3498 cat <<EOM
3499
3500 Perl can be built to use the SOCKS proxy protocol library.  To do so,
3501 Configure must be run with -Dusesocks.  If you use SOCKS you also need
3502 to use the PerlIO abstraction layer, this will be implicitly selected.
3503
3504 If this doesn't make any sense to you, just accept the default '$dflt'.
3505 EOM
3506 rp='Build Perl for SOCKS?'
3507 . ./myread
3508 case "$ans" in
3509 y|Y)    val="$define" ;;     
3510 *)      val="$undef" ;;
3511 esac
3512 set usesocks
3513 eval $setvar
3514
3515 case "$usesocks" in
3516 $define|true|[yY]*) useperlio="$define";;
3517 esac
3518
3519 case "$useperlio" in
3520 $define|true|[yY]*|'')  dflt='y';;
3521 *) dflt='n';;
3522 esac
3523 cat <<EOM
3524
3525 Previous version of $package used the standard IO mechanisms as
3526 defined in <stdio.h>.  Versions 5.003_02 and later of $package allow
3527 alternate IO mechanisms via the PerlIO abstraction layer, but the
3528 stdio mechanism is still available if needed.  The abstraction layer
3529 can use AT&T's sfio (if you already have sfio installed) or regular stdio.
3530 Using PerlIO with sfio may cause problems with some extension modules.
3531
3532 If this doesn't make any sense to you, just accept the default '$dflt'.
3533 EOM
3534 rp='Use the PerlIO abstraction layer?'
3535 . ./myread
3536 case "$ans" in
3537 y|Y) 
3538         val="$define"
3539         ;;
3540 *)      
3541         echo "Ok, doing things the stdio way."
3542         val="$undef"
3543         ;;
3544 esac
3545 set useperlio
3546 eval $setvar 
3547
3548 case "$usesocks" in
3549 $define|true|[yY]*)
3550         case "$useperlio" in
3551         $define|true|[yY]*) ;;
3552         *)      cat >&4 <<EOM
3553
3554 You are using the SOCKS proxy protocol library which means that you
3555 should also use the PerlIO layer.  You may be headed for trouble.
3556
3557 EOM
3558                 ;;
3559         esac
3560         ;;
3561 esac
3562
3563         
3564 case "$usethreads" in
3565 $define|true|[yY]*)     dflt='y';;
3566 *)     # Catch case where user specified ithreads or 5005threads but
3567        # forgot -Dusethreads (A.D. 4/2002)
3568        case "$useithreads$use5005threads" in
3569        *$define*)      
3570                 case "$useperlio" in
3571                 "$define")      dflt='y' ;;
3572                 *)              dflt='n' ;;
3573                 esac
3574                 ;;
3575        *)       dflt='n';;
3576        esac
3577        ;;
3578 esac
3579 cat <<EOM
3580
3581 Perl can be built to take advantage of threads on some systems.
3582 To do so, Configure can be run with -Dusethreads.
3583
3584 Note that Perl built with threading support runs slightly slower
3585 and uses more memory than plain Perl. The current implementation
3586 is believed to be stable, but it is fairly new, and so should be
3587 treated with caution.
3588
3589 If this doesn't make any sense to you, just accept the default '$dflt'.
3590 EOM
3591 rp='Build a threading Perl?'
3592 . ./myread
3593 case "$ans" in
3594 y|Y)    val="$define" ;;
3595 *)      val="$undef" ;;
3596 esac
3597 set usethreads
3598 eval $setvar
3599
3600 case "$usethreads" in
3601 $define)
3602         $cat <<EOM
3603
3604 Since release 5.6, Perl has had two different threading implementations,
3605 the newer interpreter-based version (ithreads) with one interpreter per
3606 thread, and the older 5.005 version (5005threads).
3607 The 5005threads version is effectively unmaintained and will probably be
3608 removed in Perl 5.10, so there should be no need to build a Perl using it
3609 unless needed for backwards compatibility with some existing 5.005threads
3610 code.
3611
3612 EOM
3613         : Default to ithreads unless overridden on command line or with
3614         : old config.sh
3615         dflt='y'
3616         case "$use5005threads" in
3617                 $define|true|[yY]*) dflt='n';;
3618         esac
3619         case "$useithreads" in
3620                 $undef|false|[nN]*) dflt='n';;
3621         esac
3622         rp='Use the newer interpreter-based ithreads?'
3623         . ./myread
3624         case "$ans" in
3625         y|Y)    val="$define" ;;
3626         *)      val="$undef" ;;
3627         esac
3628         set useithreads
3629         eval $setvar
3630         : Now set use5005threads to the opposite value.
3631         case "$useithreads" in
3632         $define) val="$undef" ;;
3633         *) val="$define" ;;
3634         esac
3635         set use5005threads
3636         eval $setvar
3637         ;;
3638 *)
3639         useithreads="$undef"
3640         use5005threads="$undef"
3641         ;;
3642 esac
3643
3644 case "$useithreads$use5005threads" in
3645 "$define$define")
3646         $cat >&4 <<EOM
3647
3648 You cannot have both the ithreads and the 5.005 threads enabled
3649 at the same time.  Disabling the 5.005 threads since they are
3650 much less stable than the ithreads.
3651
3652 EOM
3653         use5005threads="$undef"
3654         ;;
3655 esac
3656
3657 if test X"$usethreads" = "X$define" -a "X$useperlio" = "Xundef"; then
3658         cat >&4 <<EOF
3659 ***
3660 *** To build with ithreads you must also use the PerlIO layer.
3661 *** Cannot continue, aborting.
3662 ***
3663 EOF
3664         exit 1
3665 fi
3666
3667 case "$d_oldpthreads" in
3668 '')     : Configure tests would be welcome here.  For now, assume undef.
3669         val="$undef" ;;
3670 *)      val="$d_oldpthreads" ;;
3671 esac
3672 set d_oldpthreads
3673 eval $setvar
3674
3675
3676 case "$usethreads" in
3677 "$define"|true|[yY]*)
3678 : Look for a hint-file generated 'call-back-unit'.  If the
3679 : user has specified that a threading perl is to be built,
3680 : we may need to set or change some other defaults.
3681         if $test -f usethreads.cbu; then
3682                 echo "Your platform has some specific hints for threaded builds, using them..."
3683                 . ./usethreads.cbu
3684         else
3685                 $cat <<EOM
3686 (Your platform doesn't have any specific hints for threaded builds.
3687  Assuming POSIX threads, then.)
3688 EOM
3689         fi
3690         ;;
3691 esac
3692
3693 cat <<EOM
3694
3695 Perl can be built so that multiple Perl interpreters can coexist
3696 within the same Perl executable.
3697 EOM
3698
3699 case "$useithreads" in
3700 $define)
3701         cat <<EOM
3702 This multiple interpreter support is required for interpreter-based threads.
3703 EOM
3704         val="$define"
3705         ;;
3706 *)      case "$usemultiplicity" in
3707         $define|true|[yY]*)     dflt='y';;
3708         *) dflt='n';;
3709         esac
3710         echo " "
3711         echo "If this doesn't make any sense to you, just accept the default '$dflt'."
3712         rp='Build Perl for multiplicity?'
3713         . ./myread
3714         case "$ans" in
3715         y|Y)    val="$define" ;;
3716         *)      val="$undef" ;;
3717         esac
3718         ;;
3719 esac
3720 set usemultiplicity
3721 eval $setvar
3722
3723
3724 case "$usemorebits" in
3725 "$define"|true|[yY]*)
3726         use64bitint="$define"
3727         uselongdouble="$define"
3728         usemorebits="$define"
3729         ;;
3730 *)      usemorebits="$undef"
3731         ;;
3732 esac
3733
3734 : make some quick guesses about what we are up against
3735 echo " "
3736 $echo $n "Hmm...  $c"
3737 echo exit 1 >bsd
3738 echo exit 1 >usg
3739 echo exit 1 >v7
3740 echo exit 1 >osf1
3741 echo exit 1 >eunice
3742 echo exit 1 >xenix
3743 echo exit 1 >venix
3744 echo exit 1 >os2
3745 d_bsd="$undef"
3746 $cat /usr/include/signal.h /usr/include/sys/signal.h >foo 2>/dev/null
3747 if test -f /osf_boot || $contains 'OSF/1' /usr/include/ctype.h >/dev/null 2>&1
3748 then
3749         echo "Looks kind of like an OSF/1 system, but we'll see..."
3750         echo exit 0 >osf1
3751 elif test `echo abc | $tr a-z A-Z` = Abc ; then
3752         xxx=`./loc addbib blurfl $pth`
3753         if $test -f $xxx; then
3754         echo "Looks kind of like a USG system with BSD features, but we'll see..."
3755                 echo exit 0 >bsd
3756                 echo exit 0 >usg
3757         else
3758                 if $contains SIGTSTP foo >/dev/null 2>&1 ; then
3759                         echo "Looks kind of like an extended USG system, but we'll see..."
3760                 else
3761                         echo "Looks kind of like a USG system, but we'll see..."
3762                 fi
3763                 echo exit 0 >usg
3764         fi
3765 elif $contains SIGTSTP foo >/dev/null 2>&1 ; then
3766         echo "Looks kind of like a BSD system, but we'll see..."
3767         d_bsd="$define"
3768         echo exit 0 >bsd
3769 else
3770         echo "Looks kind of like a Version 7 system, but we'll see..."
3771         echo exit 0 >v7
3772 fi
3773 case "$eunicefix" in
3774 *unixtovms*)
3775         $cat <<'EOI'
3776 There is, however, a strange, musty smell in the air that reminds me of
3777 something...hmm...yes...I've got it...there's a VMS nearby, or I'm a Blit.
3778 EOI
3779         echo exit 0 >eunice
3780         d_eunice="$define"
3781 : it so happens the Eunice I know will not run shell scripts in Unix format
3782         ;;
3783 *)
3784         echo " "
3785         echo "Congratulations.  You aren't running Eunice."
3786         d_eunice="$undef"
3787         ;;
3788 esac
3789 : Detect OS2.  The p_ variable is set above in the Head.U unit.
3790 : Note that this also -- wrongly -- detects e.g. dos-djgpp, which also uses
3791 : semicolon as a patch separator
3792 case "$p_" in
3793 :) ;;
3794 *)
3795         $cat <<'EOI'
3796 I have the feeling something is not exactly right, however...don't tell me...
3797 lemme think...does HAL ring a bell?...no, of course, you're only running OS/2!
3798 (Or you may be running DOS with DJGPP.)
3799 EOI
3800         echo exit 0 >os2
3801         ;;
3802 esac
3803 if test -f /xenix; then
3804         echo "Actually, this looks more like a XENIX system..."
3805         echo exit 0 >xenix
3806         d_xenix="$define"
3807 else
3808         echo " "
3809         echo "It's not Xenix..."
3810         d_xenix="$undef"
3811 fi
3812 chmod +x xenix
3813 $eunicefix xenix
3814 if test -f /venix; then
3815         echo "Actually, this looks more like a VENIX system..."
3816         echo exit 0 >venix
3817 else
3818         echo " "
3819         if ./xenix; then
3820                 : null
3821         else
3822                 echo "Nor is it Venix..."
3823         fi
3824 fi
3825 chmod +x bsd usg v7 osf1 eunice xenix venix os2
3826 $eunicefix bsd usg v7 osf1 eunice xenix venix os2
3827 $rm -f foo
3828
3829 case "$cc" in
3830 '') dflt=cc;;
3831 *) dflt="$cc";;
3832 esac
3833 rp="Use which C compiler?"
3834 . ./myread
3835 cc="$ans"
3836
3837 : See if they have not cc but they do have gcc
3838 . ./trygcc
3839 : Look for a hint-file generated 'call-back-unit'.  Now that the
3840 : user has specified the compiler, we may need to set or change some
3841 : other defaults.
3842 if $test -f cc.cbu; then
3843     . ./cc.cbu
3844 fi
3845 . ./checkcc
3846
3847 echo " "
3848 echo "Checking for GNU cc in disguise and/or its version number..." >&4
3849 $cat >try.c <<EOM
3850 #include <stdio.h>
3851 int main() {
3852 #ifdef __GNUC__
3853 #ifdef __VERSION__
3854         printf("%s\n", __VERSION__);
3855 #else
3856         printf("%s\n", "1");
3857 #endif
3858 #endif
3859         return(0);
3860 }
3861 EOM
3862 if $cc -o try $ccflags $ldflags try.c; then
3863         gccversion=`$run ./try`
3864         case "$gccversion" in
3865         '') echo "You are not using GNU cc." ;;
3866         *)  echo "You are using GNU cc $gccversion."
3867             ccname=gcc
3868             ;;
3869         esac
3870 else
3871         echo " "
3872         echo "*** WHOA THERE!!! ***" >&4
3873         echo "    Your C compiler \"$cc\" doesn't seem to be working!" >&4
3874         case "$knowitall" in
3875         '')
3876         echo "    You'd better start hunting for one and let me know about it." >&4
3877                 exit 1
3878                 ;;
3879         esac
3880 fi
3881 $rm -f try try.*
3882 case "$gccversion" in
3883 1*) cpp=`./loc gcc-cpp $cpp $pth` ;;
3884 esac
3885 case "$gccversion" in
3886 '') gccosandvers='' ;;
3887 *) gccshortvers=`echo "$gccversion"|sed 's/ .*//'`
3888    gccosandvers=`$cc -v 2>&1|grep '/specs$'|sed "s!.*/[^-/]*-[^-/]*-\([^-/]*\)/$gccshortvers/specs!\1!"`
3889    gccshortvers=''
3890    case "$gccosandvers" in
3891    $osname) gccosandvers='' ;; # linux gccs seem to have no linux osvers, grr
3892    $osname$osvers) ;; # looking good
3893    $osname*) cat <<EOM >&4
3894
3895 *** WHOA THERE!!! ***
3896
3897     Your gcc has not been compiled for the exact release of
3898     your operating system ($gccosandvers versus $osname$osvers).
3899
3900     In general it is a good idea to keep gcc synchronized with
3901     the operating system because otherwise serious problems
3902     may ensue when trying to compile software, like Perl.
3903
3904     I'm trying to be optimistic here, though, and will continue.
3905     If later during the configuration and build icky compilation
3906     problems appear (headerfile conflicts being the most common
3907     manifestation), I suggest reinstalling the gcc to match
3908     your operating system release.
3909
3910 EOM
3911       ;;
3912    *) gccosandvers='' ;; # failed to parse, better be silent
3913    esac
3914    ;;
3915 esac
3916 case "$ccname" in
3917 '') ccname="$cc" ;;
3918 esac
3919
3920 # gcc 3.* complain about adding -Idirectories that they already know about,
3921 # so we will take those off from locincpth.
3922 case "$gccversion" in
3923 3*)
3924     echo "main(){}">try.c
3925     for incdir in $locincpth; do
3926        warn=`$cc $ccflags -I$incdir -c try.c 2>&1 | \
3927              grep '^c[cp]p*[01]: warning: changing search order '`
3928        if test "X$warn" != X; then
3929            locincpth=`echo " $locincpth " | sed "s! $incdir ! !"`
3930        fi
3931     done
3932     $rm -f try try.*
3933 esac
3934
3935 : decide how portable to be.  Allow command line overrides.
3936 case "$d_portable" in
3937 "$undef") ;;
3938 *)      d_portable="$define" ;;
3939 esac
3940
3941 : set up shell script to do ~ expansion
3942 cat >filexp <<EOSS
3943 $startsh
3944 : expand filename
3945 case "\$1" in
3946  ~/*|~)
3947         echo \$1 | $sed "s|~|\${HOME-\$LOGDIR}|"
3948         ;;
3949  ~*)
3950         if $test -f /bin/csh; then
3951                 /bin/csh -f -c "glob \$1"
3952                 failed=\$?
3953                 echo ""
3954                 exit \$failed
3955         else
3956                 name=\`$expr x\$1 : '..\([^/]*\)'\`
3957                 dir=\`$sed -n -e "/^\${name}:/{s/^[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:\([^:]*\).*"'\$'"/\1/" -e p -e q -e '}' </etc/passwd\`
3958                 if $test ! -d "\$dir"; then
3959                         me=\`basename \$0\`
3960                         echo "\$me: can't locate home directory for: \$name" >&2
3961                         exit 1
3962                 fi
3963                 case "\$1" in
3964                 */*)
3965                         echo \$dir/\`$expr x\$1 : '..[^/]*/\(.*\)'\`
3966                         ;;
3967                 *)
3968                         echo \$dir
3969                         ;;
3970                 esac
3971         fi
3972         ;;
3973 *)
3974         echo \$1
3975         ;;
3976 esac
3977 EOSS
3978 chmod +x filexp
3979 $eunicefix filexp
3980
3981 : now set up to get a file name
3982 cat <<EOS >getfile
3983 $startsh
3984 EOS
3985 cat <<'EOSC' >>getfile
3986 tilde=''
3987 fullpath=''
3988 already=''
3989 skip=''
3990 none_ok=''
3991 exp_file=''
3992 nopath_ok=''
3993 orig_rp="$rp"
3994 orig_dflt="$dflt"
3995 case "$gfpth" in
3996 '') gfpth='.' ;;
3997 esac
3998
3999 case "$fn" in
4000 *\(*)
4001         : getfile will accept an answer from the comma-separated list
4002         : enclosed in parentheses even if it does not meet other criteria.
4003         expr "$fn" : '.*(\(.*\)).*' | $tr ',' $trnl >getfile.ok
4004         fn=`echo $fn | sed 's/(.*)//'`
4005         ;;
4006 esac
4007
4008 case "$fn" in
4009 *:*)
4010         loc_file=`expr $fn : '.*:\(.*\)'`
4011         fn=`expr $fn : '\(.*\):.*'`
4012         ;;
4013 esac
4014
4015 case "$fn" in
4016 *~*) tilde=true;;
4017 esac
4018 case "$fn" in
4019 */*) fullpath=true;;
4020 esac
4021 case "$fn" in
4022 *+*) skip=true;;
4023 esac
4024 case "$fn" in
4025 *n*) none_ok=true;;
4026 esac
4027 case "$fn" in
4028 *e*) exp_file=true;;
4029 esac
4030 case "$fn" in
4031 *p*) nopath_ok=true;;
4032 esac
4033
4034 case "$fn" in
4035 *f*) type='File';;
4036 *d*) type='Directory';;
4037 *l*) type='Locate';;
4038 esac
4039
4040 what="$type"
4041 case "$what" in
4042 Locate) what='File';;
4043 esac
4044
4045 case "$exp_file" in
4046 '')
4047         case "$d_portable" in
4048         "$define") ;;
4049         *) exp_file=true;;
4050         esac
4051         ;;
4052 esac
4053
4054 cd ..
4055 while test "$type"; do
4056         redo=''
4057         rp="$orig_rp"
4058         dflt="$orig_dflt"
4059         case "$tilde" in
4060         true) rp="$rp (~name ok)";;
4061         esac
4062         . UU/myread
4063         if test -f UU/getfile.ok && \
4064                 $contains "^$ans\$" UU/getfile.ok >/dev/null 2>&1
4065         then
4066                 value="$ans"
4067                 ansexp="$ans"
4068                 break
4069         fi
4070         case "$ans" in
4071         none)
4072                 value=''
4073                 ansexp=''
4074                 case "$none_ok" in
4075                 true) type='';;
4076                 esac
4077                 ;;
4078         *)
4079                 case "$tilde" in
4080                 '') value="$ans"
4081                         ansexp="$ans";;
4082                 *)
4083                         value=`UU/filexp $ans`
4084                         case $? in
4085                         0)
4086                                 if test "$ans" != "$value"; then
4087                                         echo "(That expands to $value on this system.)"
4088                                 fi
4089                                 ;;
4090                         *) value="$ans";;
4091                         esac
4092                         ansexp="$value"
4093                         case "$exp_file" in
4094                         '') value="$ans";;
4095                         esac
4096                         ;;
4097                 esac
4098                 case "$fullpath" in
4099                 true)
4100                         case "$ansexp" in
4101                         /*) value="$ansexp" ;;
4102                         [a-zA-Z]:/*) value="$ansexp" ;;
4103                         *)
4104                                 redo=true
4105                                 case "$already" in
4106                                 true)
4107                                 echo "I shall only accept a full path name, as in /bin/ls." >&4
4108                                 echo "Use a ! shell escape if you wish to check pathnames." >&4
4109                                         ;;
4110                                 *)
4111                                 echo "Please give a full path name, starting with slash." >&4
4112                                         case "$tilde" in
4113                                         true)
4114                                 echo "Note that using ~name is ok provided it expands well." >&4
4115                                                 already=true
4116                                                 ;;
4117                                         esac
4118                                 esac
4119                                 ;;
4120                         esac
4121                         ;;
4122                 esac
4123                 case "$redo" in
4124                 '')
4125                         case "$type" in
4126                         File)
4127                                 for fp in $gfpth; do
4128                                         if test "X$fp" = X.; then
4129                                             pf="$ansexp"
4130                                         else    
4131                                             pf="$fp/$ansexp"
4132                                         fi
4133                                         if test -f "$pf"; then
4134                                                 type=''
4135                                         elif test -r "$pf" || (test -h "$pf") >/dev/null 2>&1
4136                                         then
4137                                                 echo "($value is not a plain file, but that's ok.)"
4138                                                 type=''
4139                                         fi
4140                                         if test X"$type" = X; then
4141                                             value="$pf"
4142                                             break
4143                                         fi
4144                                 done
4145                                 ;;
4146                         Directory)
4147                                 for fp in $gfpth; do
4148                                         if test "X$fp" = X.; then
4149                                             dir="$ans"
4150                                             direxp="$ansexp"
4151                                         else    
4152                                             dir="$fp/$ansexp"
4153                                             direxp="$fp/$ansexp"
4154                                         fi
4155                                         if test -d "$direxp"; then
4156                                                 type=''
4157                                                 value="$dir"
4158                                                 break
4159                                         fi
4160                                 done
4161                                 ;;
4162                         Locate)
4163                                 if test -d "$ansexp"; then
4164                                         echo "(Looking for $loc_file in directory $value.)"
4165                                         value="$value/$loc_file"
4166                                         ansexp="$ansexp/$loc_file"
4167                                 fi
4168                                 if test -f "$ansexp"; then
4169                                         type=''
4170                                 fi
4171                                 case "$nopath_ok" in
4172                                 true)   case "$value" in
4173                                         */*) ;;
4174                                         *)      echo "Assuming $value will be in people's path."
4175                                                 type=''
4176                                                 ;;
4177                                         esac
4178                                         ;;
4179                                 esac
4180                                 ;;
4181                         esac
4182
4183                         case "$skip" in
4184                         true) type='';
4185                         esac
4186
4187                         case "$type" in
4188                         '') ;;
4189                         *)
4190                                 if test "$fastread" = yes; then
4191                                         dflt=y
4192                                 else
4193                                         dflt=n
4194                                 fi
4195                                 rp="$what $value doesn't exist.  Use that name anyway?"
4196                                 . UU/myread
4197                                 dflt=''
4198                                 case "$ans" in
4199                                 y*) type='';;
4200                                 *) echo " ";;
4201                                 esac
4202                                 ;;
4203                         esac
4204                         ;;
4205                 esac
4206                 ;;
4207         esac
4208 done
4209 cd UU
4210 ans="$value"
4211 rp="$orig_rp"
4212 dflt="$orig_dflt"
4213 rm -f getfile.ok
4214 test "X$gfpthkeep" != Xy && gfpth=""
4215 EOSC
4216
4217 : What should the include directory be ?
4218 echo " "
4219 $echo $n "Hmm...  $c"
4220 dflt='/usr/include'
4221 incpath=''
4222 mips_type=''
4223 if $test -f /bin/mips && /bin/mips; then
4224         echo "Looks like a MIPS system..."
4225         $cat >usr.c <<'EOCP'
4226 #ifdef SYSTYPE_BSD43
4227 /bsd43
4228 #endif
4229 EOCP
4230         if cc -E usr.c > usr.out && $contains / usr.out >/dev/null 2>&1; then
4231                 dflt='/bsd43/usr/include'
4232                 incpath='/bsd43'
4233                 mips_type='BSD 4.3'
4234         else
4235                 mips_type='System V'
4236         fi
4237         $rm -f usr.c usr.out
4238         echo "and you're compiling with the $mips_type compiler and libraries."
4239         xxx_prompt=y
4240         echo "exit 0" >mips
4241 else
4242         echo "Doesn't look like a MIPS system."
4243         xxx_prompt=n
4244         echo "exit 1" >mips
4245 fi
4246 chmod +x mips
4247 $eunicefix mips
4248 case "$usrinc" in
4249 '') ;;
4250 *) dflt="$usrinc";;
4251 esac
4252 case "$xxx_prompt" in
4253 y)      fn=d/
4254         echo " "
4255         rp='Where are the include files you want to use?'
4256         . ./getfile
4257         usrinc="$ans"
4258         ;;
4259 *)      usrinc="$dflt"
4260         ;;
4261 esac
4262
4263 : see how we invoke the C preprocessor
4264 echo " "
4265 echo "Now, how can we feed standard input to your C preprocessor..." >&4
4266 cat <<'EOT' >testcpp.c
4267 #define ABC abc
4268 #define XYZ xyz
4269 ABC.XYZ
4270 EOT
4271 cd ..
4272 if test ! -f cppstdin; then
4273         if test "X$osname" = "Xaix" -a "X$gccversion" = X; then
4274                 # AIX cc -E doesn't show the absolute headerfile
4275                 # locations but we'll cheat by using the -M flag.
4276                 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
4277         else
4278                 echo 'cat >.$$.c; '"$cc"' -E ${1+"$@"} .$$.c; rm .$$.c' >cppstdin
4279         fi
4280 else
4281         echo "Keeping your $hint cppstdin wrapper."
4282 fi
4283 chmod 755 cppstdin
4284 wrapper=`pwd`/cppstdin
4285 ok='false'
4286 cd UU
4287
4288 if $test "X$cppstdin" != "X" && \
4289         $cppstdin $cppminus <testcpp.c >testcpp.out 2>&1 && \
4290         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4291 then
4292         echo "You used to use $cppstdin $cppminus so we'll use that again."
4293         case "$cpprun" in
4294         '') echo "But let's see if we can live without a wrapper..." ;;
4295         *)
4296                 if $cpprun $cpplast <testcpp.c >testcpp.out 2>&1 && \
4297                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4298                 then
4299                         echo "(And we'll use $cpprun $cpplast to preprocess directly.)"
4300                         ok='true'
4301                 else
4302                         echo "(However, $cpprun $cpplast does not work, let's see...)"
4303                 fi
4304                 ;;
4305         esac
4306 else
4307         case "$cppstdin" in
4308         '') ;;
4309         *)
4310                 echo "Good old $cppstdin $cppminus does not seem to be of any help..."
4311                 ;;
4312         esac
4313 fi
4314
4315 if $ok; then
4316         : nothing
4317 elif echo 'Maybe "'"$cc"' -E" will work...'; \
4318         $cc -E <testcpp.c >testcpp.out 2>&1; \
4319         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4320         echo "Yup, it does."
4321         x_cpp="$cc -E"
4322         x_minus='';
4323 elif echo 'Nope...maybe "'"$cc"' -E -" will work...'; \
4324         $cc -E - <testcpp.c >testcpp.out 2>&1; \
4325         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4326         echo "Yup, it does."
4327         x_cpp="$cc -E"
4328         x_minus='-';
4329 elif echo 'Nope...maybe "'"$cc"' -P" will work...'; \
4330         $cc -P <testcpp.c >testcpp.out 2>&1; \
4331         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4332         echo "Yipee, that works!"
4333         x_cpp="$cc -P"
4334         x_minus='';
4335 elif echo 'Nope...maybe "'"$cc"' -P -" will work...'; \
4336         $cc -P - <testcpp.c >testcpp.out 2>&1; \
4337         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4338         echo "At long last!"
4339         x_cpp="$cc -P"
4340         x_minus='-';
4341 elif echo 'No such luck, maybe "'$cpp'" will work...'; \
4342         $cpp <testcpp.c >testcpp.out 2>&1; \
4343         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4344         echo "It works!"
4345         x_cpp="$cpp"
4346         x_minus='';
4347 elif echo 'Nixed again...maybe "'$cpp' -" will work...'; \
4348         $cpp - <testcpp.c >testcpp.out 2>&1; \
4349         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4350         echo "Hooray, it works!  I was beginning to wonder."
4351         x_cpp="$cpp"
4352         x_minus='-';
4353 elif echo 'Uh-uh.  Time to get fancy.  Trying a wrapper...'; \
4354         $wrapper <testcpp.c >testcpp.out 2>&1; \
4355         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4356         x_cpp="$wrapper"
4357         x_minus=''
4358         echo "Eureka!"
4359 else
4360         dflt=''
4361         rp="No dice.  I can't find a C preprocessor.  Name one:"
4362         . ./myread
4363         x_cpp="$ans"
4364         x_minus=''
4365         $x_cpp <testcpp.c >testcpp.out 2>&1
4366         if $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4367                 echo "OK, that will do." >&4
4368         else
4369 echo "Sorry, I can't get that to work.  Go find one and rerun Configure." >&4
4370                 exit 1
4371         fi
4372 fi
4373
4374 case "$ok" in
4375 false)
4376         cppstdin="$x_cpp"
4377         cppminus="$x_minus"
4378         cpprun="$x_cpp"
4379         cpplast="$x_minus"
4380         set X $x_cpp
4381         shift
4382         case "$1" in
4383         "$cpp")
4384                 echo "Perhaps can we force $cc -E using a wrapper..."
4385                 if $wrapper <testcpp.c >testcpp.out 2>&1; \
4386                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4387                 then
4388                         echo "Yup, we can."
4389                         cppstdin="$wrapper"
4390                         cppminus='';
4391                 else
4392                         echo "Nope, we'll have to live without it..."
4393                 fi
4394                 ;;
4395         esac
4396         case "$cpprun" in
4397         "$wrapper")
4398                 cpprun=''
4399                 cpplast=''
4400                 ;;
4401         esac
4402         ;;
4403 esac
4404
4405 case "$cppstdin" in
4406 "$wrapper"|'cppstdin') ;;
4407 *) $rm -f $wrapper;;
4408 esac
4409 $rm -f testcpp.c testcpp.out
4410
4411 : Set private lib path
4412 case "$plibpth" in
4413 '') if ./mips; then
4414                 plibpth="$incpath/usr/lib /usr/local/lib /usr/ccs/lib"
4415         fi;;
4416 esac
4417 case "$libpth" in
4418 ' ') dlist='';;
4419 '') dlist="$loclibpth $plibpth $glibpth";;
4420 *) dlist="$libpth";;
4421 esac
4422
4423 : Now check and see which directories actually exist, avoiding duplicates
4424 libpth=''
4425 for xxx in $dlist
4426 do
4427     if $test -d $xxx; then
4428                 case " $libpth " in
4429                 *" $xxx "*) ;;
4430                 *) libpth="$libpth $xxx";;
4431                 esac
4432     fi
4433 done
4434 $cat <<'EOM'
4435
4436 Some systems have incompatible or broken versions of libraries.  Among
4437 the directories listed in the question below, please remove any you
4438 know not to be holding relevant libraries, and add any that are needed.
4439 Say "none" for none.
4440
4441 EOM
4442 case "$libpth" in
4443 '') dflt='none';;
4444 *)
4445         set X $libpth
4446         shift
4447         dflt=${1+"$@"}
4448         ;;
4449 esac
4450 rp="Directories to use for library searches?"
4451 . ./myread
4452 case "$ans" in
4453 none) libpth=' ';;
4454 *) libpth="$ans";;
4455 esac
4456
4457 : compute shared library extension
4458 case "$so" in
4459 '')
4460         if xxx=`./loc libc.sl X $libpth`; $test -f "$xxx"; then
4461                 dflt='sl'
4462         else
4463                 dflt='so'
4464         fi
4465         ;;
4466 *) dflt="$so";;
4467 esac
4468 $cat <<EOM
4469
4470 On some systems, shared libraries may be available.  Answer 'none' if
4471 you want to suppress searching of shared libraries for the remainder
4472 of this configuration.
4473
4474 EOM
4475 rp='What is the file extension used for shared libraries?'
4476 . ./myread
4477 so="$ans"
4478
4479 : Define several unixisms.
4480 : Hints files or command line option can be used to override them.
4481 : The convoluted testing is in case hints files set either the old
4482 : or the new name.
4483 case "$_exe" in
4484 '')     case "$exe_ext" in
4485         '')     ;;
4486         *)      _exe="$exe_ext" ;;
4487         esac
4488         ;;
4489 esac
4490 case "$_a" in
4491 '')     case "$lib_ext" in
4492     '') _a='.a';;
4493         *)      _a="$lib_ext" ;;
4494         esac
4495         ;;
4496 esac
4497 case "$_o" in
4498 '') case "$obj_ext" in
4499         '')     _o='.o';;
4500         *)      _o="$obj_ext";;
4501         esac
4502         ;;
4503 esac
4504 case "$p_" in
4505 '') case "$path_sep" in
4506         '')     p_=':';;
4507         *)      p_="$path_sep";;
4508         esac
4509         ;;
4510 esac
4511 exe_ext=$_exe
4512 lib_ext=$_a
4513 obj_ext=$_o
4514 path_sep=$p_
4515
4516 : Which makefile gets called first.  This is used by make depend.
4517 case "$firstmakefile" in
4518 '') firstmakefile='makefile';;
4519 esac
4520
4521 case "$ccflags" in
4522 *-DUSE_LONG_DOUBLE*|*-DUSE_MORE_BITS*) uselongdouble="$define" ;;
4523 esac
4524
4525 case "$uselongdouble" in
4526 $define|true|[yY]*)     dflt='y';;
4527 *) dflt='n';;
4528 esac
4529 cat <<EOM
4530
4531 Perl can be built to take advantage of long doubles which
4532 (if available) may give more accuracy and range for floating point numbers.
4533
4534 If this doesn't make any sense to you, just accept the default '$dflt'.
4535 EOM
4536 rp='Try to use long doubles if available?'
4537 . ./myread
4538 case "$ans" in
4539 y|Y)    val="$define"   ;;
4540 *)      val="$undef"    ;;
4541 esac
4542 set uselongdouble
4543 eval $setvar
4544
4545 case "$uselongdouble" in
4546 true|[yY]*) uselongdouble="$define" ;;
4547 esac
4548
4549 case "$uselongdouble" in
4550 $define)
4551 : Look for a hint-file generated 'call-back-unit'.  If the
4552 : user has specified that long doubles should be used,
4553 : we may need to set or change some other defaults.
4554         if $test -f uselongdouble.cbu; then
4555                 echo "Your platform has some specific hints for long doubles, using them..."
4556                 . ./uselongdouble.cbu
4557         else
4558                 $cat <<EOM
4559 (Your platform doesn't have any specific hints for long doubles.)
4560 EOM
4561         fi
4562         ;;
4563 esac
4564
4565 : Looking for optional libraries
4566 echo " "
4567 echo "Checking for optional libraries..." >&4
4568 case "$libs" in
4569 ' '|'') dflt='';;
4570 *) dflt="$libs";;
4571 esac
4572 case "$libswanted" in
4573 '') libswanted='c_s';;
4574 esac
4575 case "$usesocks" in
4576 "$define") libswanted="$libswanted socks5 socks5_sh" ;;
4577 esac
4578 libsfound=''
4579 libsfiles=''
4580 libsdirs=''
4581 libspath=''
4582 for thisdir in $libpth $xlibpth; do
4583   test -d $thisdir && libspath="$libspath $thisdir"
4584 done
4585 for thislib in $libswanted; do
4586         for thisdir in $libspath; do
4587             xxx=''
4588             if $test ! -f "$xxx" -a "X$ignore_versioned_solibs" = "X"; then
4589                 xxx=`ls $thisdir/lib$thislib.$so.[0-9] 2>/dev/null|sed -n '$p'`
4590                 $test -f "$xxx" && eval $libscheck
4591                 $test -f "$xxx" && libstyle=shared
4592             fi
4593             if test ! -f "$xxx"; then
4594                 xxx=$thisdir/lib$thislib.$so
4595                 $test -f "$xxx" && eval $libscheck
4596                 $test -f "$xxx" && libstyle=shared
4597             fi  
4598             if test ! -f "$xxx"; then
4599                 xxx=$thisdir/lib$thislib$_a
4600                 $test -f "$xxx" && eval $libscheck
4601                 $test -f "$xxx" && libstyle=static
4602             fi
4603             if test ! -f "$xxx"; then
4604                 xxx=$thisdir/$thislib$_a
4605                 $test -f "$xxx" && eval $libscheck
4606                 $test -f "$xxx" && libstyle=static
4607             fi
4608             if test ! -f "$xxx"; then
4609                 xxx=$thisdir/lib${thislib}_s$_a
4610                 $test -f "$xxx" && eval $libscheck
4611                 $test -f "$xxx" && libstyle=static
4612                 $test -f "$xxx" && thislib=${thislib}_s
4613             fi
4614             if test ! -f "$xxx"; then
4615                 xxx=$thisdir/Slib$thislib$_a
4616                 $test -f "$xxx" && eval $libscheck
4617                 $test -f "$xxx" && libstyle=static
4618             fi
4619             if $test -f "$xxx"; then
4620                 case "$libstyle" in
4621                 shared) echo "Found -l$thislib (shared)." ;;
4622                 static) echo "Found -l$thislib." ;;
4623                 *)      echo "Found -l$thislib ($libstyle)." ;;
4624                 esac
4625                 case " $dflt " in
4626                 *"-l$thislib "*);;
4627                 *) dflt="$dflt -l$thislib"
4628                    libsfound="$libsfound $xxx"
4629                    yyy=`basename $xxx`
4630                    libsfiles="$libsfiles $yyy"
4631                    yyy=`echo $xxx|$sed -e "s%/$yyy\\$%%"`
4632                    case " $libsdirs " in
4633                    *" $yyy "*) ;;
4634                    *) libsdirs="$libsdirs $yyy" ;;
4635                    esac
4636                    ;;
4637                 esac
4638                 break
4639             fi  
4640         done
4641         if $test ! -f "$xxx"; then
4642             echo "No -l$thislib."
4643         fi
4644 done
4645 set X $dflt
4646 shift
4647 dflt="$*"
4648 case "$libs" in
4649 '') dflt="$dflt";;
4650 *) dflt="$libs";;
4651 esac
4652 case "$dflt" in
4653 ' '|'') dflt='none';;
4654 esac
4655
4656 $cat <<EOM
4657
4658 In order to compile $package on your machine, a number of libraries
4659 are usually needed.  Include any other special libraries here as well.
4660 Say "none" for none.  The default list is almost always right.
4661 EOM
4662
4663 echo " "
4664 rp="What libraries to use?"
4665 . ./myread
4666 case "$ans" in
4667 none) libs=' ';;
4668 *) libs="$ans";;
4669 esac
4670
4671 : determine optimization, if desired, or use for debug flag also
4672 case "$optimize" in
4673 ' '|$undef) dflt='none';;
4674 '') dflt='-O';;
4675 *) dflt="$optimize";;
4676 esac
4677 $cat <<EOH
4678
4679 By default, $package compiles with the -O flag to use the optimizer.
4680 Alternately, you might want to use the symbolic debugger, which uses
4681 the -g flag (on traditional Unix systems).  Either flag can be
4682 specified here.  To use neither flag, specify the word "none".
4683
4684 EOH
4685 rp="What optimizer/debugger flag should be used?"
4686 . ./myread
4687 optimize="$ans"
4688 case "$optimize" in
4689 'none') optimize=" ";;
4690 esac
4691
4692 dflt=''
4693 : We will not override a previous value, but we might want to
4694 : augment a hint file
4695 case "$hint" in
4696 default|recommended)
4697         case "$gccversion" in
4698         1*) dflt='-fpcc-struct-return' ;;
4699         esac
4700         case "$optimize" in
4701         *-g*) dflt="$dflt -DDEBUGGING";;
4702         esac
4703         case "$gccversion" in
4704         2*) if test -d /etc/conf/kconfig.d &&
4705                         $contains _POSIX_VERSION $usrinc/sys/unistd.h >/dev/null 2>&1
4706                 then
4707                         dflt="$dflt -posix"
4708                 fi
4709                 ;;
4710         esac
4711         case "$gccversion" in
4712         1*) ;;
4713         2.[0-8]*) ;;
4714         ?*)     echo " "
4715                 echo "Checking if your compiler accepts -fno-strict-aliasing" 2>&1
4716                 echo 'int main(void) { return 0; }' > gcctest.c
4717                 if $cc -O2 -fno-strict-aliasing -o gcctest gcctest.c; then
4718                         echo "Yes, it does." 2>&1
4719                         case "$ccflags" in
4720                         *strict-aliasing*) 
4721                                 echo "Leaving current flags $ccflags alone." 2>&1
4722                                 ;;
4723                         *) dflt="$dflt -fno-strict-aliasing" ;;
4724                         esac
4725                 else
4726                         echo "Nope, it doesn't, but that's ok." 2>&1
4727                 fi
4728                 ;;
4729         esac
4730         ;;
4731 esac
4732
4733 case "$mips_type" in
4734 *BSD*|'') inclwanted="$locincpth $usrinc";;
4735 *) inclwanted="$locincpth $inclwanted $usrinc/bsd";;
4736 esac
4737 for thisincl in $inclwanted; do
4738         if $test -d $thisincl; then
4739                 if $test x$thisincl != x$usrinc; then
4740                         case "$dflt" in
4741                         *" -I$thisincl "*);;
4742                         *) dflt="$dflt -I$thisincl ";;
4743                         esac
4744                 fi
4745         fi
4746 done
4747
4748 inctest='if $contains $2 $usrinc/$1 >/dev/null 2>&1; then
4749         xxx=true;
4750 elif $contains $2 $usrinc/sys/$1 >/dev/null 2>&1; then
4751         xxx=true;
4752 else
4753         xxx=false;
4754 fi;
4755 if $xxx; then
4756         case "$dflt" in
4757         *$2*);;
4758         *) dflt="$dflt -D$2";;
4759         esac;
4760 fi'
4761
4762 set signal.h LANGUAGE_C; eval $inctest
4763
4764 case "$usesocks" in
4765 $define)
4766         ccflags="$ccflags -DSOCKS"
4767         ;;
4768 esac
4769
4770 case "$hint" in
4771 default|recommended) dflt="$ccflags $dflt" ;;
4772 *) dflt="$ccflags";;
4773 esac
4774
4775 case "$dflt" in
4776 ''|' ') dflt=none;;
4777 esac
4778
4779 $cat <<EOH
4780
4781 Your C compiler may want other flags.  For this question you should include
4782 -I/whatever and -DWHATEVER flags and any other flags used by the C compiler,
4783 but you should NOT include libraries or ld flags like -lwhatever.  If you
4784 want $package to honor its debug switch, you should include -DDEBUGGING here.
4785 Your C compiler might also need additional flags, such as -D_POSIX_SOURCE.
4786
4787 To use no flags, specify the word "none".
4788
4789 EOH
4790 set X $dflt
4791 shift
4792 dflt=${1+"$@"}
4793 rp="Any additional cc flags?"
4794 . ./myread
4795 case "$ans" in
4796 none) ccflags='';;
4797 *) ccflags="$ans";;
4798 esac
4799
4800 : the following weeds options from ccflags that are of no interest to cpp
4801 case "$cppflags" in
4802 '') cppflags="$ccflags" ;;
4803 *)  cppflags="$cppflags $ccflags" ;;
4804 esac
4805 case "$gccversion" in
4806 1*) cppflags="$cppflags -D__GNUC__"
4807 esac
4808 case "$mips_type" in
4809 '');;
4810 *BSD*) cppflags="$cppflags -DSYSTYPE_BSD43";;
4811 esac
4812 case "$cppflags" in
4813 '');;
4814 *)
4815         echo " "
4816         echo "Let me guess what the preprocessor flags are..." >&4
4817         set X $cppflags
4818         shift
4819         cppflags=''
4820         $cat >cpp.c <<'EOM'
4821 #define BLURFL foo
4822
4823 BLURFL xx LFRULB
4824 EOM
4825         previous=''
4826         for flag in $*
4827         do
4828                 case "$flag" in
4829                 -*) ftry="$flag";;
4830                 *) ftry="$previous $flag";;
4831                 esac
4832                 if $cppstdin -DLFRULB=bar $cppflags $ftry $cppminus <cpp.c \
4833                         >cpp1.out 2>/dev/null && \
4834                         $cpprun -DLFRULB=bar $cppflags $ftry $cpplast <cpp.c \
4835                         >cpp2.out 2>/dev/null && \
4836                         $contains 'foo.*xx.*bar' cpp1.out >/dev/null 2>&1 && \
4837                         $contains 'foo.*xx.*bar' cpp2.out >/dev/null 2>&1
4838                 then
4839                         cppflags="$cppflags $ftry"
4840                         previous=''
4841                 else
4842                         previous="$flag"
4843                 fi
4844         done
4845         set X $cppflags
4846         shift
4847         cppflags=${1+"$@"}
4848         case "$cppflags" in
4849         *-*)  echo "They appear to be: $cppflags";;
4850         esac
4851         $rm -f cpp.c cpp?.out
4852         ;;
4853 esac
4854
4855 : flags used in final linking phase
4856 case "$ldflags" in
4857 '') if ./venix; then
4858                 dflt='-i -z'
4859         else
4860                 dflt=''
4861         fi
4862         case "$ccflags" in
4863         *-posix*) dflt="$dflt -posix" ;;
4864         esac
4865         ;;
4866 *) dflt="$ldflags";;
4867 esac
4868
4869 : Try to guess additional flags to pick up local libraries.
4870 for thislibdir in $libpth; do
4871         case " $loclibpth " in
4872         *" $thislibdir "*)
4873                 case "$dflt " in 
4874                 *"-L$thislibdir "*) ;;
4875                 *)  dflt="$dflt -L$thislibdir" ;;
4876                 esac
4877                 ;;
4878         esac
4879 done
4880
4881 case "$dflt" in
4882 '') dflt='none' ;;
4883 esac
4884
4885 $cat <<EOH
4886
4887 Your C linker may need flags.  For this question you should
4888 include -L/whatever and any other flags used by the C linker, but you
4889 should NOT include libraries like -lwhatever.
4890
4891 Make sure you include the appropriate -L/path flags if your C linker
4892 does not normally search all of the directories you specified above,
4893 namely
4894         $libpth
4895 To use no flags, specify the word "none".
4896
4897 EOH
4898
4899 rp="Any additional ld flags (NOT including libraries)?"
4900 . ./myread
4901 case "$ans" in
4902 none) ldflags='';;
4903 *) ldflags="$ans";;
4904 esac
4905 rmlist="$rmlist pdp11"
4906
4907 : coherency check
4908 echo " "
4909 echo "Checking your choice of C compiler and flags for coherency..." >&4
4910 $cat > try.c <<'EOF'
4911 #include <stdio.h>
4912 int main() { printf("Ok\n"); return(0); }
4913 EOF
4914 set X $cc -o try $optimize $ccflags $ldflags try.c $libs
4915 shift
4916 $cat >try.msg <<'EOM'
4917 I've tried to compile and run the following simple program:
4918
4919 EOM
4920 $cat try.c >> try.msg
4921
4922 $cat >> try.msg <<EOM
4923
4924 I used the command:
4925
4926         $*
4927         $run ./try
4928
4929 and I got the following output:
4930
4931 EOM
4932 dflt=y
4933 if $sh -c "$cc -o try $optimize $ccflags $ldflags try.c $libs" >>try.msg 2>&1; then
4934         if $sh -c "$run ./try" >>try.msg 2>&1; then
4935                 xxx=`$run ./try`
4936                 case "$xxx" in
4937                 "Ok") dflt=n ;;
4938                 *)      echo 'The program compiled OK, but produced no output.' >> try.msg
4939                         case " $libs " in
4940                         *" -lsfio "*)
4941                                 cat >> try.msg <<'EOQS'
4942 If $libs contains -lsfio, and sfio is mis-configured, then it
4943 sometimes (apparently) runs and exits with a 0 status, but with no
4944 output!  It may have to do with sfio's use of _exit vs. exit.
4945
4946 EOQS
4947                                 rp="You have a big problem.  Shall I abort Configure"
4948                                 dflt=y
4949                                 ;;
4950                         esac
4951                         ;;
4952                 esac
4953         else
4954                 echo "The program compiled OK, but exited with status $?." >>try.msg
4955                 rp="You have a problem.  Shall I abort Configure"
4956                 dflt=y
4957         fi
4958 else
4959         echo "I can't compile the test program." >>try.msg
4960         rp="You have a BIG problem.  Shall I abort Configure"
4961         dflt=y
4962 fi
4963 case "$dflt" in
4964 y)
4965         $cat try.msg >&4
4966         case "$knowitall" in
4967         '')
4968                 echo "(The supplied flags or libraries might be incorrect.)"
4969                 ;;
4970         *) dflt=n;;
4971         esac
4972         echo " "
4973         . ./myread
4974         case "$ans" in
4975         n*|N*) ;;
4976         *)      echo "Ok.  Stopping Configure." >&4
4977                 exit 1
4978                 ;;
4979         esac
4980         ;;
4981 n) echo "OK, that should do.";;
4982 esac
4983 $rm -f try try.* core
4984
4985 : define a shorthand compile call
4986 compile='
4987 mc_file=$1;
4988 shift;
4989 $cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs > /dev/null 2>&1;'
4990 : define a shorthand compile call for compilations that should be ok.
4991 compile_ok='
4992 mc_file=$1;
4993 shift;
4994 $cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs;'
4995
4996 : determine filename position in cpp output
4997 echo " "
4998 echo "Computing filename position in cpp output for #include directives..." >&4
4999 case "$osname" in
5000 vos) testaccess=-e ;;
5001 *)   testaccess=-r ;;
5002 esac
5003 echo '#include <stdio.h>' > foo.c
5004 $cat >fieldn <<EOF
5005 $startsh
5006 $cppstdin $cppflags $cppminus <foo.c 2>/dev/null | \
5007 $grep '^[       ]*#.*stdio\.h' | \
5008 while read cline; do
5009         pos=1
5010         set \$cline
5011         while $test \$# -gt 0; do
5012                 if $test $testaccess \`echo \$1 | $tr -d '"'\`; then
5013                         echo "\$pos"
5014                         exit 0
5015                 fi
5016                 shift
5017                 pos=\`expr \$pos + 1\`
5018         done
5019 done
5020 EOF
5021 chmod +x fieldn
5022 fieldn=`./fieldn`
5023 $rm -f foo.c fieldn
5024 case $fieldn in
5025 '') pos='???';;
5026 1) pos=first;;
5027 2) pos=second;;
5028 3) pos=third;;
5029 *) pos="${fieldn}th";;
5030 esac
5031 echo "Your cpp writes the filename in the $pos field of the line."
5032
5033 case "$osname" in
5034 vos) cppfilter="tr '\\\\>' '/' |" ;; # path component separator is >
5035 os2) cppfilter="sed -e 's|\\\\\\\\|/|g' |" ;; # path component separator is \
5036 *)   cppfilter='' ;;
5037 esac
5038 : locate header file
5039 $cat >findhdr <<EOF
5040 $startsh
5041 wanted=\$1
5042 name=''
5043 for usrincdir in $usrinc
5044 do
5045         if test -f \$usrincdir/\$wanted; then
5046                 echo "\$usrincdir/\$wanted"
5047                 exit 0
5048         fi
5049 done
5050 awkprg='{ print \$$fieldn }'
5051 echo "#include <\$wanted>" > foo\$\$.c
5052 $cppstdin $cppminus $cppflags < foo\$\$.c 2>/dev/null | \
5053 $cppfilter $grep "^[    ]*#.*\$wanted" | \
5054 while read cline; do
5055         name=\`echo \$cline | $awk "\$awkprg" | $tr -d '"'\`
5056         case "\$name" in
5057         *[/\\\\]\$wanted) echo "\$name"; exit 1;;
5058         *[\\\\/]\$wanted) echo "\$name"; exit 1;;
5059         *) exit 2;;
5060         esac;
5061 done;
5062 #
5063 # status = 0: grep returned 0 lines, case statement not executed
5064 # status = 1: headerfile found
5065 # status = 2: while loop executed, no headerfile found
5066 #
5067 status=\$?
5068 $rm -f foo\$\$.c;
5069 if test \$status -eq 1; then
5070         exit 0;
5071 fi
5072 exit 1
5073 EOF
5074 chmod +x findhdr
5075
5076 : define an alternate in-header-list? function
5077 inhdr='echo " "; td=$define; tu=$undef; yyy=$@;
5078 cont=true; xxf="echo \"<\$1> found.\" >&4";
5079 case $# in 2) xxnf="echo \"<\$1> NOT found.\" >&4";;
5080 *) xxnf="echo \"<\$1> NOT found, ...\" >&4";;
5081 esac;
5082 case $# in 4) instead=instead;; *) instead="at last";; esac;
5083 while $test "$cont"; do
5084         xxx=`./findhdr $1`
5085         var=$2; eval "was=\$$2";
5086         if $test "$xxx" && $test -r "$xxx";
5087         then eval $xxf;
5088         eval "case \"\$$var\" in $undef) . ./whoa; esac"; eval "$var=\$td";
5089                 cont="";
5090         else eval $xxnf;
5091         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu"; fi;
5092         set $yyy; shift; shift; yyy=$@;
5093         case $# in 0) cont="";;
5094         2) xxf="echo \"but I found <\$1> $instead.\" >&4";
5095                 xxnf="echo \"and I did not find <\$1> either.\" >&4";;
5096         *) xxf="echo \"but I found <\$1\> instead.\" >&4";
5097                 xxnf="echo \"there is no <\$1>, ...\" >&4";;
5098         esac;
5099 done;
5100 while $test "$yyy";
5101 do set $yyy; var=$2; eval "was=\$$2";
5102         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu";
5103         set $yyy; shift; shift; yyy=$@;
5104 done'
5105
5106 : see if stdlib is available
5107 set stdlib.h i_stdlib
5108 eval $inhdr
5109
5110 : check for lengths of integral types
5111 echo " "
5112 case "$intsize" in
5113 '')
5114         echo "Checking to see how big your integers are..." >&4
5115         $cat >try.c <<EOCP
5116 #include <stdio.h>
5117 #$i_stdlib I_STDLIB
5118 #ifdef I_STDLIB
5119 #include <stdlib.h>
5120 #endif
5121 int main()
5122 {
5123         printf("intsize=%d;\n", (int)sizeof(int));
5124         printf("longsize=%d;\n", (int)sizeof(long));
5125         printf("shortsize=%d;\n", (int)sizeof(short));
5126         exit(0);
5127 }
5128 EOCP
5129         set try
5130         if eval $compile_ok && $run ./try > /dev/null; then
5131                 eval `$run ./try`
5132                 echo "Your integers are $intsize bytes long."
5133                 echo "Your long integers are $longsize bytes long."
5134                 echo "Your short integers are $shortsize bytes long."
5135         else
5136                 $cat >&4 <<EOM
5137 !
5138 Help! I can't compile and run the intsize test program: please enlighten me!
5139 (This is probably a misconfiguration in your system or libraries, and
5140 you really ought to fix it.  Still, I'll try anyway.)
5141 !
5142 EOM
5143                 dflt=4
5144                 rp="What is the size of an integer (in bytes)?"
5145                 . ./myread
5146                 intsize="$ans"
5147                 dflt=$intsize
5148                 rp="What is the size of a long integer (in bytes)?"
5149                 . ./myread
5150                 longsize="$ans"
5151                 dflt=2
5152                 rp="What is the size of a short integer (in bytes)?"
5153                 . ./myread
5154                 shortsize="$ans"
5155         fi
5156         ;;
5157 esac
5158 $rm -f try try.*
5159
5160 : check for long long
5161 echo " "
5162 echo "Checking to see if you have long long..." >&4
5163 echo 'int main() { long long x = 7; return 0; }' > try.c
5164 set try
5165 if eval $compile; then
5166         val="$define"
5167         echo "You have long long."
5168 else
5169         val="$undef"
5170         echo "You do not have long long."
5171 fi
5172 $rm try.*
5173 set d_longlong
5174 eval $setvar
5175
5176 : check for length of long long
5177 case "${d_longlong}${longlongsize}" in
5178 $define)
5179         echo " "
5180         echo "Checking to see how big your long longs are..." >&4
5181         $cat >try.c <<'EOCP'
5182 #include <stdio.h>
5183 int main()
5184 {
5185     printf("%d\n", (int)sizeof(long long));
5186     return(0);
5187 }
5188 EOCP
5189         set try
5190         if eval $compile_ok; then
5191                 longlongsize=`$run ./try`
5192                 echo "Your long longs are $longlongsize bytes long."
5193         else
5194                 dflt='8'
5195                 echo " "
5196                 echo "(I can't seem to compile the test program.  Guessing...)"
5197                 rp="What is the size of a long long (in bytes)?"
5198                 . ./myread
5199                 longlongsize="$ans"
5200         fi
5201         if $test "X$longsize" = "X$longlongsize"; then
5202                 echo "(That isn't any different from an ordinary long.)"
5203         fi      
5204         ;;
5205 esac
5206 $rm -f try.* try
5207
5208 : see if inttypes.h is available
5209 : we want a real compile instead of Inhdr because some systems
5210 : have an inttypes.h which includes non-existent headers
5211 echo " "
5212 $cat >try.c <<EOCP
5213 #include <inttypes.h>
5214 int main() {
5215         static int32_t foo32 = 0x12345678;
5216 }
5217 EOCP
5218 set try
5219 if eval $compile; then
5220         echo "<inttypes.h> found." >&4
5221         val="$define"
5222 else
5223         echo "<inttypes.h> NOT found." >&4
5224         val="$undef"
5225 fi
5226 $rm -f try.c try
5227 set i_inttypes
5228 eval $setvar
5229
5230 : check for int64_t
5231 echo " "
5232 echo "Checking to see if you have int64_t..." >&4
5233 $cat >try.c <<EOCP
5234 #include <sys/types.h>
5235 #$i_inttypes I_INTTYPES
5236 #ifdef I_INTTYPES
5237 #include <inttypes.h>
5238 #endif
5239 int main() { int64_t x = 7; }
5240 EOCP
5241 set try
5242 if eval $compile; then
5243         val="$define"
5244         echo "You have int64_t."
5245 else
5246         val="$undef"
5247         echo "You do not have int64_t."
5248 fi
5249 $rm -f try try.*
5250 set d_int64_t
5251 eval $setvar
5252
5253
5254 echo " "
5255 echo "Checking which 64-bit integer type we could use..." >&4
5256
5257 case "$intsize" in
5258 8) val=int
5259    set quadtype
5260    eval $setvar
5261    val='"unsigned int"'
5262    set uquadtype
5263    eval $setvar
5264    quadkind=1
5265    ;;
5266 *) case "$longsize" in
5267    8) val=long
5268       set quadtype
5269       eval $setvar
5270       val='"unsigned long"'
5271       set uquadtype
5272       eval $setvar
5273       quadkind=2
5274       ;;
5275    *) case "$d_longlong:$longlongsize" in
5276       define:8)
5277         val='"long long"'
5278         set quadtype
5279         eval $setvar
5280         val='"unsigned long long"'
5281         set uquadtype
5282         eval $setvar
5283         quadkind=3
5284         ;;
5285       *) case "$d_int64_t" in
5286          define)
5287            val=int64_t
5288            set quadtype
5289            eval $setvar
5290            val=uint64_t
5291            set uquadtype
5292            eval $setvar
5293            quadkind=4
5294            ;;
5295          esac
5296          ;;
5297       esac
5298       ;;
5299    esac
5300    ;;
5301 esac
5302
5303 case "$quadtype" in
5304 '')     echo "Alas, no 64-bit integer types in sight." >&4
5305         d_quad="$undef"
5306         ;;
5307 *)      echo "We could use '$quadtype' for 64-bit integers." >&4
5308         d_quad="$define"
5309         ;;
5310 esac
5311
5312
5313 case "$uselonglong" in
5314 "$define"|true|[yY]*)
5315         cat <<EOM >&4
5316
5317 *** Configure -Duselonglong is deprecated, using -Duse64bitint instead.
5318 EOM
5319         use64bitint="$define"
5320         ;;
5321 esac                          
5322 case "$use64bits" in
5323 "$define"|true|[yY]*)
5324         cat <<EOM >&4
5325
5326 *** Configure -Duse64bits is deprecated, using -Duse64bitint instead.
5327 EOM
5328         use64bitint="$define"
5329         ;;
5330 esac                          
5331 case "$use64bitints" in
5332 "$define"|true|[yY]*)
5333         cat <<EOM >&4
5334
5335 *** There is no Configure -Duse64bitints, using -Duse64bitint instead.
5336 EOM
5337         use64bitint="$define"
5338         ;;
5339 esac                          
5340 case "$use64bitsint" in
5341 "$define"|true|[yY]*)
5342         cat <<EOM >&4
5343
5344 *** There is no Configure -Duse64bitsint, using -Duse64bitint instead.
5345 EOM
5346         use64bitint="$define"
5347         ;;
5348 esac                          
5349 case "$uselonglongs" in
5350 "$define"|true|[yY]*)
5351         cat <<EOM >&4
5352
5353 *** There is no Configure -Duselonglongs, using -Duse64bitint instead.
5354 EOM
5355         use64bitint="$define"
5356         ;;
5357 esac                          
5358 case "$use64bitsall" in
5359 "$define"|true|[yY]*)
5360         cat <<EOM >&4
5361
5362 *** There is no Configure -Duse64bitsall, using -Duse64bitall instead.
5363 EOM
5364         use64bitall="$define"
5365         ;;
5366 esac                          
5367
5368 case "$ccflags" in
5369 *-DUSE_LONG_LONG*|*-DUSE_64_BIT_INT*|*-DUSE_64_BIT_ALL*) use64bitint="$define";;
5370 esac
5371 case "$use64bitall" in
5372 "$define"|true|[yY]*) use64bitint="$define" ;;
5373 esac
5374
5375 case "$longsize" in
5376 8) cat <<EOM
5377
5378 You have natively 64-bit long integers.
5379 EOM
5380    val="$define"
5381    ;;
5382 *) case "$use64bitint" in
5383    "$define"|true|[yY]*) dflt='y';;
5384    *) dflt='n';;
5385    esac
5386    case "$d_quad" in
5387    "$define") ;;
5388    *) dflt='n' ;;
5389    esac
5390    cat <<EOM
5391
5392 Perl can be built to take advantage of 64-bit integer types
5393 on some systems.  To do so, Configure can be run with -Duse64bitint.
5394 Choosing this option will most probably introduce binary incompatibilities.
5395
5396 If this doesn't make any sense to you, just accept the default '$dflt'.
5397 (The default has been chosen based on your configuration.)
5398 EOM
5399    rp='Try to use 64-bit integers, if available?'
5400    . ./myread
5401    case "$ans" in
5402    [yY]*) val="$define" ;;
5403    *)     val="$undef"  ;;
5404    esac
5405    ;;
5406 esac
5407 set use64bitint
5408 eval $setvar
5409
5410 case "$use64bitall" in
5411 "$define"|true|[yY]*) dflt='y' ;;
5412 *) case "$longsize" in
5413    8) dflt='y' ;;
5414    *) dflt='n' ;;
5415    esac
5416    ;;
5417 esac    
5418 cat <<EOM
5419
5420 You may also choose to try maximal 64-bitness.  It means using as much
5421 64-bitness as possible on the platform.  This in turn means even more
5422 binary incompatibilities.  On the other hand, your platform may not
5423 have any more 64-bitness available than what you already have chosen.
5424
5425 If this doesn't make any sense to you, just accept the default '$dflt'.
5426 (The default has been chosen based on your configuration.)
5427 EOM
5428 rp='Try to use maximal 64-bit support, if available?'
5429 . ./myread
5430 case "$ans" in
5431 [yY]*) val="$define" ;;
5432 *)     val="$undef"  ;;
5433 esac
5434 set use64bitall
5435 eval $setvar
5436 case "$use64bitall" in
5437 "$define")
5438         case "$use64bitint" in
5439         "$undef")
5440                 cat <<EOM
5441
5442 Since you have chosen a maximally 64-bit build, I'm also turning on
5443 the use of 64-bit integers.
5444 EOM
5445                 use64bitint="$define" ;;
5446         esac
5447         ;;
5448 esac
5449
5450 case "$use64bitint" in
5451 "$define"|true|[yY]*)
5452 : Look for a hint-file generated 'call-back-unit'.  If the
5453 : user has specified that a 64-bit perl is to be built,
5454 : we may need to set or change some other defaults.
5455         if $test -f use64bitint.cbu; then
5456                 echo "Your platform has some specific hints for 64-bit integers, using them..."
5457                 . ./use64bitint.cbu
5458         fi
5459         case "$longsize" in
5460         4) case "$archname64" in
5461            '') archname64=64int ;;
5462            esac
5463            ;;
5464         esac
5465         ;;
5466 esac
5467
5468 case "$use64bitall" in
5469 "$define"|true|[yY]*)
5470 : Look for a hint-file generated 'call-back-unit'.  If the
5471 : user has specified that a maximally 64-bit perl is to be built,
5472 : we may need to set or change some other defaults.
5473         if $test -f use64bitall.cbu; then
5474                 echo "Your platform has some specific hints for 64-bit builds, using them..."
5475                 . ./use64bitall.cbu
5476         fi
5477         case "$longsize" in
5478         4) case "$archname64" in
5479            ''|64int) archname64=64all ;;
5480            esac
5481            ;;
5482         esac
5483         ;;
5484 esac
5485
5486 case "$d_quad:$use64bitint" in
5487 $undef:$define)
5488         cat >&4 <<EOF
5489
5490 *** You have chosen to use 64-bit integers,
5491 *** but none cannot be found.
5492 *** Please rerun Configure without -Duse64bitint and/or -Dusemorebits.
5493 *** Cannot continue, aborting.
5494
5495 EOF
5496         exit 1
5497         ;;
5498 esac
5499
5500 : check for length of double
5501 echo " "
5502 case "$doublesize" in
5503 '')
5504         echo "Checking to see how big your double precision numbers are..." >&4
5505         $cat >try.c <<EOCP
5506 #include <stdio.h>
5507 #$i_stdlib I_STDLIB
5508 #ifdef I_STDLIB
5509 #include <stdlib.h>
5510 #endif
5511 int main()
5512 {
5513     printf("%d\n", (int)sizeof(double));
5514     exit(0);
5515 }
5516 EOCP
5517         set try
5518         if eval $compile_ok; then
5519                 doublesize=`$run ./try`
5520                 echo "Your double is $doublesize bytes long."
5521         else
5522                 dflt='8'
5523                 echo "(I can't seem to compile the test program.  Guessing...)"
5524                 rp="What is the size of a double precision number (in bytes)?"
5525                 . ./myread
5526                 doublesize="$ans"
5527         fi
5528         ;;
5529 esac
5530 $rm -f try.c try
5531
5532 : check for long doubles
5533 echo " "
5534 echo "Checking to see if you have long double..." >&4
5535 echo 'int main() { long double x = 7.0; }' > try.c
5536 set try
5537 if eval $compile; then
5538         val="$define"
5539         echo "You have long double."
5540 else
5541         val="$undef"
5542         echo "You do not have long double."
5543 fi
5544 $rm try.*
5545 set d_longdbl
5546 eval $setvar
5547
5548 : check for length of long double
5549 case "${d_longdbl}${longdblsize}" in
5550 $define)
5551         echo " "
5552         echo "Checking to see how big your long doubles are..." >&4
5553         $cat >try.c <<'EOCP'
5554 #include <stdio.h>
5555 int main()
5556 {
5557         printf("%d\n", sizeof(long double));
5558 }
5559 EOCP
5560         set try
5561         set try
5562         if eval $compile; then
5563                 longdblsize=`$run ./try`
5564                 echo "Your long doubles are $longdblsize bytes long."
5565         else
5566                 dflt='8'
5567                 echo " "
5568                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
5569                 rp="What is the size of a long double (in bytes)?"
5570                 . ./myread
5571                 longdblsize="$ans"
5572         fi
5573         if $test "X$doublesize" = "X$longdblsize"; then
5574                 echo "That isn't any different from an ordinary double."
5575                 echo "I'll keep your setting anyway, but you may see some"
5576                 echo "harmless compilation warnings."
5577         fi      
5578         ;;
5579 esac
5580 $rm -f try.* try
5581
5582 : determine the architecture name
5583 echo " "
5584 if xxx=`./loc arch blurfl $pth`; $test -f "$xxx"; then
5585         tarch=`arch`"-$osname"
5586 elif xxx=`./loc uname blurfl $pth`; $test -f "$xxx" ; then
5587         if uname -m > tmparch 2>&1 ; then
5588                 tarch=`$sed -e 's/ *$//' -e 's/ /_/g' \
5589                         -e 's/$/'"-$osname/" tmparch`
5590         else
5591                 tarch="$osname"
5592         fi
5593         $rm -f tmparch
5594 else
5595         tarch="$osname"
5596 fi
5597 case "$myarchname" in
5598 ''|"$tarch") ;;
5599 *)
5600         echo "(Your architecture name used to be $myarchname.)"
5601         archname=''
5602         ;;
5603 esac
5604 case "$targetarch" in
5605 '') ;;
5606 *)  archname=`echo $targetarch|sed 's,^[^-]*-,,'` ;;
5607 esac
5608 myarchname="$tarch"
5609 case "$archname" in
5610 '') dflt="$tarch";;
5611 *) dflt="$archname";;
5612 esac
5613 rp='What is your architecture name'
5614 . ./myread
5615 archname="$ans"
5616 case "$usethreads" in
5617 $define)
5618         echo "Threads selected." >&4
5619         case "$archname" in
5620         *-thread*) echo "...and architecture name already has -thread." >&4
5621                 ;;
5622         *)      archname="$archname-thread"
5623                 echo "...setting architecture name to $archname." >&4
5624                 ;;
5625         esac
5626         ;;
5627 esac
5628 case "$usemultiplicity" in
5629 $define)
5630         echo "Multiplicity selected." >&4
5631         case "$archname" in
5632         *-multi*) echo "...and architecture name already has -multi." >&4
5633                 ;;
5634         *)      archname="$archname-multi"
5635                 echo "...setting architecture name to $archname." >&4
5636                 ;;
5637         esac
5638         ;;
5639 esac
5640 case "$use64bitint$use64bitall" in
5641 *"$define"*)
5642         case "$archname64" in
5643         '')
5644                 echo "This architecture is naturally 64-bit, not changing architecture name." >&4
5645                 ;;
5646         *)
5647                 case "$use64bitint" in
5648                 "$define") echo "64 bit integers selected." >&4 ;;
5649                 esac
5650                 case "$use64bitall" in
5651                 "$define") echo "Maximal 64 bitness selected." >&4 ;;
5652                 esac
5653                 case "$archname" in
5654                 *-$archname64*) echo "...and architecture name already has $archname64." >&4
5655                         ;;
5656                 *)      archname="$archname-$archname64"
5657                         echo "...setting architecture name to $archname." >&4
5658                         ;;
5659                 esac
5660                 ;;
5661         esac
5662 esac
5663 case "$uselongdouble" in
5664 $define)
5665         echo "Long doubles selected." >&4
5666         case "$longdblsize" in
5667         $doublesize)
5668                 echo "...but long doubles are equal to doubles, not changing architecture name." >&4
5669                 ;;
5670         *)
5671                 case "$archname" in
5672                 *-ld*) echo "...and architecture name already has -ld." >&4
5673                         ;;
5674                 *)      archname="$archname-ld"
5675                         echo "...setting architecture name to $archname." >&4
5676                         ;;
5677                 esac
5678                 ;;
5679         esac
5680         ;;
5681 esac
5682 case "$useperlio" in
5683 $define)
5684         echo "Perlio selected." >&4
5685         ;;
5686 *)
5687         echo "Perlio not selected, using stdio." >&4
5688         case "$archname" in
5689         *-stdio*) echo "...and architecture name already has -stdio." >&4
5690                 ;;
5691         *)      archname="$archname-stdio"
5692                 echo "...setting architecture name to $archname." >&4
5693                 ;;
5694         esac
5695         ;;
5696 esac
5697 if $test -f archname.cbu; then
5698         echo "Your platform has some specific hints for architecture name, using them..."
5699         . ./archname.cbu
5700 fi
5701
5702 : determine root of directory hierarchy where package will be installed.
5703 case "$prefix" in
5704 '')
5705         dflt=`./loc . /usr/local /usr/local /local /opt /usr`
5706         ;;
5707 *?/)
5708         dflt=`echo "$prefix" | sed 's/.$//'`
5709         ;;
5710 *)
5711         dflt="$prefix"
5712         ;;
5713 esac
5714 $cat <<EOM
5715
5716 By default, $package will be installed in $dflt/bin, manual pages
5717 under $dflt/man, etc..., i.e. with $dflt as prefix for all
5718 installation directories. Typically this is something like /usr/local.
5719 If you wish to have binaries under /usr/bin but other parts of the
5720 installation under /usr/local, that's ok: you will be prompted
5721 separately for each of the installation directories, the prefix being
5722 only used to set the defaults.
5723
5724 EOM
5725 fn=d~
5726 rp='Installation prefix to use?'
5727 . ./getfile
5728 oldprefix=''
5729 case "$prefix" in
5730 '') ;;
5731 *)
5732         case "$ans" in
5733         "$prefix") ;;
5734         *) oldprefix="$prefix";;
5735         esac
5736         ;;
5737 esac
5738 prefix="$ans"
5739 prefixexp="$ansexp"
5740
5741 case "$afsroot" in
5742 '')     afsroot=/afs ;;
5743 *)      afsroot=$afsroot ;;
5744 esac
5745
5746 : is AFS running?
5747 echo " "
5748 case "$afs" in
5749 $define|true)   afs=true ;;
5750 $undef|false)   afs=false ;;
5751 *)      if test -d $afsroot; then
5752                 afs=true
5753         else
5754                 afs=false
5755         fi
5756         ;;
5757 esac
5758 if $afs; then
5759         echo "AFS may be running... I'll be extra cautious then..." >&4
5760 else
5761         echo "AFS does not seem to be running..." >&4
5762 fi
5763
5764 : determine installation prefix for where package is to be installed.
5765 if $afs; then 
5766 $cat <<EOM
5767
5768 Since you are running AFS, I need to distinguish the directory in which
5769 files will reside from the directory in which they are installed (and from
5770 which they are presumably copied to the former directory by occult means).
5771
5772 EOM
5773         case "$installprefix" in
5774         '') dflt=`echo $prefix | sed 's#^/afs/#/afs/.#'`;;
5775         *) dflt="$installprefix";;
5776         esac
5777 else
5778 $cat <<EOM
5779
5780 In some special cases, particularly when building $package for distribution,
5781 it is convenient to distinguish the directory in which files should be
5782 installed from the directory ($prefix) in which they will
5783 eventually reside.  For most users, these two directories are the same.
5784
5785 EOM
5786         case "$installprefix" in
5787         '') dflt=$prefix ;;
5788         *) dflt=$installprefix;;
5789         esac
5790 fi
5791 fn=d~
5792 rp='What installation prefix should I use for installing files?'
5793 . ./getfile
5794 installprefix="$ans"
5795 installprefixexp="$ansexp"
5796
5797 : set the prefixit variable, to compute a suitable default value
5798 prefixit='case "$3" in
5799 ""|none)
5800         case "$oldprefix" in
5801         "") eval "$1=\"\$$2\"";;
5802         *)
5803                 case "$3" in
5804                 "") eval "$1=";;
5805                 none)
5806                         eval "tp=\"\$$2\"";
5807                         case "$tp" in
5808                         ""|" ") eval "$1=\"\$$2\"";;
5809                         *) eval "$1=";;
5810                         esac;;
5811                 esac;;
5812         esac;;
5813 *)
5814         eval "tp=\"$oldprefix-\$$2-\""; eval "tp=\"$tp\"";
5815         case "$tp" in
5816         --|/*--|\~*--) eval "$1=\"$prefix/$3\"";;
5817         /*-$oldprefix/*|\~*-$oldprefix/*)
5818                 eval "$1=\`echo \$$2 | sed \"s,^$oldprefix,$prefix,\"\`";;
5819         *) eval "$1=\"\$$2\"";;
5820         esac;;
5821 esac'
5822
5823 : get the patchlevel
5824 echo " "
5825 echo "Getting the current patchlevel..." >&4
5826 if $test -r $rsrc/patchlevel.h;then
5827         revision=`awk '/define[         ]+PERL_REVISION/ {print $3}' $rsrc/patchlevel.h`
5828         patchlevel=`awk '/define[       ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
5829         subversion=`awk '/define[       ]+PERL_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
5830         api_revision=`awk '/define[     ]+PERL_API_REVISION/ {print $3}' $rsrc/patchlevel.h`
5831         api_version=`awk '/define[      ]+PERL_API_VERSION/ {print $3}' $rsrc/patchlevel.h`
5832         api_subversion=`awk '/define[   ]+PERL_API_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
5833        perl_patchlevel=`grep ',"DEVEL[0-9][0-9]*"' $rsrc/patchlevel.h|sed 's/[^0-9]//g'`
5834 else
5835         revision=0
5836         patchlevel=0
5837         subversion=0
5838         api_revision=0
5839         api_version=0
5840         api_subversion=0
5841         perl_patchlevel=0
5842         $echo "(You do not have patchlevel.h.  Eek.)"
5843 fi
5844 if $test -r $rsrc/.patch ; then  
5845         if $test "`cat $rsrc/.patch`" -gt "$perl_patchlevel" ; then
5846                 perl_patchlevel=`cat $rsrc/.patch`
5847         fi
5848 fi
5849 : Define a handy string here to avoid duplication in myconfig.SH and configpm.
5850 version_patchlevel_string="version $patchlevel subversion $subversion"
5851 case "$perl_patchlevel" in
5852 0|'') ;;
5853 *) version_patchlevel_string="$version_patchlevel_string patch $perl_patchlevel" ;;
5854 esac
5855
5856 $echo "(You have $package $version_patchlevel_string.)"
5857
5858 case "$osname" in
5859 dos|vms)
5860         : XXX Should be a Configure test for double-dots in filenames.
5861         version=`echo $revision $patchlevel $subversion | \
5862                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
5863         api_versionstring=`echo $api_revision $api_version $api_subversion | \
5864                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
5865         ;;
5866 *)
5867         version=`echo $revision $patchlevel $subversion | \
5868                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
5869         api_versionstring=`echo $api_revision $api_version $api_subversion | \
5870                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
5871         ;;
5872 esac
5873 : Special case the 5.005_xx maintenance series, which used 5.005
5874 : without any subversion label as a subdirectory in $sitelib
5875 if test "${api_revision}${api_version}${api_subversion}" = "550"; then
5876         api_versionstring='5.005'
5877 fi
5878
5879 : determine installation style
5880 : For now, try to deduce it from prefix unless it is already set.
5881 : Reproduce behavior of 5.005 and earlier, maybe drop that in 5.7.
5882 case "$installstyle" in
5883 '')     case "$prefix" in
5884                 *perl*) dflt='lib';;
5885                 *) dflt='lib/perl5' ;;
5886         esac
5887         ;;
5888 *)      dflt="$installstyle" ;;
5889 esac
5890 : Probably not worth prompting for this since we prompt for all
5891 : the directories individually, and the prompt would be too long and
5892 : confusing anyway.
5893 installstyle=$dflt
5894
5895 : determine where private library files go
5896 : Usual default is /usr/local/lib/perl5/$version.
5897 : Also allow things like /opt/perl/lib/$version, since 
5898 : /opt/perl/lib/perl5... would be redundant.
5899 : The default "style" setting is made in installstyle.U
5900 case "$installstyle" in
5901 *lib/perl5*) set dflt privlib lib/$package/$version ;;
5902 *)       set dflt privlib lib/$version ;;
5903 esac
5904 eval $prefixit
5905 $cat <<EOM
5906
5907 There are some auxiliary files for $package that need to be put into a
5908 private library directory that is accessible by everyone.
5909
5910 EOM
5911 fn=d~+
5912 rp='Pathname where the private library files will reside?'
5913 . ./getfile
5914 privlib="$ans"
5915 privlibexp="$ansexp"
5916 : Change installation prefix, if necessary.
5917 if $test X"$prefix" != X"$installprefix"; then
5918         installprivlib=`echo $privlibexp | sed "s#^$prefix#$installprefix#"`
5919 else
5920         installprivlib="$privlibexp"
5921 fi
5922
5923 : set the prefixup variable, to restore leading tilda escape
5924 prefixup='case "$prefixexp" in
5925 "$prefix") ;;
5926 *) eval "$1=\`echo \$$1 | sed \"s,^$prefixexp,$prefix,\"\`";;
5927 esac'
5928
5929 : determine where public architecture dependent libraries go
5930 set archlib archlib
5931 eval $prefixit
5932 : privlib default is /usr/local/lib/$package/$version
5933 : archlib default is /usr/local/lib/$package/$version/$archname
5934 : privlib may have an optional trailing /share.
5935 tdflt=`echo $privlib | $sed 's,/share$,,'`
5936 tdflt=$tdflt/$archname
5937 case "$archlib" in
5938 '')     dflt=$tdflt
5939         ;;
5940 *)      dflt="$archlib"
5941     ;;
5942 esac
5943 $cat <<EOM
5944
5945 $spackage contains architecture-dependent library files.  If you are
5946 sharing libraries in a heterogeneous environment, you might store
5947 these files in a separate location.  Otherwise, you can just include
5948 them with the rest of the public library files.
5949
5950 EOM
5951 fn=d+~
5952 rp='Where do you want to put the public architecture-dependent libraries?'
5953 . ./getfile
5954 archlib="$ans"
5955 archlibexp="$ansexp"
5956 if $test X"$archlib" = X"$privlib"; then
5957         d_archlib="$undef"
5958 else
5959         d_archlib="$define"
5960 fi
5961 : Change installation prefix, if necessary.
5962 if $test X"$prefix" != X"$installprefix"; then
5963         installarchlib=`echo $archlibexp | sed "s#^$prefix#$installprefix#"`
5964 else
5965         installarchlib="$archlibexp"
5966 fi
5967
5968 : see if setuid scripts can be secure
5969 $cat <<EOM
5970
5971 Some kernels have a bug that prevents setuid #! scripts from being
5972 secure.  Some sites have disabled setuid #! scripts because of this.
5973
5974 First let's decide if your kernel supports secure setuid #! scripts.
5975 (If setuid #! scripts would be secure but have been disabled anyway,
5976 don't say that they are secure if asked.)
5977
5978 EOM
5979
5980 val="$undef"
5981 if $test -d /dev/fd; then
5982         echo "#!$ls" >reflect
5983         chmod +x,u+s reflect
5984         ./reflect >flect 2>&1
5985         if $contains "/dev/fd" flect >/dev/null; then
5986                 echo "Congratulations, your kernel has secure setuid scripts!" >&4
5987                 val="$define"
5988         else
5989                 $cat <<EOM
5990 If you are not sure if they are secure, I can check but I'll need a
5991 username and password different from the one you are using right now.
5992 If you don't have such a username or don't want me to test, simply
5993 enter 'none'.
5994
5995 EOM
5996                 rp='Other username to test security of setuid scripts with?'
5997                 dflt='none'
5998                 . ./myread
5999                 case "$ans" in
6000                 n|none)
6001                         case "$d_suidsafe" in
6002                         '')     echo "I'll assume setuid scripts are *not* secure." >&4
6003                                 dflt=n;;
6004                         "$undef")
6005                                 echo "Well, the $hint value is *not* secure." >&4
6006                                 dflt=n;;
6007                         *)      echo "Well, the $hint value *is* secure." >&4
6008                                 dflt=y;;
6009                         esac
6010                         ;;
6011                 *)
6012                         $rm -f reflect flect
6013                         echo "#!$ls" >reflect
6014                         chmod +x,u+s reflect
6015                         echo >flect
6016                         chmod a+w flect
6017                         echo '"su" will (probably) prompt you for '"$ans's password."
6018                         su $ans -c './reflect >flect'
6019                         if $contains "/dev/fd" flect >/dev/null; then
6020                                 echo "Okay, it looks like setuid scripts are secure." >&4
6021                                 dflt=y
6022                         else
6023                                 echo "I don't think setuid scripts are secure." >&4
6024                                 dflt=n
6025                         fi
6026                         ;;
6027                 esac
6028                 rp='Does your kernel have *secure* setuid scripts?'
6029                 . ./myread
6030                 case "$ans" in
6031                 [yY]*)  val="$define";;
6032                 *)      val="$undef";;
6033                 esac
6034         fi
6035 else
6036         echo "I don't think setuid scripts are secure (no /dev/fd directory)." >&4
6037         echo "(That's for file descriptors, not floppy disks.)"
6038         val="$undef"
6039 fi
6040 set d_suidsafe
6041 eval $setvar
6042
6043 $rm -f reflect flect
6044
6045 : now see if they want to do setuid emulation
6046 echo " "
6047 val="$undef"
6048 case "$d_suidsafe" in
6049 "$define")
6050         val="$undef"
6051         echo "No need to emulate SUID scripts since they are secure here." >&4
6052         ;;
6053 *)
6054         $cat <<EOM
6055 Some systems have disabled setuid scripts, especially systems where
6056 setuid scripts cannot be secure.  On systems where setuid scripts have
6057 been disabled, the setuid/setgid bits on scripts are currently
6058 useless.  It is possible for $package to detect those bits and emulate
6059 setuid/setgid in a secure fashion.  This emulation will only work if
6060 setuid scripts have been disabled in your kernel.
6061
6062 EOM
6063         case "$d_dosuid" in
6064         "$define") dflt=y ;;
6065         *) dflt=n ;;
6066         esac
6067         rp="Do you want to do setuid/setgid emulation?"
6068         . ./myread
6069         case "$ans" in
6070         [yY]*)  val="$define";;
6071         *)      val="$undef";;
6072         esac
6073         ;;
6074 esac
6075 set d_dosuid
6076 eval $setvar
6077
6078 : see if this is a malloc.h system
6079 : we want a real compile instead of Inhdr because some systems have a
6080 : malloc.h that just gives a compile error saying to use stdlib.h instead
6081 echo " "
6082 $cat >try.c <<EOCP
6083 #include <stdlib.h>
6084 #include <malloc.h>
6085 int main () { return 0; }
6086 EOCP
6087 set try
6088 if eval $compile; then
6089     echo "<malloc.h> found." >&4
6090     val="$define"
6091 else
6092     echo "<malloc.h> NOT found." >&4
6093     val="$undef"
6094 fi
6095 $rm -f try.c try
6096 set i_malloc
6097 eval $setvar
6098
6099 : check for void type
6100 echo " "
6101 echo "Checking to see how well your C compiler groks the void type..." >&4
6102 case "$voidflags" in
6103 '')
6104         $cat >try.c <<EOCP
6105 #$i_stdlib I_STDLIB
6106 #ifdef I_STDLIB
6107 #include <stdlib.h>
6108 #endif
6109 #if TRY & 1
6110 void sub() {
6111 #else
6112 sub() {
6113 #endif
6114         extern void moo();      /* function returning void */
6115         void (*goo)();          /* ptr to func returning void */
6116 #if TRY & 8
6117         void *hue;              /* generic ptr */
6118 #endif
6119 #if TRY & 2
6120         void (*foo[10])();
6121 #endif
6122
6123 #if TRY & 4
6124         if(goo == moo) {
6125                 exit(0);
6126         }
6127 #endif
6128         exit(0);
6129 }
6130 int main() { sub(); }
6131 EOCP
6132         if $cc $ccflags -c -DTRY=$defvoidused try.c >.out 2>&1 ; then
6133                 voidflags=$defvoidused
6134         echo "Good.  It appears to support void to the level $package wants.">&4
6135                 if $contains warning .out >/dev/null 2>&1; then
6136                         echo "However, you might get some warnings that look like this:"
6137                         $cat .out
6138                 fi
6139         else
6140 echo "Hmm, your compiler has some difficulty with void. Checking further..." >&4
6141                 if $cc $ccflags -c -DTRY=1 try.c >/dev/null 2>&1; then
6142                         echo "It supports 1..."
6143                         if $cc $ccflags -c -DTRY=3 try.c >/dev/null 2>&1; then
6144                                 echo "It also supports 2..."
6145                                 if $cc $ccflags -c -DTRY=7 try.c >/dev/null 2>&1; then
6146                                         voidflags=7
6147                                         echo "And it supports 4 but not 8 definitely."
6148                                 else
6149                                         echo "It doesn't support 4..."
6150                                         if $cc $ccflags -c -DTRY=11 try.c >/dev/null 2>&1; then
6151                                                 voidflags=11
6152                                                 echo "But it supports 8."
6153                                         else
6154                                                 voidflags=3
6155                                                 echo "Neither does it support 8."
6156                                         fi
6157                                 fi
6158                         else
6159                                 echo "It does not support 2..."
6160                                 if $cc $ccflags -c -DTRY=13 try.c >/dev/null 2>&1; then
6161                                         voidflags=13
6162                                         echo "But it supports 4 and 8."
6163                                 else
6164                                         if $cc $ccflags -c -DTRY=5 try.c >/dev/null 2>&1; then
6165                                                 voidflags=5
6166                                                 echo "And it supports 4 but has not heard about 8."
6167                                         else
6168                                                 echo "However it supports 8 but not 4."
6169                                         fi
6170                                 fi
6171                         fi
6172                 else
6173                         echo "There is no support at all for void."
6174                         voidflags=0
6175                 fi
6176         fi
6177 esac
6178 case "$voidflags" in
6179 "$defvoidused") ;;
6180 *)      $cat >&4 <<'EOM'
6181   Support flag bits are:
6182     1: basic void declarations.
6183     2: arrays of pointers to functions returning void.
6184     4: operations between pointers to and addresses of void functions.
6185     8: generic void pointers.
6186 EOM
6187         dflt="$voidflags";
6188         rp="Your void support flags add up to what?"
6189         . ./myread
6190         voidflags="$ans"
6191         ;;
6192 esac
6193 $rm -f try.* .out
6194
6195 : check for length of pointer
6196 echo " "
6197 case "$ptrsize" in
6198 '')
6199         echo "Checking to see how big your pointers are..." >&4
6200         if test "$voidflags" -gt 7; then
6201                 echo '#define VOID_PTR char *' > try.c
6202         else
6203                 echo '#define VOID_PTR void *' > try.c
6204         fi
6205         $cat >>try.c <<EOCP
6206 #include <stdio.h>
6207 #$i_stdlib I_STDLIB
6208 #ifdef I_STDLIB
6209 #include <stdlib.h>
6210 #endif
6211 int main()
6212 {
6213     printf("%d\n", (int)sizeof(VOID_PTR));
6214     exit(0);
6215 }
6216 EOCP
6217         set try
6218         if eval $compile_ok; then
6219                 ptrsize=`$run ./try`
6220                 echo "Your pointers are $ptrsize bytes long."
6221         else
6222                 dflt='4'
6223                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
6224                 rp="What is the size of a pointer (in bytes)?"
6225                 . ./myread
6226                 ptrsize="$ans"
6227         fi
6228         ;;
6229 esac
6230 $rm -f try.c try
6231 case "$use64bitall" in
6232 "$define"|true|[yY]*)
6233         case "$ptrsize" in
6234         4)      cat <<EOM >&4
6235
6236 *** You have chosen a maximally 64-bit build,
6237 *** but your pointers are only 4 bytes wide.
6238 *** Please rerun Configure without -Duse64bitall.
6239 EOM
6240                 case "$d_quad" in
6241                 define)
6242                         cat <<EOM >&4
6243 *** Since you have quads, you could possibly try with -Duse64bitint.
6244 EOM
6245                         ;;
6246                 esac
6247                 cat <<EOM >&4
6248 *** Cannot continue, aborting.
6249
6250 EOM
6251
6252                 exit 1
6253                 ;;
6254         esac
6255         ;;
6256 esac
6257
6258
6259 : determine which malloc to compile in
6260 echo " "
6261 case "$usemymalloc" in
6262 [yY]*|true|$define)     dflt='y' ;;
6263 [nN]*|false|$undef)     dflt='n' ;;
6264 *)      case "$ptrsize" in
6265         4) dflt='y' ;;
6266         *) dflt='n' ;;
6267         esac
6268         ;;
6269 esac
6270 rp="Do you wish to attempt to use the malloc that comes with $package?"
6271 . ./myread
6272 usemymalloc="$ans"
6273 case "$ans" in
6274 y*|true)
6275         usemymalloc='y'
6276         mallocsrc='malloc.c'
6277         mallocobj="malloc$_o"
6278         d_mymalloc="$define"
6279         case "$libs" in
6280         *-lmalloc*)
6281                 : Remove malloc from list of libraries to use
6282                 echo "Removing unneeded -lmalloc from library list" >&4
6283                 set `echo X $libs | $sed -e 's/-lmalloc / /' -e 's/-lmalloc$//'`
6284                 shift
6285                 libs="$*"
6286                 echo "libs = $libs" >&4
6287                 ;;
6288         esac
6289         ;;
6290 *)
6291         usemymalloc='n'
6292         mallocsrc=''
6293         mallocobj=''
6294         d_mymalloc="$undef"
6295         ;;
6296 esac
6297
6298 : compute the return types of malloc and free
6299 echo " "
6300 $cat >malloc.c <<END
6301 #$i_malloc I_MALLOC
6302 #$i_stdlib I_STDLIB
6303 #include <stdio.h>
6304 #include <sys/types.h>
6305 #ifdef I_MALLOC
6306 #include <malloc.h>
6307 #endif
6308 #ifdef I_STDLIB
6309 #include <stdlib.h>
6310 #endif
6311 #ifdef TRY_MALLOC
6312 void *malloc();
6313 #endif
6314 #ifdef TRY_FREE
6315 void free();
6316 #endif
6317 END
6318 case "$malloctype" in
6319 '')
6320         if $cc $ccflags -c -DTRY_MALLOC malloc.c >/dev/null 2>&1; then
6321                 malloctype='void *'
6322         else
6323                 malloctype='char *'
6324         fi
6325         ;;
6326 esac
6327 echo "Your system wants malloc to return '$malloctype', it would seem." >&4
6328
6329 case "$freetype" in
6330 '')
6331         if $cc $ccflags -c -DTRY_FREE malloc.c >/dev/null 2>&1; then
6332                 freetype='void'
6333         else
6334                 freetype='int'
6335         fi
6336         ;;
6337 esac
6338 echo "Your system uses $freetype free(), it would seem." >&4
6339 $rm -f malloc.[co]
6340 $cat <<EOM
6341
6342 After $package is installed, you may wish to install various
6343 add-on modules and utilities.  Typically, these add-ons will
6344 be installed under $prefix with the rest
6345 of this package.  However, you may wish to install such add-ons
6346 elsewhere under a different prefix.
6347
6348 If you do not wish to put everything under a single prefix, that's
6349 ok.  You will be prompted for the individual locations; this siteprefix
6350 is only used to suggest the defaults.
6351
6352 The default should be fine for most people.
6353
6354 EOM
6355 fn=d~+
6356 rp='Installation prefix to use for add-on modules and utilities?'
6357 : XXX Here might be another good place for an installstyle setting.
6358 case "$siteprefix" in
6359 '') dflt=$prefix ;;
6360 *)  dflt=$siteprefix ;;
6361 esac
6362 . ./getfile
6363 : XXX Prefixit unit does not yet support siteprefix and vendorprefix
6364 oldsiteprefix=''
6365 case "$siteprefix" in
6366 '') ;;
6367 *)      case "$ans" in
6368         "$prefix") ;;
6369         *) oldsiteprefix="$prefix";;
6370         esac
6371         ;;
6372 esac
6373 siteprefix="$ans"
6374 siteprefixexp="$ansexp"
6375
6376 : determine where site specific libraries go.
6377 : Usual default is /usr/local/lib/perl5/site_perl/$version
6378 : The default "style" setting is made in installstyle.U
6379 : XXX No longer works with Prefixit stuff.
6380 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6381 case "$sitelib" in
6382 '') case "$installstyle" in
6383         *lib/perl5*) dflt=$siteprefix/lib/$package/site_$prog/$version ;;
6384         *)       dflt=$siteprefix/lib/site_$prog/$version ;;
6385         esac
6386         ;;
6387 *)      dflt="$sitelib"
6388         ;;
6389 esac
6390 $cat <<EOM
6391
6392 The installation process will create a directory for
6393 site-specific extensions and modules.  Most users find it convenient
6394 to place all site-specific files in this directory rather than in the
6395 main distribution directory.
6396
6397 EOM
6398 fn=d~+
6399 rp='Pathname for the site-specific library files?'
6400 . ./getfile
6401 sitelib="$ans"
6402 sitelibexp="$ansexp"
6403 sitelib_stem=`echo "$sitelibexp" | sed "s,/$version$,,"`
6404 : Change installation prefix, if necessary.
6405 if $test X"$prefix" != X"$installprefix"; then
6406         installsitelib=`echo $sitelibexp | $sed "s#^$prefix#$installprefix#"`
6407 else
6408         installsitelib="$sitelibexp"
6409 fi
6410
6411 : determine where site specific architecture-dependent libraries go.
6412 : sitelib  default is /usr/local/lib/perl5/site_perl/$version
6413 : sitearch default is /usr/local/lib/perl5/site_perl/$version/$archname
6414 : sitelib may have an optional trailing /share.
6415 case "$sitearch" in
6416 '')     dflt=`echo $sitelib | $sed 's,/share$,,'`
6417         dflt="$dflt/$archname"
6418         ;;
6419 *)      dflt="$sitearch"
6420         ;;
6421 esac
6422 set sitearch sitearch none
6423 eval $prefixit
6424 $cat <<EOM
6425
6426 The installation process will also create a directory for
6427 architecture-dependent site-specific extensions and modules.
6428
6429 EOM
6430 fn=d~+
6431 rp='Pathname for the site-specific architecture-dependent library files?'
6432 . ./getfile
6433 sitearch="$ans"
6434 sitearchexp="$ansexp"
6435 : Change installation prefix, if necessary.
6436 if $test X"$prefix" != X"$installprefix"; then
6437         installsitearch=`echo $sitearchexp | sed "s#^$prefix#$installprefix#"`
6438 else
6439         installsitearch="$sitearchexp"
6440 fi
6441
6442 $cat <<EOM
6443
6444 The installation process will also create a directory for
6445 vendor-supplied add-ons.  Vendors who supply perl with their system
6446 may find it convenient to place all vendor-supplied files in this
6447 directory rather than in the main distribution directory.  This will
6448 ease upgrades between binary-compatible maintenance versions of perl.
6449
6450 Of course you may also use these directories in whatever way you see
6451 fit.  For example, you might use them to access modules shared over a
6452 company-wide network.
6453
6454 The default answer should be fine for most people.
6455 This causes further questions about vendor add-ons to be skipped
6456 and no vendor-specific directories will be configured for perl.
6457
6458 EOM
6459 rp='Do you want to configure vendor-specific add-on directories?'
6460 case "$usevendorprefix" in
6461 define|true|[yY]*) dflt=y ;;
6462 *)      : User may have set vendorprefix directly on Configure command line.
6463         case "$vendorprefix" in
6464         ''|' ') dflt=n ;;
6465         *)      dflt=y ;;
6466         esac
6467         ;;
6468 esac
6469 . ./myread
6470 case "$ans" in
6471 [yY]*)  fn=d~+
6472         rp='Installation prefix to use for vendor-supplied add-ons?'
6473         case "$vendorprefix" in
6474         '') dflt='' ;;
6475         *)  dflt=$vendorprefix ;;
6476         esac
6477         . ./getfile
6478         : XXX Prefixit unit does not yet support siteprefix and vendorprefix
6479         oldvendorprefix=''
6480         case "$vendorprefix" in
6481         '') ;;
6482         *)      case "$ans" in
6483                 "$prefix") ;;
6484                 *) oldvendorprefix="$prefix";;
6485                 esac
6486                 ;;
6487         esac
6488         usevendorprefix="$define"
6489         vendorprefix="$ans"
6490         vendorprefixexp="$ansexp"
6491         ;;
6492 *)      usevendorprefix="$undef"
6493         vendorprefix=''
6494         vendorprefixexp=''
6495         ;;
6496 esac
6497
6498 case "$vendorprefix" in
6499 '')     d_vendorlib="$undef"
6500         vendorlib=''
6501         vendorlibexp=''
6502         ;;
6503 *)      d_vendorlib="$define"
6504         : determine where vendor-supplied modules go.
6505         : Usual default is /usr/local/lib/perl5/vendor_perl/$version
6506         case "$vendorlib" in
6507         '')
6508                 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6509                 case "$installstyle" in
6510                 *lib/perl5*) dflt=$vendorprefix/lib/$package/vendor_$prog/$version ;;
6511                 *)           dflt=$vendorprefix/lib/vendor_$prog/$version ;;
6512                 esac
6513                 ;;
6514         *)      dflt="$vendorlib"
6515                 ;;
6516         esac
6517         fn=d~+
6518         rp='Pathname for the vendor-supplied library files?'
6519         . ./getfile
6520         vendorlib="$ans"
6521         vendorlibexp="$ansexp"
6522         ;;
6523 esac
6524 vendorlib_stem=`echo "$vendorlibexp" | sed "s,/$version$,,"`
6525 : Change installation prefix, if necessary.
6526 if $test X"$prefix" != X"$installprefix"; then
6527         installvendorlib=`echo $vendorlibexp | $sed "s#^$prefix#$installprefix#"`
6528 else
6529         installvendorlib="$vendorlibexp"
6530 fi
6531
6532 case "$vendorprefix" in
6533 '')     d_vendorarch="$undef"
6534         vendorarch=''
6535         vendorarchexp=''
6536         ;;
6537 *)      d_vendorarch="$define"
6538         : determine where vendor-supplied architecture-dependent libraries go.
6539         : vendorlib  default is /usr/local/lib/perl5/vendor_perl/$version
6540         : vendorarch default is /usr/local/lib/perl5/vendor_perl/$version/$archname
6541         : vendorlib may have an optional trailing /share.
6542         case "$vendorarch" in
6543         '')     dflt=`echo $vendorlib | $sed 's,/share$,,'`
6544                 dflt="$dflt/$archname"
6545                 ;;
6546         *)      dflt="$vendorarch" ;;
6547         esac
6548         fn=d~+
6549         rp='Pathname for vendor-supplied architecture-dependent files?'
6550         . ./getfile
6551         vendorarch="$ans"
6552         vendorarchexp="$ansexp"
6553         ;;
6554 esac
6555 : Change installation prefix, if necessary.
6556 if $test X"$prefix" != X"$installprefix"; then
6557         installvendorarch=`echo $vendorarchexp | sed "s#^$prefix#$installprefix#"`
6558 else
6559         installvendorarch="$vendorarchexp"
6560 fi
6561
6562 : Final catch-all directories to search
6563 $cat <<EOM
6564
6565 Lastly, you can have perl look in other directories for extensions and
6566 modules in addition to those already specified.
6567 These directories will be searched after 
6568         $sitearch 
6569         $sitelib 
6570 EOM
6571 test X"$vendorlib" != "X" && echo '     ' $vendorlib
6572 test X"$vendorarch" != "X" && echo '    ' $vendorarch
6573 echo ' '
6574 case "$otherlibdirs" in
6575 ''|' ') dflt='none' ;;
6576 *)      dflt="$otherlibdirs" ;;
6577 esac
6578 $cat <<EOM
6579 Enter a colon-separated set of extra paths to include in perl's @INC
6580 search path, or enter 'none' for no extra paths.
6581
6582 EOM
6583
6584 rp='Colon-separated list of additional directories for perl to search?'
6585 . ./myread
6586 case "$ans" in
6587 ' '|''|none)    otherlibdirs=' ' ;;     
6588 *)      otherlibdirs="$ans" ;;
6589 esac
6590 case "$otherlibdirs" in
6591 ' ') val=$undef ;;
6592 *)      val=$define ;;
6593 esac
6594 set d_perl_otherlibdirs
6595 eval $setvar
6596
6597 : Cruising for prototypes
6598 echo " "
6599 echo "Checking out function prototypes..." >&4
6600 $cat >prototype.c <<EOCP
6601 #$i_stdlib I_STDLIB
6602 #ifdef I_STDLIB
6603 #include <stdlib.h>
6604 #endif
6605 int main(int argc, char *argv[]) {
6606         exit(0);}
6607 EOCP
6608 if $cc $ccflags -c prototype.c >prototype.out 2>&1 ; then
6609         echo "Your C compiler appears to support function prototypes."
6610         val="$define"
6611 else
6612         echo "Your C compiler doesn't seem to understand function prototypes."
6613         val="$undef"
6614 fi
6615 set prototype
6616 eval $setvar
6617 $rm -f prototype*
6618
6619 case "$prototype" in
6620 "$define") ;;
6621 *)      ansi2knr='ansi2knr'
6622         echo " "
6623         cat <<EOM >&4
6624
6625 $me:  FATAL ERROR:
6626 This version of $package can only be compiled by a compiler that 
6627 understands function prototypes.  Unfortunately, your C compiler 
6628         $cc $ccflags
6629 doesn't seem to understand them.  Sorry about that.
6630
6631 If GNU cc is available for your system, perhaps you could try that instead.  
6632
6633 Eventually, we hope to support building Perl with pre-ANSI compilers.
6634 If you would like to help in that effort, please contact <perlbug@perl.org>.
6635
6636 Aborting Configure now.
6637 EOM
6638         exit 2
6639         ;;
6640 esac
6641
6642 : determine where public executables go
6643 echo " "
6644 set dflt bin bin
6645 eval $prefixit
6646 fn=d~
6647 rp='Pathname where the public executables will reside?'
6648 . ./getfile
6649 if $test "X$ansexp" != "X$binexp"; then
6650         installbin=''
6651 fi
6652 bin="$ans"
6653 binexp="$ansexp"
6654 : Change installation prefix, if necessary.
6655 : XXX Bug? -- ignores Configure -Dinstallprefix setting.
6656 if $test X"$prefix" != X"$installprefix"; then
6657         installbin=`echo $binexp | sed "s#^$prefix#$installprefix#"`
6658 else
6659         installbin="$binexp"
6660 fi
6661
6662 echo " "
6663 case "$extras" in
6664 '') dflt='n';;
6665 *) dflt='y';;
6666 esac
6667 cat <<EOM
6668 Perl can be built with extra modules or bundles of modules which
6669 will be fetched from the CPAN and installed alongside Perl.
6670
6671 Notice that you will need access to the CPAN; either via the Internet,
6672 or a local copy, for example a CD-ROM or a local CPAN mirror.  (You will
6673 be asked later to configure the CPAN.pm module which will in turn do
6674 the installation of the rest of the extra modules or bundles.)
6675
6676 Notice also that if the modules require any external software such as
6677 libraries and headers (the libz library and the zlib.h header for the
6678 Compress::Zlib module, for example) you MUST have any such software
6679 already installed, this configuration process will NOT install such
6680 things for you.
6681
6682 If this doesn't make any sense to you, just accept the default '$dflt'.
6683 EOM
6684 rp='Install any extra modules (y or n)?'
6685 . ./myread
6686 case "$ans" in
6687 y|Y)
6688         cat <<EOM
6689
6690 Please list any extra modules or bundles to be installed from CPAN,
6691 with spaces between the names.  The names can be in any format the
6692 'install' command of CPAN.pm will understand.  (Answer 'none',
6693 without the quotes, to install no extra modules or bundles.)
6694 EOM
6695         rp='Extras?'
6696         dflt="$extras"
6697         . ./myread
6698         extras="$ans"
6699 esac
6700 case "$extras" in
6701 ''|'none')
6702         val=''
6703         $rm -f ../extras.lst
6704         ;;
6705 *)      echo "(Saving the list of extras for later...)"
6706         echo "$extras" > ../extras.lst
6707         val="'$extras'"
6708         ;;
6709 esac
6710 set extras
6711 eval $setvar
6712 echo " "
6713
6714 : determine where html pages for programs go
6715 set html1dir html1dir none
6716 eval $prefixit
6717 $cat <<EOM
6718
6719 If you wish to install html files for programs in $spackage, indicate 
6720 the appropriate directory here.  To skip installing html files,
6721 answer "none".
6722 EOM
6723 case "$html1dir" in
6724 ''|none|$undef|' ') dflt=none ;;
6725 *) dflt=$html1dir ;;
6726 esac
6727 fn=dn+~
6728 rp="Directory for the main $spackage html pages?"
6729 . ./getfile
6730 html1dir="$ans"
6731 html1direxp="$ansexp"
6732 : Use ' ' for none so value is preserved next time through Configure
6733 $test X"$html1dir" = "X" && html1dir=' '
6734 : Change installation prefix, if necessary.
6735 if $test X"$prefix" != X"$installprefix"; then
6736         installhtml1dir=`echo $html1direxp | sed "s#^$prefix#$installprefix#"`
6737 else
6738         installhtml1dir="$html1direxp"
6739 fi
6740
6741 : determine where html pages for libraries and modules go
6742 set html3dir html3dir none
6743 eval $prefixit
6744 $cat <<EOM
6745
6746 If you wish to install html files for modules associated with $spackage,
6747 indicate the appropriate directory here.  To skip installing html files,
6748 answer "none".
6749 EOM
6750 : There is no obvious default.  If they have specified html1dir, then
6751 : try to key off that, possibly changing .../html1 into .../html3.
6752 case "$html3dir" in
6753 '') html3dir=`echo "$html1dir" | $sed 's/1$/3$/'` ;;
6754 *) dflt=$html3dir ;;
6755 esac
6756 fn=dn+~
6757 rp="Directory for the $spackage module html pages?"
6758 . ./getfile
6759 html3dir="$ans"
6760 html3direxp="$ansexp"
6761 : Use ' ' for none so value is preserved next time through Configure
6762 $test X"$html3dir" = "X" && html3dir=' '
6763 : Change installation prefix, if necessary.
6764 if $test X"$prefix" != X"$installprefix"; then
6765         installhtml3dir=`echo $html3direxp | sed "s#^$prefix#$installprefix#"`
6766 else
6767         installhtml3dir="$html3direxp"
6768 fi
6769
6770 : Find perl5.005 or later.
6771 echo "Looking for a previously installed perl5.005 or later... "
6772 case "$perl5" in
6773 '')     for tdir in `echo "$binexp$path_sep$PATH" | $sed "s/$path_sep/ /g"`; do
6774                 : Check if this perl is recent and can load a simple module
6775                 if $test -x $tdir/perl$exe_ext && $tdir/perl -Mless -e 'use 5.005;' >/dev/null 2>&1; then
6776                         perl5=$tdir/perl
6777                         break;
6778                 elif $test -x $tdir/perl5$exe_ext && $tdir/perl5 -Mless -e 'use 5.005;' >/dev/null 2>&1; then
6779                         perl5=$tdir/perl5
6780                         break;
6781                 fi
6782         done
6783         ;;
6784 *)      perl5="$perl5"
6785         ;;
6786 esac
6787 case "$perl5" in
6788 '')     echo "None found.  That's ok.";;
6789 *)      echo "Using $perl5." ;;
6790 esac
6791
6792 : Determine list of previous versions to include in @INC
6793 $cat > getverlist <<EOPL
6794 #!$perl5 -w
6795 use File::Basename;
6796 \$api_versionstring = "$api_versionstring";
6797 \$version = "$version";
6798 \$stem = "$sitelib_stem";
6799 \$archname = "$archname";
6800 EOPL
6801         $cat >> getverlist <<'EOPL'
6802 # Can't have leading @ because metaconfig interprets it as a command!
6803 ;@inc_version_list=();
6804 # XXX Redo to do opendir/readdir? 
6805 if (-d $stem) {
6806     chdir($stem);
6807     ;@candidates = glob("5.*");
6808 }
6809 else {
6810     ;@candidates = ();
6811 }
6812
6813 # XXX ToDo:  These comparisons must be reworked when two-digit
6814 # subversions come along, so that 5.7.10 compares as greater than
6815 # 5.7.3!  By that time, hope that 5.6.x is sufficiently
6816 # widespread that we can use the built-in version vectors rather
6817 # than reinventing them here.  For 5.6.0, however, we must
6818 # assume this script will likely be run by 5.005_0x.  --AD 1/2000.
6819 foreach $d (@candidates) {
6820     if ($d lt $version) {
6821         if ($d ge $api_versionstring) {
6822             unshift(@inc_version_list, grep { -d } "$d/$archname", $d);
6823         }
6824         elsif ($d ge "5.005") {
6825             unshift(@inc_version_list, grep { -d } $d);
6826         }
6827     }
6828     else {
6829         # Skip newer version.  I.e. don't look in
6830         # 5.7.0 if we're installing 5.6.1.
6831     }
6832 }
6833
6834 if (@inc_version_list) {
6835     print join(' ', @inc_version_list);
6836 }
6837 else {
6838     # Blank space to preserve value for next Configure run.
6839     print " ";
6840 }
6841 EOPL
6842 chmod +x getverlist
6843 case "$inc_version_list" in
6844 '')     if test -x "$perl5$exe_ext"; then
6845                 dflt=`$perl5 getverlist`
6846         else
6847                 dflt='none'
6848         fi
6849         ;;
6850 $undef) dflt='none' ;;
6851 *)  eval dflt=\"$inc_version_list\" ;;
6852 esac
6853 case "$dflt" in
6854 ''|' ') dflt=none ;;
6855 esac
6856 case "$dflt" in
6857 5.005) dflt=none ;;
6858 esac
6859 $cat <<EOM
6860
6861 In order to ease the process of upgrading, this version of perl 
6862 can be configured to use modules built and installed with earlier 
6863 versions of perl that were installed under $prefix.  Specify here
6864 the list of earlier versions that this version of perl should check.
6865 If Configure detected no earlier versions of perl installed under
6866 $prefix, then the list will be empty.  Answer 'none' to tell perl
6867 to not search earlier versions.
6868
6869 The default should almost always be sensible, so if you're not sure,
6870 just accept the default.
6871 EOM
6872
6873 rp='List of earlier versions to include in @INC?'
6874 . ./myread
6875 case "$ans" in
6876 [Nn]one|''|' ') inc_version_list=' ' ;;
6877 *) inc_version_list="$ans" ;;
6878 esac
6879 case "$inc_version_list" in
6880 ''|' ') 
6881         inc_version_list_init='0';;
6882 *)      inc_version_list_init=`echo $inc_version_list |
6883                 $sed -e 's/^/"/' -e 's/ /","/g' -e 's/$/",0/'`
6884         ;;
6885 esac
6886 $rm -f getverlist
6887
6888 : determine whether to install perl also as /usr/bin/perl
6889
6890 echo " "
6891 if $test -d /usr/bin -a "X$installbin" != X/usr/bin; then
6892         $cat <<EOM
6893 Many scripts expect perl to be installed as /usr/bin/perl.
6894
6895 If you want to, I can install the perl you are about to compile
6896 as /usr/bin/perl (in addition to $bin/perl).
6897 EOM
6898         if test -f /usr/bin/perl; then
6899             $cat <<EOM
6900
6901 However, please note that because you already have a /usr/bin/perl,
6902 overwriting that with a new Perl would very probably cause problems.
6903 Therefore I'm assuming you don't want to do that (unless you insist).
6904
6905 EOM
6906             case "$installusrbinperl" in
6907             "$define"|[yY]*)    dflt='y';;
6908             *)                  dflt='n';;
6909             esac
6910         else
6911             $cat <<EOM
6912
6913 Since you don't have a /usr/bin/perl I'm assuming creating one is okay.
6914
6915 EOM
6916             case "$installusrbinperl" in
6917             "$undef"|[nN]*)     dflt='n';;
6918             *)                  dflt='y';;
6919             esac
6920         fi
6921         rp="Do you want to install perl as /usr/bin/perl?"
6922         . ./myread
6923         case "$ans" in
6924         [yY]*)  val="$define";;
6925         *)      val="$undef" ;;
6926         esac
6927 else
6928         val="$undef"
6929 fi
6930 set installusrbinperl
6931 eval $setvar
6932
6933 echo " "
6934 echo "Checking for GNU C Library..." >&4
6935 cat >try.c <<'EOCP'
6936 /* Find out version of GNU C library.  __GLIBC__ and __GLIBC_MINOR__
6937    alone are insufficient to distinguish different versions, such as
6938    2.0.6 and 2.0.7.  The function gnu_get_libc_version() appeared in
6939    libc version 2.1.0.      A. Dougherty,  June 3, 2002.
6940 */
6941 #include <stdio.h>
6942 int main(void)
6943 {
6944 #ifdef __GLIBC__
6945 #   ifdef __GLIBC_MINOR__
6946 #       if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
6947 #           include <gnu/libc-version.h>
6948             printf("%s\n",  gnu_get_libc_version());
6949 #       else
6950             printf("%d.%d\n",  __GLIBC__, __GLIBC_MINOR__);
6951 #       endif
6952 #   else
6953         printf("%d\n",  __GLIBC__);
6954 #   endif
6955     return 0;
6956 #else
6957     return 1;
6958 #endif
6959 }
6960 EOCP
6961 set try
6962 if eval $compile_ok && $run ./try > glibc.ver; then
6963         val="$define"
6964         gnulibc_version=`$cat glibc.ver`
6965         echo "You are using the GNU C Library version $gnulibc_version"
6966 else
6967         val="$undef"
6968         gnulibc_version=''
6969         echo "You are not using the GNU C Library"
6970 fi
6971 $rm -f try try.* glibc.ver
6972 set d_gnulibc
6973 eval $setvar
6974
6975 : see if nm is to be used to determine whether a symbol is defined or not
6976 case "$usenm" in
6977 '')
6978         dflt=''
6979         case "$d_gnulibc" in
6980         "$define")
6981                 echo " "
6982                 echo "nm probably won't work on the GNU C Library." >&4
6983                 dflt=n
6984                 ;;
6985         esac
6986         case "$dflt" in
6987         '') 
6988                 if $test "$osname" = aix -a "X$PASE" != "Xdefine" -a ! -f /lib/syscalls.exp; then
6989                         echo " "
6990                         echo "Whoops!  This is an AIX system without /lib/syscalls.exp!" >&4
6991                         echo "'nm' won't be sufficient on this sytem." >&4
6992                         dflt=n
6993                 fi
6994                 ;;
6995         esac
6996         case "$dflt" in
6997         '') dflt=`$egrep 'inlibc|csym' $rsrc/Configure | wc -l 2>/dev/null`
6998                 if $test $dflt -gt 20; then
6999                         dflt=y
7000                 else
7001                         dflt=n
7002                 fi
7003                 ;;
7004         esac
7005         ;;
7006 *)
7007         case "$usenm" in
7008         true|$define) dflt=y;;
7009         *) dflt=n;;
7010         esac
7011         ;;
7012 esac
7013 $cat <<EOM
7014
7015 I can use $nm to extract the symbols from your C libraries. This
7016 is a time consuming task which may generate huge output on the disk (up
7017 to 3 megabytes) but that should make the symbols extraction faster. The
7018 alternative is to skip the 'nm' extraction part and to compile a small
7019 test program instead to determine whether each symbol is present. If
7020 you have a fast C compiler and/or if your 'nm' output cannot be parsed,
7021 this may be the best solution.
7022
7023 You probably shouldn't let me use 'nm' if you are using the GNU C Library.
7024
7025 EOM
7026 rp="Shall I use $nm to extract C symbols from the libraries?"
7027 . ./myread
7028 case "$ans" in
7029 [Nn]*) usenm=false;;
7030 *) usenm=true;;
7031 esac
7032
7033 runnm=$usenm
7034 case "$reuseval" in
7035 true) runnm=false;;
7036 esac
7037
7038 : nm options which may be necessary
7039 case "$nm_opt" in
7040 '') if $test -f /mach_boot; then
7041                 nm_opt=''       # Mach
7042         elif $test -d /usr/ccs/lib; then
7043                 nm_opt='-p'     # Solaris (and SunOS?)
7044         elif $test -f /dgux; then
7045                 nm_opt='-p'     # DG-UX
7046         elif $test -f /lib64/rld; then
7047                 nm_opt='-p'     # 64-bit Irix
7048         else
7049                 nm_opt=''
7050         fi;;
7051 esac
7052
7053 : nm options which may be necessary for shared libraries but illegal
7054 : for archive libraries.  Thank you, Linux.
7055 case "$nm_so_opt" in
7056 '')     case "$myuname" in
7057         *linux*)
7058                 if $nm --help | $grep 'dynamic' > /dev/null 2>&1; then
7059                         nm_so_opt='--dynamic'
7060                 fi
7061                 ;;
7062         esac
7063         ;;
7064 esac
7065
7066 case "$runnm" in
7067 true)
7068 : get list of predefined functions in a handy place
7069 echo " "
7070 case "$libc" in
7071 '') libc=unknown
7072         case "$libs" in
7073         *-lc_s*) libc=`./loc libc_s$_a $libc $libpth`
7074         esac
7075         ;;
7076 esac
7077 case "$libs" in
7078 '') ;;
7079 *)  for thislib in $libs; do
7080         case "$thislib" in
7081         -lc|-lc_s)
7082                 : Handle C library specially below.
7083                 ;;
7084         -l*)
7085                 thislib=`echo $thislib | $sed -e 's/^-l//'`
7086                 if try=`./loc lib$thislib.$so.'*' X $libpth`; $test -f "$try"; then
7087                         :
7088                 elif try=`./loc lib$thislib.$so X $libpth`; $test -f "$try"; then
7089                         :
7090                 elif try=`./loc lib$thislib$_a X $libpth`; $test -f "$try"; then
7091                         :
7092                 elif try=`./loc $thislib$_a X $libpth`; $test -f "$try"; then
7093                         :
7094                 elif try=`./loc lib$thislib X $libpth`; $test -f "$try"; then
7095                         :
7096                 elif try=`./loc $thislib X $libpth`; $test -f "$try"; then
7097                         :
7098                 elif try=`./loc Slib$thislib$_a X $xlibpth`; $test -f "$try"; then
7099                         :
7100                 else
7101                         try=''
7102                 fi
7103                 libnames="$libnames $try"
7104                 ;;
7105         *) libnames="$libnames $thislib" ;;
7106         esac
7107         done
7108         ;;
7109 esac
7110 xxx=normal
7111 case "$libc" in
7112 unknown)
7113         set /lib/libc.$so
7114         for xxx in $libpth; do
7115                 $test -r $1 || set $xxx/libc.$so
7116                 : The messy sed command sorts on library version numbers.
7117                 $test -r $1 || \
7118                         set `echo blurfl; echo $xxx/libc.$so.[0-9]* | \
7119                         tr ' ' $trnl | egrep -v '\.[A-Za-z]*$' | $sed -e '
7120                                 h
7121                                 s/[0-9][0-9]*/0000&/g
7122                                 s/0*\([0-9][0-9][0-9][0-9][0-9]\)/\1/g
7123                                 G
7124                                 s/\n/ /' | \
7125                          $sort | $sed -e 's/^.* //'`
7126                 eval set \$$#
7127         done
7128         $test -r $1 || set /usr/ccs/lib/libc.$so
7129         $test -r $1 || set /lib/libsys_s$_a
7130         ;;
7131 *)
7132         set blurfl
7133         ;;
7134 esac
7135 if $test -r "$1"; then
7136         echo "Your (shared) C library seems to be in $1."
7137         libc="$1"
7138 elif $test -r /lib/libc && $test -r /lib/clib; then
7139         echo "Your C library seems to be in both /lib/clib and /lib/libc."
7140         xxx=apollo
7141         libc='/lib/clib /lib/libc'
7142         if $test -r /lib/syslib; then
7143                 echo "(Your math library is in /lib/syslib.)"
7144                 libc="$libc /lib/syslib"
7145         fi
7146 elif $test -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
7147         echo "Your C library seems to be in $libc, as you said before."
7148 elif $test -r $incpath/usr/lib/libc$_a; then
7149         libc=$incpath/usr/lib/libc$_a;
7150         echo "Your C library seems to be in $libc.  That's fine."
7151 elif $test -r /lib/libc$_a; then
7152         libc=/lib/libc$_a;
7153         echo "Your C library seems to be in $libc.  You're normal."
7154 else
7155         if tans=`./loc libc$_a blurfl/dyick $libpth`; $test -r "$tans"; then
7156                 :
7157         elif tans=`./loc libc blurfl/dyick $libpth`; $test -r "$tans"; then
7158                 libnames="$libnames "`./loc clib blurfl/dyick $libpth`
7159         elif tans=`./loc clib blurfl/dyick $libpth`; $test -r "$tans"; then
7160                 :
7161         elif tans=`./loc Slibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
7162                 :
7163         elif tans=`./loc Mlibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
7164                 :
7165         else
7166                 tans=`./loc Llibc$_a blurfl/dyick $xlibpth`
7167         fi
7168         if $test -r "$tans"; then
7169                 echo "Your C library seems to be in $tans, of all places."
7170                 libc=$tans
7171         else
7172                 libc='blurfl'
7173         fi
7174 fi
7175 if $test $xxx = apollo -o -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
7176         dflt="$libc"
7177         cat <<EOM
7178
7179 If the guess above is wrong (which it might be if you're using a strange
7180 compiler, or your machine supports multiple models), you can override it here.
7181
7182 EOM
7183 else
7184         dflt=''
7185         echo $libpth | $tr ' ' $trnl | $sort | $uniq > libpath
7186         cat >&4 <<EOM
7187 I can't seem to find your C library.  I've looked in the following places:
7188
7189 EOM
7190         $sed 's/^/      /' libpath
7191         cat <<EOM
7192
7193 None of these seems to contain your C library. I need to get its name...
7194
7195 EOM
7196 fi
7197 fn=f
7198 rp='Where is your C library?'
7199 . ./getfile
7200 libc="$ans"
7201
7202 echo " "
7203 echo $libc $libnames | $tr ' ' $trnl | $sort | $uniq > libnames
7204 set X `cat libnames`
7205 shift
7206 xxx=files
7207 case $# in 1) xxx=file; esac
7208 echo "Extracting names from the following $xxx for later perusal:" >&4
7209 echo " "
7210 $sed 's/^/      /' libnames >&4
7211 echo " "
7212 $echo $n "This may take a while...$c" >&4
7213
7214 for file in $*; do
7215         case $file in
7216         *$so*) $nm $nm_so_opt $nm_opt $file 2>/dev/null;;
7217         *) $nm $nm_opt $file 2>/dev/null;;
7218         esac
7219 done >libc.tmp
7220
7221 $echo $n ".$c"
7222 $grep fprintf libc.tmp > libc.ptf
7223 xscan='eval "<libc.ptf $com >libc.list"; $echo $n ".$c" >&4'
7224 xrun='eval "<libc.tmp $com >libc.list"; echo "done." >&4'
7225 xxx='[ADTSIW]'
7226 if com="$sed -n -e 's/__IO//' -e 's/^.* $xxx  *//p'";\
7227         eval $xscan;\
7228         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7229                 eval $xrun
7230 elif com="$sed -n -e 's/^__*//' -e 's/^\([a-zA-Z_0-9$]*\).*xtern.*/\1/p'";\
7231         eval $xscan;\
7232         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7233                 eval $xrun
7234 elif com="$sed -n -e '/|UNDEF/d' -e '/FUNC..GL/s/^.*|__*//p'";\
7235         eval $xscan;\
7236         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7237                 eval $xrun
7238 elif com="$sed -n -e 's/^.* D __*//p' -e 's/^.* D //p'";\
7239         eval $xscan;\
7240         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7241                 eval $xrun
7242 elif com="$sed -n -e 's/^_//' -e 's/^\([a-zA-Z_0-9]*\).*xtern.*text.*/\1/p'";\
7243         eval $xscan;\
7244         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7245                 eval $xrun
7246 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p'";\
7247         eval $xscan;\
7248         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7249                 eval $xrun
7250 elif com="$grep '|' | $sed -n -e '/|COMMON/d' -e '/|DATA/d' \
7251                                 -e '/ file/d' -e 's/^\([^       ]*\).*/\1/p'";\
7252         eval $xscan;\
7253         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7254                 eval $xrun
7255 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p' -e 's/^.*|FUNC |WEAK .*|//p'";\
7256         eval $xscan;\
7257         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7258                 eval $xrun
7259 elif com="$sed -n -e 's/^__//' -e '/|Undef/d' -e '/|Proc/s/ .*//p'";\
7260         eval $xscan;\
7261         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7262                 eval $xrun
7263 elif com="$sed -n -e 's/^.*|Proc .*|Text *| *//p'";\
7264         eval $xscan;\
7265         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7266                 eval $xrun
7267 elif com="$sed -n -e '/Def. Text/s/.* \([^ ]*\)\$/\1/p'";\
7268         eval $xscan;\
7269         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7270                 eval $xrun
7271 elif com="$sed -n -e 's/^[-0-9a-f ]*_\(.*\)=.*/\1/p'";\
7272         eval $xscan;\
7273         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7274                 eval $xrun
7275 elif com="$sed -n -e 's/.*\.text n\ \ \ \.//p'";\
7276         eval $xscan;\
7277         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7278                 eval $xrun
7279 elif com="sed -n -e 's/^__.*//' -e 's/[       ]*D[    ]*[0-9]*.*//p'";\
7280         eval $xscan;\
7281         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7282                 eval $xrun
7283 else
7284         $nm -p $* 2>/dev/null >libc.tmp
7285         $grep fprintf libc.tmp > libc.ptf
7286         if com="$sed -n -e 's/^.* [ADTSIW]  *_[_.]*//p' -e 's/^.* [ADTSIW] //p'";\
7287                 eval $xscan; $contains '^fprintf$' libc.list >/dev/null 2>&1
7288         then
7289                 nm_opt='-p'
7290                 eval $xrun
7291         else
7292                 echo " "
7293                 echo "$nm didn't seem to work right. Trying $ar instead..." >&4
7294                 com=''
7295                 if $ar t $libc > libc.tmp && $contains '^fprintf$' libc.tmp >/dev/null 2>&1; then
7296                         for thisname in $libnames $libc; do
7297                                 $ar t $thisname >>libc.tmp
7298                         done
7299                         $sed -e "s/\\$_o\$//" < libc.tmp > libc.list
7300                         echo "Ok." >&4
7301                 elif test "X$osname" = "Xos2" && $ar tv $libc > libc.tmp; then
7302                         # Repeat libc to extract forwarders to DLL entries too
7303                         for thisname in $libnames $libc; do
7304                                 $ar tv $thisname >>libc.tmp
7305                                 # Revision 50 of EMX has bug in $ar.
7306                                 # it will not extract forwarders to DLL entries
7307                                 # Use emximp which will extract exactly them.
7308                                 emximp -o tmp.imp $thisname \
7309                                     2>/dev/null && \
7310                                     $sed -e 's/^\([_a-zA-Z0-9]*\) .*$/\1/p' \
7311                                     < tmp.imp >>libc.tmp
7312                                 $rm tmp.imp
7313                         done
7314                         $sed -e "s/\\$_o\$//" -e 's/^ \+//' < libc.tmp > libc.list
7315                         echo "Ok." >&4
7316                 else
7317                         echo "$ar didn't seem to work right." >&4
7318                         echo "Maybe this is a Cray...trying bld instead..." >&4
7319                         if bld t $libc | $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" > libc.list
7320                         then
7321                                 for thisname in $libnames; do
7322                                         bld t $libnames | \
7323                                         $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" >>libc.list
7324                                         $ar t $thisname >>libc.tmp
7325                                 done
7326                                 echo "Ok." >&4
7327                         else
7328                                 echo "That didn't work either.  Giving up." >&4
7329                                 exit 1
7330                         fi
7331                 fi
7332         fi
7333 fi
7334 nm_extract="$com"
7335 case "$PASE" in
7336 define)
7337     echo " "
7338     echo "Since you are compiling for PASE, extracting more symbols from libc.a ...">&4
7339     dump -Tv /lib/libc.a | awk '$7 == "/unix" {print $5 " " $8}' | grep "^SV" | awk '{print $2}' >> libc.list
7340     ;;
7341 *)  if $test -f /lib/syscalls.exp; then
7342         echo " "
7343         echo "Also extracting names from /lib/syscalls.exp for good ole AIX..." >&4
7344         $sed -n 's/^\([^        ]*\)[   ]*syscall[0-9]*[        ]*$/\1/p' /lib/syscalls.exp >>libc.list
7345     fi
7346     ;;
7347 esac
7348 ;;
7349 esac
7350 $rm -f libnames libpath
7351
7352 : see if dld is available
7353 set dld.h i_dld
7354 eval $inhdr
7355
7356 : is a C symbol defined?
7357 csym='tlook=$1;
7358 case "$3" in
7359 -v) tf=libc.tmp; tdc="";;
7360 -a) tf=libc.tmp; tdc="[]";;
7361 *) tlook="^$1\$"; tf=libc.list; tdc="()";;
7362 esac;
7363 tx=yes;
7364 case "$reuseval-$4" in
7365 true-) ;;
7366 true-*) tx=no; eval "tval=\$$4"; case "$tval" in "") tx=yes;; esac;;
7367 esac;
7368 case "$tx" in
7369 yes)
7370         tval=false;
7371         if $test "$runnm" = true; then
7372                 if $contains $tlook $tf >/dev/null 2>&1; then
7373                         tval=true;
7374                 elif $test "$mistrustnm" = compile -o "$mistrustnm" = run; then
7375                         echo "void *(*(p()))$tdc { extern void *$1$tdc; return &$1; } int main() { if(p()) return(0); else return(1); }"> try.c;
7376                         $cc -o try $optimize $ccflags $ldflags try.c >/dev/null 2>&1 $libs && tval=true;
7377                         $test "$mistrustnm" = run -a -x try && { $run ./try$_exe >/dev/null 2>&1 || tval=false; };
7378                         $rm -f try$_exe try.c core core.* try.core;
7379                 fi;
7380         else
7381                 echo "void *(*(p()))$tdc { extern void *$1$tdc; return &$1; } int main() { if(p()) return(0); else return(1); }"> try.c;
7382                 $cc -o try $optimize $ccflags $ldflags try.c $libs >/dev/null 2>&1 && tval=true;
7383                 $rm -f try$_exe try.c;
7384         fi;
7385         ;;
7386 *)
7387         case "$tval" in
7388         $define) tval=true;;
7389         *) tval=false;;
7390         esac;
7391         ;;
7392 esac;
7393 eval "$2=$tval"'
7394
7395 : define an is-in-libc? function
7396 inlibc='echo " "; td=$define; tu=$undef;
7397 sym=$1; var=$2; eval "was=\$$2";
7398 tx=yes;
7399 case "$reuseval$was" in
7400 true) ;;
7401 true*) tx=no;;
7402 esac;
7403 case "$tx" in
7404 yes)
7405         set $sym tres -f;
7406         eval $csym;
7407         case "$tres" in
7408         true)
7409                 echo "$sym() found." >&4;
7410                 case "$was" in $undef) . ./whoa; esac; eval "$var=\$td";;
7411         *)
7412                 echo "$sym() NOT found." >&4;
7413                 case "$was" in $define) . ./whoa; esac; eval "$var=\$tu";;
7414         esac;;
7415 *)
7416         case "$was" in
7417         $define) echo "$sym() found." >&4;;
7418         *) echo "$sym() NOT found." >&4;;
7419         esac;;
7420 esac'
7421
7422 : see if dlopen exists
7423 xxx_runnm="$runnm"
7424 runnm=false
7425 set dlopen d_dlopen
7426 eval $inlibc
7427 runnm="$xxx_runnm"
7428
7429 : determine which dynamic loading, if any, to compile in
7430 echo " "
7431 dldir="ext/DynaLoader"
7432 case "$usedl" in
7433 $define|y|true)
7434         dflt='y'
7435         usedl="$define"
7436         ;;
7437 $undef|n|false)
7438         dflt='n'
7439         usedl="$undef"
7440         ;;
7441 *) 
7442         dflt='n'
7443         case "$d_dlopen" in
7444             $define) dflt='y' ;;
7445         esac
7446         case "$i_dld" in
7447             $define) dflt='y' ;;
7448         esac
7449         : Does a dl_xxx.xs file exist for this operating system
7450         $test -f $rsrc/$dldir/dl_${osname}.xs && dflt='y'
7451         ;;
7452 esac
7453 rp="Do you wish to use dynamic loading?"
7454 . ./myread
7455 usedl="$ans"
7456 case "$ans" in
7457 y*) usedl="$define"
7458         case "$dlsrc" in
7459         '')
7460                 if $test -f $rsrc/$dldir/dl_${osname}.xs ; then
7461                         dflt="$dldir/dl_${osname}.xs"
7462                 elif $test "$d_dlopen" = "$define" ; then
7463                         dflt="$dldir/dl_dlopen.xs"
7464                 elif $test "$i_dld" = "$define" ; then
7465                         dflt="$dldir/dl_dld.xs"
7466                 else
7467                         dflt=''
7468                 fi
7469                 ;;
7470         *)      dflt="$dldir/$dlsrc"
7471                 ;;
7472         esac
7473     echo "The following dynamic loading files are available:"
7474         : Can not go over to $dldir because getfile has path hard-coded in.
7475         tdir=`pwd`; cd "$rsrc"; $ls -C $dldir/dl*.xs; cd "$tdir"
7476         rp="Source file to use for dynamic loading"
7477         fn="fne"
7478         gfpth="$src"
7479         . ./getfile
7480         usedl="$define"
7481         : emulate basename
7482         dlsrc=`echo $ans | $sed -e 's%.*/\([^/]*\)$%\1%'`
7483
7484         $cat << EOM
7485
7486 Some systems may require passing special flags to $cc -c to
7487 compile modules that will be used to create a shared library.
7488 To use no flags, say "none".
7489
7490 EOM
7491     case "$cccdlflags" in
7492     '') case "$gccversion" in
7493                 '') case "$osname" in
7494                         hpux)   dflt='+z' ;;
7495                         next)   dflt='none' ;;
7496                         irix*)  dflt='-KPIC' ;;
7497                         svr4*|esix*|solaris|nonstopux) dflt='-KPIC' ;;
7498                         sunos)  dflt='-pic' ;;
7499                         *)      dflt='none' ;;
7500                     esac
7501                         ;;
7502                 *)  case "$osname" in
7503                         darwin) dflt='none' ;;
7504                         svr4*|esix*|solaris|nonstopux) dflt='-fPIC' ;;
7505                         *)      dflt='-fpic' ;;
7506                     esac ;;
7507             esac ;;
7508         ' ') dflt='none' ;;
7509     *)  dflt="$cccdlflags" ;;
7510     esac
7511     rp="Any special flags to pass to $cc -c to compile shared library modules?"
7512     . ./myread
7513     case "$ans" in
7514     none) cccdlflags=' ' ;;
7515     *) cccdlflags="$ans" ;;
7516     esac
7517
7518     cat << EOM
7519
7520 Some systems use ld to create libraries that can be dynamically loaded,
7521 while other systems (such as those using ELF) use $cc.
7522
7523 EOM
7524         case "$ld" in
7525         '')     $cat >try.c <<EOM
7526 /* Test for whether ELF binaries are produced */
7527 #include <fcntl.h>
7528 #$i_stdlib I_STDLIB
7529 #ifdef I_STDLIB
7530 #include <stdlib.h>
7531 #endif
7532 int main() {
7533         char b[4];
7534         int i = open("a.out",O_RDONLY);
7535         if(i == -1) 
7536                 exit(1); /* fail */
7537         if(read(i,b,4)==4 && b[0]==127 && b[1]=='E' && b[2]=='L' && b[3]=='F')
7538                 exit(0); /* succeed (yes, it's ELF) */
7539         else
7540                 exit(1); /* fail */
7541 }
7542 EOM
7543                 if $cc $ccflags $ldflags try.c >/dev/null 2>&1 && $run ./a.out; then
7544                         cat <<EOM
7545 You appear to have ELF support.  I'll use $cc to build dynamic libraries.
7546 EOM
7547                         dflt="$cc"
7548                 else
7549                         echo "I'll use ld to build dynamic libraries."
7550                         dflt='ld'
7551                 fi
7552                 rm -f try.c a.out
7553                 ;;
7554         *)      dflt="$ld"
7555                 ;;
7556         esac
7557
7558     rp="What command should be used to create dynamic libraries?"
7559     . ./myread
7560         ld="$ans"
7561
7562     cat << EOM
7563
7564 Some systems may require passing special flags to $ld to create a
7565 library that can be dynamically loaded.  If your ld flags include
7566 -L/other/path options to locate libraries outside your loader's normal
7567 search path, you may need to specify those -L options here as well.  To
7568 use no flags, say "none".
7569
7570 EOM
7571     case "$lddlflags" in
7572     '') case "$osname" in
7573                         beos) dflt='-nostart' ;;
7574                         hpux) dflt='-b';
7575                               case "$gccversion" in
7576                               '') dflt="$dflt +vnocompatwarnings" ;;
7577                               esac
7578                               ;;        
7579                         linux|irix*)    dflt='-shared' ;;
7580                         next)  dflt='none' ;;
7581                         solaris) dflt='-G' ;;
7582                         sunos) dflt='-assert nodefinitions' ;;
7583                         svr4*|esix*|nonstopux) dflt="-G $ldflags" ;;
7584                 *)     dflt='none' ;;
7585                         esac
7586                         ;;
7587     *) dflt="$lddlflags" ;;
7588     esac
7589
7590         : Try to guess additional flags to pick up local libraries.
7591         : Be careful not to append to a plain 'none'
7592         case "$dflt" in
7593         none) dflt='' ;;
7594         esac
7595         for thisflag in $ldflags; do
7596                 case "$thisflag" in
7597                 -L*|-R*|-Wl,-R*)
7598                         case " $dflt " in
7599                         *" $thisflag "*) ;;
7600                         *) dflt="$dflt $thisflag" ;;
7601                         esac
7602                         ;;
7603                 esac
7604         done
7605
7606         case "$dflt" in
7607         ''|' ') dflt='none' ;;
7608         esac
7609
7610     rp="Any special flags to pass to $ld to create a dynamically loaded library?"
7611     . ./myread
7612     case "$ans" in
7613     none) lddlflags=' ' ;;
7614     *) lddlflags="$ans" ;;
7615     esac
7616
7617         cat <<EOM
7618
7619 Some systems may require passing special flags to $cc to indicate that
7620 the resulting executable will use dynamic linking.  To use no flags,
7621 say "none".
7622
7623 EOM
7624     case "$ccdlflags" in
7625     '') case "$osname" in
7626                 hpux)   dflt='-Wl,-E' ;;
7627                 linux)  dflt='-rdynamic' ;;
7628                 next)   dflt='none' ;;
7629                 sunos)  dflt='none' ;;
7630                 *)      dflt='none' ;;
7631             esac ;;
7632     ' ')  dflt='none' ;;
7633     *)  dflt="$ccdlflags" ;;
7634     esac
7635     rp="Any special flags to pass to $cc to use dynamic linking?"
7636     . ./myread
7637     case "$ans" in
7638     none) ccdlflags=' ' ;;
7639     *) ccdlflags="$ans" ;;
7640     esac
7641     ;;
7642 *)  usedl="$undef"
7643         ld='ld'
7644     dlsrc='dl_none.xs'
7645     lddlflags=''
7646     ccdlflags=''
7647     ;;
7648 esac
7649
7650 also=''
7651 case "$usedl" in
7652 $undef)
7653         # No dynamic loading being used, so don't bother even to prompt.
7654         useshrplib='false'
7655         ;;
7656 *)      case "$useshrplib" in
7657         '')     case "$osname" in
7658                 svr4*|nonstopux|dgux|dynixptx|esix|powerux|beos|cygwin*)
7659                         dflt=y
7660                         also='Building a shared libperl is required for dynamic loading to work on your system.'
7661                         ;;
7662                 next*)
7663                         case "$osvers" in
7664                         4*)     dflt=y
7665                                 also='Building a shared libperl is needed for MAB support.'
7666                                 ;;
7667                         *)      dflt=n
7668                                 ;;
7669                         esac
7670                         ;;
7671                 *)      dflt=n
7672                         ;;
7673                 esac
7674                 ;;
7675         $define|true|[Yy]*)
7676                 dflt=y
7677                 ;;
7678         *)      dflt=n
7679                 ;;
7680         esac
7681         $cat << EOM
7682
7683 The perl executable is normally obtained by linking perlmain.c with
7684 libperl${_a}, any static extensions (usually just DynaLoader), and
7685 any other libraries needed on this system (such as -lm, etc.).  Since
7686 your system supports dynamic loading, it is probably possible to build
7687 a shared libperl.$so.  If you will have more than one executable linked
7688 to libperl.$so, this will significantly reduce the size of each
7689 executable, but it may have a noticeable affect on performance.  The
7690 default is probably sensible for your system.
7691 $also
7692
7693 EOM
7694         rp="Build a shared libperl.$so (y/n)"
7695         . ./myread
7696         case "$ans" in
7697         true|$define|[Yy]*)
7698                 useshrplib='true'  ;;
7699         *)      useshrplib='false' ;;
7700         esac
7701         ;;
7702 esac
7703
7704 case "$useshrplib" in
7705 true)
7706         case "$libperl" in
7707         '')
7708                 # Figure out a good name for libperl.so.  Since it gets stored in
7709                 # a version-specific architecture-dependent library, the version
7710                 # number isn't really that important, except for making cc/ld happy.
7711                 #
7712                 # A name such as libperl.so.3.1
7713                 majmin="libperl.$so.$patchlevel.$subversion"
7714                 # A name such as libperl.so.301
7715                 majonly=`echo $patchlevel $subversion |
7716                         $awk '{printf "%d%02d", $1, $2}'`
7717                 majonly=libperl.$so.$majonly
7718                 # I'd prefer to keep the os-specific stuff here to a minimum, and
7719                 # rely on figuring it out from the naming of libc.
7720                 case "${osname}${osvers}" in
7721                 next4*)
7722                         dflt=libperl.5.$so
7723                         # XXX How handle the --version stuff for MAB?
7724                         ;;
7725                 linux*)  # ld won't link with a bare -lperl otherwise.
7726                         dflt=libperl.$so
7727                         ;;
7728                 cygwin*) # ld links against an importlib
7729                         dflt=libperl$lib_ext
7730                         ;;
7731                 *)      # Try to guess based on whether libc has major.minor.
7732                         case "$libc" in
7733                         *libc.$so.[0-9]*.[0-9]*) dflt=$majmin ;;
7734                         *libc.$so.[0-9]*) dflt=$majonly ;;
7735                         *)      dflt=libperl.$so ;;
7736                         esac
7737                         ;;
7738                 esac
7739                 ;;
7740         *)      dflt=$libperl
7741                 ;;
7742         esac
7743         cat << EOM
7744
7745 I need to select a good name for the shared libperl.  If your system uses
7746 library names with major and minor numbers, then you might want something
7747 like $majmin.  Alternatively, if your system uses a single version
7748 number for shared libraries, then you might want to use $majonly.
7749 Or, your system might be quite happy with a simple libperl.$so.
7750
7751 Since the shared libperl will get installed into a version-specific
7752 architecture-dependent directory, the version number of the shared perl
7753 library probably isn't important, so the default should be o.k.
7754
7755 EOM
7756         rp='What name do you want to give to the shared libperl?'
7757         . ./myread
7758         libperl=$ans
7759         echo "Ok, I'll use $libperl"
7760         ;;
7761 *)
7762         libperl="libperl${_a}"
7763         ;;
7764 esac
7765
7766 # Detect old use of shrpdir via undocumented Configure -Dshrpdir
7767 case "$shrpdir" in
7768 '') ;;
7769 *)      $cat >&4 <<EOM
7770 WARNING:  Use of the shrpdir variable for the installation location of
7771 the shared $libperl is not supported.  It was never documented and
7772 will not work in this version.  Let me (perlbug@perl.org)
7773 know of any problems this may cause.
7774
7775 EOM
7776         case "$shrpdir" in
7777         "$archlibexp/CORE")
7778                 $cat >&4 <<EOM
7779 But your current setting of $shrpdir is
7780 the default anyway, so it's harmless.
7781 EOM
7782                 ;;
7783         *)
7784                 $cat >&4 <<EOM
7785 Further, your current attempted setting of $shrpdir
7786 conflicts with the value of $archlibexp/CORE
7787 that installperl will use.
7788 EOM
7789                 ;;
7790         esac
7791         ;;
7792 esac
7793
7794 # How will the perl executable find the installed shared $libperl?
7795 # Add $xxx to ccdlflags.
7796 # If we can't figure out a command-line option, use $shrpenv to
7797 # set env LD_RUN_PATH.  The main perl makefile uses this.
7798 shrpdir=$archlibexp/CORE
7799 xxx=''
7800 tmp_shrpenv=''
7801 if "$useshrplib"; then
7802     case "$osname" in 
7803         aix)
7804                 # We'll set it in Makefile.SH...
7805                 ;;
7806         solaris)
7807                 xxx="-R $shrpdir"
7808                 ;;
7809         freebsd|netbsd|openbsd)
7810                 xxx="-Wl,-R$shrpdir"
7811                 ;;
7812         bsdos|linux|irix*|dec_osf)
7813                 xxx="-Wl,-rpath,$shrpdir"
7814                 ;;
7815         next)
7816                 # next doesn't like the default...
7817                 ;;
7818         beos)
7819                 # beos doesn't like the default, either.
7820                 ;;
7821         hpux*)
7822                 # hpux doesn't like the default, either.
7823                 tmp_shrpenv="env LDOPTS=\"+s +b${shrpdir}\""
7824                 ;;
7825         *)
7826                 tmp_shrpenv="env LD_RUN_PATH=$shrpdir"
7827                 ;;
7828         esac
7829         case "$xxx" in
7830         '') ;;
7831         *)      
7832                 # Only add $xxx if it isn't already in ccdlflags.
7833                 case " $ccdlflags " in
7834                 *" $xxx "*)     ;;
7835                 *)      ccdlflags="$ccdlflags $xxx"
7836                         cat <<EOM >&4
7837
7838 Adding $xxx to the flags
7839 passed to $ld so that the perl executable will find the 
7840 installed shared $libperl.
7841
7842 EOM
7843                         ;;
7844                 esac
7845                 ;;
7846         esac
7847 fi
7848 # Fix ccdlflags in AIX for building external extensions.
7849 # (For building Perl itself bare -bE:perl.exp is needed,
7850 #  Makefile.SH takes care of this.)
7851 case "$osname" in
7852 aix) ccdlflags="$ccdlflags -bE:$installarchlib/CORE/perl.exp" ;;
7853 esac
7854 # Respect a hint or command-line value.
7855 case "$shrpenv" in
7856 '') shrpenv="$tmp_shrpenv" ;;
7857 esac
7858 case "$ldlibpthname" in
7859 '')     ldlibpthname=LD_LIBRARY_PATH ;;
7860 none)   ldlibpthname='' ;;
7861 esac
7862
7863 : determine where manual pages are on this system
7864 echo " "
7865 case "$sysman" in
7866 '') 
7867         syspath='/usr/share/man/man1 /usr/man/man1'
7868         syspath="$syspath /usr/man/mann /usr/man/manl /usr/man/local/man1"
7869         syspath="$syspath /usr/man/u_man/man1"
7870         syspath="$syspath /usr/catman/u_man/man1 /usr/man/l_man/man1"
7871         syspath="$syspath /usr/local/man/u_man/man1 /usr/local/man/l_man/man1"
7872         syspath="$syspath /usr/man/man.L /local/man/man1 /usr/local/man/man1"
7873         sysman=`./loc . /usr/man/man1 $syspath`
7874         ;;
7875 esac
7876 if $test -d "$sysman"; then
7877         echo "System manual is in $sysman." >&4
7878 else
7879         echo "Could not find manual pages in source form." >&4
7880 fi
7881
7882 : determine where manual pages go
7883 set man1dir man1dir none
7884 eval $prefixit
7885 $cat <<EOM
7886
7887 $spackage has manual pages available in source form.
7888 EOM
7889 case "$nroff" in
7890 nroff)
7891         echo "However, you don't have nroff, so they're probably useless to you."
7892         case "$man1dir" in
7893         '') man1dir="none";;
7894         esac;;
7895 esac
7896 echo "If you don't want the manual sources installed, answer 'none'."
7897 case "$man1dir" in
7898 ' ') dflt=none
7899         ;;
7900 '')
7901         lookpath="$prefixexp/share/man/man1"
7902         lookpath="$lookpath $prefixexp/man/man1 $prefixexp/man/l_man/man1"
7903         lookpath="$lookpath $prefixexp/man/p_man/man1"
7904         lookpath="$lookpath $prefixexp/man/u_man/man1"
7905         lookpath="$lookpath $prefixexp/man/man.1"
7906         case "$sysman" in
7907         */?_man*)       dflt=`./loc . $prefixexp/l_man/man1 $lookpath` ;;
7908         *)      dflt=`./loc . $prefixexp/man/man1 $lookpath` ;;
7909         esac
7910         set dflt
7911         eval $prefixup
7912         ;;
7913 *)  dflt="$man1dir"
7914         ;;
7915 esac
7916 echo " "
7917 fn=dn+~
7918 rp="Where do the main $spackage manual pages (source) go?"
7919 . ./getfile
7920 if $test "X$man1direxp" != "X$ansexp"; then
7921         installman1dir=''
7922 fi
7923 man1dir="$ans"
7924 man1direxp="$ansexp"
7925 case "$man1dir" in
7926 '')     man1dir=' '
7927         installman1dir='';;
7928 esac
7929
7930 : Change installation prefix, if necessary.
7931 if $test X"$prefix" != X"$installprefix"; then
7932         installman1dir=`echo $man1direxp | $sed "s#^$prefix#$installprefix#"`
7933 else
7934         installman1dir="$man1direxp"
7935 fi
7936
7937 : What suffix to use on installed man pages
7938
7939 case "$man1dir" in
7940 ' ')
7941         man1ext='0'
7942         ;;
7943 *)
7944         rp="What suffix should be used for the main $spackage man pages?"
7945         case "$man1ext" in
7946         '')     case "$man1dir" in
7947                 *1)  dflt=1 ;;
7948                 *1p) dflt=1p ;;
7949                 *1pm) dflt=1pm ;;
7950                 *l) dflt=l;;
7951                 *n) dflt=n;;
7952                 *o) dflt=o;;
7953                 *p) dflt=p;;
7954                 *C) dflt=C;;
7955                 *L) dflt=L;;
7956                 *L1) dflt=L1;;
7957                 *) dflt=1;;
7958                 esac
7959                 ;;
7960         *)      dflt="$man1ext";;
7961         esac
7962         . ./myread
7963         man1ext="$ans"
7964         ;;
7965 esac
7966
7967 : see if we can have long filenames
7968 echo " "
7969 first=123456789abcdef
7970 $rm -f $first
7971 if (echo hi >$first) 2>/dev/null; then
7972         if $test -f 123456789abcde; then
7973                 echo 'You cannot have filenames longer than 14 characters.  Sigh.' >&4
7974                 val="$undef"
7975         else
7976                 echo 'You can have filenames longer than 14 characters.'>&4
7977                 val="$define"
7978         fi
7979 else
7980         $cat <<'EOM'
7981 You can't have filenames longer than 14 chars.
7982 You can't even think about them!
7983 EOM
7984         val="$undef"
7985 fi 
7986 set d_flexfnam
7987 eval $setvar
7988 $rm -rf 123456789abcde*
7989
7990 : determine where library module manual pages go
7991 set man3dir man3dir none
7992 eval $prefixit
7993 $cat <<EOM
7994
7995 $spackage has manual pages for many of the library modules.
7996 EOM
7997
7998 case "$nroff" in
7999 nroff)
8000         $cat <<'EOM'
8001 However, you don't have nroff, so they're probably useless to you.
8002 EOM
8003         case "$man3dir" in
8004         '') man3dir="none";;
8005         esac;;
8006 esac
8007
8008 case "$d_flexfnam" in
8009 undef)
8010         $cat <<'EOM'
8011 However, your system can't handle the long file names like File::Basename.3. 
8012 EOM
8013         case "$man3dir" in
8014         '') man3dir="none";;
8015         esac;;
8016 esac
8017
8018 echo "If you don't want the manual sources installed, answer 'none'."
8019 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
8020 case "$man3dir" in
8021 '')     dflt=`echo "$man1dir" | $sed -e 's/man1/man3/g' -e 's/man\.1/man\.3/g'`
8022         if $test -d "$privlib/man/man3"; then
8023                 cat <<EOM >&4
8024
8025 WARNING:  Previous versions of perl installed man3 pages into
8026 $privlib/man/man3.  This version will suggest a 
8027 new default of $dflt.  
8028 EOM
8029                 tdflt=$dflt
8030                 dflt='n'
8031                 rp='Do you wish to preserve the old behavior?(y/n)'
8032                 . ./myread
8033                 case "$ans" in
8034                 y*) dflt="$privlib/man/man3" ;;
8035                 *)  dflt=$tdflt ;;
8036                 esac
8037     fi
8038         ;;
8039 *)      dflt="$man3dir" ;;
8040 esac
8041 case "$dflt" in
8042 ' ') dflt=none ;;
8043 esac
8044 echo " "
8045 fn=dn+~
8046 rp="Where do the $package library man pages (source) go?"
8047 . ./getfile
8048 man3dir="$ans"
8049 man3direxp="$ansexp"
8050 case "$man3dir" in
8051 '')     man3dir=' '
8052         installman3dir='';;
8053 esac
8054
8055 : Change installation prefix, if necessary.
8056 if $test X"$prefix" != X"$installprefix"; then
8057         installman3dir=`echo $man3direxp | $sed "s#^$prefix#$installprefix#"`
8058 else
8059         installman3dir="$man3direxp"
8060 fi
8061
8062 : What suffix to use on installed man pages
8063 case "$man3dir" in
8064 ' ')
8065         man3ext='0'
8066         ;;
8067 *)
8068         rp="What suffix should be used for the $package library man pages?"
8069         case "$man3ext" in
8070         '')     case "$man3dir" in
8071                 *3)  dflt=3 ;;
8072                 *3p) dflt=3p ;;
8073                 *3pm) dflt=3pm ;;
8074                 *l) dflt=l;;
8075                 *n) dflt=n;;
8076                 *o) dflt=o;;
8077                 *p) dflt=p;;
8078                 *C) dflt=C;;
8079                 *L) dflt=L;;
8080                 *L3) dflt=L3;;
8081                 *) dflt=3;;
8082                 esac
8083                 ;;
8084         *)      dflt="$man3ext";;
8085         esac
8086         . ./myread
8087         man3ext="$ans"
8088         ;;
8089 esac
8090
8091 : see if we have to deal with yellow pages, now NIS.
8092 if $test -d /usr/etc/yp || $test -d /etc/yp || $test -d /usr/lib/yp; then
8093         if $test -f /usr/etc/nibindd; then
8094                 echo " "
8095                 echo "I'm fairly confident you're on a NeXT."
8096                 echo " "
8097                 rp='Do you get the hosts file via NetInfo?'
8098                 dflt=y
8099                 case "$hostcat" in
8100                 nidump*) ;;
8101                 '') ;;
8102                 *) dflt=n;;
8103                 esac
8104                 . ./myread
8105                 case "$ans" in
8106                 y*) hostcat='nidump hosts .';;
8107                 *)      case "$hostcat" in
8108                         nidump*) hostcat='';;
8109                         esac
8110                         ;;
8111                 esac
8112         fi
8113         case "$hostcat" in
8114         nidump*) ;;
8115         *)
8116                 case "$hostcat" in
8117                 *ypcat*) dflt=y;;
8118                 '') if $contains '^\+' /etc/passwd >/dev/null 2>&1; then
8119                                 dflt=y
8120                         else
8121                                 dflt=n
8122                         fi;;
8123                 *) dflt=n;;
8124                 esac
8125                 echo " "
8126                 rp='Are you getting the hosts file via yellow pages?'
8127                 . ./myread
8128                 case "$ans" in
8129                 y*) hostcat='ypcat hosts';;
8130                 *) hostcat='cat /etc/hosts';;
8131                 esac
8132                 ;;
8133         esac
8134 fi
8135 case "$hostcat" in
8136 '') test -f /etc/hosts && hostcat='cat /etc/hosts';;
8137 esac
8138 case "$groupcat" in
8139 '') test -f /etc/group && groupcat='cat /etc/group';;
8140 esac
8141 case "$passcat" in
8142 '') test -f /etc/passwd && passcat='cat /etc/passwd';;
8143 esac
8144
8145 : now get the host name
8146 echo " "
8147 echo "Figuring out host name..." >&4
8148 case "$myhostname" in
8149 '') cont=true
8150         echo 'Maybe "hostname" will work...'
8151         if tans=`sh -c hostname 2>&1` ; then
8152                 myhostname=$tans
8153                 phostname=hostname
8154                 cont=''
8155         fi
8156         ;;
8157 *) cont='';;
8158 esac
8159 if $test "$cont"; then
8160         if ./xenix; then
8161                 echo 'Oh, dear.  Maybe "/etc/systemid" is the key...'
8162                 if tans=`cat /etc/systemid 2>&1` ; then
8163                         myhostname=$tans
8164                         phostname='cat /etc/systemid'
8165                         echo "Whadyaknow.  Xenix always was a bit strange..."
8166                         cont=''
8167                 fi
8168         elif $test -r /etc/systemid; then
8169                 echo "(What is a non-Xenix system doing with /etc/systemid?)"
8170         fi
8171 fi
8172 if $test "$cont"; then
8173         echo 'No, maybe "uuname -l" will work...'
8174         if tans=`sh -c 'uuname -l' 2>&1` ; then
8175                 myhostname=$tans
8176                 phostname='uuname -l'
8177         else
8178                 echo 'Strange.  Maybe "uname -n" will work...'
8179                 if tans=`sh -c 'uname -n' 2>&1` ; then
8180                         myhostname=$tans
8181                         phostname='uname -n'
8182                 else
8183                         echo 'Oh well, maybe I can mine it out of whoami.h...'
8184                         if tans=`sh -c $contains' sysname $usrinc/whoami.h' 2>&1` ; then
8185                                 myhostname=`echo "$tans" | $sed 's/^.*"\(.*\)"/\1/'`
8186                                 phostname="sed -n -e '"'/sysname/s/^.*\"\\(.*\\)\"/\1/{'"' -e p -e q -e '}' <$usrinc/whoami.h"
8187                         else
8188                                 case "$myhostname" in
8189                                 '') echo "Does this machine have an identity crisis or something?"
8190                                         phostname='';;
8191                                 *)
8192                                         echo "Well, you said $myhostname before..."
8193                                         phostname='echo $myhostname';;
8194                                 esac
8195                         fi
8196                 fi
8197         fi
8198 fi
8199 case "$myhostname" in
8200 '') myhostname=noname ;;
8201 esac
8202 : you do not want to know about this
8203 set $myhostname
8204 myhostname=$1
8205
8206 : verify guess
8207 if $test "$myhostname" ; then
8208         dflt=y
8209         rp='Your host name appears to be "'$myhostname'".'" Right?"
8210         . ./myread
8211         case "$ans" in
8212         y*) ;;
8213         *) myhostname='';;
8214         esac
8215 fi
8216
8217 : bad guess or no guess
8218 while $test "X$myhostname" = X ; do
8219         dflt=''
8220         rp="Please type the (one word) name of your host:"
8221         . ./myread
8222         myhostname="$ans"
8223 done
8224
8225 : translate upper to lower if necessary
8226 case "$myhostname" in
8227 *[A-Z]*)
8228         echo "(Normalizing case in your host name)"
8229         myhostname=`echo $myhostname | ./tr '[A-Z]' '[a-z]'`
8230         ;;
8231 esac
8232
8233 case "$myhostname" in
8234 *.*)
8235         dflt=`expr "X$myhostname" : "X[^.]*\(\..*\)"`
8236         myhostname=`expr "X$myhostname" : "X\([^.]*\)\."`
8237         echo "(Trimming domain name from host name--host name is now $myhostname)"
8238         ;;
8239 *) case "$mydomain" in
8240         '')
8241                 {
8242                         test "X$hostcat" = "Xypcat hosts" &&
8243                         ypmatch "$myhostname" hosts 2>/dev/null |\
8244                                 $sed -e 's/[     ]*#.*//; s/$/ /' > hosts && \
8245                         $test -s hosts
8246                 } || {
8247                         test "X$hostcat" != "X" &&
8248                         $hostcat | $sed -n -e "s/[       ]*#.*//; s/\$/ /
8249                                         /[       ]$myhostname[  . ]/p" > hosts
8250                 }
8251                 tmp_re="[       . ]"
8252                 if $test -f hosts; then
8253                         $test x`$awk "/[0-9].*[  ]$myhostname$tmp_re/ { sum++ }
8254                              END { print sum }" hosts` = x1 || tmp_re="[         ]"
8255                         dflt=.`$awk "/[0-9].*[   ]$myhostname$tmp_re/ {for(i=2; i<=NF;i++) print \\\$i}" \
8256                                 hosts | $sort | $uniq | \
8257                                 $sed -n -e "s/$myhostname\.\([-a-zA-Z0-9_.]\)/\1/p"`
8258                         case `$echo X$dflt` in
8259                         X*\ *)  echo "(Several hosts in the database matched hostname)"
8260                                 dflt=.
8261                                 ;;
8262                         X.) echo "(You do not have fully-qualified names in the hosts database)"
8263                                 ;;
8264                         esac
8265                 else
8266                         echo "(I cannot locate a hosts database anywhere)"
8267                         dflt=.
8268                 fi
8269                 case "$dflt" in
8270                 .)
8271                         tans=`./loc resolv.conf X /etc /usr/etc`
8272                         if $test -f "$tans"; then
8273                                 echo "(Attempting domain name extraction from $tans)"
8274                                 dflt=.`$sed -n -e 's/   / /g' \
8275                                   -e 's/^search  *\([^ ]*\).*/\1/p' $tans \
8276                                   | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8277                                 case "$dflt" in
8278                                 .) dflt=.`$sed -n -e 's/        / /g' \
8279                                      -e 's/^domain  *\([^ ]*\).*/\1/p' $tans \
8280                                      | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8281                                         ;;
8282                                 esac
8283                         fi
8284                         ;;
8285                 esac
8286                 case "$dflt" in
8287                 .) echo "(No help from resolv.conf either -- attempting clever guess)"
8288                         dflt=.`sh -c domainname 2>/dev/null`
8289                         case "$dflt" in
8290                         '') dflt='.';;
8291                         .nis.*|.yp.*|.main.*) dflt=`echo $dflt | $sed -e 's/^\.[^.]*//'`;;
8292                         esac
8293                         ;;
8294                 esac
8295                 case "$dflt$osname" in
8296                 .os390) echo "(Attempting domain name extraction from //'SYS1.TCPPARMS(TCPDATA)')"
8297                         dflt=.`awk '/^DOMAINORIGIN/ {print $2}' "//'SYS1.TCPPARMS(TCPDATA)'" 2>/dev/null`
8298                         ;;
8299                 esac
8300                 case "$dflt" in
8301                 .) echo "(Lost all hope -- silly guess then)"
8302                         dflt='.nonet'
8303                         ;;
8304                 esac
8305                 $rm -f hosts
8306                 ;;
8307         *) dflt="$mydomain";;
8308         esac;;
8309 esac
8310 echo " "
8311 rp="What is your domain name?"
8312 . ./myread
8313 tans="$ans"
8314 case "$ans" in
8315 '') ;;
8316 .*) ;;
8317 *) tans=".$tans";;
8318 esac
8319 mydomain="$tans"
8320
8321 : translate upper to lower if necessary
8322 case "$mydomain" in
8323 *[A-Z]*)
8324         echo "(Normalizing case in your domain name)"
8325         mydomain=`echo $mydomain | ./tr '[A-Z]' '[a-z]'`
8326         ;;
8327 esac
8328
8329 : a little sanity check here
8330 case "$phostname" in
8331 '') ;;
8332 *)
8333         case `$phostname | ./tr '[A-Z]' '[a-z]'` in
8334         $myhostname$mydomain|$myhostname) ;;
8335         *)
8336                 case "$phostname" in
8337                 sed*)
8338                         echo "(That doesn't agree with your whoami.h file, by the way.)"
8339                         ;;
8340                 *)
8341                         echo "(That doesn't agree with your $phostname command, by the way.)"
8342                         ;;
8343                 esac
8344         ;;
8345         esac
8346         ;;
8347 esac
8348
8349 $cat <<EOM
8350
8351 I need to get your e-mail address in Internet format if possible, i.e.
8352 something like user@host.domain. Please answer accurately since I have
8353 no easy means to double check it. The default value provided below
8354 is most probably close to reality but may not be valid from outside
8355 your organization...
8356
8357 EOM
8358 cont=x
8359 while test "$cont"; do
8360         case "$cf_email" in
8361         '') dflt="$cf_by@$myhostname$mydomain";;
8362         *) dflt="$cf_email";;
8363         esac
8364         rp='What is your e-mail address?'
8365         . ./myread
8366         cf_email="$ans"
8367         case "$cf_email" in
8368         *@*.*) cont='' ;;
8369         *)
8370                 rp='Address does not look like an Internet one.  Use it anyway?'
8371                 case "$fastread" in
8372                 yes) dflt=y ;;
8373                 *) dflt=n ;;
8374                 esac
8375                 . ./myread
8376                 case "$ans" in
8377                 y*) cont='' ;;
8378                 *) echo " " ;;
8379                 esac
8380                 ;;
8381         esac
8382 done
8383
8384 $cat <<EOM
8385
8386 If you or somebody else will be maintaining perl at your site, please
8387 fill in the correct e-mail address here so that they may be contacted
8388 if necessary. Currently, the "perlbug" program included with perl
8389 will send mail to this address in addition to perlbug@perl.org. You may
8390 enter "none" for no administrator.
8391
8392 EOM
8393 case "$perladmin" in
8394 '') dflt="$cf_email";;
8395 *) dflt="$perladmin";;
8396 esac
8397 rp='Perl administrator e-mail address'
8398 . ./myread
8399 perladmin="$ans"
8400
8401 : determine whether to only install version-specific parts.
8402 echo " "
8403 $cat <<EOM
8404 Do you want to install only the version-specific parts of the perl
8405 distribution?  Usually you do *not* want to do this.
8406 EOM
8407 case "$versiononly" in
8408 "$define"|[Yy]*|true) dflt='y' ;;
8409 *) dflt='n';
8410 esac
8411 rp="Do you want to install only the version-specific parts of perl?"
8412 . ./myread
8413 case "$ans" in
8414 [yY]*)  val="$define";;
8415 *)      val="$undef" ;;
8416 esac
8417 set versiononly
8418 eval $setvar
8419
8420 case "$versiononly" in
8421 "$define") inc_version_list=''
8422            inc_version_list_init=0
8423            ;;
8424 esac
8425
8426 : figure out how to guarantee perl startup
8427 case "$startperl" in
8428 '')
8429         case "$sharpbang" in
8430         *!)
8431                 $cat <<EOH
8432
8433 I can use the #! construct to start perl on your system. This will
8434 make startup of perl scripts faster, but may cause problems if you
8435 want to share those scripts and perl is not in a standard place
8436 ($binexp/perl) on all your platforms. The alternative is to force
8437 a shell by starting the script with a single ':' character.
8438
8439 EOH
8440                 case "$versiononly" in
8441                 "$define")      dflt="$binexp/perl$version";;  
8442                 *)              dflt="$binexp/perl";;
8443                 esac
8444                 rp='What shall I put after the #! to start up perl ("none" to not use #!)?'
8445                 . ./myread
8446                 case "$ans" in
8447                 none)   startperl=": # use perl";;
8448                 *)      startperl="#!$ans"
8449                         if $test 30 -lt `echo "$ans" | wc -c`; then
8450                                 $cat >&4 <<EOM
8451
8452 WARNING:  Some systems limit the #! command to 32 characters.
8453 If you experience difficulty running Perl scripts with #!, try
8454 installing Perl in a directory with a shorter pathname.
8455
8456 EOM
8457                         fi ;;
8458                 esac
8459                 ;;
8460         *) startperl=": # use perl"
8461                 ;;
8462         esac
8463         ;;
8464 esac
8465 echo "I'll use $startperl to start perl scripts."
8466
8467 : figure best path for perl in scripts
8468 case "$perlpath" in
8469 '')
8470         case "$versiononly" in
8471         "$define")      perlpath="$binexp/perl$version";;
8472         *)              perlpath="$binexp/perl";;
8473         esac
8474         case "$startperl" in
8475         *!*) ;;
8476         *)
8477                 $cat <<EOH
8478
8479 I will use the "eval 'exec'" idiom to start Perl on your system.
8480 I can use the full path of your Perl binary for this purpose, but
8481 doing so may cause problems if you want to share those scripts and
8482 Perl is not always in a standard place ($binexp/perl).
8483
8484 EOH
8485                 dflt="$binexp/perl"
8486                 rp="What path shall I use in \"eval 'exec'\"?"
8487                 . ./myread
8488                 perlpath="$ans"
8489                 ;;
8490         esac
8491         ;;
8492 esac
8493 case "$startperl" in
8494 *!*)    ;;
8495 *)      echo "I'll use $perlpath in \"eval 'exec'\"" ;;
8496 esac
8497
8498 : determine where public executable scripts go
8499 set scriptdir scriptdir
8500 eval $prefixit
8501 case "$scriptdir" in
8502 '')
8503         dflt="$bin"
8504         : guess some guesses
8505         $test -d /usr/share/scripts && dflt=/usr/share/scripts
8506         $test -d /usr/share/bin     && dflt=/usr/share/bin
8507         $test -d /usr/local/script  && dflt=/usr/local/script
8508         $test -d /usr/local/scripts && dflt=/usr/local/scripts
8509         $test -d $prefixexp/script  && dflt=$prefixexp/script
8510         set dflt
8511         eval $prefixup
8512         ;;
8513 *)  dflt="$scriptdir"
8514         ;;
8515 esac
8516 $cat <<EOM
8517  
8518 Some installations have a separate directory just for executable scripts so
8519 that they can mount it across multiple architectures but keep the scripts in
8520 one spot.  You might, for example, have a subdirectory of /usr/share for this.
8521 Or you might just lump your scripts in with all your other executables.
8522  
8523 EOM
8524 fn=d~
8525 rp='Where do you keep publicly executable scripts?'
8526 . ./getfile
8527 if $test "X$ansexp" != "X$scriptdirexp"; then
8528         installscript=''
8529 fi
8530 scriptdir="$ans"
8531 scriptdirexp="$ansexp"
8532 : Change installation prefix, if necessary.
8533 if $test X"$prefix" != X"$installprefix"; then
8534         installscript=`echo $scriptdirexp | sed "s#^$prefix#$installprefix#"`
8535 else
8536         installscript="$scriptdirexp"
8537 fi
8538
8539 : determine where add-on public executables go
8540 case "$sitebin" in
8541 '')     dflt=$siteprefix/bin ;;
8542 *)      dflt=$sitebin ;;
8543 esac
8544 fn=d~
8545 rp='Pathname where the add-on public executables should be installed?'
8546 . ./getfile
8547 sitebin="$ans"
8548 sitebinexp="$ansexp"
8549 : Change installation prefix, if necessary.
8550 if $test X"$prefix" != X"$installprefix"; then
8551         installsitebin=`echo $sitebinexp | sed "s#^$prefix#$installprefix#"`
8552 else
8553         installsitebin="$sitebinexp"
8554 fi
8555
8556 : determine where add-on html pages go
8557 : There is no standard location, so try to copy the previously-selected
8558 : directory structure for the core html pages.
8559 case "$sitehtml1dir" in
8560 '')    dflt=`echo "$html1dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8561 *)     dflt=$sitehtml1dir ;;
8562 esac
8563 case "$dflt" in
8564 ''|' ') dflt=none ;;
8565 esac
8566 fn=dn+~
8567 rp='Pathname where the site-specific html pages should be installed?'
8568 . ./getfile
8569 sitehtml1dir="$ans"
8570 sitehtml1direxp="$ansexp"
8571 : Change installation prefix, if necessary.
8572 if $test X"$prefix" != X"$installprefix"; then
8573         installsitehtml1dir=`echo $sitehtml1direxp | $sed "s#^$prefix#$installprefix#"`
8574 else
8575         installsitehtml1dir="$sitehtml1direxp"
8576 fi
8577
8578 : determine where add-on library html pages go
8579 : There is no standard location, so try to copy the previously-selected
8580 : directory structure for the core html pages.
8581 case "$sitehtml3dir" in
8582 '')    dflt=`echo "$html3dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8583 *)     dflt=$sitehtml3dir ;;
8584 esac
8585 case "$dflt" in
8586 ''|' ') dflt=none ;;
8587 esac
8588 fn=dn+~
8589 rp='Pathname where the site-specific library html pages should be installed?'
8590 . ./getfile
8591 sitehtml3dir="$ans"
8592 sitehtml3direxp="$ansexp"
8593 : Change installation prefix, if necessary.
8594 if $test X"$prefix" != X"$installprefix"; then
8595         installsitehtml3dir=`echo $sitehtml3direxp | $sed "s#^$prefix#$installprefix#"`
8596 else
8597         installsitehtml3dir="$sitehtml3direxp"
8598 fi
8599
8600 : determine where add-on manual pages go
8601 case "$siteman1dir" in
8602 '')     dflt=`echo $man1dir | $sed "s#^$prefix#$siteprefix#"` ;;
8603 *)      dflt=$siteman1dir ;;
8604 esac
8605 case "$dflt" in
8606 ''|' ') dflt=none ;;
8607 esac
8608 fn=dn+~
8609 rp='Pathname where the site-specific manual pages should be installed?'
8610 . ./getfile
8611 siteman1dir="$ans"
8612 siteman1direxp="$ansexp"
8613 : Change installation prefix, if necessary.
8614 if $test X"$prefix" != X"$installprefix"; then
8615         installsiteman1dir=`echo $siteman1direxp | $sed "s#^$prefix#$installprefix#"`
8616 else
8617         installsiteman1dir="$siteman1direxp"
8618 fi
8619
8620 : determine where add-on library man pages go
8621 case "$siteman3dir" in
8622 '')     dflt=`echo $man3dir | $sed "s#^$prefix#$siteprefix#"` ;;
8623 *)      dflt=$siteman3dir ;;
8624 esac
8625 case "$dflt" in
8626 ''|' ') dflt=none ;;
8627 esac
8628 fn=dn+~
8629 rp='Pathname where the site-specific library manual pages should be installed?'
8630 . ./getfile
8631 siteman3dir="$ans"
8632 siteman3direxp="$ansexp"
8633 : Change installation prefix, if necessary.
8634 if $test X"$prefix" != X"$installprefix"; then
8635         installsiteman3dir=`echo $siteman3direxp | $sed "s#^$prefix#$installprefix#"`
8636 else
8637         installsiteman3dir="$siteman3direxp"
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 '')     vendorhtml1dir=''
8955         vendorhtml1direxp=''
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 "$vendorhtml1dir" in
8962         '')     dflt=`echo "$html1dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
8963         *)      dflt=$vendorhtml1dir ;;
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         vendorhtml1dir="$ans"
8972         vendorhtml1direxp="$ansexp"
8973         ;;
8974 esac
8975 : Use ' ' for none so value is preserved next time through Configure
8976 $test X"$vendorhtml1dir" = "X" && vendorhtml1dir=' '
8977 : Change installation prefix, if necessary.
8978 if $test X"$prefix" != X"$installprefix"; then
8979         installvendorhtml1dir=`echo $vendorhtml1direxp | $sed "s#^$prefix#$installprefix#"`
8980 else
8981         installvendorhtml1dir="$vendorhtml1direxp"
8982 fi
8983
8984 case "$vendorprefix" in
8985 '')     vendorhtml3dir=''
8986         vendorhtml3direxp=''
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 "$vendorhtml3dir" in
8993         '')     dflt=`echo "$html3dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
8994         *)      dflt=$vendorhtml3dir ;;
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         vendorhtml3dir="$ans"
9003         vendorhtml3direxp="$ansexp"
9004         ;;
9005 esac
9006 : Use ' ' for none so value is preserved next time through Configure
9007 $test X"$vendorhtml3dir" = "X" && vendorhtml3dir=' '
9008 : Change installation prefix, if necessary.
9009 if $test X"$prefix" != X"$installprefix"; then
9010         installvendorhtml3dir=`echo $vendorhtml3direxp | $sed "s#^$prefix#$installprefix#"`
9011 else
9012         installvendorhtml3dir="$vendorhtml3direxp"
9013 fi
9014
9015 case "$vendorprefix" in
9016 '')     vendorman1dir=''
9017         vendorman1direxp=''
9018         ;;
9019 *)      : determine where vendor-supplied manual pages go.
9020         case "$vendorman1dir" in
9021         '') dflt=`echo "$man1dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9022         *)      dflt=$vendorman1dir ;;
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         vendorman1dir="$ans"
9031         vendorman1direxp="$ansexp"
9032         ;;
9033 esac
9034 : Use ' ' for none so value is preserved next time through Configure
9035 $test X"$vendorman1dir" = "X" && vendorman1dir=' '
9036 : Change installation prefix, if necessary.
9037 if $test X"$prefix" != X"$installprefix"; then
9038         installvendorman1dir=`echo "$vendorman1direxp" | $sed "s#^$prefix#$installprefix#"`
9039 else
9040         installvendorman1dir="$vendorman1direxp"
9041 fi
9042
9043 case "$vendorprefix" in
9044 '')     vendorman3dir=''
9045         vendorman3direxp=''
9046         ;;
9047 *)      : determine where vendor-supplied module manual pages go.
9048         case "$vendorman3dir" in
9049         '') dflt=`echo "$man3dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9050         *)      dflt=$vendorman3dir ;;
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         vendorman3dir="$ans"
9059         vendorman3direxp="$ansexp"
9060         ;;
9061 esac
9062 : Use ' ' for none so value is preserved next time through Configure
9063 $test X"$vendorman3dir" = "X" && vendorman3dir=' '
9064 : Change installation prefix, if necessary.
9065 if $test X"$prefix" != X"$installprefix"; then
9066         installvendorman3dir=`echo "$vendorman3direxp" | $sed "s#^$prefix#$installprefix#"`
9067 else
9068         installvendorman3dir="$vendorman3direxp"
9069 fi
9070
9071 case "$vendorprefix" in
9072 '')     d_vendorscript="$undef"
9073         vendorscript=''
9074         vendorscriptexp=''
9075         ;;
9076 *)      d_vendorscript="$define"
9077         : determine where vendor-supplied scripts go.
9078         case "$vendorscript" in
9079         '')     dflt=$vendorprefix/script
9080                 $test -d $dflt || dflt=$vendorbin ;;
9081         *)  dflt="$vendorscript" ;;
9082         esac
9083         $cat <<EOM
9084
9085 The installation process will create a directory for 
9086 vendor-supplied scripts.
9087
9088 EOM
9089         fn=d~+
9090         rp='Pathname for the vendor-supplied scripts directory?'
9091         . ./getfile
9092         vendorscript="$ans"
9093         vendorscriptexp="$ansexp"
9094         ;;
9095 esac
9096 : Change installation prefix, if necessary.
9097 if $test X"$prefix" != X"$installprefix"; then
9098         installvendorscript=`echo $vendorscriptexp | $sed "s#^$prefix#$installprefix#"`
9099 else
9100         installvendorscript="$vendorscriptexp"
9101 fi
9102
9103 : see if qgcvt exists
9104 set qgcvt d_qgcvt
9105 eval $inlibc
9106
9107 echo " "
9108
9109 if $test X"$d_longdbl" = X"$define"; then
9110
9111 echo "Checking how to print long doubles..." >&4
9112
9113 if $test X"$sPRIfldbl" = X -a X"$doublesize" = X"$longdblsize"; then
9114         $cat >try.c <<'EOCP'
9115 #include <sys/types.h>
9116 #include <stdio.h>
9117 int main() {
9118   double d = 123.456;
9119   printf("%.3f\n", d);
9120 }
9121 EOCP
9122         set try
9123         if eval $compile; then
9124                 yyy=`$run ./try`
9125                 case "$yyy" in
9126                 123.456)
9127                         sPRIfldbl='"f"'; sPRIgldbl='"g"'; sPRIeldbl='"e"';
9128                         sPRIFUldbl='"F"'; sPRIGUldbl='"G"'; sPRIEUldbl='"E"';
9129                         echo "We will use %f."
9130                         ;;
9131                 esac
9132         fi
9133 fi
9134
9135 if $test X"$sPRIfldbl" = X; then
9136         $cat >try.c <<'EOCP'
9137 #include <sys/types.h>
9138 #include <stdio.h>
9139 int main() {
9140   long double d = 123.456;
9141   printf("%.3Lf\n", d);
9142 }
9143 EOCP
9144         set try
9145         if eval $compile; then
9146                 yyy=`$run ./try`
9147                 case "$yyy" in
9148                 123.456)
9149                         sPRIfldbl='"Lf"'; sPRIgldbl='"Lg"'; sPRIeldbl='"Le"';
9150                         sPRIFUldbl='"LF"'; sPRIGUldbl='"LG"'; sPRIEUldbl='"LE"';
9151                         echo "We will use %Lf."
9152                         ;;
9153                 esac
9154         fi
9155 fi
9156
9157 if $test X"$sPRIfldbl" = X; then
9158         $cat >try.c <<'EOCP'
9159 #include <sys/types.h>
9160 #include <stdio.h>
9161 int main() {
9162   long double d = 123.456;
9163   printf("%.3llf\n", d);
9164 }
9165 EOCP
9166         set try
9167         if eval $compile; then
9168                 yyy=`$run ./try`
9169                 case "$yyy" in
9170                 123.456)
9171                         sPRIfldbl='"llf"'; sPRIgldbl='"llg"'; sPRIeldbl='"lle"';
9172                         sPRIFUldbl='"llF"'; sPRIGUldbl='"llG"'; sPRIEUldbl='"llE"';
9173                         echo "We will use %llf."
9174                         ;;
9175                 esac
9176         fi
9177 fi
9178
9179 if $test X"$sPRIfldbl" = X; then
9180         $cat >try.c <<'EOCP'
9181 #include <sys/types.h>
9182 #include <stdio.h>
9183 int main() {
9184   long double d = 123.456;
9185   printf("%.3lf\n", d);
9186 }
9187 EOCP
9188         set try
9189         if eval $compile; then
9190                 yyy=`$run ./try`
9191                 case "$yyy" in
9192                 123.456)
9193                         sPRIfldbl='"lf"'; sPRIgldbl='"lg"'; sPRIeldbl='"le"';
9194                         sPRIFUldbl='"lF"'; sPRIGUldbl='"lG"'; sPRIEUldbl='"lE"';
9195                         echo "We will use %lf."
9196                         ;;
9197                 esac
9198         fi
9199 fi
9200
9201 if $test X"$sPRIfldbl" = X; then
9202         echo "Cannot figure out how to print long doubles." >&4
9203 else
9204         sSCNfldbl=$sPRIfldbl    # expect consistency
9205 fi
9206
9207 $rm -f try try.*
9208
9209 fi # d_longdbl
9210
9211 case "$sPRIfldbl" in
9212 '')     d_PRIfldbl="$undef"; d_PRIgldbl="$undef"; d_PRIeldbl="$undef"; 
9213         d_PRIFUldbl="$undef"; d_PRIGUldbl="$undef"; d_PRIEUldbl="$undef"; 
9214         d_SCNfldbl="$undef";
9215         ;;
9216 *)      d_PRIfldbl="$define"; d_PRIgldbl="$define"; d_PRIeldbl="$define"; 
9217         d_PRIFUldbl="$define"; d_PRIGUldbl="$define"; d_PRIEUldbl="$define"; 
9218         d_SCNfldbl="$define";
9219         ;;
9220 esac
9221
9222 : Check how to convert floats to strings.
9223
9224 if test "X$d_Gconvert" = X; then
9225
9226 echo " "
9227 echo "Checking for an efficient way to convert floats to strings."
9228 echo " " > try.c
9229 case "$uselongdouble" in
9230 "$define") echo "#define USE_LONG_DOUBLE" >>try.c ;;
9231 esac
9232 case "$d_longdbl" in
9233 "$define") echo "#define HAS_LONG_DOUBLE" >>try.c ;;
9234 esac
9235 case "$d_PRIgldbl" in
9236 "$define") echo "#define HAS_PRIgldbl"    >>try.c ;;
9237 esac
9238 $cat >>try.c <<EOP
9239 #ifdef TRY_gconvert
9240 #define Gconvert(x,n,t,b) gconvert((x),(n),(t),(b))
9241 char *myname = "gconvert";
9242 #endif
9243 #ifdef TRY_gcvt
9244 #define Gconvert(x,n,t,b) gcvt((x),(n),(b))
9245 char *myname = "gcvt";
9246 #endif
9247 #ifdef TRY_qgcvt
9248 #define Gconvert(x,n,t,b) qgcvt((x),(n),(b))
9249 char *myname = "qgcvt";
9250 #define DOUBLETYPE long double
9251 #endif
9252 #ifdef TRY_sprintf
9253 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
9254 #ifdef HAS_PRIgldbl
9255 #define Gconvert(x,n,t,b) sprintf((b),"%.*"$sPRIgldbl,(n),(x))
9256 #else
9257 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(double)(x))
9258 #endif
9259 #else
9260 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))
9261 #endif
9262 char *myname = "sprintf";
9263 #endif
9264
9265 #ifndef DOUBLETYPE
9266 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
9267 #define DOUBLETYPE long double
9268 #else
9269 #define DOUBLETYPE double
9270 #endif
9271 #endif
9272
9273 #include <stdio.h>
9274
9275 #define I_STDLIB $i_stdlib
9276 #ifdef I_STDLIB
9277 #include <stdlib.h>
9278 #endif
9279
9280 int
9281 checkit(expect, got)
9282 char *expect;
9283 char *got;
9284 {
9285     if (strcmp(expect, got)) {
9286                 printf("%s oddity:  Expected %s, got %s\n",
9287                         myname, expect, got);
9288                 exit(1);
9289         }
9290 }
9291
9292 int main()
9293
9294         char buf[64]; 
9295         buf[63] = '\0';
9296
9297         /* This must be 1st test on (which?) platform */
9298         /* Alan Burlison <AlanBurlsin@unn.unisys.com> */
9299         Gconvert((DOUBLETYPE)0.1, 8, 0, buf);
9300         checkit("0.1", buf);
9301
9302         Gconvert((DOUBLETYPE)0.01, 8, 0, buf); 
9303         checkit("0.01", buf);
9304
9305         Gconvert((DOUBLETYPE)0.001, 8, 0, buf); 
9306         checkit("0.001", buf);
9307
9308         Gconvert((DOUBLETYPE)0.0001, 8, 0, buf); 
9309         checkit("0.0001", buf);
9310
9311         Gconvert((DOUBLETYPE)0.00009, 8, 0, buf);
9312         if (strlen(buf) > 5)
9313             checkit("9e-005", buf); /* for Microsoft ?? */
9314         else
9315             checkit("9e-05", buf);
9316
9317         Gconvert((DOUBLETYPE)1.0, 8, 0, buf); 
9318         checkit("1", buf);
9319
9320         Gconvert((DOUBLETYPE)1.1, 8, 0, buf); 
9321         checkit("1.1", buf);
9322
9323         Gconvert((DOUBLETYPE)1.01, 8, 0, buf); 
9324         checkit("1.01", buf);
9325
9326         Gconvert((DOUBLETYPE)1.001, 8, 0, buf); 
9327         checkit("1.001", buf);
9328
9329         Gconvert((DOUBLETYPE)1.0001, 8, 0, buf); 
9330         checkit("1.0001", buf);
9331
9332         Gconvert((DOUBLETYPE)1.00001, 8, 0, buf); 
9333         checkit("1.00001", buf);
9334
9335         Gconvert((DOUBLETYPE)1.000001, 8, 0, buf); 
9336         checkit("1.000001", buf);
9337
9338         Gconvert((DOUBLETYPE)0.0, 8, 0, buf); 
9339         checkit("0", buf);
9340
9341         Gconvert((DOUBLETYPE)-1.0, 8, 0, buf); 
9342         checkit("-1", buf);
9343
9344         /* Some Linux gcvt's give 1.e+5 here. */
9345         Gconvert((DOUBLETYPE)100000.0, 8, 0, buf); 
9346         checkit("100000", buf);
9347         
9348         /* Some Linux gcvt's give -1.e+5 here. */
9349         Gconvert((DOUBLETYPE)-100000.0, 8, 0, buf); 
9350         checkit("-100000", buf);
9351
9352         Gconvert((DOUBLETYPE)123.456, 8, 0, buf); 
9353         checkit("123.456", buf);
9354
9355         /* Testing of 1e+129 in bigintpm.t must not get extra '.' here. */
9356         Gconvert((DOUBLETYPE)1e34, 8, 0, buf);
9357         /* 34 should be enough to scare even long double
9358          * places into using the e notation. */
9359         if (strlen(buf) > 5)
9360             checkit("1e+034", buf); /* for Microsoft */
9361         else
9362             checkit("1e+34", buf);
9363
9364         /* For Perl, if you add additional tests here, also add them to
9365          * t/base/num.t for benefit of platforms not using Configure or
9366          * overriding d_Gconvert */
9367
9368         exit(0);
9369 }
9370 EOP
9371 : first add preferred functions to our list
9372 xxx_list=""
9373 for xxx_convert in $gconvert_preference; do
9374     case $xxx_convert in
9375     gcvt|gconvert|sprintf) xxx_list="$xxx_list $xxx_convert" ;;
9376     *) echo "Discarding unrecognized gconvert_preference $xxx_convert" >&4 ;;
9377     esac 
9378 done
9379 : then add any others
9380 for xxx_convert in gconvert gcvt sprintf; do
9381     case "$xxx_list" in
9382     *$xxx_convert*) ;;
9383     *) xxx_list="$xxx_list $xxx_convert" ;;
9384     esac 
9385 done
9386
9387 case "$d_longdbl$uselongdouble" in
9388 "$define$define")
9389     : again, add prefered functions to our list first
9390     xxx_ld_list=""
9391     for xxx_convert in $gconvert_ld_preference; do
9392         case $xxx_convert in
9393         qgcvt|gcvt|gconvert|sprintf) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
9394         *) echo "Discarding unrecognized gconvert_ld_preference $xxx_convert" ;;
9395         esac
9396     done
9397     : then add qgcvt, sprintf--then, in xxx_list order, gconvert and gcvt
9398     for xxx_convert in qgcvt sprintf $xxx_list; do
9399         case "$xxx_ld_list" in
9400         $xxx_convert*|*" $xxx_convert"*) ;;
9401         *) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
9402         esac
9403     done
9404     : if sprintf cannot do long doubles, move it to the end
9405     if test "$d_PRIgldbl" != "$define"; then
9406         xxx_ld_list="`echo $xxx_ld_list|sed s/sprintf//` sprintf"
9407     fi
9408     : if no qgcvt, remove it
9409     if test "$d_qgcvt" != "$define"; then
9410         xxx_ld_list="`echo $xxx_ld_list|sed s/qgcvt//`"
9411     fi
9412     : use the ld_list
9413     xxx_list="$xxx_ld_list"
9414     ;;
9415 esac
9416
9417 for xxx_convert in $xxx_list; do
9418         echo "Trying $xxx_convert..."
9419         $rm -f try try$_o
9420         set try -DTRY_$xxx_convert
9421         if eval $compile; then
9422                 echo "$xxx_convert() found." >&4
9423                 if $run ./try; then
9424                         echo "I'll use $xxx_convert to convert floats into a string." >&4
9425                         break;
9426                 else
9427                         echo "...But $xxx_convert didn't work as I expected."
9428                         xxx_convert=''
9429                 fi
9430         else
9431                 echo "$xxx_convert NOT found." >&4
9432         fi
9433 done
9434
9435 if test X$xxx_convert = X; then
9436     echo "*** WHOA THERE!!! ***" >&4
9437     echo "None of ($xxx_list)  seemed to work properly.  I'll use sprintf." >&4
9438     xxx_convert=sprintf
9439 fi
9440
9441 case "$xxx_convert" in
9442 gconvert) d_Gconvert='gconvert((x),(n),(t),(b))' ;;
9443 gcvt) d_Gconvert='gcvt((x),(n),(b))' ;;
9444 qgcvt) d_Gconvert='qgcvt((x),(n),(b))' ;;
9445 *) case "$uselongdouble$d_longdbl$d_PRIgldbl" in
9446    "$define$define$define")
9447       d_Gconvert="sprintf((b),\"%.*\"$sPRIgldbl,(n),(x))" ;;
9448    "$define$define$undef")
9449       d_Gconvert='sprintf((b),"%.*g",(n),(double)(x))' ;;
9450    *) d_Gconvert='sprintf((b),"%.*g",(n),(x))' ;;
9451    esac
9452    ;;  
9453 esac
9454
9455 fi
9456
9457 : see if _fwalk exists
9458 set fwalk d__fwalk
9459 eval $inlibc
9460
9461 : Initialize h_fcntl
9462 h_fcntl=false
9463
9464 : Initialize h_sysfile
9465 h_sysfile=false
9466
9467 : access call always available on UNIX
9468 set access d_access
9469 eval $inlibc
9470
9471 : locate the flags for 'access()'
9472 case "$d_access" in
9473 "$define")
9474         echo " "
9475         $cat >access.c <<EOCP
9476 #include <sys/types.h>
9477 #ifdef I_FCNTL
9478 #include <fcntl.h>
9479 #endif
9480 #ifdef I_SYS_FILE
9481 #include <sys/file.h>
9482 #endif
9483 #ifdef I_UNISTD
9484 #include <unistd.h>
9485 #endif
9486 #$i_stdlib I_STDLIB
9487 #ifdef I_STDLIB
9488 #include <stdlib.h>
9489 #endif
9490 int main() {
9491         exit(R_OK);
9492 }
9493 EOCP
9494         : check sys/file.h first, no particular reason here
9495         if $test `./findhdr sys/file.h` && \
9496                 $cc -o access $cppflags -DI_SYS_FILE access.c >/dev/null 2>&1 ; then
9497                 h_sysfile=true;
9498                 echo "<sys/file.h> defines the *_OK access constants." >&4
9499         elif $test `./findhdr fcntl.h` && \
9500                 $cc -o access $cppflags -DI_FCNTL access.c >/dev/null 2>&1 ; then
9501                 h_fcntl=true;
9502                 echo "<fcntl.h> defines the *_OK access constants." >&4
9503         elif $test `./findhdr unistd.h` && \
9504                 $cc -o access $cppflags -DI_UNISTD access.c >/dev/null 2>&1 ; then
9505                 echo "<unistd.h> defines the *_OK access constants." >&4
9506         else
9507                 echo "I can't find the four *_OK access constants--I'll use mine." >&4
9508         fi
9509         ;;
9510 esac
9511 $rm -f access*
9512
9513 : see if accessx exists
9514 set accessx d_accessx
9515 eval $inlibc
9516
9517 : see if aintl exists
9518 set aintl d_aintl
9519 eval $inlibc
9520
9521 : see if alarm exists
9522 set alarm d_alarm
9523 eval $inlibc
9524
9525 : see if POSIX threads are available
9526 set pthread.h i_pthread
9527 eval $inhdr
9528
9529 : define a fucntion to check prototypes
9530 $cat > protochk <<EOSH
9531 $startsh
9532 cc="$cc"
9533 optimize="$optimize"
9534 ccflags="$ccflags"
9535 prototype="$prototype"
9536 define="$define"
9537 rm=$rm
9538 usethreads=$usethreads
9539 i_pthread=$i_pthread
9540 pthread_h_first=$pthread_h_first
9541 EOSH
9542
9543 $cat >> protochk <<'EOSH'
9544
9545 $rm -f try.c
9546 foo="$1"
9547 shift
9548 while test $# -ge 2; do
9549         case "$1" in
9550                 $define) echo "#include <$2>" >> try.c ;;
9551                 literal) echo "$2" >> try.c ;;
9552         esac
9553     # Extra magic for the benefit of systems that need pthread.h
9554     # to be included early to correctly detect threadsafe functions.
9555     # Such functions must guarantee themselves, though, that the usethreads
9556     # and i_pthread have been defined, before calling protochk.
9557     if test "$usethreads" = "$define" -a "$i_pthread" = "$define" -a "$pthread_h_first" = "$define" -a "$pthread_h_done" = ""; then
9558         echo "#include <pthread.h>" >> try.c
9559         pthread_h_done=yes
9560     fi
9561     shift 2
9562 done
9563 test "$prototype" = "$define"  && echo '#define CAN_PROTOTYPE' >> try.c
9564 cat >> try.c <<'EOCP'
9565 #ifdef CAN_PROTOTYPE
9566 #define _(args) args
9567 #else
9568 #define _(args) ()
9569 #endif
9570 EOCP
9571 echo "$foo" >> try.c
9572 echo 'int no_real_function_has_this_name _((void)) { return 0; }' >> try.c
9573 $cc $optimize $ccflags -c try.c > /dev/null 2>&1
9574 status=$?
9575 $rm -f try.[co]
9576 exit $status
9577 EOSH
9578 chmod +x protochk
9579 $eunicefix protochk
9580
9581 hasproto='varname=$1; func=$2; shift; shift;
9582 while $test $# -ge 2; do
9583         case "$1" in
9584         $define) echo "#include <$2>";;
9585         esac ;
9586     shift 2;
9587 done > try.c;
9588 $cppstdin $cppflags $cppminus < try.c > tryout.c 2>/dev/null;
9589 if $contains "$func.*(" tryout.c >/dev/null 2>&1; then
9590         echo "$func() prototype found.";
9591         val="$define";
9592 else
9593         echo "$func() prototype NOT found.";
9594         val="$undef";
9595 fi;
9596 set $varname;
9597 eval $setvar;
9598 $rm -f try.c tryout.c'
9599
9600 : see if sys/types.h has to be included
9601 set sys/types.h i_systypes
9602 eval $inhdr
9603
9604 : see if sys/select.h has to be included
9605 set sys/select.h i_sysselct
9606 eval $inhdr
9607
9608 hasfield='varname=$1; struct=$2; field=$3; shift; shift; shift;
9609 while $test $# -ge 2; do
9610         case "$1" in
9611         $define) echo "#include <$2>";;
9612         esac ;
9613     shift 2;
9614 done > try.c;
9615 echo "int main () { struct $struct foo; char* bar; bar = (char*)foo.$field; }" >> try.c;
9616 set try;
9617 if eval $compile; then
9618         val="$define";
9619 else
9620         val="$undef";
9621 fi;
9622 set $varname;
9623 eval $setvar;
9624 $rm -f try.c try.o'
9625
9626 : see if we should include time.h, sys/time.h, or both
9627 echo " "
9628 if test "X$timeincl" = X; then
9629         echo "Testing to see if we should include <time.h>, <sys/time.h> or both." >&4
9630         $echo $n "I'm now running the test program...$c"
9631         $cat >try.c <<EOCP
9632 #include <sys/types.h>
9633 #ifdef I_TIME
9634 #include <time.h>
9635 #endif
9636 #ifdef I_SYSTIME
9637 #ifdef SYSTIMEKERNEL
9638 #define KERNEL
9639 #endif
9640 #include <sys/time.h>
9641 #endif
9642 #ifdef I_SYSSELECT
9643 #include <sys/select.h>
9644 #endif
9645 #$i_stdlib I_STDLIB
9646 #ifdef I_STDLIB
9647 #include <stdlib.h>
9648 #endif
9649 int main()
9650 {
9651         struct tm foo;
9652 #ifdef S_TIMEVAL
9653         struct timeval bar;
9654 #endif
9655 #ifdef S_TIMEZONE
9656         struct timezone tzp;
9657 #endif
9658         if (foo.tm_sec == foo.tm_sec)
9659                 exit(0);
9660 #ifdef S_TIMEVAL
9661         if (bar.tv_sec == bar.tv_sec)
9662                 exit(0);
9663 #endif
9664         exit(1);
9665 }
9666 EOCP
9667         flags=''
9668         for s_timezone in '-DS_TIMEZONE' ''; do
9669         sysselect=''
9670         for s_timeval in '-DS_TIMEVAL' ''; do
9671         for i_systimek in '' '-DSYSTIMEKERNEL'; do
9672         for i_time in '' '-DI_TIME'; do
9673         for i_systime in '-DI_SYSTIME' ''; do
9674                 case "$flags" in
9675                 '') $echo $n ".$c"
9676                         set try $i_time $i_systime $i_systimek $sysselect $s_timeval $s_timezone
9677                         if eval $compile; then
9678                                 set X $i_time $i_systime $i_systimek $sysselect $s_timeval
9679                                 shift
9680                                 flags="$*"
9681                                 echo " "
9682                                 $echo $n "Succeeded with $flags$c"
9683                         fi
9684                         ;;
9685                 esac
9686         done
9687         done
9688         done
9689         done
9690         done
9691         timeincl=''
9692         echo " "
9693         case "$flags" in
9694         *SYSTIMEKERNEL*) i_systimek="$define"
9695                 timeincl=`./findhdr sys/time.h`
9696                 echo "We'll include <sys/time.h> with KERNEL defined." >&4;;
9697         *) i_systimek="$undef";;
9698         esac
9699         case "$flags" in
9700         *I_TIME*) i_time="$define"
9701                 timeincl=`./findhdr time.h`" $timeincl"
9702                 echo "We'll include <time.h>." >&4;;
9703         *) i_time="$undef";;
9704         esac
9705         case "$flags" in
9706         *I_SYSTIME*) i_systime="$define"
9707                 timeincl=`./findhdr sys/time.h`" $timeincl"
9708                 echo "We'll include <sys/time.h>." >&4;;
9709         *) i_systime="$undef";;
9710         esac
9711         $rm -f try.c try
9712 fi
9713 : see if struct tm knows about tm_zone
9714 case "$i_systime$i_time" in
9715 *$define*) 
9716         echo " "
9717         echo "Checking to see if your struct tm has tm_zone field..." >&4
9718         set d_tm_tm_zone tm tm_zone $i_systime sys/time.h $i_time time.h
9719         eval $hasfield
9720         ;;
9721 *)      val="$undef"
9722         set d_tm_tm_zone
9723         eval $setvar
9724         ;;
9725 esac
9726 case "$d_tm_tm_zone" in
9727 "$define")      echo "Yes, it does."   ;;
9728 *)              echo "No, it doesn't." ;;
9729 esac
9730 : see if struct tm knows about tm_gmtoff
9731 case "$i_systime$i_time" in
9732 *$define*) 
9733         echo " "
9734         echo "Checking to see if your struct tm has tm_gmtoff field..." >&4
9735         set d_tm_tm_gmtoff tm tm_gmtoff $i_systime sys/time.h $i_time time.h
9736         eval $hasfield
9737         ;;
9738 *)      val="$undef"
9739         set d_tm_tm_gmtoff
9740         eval $setvar
9741         ;;
9742 esac
9743 case "$d_tm_tm_gmtoff" in
9744 "$define")      echo "Yes, it does."   ;;
9745 *)              echo "No, it doesn't." ;;
9746 esac
9747
9748 : see if asctime_r exists
9749 set asctime_r d_asctime_r
9750 eval $inlibc
9751 case "$d_asctime_r" in
9752 "$define")
9753         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
9754         case "$d_asctime_r_proto:$usethreads" in
9755         ":define")      d_asctime_r_proto=define
9756                 set d_asctime_r_proto asctime_r $hdrs
9757                 eval $hasproto ;;
9758         *)      ;;
9759         esac
9760         case "$d_asctime_r_proto" in
9761         define)
9762         case "$asctime_r_proto" in
9763         ''|0) try='char* asctime_r(const struct tm*, char*);'
9764         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SB ;;
9765         esac
9766         case "$asctime_r_proto" in
9767         ''|0) try='char* asctime_r(const struct tm*, char*, int);'
9768         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SBI ;;
9769         esac
9770         case "$asctime_r_proto" in
9771         ''|0) try='int asctime_r(const struct tm*, char*);'
9772         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SB ;;
9773         esac
9774         case "$asctime_r_proto" in
9775         ''|0) try='int asctime_r(const struct tm*, char*, int);'
9776         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SBI ;;
9777         esac
9778         case "$asctime_r_proto" in
9779         ''|0)   d_asctime_r=undef
9780                 asctime_r_proto=0
9781                 echo "Disabling asctime_r, cannot determine prototype." >&4 ;;
9782         * )     case "$asctime_r_proto" in
9783                 REENTRANT_PROTO*) ;;
9784                 *) asctime_r_proto="REENTRANT_PROTO_$asctime_r_proto" ;;
9785                 esac
9786                 echo "Prototype: $try" ;;
9787         esac
9788         ;;
9789         *)      case "$usethreads" in
9790                 define) echo "asctime_r has no prototype, not using it." >&4 ;;
9791                 esac
9792                 d_asctime_r=undef
9793                 asctime_r_proto=0
9794                 ;;
9795         esac
9796         ;;
9797 *)      asctime_r_proto=0
9798         ;;
9799 esac
9800
9801 : see if atolf exists
9802 set atolf d_atolf
9803 eval $inlibc
9804
9805 : see if atoll exists
9806 set atoll d_atoll
9807 eval $inlibc
9808
9809 : Look for GNU-cc style attribute checking
9810 echo " "
9811 echo "Checking whether your compiler can handle __attribute__ ..." >&4
9812 $cat >attrib.c <<'EOCP'
9813 #include <stdio.h>
9814 void croak (char* pat,...) __attribute__((__format__(__printf__,1,2),noreturn));
9815 EOCP
9816 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
9817         if $contains 'warning' attrib.out >/dev/null 2>&1; then
9818                 echo "Your C compiler doesn't fully support __attribute__."
9819                 val="$undef"
9820         else
9821                 echo "Your C compiler supports __attribute__."
9822                 val="$define"
9823         fi
9824 else
9825         echo "Your C compiler doesn't seem to understand __attribute__ at all."
9826         val="$undef"
9827 fi
9828 set d_attribut
9829 eval $setvar
9830 $rm -f attrib*
9831
9832 : see if bcmp exists
9833 set bcmp d_bcmp
9834 eval $inlibc
9835
9836 : see if bcopy exists
9837 set bcopy d_bcopy
9838 eval $inlibc
9839
9840 : see if this is a unistd.h system
9841 set unistd.h i_unistd
9842 eval $inhdr
9843
9844 : see if getpgrp exists
9845 set getpgrp d_getpgrp
9846 eval $inlibc
9847
9848 case "$d_getpgrp" in
9849 "$define")
9850         echo " "
9851         echo "Checking to see which flavor of getpgrp is in use..."
9852         $cat >try.c <<EOP
9853 #$i_unistd I_UNISTD
9854 #include <sys/types.h>
9855 #ifdef I_UNISTD
9856 #  include <unistd.h>
9857 #endif
9858 #$i_stdlib I_STDLIB
9859 #ifdef I_STDLIB
9860 #include <stdlib.h>
9861 #endif
9862 int main()
9863 {
9864         if (getuid() == 0) {
9865                 printf("(I see you are running Configure as super-user...)\n");
9866                 setuid(1);
9867         }
9868 #ifdef TRY_BSD_PGRP
9869         if (getpgrp(1) == 0)
9870                 exit(0);
9871 #else
9872         if (getpgrp() > 0)
9873                 exit(0);
9874 #endif
9875         exit(1);
9876 }
9877 EOP
9878         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9879                 echo "You have to use getpgrp(pid) instead of getpgrp()." >&4
9880                 val="$define"
9881         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9882                 echo "You have to use getpgrp() instead of getpgrp(pid)." >&4
9883                 val="$undef"
9884         else
9885                 echo "I can't seem to compile and run the test program."
9886                 if ./usg; then
9887                         xxx="a USG one, i.e. you use getpgrp()."
9888                 else
9889                         # SVR4 systems can appear rather BSD-ish.
9890                         case "$i_unistd" in
9891                         $undef)
9892                                 xxx="a BSD one, i.e. you use getpgrp(pid)."
9893                                 val="$define"
9894                                 ;;
9895                         $define)
9896                                 xxx="probably a USG one, i.e. you use getpgrp()."
9897                                 val="$undef"
9898                                 ;;
9899                         esac
9900                 fi
9901                 echo "Assuming your getpgrp is $xxx" >&4
9902         fi
9903         ;;
9904 *) val="$undef";;
9905 esac
9906 set d_bsdgetpgrp
9907 eval $setvar
9908 $rm -f try try.*
9909
9910 : see if setpgrp exists
9911 set setpgrp d_setpgrp
9912 eval $inlibc
9913
9914 case "$d_setpgrp" in
9915 "$define")
9916         echo " "
9917         echo "Checking to see which flavor of setpgrp is in use..."
9918         $cat >try.c <<EOP
9919 #$i_unistd I_UNISTD
9920 #include <sys/types.h>
9921 #ifdef I_UNISTD
9922 #  include <unistd.h>
9923 #endif
9924 #$i_stdlib I_STDLIB
9925 #ifdef I_STDLIB
9926 #include <stdlib.h>
9927 #endif
9928 int main()
9929 {
9930         if (getuid() == 0) {
9931                 printf("(I see you are running Configure as super-user...)\n");
9932                 setuid(1);
9933         }
9934 #ifdef TRY_BSD_PGRP
9935         if (-1 == setpgrp(1, 1))
9936                 exit(0);
9937 #else
9938         if (setpgrp() != -1)
9939                 exit(0);
9940 #endif
9941         exit(1);
9942 }
9943 EOP
9944         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9945                 echo 'You have to use setpgrp(pid,pgrp) instead of setpgrp().' >&4
9946                 val="$define"
9947         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
9948                 echo 'You have to use setpgrp() instead of setpgrp(pid,pgrp).' >&4
9949                 val="$undef"
9950         else
9951                 echo "(I can't seem to compile and run the test program.)"
9952                 if ./usg; then
9953                         xxx="a USG one, i.e. you use setpgrp()."
9954                 else
9955                         # SVR4 systems can appear rather BSD-ish.
9956                         case "$i_unistd" in
9957                         $undef)
9958                                 xxx="a BSD one, i.e. you use setpgrp(pid,pgrp)."
9959                                 val="$define"
9960                                 ;;
9961                         $define)
9962                                 xxx="probably a USG one, i.e. you use setpgrp()."
9963                                 val="$undef"
9964                                 ;;
9965                         esac
9966                 fi
9967                 echo "Assuming your setpgrp is $xxx" >&4
9968         fi
9969         ;;
9970 *) val="$undef";;
9971 esac
9972 set d_bsdsetpgrp
9973 eval $setvar
9974 $rm -f try try.*
9975 : see if bzero exists
9976 set bzero d_bzero
9977 eval $inlibc
9978
9979 : see if signal is declared as pointer to function returning int or void
9980 echo " "
9981 xxx=`./findhdr signal.h`
9982 $test "$xxx" && $cppstdin $cppminus $cppflags < $xxx >$$.tmp 2>/dev/null
9983 if $contains 'int.*\*[  ]*signal' $$.tmp >/dev/null 2>&1 ; then
9984         echo "You have int (*signal())() instead of void." >&4
9985         val="$undef"
9986 elif $contains 'void.*\*[       ]*signal' $$.tmp >/dev/null 2>&1 ; then
9987         echo "You have void (*signal())()." >&4
9988         val="$define"
9989 elif $contains 'extern[         ]*[(\*]*signal' $$.tmp >/dev/null 2>&1 ; then
9990         echo "You have int (*signal())() instead of void." >&4
9991         val="$undef"
9992 elif $contains 'void.*\*.*sig' $$.tmp >/dev/null 2>&1 ; then
9993         echo "You have void (*signal())()." >&4
9994         val="$define"
9995 else
9996         case "$d_voidsig" in
9997         '')
9998         echo "I can't determine whether signal handler returns void or int..." >&4
9999                 dflt=void
10000                 rp="What type does your signal handler return?"
10001                 . ./myread
10002                 case "$ans" in
10003                 v*) val="$define";;
10004                 *) val="$undef";;
10005                 esac;;
10006         "$define")
10007                 echo "As you already told me, signal handler returns void." >&4
10008                 val="$define"
10009                 ;;
10010         *)      echo "As you already told me, signal handler returns int." >&4
10011                 val="$undef"
10012                 ;;
10013         esac
10014 fi
10015 set d_voidsig
10016 eval $setvar
10017 case "$d_voidsig" in
10018 "$define") signal_t="void";;
10019 *) signal_t="int";;
10020 esac
10021 $rm -f $$.tmp
10022
10023 : check for ability to cast large floats to 32-bit ints.
10024 echo " "
10025 echo 'Checking whether your C compiler can cast large floats to int32.' >&4
10026 if $test "$intsize" -ge 4; then
10027         xxx=int
10028 else
10029         xxx=long
10030 fi
10031 $cat >try.c <<EOCP
10032 #include <stdio.h>
10033 #$i_stdlib I_STDLIB
10034 #ifdef I_STDLIB
10035 #include <stdlib.h>
10036 #endif
10037 #include <sys/types.h>
10038 #include <signal.h>
10039 $signal_t blech(s) int s; { exit(3); }
10040 int main()
10041 {
10042         $xxx i32;
10043         double f, g;
10044         int result = 0;
10045         char str[16];
10046         signal(SIGFPE, blech);
10047
10048         /* Don't let compiler optimize the test away.  Store the number 
10049            in a writable string for gcc to pass to sscanf under HP/UX.
10050         */
10051         sprintf(str, "2147483647");
10052         sscanf(str, "%lf", &f); /* f = (double) 0x7fffffff; */
10053         g = 10 * f;
10054         i32  = ($xxx) g;
10055
10056         /* x86 processors will probably give 0x8000 0000, which is a
10057        sign change.  We don't want that.  We want to mimic SPARC
10058            behavior here, which is to preserve the sign and give
10059            back 0x7fff ffff.
10060         */
10061         if (i32 != ($xxx) f)
10062                 result |= 1;
10063         exit(result);
10064 }
10065 EOCP
10066 set try
10067 if eval $compile_ok; then
10068         $run ./try
10069         yyy=$?
10070 else
10071         echo "(I can't seem to compile the test program--assuming it can't)"
10072         yyy=1
10073 fi
10074 case "$yyy" in
10075 0)      val="$define"
10076         echo "Yup, it can."
10077         ;;
10078 *)      val="$undef"
10079         echo "Nope, it can't."
10080         ;;
10081 esac
10082 set d_casti32
10083 eval $setvar
10084 $rm -f try try.*
10085
10086 : check for ability to cast negative floats to unsigned
10087 echo " "
10088 echo 'Checking whether your C compiler can cast negative float to unsigned.' >&4
10089 $cat >try.c <<EOCP
10090 #include <stdio.h>
10091 #$i_stdlib I_STDLIB
10092 #ifdef I_STDLIB
10093 #include <stdlib.h>
10094 #endif
10095 #include <sys/types.h>
10096 #include <signal.h>
10097 $signal_t blech(s) int s; { exit(7); }
10098 $signal_t blech_in_list(s) int s; { exit(4); }
10099 unsigned long dummy_long(p) unsigned long p; { return p; }
10100 unsigned int dummy_int(p) unsigned int p; { return p; }
10101 unsigned short dummy_short(p) unsigned short p; { return p; }
10102 int main()
10103 {
10104         double f;
10105         unsigned long along;
10106         unsigned int aint;
10107         unsigned short ashort;
10108         int result = 0;
10109         char str[16];
10110         
10111         /* Frustrate gcc-2.7.2's optimizer which failed this test with
10112            a direct f = -123. assignment.  gcc-2.8.0 reportedly
10113            optimized the whole file away
10114         */
10115         /* Store the number in a writable string for gcc to pass to 
10116            sscanf under HP/UX.
10117         */
10118         sprintf(str, "-123");
10119         sscanf(str, "%lf", &f);  /* f = -123.; */
10120
10121         signal(SIGFPE, blech);
10122         along = (unsigned long)f;
10123         aint = (unsigned int)f;
10124         ashort = (unsigned short)f;
10125         if (along != (unsigned long)-123)
10126                 result |= 1;
10127         if (aint != (unsigned int)-123)
10128                 result |= 1;
10129         if (ashort != (unsigned short)-123)
10130                 result |= 1;
10131         sprintf(str, "1073741824.");
10132         sscanf(str, "%lf", &f); /* f = (double)0x40000000; */
10133         f = f + f;
10134         along = 0;
10135         along = (unsigned long)f;
10136         if (along != 0x80000000)
10137                 result |= 2;
10138         f -= 1.;
10139         along = 0;
10140         along = (unsigned long)f;
10141         if (along != 0x7fffffff)
10142                 result |= 1;
10143         f += 2.;
10144         along = 0;
10145         along = (unsigned long)f;
10146         if (along != 0x80000001)
10147                 result |= 2;
10148         if (result)
10149                 exit(result);
10150         signal(SIGFPE, blech_in_list);
10151         sprintf(str, "123.");
10152         sscanf(str, "%lf", &f);  /* f = 123.; */
10153         along = dummy_long((unsigned long)f);
10154         aint = dummy_int((unsigned int)f);
10155         ashort = dummy_short((unsigned short)f);
10156         if (along != (unsigned long)123)
10157                 result |= 4;
10158         if (aint != (unsigned int)123)
10159                 result |= 4;
10160         if (ashort != (unsigned short)123)
10161                 result |= 4;
10162         exit(result);
10163
10164 }
10165 EOCP
10166 set try
10167 if eval $compile_ok; then
10168         $run ./try
10169         castflags=$?
10170 else
10171         echo "(I can't seem to compile the test program--assuming it can't)"
10172         castflags=7
10173 fi
10174 case "$castflags" in
10175 0)      val="$define"
10176         echo "Yup, it can."
10177         ;;
10178 *)      val="$undef"
10179         echo "Nope, it can't."
10180         ;;
10181 esac
10182 set d_castneg
10183 eval $setvar
10184 $rm -f try.*
10185
10186 : see if vprintf exists
10187 echo " "
10188 if set vprintf val -f d_vprintf; eval $csym; $val; then
10189         echo 'vprintf() found.' >&4
10190         val="$define"
10191         $cat >try.c <<EOF
10192 #include <varargs.h>
10193 #$i_stdlib I_STDLIB
10194 #ifdef I_STDLIB
10195 #include <stdlib.h>
10196 #endif
10197
10198 int main() { xxx("foo"); }
10199
10200 xxx(va_alist)
10201 va_dcl
10202 {
10203         va_list args;
10204         char buf[10];
10205
10206         va_start(args);
10207         exit((unsigned long)vsprintf(buf,"%s",args) > 10L);
10208 }
10209 EOF
10210         set try
10211         if eval $compile && $run ./try; then
10212                 echo "Your vsprintf() returns (int)." >&4
10213                 val2="$undef"
10214         else
10215                 echo "Your vsprintf() returns (char*)." >&4
10216                 val2="$define"
10217         fi
10218 else
10219         echo 'vprintf() NOT found.' >&4
10220                 val="$undef"
10221                 val2="$undef"
10222 fi
10223 $rm -f try try.*
10224 set d_vprintf
10225 eval $setvar
10226 val=$val2
10227 set d_charvspr
10228 eval $setvar
10229
10230 : see if chown exists
10231 set chown d_chown
10232 eval $inlibc
10233
10234 : see if chroot exists
10235 set chroot d_chroot
10236 eval $inlibc
10237
10238 : see if chsize exists
10239 set chsize d_chsize
10240 eval $inlibc
10241
10242 : see if class exists
10243 set class d_class
10244 eval $inlibc
10245
10246 hasstruct='varname=$1; struct=$2; shift; shift;
10247 while $test $# -ge 2; do
10248         case "$1" in
10249         $define) echo "#include <$2>";;
10250         esac ;
10251     shift 2;
10252 done > try.c;
10253 echo "int main () { struct $struct foo; }" >> try.c;
10254 set try;
10255 if eval $compile; then
10256         val="$define";
10257 else
10258         val="$undef";
10259 fi;
10260 set $varname;
10261 eval $setvar;
10262 $rm -f try.c try.o'
10263
10264 socketlib=''
10265 sockethdr=''
10266 : see whether socket exists
10267 echo " "
10268 $echo $n "Hmm... $c" >&4
10269 if set socket val -f d_socket; eval $csym; $val; then
10270         echo "Looks like you have Berkeley networking support." >&4
10271         d_socket="$define"
10272         if set setsockopt val -f; eval $csym; $val; then
10273                 d_oldsock="$undef"
10274         else
10275                 echo "...but it uses the old BSD 4.1c interface, rather than 4.2." >&4
10276                 d_oldsock="$define"
10277         fi
10278 else
10279         if $contains socklib libc.list >/dev/null 2>&1; then
10280                 echo "Looks like you have Berkeley networking support." >&4
10281                 d_socket="$define"
10282                 : we will have to assume that it supports the 4.2 BSD interface
10283                 d_oldsock="$undef"
10284         else
10285                 echo "You don't have Berkeley networking in libc$_a..." >&4
10286                 if test "X$d_socket" = "X$define"; then
10287                    echo "...but you seem to believe that you have sockets." >&4
10288                 else
10289                         for net in net socket
10290                         do
10291                                 if test -f /usr/lib/lib$net$_a; then
10292                                         ( ($nm $nm_opt /usr/lib/lib$net$_a | eval $nm_extract) ||  \
10293                                         $ar t /usr/lib/lib$net$_a) 2>/dev/null >> libc.list
10294                                         if $contains socket libc.list >/dev/null 2>&1; then
10295                                                 d_socket="$define"
10296                                                 socketlib="-l$net"
10297                                                 case "$net" in
10298                                                 net)
10299                                                         echo "...but the Wollongong group seems to have hacked it in." >&4
10300                                                         sockethdr="-I/usr/netinclude"
10301                                                         ;;
10302                                                 esac
10303                                                 echo "Found Berkeley sockets interface in lib$net." >&4 
10304                                                 if $contains setsockopt libc.list >/dev/null 2>&1; then
10305                                                         d_oldsock="$undef"
10306                                                 else
10307                                                         echo "...using the old BSD 4.1c interface, rather than 4.2." >&4
10308                                                         d_oldsock="$define"
10309                                                 fi
10310                                                 break
10311                                         fi
10312                                 fi
10313                         done
10314                         if test "X$d_socket" != "X$define"; then
10315                            echo "or anywhere else I see." >&4
10316                            d_socket="$undef"
10317                            d_oldsock="$undef"
10318                         fi
10319                 fi
10320         fi
10321 fi
10322
10323 : see if socketpair exists
10324 set socketpair d_sockpair
10325 eval $inlibc
10326
10327
10328 echo " "
10329 echo "Checking the availability of certain socket constants..." >&4
10330 for ENUM in MSG_CTRUNC MSG_DONTROUTE MSG_OOB MSG_PEEK MSG_PROXY SCM_RIGHTS; do
10331         enum=`$echo $ENUM|./tr '[A-Z]' '[a-z]'`
10332         $cat >try.c <<EOF
10333 #include <sys/types.h>
10334 #include <sys/socket.h>
10335 int main() {
10336     int i = $ENUM;
10337 }
10338 EOF
10339         val="$undef"
10340         set try; if eval $compile; then
10341                 val="$define"
10342         fi
10343         set d_${enum}; eval $setvar
10344         $rm -f try.c try
10345 done
10346
10347 : see if this is a sys/uio.h system
10348 set sys/uio.h i_sysuio
10349 eval $inhdr
10350
10351
10352 echo " "
10353 echo "Checking to see if your system supports struct cmsghdr..." >&4
10354 set d_cmsghdr_s cmsghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
10355 eval $hasstruct
10356 case "$d_cmsghdr_s" in
10357 "$define")      echo "Yes, it does."   ;;
10358 *)              echo "No, it doesn't." ;;
10359 esac
10360
10361
10362 : check for const keyword
10363 echo " "
10364 echo 'Checking to see if your C compiler knows about "const"...' >&4
10365 $cat >const.c <<'EOCP'
10366 typedef struct spug { int drokk; } spug;
10367 int main()
10368 {
10369         const char *foo;
10370         const spug y;
10371 }
10372 EOCP
10373 if $cc -c $ccflags const.c >/dev/null 2>&1 ; then
10374         val="$define"
10375         echo "Yup, it does."
10376 else
10377         val="$undef"
10378         echo "Nope, it doesn't."
10379 fi
10380 set d_const
10381 eval $setvar
10382
10383 : see if copysignl exists
10384 set copysignl d_copysignl
10385 eval $inlibc
10386
10387 : see if crypt exists
10388 echo " "
10389 set crypt d_crypt
10390 eval $inlibc
10391 case "$d_crypt" in
10392 $define) cryptlib='' ;;
10393 *)      if set crypt val -f d_crypt; eval $csym; $val; then
10394                 echo 'crypt() found.' >&4
10395                 val="$define"
10396                 cryptlib=''
10397         else
10398                 cryptlib=`./loc Slibcrypt$_a "" $xlibpth`
10399                 if $test -z "$cryptlib"; then
10400                         cryptlib=`./loc Mlibcrypt$_a "" $xlibpth`
10401                 else
10402                         cryptlib=-lcrypt
10403                 fi
10404                 if $test -z "$cryptlib"; then
10405                         cryptlib=`./loc Llibcrypt$_a "" $xlibpth`
10406                 else
10407                         cryptlib=-lcrypt
10408                 fi
10409                 if $test -z "$cryptlib"; then
10410                         cryptlib=`./loc libcrypt$_a "" $libpth`
10411                 else
10412                         cryptlib=-lcrypt
10413                 fi
10414                 if $test -z "$cryptlib"; then
10415                         echo 'crypt() NOT found.' >&4
10416                         val="$undef"
10417                 else
10418                         val="$define"
10419                 fi
10420         fi
10421         set d_crypt
10422         eval $setvar
10423         ;;
10424 esac
10425
10426 : see if this is a crypt.h system
10427 set crypt.h i_crypt
10428 eval $inhdr
10429
10430 : see if crypt_r exists
10431 set crypt_r d_crypt_r
10432 eval $inlibc
10433 case "$d_crypt_r" in
10434 "$define")
10435         hdrs="$i_systypes sys/types.h define stdio.h $i_crypt crypt.h"
10436         case "$d_crypt_r_proto:$usethreads" in
10437         ":define")      d_crypt_r_proto=define
10438                 set d_crypt_r_proto crypt_r $hdrs
10439                 eval $hasproto ;;
10440         *)      ;;
10441         esac
10442         case "$d_crypt_r_proto" in
10443         define)
10444         case "$crypt_r_proto" in
10445         ''|0) try='char* crypt_r(const char*, const char*, struct crypt_data*);'
10446         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCS ;;
10447         esac
10448         case "$crypt_r_proto" in
10449         ''|0) try='char* crypt_r(const char*, const char*, CRYPTD*);'
10450         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCD ;;
10451         esac
10452         case "$crypt_r_proto" in
10453         ''|0)   d_crypt_r=undef
10454                 crypt_r_proto=0
10455                 echo "Disabling crypt_r, cannot determine prototype." >&4 ;;
10456         * )     case "$crypt_r_proto" in
10457                 REENTRANT_PROTO*) ;;
10458                 *) crypt_r_proto="REENTRANT_PROTO_$crypt_r_proto" ;;
10459                 esac
10460                 echo "Prototype: $try" ;;
10461         esac
10462         ;;
10463         *)      case "$usethreads" in
10464                 define) echo "crypt_r has no prototype, not using it." >&4 ;;
10465                 esac
10466                 d_crypt_r=undef
10467                 crypt_r_proto=0
10468                 ;;
10469         esac
10470         ;;
10471 *)      crypt_r_proto=0
10472         ;;
10473 esac
10474
10475 : get csh whereabouts
10476 case "$csh" in
10477 'csh') val="$undef" ;;
10478 *) val="$define" ;;
10479 esac
10480 set d_csh
10481 eval $setvar
10482 : Respect a hint or command line value for full_csh.
10483 case "$full_csh" in
10484 '') full_csh=$csh ;;
10485 esac
10486
10487 : see if ctermid_r exists
10488 set ctermid_r d_ctermid_r
10489 eval $inlibc
10490 case "$d_ctermid_r" in
10491 "$define")
10492         hdrs="$i_systypes sys/types.h define stdio.h "
10493         case "$d_ctermid_r_proto:$usethreads" in
10494         ":define")      d_ctermid_r_proto=define
10495                 set d_ctermid_r_proto ctermid_r $hdrs
10496                 eval $hasproto ;;
10497         *)      ;;
10498         esac
10499         case "$d_ctermid_r_proto" in
10500         define)
10501         case "$ctermid_r_proto" in
10502         ''|0) try='char* ctermid_r(char*);'
10503         ./protochk "extern $try" $hdrs && ctermid_r_proto=B_B ;;
10504         esac
10505         case "$ctermid_r_proto" in
10506         ''|0)   d_ctermid_r=undef
10507                 ctermid_r_proto=0
10508                 echo "Disabling ctermid_r, cannot determine prototype." >&4 ;;
10509         * )     case "$ctermid_r_proto" in
10510                 REENTRANT_PROTO*) ;;
10511                 *) ctermid_r_proto="REENTRANT_PROTO_$ctermid_r_proto" ;;
10512                 esac
10513                 echo "Prototype: $try" ;;
10514         esac
10515         ;;
10516         *)      case "$usethreads" in
10517                 define) echo "ctermid_r has no prototype, not using it." >&4 ;;
10518                 esac
10519                 d_ctermid_r=undef
10520                 ctermid_r_proto=0
10521                 ;;
10522         esac
10523         ;;
10524 *)      ctermid_r_proto=0
10525         ;;
10526 esac
10527
10528 : see if ctime_r exists
10529 set ctime_r d_ctime_r
10530 eval $inlibc
10531 case "$d_ctime_r" in
10532 "$define")
10533         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
10534         case "$d_ctime_r_proto:$usethreads" in
10535         ":define")      d_ctime_r_proto=define
10536                 set d_ctime_r_proto ctime_r $hdrs
10537                 eval $hasproto ;;
10538         *)      ;;
10539         esac
10540         case "$d_ctime_r_proto" in
10541         define)
10542         case "$ctime_r_proto" in
10543         ''|0) try='char* ctime_r(const time_t*, char*);'
10544         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SB ;;
10545         esac
10546         case "$ctime_r_proto" in
10547         ''|0) try='char* ctime_r(const time_t*, char*, int);'
10548         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SBI ;;
10549         esac
10550         case "$ctime_r_proto" in
10551         ''|0) try='int ctime_r(const time_t*, char*);'
10552         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SB ;;
10553         esac
10554         case "$ctime_r_proto" in
10555         ''|0) try='int ctime_r(const time_t*, char*, int);'
10556         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SBI ;;
10557         esac
10558         case "$ctime_r_proto" in
10559         ''|0)   d_ctime_r=undef
10560                 ctime_r_proto=0
10561                 echo "Disabling ctime_r, cannot determine prototype." >&4 ;;
10562         * )     case "$ctime_r_proto" in
10563                 REENTRANT_PROTO*) ;;
10564                 *) ctime_r_proto="REENTRANT_PROTO_$ctime_r_proto" ;;
10565                 esac
10566                 echo "Prototype: $try" ;;
10567         esac
10568         ;;
10569         *)      case "$usethreads" in
10570                 define) echo "ctime_r has no prototype, not using it." >&4 ;;
10571                 esac
10572                 d_ctime_r=undef
10573                 ctime_r_proto=0
10574                 ;;
10575         esac
10576         ;;
10577 *)      ctime_r_proto=0
10578         ;;
10579 esac
10580
10581 : see if cuserid exists
10582 set cuserid d_cuserid
10583 eval $inlibc
10584
10585 : see if this is a limits.h system
10586 set limits.h i_limits
10587 eval $inhdr
10588
10589 : see if this is a float.h system
10590 set float.h i_float
10591 eval $inhdr
10592
10593 : See if number of significant digits in a double precision number is known
10594 echo " "
10595 $cat >dbl_dig.c <<EOM
10596 #$i_limits I_LIMITS
10597 #$i_float I_FLOAT
10598 #ifdef I_LIMITS
10599 #include <limits.h>
10600 #endif
10601 #ifdef I_FLOAT
10602 #include <float.h>
10603 #endif
10604 #ifdef DBL_DIG
10605 printf("Contains DBL_DIG");
10606 #endif
10607 EOM
10608 $cppstdin $cppflags $cppminus < dbl_dig.c >dbl_dig.E 2>/dev/null
10609 if $contains 'DBL_DIG' dbl_dig.E >/dev/null 2>&1; then
10610         echo "DBL_DIG found." >&4
10611         val="$define"
10612 else
10613         echo "DBL_DIG NOT found." >&4
10614         val="$undef"
10615 fi
10616 $rm -f dbl_dig.?
10617 set d_dbl_dig
10618 eval $setvar
10619
10620 : see if dbm.h is available
10621 : see if dbmclose exists
10622 set dbmclose d_dbmclose
10623 eval $inlibc
10624
10625 case "$d_dbmclose" in
10626 $define)
10627         set dbm.h i_dbm
10628         eval $inhdr
10629         case "$i_dbm" in
10630         $define)
10631                 val="$undef"
10632                 set i_rpcsvcdbm
10633                 eval $setvar
10634                 ;;
10635         *)      set rpcsvc/dbm.h i_rpcsvcdbm
10636                 eval $inhdr
10637                 ;;
10638         esac
10639         ;;
10640 *)      echo "We won't be including <dbm.h>"
10641         val="$undef"
10642         set i_dbm
10643         eval $setvar
10644         val="$undef"
10645         set i_rpcsvcdbm
10646         eval $setvar
10647         ;;
10648 esac
10649
10650 : see if prototype for dbminit is available
10651 echo " "
10652 set d_dbminitproto dbminit $i_dbm dbm.h
10653 eval $hasproto
10654
10655 : see if difftime exists
10656 set difftime d_difftime
10657 eval $inlibc
10658
10659 : see if this is a dirent system
10660 echo " "
10661 if xinc=`./findhdr dirent.h`; $test "$xinc"; then
10662         val="$define"
10663         echo "<dirent.h> found." >&4
10664 else
10665         val="$undef"
10666         if xinc=`./findhdr sys/dir.h`; $test "$xinc"; then
10667                 echo "<sys/dir.h> found." >&4
10668                 echo " "
10669         else
10670                 xinc=`./findhdr sys/ndir.h`
10671         fi
10672         echo "<dirent.h> NOT found." >&4
10673 fi
10674 set i_dirent
10675 eval $setvar
10676
10677 : Look for type of directory structure.
10678 echo " "
10679 $cppstdin $cppflags $cppminus < "$xinc" > try.c
10680
10681 case "$direntrytype" in
10682 ''|' ')
10683         case "$i_dirent" in
10684         $define) guess1='struct dirent' ;;
10685         *) guess1='struct direct'  ;;
10686         esac
10687         ;;
10688 *)      guess1="$direntrytype"
10689         ;;
10690 esac
10691
10692 case "$guess1" in
10693 'struct dirent') guess2='struct direct' ;;
10694 *) guess2='struct dirent' ;;
10695 esac
10696                 
10697 if $contains "$guess1" try.c >/dev/null 2>&1; then
10698         direntrytype="$guess1"
10699         echo "Your directory entries are $direntrytype." >&4
10700 elif $contains "$guess2" try.c >/dev/null 2>&1; then
10701         direntrytype="$guess2"
10702         echo "Your directory entries seem to be $direntrytype." >&4
10703 else
10704         echo "I don't recognize your system's directory entries." >&4
10705         rp="What type is used for directory entries on this system?"
10706         dflt="$guess1"
10707         . ./myread
10708         direntrytype="$ans"
10709 fi
10710 $rm -f try.c
10711
10712
10713 : see if the directory entry stores field length
10714 echo " "
10715 $cppstdin $cppflags $cppminus < "$xinc" > try.c
10716 if $contains 'd_namlen' try.c >/dev/null 2>&1; then
10717         echo "Good, your directory entry keeps length information in d_namlen." >&4
10718         val="$define"
10719 else
10720         echo "Your directory entry does not know about the d_namlen field." >&4
10721         val="$undef"
10722 fi
10723 set d_dirnamlen
10724 eval $setvar
10725 $rm -f try.c
10726
10727 : see if this is an sysdir system
10728 set sys/dir.h i_sysdir
10729 eval $inhdr
10730
10731 : see if this is an sysndir system
10732 set sys/ndir.h i_sysndir
10733 eval $inhdr
10734
10735 : Look for dirfd
10736 echo " "
10737 $cat >dirfd.c <<EOM
10738 #include <stdio.h>
10739 #$i_stdlib I_STDLIB
10740 #ifdef I_STDLIB
10741 #include <stdlib.h>
10742 #endif
10743 #$i_dirent I_DIRENT             /**/
10744 #$i_sysdir I_SYS_DIR            /**/
10745 #$i_sysndir I_SYS_NDIR          /**/
10746 #$i_systypes I_SYS_TYPES        /**/
10747 #if defined(I_SYS_TYPES)
10748 #include <sys/types.h>
10749 #endif
10750 #if defined(I_DIRENT)
10751 #include <dirent.h>
10752 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
10753 #include <sys/dir.h>
10754 #endif
10755 #else
10756 #ifdef I_SYS_NDIR
10757 #include <sys/ndir.h>
10758 #else
10759 #ifdef I_SYS_DIR
10760 #ifdef hp9000s500
10761 #include <ndir.h>       /* may be wrong in the future */
10762 #else
10763 #include <sys/dir.h>
10764 #endif
10765 #endif
10766 #endif
10767 #endif 
10768 int main() {
10769         DIR *dirp = opendir(".");
10770         if (dirfd(dirp) >= 0)
10771                 exit(0);
10772         else
10773                 exit(1);
10774 }
10775 EOM
10776 set dirfd
10777 if eval $compile; then
10778         val="$define"
10779 fi
10780 case "$val" in
10781 $define)        echo "dirfd() found." >&4       ;;
10782 *)              echo "dirfd() NOT found." >&4   ;;
10783 esac
10784 set d_dirfd
10785 eval $setvar
10786 $rm -f dirfd*
10787
10788 : see if dlerror exists
10789 xxx_runnm="$runnm"
10790 runnm=false
10791 set dlerror d_dlerror
10792 eval $inlibc
10793 runnm="$xxx_runnm"
10794
10795 : see if dlfcn is available
10796 set dlfcn.h i_dlfcn
10797 eval $inhdr
10798
10799 case "$usedl" in
10800 $define|y|true)
10801         $cat << EOM
10802
10803 On a few systems, the dynamically loaded modules that perl generates and uses
10804 will need a different extension than shared libs. The default will probably
10805 be appropriate.
10806
10807 EOM
10808         case "$dlext" in
10809         '')     dflt="$so" ;;
10810         *)      dflt="$dlext" ;;
10811         esac
10812         rp='What is the extension of dynamically loaded modules'
10813         . ./myread
10814         dlext="$ans"
10815         ;;
10816 *)
10817         dlext="none"
10818         ;;
10819 esac
10820
10821 : Check if dlsym need a leading underscore
10822 echo " "
10823 val="$undef"
10824
10825 case "$dlsrc" in
10826 dl_dlopen.xs)
10827         echo "Checking whether your dlsym() needs a leading underscore ..." >&4
10828         $cat >dyna.c <<'EOM'
10829 fred () { }
10830 EOM
10831
10832 $cat >fred.c<<EOM
10833
10834 #include <stdio.h>
10835 #$i_stdlib I_STDLIB
10836 #ifdef I_STDLIB
10837 #include <stdlib.h>
10838 #endif
10839 #$i_dlfcn I_DLFCN
10840 #ifdef I_DLFCN
10841 #include <dlfcn.h>      /* the dynamic linker include file for SunOS/Solaris */
10842 #else
10843 #include <sys/types.h>
10844 #include <nlist.h>
10845 #include <link.h>
10846 #endif
10847
10848 extern int fred() ;
10849
10850 int main()
10851 {
10852     void * handle ;
10853     void * symbol ;
10854 #ifndef RTLD_LAZY
10855     int mode = 1 ;
10856 #else
10857     int mode = RTLD_LAZY ;
10858 #endif
10859     handle = dlopen("./dyna.$dlext", mode) ;
10860     if (handle == NULL) {
10861         printf ("1\n") ;
10862         fflush (stdout) ;
10863         exit(0);
10864     }
10865     symbol = dlsym(handle, "fred") ;
10866     if (symbol == NULL) {
10867         /* try putting a leading underscore */
10868         symbol = dlsym(handle, "_fred") ;
10869         if (symbol == NULL) {
10870             printf ("2\n") ;
10871             fflush (stdout) ;
10872             exit(0);
10873         }
10874         printf ("3\n") ;
10875     }
10876     else
10877         printf ("4\n") ;
10878     fflush (stdout) ;
10879     exit(0);
10880 }
10881 EOM
10882         : Call the object file tmp-dyna.o in case dlext=o.
10883         if $cc $ccflags $cccdlflags -c dyna.c > /dev/null 2>&1 && 
10884                 mv dyna${_o} tmp-dyna${_o} > /dev/null 2>&1 && 
10885                 $ld -o dyna.$dlext $ldflags $lddlflags tmp-dyna${_o} > /dev/null 2>&1 && 
10886                 $cc -o fred $ccflags $ldflags $cccdlflags $ccdlflags fred.c $libs > /dev/null 2>&1 && $to dyna.$dlext; then
10887                 xxx=`$run ./fred`
10888                 case $xxx in
10889                 1)      echo "Test program failed using dlopen." >&4
10890                         echo "Perhaps you should not use dynamic loading." >&4;;
10891                 2)      echo "Test program failed using dlsym." >&4
10892                         echo "Perhaps you should not use dynamic loading." >&4;;
10893                 3)      echo "dlsym needs a leading underscore" >&4
10894                         val="$define" ;;
10895                 4)      echo "dlsym doesn't need a leading underscore." >&4;;
10896                 esac
10897         else
10898                 echo "I can't compile and run the test program." >&4
10899                 echo "I'm guessing that dlsym doesn't need a leading underscore." >&4
10900         fi
10901         ;;
10902 esac
10903                 
10904 $rm -f fred fred.* dyna.$dlext dyna.* tmp-dyna.*
10905
10906 set d_dlsymun
10907 eval $setvar
10908
10909 : see if drand48_r exists
10910 set drand48_r d_drand48_r
10911 eval $inlibc
10912 case "$d_drand48_r" in
10913 "$define")
10914         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
10915         case "$d_drand48_r_proto:$usethreads" in
10916         ":define")      d_drand48_r_proto=define
10917                 set d_drand48_r_proto drand48_r $hdrs
10918                 eval $hasproto ;;
10919         *)      ;;
10920         esac
10921         case "$d_drand48_r_proto" in
10922         define)
10923         case "$drand48_r_proto" in
10924         ''|0) try='int drand48_r(struct drand48_data*, double*);'
10925         ./protochk "extern $try" $hdrs && drand48_r_proto=I_ST ;;
10926         esac
10927         case "$drand48_r_proto" in
10928         ''|0)   d_drand48_r=undef
10929                 drand48_r_proto=0
10930                 echo "Disabling drand48_r, cannot determine prototype." >&4 ;;
10931         * )     case "$drand48_r_proto" in
10932                 REENTRANT_PROTO*) ;;
10933                 *) drand48_r_proto="REENTRANT_PROTO_$drand48_r_proto" ;;
10934                 esac
10935                 echo "Prototype: $try" ;;
10936         esac
10937         ;;
10938         *)      case "$usethreads" in
10939                 define) echo "drand48_r has no prototype, not using it." >&4 ;;
10940                 esac
10941                 d_drand48_r=undef
10942                 drand48_r_proto=0
10943                 ;;
10944         esac
10945         ;;
10946 *)      drand48_r_proto=0
10947         ;;
10948 esac
10949
10950 : see if prototype for drand48 is available
10951 echo " "
10952 set d_drand48proto drand48 $i_stdlib stdlib.h $i_unistd unistd.h
10953 eval $hasproto
10954
10955 : see if dup2 exists
10956 set dup2 d_dup2
10957 eval $inlibc
10958
10959 : see if eaccess exists
10960 set eaccess d_eaccess
10961 eval $inlibc
10962
10963 : see if endgrent exists
10964 set endgrent d_endgrent
10965 eval $inlibc
10966
10967 : see if this is an grp system
10968 set grp.h i_grp
10969 eval $inhdr
10970
10971 case "$i_grp" in
10972 $define)
10973         xxx=`./findhdr grp.h`
10974         $cppstdin $cppflags $cppminus < $xxx >$$.h
10975
10976         if $contains 'gr_passwd' $$.h >/dev/null 2>&1; then
10977                 val="$define"
10978         else
10979                 val="$undef"
10980         fi
10981         set d_grpasswd
10982         eval $setvar
10983
10984         $rm -f $$.h
10985         ;;
10986 *)
10987         val="$undef";
10988         set d_grpasswd; eval $setvar
10989         ;;
10990 esac
10991
10992 : see if endgrent_r exists
10993 set endgrent_r d_endgrent_r
10994 eval $inlibc
10995 case "$d_endgrent_r" in
10996 "$define")
10997         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
10998         case "$d_endgrent_r_proto:$usethreads" in
10999         ":define")      d_endgrent_r_proto=define
11000                 set d_endgrent_r_proto endgrent_r $hdrs
11001                 eval $hasproto ;;
11002         *)      ;;
11003         esac
11004         case "$d_endgrent_r_proto" in
11005         define)
11006         case "$endgrent_r_proto" in
11007         ''|0) try='int endgrent_r(FILE**);'
11008         ./protochk "extern $try" $hdrs && endgrent_r_proto=I_H ;;
11009         esac
11010         case "$endgrent_r_proto" in
11011         ''|0) try='void endgrent_r(FILE**);'
11012         ./protochk "extern $try" $hdrs && endgrent_r_proto=V_H ;;
11013         esac
11014         case "$endgrent_r_proto" in
11015         ''|0)   d_endgrent_r=undef
11016                 endgrent_r_proto=0
11017                 echo "Disabling endgrent_r, cannot determine prototype." >&4 ;;
11018         * )     case "$endgrent_r_proto" in
11019                 REENTRANT_PROTO*) ;;
11020                 *) endgrent_r_proto="REENTRANT_PROTO_$endgrent_r_proto" ;;
11021                 esac
11022                 echo "Prototype: $try" ;;
11023         esac
11024         ;;
11025         *)      case "$usethreads" in
11026                 define) echo "endgrent_r has no prototype, not using it." >&4 ;;
11027                 esac
11028                 d_endgrent_r=undef
11029                 endgrent_r_proto=0
11030                 ;;
11031         esac
11032         ;;
11033 *)      endgrent_r_proto=0
11034         ;;
11035 esac
11036
11037 : see if endhostent exists
11038 set endhostent d_endhent
11039 eval $inlibc
11040
11041 : see if this is a netdb.h system
11042 set netdb.h i_netdb
11043 eval $inhdr
11044
11045 : see if endhostent_r exists
11046 set endhostent_r d_endhostent_r
11047 eval $inlibc
11048 case "$d_endhostent_r" in
11049 "$define")
11050         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11051         case "$d_endhostent_r_proto:$usethreads" in
11052         ":define")      d_endhostent_r_proto=define
11053                 set d_endhostent_r_proto endhostent_r $hdrs
11054                 eval $hasproto ;;
11055         *)      ;;
11056         esac
11057         case "$d_endhostent_r_proto" in
11058         define)
11059         case "$endhostent_r_proto" in
11060         ''|0) try='int endhostent_r(struct hostent_data*);'
11061         ./protochk "extern $try" $hdrs && endhostent_r_proto=I_D ;;
11062         esac
11063         case "$endhostent_r_proto" in
11064         ''|0) try='void endhostent_r(struct hostent_data*);'
11065         ./protochk "extern $try" $hdrs && endhostent_r_proto=V_D ;;
11066         esac
11067         case "$endhostent_r_proto" in
11068         ''|0)   d_endhostent_r=undef
11069                 endhostent_r_proto=0
11070                 echo "Disabling endhostent_r, cannot determine prototype." >&4 ;;
11071         * )     case "$endhostent_r_proto" in
11072                 REENTRANT_PROTO*) ;;
11073                 *) endhostent_r_proto="REENTRANT_PROTO_$endhostent_r_proto" ;;
11074                 esac
11075                 echo "Prototype: $try" ;;
11076         esac
11077         ;;
11078         *)      case "$usethreads" in
11079                 define) echo "endhostent_r has no prototype, not using it." >&4 ;;
11080                 esac
11081                 d_endhostent_r=undef
11082                 endhostent_r_proto=0
11083                 ;;
11084         esac
11085         ;;
11086 *)      endhostent_r_proto=0
11087         ;;
11088 esac
11089
11090 : see if endnetent exists
11091 set endnetent d_endnent
11092 eval $inlibc
11093
11094 : see if endnetent_r exists
11095 set endnetent_r d_endnetent_r
11096 eval $inlibc
11097 case "$d_endnetent_r" in
11098 "$define")
11099         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11100         case "$d_endnetent_r_proto:$usethreads" in
11101         ":define")      d_endnetent_r_proto=define
11102                 set d_endnetent_r_proto endnetent_r $hdrs
11103                 eval $hasproto ;;
11104         *)      ;;
11105         esac
11106         case "$d_endnetent_r_proto" in
11107         define)
11108         case "$endnetent_r_proto" in
11109         ''|0) try='int endnetent_r(struct netent_data*);'
11110         ./protochk "extern $try" $hdrs && endnetent_r_proto=I_D ;;
11111         esac
11112         case "$endnetent_r_proto" in
11113         ''|0) try='void endnetent_r(struct netent_data*);'
11114         ./protochk "extern $try" $hdrs && endnetent_r_proto=V_D ;;
11115         esac
11116         case "$endnetent_r_proto" in
11117         ''|0)   d_endnetent_r=undef
11118                 endnetent_r_proto=0
11119                 echo "Disabling endnetent_r, cannot determine prototype." >&4 ;;
11120         * )     case "$endnetent_r_proto" in
11121                 REENTRANT_PROTO*) ;;
11122                 *) endnetent_r_proto="REENTRANT_PROTO_$endnetent_r_proto" ;;
11123                 esac
11124                 echo "Prototype: $try" ;;
11125         esac
11126         ;;
11127         *)      case "$usethreads" in
11128                 define) echo "endnetent_r has no prototype, not using it." >&4 ;;
11129                 esac
11130                 d_endnetent_r=undef
11131                 endnetent_r_proto=0
11132                 ;;
11133         esac
11134         ;;
11135 *)      endnetent_r_proto=0
11136         ;;
11137 esac
11138
11139 : see if endprotoent exists
11140 set endprotoent d_endpent
11141 eval $inlibc
11142
11143 : see if endprotoent_r exists
11144 set endprotoent_r d_endprotoent_r
11145 eval $inlibc
11146 case "$d_endprotoent_r" in
11147 "$define")
11148         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11149         case "$d_endprotoent_r_proto:$usethreads" in
11150         ":define")      d_endprotoent_r_proto=define
11151                 set d_endprotoent_r_proto endprotoent_r $hdrs
11152                 eval $hasproto ;;
11153         *)      ;;
11154         esac
11155         case "$d_endprotoent_r_proto" in
11156         define)
11157         case "$endprotoent_r_proto" in
11158         ''|0) try='int endprotoent_r(struct protoent_data*);'
11159         ./protochk "extern $try" $hdrs && endprotoent_r_proto=I_D ;;
11160         esac
11161         case "$endprotoent_r_proto" in
11162         ''|0) try='void endprotoent_r(struct protoent_data*);'
11163         ./protochk "extern $try" $hdrs && endprotoent_r_proto=V_D ;;
11164         esac
11165         case "$endprotoent_r_proto" in
11166         ''|0)   d_endprotoent_r=undef
11167                 endprotoent_r_proto=0
11168                 echo "Disabling endprotoent_r, cannot determine prototype." >&4 ;;
11169         * )     case "$endprotoent_r_proto" in
11170                 REENTRANT_PROTO*) ;;
11171                 *) endprotoent_r_proto="REENTRANT_PROTO_$endprotoent_r_proto" ;;
11172                 esac
11173                 echo "Prototype: $try" ;;
11174         esac
11175         ;;
11176         *)      case "$usethreads" in
11177                 define) echo "endprotoent_r has no prototype, not using it." >&4 ;;
11178                 esac
11179                 d_endprotoent_r=undef
11180                 endprotoent_r_proto=0
11181                 ;;
11182         esac
11183         ;;
11184 *)      endprotoent_r_proto=0
11185         ;;
11186 esac
11187
11188 : see if endpwent exists
11189 set endpwent d_endpwent
11190 eval $inlibc
11191
11192 : see if this is a pwd.h system
11193 set pwd.h i_pwd
11194 eval $inhdr
11195
11196 case "$i_pwd" in
11197 $define)
11198         xxx=`./findhdr pwd.h`
11199         $cppstdin $cppflags $cppminus < $xxx >$$.h
11200
11201         if $contains 'pw_quota' $$.h >/dev/null 2>&1; then
11202                 val="$define"
11203         else
11204                 val="$undef"
11205         fi
11206         set d_pwquota
11207         eval $setvar
11208
11209         if $contains 'pw_age' $$.h >/dev/null 2>&1; then
11210                 val="$define"
11211         else
11212                 val="$undef"
11213         fi
11214         set d_pwage
11215         eval $setvar
11216
11217         if $contains 'pw_change' $$.h >/dev/null 2>&1; then
11218                 val="$define"
11219         else
11220                 val="$undef"
11221         fi
11222         set d_pwchange
11223         eval $setvar
11224
11225         if $contains 'pw_class' $$.h >/dev/null 2>&1; then
11226                 val="$define"
11227         else
11228                 val="$undef"
11229         fi
11230         set d_pwclass
11231         eval $setvar
11232
11233         if $contains 'pw_expire' $$.h >/dev/null 2>&1; then
11234                 val="$define"
11235         else
11236                 val="$undef"
11237         fi
11238         set d_pwexpire
11239         eval $setvar
11240
11241         if $contains 'pw_comment' $$.h >/dev/null 2>&1; then
11242                 val="$define"
11243         else
11244                 val="$undef"
11245         fi
11246         set d_pwcomment
11247         eval $setvar
11248
11249         if $contains 'pw_gecos' $$.h >/dev/null 2>&1; then
11250                 val="$define"
11251         else
11252                 val="$undef"
11253         fi
11254         set d_pwgecos
11255         eval $setvar
11256
11257         if $contains 'pw_passwd' $$.h >/dev/null 2>&1; then
11258                 val="$define"
11259         else
11260                 val="$undef"
11261         fi
11262         set d_pwpasswd
11263         eval $setvar
11264
11265         $rm -f $$.h
11266         ;;
11267 *)
11268         val="$undef"; 
11269         set d_pwquota; eval $setvar
11270         set d_pwage; eval $setvar
11271         set d_pwchange; eval $setvar
11272         set d_pwclass; eval $setvar
11273         set d_pwexpire; eval $setvar
11274         set d_pwcomment; eval $setvar
11275         set d_pwgecos; eval $setvar
11276         set d_pwpasswd; eval $setvar
11277         ;;
11278 esac
11279
11280 : see if endpwent_r exists
11281 set endpwent_r d_endpwent_r
11282 eval $inlibc
11283 case "$d_endpwent_r" in
11284 "$define")
11285         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
11286         case "$d_endpwent_r_proto:$usethreads" in
11287         ":define")      d_endpwent_r_proto=define
11288                 set d_endpwent_r_proto endpwent_r $hdrs
11289                 eval $hasproto ;;
11290         *)      ;;
11291         esac
11292         case "$d_endpwent_r_proto" in
11293         define)
11294         case "$endpwent_r_proto" in
11295         ''|0) try='int endpwent_r(FILE**);'
11296         ./protochk "extern $try" $hdrs && endpwent_r_proto=I_H ;;
11297         esac
11298         case "$endpwent_r_proto" in
11299         ''|0) try='void endpwent_r(FILE**);'
11300         ./protochk "extern $try" $hdrs && endpwent_r_proto=V_H ;;
11301         esac
11302         case "$endpwent_r_proto" in
11303         ''|0)   d_endpwent_r=undef
11304                 endpwent_r_proto=0
11305                 echo "Disabling endpwent_r, cannot determine prototype." >&4 ;;
11306         * )     case "$endpwent_r_proto" in
11307                 REENTRANT_PROTO*) ;;
11308                 *) endpwent_r_proto="REENTRANT_PROTO_$endpwent_r_proto" ;;
11309                 esac
11310                 echo "Prototype: $try" ;;
11311         esac
11312         ;;
11313         *)      case "$usethreads" in
11314                 define) echo "endpwent_r has no prototype, not using it." >&4 ;;
11315                 esac
11316                 d_endpwent_r=undef
11317                 endpwent_r_proto=0
11318                 ;;
11319         esac
11320         ;;
11321 *)      endpwent_r_proto=0
11322         ;;
11323 esac
11324
11325 : see if endservent exists
11326 set endservent d_endsent
11327 eval $inlibc
11328
11329 : see if endservent_r exists
11330 set endservent_r d_endservent_r
11331 eval $inlibc
11332 case "$d_endservent_r" in
11333 "$define")
11334         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11335         case "$d_endservent_r_proto:$usethreads" in
11336         ":define")      d_endservent_r_proto=define
11337                 set d_endservent_r_proto endservent_r $hdrs
11338                 eval $hasproto ;;
11339         *)      ;;
11340         esac
11341         case "$d_endservent_r_proto" in
11342         define)
11343         case "$endservent_r_proto" in
11344         ''|0) try='int endservent_r(struct servent_data*);'
11345         ./protochk "extern $try" $hdrs && endservent_r_proto=I_D ;;
11346         esac
11347         case "$endservent_r_proto" in
11348         ''|0) try='void endservent_r(struct servent_data*);'
11349         ./protochk "extern $try" $hdrs && endservent_r_proto=V_D ;;
11350         esac
11351         case "$endservent_r_proto" in
11352         ''|0)   d_endservent_r=undef
11353                 endservent_r_proto=0
11354                 echo "Disabling endservent_r, cannot determine prototype." >&4 ;;
11355         * )     case "$endservent_r_proto" in
11356                 REENTRANT_PROTO*) ;;
11357                 *) endservent_r_proto="REENTRANT_PROTO_$endservent_r_proto" ;;
11358                 esac
11359                 echo "Prototype: $try" ;;
11360         esac
11361         ;;
11362         *)      case "$usethreads" in
11363                 define) echo "endservent_r has no prototype, not using it." >&4 ;;
11364                 esac
11365                 d_endservent_r=undef
11366                 endservent_r_proto=0
11367                 ;;
11368         esac
11369         ;;
11370 *)      endservent_r_proto=0
11371         ;;
11372 esac
11373
11374 : Locate the flags for 'open()'
11375 echo " "
11376 $cat >try.c <<EOCP
11377 #include <sys/types.h>
11378 #ifdef I_FCNTL
11379 #include <fcntl.h>
11380 #endif
11381 #ifdef I_SYS_FILE
11382 #include <sys/file.h>
11383 #endif
11384 #$i_stdlib I_STDLIB
11385 #ifdef I_STDLIB
11386 #include <stdlib.h>
11387 #endif
11388 int main() {
11389         if(O_RDONLY);
11390 #ifdef O_TRUNC
11391         exit(0);
11392 #else
11393         exit(1);
11394 #endif
11395 }
11396 EOCP
11397 : check sys/file.h first to get FREAD on Sun
11398 if $test `./findhdr sys/file.h` && \
11399                 set try -DI_SYS_FILE && eval $compile; then
11400         h_sysfile=true;
11401         echo "<sys/file.h> defines the O_* constants..." >&4
11402         if $run ./try; then
11403                 echo "and you have the 3 argument form of open()." >&4
11404                 val="$define"
11405         else
11406                 echo "but not the 3 argument form of open().  Oh, well." >&4
11407                 val="$undef"
11408         fi
11409 elif $test `./findhdr fcntl.h` && \
11410                 set try -DI_FCNTL && eval $compile; then
11411         h_fcntl=true;
11412         echo "<fcntl.h> defines the O_* constants..." >&4
11413         if $run ./try; then
11414                 echo "and you have the 3 argument form of open()." >&4
11415                 val="$define"
11416         else
11417                 echo "but not the 3 argument form of open().  Oh, well." >&4
11418                 val="$undef"
11419         fi
11420 else
11421         val="$undef"
11422         echo "I can't find the O_* constant definitions!  You got problems." >&4
11423 fi
11424 set d_open3
11425 eval $setvar
11426 $rm -f try try.*
11427
11428 : see which of string.h or strings.h is needed
11429 echo " "
11430 strings=`./findhdr string.h`
11431 if $test "$strings" && $test -r "$strings"; then
11432         echo "Using <string.h> instead of <strings.h>." >&4
11433         val="$define"
11434 else
11435         val="$undef"
11436         strings=`./findhdr strings.h`
11437         if $test "$strings" && $test -r "$strings"; then
11438                 echo "Using <strings.h> instead of <string.h>." >&4
11439         else
11440                 echo "No string header found -- You'll surely have problems." >&4
11441         fi
11442 fi
11443 set i_string
11444 eval $setvar
11445 case "$i_string" in
11446 "$undef") strings=`./findhdr strings.h`;;
11447 *)        strings=`./findhdr string.h`;;
11448 esac
11449
11450 : see if this is a sys/file.h system
11451 val=''
11452 set sys/file.h val
11453 eval $inhdr
11454
11455 : do we need to include sys/file.h ?
11456 case "$val" in
11457 "$define")
11458         echo " "
11459         if $h_sysfile; then
11460                 val="$define"
11461                 echo "We'll be including <sys/file.h>." >&4
11462         else
11463                 val="$undef"
11464                 echo "We won't be including <sys/file.h>." >&4
11465         fi
11466         ;;
11467 *)
11468         h_sysfile=false
11469         ;;
11470 esac
11471 set i_sysfile
11472 eval $setvar
11473
11474 : see if fcntl.h is there
11475 val=''
11476 set fcntl.h val
11477 eval $inhdr
11478
11479 : see if we can include fcntl.h
11480 case "$val" in
11481 "$define")
11482         echo " "
11483         if $h_fcntl; then
11484                 val="$define"
11485                 echo "We'll be including <fcntl.h>." >&4
11486         else
11487                 val="$undef"
11488                 if $h_sysfile; then
11489         echo "We don't need to include <fcntl.h> if we include <sys/file.h>." >&4
11490                 else
11491                         echo "We won't be including <fcntl.h>." >&4
11492                 fi
11493         fi
11494         ;;
11495 *)
11496         h_fcntl=false
11497         val="$undef"
11498         ;;
11499 esac
11500 set i_fcntl
11501 eval $setvar
11502
11503 : check for non-blocking I/O stuff
11504 case "$h_sysfile" in
11505 true) echo "#include <sys/file.h>" > head.c;;
11506 *)
11507        case "$h_fcntl" in
11508        true) echo "#include <fcntl.h>" > head.c;;
11509        *) echo "#include <sys/fcntl.h>" > head.c;;
11510        esac
11511        ;;
11512 esac
11513 echo " "
11514 echo "Figuring out the flag used by open() for non-blocking I/O..." >&4
11515 case "$o_nonblock" in
11516 '')
11517         $cat head.c > try.c
11518         $cat >>try.c <<EOCP
11519 #include <stdio.h>
11520 #$i_stdlib I_STDLIB
11521 #ifdef I_STDLIB
11522 #include <stdlib.h>
11523 #endif
11524 #$i_fcntl I_FCNTL
11525 #ifdef I_FCNTL
11526 #include <fcntl.h>
11527 #endif
11528 int main() {
11529 #ifdef O_NONBLOCK
11530         printf("O_NONBLOCK\n");
11531         exit(0);
11532 #endif
11533 #ifdef O_NDELAY
11534         printf("O_NDELAY\n");
11535         exit(0);
11536 #endif
11537 #ifdef FNDELAY
11538         printf("FNDELAY\n");
11539         exit(0);
11540 #endif
11541         exit(0);
11542 }
11543 EOCP
11544         set try
11545         if eval $compile_ok; then
11546                 o_nonblock=`$run ./try`
11547                 case "$o_nonblock" in
11548                 '') echo "I can't figure it out, assuming O_NONBLOCK will do.";;
11549                 *) echo "Seems like we can use $o_nonblock.";;
11550                 esac
11551         else
11552                 echo "(I can't compile the test program; pray O_NONBLOCK is right!)"
11553         fi
11554         ;;
11555 *) echo "Using $hint value $o_nonblock.";;
11556 esac
11557 $rm -f try try.* .out core
11558
11559 echo " "
11560 echo "Let's see what value errno gets from read() on a $o_nonblock file..." >&4
11561 case "$eagain" in
11562 '')
11563         $cat head.c > try.c
11564         $cat >>try.c <<EOCP
11565 #include <errno.h>
11566 #include <sys/types.h>
11567 #include <signal.h>
11568 #include <stdio.h> 
11569 #$i_stdlib I_STDLIB
11570 #ifdef I_STDLIB
11571 #include <stdlib.h>
11572 #endif
11573 #$i_fcntl I_FCNTL
11574 #ifdef I_FCNTL
11575 #include <fcntl.h>
11576 #endif
11577 #define MY_O_NONBLOCK $o_nonblock
11578 #ifndef errno  /* XXX need better Configure test */
11579 extern int errno;
11580 #endif
11581 #$i_unistd I_UNISTD
11582 #ifdef I_UNISTD
11583 #include <unistd.h>
11584 #endif
11585 #$i_string I_STRING
11586 #ifdef I_STRING
11587 #include <string.h>
11588 #else
11589 #include <strings.h>
11590 #endif
11591 $signal_t blech(x) int x; { exit(3); }
11592 EOCP
11593         $cat >> try.c <<'EOCP'
11594 int main()
11595 {
11596         int pd[2];
11597         int pu[2];
11598         char buf[1];
11599         char string[100];
11600
11601         pipe(pd);       /* Down: child -> parent */
11602         pipe(pu);       /* Up: parent -> child */
11603         if (0 != fork()) {
11604                 int ret;
11605                 close(pd[1]);   /* Parent reads from pd[0] */
11606                 close(pu[0]);   /* Parent writes (blocking) to pu[1] */
11607 #ifdef F_SETFL
11608                 if (-1 == fcntl(pd[0], F_SETFL, MY_O_NONBLOCK))
11609                         exit(1);
11610 #else
11611                 exit(4);
11612 #endif
11613                 signal(SIGALRM, blech);
11614                 alarm(5);
11615                 if ((ret = read(pd[0], buf, 1)) > 0)    /* Nothing to read! */
11616                         exit(2);
11617                 sprintf(string, "%d\n", ret);
11618                 write(2, string, strlen(string));
11619                 alarm(0);
11620 #ifdef EAGAIN
11621                 if (errno == EAGAIN) {
11622                         printf("EAGAIN\n");
11623                         goto ok;
11624                 }
11625 #endif
11626 #ifdef EWOULDBLOCK
11627                 if (errno == EWOULDBLOCK)
11628                         printf("EWOULDBLOCK\n");
11629 #endif
11630         ok:
11631                 write(pu[1], buf, 1);   /* Unblocks child, tell it to close our pipe */
11632                 sleep(2);                               /* Give it time to close our pipe */
11633                 alarm(5);
11634                 ret = read(pd[0], buf, 1);      /* Should read EOF */
11635                 alarm(0);
11636                 sprintf(string, "%d\n", ret);
11637                 write(4, string, strlen(string));
11638                 exit(0);
11639         }
11640
11641         close(pd[0]);                   /* We write to pd[1] */
11642         close(pu[1]);                   /* We read from pu[0] */
11643         read(pu[0], buf, 1);    /* Wait for parent to signal us we may continue */
11644         close(pd[1]);                   /* Pipe pd is now fully closed! */
11645         exit(0);                                /* Bye bye, thank you for playing! */
11646 }
11647 EOCP
11648         set try
11649         if eval $compile_ok; then
11650                 echo "$startsh" >mtry
11651                 echo "$run ./try >try.out 2>try.ret 4>try.err || exit 4" >>mtry
11652                 chmod +x mtry
11653                 ./mtry >/dev/null 2>&1
11654                 case $? in
11655                 0) eagain=`$cat try.out`;;
11656                 1) echo "Could not perform non-blocking setting!";;
11657                 2) echo "I did a successful read() for something that was not there!";;
11658                 3) echo "Hmm... non-blocking I/O does not seem to be working!";;
11659                 4) echo "Could not find F_SETFL!";;
11660                 *) echo "Something terribly wrong happened during testing.";;
11661                 esac
11662                 rd_nodata=`$cat try.ret`
11663                 echo "A read() system call with no data present returns $rd_nodata."
11664                 case "$rd_nodata" in
11665                 0|-1) ;;
11666                 *)
11667                         echo "(That's peculiar, fixing that to be -1.)"
11668                         rd_nodata=-1
11669                         ;;
11670                 esac
11671                 case "$eagain" in
11672                 '')
11673                         echo "Forcing errno EAGAIN on read() with no data available."
11674                         eagain=EAGAIN
11675                         ;;
11676                 *)
11677                         echo "Your read() sets errno to $eagain when no data is available."
11678                         ;;
11679                 esac
11680                 status=`$cat try.err`
11681                 case "$status" in
11682                 0) echo "And it correctly returns 0 to signal EOF.";;
11683                 -1) echo "But it also returns -1 to signal EOF, so be careful!";;
11684                 *) echo "However, your read() returns '$status' on EOF??";;
11685                 esac
11686                 val="$define"
11687                 if test "$status" = "$rd_nodata"; then
11688                         echo "WARNING: you can't distinguish between EOF and no data!"
11689                         val="$undef"
11690                 fi
11691         else
11692                 echo "I can't compile the test program--assuming errno EAGAIN will do."
11693                 eagain=EAGAIN
11694         fi
11695         set d_eofnblk
11696         eval $setvar
11697         ;;
11698 *)
11699         echo "Using $hint value $eagain."
11700         echo "Your read() returns $rd_nodata when no data is present."
11701         case "$d_eofnblk" in
11702         "$define") echo "And you can see EOF because read() returns 0.";;
11703         "$undef") echo "But you can't see EOF status from read() returned value.";;
11704         *)
11705                 echo "(Assuming you can't see EOF status from read anyway.)"
11706                 d_eofnblk=$undef
11707                 ;;
11708         esac
11709         ;;
11710 esac
11711 $rm -f try try.* .out core head.c mtry
11712
11713 : see if _ptr and _cnt from stdio act std
11714 echo " "
11715
11716 if $contains '_lbfsize' `./findhdr stdio.h` >/dev/null 2>&1 ; then
11717         echo "(Looks like you have stdio.h from BSD.)"
11718         case "$stdio_ptr" in
11719         '') stdio_ptr='((fp)->_p)'
11720                 ptr_lval=$define
11721                 ;;
11722         *)      ptr_lval=$d_stdio_ptr_lval;;
11723         esac
11724         case "$stdio_cnt" in
11725         '') stdio_cnt='((fp)->_r)'
11726                 cnt_lval=$define
11727                 ;;
11728         *)      cnt_lval=$d_stdio_cnt_lval;;
11729         esac
11730         case "$stdio_base" in
11731         '') stdio_base='((fp)->_ub._base ? (fp)->_ub._base : (fp)->_bf._base)';;
11732         esac
11733         case "$stdio_bufsiz" in
11734         '') stdio_bufsiz='((fp)->_ub._base ? (fp)->_ub._size : (fp)->_bf._size)';;
11735         esac
11736 elif $contains '_IO_fpos_t' `./findhdr stdio.h` `./findhdr libio.h` >/dev/null 2>&1 ; then
11737         echo "(Looks like you have stdio.h from Linux.)"
11738         case "$stdio_ptr" in
11739         '') stdio_ptr='((fp)->_IO_read_ptr)'
11740                 ptr_lval=$define
11741                 ;;
11742         *)      ptr_lval=$d_stdio_ptr_lval;;
11743         esac
11744         case "$stdio_cnt" in
11745         '') stdio_cnt='((fp)->_IO_read_end - (fp)->_IO_read_ptr)'
11746                 cnt_lval=$undef
11747                 ;;
11748         *)      cnt_lval=$d_stdio_cnt_lval;;
11749         esac
11750         case "$stdio_base" in
11751         '') stdio_base='((fp)->_IO_read_base)';;
11752         esac
11753         case "$stdio_bufsiz" in
11754         '') stdio_bufsiz='((fp)->_IO_read_end - (fp)->_IO_read_base)';;
11755         esac
11756 else
11757         case "$stdio_ptr" in
11758         '') stdio_ptr='((fp)->_ptr)'
11759                 ptr_lval=$define
11760                 ;;
11761         *)      ptr_lval=$d_stdio_ptr_lval;;
11762         esac
11763         case "$stdio_cnt" in
11764         '') stdio_cnt='((fp)->_cnt)'
11765                 cnt_lval=$define
11766                 ;;
11767         *)      cnt_lval=$d_stdio_cnt_lval;;
11768         esac
11769         case "$stdio_base" in
11770         '') stdio_base='((fp)->_base)';;
11771         esac
11772         case "$stdio_bufsiz" in
11773         '') stdio_bufsiz='((fp)->_cnt + (fp)->_ptr - (fp)->_base)';;
11774         esac
11775 fi
11776
11777 : test whether _ptr and _cnt really work
11778 echo "Checking how std your stdio is..." >&4
11779 $cat >try.c <<EOP
11780 #include <stdio.h>
11781 #$i_stdlib I_STDLIB
11782 #ifdef I_STDLIB
11783 #include <stdlib.h>
11784 #endif
11785 #define FILE_ptr(fp)    $stdio_ptr
11786 #define FILE_cnt(fp)    $stdio_cnt
11787 int main() {
11788         FILE *fp = fopen("try.c", "r");
11789         char c = getc(fp);
11790         if (
11791                 18 <= FILE_cnt(fp) &&
11792                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
11793         )
11794                 exit(0);
11795         exit(1);
11796 }
11797 EOP
11798 val="$undef"
11799 set try
11800 if eval $compile && $to try.c; then
11801         if $run ./try; then
11802                 echo "Your stdio acts pretty std."
11803                 val="$define"
11804         else
11805                 echo "Your stdio isn't very std."
11806         fi
11807 else
11808         echo "Your stdio doesn't appear very std."
11809 fi
11810 $rm -f try.c try
11811
11812 # glibc 2.2.90 and above apparently change stdio streams so Perl's
11813 # direct buffer manipulation no longer works.  The Configure tests
11814 # should be changed to correctly detect this, but until then,
11815 # the following check should at least let perl compile and run.
11816 # (This quick fix should be updated before 5.8.1.)
11817 # To be defensive, reject all unknown versions, and all versions  > 2.2.9.
11818 # A. Dougherty, June 3, 2002.
11819 case "$d_gnulibc" in
11820 $define)
11821         case "$gnulibc_version" in
11822         2.[01]*)  ;;
11823         2.2) ;;
11824         2.2.[0-9]) ;;
11825         *)  echo "But I will not snoop inside glibc $gnulibc_version stdio buffers."
11826                 val="$undef"
11827                 ;;
11828         esac
11829         ;;
11830 esac
11831 set d_stdstdio
11832 eval $setvar
11833
11834 : Can _ptr be used as an lvalue?
11835 case "$d_stdstdio$ptr_lval" in
11836 $define$define) val=$define ;;
11837 *) val=$undef ;;
11838 esac
11839 set d_stdio_ptr_lval
11840 eval $setvar
11841
11842 : Can _cnt be used as an lvalue?
11843 case "$d_stdstdio$cnt_lval" in
11844 $define$define) val=$define ;;
11845 *) val=$undef ;;
11846 esac
11847 set d_stdio_cnt_lval
11848 eval $setvar
11849
11850
11851 : test whether setting _ptr sets _cnt as a side effect
11852 d_stdio_ptr_lval_sets_cnt="$undef"
11853 d_stdio_ptr_lval_nochange_cnt="$undef"
11854 case "$d_stdio_ptr_lval$d_stdstdio" in
11855 $define$define)
11856         echo "Checking to see what happens if we set the stdio ptr..." >&4
11857 $cat >try.c <<EOP
11858 #include <stdio.h>
11859 /* Can we scream? */
11860 /* Eat dust sed :-) */
11861 /* In the buffer space, no one can hear you scream. */
11862 #$i_stdlib I_STDLIB
11863 #ifdef I_STDLIB
11864 #include <stdlib.h>
11865 #endif
11866 #define FILE_ptr(fp)    $stdio_ptr
11867 #define FILE_cnt(fp)    $stdio_cnt
11868 #include <sys/types.h>
11869 int main() {
11870         FILE *fp = fopen("try.c", "r");
11871         int c;
11872         char *ptr;
11873         size_t cnt;
11874         if (!fp) {
11875             puts("Fail even to read");
11876             exit(1);
11877         }
11878         c = getc(fp); /* Read away the first # */
11879         if (c == EOF) {
11880             puts("Fail even to read");
11881             exit(1);
11882         }
11883         if (!(
11884                 18 <= FILE_cnt(fp) &&
11885                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
11886         )) {
11887                 puts("Fail even to read");
11888                 exit (1);
11889         }
11890         ptr = (char*) FILE_ptr(fp);
11891         cnt = (size_t)FILE_cnt(fp);
11892
11893         FILE_ptr(fp) += 42;
11894
11895         if ((char*)FILE_ptr(fp) != (ptr + 42)) {
11896                 printf("Fail ptr check %p != %p", FILE_ptr(fp), (ptr + 42));
11897                 exit (1);
11898         }
11899         if (FILE_cnt(fp) <= 20) {
11900                 printf ("Fail (<20 chars to test)");
11901                 exit (1);
11902         }
11903         if (strncmp(FILE_ptr(fp), "Eat dust sed :-) */\n", 20) != 0) {
11904                 puts("Fail compare");
11905                 exit (1);
11906         }
11907         if (cnt == FILE_cnt(fp)) {
11908                 puts("Pass_unchanged");
11909                 exit (0);
11910         }       
11911         if (FILE_cnt(fp) == (cnt - 42)) {
11912                 puts("Pass_changed");
11913                 exit (0);
11914         }
11915         printf("Fail count was %d now %d\n", cnt, FILE_cnt(fp));
11916         return 1;
11917
11918 }
11919 EOP
11920         set try
11921         if eval $compile && $to try.c; then
11922                 case `$run ./try` in
11923                 Pass_changed)
11924                         echo "Increasing ptr in your stdio decreases cnt by the same amount.  Good." >&4
11925                         d_stdio_ptr_lval_sets_cnt="$define" ;;
11926                 Pass_unchanged)
11927                         echo "Increasing ptr in your stdio leaves cnt unchanged.  Good." >&4
11928                         d_stdio_ptr_lval_nochange_cnt="$define" ;;
11929                 Fail*)
11930                         echo "Increasing ptr in your stdio didn't do exactly what I expected.  We'll not be doing that then." >&4 ;;
11931                 *)
11932                         echo "It appears attempting to set ptr in your stdio is a bad plan." >&4 ;;
11933         esac
11934         else
11935                 echo "It seems we can't set ptr in your stdio.  Nevermind." >&4
11936         fi
11937         $rm -f try.c try
11938         ;;
11939 esac
11940
11941 : see if _base is also standard
11942 val="$undef"
11943 case "$d_stdstdio" in
11944 $define)
11945         $cat >try.c <<EOP
11946 #include <stdio.h>
11947 #$i_stdlib I_STDLIB
11948 #ifdef I_STDLIB
11949 #include <stdlib.h>
11950 #endif
11951 #define FILE_base(fp)   $stdio_base
11952 #define FILE_bufsiz(fp) $stdio_bufsiz
11953 int main() {
11954         FILE *fp = fopen("try.c", "r");
11955         char c = getc(fp);
11956         if (
11957                 19 <= FILE_bufsiz(fp) &&
11958                 strncmp(FILE_base(fp), "#include <stdio.h>\n", 19) == 0
11959         )
11960                 exit(0);
11961         exit(1);
11962 }
11963 EOP
11964         set try
11965         if eval $compile && $to try.c; then
11966                 if $run ./try; then
11967                         echo "And its _base field acts std."
11968                         val="$define"
11969                 else
11970                         echo "But its _base field isn't std."
11971                 fi
11972         else
11973                 echo "However, it seems to be lacking the _base field."
11974         fi
11975         $rm -f try.c try
11976         ;;
11977 esac
11978 set d_stdiobase
11979 eval $setvar
11980
11981 : see if fast_stdio exists
11982 val="$undef"
11983 case "$d_stdstdio:$d_stdio_ptr_lval" in
11984 "$define:$define")
11985         case "$d_stdio_cnt_lval$d_stdio_ptr_lval_sets_cnt" in
11986         *$define*)
11987                 echo "You seem to have 'fast stdio' to directly manipulate the stdio buffers." >& 4
11988                 val="$define"
11989                 ;;
11990         esac
11991         ;;
11992 esac
11993 set d_faststdio
11994 eval $setvar
11995
11996
11997
11998 : see if fchdir exists
11999 set fchdir d_fchdir
12000 eval $inlibc
12001
12002 : see if fchmod exists
12003 set fchmod d_fchmod
12004 eval $inlibc
12005
12006 : see if fchown exists
12007 set fchown d_fchown
12008 eval $inlibc
12009
12010 : see if this is an fcntl system
12011 set fcntl d_fcntl
12012 eval $inlibc
12013
12014 echo " "
12015 : See if fcntl-based locking works.
12016 $cat >try.c <<EOCP
12017 #$i_stdlib I_STDLIB
12018 #ifdef I_STDLIB
12019 #include <stdlib.h>
12020 #endif
12021 #include <unistd.h>
12022 #include <fcntl.h>
12023 #include <signal.h>
12024 $signal_t blech(x) int x; { exit(3); }
12025 int main() {
12026 #if defined(F_SETLK) && defined(F_SETLKW)
12027      struct flock flock;
12028      int retval, fd;
12029      fd = open("try.c", O_RDONLY);
12030      flock.l_type = F_RDLCK;
12031      flock.l_whence = SEEK_SET;
12032      flock.l_start = flock.l_len = 0;
12033      signal(SIGALRM, blech);
12034      alarm(10);
12035      retval = fcntl(fd, F_SETLK, &flock);
12036      close(fd);
12037      (retval < 0 ? exit(2) : exit(0));
12038 #else
12039      exit(2);
12040 #endif
12041 }
12042 EOCP
12043 echo "Checking if fcntl-based file locking works... "
12044 case "$d_fcntl" in
12045 "$define")
12046         set try
12047         if eval $compile_ok; then
12048                 if $run ./try; then
12049                         echo "Yes, it seems to work."
12050                         val="$define"
12051                 else
12052                         echo "Nope, it didn't work."
12053                         val="$undef"
12054                         case "$?" in
12055                         3) $cat >&4 <<EOM
12056 ***
12057 *** I had to forcibly timeout from fcntl(..., F_SETLK, ...).
12058 *** This is (almost) impossible.
12059 *** If your NFS lock daemons are not feeling well, something like
12060 *** this may happen, please investigate.  Cannot continue, aborting.
12061 ***
12062 EOM
12063                                 exit 1
12064                                 ;;
12065                         esac
12066                 fi
12067         else
12068                 echo "I'm unable to compile the test program, so I'll assume not."
12069                 val="$undef"
12070         fi
12071         ;;
12072 *) val="$undef";
12073         echo "Nope, since you don't even have fcntl()."
12074         ;;
12075 esac
12076 set d_fcntl_can_lock
12077 eval $setvar
12078 $rm -f try*
12079
12080
12081 : check for fd_set items
12082 $cat <<EOM
12083
12084 Checking to see how well your C compiler handles fd_set and friends ...
12085 EOM
12086 $cat >try.c <<EOCP
12087 #$i_stdlib I_STDLIB
12088 #ifdef I_STDLIB
12089 #include <stdlib.h>
12090 #endif
12091 #$i_systime I_SYS_TIME
12092 #$i_sysselct I_SYS_SELECT
12093 #$d_socket HAS_SOCKET
12094 #include <sys/types.h>
12095 #ifdef HAS_SOCKET
12096 #include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
12097 #endif
12098 #ifdef I_SYS_TIME
12099 #include <sys/time.h>
12100 #endif
12101 #ifdef I_SYS_SELECT
12102 #include <sys/select.h>
12103 #endif
12104 int main() {
12105         fd_set fds;
12106
12107 #ifdef TRYBITS
12108         if(fds.fds_bits);
12109 #endif
12110
12111 #if defined(FD_SET) && defined(FD_CLR) && defined(FD_ISSET) && defined(FD_ZERO)
12112         exit(0);
12113 #else
12114         exit(1);
12115 #endif
12116 }
12117 EOCP
12118 set try -DTRYBITS
12119 if eval $compile; then
12120         d_fds_bits="$define"
12121         d_fd_set="$define"
12122         echo "Well, your system knows about the normal fd_set typedef..." >&4
12123         if $run ./try; then
12124                 echo "and you have the normal fd_set macros (just as I'd expect)." >&4
12125                 d_fd_macros="$define"
12126         else
12127                 $cat >&4 <<'EOM'
12128 but not the normal fd_set macros!  Gaaack!  I'll have to cover for you.
12129 EOM
12130                 d_fd_macros="$undef"
12131         fi
12132 else
12133         $cat <<'EOM'
12134 Hmm, your compiler has some difficulty with fd_set.  Checking further...
12135 EOM
12136         set try
12137         if eval $compile; then
12138                 d_fds_bits="$undef"
12139                 d_fd_set="$define"
12140                 echo "Well, your system has some sort of fd_set available..." >&4
12141                 if $run ./try; then
12142                         echo "and you have the normal fd_set macros." >&4
12143                         d_fd_macros="$define"
12144                 else
12145                         $cat <<'EOM'
12146 but not the normal fd_set macros!  Gross!  More work for me...
12147 EOM
12148                         d_fd_macros="$undef"
12149                 fi
12150         else
12151         echo "Well, you got zip.  That's OK, I can roll my own fd_set stuff." >&4
12152                 d_fd_set="$undef"
12153                 d_fds_bits="$undef"
12154                 d_fd_macros="$undef"
12155         fi
12156 fi
12157 $rm -f try try.*
12158
12159 : see if fgetpos exists
12160 set fgetpos d_fgetpos
12161 eval $inlibc
12162
12163 : see if finite exists
12164 set finite d_finite
12165 eval $inlibc
12166
12167 : see if finitel exists
12168 set finitel d_finitel
12169 eval $inlibc
12170
12171 : see if flock exists
12172 set flock d_flock
12173 eval $inlibc
12174
12175 : see if prototype for flock is available
12176 echo " "
12177 set d_flockproto flock $i_sysfile sys/file.h
12178 eval $hasproto
12179
12180 : see if fork exists
12181 set fork d_fork
12182 eval $inlibc
12183
12184 : see if fp_class exists
12185 set fp_class d_fp_class
12186 eval $inlibc
12187
12188 : see if pathconf exists
12189 set pathconf d_pathconf
12190 eval $inlibc
12191
12192 : see if fpathconf exists
12193 set fpathconf d_fpathconf
12194 eval $inlibc
12195
12196 : see if fpclass exists
12197 set fpclass d_fpclass
12198 eval $inlibc
12199
12200 : see if fpclassify exists
12201 set fpclassify d_fpclassify
12202 eval $inlibc
12203
12204 : see if fpclassl exists
12205 set fpclassl d_fpclassl
12206 eval $inlibc
12207
12208
12209 : check for fpos64_t
12210 echo " "
12211 echo "Checking to see if you have fpos64_t..." >&4
12212 $cat >try.c <<EOCP
12213 #include <stdio.h>
12214 int main() { fpos64_t x = 7; }
12215 EOCP
12216 set try
12217 if eval $compile; then
12218         val="$define"
12219         echo "You have fpos64_t."
12220 else
12221         val="$undef"
12222         echo "You do not have fpos64_t."
12223         case "$fpossize" in
12224         8) echo "(Your fpos_t is 64 bits, so you could use that.)" ;;
12225         esac
12226 fi
12227 $rm -f try.* try
12228 set d_fpos64_t
12229 eval $setvar
12230
12231 : see if frexpl exists
12232 set frexpl d_frexpl
12233 eval $inlibc
12234
12235 : see if this is a sys/param system
12236 set sys/param.h i_sysparam
12237 eval $inhdr
12238
12239 : see if this is a sys/mount.h system
12240 set sys/mount.h i_sysmount
12241 eval $inhdr
12242
12243
12244 echo " "
12245 echo "Checking to see if your system supports struct fs_data..." >&4
12246 set d_fs_data_s fs_data $i_systypes sys/types.h $i_sysparam sys/param.h $i_sysmount sys/mount.h
12247 eval $hasstruct
12248 case "$d_fs_data_s" in
12249 "$define")      echo "Yes, it does."   ;;
12250 *)              echo "No, it doesn't." ;;
12251 esac
12252
12253 : see if fseeko exists
12254 set fseeko d_fseeko
12255 eval $inlibc
12256 case "$longsize" in
12257 8) echo "(Your long is 64 bits, so you could use fseek.)" ;;
12258 esac
12259
12260 : see if fsetpos exists
12261 set fsetpos d_fsetpos
12262 eval $inlibc
12263
12264
12265 : see if fstatfs exists
12266 set fstatfs d_fstatfs
12267 eval $inlibc
12268
12269
12270 : see if statvfs exists
12271 set statvfs d_statvfs
12272 eval $inlibc
12273
12274 : see if fstatvfs exists
12275 set fstatvfs d_fstatvfs
12276 eval $inlibc
12277
12278
12279 : see if fsync exists
12280 set fsync d_fsync
12281 eval $inlibc
12282
12283 : see if ftello exists
12284 set ftello d_ftello
12285 eval $inlibc
12286 case "$longsize" in
12287 8) echo "(Your long is 64 bits, so you could use ftell.)" ;;
12288 esac
12289
12290 : see if getcwd exists
12291 set getcwd d_getcwd
12292 eval $inlibc
12293
12294 : see if getespwnam exists
12295 set getespwnam d_getespwnam
12296 eval $inlibc
12297
12298
12299 : see if getfsstat exists
12300 set getfsstat d_getfsstat
12301 eval $inlibc
12302
12303 : see if getgrent exists
12304 set getgrent d_getgrent
12305 eval $inlibc
12306
12307 : see if getgrent_r exists
12308 set getgrent_r d_getgrent_r
12309 eval $inlibc
12310 case "$d_getgrent_r" in
12311 "$define")
12312         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12313         case "$d_getgrent_r_proto:$usethreads" in
12314         ":define")      d_getgrent_r_proto=define
12315                 set d_getgrent_r_proto getgrent_r $hdrs
12316                 eval $hasproto ;;
12317         *)      ;;
12318         esac
12319         case "$d_getgrent_r_proto" in
12320         define)
12321         case "$getgrent_r_proto" in
12322         ''|0) try='int getgrent_r(struct group*, char*, size_t, struct group**);'
12323         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBWR ;;
12324         esac
12325         case "$getgrent_r_proto" in
12326         ''|0) try='int getgrent_r(struct group*, char*, int, struct group**);'
12327         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIR ;;
12328         esac
12329         case "$getgrent_r_proto" in
12330         ''|0) try='struct group* getgrent_r(struct group*, char*, size_t);'
12331         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBW ;;
12332         esac
12333         case "$getgrent_r_proto" in
12334         ''|0) try='struct group* getgrent_r(struct group*, char*, int);'
12335         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBI ;;
12336         esac
12337         case "$getgrent_r_proto" in
12338         ''|0) try='int getgrent_r(struct group*, char*, int);'
12339         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBI ;;
12340         esac
12341         case "$getgrent_r_proto" in
12342         ''|0) try='int getgrent_r(struct group*, char*, int, FILE**);'
12343         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIH ;;
12344         esac
12345         case "$getgrent_r_proto" in
12346         ''|0)   d_getgrent_r=undef
12347                 getgrent_r_proto=0
12348                 echo "Disabling getgrent_r, cannot determine prototype." >&4 ;;
12349         * )     case "$getgrent_r_proto" in
12350                 REENTRANT_PROTO*) ;;
12351                 *) getgrent_r_proto="REENTRANT_PROTO_$getgrent_r_proto" ;;
12352                 esac
12353                 echo "Prototype: $try" ;;
12354         esac
12355         ;;
12356         *)      case "$usethreads" in
12357                 define) echo "getgrent_r has no prototype, not using it." >&4 ;;
12358                 esac
12359                 d_getgrent_r=undef
12360                 getgrent_r_proto=0
12361                 ;;
12362         esac
12363         ;;
12364 *)      getgrent_r_proto=0
12365         ;;
12366 esac
12367
12368 : see if getgrgid_r exists
12369 set getgrgid_r d_getgrgid_r
12370 eval $inlibc
12371 case "$d_getgrgid_r" in
12372 "$define")
12373         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12374         case "$d_getgrgid_r_proto:$usethreads" in
12375         ":define")      d_getgrgid_r_proto=define
12376                 set d_getgrgid_r_proto getgrgid_r $hdrs
12377                 eval $hasproto ;;
12378         *)      ;;
12379         esac
12380         case "$d_getgrgid_r_proto" in
12381         define)
12382         case "$getgrgid_r_proto" in
12383         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, size_t, struct group**);'
12384         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBWR ;;
12385         esac
12386         case "$getgrgid_r_proto" in
12387         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int, struct group**);'
12388         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBIR ;;
12389         esac
12390         case "$getgrgid_r_proto" in
12391         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int);'
12392         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBI ;;
12393         esac
12394         case "$getgrgid_r_proto" in
12395         ''|0) try='struct group* getgrgid_r(gid_t, struct group*, char*, int);'
12396         ./protochk "extern $try" $hdrs && getgrgid_r_proto=S_TSBI ;;
12397         esac
12398         case "$getgrgid_r_proto" in
12399         ''|0)   d_getgrgid_r=undef
12400                 getgrgid_r_proto=0
12401                 echo "Disabling getgrgid_r, cannot determine prototype." >&4 ;;
12402         * )     case "$getgrgid_r_proto" in
12403                 REENTRANT_PROTO*) ;;
12404                 *) getgrgid_r_proto="REENTRANT_PROTO_$getgrgid_r_proto" ;;
12405                 esac
12406                 echo "Prototype: $try" ;;
12407         esac
12408         ;;
12409         *)      case "$usethreads" in
12410                 define) echo "getgrgid_r has no prototype, not using it." >&4 ;;
12411                 esac
12412                 d_getgrgid_r=undef
12413                 getgrgid_r_proto=0
12414                 ;;
12415         esac
12416         ;;
12417 *)      getgrgid_r_proto=0
12418         ;;
12419 esac
12420
12421 : see if getgrnam_r exists
12422 set getgrnam_r d_getgrnam_r
12423 eval $inlibc
12424 case "$d_getgrnam_r" in
12425 "$define")
12426         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12427         case "$d_getgrnam_r_proto:$usethreads" in
12428         ":define")      d_getgrnam_r_proto=define
12429                 set d_getgrnam_r_proto getgrnam_r $hdrs
12430                 eval $hasproto ;;
12431         *)      ;;
12432         esac
12433         case "$d_getgrnam_r_proto" in
12434         define)
12435         case "$getgrnam_r_proto" in
12436         ''|0) try='int getgrnam_r(const char*, struct group*, char*, size_t, struct group**);'
12437         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBWR ;;
12438         esac
12439         case "$getgrnam_r_proto" in
12440         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int, struct group**);'
12441         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBIR ;;
12442         esac
12443         case "$getgrnam_r_proto" in
12444         ''|0) try='struct group* getgrnam_r(const char*, char*, int);'
12445         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CBI ;;
12446         esac
12447         case "$getgrnam_r_proto" in
12448         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int);'
12449         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBI ;;
12450         esac
12451         case "$getgrnam_r_proto" in
12452         ''|0) try='struct group* getgrnam_r(const char*, struct group*, char*, int);'
12453         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CSBI ;;
12454         esac
12455         case "$getgrnam_r_proto" in
12456         ''|0)   d_getgrnam_r=undef
12457                 getgrnam_r_proto=0
12458                 echo "Disabling getgrnam_r, cannot determine prototype." >&4 ;;
12459         * )     case "$getgrnam_r_proto" in
12460                 REENTRANT_PROTO*) ;;
12461                 *) getgrnam_r_proto="REENTRANT_PROTO_$getgrnam_r_proto" ;;
12462                 esac
12463                 echo "Prototype: $try" ;;
12464         esac
12465         ;;
12466         *)      case "$usethreads" in
12467                 define) echo "getgrnam_r has no prototype, not using it." >&4 ;;
12468                 esac
12469                 d_getgrnam_r=undef
12470                 getgrnam_r_proto=0
12471                 ;;
12472         esac
12473         ;;
12474 *)      getgrnam_r_proto=0
12475         ;;
12476 esac
12477
12478 : see if gethostbyaddr exists
12479 set gethostbyaddr d_gethbyaddr
12480 eval $inlibc
12481
12482 : see if gethostbyname exists
12483 set gethostbyname d_gethbyname
12484 eval $inlibc
12485
12486 : see if gethostent exists
12487 set gethostent d_gethent
12488 eval $inlibc
12489
12490 : see how we will look up host name
12491 echo " "
12492 call=''
12493 if set gethostname val -f d_gethname; eval $csym; $val; then
12494         echo 'gethostname() found.' >&4
12495         d_gethname="$define"
12496         call=gethostname
12497 fi
12498 if set uname val -f d_uname; eval $csym; $val; then
12499         if ./xenix; then
12500                 $cat <<'EOM'
12501 uname() was found, but you're running xenix, and older versions of xenix
12502 have a broken uname(). If you don't really know whether your xenix is old
12503 enough to have a broken system call, use the default answer.
12504
12505 EOM
12506                 dflt=y
12507                 case "$d_uname" in
12508                 "$define") dflt=n;;
12509                 esac
12510                 rp='Is your uname() broken?'
12511                 . ./myread
12512                 case "$ans" in
12513                 n*) d_uname="$define"; call=uname;;
12514                 esac
12515         else
12516                 echo 'uname() found.' >&4
12517                 d_uname="$define"
12518                 case "$call" in
12519                 '') call=uname ;;
12520                 esac
12521         fi
12522 fi
12523 case "$d_gethname" in
12524 '') d_gethname="$undef";;
12525 esac
12526 case "$d_uname" in
12527 '') d_uname="$undef";;
12528 esac
12529 case "$d_uname$d_gethname" in
12530 *define*)
12531         dflt=n
12532         cat <<EOM
12533  
12534 Every now and then someone has a $call() that lies about the hostname
12535 but can't be fixed for political or economic reasons.  If you wish, I can
12536 pretend $call() isn't there and maybe compute hostname at run-time
12537 thanks to the '$phostname' command.
12538
12539 EOM
12540         rp="Shall I ignore $call() from now on?"
12541         . ./myread
12542         case "$ans" in
12543         y*) d_uname="$undef" d_gethname="$undef"; $echo $n "Okay...$c";;
12544         esac;;
12545 esac
12546 case "$phostname" in
12547 '') aphostname='';;
12548 *) case "$aphostname" in
12549         /*) ;;
12550         *) set X $phostname
12551                 shift
12552                 file=$1
12553                 shift
12554                 file=`./loc $file $file $pth`
12555                 aphostname=`echo $file $*`
12556                 ;;
12557         esac
12558         ;;
12559 esac
12560 case "$d_uname$d_gethname" in
12561 *define*) ;;
12562 *)
12563         case "$phostname" in
12564         '')
12565                 echo "There will be no way for $package to get your hostname." >&4;;
12566         *)
12567         echo "I'll use 'popen("'"'$aphostname'", "r")'"' to get your hostname." >&4
12568                 ;;
12569         esac;;
12570 esac
12571 case "$d_phostname" in
12572 '') d_phostname="$undef";;
12573 esac
12574
12575 : see if gethostbyaddr_r exists
12576 set gethostbyaddr_r d_gethostbyaddr_r
12577 eval $inlibc
12578 case "$d_gethostbyaddr_r" in
12579 "$define")
12580         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12581         case "$d_gethostbyaddr_r_proto:$usethreads" in
12582         ":define")      d_gethostbyaddr_r_proto=define
12583                 set d_gethostbyaddr_r_proto gethostbyaddr_r $hdrs
12584                 eval $hasproto ;;
12585         *)      ;;
12586         esac
12587         case "$d_gethostbyaddr_r_proto" in
12588         define)
12589         case "$gethostbyaddr_r_proto" in
12590         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
12591         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISBWRE ;;
12592         esac
12593         case "$gethostbyaddr_r_proto" in
12594         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, int, int*);'
12595         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBWIE ;;
12596         esac
12597         case "$gethostbyaddr_r_proto" in
12598         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, int, int*);'
12599         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBIE ;;
12600         esac
12601         case "$gethostbyaddr_r_proto" in
12602         ''|0) try='struct hostent* gethostbyaddr_r(const void*, size_t, int, struct hostent*, char*, int, int*);'
12603         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TWISBIE ;;
12604         esac
12605         case "$gethostbyaddr_r_proto" in
12606         ''|0) try='struct hostent* gethostbyaddr_r(const char*, int, int, struct hostent*, char*, int, int*);'
12607         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CIISBIE ;;
12608         esac
12609         case "$gethostbyaddr_r_proto" in
12610         ''|0) try='struct hostent* gethostbyaddr_r(const char*, struct hostent*, char*, int, int*);'
12611         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CSBIE ;;
12612         esac
12613         case "$gethostbyaddr_r_proto" in
12614         ''|0) try='struct hostent* gethostbyaddr_r(const void*, struct hostent*, char*, int, int*);'
12615         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TSBIE ;;
12616         esac
12617         case "$gethostbyaddr_r_proto" in
12618         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, struct hostent_data*);'
12619         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISD ;;
12620         esac
12621         case "$gethostbyaddr_r_proto" in
12622         ''|0) try='int gethostbyaddr_r(const char*, int, int, struct hostent*, struct hostent_data*);'
12623         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CIISD ;;
12624         esac
12625         case "$gethostbyaddr_r_proto" in
12626         ''|0) try='int gethostbyaddr_r(const char*, int, int);'
12627         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CII ;;
12628         esac
12629         case "$gethostbyaddr_r_proto" in
12630         ''|0) try='int gethostbyaddr_r(const void*, socklen_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
12631         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_TsISBWRE ;;
12632         esac
12633         case "$gethostbyaddr_r_proto" in
12634         ''|0)   d_gethostbyaddr_r=undef
12635                 gethostbyaddr_r_proto=0
12636                 echo "Disabling gethostbyaddr_r, cannot determine prototype." >&4 ;;
12637         * )     case "$gethostbyaddr_r_proto" in
12638                 REENTRANT_PROTO*) ;;
12639                 *) gethostbyaddr_r_proto="REENTRANT_PROTO_$gethostbyaddr_r_proto" ;;
12640                 esac
12641                 echo "Prototype: $try" ;;
12642         esac
12643         ;;
12644         *)      case "$usethreads" in
12645                 define) echo "gethostbyaddr_r has no prototype, not using it." >&4 ;;
12646                 esac
12647                 d_gethostbyaddr_r=undef
12648                 gethostbyaddr_r_proto=0
12649                 ;;
12650         esac
12651         ;;
12652 *)      gethostbyaddr_r_proto=0
12653         ;;
12654 esac
12655
12656 : see if gethostbyname_r exists
12657 set gethostbyname_r d_gethostbyname_r
12658 eval $inlibc
12659 case "$d_gethostbyname_r" in
12660 "$define")
12661         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12662         case "$d_gethostbyname_r_proto:$usethreads" in
12663         ":define")      d_gethostbyname_r_proto=define
12664                 set d_gethostbyname_r_proto gethostbyname_r $hdrs
12665                 eval $hasproto ;;
12666         *)      ;;
12667         esac
12668         case "$d_gethostbyname_r_proto" in
12669         define)
12670         case "$gethostbyname_r_proto" in
12671         ''|0) try='int gethostbyname_r(const char*, struct hostent*, char*, size_t, struct hostent**, int*);'
12672         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSBWRE ;;
12673         esac
12674         case "$gethostbyname_r_proto" in
12675         ''|0) try='struct hostent* gethostbyname_r(const char*, struct hostent*, char*, int, int*);'
12676         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=S_CSBIE ;;
12677         esac
12678         case "$gethostbyname_r_proto" in
12679         ''|0) try='int gethostbyname_r(const char*, struct hostent*, struct hostent_data*);'
12680         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSD ;;
12681         esac
12682         case "$gethostbyname_r_proto" in
12683         ''|0)   d_gethostbyname_r=undef
12684                 gethostbyname_r_proto=0
12685                 echo "Disabling gethostbyname_r, cannot determine prototype." >&4 ;;
12686         * )     case "$gethostbyname_r_proto" in
12687                 REENTRANT_PROTO*) ;;
12688                 *) gethostbyname_r_proto="REENTRANT_PROTO_$gethostbyname_r_proto" ;;
12689                 esac
12690                 echo "Prototype: $try" ;;
12691         esac
12692         ;;
12693         *)      case "$usethreads" in
12694                 define) echo "gethostbyname_r has no prototype, not using it." >&4 ;;
12695                 esac
12696                 d_gethostbyname_r=undef
12697                 gethostbyname_r_proto=0
12698                 ;;
12699         esac
12700         ;;
12701 *)      gethostbyname_r_proto=0
12702         ;;
12703 esac
12704
12705 : see if gethostent_r exists
12706 set gethostent_r d_gethostent_r
12707 eval $inlibc
12708 case "$d_gethostent_r" in
12709 "$define")
12710         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12711         case "$d_gethostent_r_proto:$usethreads" in
12712         ":define")      d_gethostent_r_proto=define
12713                 set d_gethostent_r_proto gethostent_r $hdrs
12714                 eval $hasproto ;;
12715         *)      ;;
12716         esac
12717         case "$d_gethostent_r_proto" in
12718         define)
12719         case "$gethostent_r_proto" in
12720         ''|0) try='int gethostent_r(struct hostent*, char*, size_t, struct hostent**, int*);'
12721         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBWRE ;;
12722         esac
12723         case "$gethostent_r_proto" in
12724         ''|0) try='int gethostent_r(struct hostent*, char*, int, int*);'
12725         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBIE ;;
12726         esac
12727         case "$gethostent_r_proto" in
12728         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int, int*);'
12729         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBIE ;;
12730         esac
12731         case "$gethostent_r_proto" in
12732         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int);'
12733         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBI ;;
12734         esac
12735         case "$gethostent_r_proto" in
12736         ''|0) try='int gethostent_r(struct hostent*, char*, int);'
12737         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBI ;;
12738         esac
12739         case "$gethostent_r_proto" in
12740         ''|0) try='int gethostent_r(struct hostent*, struct hostent_data*);'
12741         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SD ;;
12742         esac
12743         case "$gethostent_r_proto" in
12744         ''|0)   d_gethostent_r=undef
12745                 gethostent_r_proto=0
12746                 echo "Disabling gethostent_r, cannot determine prototype." >&4 ;;
12747         * )     case "$gethostent_r_proto" in
12748                 REENTRANT_PROTO*) ;;
12749                 *) gethostent_r_proto="REENTRANT_PROTO_$gethostent_r_proto" ;;
12750                 esac
12751                 echo "Prototype: $try" ;;
12752         esac
12753         ;;
12754         *)      case "$usethreads" in
12755                 define) echo "gethostent_r has no prototype, not using it." >&4 ;;
12756                 esac
12757                 d_gethostent_r=undef
12758                 gethostent_r_proto=0
12759                 ;;
12760         esac
12761         ;;
12762 *)      gethostent_r_proto=0
12763         ;;
12764 esac
12765
12766 : see if prototypes for various gethostxxx netdb.h functions are available
12767 echo " "
12768 set d_gethostprotos gethostent $i_netdb netdb.h
12769 eval $hasproto
12770
12771 : see if getitimer exists
12772 set getitimer d_getitimer
12773 eval $inlibc
12774
12775 : see if getlogin exists
12776 set getlogin d_getlogin
12777 eval $inlibc
12778
12779 : see if getlogin_r exists
12780 set getlogin_r d_getlogin_r
12781 eval $inlibc
12782 case "$d_getlogin_r" in
12783 "$define")
12784         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
12785         case "$d_getlogin_r_proto:$usethreads" in
12786         ":define")      d_getlogin_r_proto=define
12787                 set d_getlogin_r_proto getlogin_r $hdrs
12788                 eval $hasproto ;;
12789         *)      ;;
12790         esac
12791         case "$d_getlogin_r_proto" in
12792         define)
12793         case "$getlogin_r_proto" in
12794         ''|0) try='int getlogin_r(char*, size_t);'
12795         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BW ;;
12796         esac
12797         case "$getlogin_r_proto" in
12798         ''|0) try='int getlogin_r(char*, int);'
12799         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BI ;;
12800         esac
12801         case "$getlogin_r_proto" in
12802         ''|0) try='char* getlogin_r(char*, size_t);'
12803         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BW ;;
12804         esac
12805         case "$getlogin_r_proto" in
12806         ''|0) try='char* getlogin_r(char*, int);'
12807         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BI ;;
12808         esac
12809         case "$getlogin_r_proto" in
12810         ''|0)   d_getlogin_r=undef
12811                 getlogin_r_proto=0
12812                 echo "Disabling getlogin_r, cannot determine prototype." >&4 ;;
12813         * )     case "$getlogin_r_proto" in
12814                 REENTRANT_PROTO*) ;;
12815                 *) getlogin_r_proto="REENTRANT_PROTO_$getlogin_r_proto" ;;
12816                 esac
12817                 echo "Prototype: $try" ;;
12818         esac
12819         ;;
12820         *)      case "$usethreads" in
12821                 define) echo "getlogin_r has no prototype, not using it." >&4 ;;
12822                 esac
12823                 d_getlogin_r=undef
12824                 getlogin_r_proto=0
12825                 ;;
12826         esac
12827         ;;
12828 *)      getlogin_r_proto=0
12829         ;;
12830 esac
12831
12832 : see if getmnt exists
12833 set getmnt d_getmnt
12834 eval $inlibc
12835
12836 : see if getmntent exists
12837 set getmntent d_getmntent
12838 eval $inlibc
12839
12840 : see if getnetbyaddr exists
12841 set getnetbyaddr d_getnbyaddr
12842 eval $inlibc
12843
12844 : see if getnetbyname exists
12845 set getnetbyname d_getnbyname
12846 eval $inlibc
12847
12848 : see if getnetent exists
12849 set getnetent d_getnent
12850 eval $inlibc
12851
12852 : see if getnetbyaddr_r exists
12853 set getnetbyaddr_r d_getnetbyaddr_r
12854 eval $inlibc
12855 case "$d_getnetbyaddr_r" in
12856 "$define")
12857         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12858         case "$d_getnetbyaddr_r_proto:$usethreads" in
12859         ":define")      d_getnetbyaddr_r_proto=define
12860                 set d_getnetbyaddr_r_proto getnetbyaddr_r $hdrs
12861                 eval $hasproto ;;
12862         *)      ;;
12863         esac
12864         case "$d_getnetbyaddr_r_proto" in
12865         define)
12866         case "$getnetbyaddr_r_proto" in
12867         ''|0) try='int getnetbyaddr_r(unsigned long, int, struct netent*, char*, size_t, struct netent**, int*);'
12868         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_UISBWRE ;;
12869         esac
12870         case "$getnetbyaddr_r_proto" in
12871         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, char*, int);'
12872         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISBI ;;
12873         esac
12874         case "$getnetbyaddr_r_proto" in
12875         ''|0) try='struct netent* getnetbyaddr_r(in_addr_t, int, struct netent*, char*, int);'
12876         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_TISBI ;;
12877         esac
12878         case "$getnetbyaddr_r_proto" in
12879         ''|0) try='struct netent* getnetbyaddr_r(long, int, struct netent*, char*, int);'
12880         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_LISBI ;;
12881         esac
12882         case "$getnetbyaddr_r_proto" in
12883         ''|0) try='int getnetbyaddr_r(in_addr_t, int, struct netent*, struct netent_data*);'
12884         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_TISD ;;
12885         esac
12886         case "$getnetbyaddr_r_proto" in
12887         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, struct netent_data*);'
12888         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISD ;;
12889         esac
12890         case "$getnetbyaddr_r_proto" in
12891         ''|0) try='int getnetbyaddr_r(int, int, struct netent*, struct netent_data*);'
12892         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_IISD ;;
12893         esac
12894         case "$getnetbyaddr_r_proto" in
12895         ''|0) try='int getnetbyaddr_r(uint32_t, int, struct netent*, char*, size_t, struct netent**, int*);'
12896         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_uISBWRE ;;
12897         esac
12898         case "$getnetbyaddr_r_proto" in
12899         ''|0)   d_getnetbyaddr_r=undef
12900                 getnetbyaddr_r_proto=0
12901                 echo "Disabling getnetbyaddr_r, cannot determine prototype." >&4 ;;
12902         * )     case "$getnetbyaddr_r_proto" in
12903                 REENTRANT_PROTO*) ;;
12904                 *) getnetbyaddr_r_proto="REENTRANT_PROTO_$getnetbyaddr_r_proto" ;;
12905                 esac
12906                 echo "Prototype: $try" ;;
12907         esac
12908         ;;
12909         *)      case "$usethreads" in
12910                 define) echo "getnetbyaddr_r has no prototype, not using it." >&4 ;;
12911                 esac
12912                 d_getnetbyaddr_r=undef
12913                 getnetbyaddr_r_proto=0
12914                 ;;
12915         esac
12916         ;;
12917 *)      getnetbyaddr_r_proto=0
12918         ;;
12919 esac
12920
12921 : see if getnetbyname_r exists
12922 set getnetbyname_r d_getnetbyname_r
12923 eval $inlibc
12924 case "$d_getnetbyname_r" in
12925 "$define")
12926         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12927         case "$d_getnetbyname_r_proto:$usethreads" in
12928         ":define")      d_getnetbyname_r_proto=define
12929                 set d_getnetbyname_r_proto getnetbyname_r $hdrs
12930                 eval $hasproto ;;
12931         *)      ;;
12932         esac
12933         case "$d_getnetbyname_r_proto" in
12934         define)
12935         case "$getnetbyname_r_proto" in
12936         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, size_t, struct netent**, int*);'
12937         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBWRE ;;
12938         esac
12939         case "$getnetbyname_r_proto" in
12940         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, int);'
12941         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBI ;;
12942         esac
12943         case "$getnetbyname_r_proto" in
12944         ''|0) try='struct netent* getnetbyname_r(const char*, struct netent*, char*, int);'
12945         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=S_CSBI ;;
12946         esac
12947         case "$getnetbyname_r_proto" in
12948         ''|0) try='int getnetbyname_r(const char*, struct netent*, struct netent_data*);'
12949         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSD ;;
12950         esac
12951         case "$getnetbyname_r_proto" in
12952         ''|0)   d_getnetbyname_r=undef
12953                 getnetbyname_r_proto=0
12954                 echo "Disabling getnetbyname_r, cannot determine prototype." >&4 ;;
12955         * )     case "$getnetbyname_r_proto" in
12956                 REENTRANT_PROTO*) ;;
12957                 *) getnetbyname_r_proto="REENTRANT_PROTO_$getnetbyname_r_proto" ;;
12958                 esac
12959                 echo "Prototype: $try" ;;
12960         esac
12961         ;;
12962         *)      case "$usethreads" in
12963                 define) echo "getnetbyname_r has no prototype, not using it." >&4 ;;
12964                 esac
12965                 d_getnetbyname_r=undef
12966                 getnetbyname_r_proto=0
12967                 ;;
12968         esac
12969         ;;
12970 *)      getnetbyname_r_proto=0
12971         ;;
12972 esac
12973
12974 : see if getnetent_r exists
12975 set getnetent_r d_getnetent_r
12976 eval $inlibc
12977 case "$d_getnetent_r" in
12978 "$define")
12979         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12980         case "$d_getnetent_r_proto:$usethreads" in
12981         ":define")      d_getnetent_r_proto=define
12982                 set d_getnetent_r_proto getnetent_r $hdrs
12983                 eval $hasproto ;;
12984         *)      ;;
12985         esac
12986         case "$d_getnetent_r_proto" in
12987         define)
12988         case "$getnetent_r_proto" in
12989         ''|0) try='int getnetent_r(struct netent*, char*, size_t, struct netent**, int*);'
12990         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBWRE ;;
12991         esac
12992         case "$getnetent_r_proto" in
12993         ''|0) try='int getnetent_r(struct netent*, char*, int, int*);'
12994         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBIE ;;
12995         esac
12996         case "$getnetent_r_proto" in
12997         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int, int*);'
12998         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBIE ;;
12999         esac
13000         case "$getnetent_r_proto" in
13001         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int);'
13002         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBI ;;
13003         esac
13004         case "$getnetent_r_proto" in
13005         ''|0) try='int getnetent_r(struct netent*, char*, int);'
13006         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBI ;;
13007         esac
13008         case "$getnetent_r_proto" in
13009         ''|0) try='int getnetent_r(struct netent*, struct netent_data*);'
13010         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SD ;;
13011         esac
13012         case "$getnetent_r_proto" in
13013         ''|0)   d_getnetent_r=undef
13014                 getnetent_r_proto=0
13015                 echo "Disabling getnetent_r, cannot determine prototype." >&4 ;;
13016         * )     case "$getnetent_r_proto" in
13017                 REENTRANT_PROTO*) ;;
13018                 *) getnetent_r_proto="REENTRANT_PROTO_$getnetent_r_proto" ;;
13019                 esac
13020                 echo "Prototype: $try" ;;
13021         esac
13022         ;;
13023         *)      case "$usethreads" in
13024                 define) echo "getnetent_r has no prototype, not using it." >&4 ;;
13025                 esac
13026                 d_getnetent_r=undef
13027                 getnetent_r_proto=0
13028                 ;;
13029         esac
13030         ;;
13031 *)      getnetent_r_proto=0
13032         ;;
13033 esac
13034
13035 : see if prototypes for various getnetxxx netdb.h functions are available
13036 echo " "
13037 set d_getnetprotos getnetent $i_netdb netdb.h
13038 eval $hasproto
13039
13040 : see if getpagesize exists
13041 set getpagesize d_getpagsz
13042 eval $inlibc
13043
13044
13045 : see if getprotobyname exists
13046 set getprotobyname d_getpbyname
13047 eval $inlibc
13048
13049 : see if getprotobynumber exists
13050 set getprotobynumber d_getpbynumber
13051 eval $inlibc
13052
13053 : see if getprotoent exists
13054 set getprotoent d_getpent
13055 eval $inlibc
13056
13057 : see if getpgid exists
13058 set getpgid d_getpgid
13059 eval $inlibc
13060
13061 : see if getpgrp2 exists
13062 set getpgrp2 d_getpgrp2
13063 eval $inlibc
13064
13065 : see if getppid exists
13066 set getppid d_getppid
13067 eval $inlibc
13068
13069 : see if getpriority exists
13070 set getpriority d_getprior
13071 eval $inlibc
13072
13073 : see if getprotobyname_r exists
13074 set getprotobyname_r d_getprotobyname_r
13075 eval $inlibc
13076 case "$d_getprotobyname_r" in
13077 "$define")
13078         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13079         case "$d_getprotobyname_r_proto:$usethreads" in
13080         ":define")      d_getprotobyname_r_proto=define
13081                 set d_getprotobyname_r_proto getprotobyname_r $hdrs
13082                 eval $hasproto ;;
13083         *)      ;;
13084         esac
13085         case "$d_getprotobyname_r_proto" in
13086         define)
13087         case "$getprotobyname_r_proto" in
13088         ''|0) try='int getprotobyname_r(const char*, struct protoent*, char*, size_t, struct protoent**);'
13089         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSBWR ;;
13090         esac
13091         case "$getprotobyname_r_proto" in
13092         ''|0) try='struct protoent* getprotobyname_r(const char*, struct protoent*, char*, int);'
13093         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=S_CSBI ;;
13094         esac
13095         case "$getprotobyname_r_proto" in
13096         ''|0) try='int getprotobyname_r(const char*, struct protoent*, struct protoent_data*);'
13097         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSD ;;
13098         esac
13099         case "$getprotobyname_r_proto" in
13100         ''|0)   d_getprotobyname_r=undef
13101                 getprotobyname_r_proto=0
13102                 echo "Disabling getprotobyname_r, cannot determine prototype." >&4 ;;
13103         * )     case "$getprotobyname_r_proto" in
13104                 REENTRANT_PROTO*) ;;
13105                 *) getprotobyname_r_proto="REENTRANT_PROTO_$getprotobyname_r_proto" ;;
13106                 esac
13107                 echo "Prototype: $try" ;;
13108         esac
13109         ;;
13110         *)      case "$usethreads" in
13111                 define) echo "getprotobyname_r has no prototype, not using it." >&4 ;;
13112                 esac
13113                 d_getprotobyname_r=undef
13114                 getprotobyname_r_proto=0
13115                 ;;
13116         esac
13117         ;;
13118 *)      getprotobyname_r_proto=0
13119         ;;
13120 esac
13121
13122 : see if getprotobynumber_r exists
13123 set getprotobynumber_r d_getprotobynumber_r
13124 eval $inlibc
13125 case "$d_getprotobynumber_r" in
13126 "$define")
13127         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13128         case "$d_getprotobynumber_r_proto:$usethreads" in
13129         ":define")      d_getprotobynumber_r_proto=define
13130                 set d_getprotobynumber_r_proto getprotobynumber_r $hdrs
13131                 eval $hasproto ;;
13132         *)      ;;
13133         esac
13134         case "$d_getprotobynumber_r_proto" in
13135         define)
13136         case "$getprotobynumber_r_proto" in
13137         ''|0) try='int getprotobynumber_r(int, struct protoent*, char*, size_t, struct protoent**);'
13138         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISBWR ;;
13139         esac
13140         case "$getprotobynumber_r_proto" in
13141         ''|0) try='struct protoent* getprotobynumber_r(int, struct protoent*, char*, int);'
13142         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=S_ISBI ;;
13143         esac
13144         case "$getprotobynumber_r_proto" in
13145         ''|0) try='int getprotobynumber_r(int, struct protoent*, struct protoent_data*);'
13146         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISD ;;
13147         esac
13148         case "$getprotobynumber_r_proto" in
13149         ''|0)   d_getprotobynumber_r=undef
13150                 getprotobynumber_r_proto=0
13151                 echo "Disabling getprotobynumber_r, cannot determine prototype." >&4 ;;
13152         * )     case "$getprotobynumber_r_proto" in
13153                 REENTRANT_PROTO*) ;;
13154                 *) getprotobynumber_r_proto="REENTRANT_PROTO_$getprotobynumber_r_proto" ;;
13155                 esac
13156                 echo "Prototype: $try" ;;
13157         esac
13158         ;;
13159         *)      case "$usethreads" in
13160                 define) echo "getprotobynumber_r has no prototype, not using it." >&4 ;;
13161                 esac
13162                 d_getprotobynumber_r=undef
13163                 getprotobynumber_r_proto=0
13164                 ;;
13165         esac
13166         ;;
13167 *)      getprotobynumber_r_proto=0
13168         ;;
13169 esac
13170
13171 : see if getprotoent_r exists
13172 set getprotoent_r d_getprotoent_r
13173 eval $inlibc
13174 case "$d_getprotoent_r" in
13175 "$define")
13176         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13177         case "$d_getprotoent_r_proto:$usethreads" in
13178         ":define")      d_getprotoent_r_proto=define
13179                 set d_getprotoent_r_proto getprotoent_r $hdrs
13180                 eval $hasproto ;;
13181         *)      ;;
13182         esac
13183         case "$d_getprotoent_r_proto" in
13184         define)
13185         case "$getprotoent_r_proto" in
13186         ''|0) try='int getprotoent_r(struct protoent*, char*, size_t, struct protoent**);'
13187         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBWR ;;
13188         esac
13189         case "$getprotoent_r_proto" in
13190         ''|0) try='int getprotoent_r(struct protoent*, char*, int);'
13191         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBI ;;
13192         esac
13193         case "$getprotoent_r_proto" in
13194         ''|0) try='struct protoent* getprotoent_r(struct protoent*, char*, int);'
13195         ./protochk "extern $try" $hdrs && getprotoent_r_proto=S_SBI ;;
13196         esac
13197         case "$getprotoent_r_proto" in
13198         ''|0) try='int getprotoent_r(struct protoent*, struct protoent_data*);'
13199         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SD ;;
13200         esac
13201         case "$getprotoent_r_proto" in
13202         ''|0)   d_getprotoent_r=undef
13203                 getprotoent_r_proto=0
13204                 echo "Disabling getprotoent_r, cannot determine prototype." >&4 ;;
13205         * )     case "$getprotoent_r_proto" in
13206                 REENTRANT_PROTO*) ;;
13207                 *) getprotoent_r_proto="REENTRANT_PROTO_$getprotoent_r_proto" ;;
13208                 esac
13209                 echo "Prototype: $try" ;;
13210         esac
13211         ;;
13212         *)      case "$usethreads" in
13213                 define) echo "getprotoent_r has no prototype, not using it." >&4 ;;
13214                 esac
13215                 d_getprotoent_r=undef
13216                 getprotoent_r_proto=0
13217                 ;;
13218         esac
13219         ;;
13220 *)      getprotoent_r_proto=0
13221         ;;
13222 esac
13223
13224 : see if prototypes for various getprotoxxx netdb.h functions are available
13225 echo " "
13226 set d_getprotoprotos getprotoent $i_netdb netdb.h
13227 eval $hasproto
13228
13229 : see if getprpwnam exists
13230 set getprpwnam d_getprpwnam
13231 eval $inlibc
13232
13233 : see if getpwent exists
13234 set getpwent d_getpwent
13235 eval $inlibc
13236
13237 : see if getpwent_r exists
13238 set getpwent_r d_getpwent_r
13239 eval $inlibc
13240 case "$d_getpwent_r" in
13241 "$define")
13242         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13243         case "$d_getpwent_r_proto:$usethreads" in
13244         ":define")      d_getpwent_r_proto=define
13245                 set d_getpwent_r_proto getpwent_r $hdrs
13246                 eval $hasproto ;;
13247         *)      ;;
13248         esac
13249         case "$d_getpwent_r_proto" in
13250         define)
13251         case "$getpwent_r_proto" in
13252         ''|0) try='int getpwent_r(struct passwd*, char*, size_t, struct passwd**);'
13253         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBWR ;;
13254         esac
13255         case "$getpwent_r_proto" in
13256         ''|0) try='int getpwent_r(struct passwd*, char*, int, struct passwd**);'
13257         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIR ;;
13258         esac
13259         case "$getpwent_r_proto" in
13260         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, size_t);'
13261         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBW ;;
13262         esac
13263         case "$getpwent_r_proto" in
13264         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, int);'
13265         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBI ;;
13266         esac
13267         case "$getpwent_r_proto" in
13268         ''|0) try='int getpwent_r(struct passwd*, char*, int);'
13269         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBI ;;
13270         esac
13271         case "$getpwent_r_proto" in
13272         ''|0) try='int getpwent_r(struct passwd*, char*, int, FILE**);'
13273         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIH ;;
13274         esac
13275         case "$getpwent_r_proto" in
13276         ''|0)   d_getpwent_r=undef
13277                 getpwent_r_proto=0
13278                 echo "Disabling getpwent_r, cannot determine prototype." >&4 ;;
13279         * )     case "$getpwent_r_proto" in
13280                 REENTRANT_PROTO*) ;;
13281                 *) getpwent_r_proto="REENTRANT_PROTO_$getpwent_r_proto" ;;
13282                 esac
13283                 echo "Prototype: $try" ;;
13284         esac
13285         ;;
13286         *)      case "$usethreads" in
13287                 define) echo "getpwent_r has no prototype, not using it." >&4 ;;
13288                 esac
13289                 d_getpwent_r=undef
13290                 getpwent_r_proto=0
13291                 ;;
13292         esac
13293         ;;
13294 *)      getpwent_r_proto=0
13295         ;;
13296 esac
13297
13298 : see if getpwnam_r exists
13299 set getpwnam_r d_getpwnam_r
13300 eval $inlibc
13301 case "$d_getpwnam_r" in
13302 "$define")
13303         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13304         case "$d_getpwnam_r_proto:$usethreads" in
13305         ":define")      d_getpwnam_r_proto=define
13306                 set d_getpwnam_r_proto getpwnam_r $hdrs
13307                 eval $hasproto ;;
13308         *)      ;;
13309         esac
13310         case "$d_getpwnam_r_proto" in
13311         define)
13312         case "$getpwnam_r_proto" in
13313         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);'
13314         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBWR ;;
13315         esac
13316         case "$getpwnam_r_proto" in
13317         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int, struct passwd**);'
13318         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBIR ;;
13319         esac
13320         case "$getpwnam_r_proto" in
13321         ''|0) try='struct passwd* getpwnam_r(const char*, struct passwd*, char*, int);'
13322         ./protochk "extern $try" $hdrs && getpwnam_r_proto=S_CSBI ;;
13323         esac
13324         case "$getpwnam_r_proto" in
13325         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int);'
13326         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBI ;;
13327         esac
13328         case "$getpwnam_r_proto" in
13329         ''|0)   d_getpwnam_r=undef
13330                 getpwnam_r_proto=0
13331                 echo "Disabling getpwnam_r, cannot determine prototype." >&4 ;;
13332         * )     case "$getpwnam_r_proto" in
13333                 REENTRANT_PROTO*) ;;
13334                 *) getpwnam_r_proto="REENTRANT_PROTO_$getpwnam_r_proto" ;;
13335                 esac
13336                 echo "Prototype: $try" ;;
13337         esac
13338         ;;
13339         *)      case "$usethreads" in
13340                 define) echo "getpwnam_r has no prototype, not using it." >&4 ;;
13341                 esac
13342                 d_getpwnam_r=undef
13343                 getpwnam_r_proto=0
13344                 ;;
13345         esac
13346         ;;
13347 *)      getpwnam_r_proto=0
13348         ;;
13349 esac
13350
13351 : see if getpwuid_r exists
13352 set getpwuid_r d_getpwuid_r
13353 eval $inlibc
13354 case "$d_getpwuid_r" in
13355 "$define")
13356         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13357         case "$d_getpwuid_r_proto:$usethreads" in
13358         ":define")      d_getpwuid_r_proto=define
13359                 set d_getpwuid_r_proto getpwuid_r $hdrs
13360                 eval $hasproto ;;
13361         *)      ;;
13362         esac
13363         case "$d_getpwuid_r_proto" in
13364         define)
13365         case "$getpwuid_r_proto" in
13366         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**);'
13367         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBWR ;;
13368         esac
13369         case "$getpwuid_r_proto" in
13370         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int, struct passwd**);'
13371         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBIR ;;
13372         esac
13373         case "$getpwuid_r_proto" in
13374         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int);'
13375         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBI ;;
13376         esac
13377         case "$getpwuid_r_proto" in
13378         ''|0) try='struct passwd* getpwuid_r(uid_t, struct passwd*, char*, int);'
13379         ./protochk "extern $try" $hdrs && getpwuid_r_proto=S_TSBI ;;
13380         esac
13381         case "$getpwuid_r_proto" in
13382         ''|0)   d_getpwuid_r=undef
13383                 getpwuid_r_proto=0
13384                 echo "Disabling getpwuid_r, cannot determine prototype." >&4 ;;
13385         * )     case "$getpwuid_r_proto" in
13386                 REENTRANT_PROTO*) ;;
13387                 *) getpwuid_r_proto="REENTRANT_PROTO_$getpwuid_r_proto" ;;
13388                 esac
13389                 echo "Prototype: $try" ;;
13390         esac
13391         ;;
13392         *)      case "$usethreads" in
13393                 define) echo "getpwuid_r has no prototype, not using it." >&4 ;;
13394                 esac
13395                 d_getpwuid_r=undef
13396                 getpwuid_r_proto=0
13397                 ;;
13398         esac
13399         ;;
13400 *)      getpwuid_r_proto=0
13401         ;;
13402 esac
13403
13404
13405 : see if getservbyname exists
13406 set getservbyname d_getsbyname
13407 eval $inlibc
13408
13409 : see if getservbyport exists
13410 set getservbyport d_getsbyport
13411 eval $inlibc
13412
13413 : see if getservent exists
13414 set getservent d_getsent
13415 eval $inlibc
13416
13417 : see if getservbyname_r exists
13418 set getservbyname_r d_getservbyname_r
13419 eval $inlibc
13420 case "$d_getservbyname_r" in
13421 "$define")
13422         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13423         case "$d_getservbyname_r_proto:$usethreads" in
13424         ":define")      d_getservbyname_r_proto=define
13425                 set d_getservbyname_r_proto getservbyname_r $hdrs
13426                 eval $hasproto ;;
13427         *)      ;;
13428         esac
13429         case "$d_getservbyname_r_proto" in
13430         define)
13431         case "$getservbyname_r_proto" in
13432         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, char*, size_t, struct servent**);'
13433         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSBWR ;;
13434         esac
13435         case "$getservbyname_r_proto" in
13436         ''|0) try='struct servent* getservbyname_r(const char*, const char*, struct servent*, char*, int);'
13437         ./protochk "extern $try" $hdrs && getservbyname_r_proto=S_CCSBI ;;
13438         esac
13439         case "$getservbyname_r_proto" in
13440         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, struct servent_data*);'
13441         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSD ;;
13442         esac
13443         case "$getservbyname_r_proto" in
13444         ''|0)   d_getservbyname_r=undef
13445                 getservbyname_r_proto=0
13446                 echo "Disabling getservbyname_r, cannot determine prototype." >&4 ;;
13447         * )     case "$getservbyname_r_proto" in
13448                 REENTRANT_PROTO*) ;;
13449                 *) getservbyname_r_proto="REENTRANT_PROTO_$getservbyname_r_proto" ;;
13450                 esac
13451                 echo "Prototype: $try" ;;
13452         esac
13453         ;;
13454         *)      case "$usethreads" in
13455                 define) echo "getservbyname_r has no prototype, not using it." >&4 ;;
13456                 esac
13457                 d_getservbyname_r=undef
13458                 getservbyname_r_proto=0
13459                 ;;
13460         esac
13461         ;;
13462 *)      getservbyname_r_proto=0
13463         ;;
13464 esac
13465
13466 : see if getservbyport_r exists
13467 set getservbyport_r d_getservbyport_r
13468 eval $inlibc
13469 case "$d_getservbyport_r" in
13470 "$define")
13471         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13472         case "$d_getservbyport_r_proto:$usethreads" in
13473         ":define")      d_getservbyport_r_proto=define
13474                 set d_getservbyport_r_proto getservbyport_r $hdrs
13475                 eval $hasproto ;;
13476         *)      ;;
13477         esac
13478         case "$d_getservbyport_r_proto" in
13479         define)
13480         case "$getservbyport_r_proto" in
13481         ''|0) try='int getservbyport_r(int, const char*, struct servent*, char*, size_t, struct servent**);'
13482         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSBWR ;;
13483         esac
13484         case "$getservbyport_r_proto" in
13485         ''|0) try='struct servent* getservbyport_r(int, const char*, struct servent*, char*, int);'
13486         ./protochk "extern $try" $hdrs && getservbyport_r_proto=S_ICSBI ;;
13487         esac
13488         case "$getservbyport_r_proto" in
13489         ''|0) try='int getservbyport_r(int, const char*, struct servent*, struct servent_data*);'
13490         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSD ;;
13491         esac
13492         case "$getservbyport_r_proto" in
13493         ''|0)   d_getservbyport_r=undef
13494                 getservbyport_r_proto=0
13495                 echo "Disabling getservbyport_r, cannot determine prototype." >&4 ;;
13496         * )     case "$getservbyport_r_proto" in
13497                 REENTRANT_PROTO*) ;;
13498                 *) getservbyport_r_proto="REENTRANT_PROTO_$getservbyport_r_proto" ;;
13499                 esac
13500                 echo "Prototype: $try" ;;
13501         esac
13502         ;;
13503         *)      case "$usethreads" in
13504                 define) echo "getservbyport_r has no prototype, not using it." >&4 ;;
13505                 esac
13506                 d_getservbyport_r=undef
13507                 getservbyport_r_proto=0
13508                 ;;
13509         esac
13510         ;;
13511 *)      getservbyport_r_proto=0
13512         ;;
13513 esac
13514
13515 : see if getservent_r exists
13516 set getservent_r d_getservent_r
13517 eval $inlibc
13518 case "$d_getservent_r" in
13519 "$define")
13520         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13521         case "$d_getservent_r_proto:$usethreads" in
13522         ":define")      d_getservent_r_proto=define
13523                 set d_getservent_r_proto getservent_r $hdrs
13524                 eval $hasproto ;;
13525         *)      ;;
13526         esac
13527         case "$d_getservent_r_proto" in
13528         define)
13529         case "$getservent_r_proto" in
13530         ''|0) try='int getservent_r(struct servent*, char*, size_t, struct servent**);'
13531         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBWR ;;
13532         esac
13533         case "$getservent_r_proto" in
13534         ''|0) try='int getservent_r(struct servent*, char*, int);'
13535         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBI ;;
13536         esac
13537         case "$getservent_r_proto" in
13538         ''|0) try='struct servent* getservent_r(struct servent*, char*, int);'
13539         ./protochk "extern $try" $hdrs && getservent_r_proto=S_SBI ;;
13540         esac
13541         case "$getservent_r_proto" in
13542         ''|0) try='int getservent_r(struct servent*, struct servent_data*);'
13543         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SD ;;
13544         esac
13545         case "$getservent_r_proto" in
13546         ''|0)   d_getservent_r=undef
13547                 getservent_r_proto=0
13548                 echo "Disabling getservent_r, cannot determine prototype." >&4 ;;
13549         * )     case "$getservent_r_proto" in
13550                 REENTRANT_PROTO*) ;;
13551                 *) getservent_r_proto="REENTRANT_PROTO_$getservent_r_proto" ;;
13552                 esac
13553                 echo "Prototype: $try" ;;
13554         esac
13555         ;;
13556         *)      case "$usethreads" in
13557                 define) echo "getservent_r has no prototype, not using it." >&4 ;;
13558                 esac
13559                 d_getservent_r=undef
13560                 getservent_r_proto=0
13561                 ;;
13562         esac
13563         ;;
13564 *)      getservent_r_proto=0
13565         ;;
13566 esac
13567
13568 : see if prototypes for various getservxxx netdb.h functions are available
13569 echo " "
13570 set d_getservprotos getservent $i_netdb netdb.h
13571 eval $hasproto
13572
13573 : see if getspnam exists
13574 set getspnam d_getspnam
13575 eval $inlibc
13576
13577 : see if this is a shadow.h system
13578 set shadow.h i_shadow
13579 eval $inhdr
13580
13581 : see if getspnam_r exists
13582 set getspnam_r d_getspnam_r
13583 eval $inlibc
13584 case "$d_getspnam_r" in
13585 "$define")
13586         hdrs="$i_systypes sys/types.h define stdio.h $i_shadow shadow.h"
13587         case "$d_getspnam_r_proto:$usethreads" in
13588         ":define")      d_getspnam_r_proto=define
13589                 set d_getspnam_r_proto getspnam_r $hdrs
13590                 eval $hasproto ;;
13591         *)      ;;
13592         esac
13593         case "$d_getspnam_r_proto" in
13594         define)
13595         case "$getspnam_r_proto" in
13596         ''|0) try='int getspnam_r(const char*, struct spwd*, char*, size_t, struct spwd**);'
13597         ./protochk "extern $try" $hdrs && getspnam_r_proto=I_CSBWR ;;
13598         esac
13599         case "$getspnam_r_proto" in
13600         ''|0) try='struct spwd* getspnam_r(const char*, struct spwd*, char*, int);'
13601         ./protochk "extern $try" $hdrs && getspnam_r_proto=S_CSBI ;;
13602         esac
13603         case "$getspnam_r_proto" in
13604         ''|0)   d_getspnam_r=undef
13605                 getspnam_r_proto=0
13606                 echo "Disabling getspnam_r, cannot determine prototype." >&4 ;;
13607         * )     case "$getspnam_r_proto" in
13608                 REENTRANT_PROTO*) ;;
13609                 *) getspnam_r_proto="REENTRANT_PROTO_$getspnam_r_proto" ;;
13610                 esac
13611                 echo "Prototype: $try" ;;
13612         esac
13613         ;;
13614         *)      case "$usethreads" in
13615                 define) echo "getspnam_r has no prototype, not using it." >&4 ;;
13616                 esac
13617                 d_getspnam_r=undef
13618                 getspnam_r_proto=0
13619                 ;;
13620         esac
13621         ;;
13622 *)      getspnam_r_proto=0
13623         ;;
13624 esac
13625
13626 : see if gettimeofday or ftime exists
13627 set gettimeofday d_gettimeod
13628 eval $inlibc
13629 case "$d_gettimeod" in
13630 "$undef")
13631         set ftime d_ftime 
13632         eval $inlibc
13633         ;;
13634 *)
13635         val="$undef"; set d_ftime; eval $setvar
13636         ;;
13637 esac
13638 case "$d_gettimeod$d_ftime" in
13639 "$undef$undef")
13640         echo " "
13641         echo 'No ftime() nor gettimeofday() -- timing may be less accurate.' >&4
13642         ;;
13643 esac
13644
13645 : see if gmtime_r exists
13646 set gmtime_r d_gmtime_r
13647 eval $inlibc
13648 case "$d_gmtime_r" in
13649 "$define")
13650         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
13651         case "$d_gmtime_r_proto:$usethreads" in
13652         ":define")      d_gmtime_r_proto=define
13653                 set d_gmtime_r_proto gmtime_r $hdrs
13654                 eval $hasproto ;;
13655         *)      ;;
13656         esac
13657         case "$d_gmtime_r_proto" in
13658         define)
13659         case "$gmtime_r_proto" in
13660         ''|0) try='struct tm* gmtime_r(const time_t*, struct tm*);'
13661         ./protochk "extern $try" $hdrs && gmtime_r_proto=S_TS ;;
13662         esac
13663         case "$gmtime_r_proto" in
13664         ''|0) try='int gmtime_r(const time_t*, struct tm*);'
13665         ./protochk "extern $try" $hdrs && gmtime_r_proto=I_TS ;;
13666         esac
13667         case "$gmtime_r_proto" in
13668         ''|0)   d_gmtime_r=undef
13669                 gmtime_r_proto=0
13670                 echo "Disabling gmtime_r, cannot determine prototype." >&4 ;;
13671         * )     case "$gmtime_r_proto" in
13672                 REENTRANT_PROTO*) ;;
13673                 *) gmtime_r_proto="REENTRANT_PROTO_$gmtime_r_proto" ;;
13674                 esac
13675                 echo "Prototype: $try" ;;
13676         esac
13677         ;;
13678         *)      case "$usethreads" in
13679                 define) echo "gmtime_r has no prototype, not using it." >&4 ;;
13680                 esac
13681                 d_gmtime_r=undef
13682                 gmtime_r_proto=0
13683                 ;;
13684         esac
13685         ;;
13686 *)      gmtime_r_proto=0
13687         ;;
13688 esac
13689
13690 : see if hasmntopt exists
13691 set hasmntopt d_hasmntopt
13692 eval $inlibc
13693
13694 : see if this is a netinet/in.h or sys/in.h system
13695 set netinet/in.h i_niin sys/in.h i_sysin
13696 eval $inhdr
13697
13698 : see if arpa/inet.h has to be included
13699 set arpa/inet.h i_arpainet
13700 eval $inhdr
13701
13702 : see if htonl --and friends-- exists
13703 val=''
13704 set htonl val
13705 eval $inlibc
13706
13707 : Maybe they are macros.
13708 case "$val" in
13709 $undef)
13710         $cat >htonl.c <<EOM
13711 #include <stdio.h>
13712 #include <sys/types.h>
13713 #$i_niin I_NETINET_IN
13714 #$i_sysin I_SYS_IN
13715 #$i_arpainet I_ARPA_INET
13716 #ifdef I_NETINET_IN
13717 #include <netinet/in.h>
13718 #endif
13719 #ifdef I_SYS_IN
13720 #include <sys/in.h>
13721 #endif
13722 #ifdef I_ARPA_INET
13723 #include <arpa/inet.h>
13724 #endif
13725 #ifdef htonl
13726 printf("Defined as a macro.");
13727 #endif
13728 EOM
13729         $cppstdin $cppflags $cppminus < htonl.c >htonl.E 2>/dev/null
13730         if $contains 'Defined as a macro' htonl.E >/dev/null 2>&1; then
13731                 val="$define"
13732                 echo "But it seems to be defined as a macro." >&4
13733         fi
13734         $rm -f htonl.?
13735         ;;
13736 esac
13737 set d_htonl
13738 eval $setvar
13739
13740 : see if ilogbl exists
13741 set ilogbl d_ilogbl
13742 eval $inlibc
13743
13744 : index or strchr
13745 echo " "
13746 if set index val -f; eval $csym; $val; then
13747         if set strchr val -f d_strchr; eval $csym; $val; then
13748                 if $contains strchr "$strings" >/dev/null 2>&1 ; then
13749                         val="$define"
13750                         vali="$undef"
13751                         echo "strchr() found." >&4
13752                 else
13753                         val="$undef"
13754                         vali="$define"
13755                         echo "index() found." >&4
13756                 fi
13757         else
13758                 val="$undef"
13759                 vali="$define"
13760                 echo "index() found." >&4
13761         fi
13762 else
13763         if set strchr val -f d_strchr; eval $csym; $val; then
13764                 val="$define"
13765                 vali="$undef"
13766                 echo "strchr() found." >&4
13767         else
13768                 echo "No index() or strchr() found!" >&4
13769                 val="$undef"
13770                 vali="$undef"
13771         fi
13772 fi
13773 set d_strchr; eval $setvar
13774 val="$vali"
13775 set d_index; eval $setvar
13776
13777 : check whether inet_aton exists
13778 set inet_aton d_inetaton
13779 eval $inlibc
13780
13781 : Look for isascii
13782 echo " "
13783 $cat >isascii.c <<EOCP
13784 #include <stdio.h>
13785 #include <ctype.h>
13786 #$i_stdlib I_STDLIB
13787 #ifdef I_STDLIB
13788 #include <stdlib.h>
13789 #endif
13790 int main() {
13791         int c = 'A';
13792         if (isascii(c))
13793                 exit(0);
13794         else
13795                 exit(1);
13796 }
13797 EOCP
13798 set isascii
13799 if eval $compile; then
13800         echo "isascii() found." >&4
13801         val="$define"
13802 else
13803         echo "isascii() NOT found." >&4
13804         val="$undef"
13805 fi
13806 set d_isascii
13807 eval $setvar
13808 $rm -f isascii*
13809
13810 : see if isfinite exists
13811 set isfinite d_isfinite
13812 eval $inlibc
13813
13814 : see if isinf exists
13815 set isinf d_isinf
13816 eval $inlibc
13817
13818 : see if isnan exists
13819 set isnan d_isnan
13820 eval $inlibc
13821
13822 : see if isnanl exists
13823 set isnanl d_isnanl
13824 eval $inlibc
13825
13826 : see if killpg exists
13827 set killpg d_killpg
13828 eval $inlibc
13829
13830 : see if lchown exists
13831 echo " "
13832 $cat > try.c <<'EOCP'
13833 /* System header to define __stub macros and hopefully few prototypes,
13834     which can conflict with char lchown(); below.  */
13835 #include <assert.h>
13836 /* Override any gcc2 internal prototype to avoid an error.  */
13837 /* We use char because int might match the return type of a gcc2
13838    builtin and then its argument prototype would still apply.  */
13839 char lchown();
13840 int main() {
13841     /*  The GNU C library defines this for functions which it implements
13842         to always fail with ENOSYS.  Some functions are actually named
13843         something starting with __ and the normal name is an alias.  */
13844 #if defined (__stub_lchown) || defined (__stub___lchown)
13845 choke me
13846 #else
13847 lchown();
13848 #endif
13849 ; return 0; }
13850 EOCP
13851 set try
13852 if eval $compile; then
13853     $echo "lchown() found." >&4
13854     val="$define"
13855 else
13856     $echo "lchown() NOT found." >&4
13857     val="$undef"
13858 fi
13859 set d_lchown
13860 eval $setvar
13861
13862 : See if number of significant digits in a double precision number is known
13863 echo " "
13864 $cat >ldbl_dig.c <<EOM
13865 #$i_limits I_LIMITS
13866 #$i_float I_FLOAT
13867 #ifdef I_LIMITS
13868 #include <limits.h>
13869 #endif
13870 #ifdef I_FLOAT
13871 #include <float.h>
13872 #endif
13873 #ifdef LDBL_DIG
13874 printf("Contains LDBL_DIG");
13875 #endif
13876 EOM
13877 $cppstdin $cppflags $cppminus < ldbl_dig.c >ldbl_dig.E 2>/dev/null
13878 if $contains 'LDBL_DIG' ldbl_dig.E >/dev/null 2>&1; then
13879         echo "LDBL_DIG found." >&4
13880         val="$define"
13881 else
13882         echo "LDBL_DIG NOT found." >&4
13883         val="$undef"
13884 fi
13885 $rm -f ldbl_dig.?
13886 set d_ldbl_dig
13887 eval $setvar
13888
13889 : see if link exists
13890 set link d_link
13891 eval $inlibc
13892
13893 : see if localtime_r exists
13894 set localtime_r d_localtime_r
13895 eval $inlibc
13896 case "$d_localtime_r" in
13897 "$define")
13898         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
13899         case "$d_localtime_r_proto:$usethreads" in
13900         ":define")      d_localtime_r_proto=define
13901                 set d_localtime_r_proto localtime_r $hdrs
13902                 eval $hasproto ;;
13903         *)      ;;
13904         esac
13905         case "$d_localtime_r_proto" in
13906         define)
13907         case "$localtime_r_proto" in
13908         ''|0) try='struct tm* localtime_r(const time_t*, struct tm*);'
13909         ./protochk "extern $try" $hdrs && localtime_r_proto=S_TS ;;
13910         esac
13911         case "$localtime_r_proto" in
13912         ''|0) try='int localtime_r(const time_t*, struct tm*);'
13913         ./protochk "extern $try" $hdrs && localtime_r_proto=I_TS ;;
13914         esac
13915         case "$localtime_r_proto" in
13916         ''|0)   d_localtime_r=undef
13917                 localtime_r_proto=0
13918                 echo "Disabling localtime_r, cannot determine prototype." >&4 ;;
13919         * )     case "$localtime_r_proto" in
13920                 REENTRANT_PROTO*) ;;
13921                 *) localtime_r_proto="REENTRANT_PROTO_$localtime_r_proto" ;;
13922                 esac
13923                 echo "Prototype: $try" ;;
13924         esac
13925         ;;
13926         *)      case "$usethreads" in
13927                 define) echo "localtime_r has no prototype, not using it." >&4 ;;
13928                 esac
13929                 d_localtime_r=undef
13930                 localtime_r_proto=0
13931                 ;;
13932         esac
13933         ;;
13934 *)      localtime_r_proto=0
13935         ;;
13936 esac
13937
13938 : see if localeconv exists
13939 set localeconv d_locconv
13940 eval $inlibc
13941
13942 : see if lockf exists
13943 set lockf d_lockf
13944 eval $inlibc
13945
13946 : see if prototype for lseek is available
13947 echo " "
13948 set d_lseekproto lseek $i_systypes sys/types.h $i_unistd unistd.h
13949 eval $hasproto
13950
13951 : see if lstat exists
13952 set lstat d_lstat
13953 eval $inlibc
13954
13955 : see if madvise exists
13956 set madvise d_madvise
13957 eval $inlibc
13958
13959 : see if mblen exists
13960 set mblen d_mblen
13961 eval $inlibc
13962
13963 : see if mbstowcs exists
13964 set mbstowcs d_mbstowcs
13965 eval $inlibc
13966
13967 : see if mbtowc exists
13968 set mbtowc d_mbtowc
13969 eval $inlibc
13970
13971 : see if memchr exists
13972 set memchr d_memchr
13973 eval $inlibc
13974
13975 : see if memcmp exists
13976 set memcmp d_memcmp
13977 eval $inlibc
13978
13979 : see if memcpy exists
13980 set memcpy d_memcpy
13981 eval $inlibc
13982
13983 : see if memmove exists
13984 set memmove d_memmove
13985 eval $inlibc
13986
13987 : see if memset exists
13988 set memset d_memset
13989 eval $inlibc
13990
13991 : see if mkdir exists
13992 set mkdir d_mkdir
13993 eval $inlibc
13994
13995 : see if mkdtemp exists
13996 set mkdtemp d_mkdtemp
13997 eval $inlibc
13998
13999 : see if mkfifo exists
14000 set mkfifo d_mkfifo
14001 eval $inlibc
14002
14003 : see if mkstemp exists
14004 set mkstemp d_mkstemp
14005 eval $inlibc
14006
14007 : see if mkstemps exists
14008 set mkstemps d_mkstemps
14009 eval $inlibc
14010
14011 : see if mktime exists
14012 set mktime d_mktime
14013 eval $inlibc
14014
14015 : see if this is a sys/mman.h system
14016 set sys/mman.h i_sysmman
14017 eval $inhdr
14018
14019 : see if mmap exists
14020 set mmap d_mmap
14021 eval $inlibc
14022 : see what shmat returns
14023 : default to something harmless
14024 mmaptype='void *'
14025 case "$i_sysmman$d_mmap" in
14026 "$define$define")
14027         $cat >mmap.c <<'END'
14028 #include <sys/mman.h>
14029 void *mmap();
14030 END
14031         if $cc $ccflags -c mmap.c >/dev/null 2>&1; then
14032                 mmaptype='void *'
14033         else
14034                 mmaptype='caddr_t'
14035         fi
14036         echo "and it returns ($mmaptype)." >&4
14037         ;;
14038 esac
14039
14040
14041
14042 : see if sqrtl exists
14043 set sqrtl d_sqrtl
14044 eval $inlibc
14045
14046 : see if scalbnl exists
14047 set scalbnl d_scalbnl
14048 eval $inlibc
14049
14050 : see if modfl exists
14051 set modfl d_modfl
14052 eval $inlibc
14053
14054 : see if prototype for modfl is available
14055 echo " "
14056 set d_modflproto modfl math.h
14057 eval $hasproto
14058
14059 d_modfl_pow32_bug="$undef"
14060
14061 case "$d_longdbl$d_modfl" in
14062 $define$define)
14063         $cat <<EOM
14064 Checking to see whether your modfl() is okay for large values...
14065 EOM
14066 $cat >try.c <<EOCP
14067 #include <math.h> 
14068 #include <stdio.h>
14069 EOCP
14070 if $test "X$d_modflproto" != "X$define"; then
14071         $cat >>try.c <<EOCP
14072 /* Sigh. many current glibcs provide the function, but do not prototype it.  */ 
14073 long double modfl (long double, long double *);
14074 EOCP
14075 fi
14076 $cat >>try.c <<EOCP
14077 int main() {
14078     long double nv = 4294967303.15;
14079     long double v, w;
14080     v = modfl(nv, &w);         
14081 #ifdef __GLIBC__
14082     printf("glibc");
14083 #endif
14084     printf(" %"$sPRIfldbl" %"$sPRIfldbl" %"$sPRIfldbl"\n", nv, v, w);
14085     return 0;
14086 }
14087 EOCP
14088         case "$osname:$gccversion" in
14089         aix:)   saveccflags="$ccflags"
14090                 ccflags="$ccflags -qlongdouble" ;; # to avoid core dump
14091         esac
14092         set try
14093         if eval $compile; then
14094                 foo=`$run ./try`
14095                 case "$foo" in
14096                 *" 4294967303.150000 1.150000 4294967302.000000")
14097                         echo >&4 "Your modfl() is broken for large values."
14098                         d_modfl_pow32_bug="$define"
14099                         case "$foo" in
14100                         glibc)  echo >&4 "You should upgrade your glibc to at least 2.2.2 to get a fixed modfl()."
14101                         ;;
14102                         esac
14103                         ;;
14104                 *" 4294967303.150000 0.150000 4294967303.000000")
14105                         echo >&4 "Your modfl() seems okay for large values."
14106                         ;;
14107                 *)      echo >&4 "I don't understand your modfl() at all."
14108                         d_modfl="$undef"
14109                         ;;
14110                 esac
14111                 $rm -f try.* try core core.try.*
14112         else
14113                 echo "I cannot figure out whether your modfl() is okay, assuming it isn't."
14114                 d_modfl="$undef"
14115         fi
14116         case "$osname:$gccversion" in
14117         aix:)   ccflags="$saveccflags" ;; # restore
14118         esac
14119         ;;
14120 esac
14121
14122 if $test "$uselongdouble" = "$define"; then
14123     message=""
14124     if $test "$d_sqrtl" != "$define"; then
14125         message="$message sqrtl"
14126     fi
14127     if $test "$d_modfl" != "$define"; then
14128         if $test "$d_aintl:$d_copysignl" = "$define:$define"; then
14129             echo "You have both aintl and copysignl, so I can emulate modfl."
14130         else
14131             message="$message modfl"
14132         fi
14133     fi
14134     if $test "$d_frexpl" != "$define"; then
14135         if $test "$d_ilogbl:$d_scalbnl" = "$define:$define"; then
14136             echo "You have both ilogbl and scalbnl, so I can emulate frexpl."
14137         else
14138             message="$message frexpl"
14139         fi
14140     fi
14141
14142     if $test "$message" != ""; then
14143         $cat <<EOM >&4
14144
14145 *** You requested the use of long doubles but you do not seem to have
14146 *** the following mathematical functions needed for long double support:
14147 ***    $message
14148 *** Please rerun Configure without -Duselongdouble and/or -Dusemorebits.
14149 *** Cannot continue, aborting.
14150
14151 EOM
14152
14153         exit 1
14154     fi
14155 fi
14156
14157 : see if mprotect exists
14158 set mprotect d_mprotect
14159 eval $inlibc
14160
14161 : see if msgctl exists
14162 set msgctl d_msgctl
14163 eval $inlibc
14164
14165 : see if msgget exists
14166 set msgget d_msgget
14167 eval $inlibc
14168
14169 : see if msgsnd exists
14170 set msgsnd d_msgsnd
14171 eval $inlibc
14172
14173 : see if msgrcv exists
14174 set msgrcv d_msgrcv
14175 eval $inlibc
14176
14177 : see how much of the 'msg*(2)' library is present.
14178 h_msg=true
14179 echo " "
14180 case "$d_msgctl$d_msgget$d_msgsnd$d_msgrcv" in
14181 *"$undef"*) h_msg=false;;
14182 esac
14183 case "$osname" in
14184 freebsd)
14185     case "`ipcs 2>&1`" in
14186     "SVID messages"*"not configured"*)
14187         echo "Your $osname does not have the msg*(2) configured." >&4
14188         h_msg=false
14189         val="$undef"
14190         set msgctl d_msgctl
14191         eval $setvar
14192         set msgget d_msgget
14193         eval $setvar
14194         set msgsnd d_msgsnd
14195         eval $setvar
14196         set msgrcv d_msgrcv
14197         eval $setvar
14198         ;;
14199     esac
14200     ;;
14201 esac
14202 : we could also check for sys/ipc.h ...
14203 if $h_msg && $test `./findhdr sys/msg.h`; then
14204         echo "You have the full msg*(2) library." >&4
14205         val="$define"
14206 else
14207         echo "You don't have the full msg*(2) library." >&4
14208         val="$undef"
14209 fi
14210 set d_msg
14211 eval $setvar
14212
14213
14214 echo " "
14215 echo "Checking to see if your system supports struct msghdr..." >&4
14216 set d_msghdr_s msghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
14217 eval $hasstruct
14218 case "$d_msghdr_s" in
14219 "$define")      echo "Yes, it does."   ;;
14220 *)              echo "No, it doesn't." ;;
14221 esac
14222
14223
14224 : see if msync exists
14225 set msync d_msync
14226 eval $inlibc
14227
14228 : see if munmap exists
14229 set munmap d_munmap
14230 eval $inlibc
14231
14232 : see if nice exists
14233 set nice d_nice
14234 eval $inlibc
14235
14236 : see if this is a langinfo.h system
14237 set langinfo.h i_langinfo
14238 eval $inhdr
14239
14240 : see if nl_langinfo exists
14241 set nl_langinfo d_nl_langinfo
14242 eval $inlibc
14243
14244 : check for length of character
14245 echo " "
14246 case "$charsize" in
14247 '')
14248         echo "Checking to see how big your characters are (hey, you never know)..." >&4
14249         $cat >try.c <<EOCP
14250 #include <stdio.h>
14251 #$i_stdlib I_STDLIB
14252 #ifdef I_STDLIB
14253 #include <stdlib.h>
14254 #endif
14255 int main()
14256 {
14257     printf("%d\n", (int)sizeof(char));
14258     exit(0);
14259 }
14260 EOCP
14261         set try
14262         if eval $compile_ok; then
14263                 dflt=`$run ./try`
14264         else
14265                 dflt='1'
14266                 echo "(I can't seem to compile the test program.  Guessing...)"
14267         fi
14268         ;;
14269 *)
14270         dflt="$charsize"
14271         ;;
14272 esac
14273 rp="What is the size of a character (in bytes)?"
14274 . ./myread
14275 charsize="$ans"
14276 $rm -f try.c try
14277
14278 : check for volatile keyword
14279 echo " "
14280 echo 'Checking to see if your C compiler knows about "volatile"...' >&4
14281 $cat >try.c <<'EOCP'
14282 int main()
14283 {
14284         typedef struct _goo_struct goo_struct;
14285         goo_struct * volatile goo = ((goo_struct *)0);
14286         struct _goo_struct {
14287                 long long_int;
14288                 int reg_int;
14289                 char char_var;
14290         };
14291         typedef unsigned short foo_t;
14292         char *volatile foo;
14293         volatile int bar;
14294         volatile foo_t blech;
14295         foo = foo;
14296 }
14297 EOCP
14298 if $cc -c $ccflags try.c >/dev/null 2>&1 ; then
14299         val="$define"
14300         echo "Yup, it does."
14301 else
14302         val="$undef"
14303         echo "Nope, it doesn't."
14304 fi
14305 set d_volatile
14306 eval $setvar
14307 $rm -f try.*
14308
14309
14310 echo " "
14311 $echo "Choosing the C types to be used for Perl's internal types..." >&4
14312
14313 case "$use64bitint:$d_quad:$quadtype" in
14314 define:define:?*)
14315         ivtype="$quadtype"
14316         uvtype="$uquadtype"
14317         ivsize=8
14318         uvsize=8
14319         ;;
14320 *)      ivtype="long"
14321         uvtype="unsigned long"
14322         ivsize=$longsize
14323         uvsize=$longsize
14324         ;;
14325 esac
14326
14327 case "$uselongdouble:$d_longdbl" in
14328 define:define)
14329         nvtype="long double"
14330         nvsize=$longdblsize
14331         ;;
14332 *)      nvtype=double
14333         nvsize=$doublesize
14334         ;;
14335 esac
14336
14337 $echo "(IV will be "$ivtype", $ivsize bytes)"
14338 $echo "(UV will be "$uvtype", $uvsize bytes)"
14339 $echo "(NV will be "$nvtype", $nvsize bytes)"
14340
14341 $cat >try.c <<EOCP
14342 #$i_inttypes I_INTTYPES
14343 #ifdef I_INTTYPES
14344 #include <inttypes.h>
14345 #endif
14346 #include <stdio.h>
14347 int main() {
14348 #ifdef INT8
14349    int8_t i =  INT8_MAX;
14350   uint8_t u = UINT8_MAX;
14351   printf("int8_t\n");
14352 #endif
14353 #ifdef INT16
14354    int16_t i =  INT16_MAX;
14355   uint16_t i = UINT16_MAX;
14356   printf("int16_t\n");
14357 #endif
14358 #ifdef INT32
14359    int32_t i =  INT32_MAX;
14360   uint32_t u = UINT32_MAX;
14361   printf("int32_t\n");
14362 #endif
14363 }
14364 EOCP
14365
14366 case "$i8type" in
14367 '')     case "$charsize" in
14368         1)      i8type=char
14369                 u8type="unsigned char"
14370                 i8size=$charsize
14371                 u8size=$charsize
14372                 ;;
14373         esac
14374         ;;
14375 esac
14376 case "$i8type" in
14377 '')     set try -DINT8
14378         if eval $compile; then
14379                 case "`$run ./try`" in
14380                 int8_t) i8type=int8_t
14381                         u8type=uint8_t
14382                         i8size=1
14383                         u8size=1
14384                         ;;
14385                 esac
14386         fi
14387         ;;
14388 esac
14389 case "$i8type" in
14390 '')     if $test $charsize -ge 1; then
14391                 i8type=char
14392                 u8type="unsigned char"
14393                 i8size=$charsize
14394                 u8size=$charsize
14395         fi
14396         ;;
14397 esac
14398
14399 case "$i16type" in
14400 '')     case "$shortsize" in
14401         2)      i16type=short
14402                 u16type="unsigned short"
14403                 i16size=$shortsize
14404                 u16size=$shortsize
14405                 ;;
14406         esac
14407         ;;
14408 esac
14409 case "$i16type" in
14410 '')     set try -DINT16
14411         if eval $compile; then
14412                 case "`$run ./try`" in
14413                 int16_t)
14414                         i16type=int16_t
14415                         u16type=uint16_t
14416                         i16size=2
14417                         u16size=2
14418                         ;;
14419                 esac
14420         fi
14421         ;;
14422 esac
14423 case "$i16type" in
14424 '')     if $test $shortsize -ge 2; then
14425                 i16type=short
14426                 u16type="unsigned short"
14427                 i16size=$shortsize
14428                 u16size=$shortsize
14429         fi
14430         ;;
14431 esac
14432
14433 case "$i32type" in
14434 '')     case "$longsize" in
14435         4)      i32type=long
14436                 u32type="unsigned long"
14437                 i32size=$longsize
14438                 u32size=$longsize
14439                 ;;
14440         *)      case "$intsize" in
14441                 4)      i32type=int
14442                         u32type="unsigned int"
14443                         i32size=$intsize
14444                         u32size=$intsize
14445                         ;;
14446                 esac
14447                 ;;
14448         esac
14449         ;;
14450 esac
14451 case "$i32type" in
14452 '')     set try -DINT32
14453         if eval $compile; then
14454                 case "`$run ./try`" in
14455                 int32_t)
14456                         i32type=int32_t
14457                         u32type=uint32_t
14458                         i32size=4
14459                         u32size=4
14460                         ;;
14461                 esac
14462         fi
14463         ;;
14464 esac
14465 case "$i32type" in
14466 '')     if $test $intsize -ge 4; then
14467                 i32type=int
14468                 u32type="unsigned int"
14469                 i32size=$intsize
14470                 u32size=$intsize
14471         fi
14472         ;;
14473 esac
14474
14475 case "$i64type" in
14476 '')     case "$d_quad:$quadtype" in
14477         define:?*)
14478                 i64type="$quadtype"
14479                 u64type="$uquadtype"
14480                 i64size=8
14481                 u64size=8
14482                 ;;
14483         esac
14484         ;;
14485 esac
14486
14487 $echo "Checking how many bits of your UVs your NVs can preserve..." >&4
14488 : volatile so that the compiler has to store it out to memory.
14489 if test X"$d_volatile" = X"$define"; then
14490         volatile=volatile
14491 fi
14492 $cat <<EOP >try.c
14493 #include <stdio.h>
14494 #$i_stdlib I_STDLIB
14495 #ifdef I_STDLIB
14496 #include <stdlib.h>
14497 #endif
14498 #include <sys/types.h>
14499 #include <signal.h>
14500 #ifdef SIGFPE
14501 $volatile int bletched = 0;
14502 $signal_t blech(s) int s; { bletched = 1; }
14503 #endif
14504 int main() {
14505     $uvtype u = 0;
14506     $nvtype d;
14507     int     n = 8 * $uvsize;
14508     int     i;
14509 #ifdef SIGFPE
14510     signal(SIGFPE, blech);
14511 #endif
14512
14513     for (i = 0; i < n; i++) {
14514       u = u << 1 | ($uvtype)1;
14515       d = ($nvtype)u;
14516       if (($uvtype)d != u)
14517         break;
14518       if (d <= 0)
14519         break;
14520       d = ($nvtype)(u - 1);
14521       if (($uvtype)d != (u - 1))
14522         break;
14523 #ifdef SIGFPE
14524       if (bletched) {
14525         break;
14526 #endif
14527       } 
14528     }
14529     printf("%d\n", ((i == n) ? -n : i));
14530     exit(0);
14531 }
14532 EOP
14533 set try
14534
14535 d_nv_preserves_uv="$undef"
14536 if eval $compile; then
14537         nv_preserves_uv_bits="`$run ./try`"
14538 fi
14539 case "$nv_preserves_uv_bits" in
14540 \-[1-9]*)       
14541         nv_preserves_uv_bits=`expr 0 - $nv_preserves_uv_bits`
14542         $echo "Your NVs can preserve all $nv_preserves_uv_bits bits of your UVs."  2>&1
14543         d_nv_preserves_uv="$define"
14544         ;;
14545 [1-9]*) $echo "Your NVs can preserve only $nv_preserves_uv_bits bits of your UVs."  2>&1
14546         d_nv_preserves_uv="$undef" ;;
14547 *)      $echo "Can't figure out how many bits your NVs preserve." 2>&1
14548         nv_preserves_uv_bits="$undef" ;;
14549 esac
14550
14551 $rm -f try.* try
14552
14553
14554 : check for off64_t
14555 echo " "
14556 echo "Checking to see if you have off64_t..." >&4
14557 $cat >try.c <<EOCP
14558 #include <sys/types.h>
14559 #include <unistd.h>
14560 int main() { off64_t x = 7; }
14561 EOCP
14562 set try
14563 if eval $compile; then
14564         val="$define"
14565         echo "You have off64_t."
14566 else
14567         val="$undef"
14568         echo "You do not have off64_t."
14569         case "$lseeksize" in
14570         8) echo "(Your off_t is 64 bits, so you could use that.)" ;;
14571         esac
14572 fi
14573 $rm -f try.* try
14574 set d_off64_t
14575 eval $setvar
14576
14577 : how to create joinable pthreads
14578 if test "X$usethreads" = "X$define" -a "X$i_pthread" = "X$define"; then
14579         echo " "
14580         echo "Checking what constant to use for creating joinable pthreads..." >&4 
14581         $cat >try.c <<'EOCP'
14582 #include <pthread.h>
14583 int main() {
14584     int detachstate = JOINABLE;
14585 }
14586 EOCP
14587         set try -DJOINABLE=PTHREAD_CREATE_JOINABLE
14588         if eval $compile; then
14589                 echo "You seem to use PTHREAD_CREATE_JOINABLE." >&4
14590                 val="$undef" # Yes, undef.
14591                 set d_old_pthread_create_joinable
14592                 eval $setvar
14593                 val=""
14594                 set old_pthread_create_joinable
14595                 eval $setvar
14596         else
14597                 set try -DJOINABLE=PTHREAD_CREATE_UNDETACHED
14598                 if eval $compile; then
14599                         echo "You seem to use PTHREAD_CREATE_UNDETACHED." >&4
14600                         val="$define"
14601                         set d_old_pthread_create_joinable
14602                         eval $setvar
14603                         val=PTHREAD_CREATE_UNDETACHED
14604                         set old_pthread_create_joinable
14605                         eval $setvar
14606                 else            
14607                         set try -DJOINABLE=__UNDETACHED
14608                         if eval $compile; then
14609                                 echo "You seem to use __UNDETACHED." >&4
14610                                 val="$define"
14611                                 set d_old_pthread_create_joinable
14612                                 eval $setvar
14613                                 val=__UNDETACHED
14614                                 set old_pthread_create_joinable
14615                                 eval $setvar
14616                         else
14617                                 echo "Egads, nothing obvious found.  Guessing that you use 0." >&4
14618                                 val="$define"
14619                                 set d_old_pthread_create_joinable
14620                                 eval $setvar
14621                                 val=0
14622                                 set old_pthread_create_joinable
14623                                 eval $setvar
14624                         fi
14625                 fi
14626         fi
14627         $rm -f try try.*
14628 else
14629     d_old_pthread_create_joinable="$undef"
14630     old_pthread_create_joinable=""
14631 fi
14632
14633 : see if pause exists
14634 set pause d_pause
14635 eval $inlibc
14636
14637 : see if pipe exists
14638 set pipe d_pipe
14639 eval $inlibc
14640
14641 : see if poll exists
14642 set poll d_poll
14643 eval $inlibc
14644
14645 : see if readlink exists
14646 set readlink d_readlink
14647 eval $inlibc
14648
14649 echo " "
14650 procselfexe=''
14651 val="$undef"
14652 case "$d_readlink" in
14653 "$define")
14654         if $issymlink /proc/self/exe ; then
14655                 $ls -l /proc/self/exe > reflect
14656                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
14657                         echo "You have Linux-like /proc/self/exe."
14658                         procselfexe='"/proc/self/exe"'
14659                         val="$define"
14660                 fi
14661         fi
14662         if $issymlink /proc/curproc/file ; then
14663                 $ls -l /proc/curproc/file > reflect
14664                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
14665                         echo "You have BSD-like /proc/curproc/file."
14666                         procselfexe='"/proc/curproc/file"'
14667                         val="$define"
14668                 fi
14669         fi
14670         ;;
14671 esac
14672 $rm -f reflect
14673 set d_procselfexe
14674 eval $setvar
14675
14676 : see whether the pthread_atfork exists
14677 $cat >try.c <<EOP
14678 #include <pthread.h>
14679 #include <stdio.h>
14680 int main() {
14681 #ifdef  PTHREAD_ATFORK
14682         pthread_atfork(NULL,NULL,NULL);
14683 #endif
14684 }
14685 EOP
14686
14687 : see if pthread_atfork exists
14688 set try -DPTHREAD_ATFORK
14689 if eval $compile; then
14690     val="$define"
14691 else
14692     val="$undef"
14693 fi
14694 case "$usethreads" in
14695 $define)
14696         case "$val" in
14697         $define) echo 'pthread_atfork found.' >&4        ;;
14698         *)       echo 'pthread_atfork NOT found.' >&4    ;;
14699         esac
14700 esac
14701 set d_pthread_atfork
14702 eval $setvar
14703
14704 : see if pthread_attr_setscope exists
14705 set pthread_attr_setscope d_pthread_attr_setscope
14706 eval $inlibc
14707
14708
14709 : see whether the various POSIXish _yields exist
14710 $cat >try.c <<EOP
14711 #include <pthread.h>
14712 #include <stdio.h>
14713 int main() {
14714 #ifdef SCHED_YIELD
14715         sched_yield();
14716 #else
14717 #ifdef PTHREAD_YIELD
14718         pthread_yield();
14719 #else
14720 #ifdef PTHREAD_YIELD_NULL
14721         pthread_yield(NULL);
14722 #endif
14723 #endif
14724 #endif
14725 }
14726 EOP
14727 : see if sched_yield exists
14728 set try -DSCHED_YIELD
14729 if eval $compile; then
14730     val="$define"
14731     sched_yield='sched_yield()'
14732 else
14733     val="$undef"
14734 fi
14735 case "$usethreads" in
14736 $define)
14737         case "$val" in
14738         $define) echo 'sched_yield() found.' >&4        ;;
14739         *)       echo 'sched_yield() NOT found.' >&4    ;;
14740         esac
14741 esac
14742 set d_sched_yield
14743 eval $setvar
14744
14745 : see if pthread_yield exists
14746 set try -DPTHREAD_YIELD
14747 if eval $compile; then
14748     val="$define"
14749     case "$sched_yield" in
14750     '') sched_yield='pthread_yield()' ;;
14751     esac
14752 else
14753     set try -DPTHREAD_YIELD_NULL
14754     if eval $compile; then
14755         val="$define"
14756         case "$sched_yield" in
14757         '') sched_yield='pthread_yield(NULL)' ;;
14758         esac
14759     else
14760         val="$undef"
14761     fi
14762 fi
14763 case "$usethreads" in
14764 $define)
14765         case "$val" in
14766         $define) echo 'pthread_yield() found.' >&4      ;;
14767         *)       echo 'pthread_yield() NOT found.' >&4  ;;
14768         esac
14769         ;;
14770 esac
14771 set d_pthread_yield
14772 eval $setvar
14773
14774 case "$sched_yield" in
14775 '') sched_yield=undef ;;
14776 esac
14777
14778 $rm -f try try.*
14779
14780 : see if random_r exists
14781 set random_r d_random_r
14782 eval $inlibc
14783 case "$d_random_r" in
14784 "$define")
14785         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
14786         case "$d_random_r_proto:$usethreads" in
14787         ":define")      d_random_r_proto=define
14788                 set d_random_r_proto random_r $hdrs
14789                 eval $hasproto ;;
14790         *)      ;;
14791         esac
14792         case "$d_random_r_proto" in
14793         define)
14794         case "$random_r_proto" in
14795         ''|0) try='int random_r(int*, struct random_data*);'
14796         ./protochk "extern $try" $hdrs && random_r_proto=I_iS ;;
14797         esac
14798         case "$random_r_proto" in
14799         ''|0) try='int random_r(long*, struct random_data*);'
14800         ./protochk "extern $try" $hdrs && random_r_proto=I_lS ;;
14801         esac
14802         case "$random_r_proto" in
14803         ''|0) try='int random_r(struct random_data*, int32_t*);'
14804         ./protochk "extern $try" $hdrs && random_r_proto=I_St ;;
14805         esac
14806         case "$random_r_proto" in
14807         ''|0)   d_random_r=undef
14808                 random_r_proto=0
14809                 echo "Disabling random_r, cannot determine prototype." >&4 ;;
14810         * )     case "$random_r_proto" in
14811                 REENTRANT_PROTO*) ;;
14812                 *) random_r_proto="REENTRANT_PROTO_$random_r_proto" ;;
14813                 esac
14814                 echo "Prototype: $try" ;;
14815         esac
14816         ;;
14817         *)      case "$usethreads" in
14818                 define) echo "random_r has no prototype, not using it." >&4 ;;
14819                 esac
14820                 d_random_r=undef
14821                 random_r_proto=0
14822                 ;;
14823         esac
14824         ;;
14825 *)      random_r_proto=0
14826         ;;
14827 esac
14828
14829 : see if readdir and friends exist
14830 set readdir d_readdir
14831 eval $inlibc
14832 set seekdir d_seekdir
14833 eval $inlibc
14834 set telldir d_telldir
14835 eval $inlibc
14836 set rewinddir d_rewinddir
14837 eval $inlibc
14838
14839 : see if readdir64_r exists
14840 set readdir64_r d_readdir64_r
14841 eval $inlibc
14842 case "$d_readdir64_r" in
14843 "$define")
14844         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
14845         case "$d_readdir64_r_proto:$usethreads" in
14846         ":define")      d_readdir64_r_proto=define
14847                 set d_readdir64_r_proto readdir64_r $hdrs
14848                 eval $hasproto ;;
14849         *)      ;;
14850         esac
14851         case "$d_readdir64_r_proto" in
14852         define)
14853         case "$readdir64_r_proto" in
14854         ''|0) try='int readdir64_r(DIR*, struct dirent64*, struct dirent64**);'
14855         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TSR ;;
14856         esac
14857         case "$readdir64_r_proto" in
14858         ''|0) try='int readdir64_r(DIR*, struct dirent64*);'
14859         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TS ;;
14860         esac
14861         case "$readdir64_r_proto" in
14862         ''|0)   d_readdir64_r=undef
14863                 readdir64_r_proto=0
14864                 echo "Disabling readdir64_r, cannot determine prototype." >&4 ;;
14865         * )     case "$readdir64_r_proto" in
14866                 REENTRANT_PROTO*) ;;
14867                 *) readdir64_r_proto="REENTRANT_PROTO_$readdir64_r_proto" ;;
14868                 esac
14869                 echo "Prototype: $try" ;;
14870         esac
14871         ;;
14872         *)      case "$usethreads" in
14873                 define) echo "readdir64_r has no prototype, not using it." >&4 ;;
14874                 esac
14875                 d_readdir64_r=undef
14876                 readdir64_r_proto=0
14877                 ;;
14878         esac
14879         ;;
14880 *)      readdir64_r_proto=0
14881         ;;
14882 esac
14883
14884 : see if readdir_r exists
14885 set readdir_r d_readdir_r
14886 eval $inlibc
14887 case "$d_readdir_r" in
14888 "$define")
14889         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
14890         case "$d_readdir_r_proto:$usethreads" in
14891         ":define")      d_readdir_r_proto=define
14892                 set d_readdir_r_proto readdir_r $hdrs
14893                 eval $hasproto ;;
14894         *)      ;;
14895         esac
14896         case "$d_readdir_r_proto" in
14897         define)
14898         case "$readdir_r_proto" in
14899         ''|0) try='int readdir_r(DIR*, struct dirent*, struct dirent**);'
14900         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TSR ;;
14901         esac
14902         case "$readdir_r_proto" in
14903         ''|0) try='int readdir_r(DIR*, struct dirent*);'
14904         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TS ;;
14905         esac
14906         case "$readdir_r_proto" in
14907         ''|0)   d_readdir_r=undef
14908                 readdir_r_proto=0
14909                 echo "Disabling readdir_r, cannot determine prototype." >&4 ;;
14910         * )     case "$readdir_r_proto" in
14911                 REENTRANT_PROTO*) ;;
14912                 *) readdir_r_proto="REENTRANT_PROTO_$readdir_r_proto" ;;
14913                 esac
14914                 echo "Prototype: $try" ;;
14915         esac
14916         ;;
14917         *)      case "$usethreads" in
14918                 define) echo "readdir_r has no prototype, not using it." >&4 ;;
14919                 esac
14920                 d_readdir_r=undef
14921                 readdir_r_proto=0
14922                 ;;
14923         esac
14924         ;;
14925 *)      readdir_r_proto=0
14926         ;;
14927 esac
14928
14929 : see if readv exists
14930 set readv d_readv
14931 eval $inlibc
14932
14933 : see if recvmsg exists
14934 set recvmsg d_recvmsg
14935 eval $inlibc
14936
14937 : see if rename exists
14938 set rename d_rename
14939 eval $inlibc
14940
14941 : see if rmdir exists
14942 set rmdir d_rmdir
14943 eval $inlibc
14944
14945 : see if memory.h is available.
14946 val=''
14947 set memory.h val
14948 eval $inhdr
14949
14950 : See if it conflicts with string.h
14951 case "$val" in
14952 $define)
14953         case "$strings" in
14954         '') ;;
14955         *)
14956                 $cppstdin $cppflags $cppminus < $strings > mem.h
14957                 if $contains 'memcpy' mem.h >/dev/null 2>&1; then
14958                         echo " "
14959                         echo "We won't be including <memory.h>."
14960                         val="$undef"
14961                 fi
14962                 $rm -f mem.h
14963                 ;;
14964         esac
14965 esac
14966 set i_memory
14967 eval $setvar
14968
14969 : can bcopy handle overlapping blocks?
14970 echo " "
14971 val="$undef"
14972 case "$d_memmove" in
14973 "$define") echo "I'll use memmove() instead of bcopy() for overlapping copies." ;;
14974 *)      case "$d_bcopy" in
14975         "$define")
14976                 echo "Checking to see if bcopy() can do overlapping copies..." >&4
14977                 $cat >try.c <<EOCP
14978 #$i_memory I_MEMORY
14979 #$i_stdlib I_STDLIB
14980 #$i_string I_STRING
14981 #$i_unistd I_UNISTD
14982 EOCP
14983         $cat >>try.c <<'EOCP'
14984 #include <stdio.h>
14985 #ifdef I_MEMORY
14986 #  include <memory.h>
14987 #endif
14988 #ifdef I_STDLIB
14989 #  include <stdlib.h>
14990 #endif
14991 #ifdef I_STRING
14992 #  include <string.h>
14993 #else
14994 #  include <strings.h>
14995 #endif
14996 #ifdef I_UNISTD
14997 #  include <unistd.h>  /* Needed for NetBSD */
14998 #endif
14999 int main()
15000 {
15001 char buf[128], abc[128];
15002 char *b;
15003 int len;
15004 int off;
15005 int align;
15006
15007 /* Copy "abcde..." string to char abc[] so that gcc doesn't
15008    try to store the string in read-only memory. */
15009 bcopy("abcdefghijklmnopqrstuvwxyz0123456789", abc, 36);
15010
15011 for (align = 7; align >= 0; align--) {
15012         for (len = 36; len; len--) {
15013                 b = buf+align;
15014                 bcopy(abc, b, len);
15015                 for (off = 1; off <= len; off++) {
15016                         bcopy(b, b+off, len);
15017                         bcopy(b+off, b, len);
15018                         if (bcmp(b, abc, len))
15019                                 exit(1);
15020                 }
15021         }
15022 }
15023 exit(0);
15024 }
15025 EOCP
15026                 set try
15027                 if eval $compile_ok; then
15028                         if ./try 2>/dev/null; then
15029                                 echo "Yes, it can."
15030                                 val="$define"
15031                         else
15032                                 echo "It can't, sorry."
15033                         fi
15034                 else
15035                         echo "(I can't compile the test program, so we'll assume not...)"
15036                 fi
15037                 ;;
15038         esac
15039         $rm -f try.* try core
15040         ;;
15041 esac
15042 set d_safebcpy
15043 eval $setvar
15044
15045 : can memcpy handle overlapping blocks?
15046 echo " "
15047 val="$undef"
15048 case "$d_memmove" in
15049 "$define") echo "I'll use memmove() instead of memcpy() for overlapping copies." ;;
15050 *)      case "$d_memcpy" in
15051         "$define")
15052                 echo "Checking to see if memcpy() can do overlapping copies..." >&4
15053                 $cat >try.c <<EOCP
15054 #$i_memory I_MEMORY
15055 #$i_stdlib I_STDLIB
15056 #$i_string I_STRING
15057 #$i_unistd I_UNISTD
15058 EOCP
15059         $cat >>try.c <<'EOCP'
15060 #include <stdio.h>
15061 #ifdef I_MEMORY
15062 #  include <memory.h>
15063 #endif
15064 #ifdef I_STDLIB
15065 #  include <stdlib.h>
15066 #endif
15067 #ifdef I_STRING
15068 #  include <string.h>
15069 #else
15070 #  include <strings.h>
15071 #endif
15072 #ifdef I_UNISTD
15073 #  include <unistd.h>  /* Needed for NetBSD */
15074 #endif
15075 int main()
15076 {
15077 char buf[128], abc[128];
15078 char *b;
15079 int len;
15080 int off;
15081 int align;
15082
15083 /* Copy "abcde..." string to char abc[] so that gcc doesn't
15084    try to store the string in read-only memory. */
15085 memcpy(abc, "abcdefghijklmnopqrstuvwxyz0123456789", 36);
15086
15087 for (align = 7; align >= 0; align--) {
15088         for (len = 36; len; len--) {
15089                 b = buf+align;
15090                 memcpy(b, abc, len);
15091                 for (off = 1; off <= len; off++) {
15092                         memcpy(b+off, b, len);
15093                         memcpy(b, b+off, len);
15094                         if (memcmp(b, abc, len))
15095                                 exit(1);
15096                 }
15097         }
15098 }
15099 exit(0);
15100 }
15101 EOCP
15102                 set try
15103                 if eval $compile_ok; then
15104                         if ./try 2>/dev/null; then
15105                                 echo "Yes, it can."
15106                                 val="$define"
15107                         else
15108                                 echo "It can't, sorry."
15109                         fi
15110                 else
15111                         echo "(I can't compile the test program, so we'll assume not...)"
15112                 fi
15113                 ;;
15114         esac
15115         $rm -f try.* try core
15116         ;;
15117 esac
15118 set d_safemcpy
15119 eval $setvar
15120
15121 : can memcmp be trusted to compare relative magnitude?
15122 val="$undef"
15123 case "$d_memcmp" in
15124 "$define")
15125         echo " "
15126         echo "Checking if your memcmp() can compare relative magnitude..." >&4
15127         $cat >try.c <<EOCP
15128 #$i_memory I_MEMORY
15129 #$i_stdlib I_STDLIB
15130 #$i_string I_STRING
15131 #$i_unistd I_UNISTD
15132 EOCP
15133         $cat >>try.c <<'EOCP'
15134 #include <stdio.h>
15135 #ifdef I_MEMORY
15136 #  include <memory.h>
15137 #endif
15138 #ifdef I_STDLIB
15139 #  include <stdlib.h>
15140 #endif
15141 #ifdef I_STRING
15142 #  include <string.h>
15143 #else
15144 #  include <strings.h>
15145 #endif
15146 #ifdef I_UNISTD
15147 #  include <unistd.h>  /* Needed for NetBSD */
15148 #endif
15149 int main()
15150 {
15151 char a = -1;
15152 char b = 0;
15153 if ((a < b) && memcmp(&a, &b, 1) < 0)
15154         exit(1);
15155 exit(0);
15156 }
15157 EOCP
15158         set try
15159         if eval $compile_ok; then
15160                 if $run ./try 2>/dev/null; then
15161                         echo "Yes, it can."
15162                         val="$define"
15163                 else
15164                         echo "No, it can't (it uses signed chars)."
15165                 fi
15166         else
15167                 echo "(I can't compile the test program, so we'll assume not...)"
15168         fi
15169         ;;
15170 esac
15171 $rm -f try.* try core
15172 set d_sanemcmp
15173 eval $setvar
15174
15175 : see if prototype for sbrk is available
15176 echo " "
15177 set d_sbrkproto sbrk $i_unistd unistd.h
15178 eval $hasproto
15179
15180 : see if select exists
15181 set select d_select
15182 eval $inlibc
15183
15184 : see if semctl exists
15185 set semctl d_semctl
15186 eval $inlibc
15187
15188 : see if semget exists
15189 set semget d_semget
15190 eval $inlibc
15191
15192 : see if semop exists
15193 set semop d_semop
15194 eval $inlibc
15195
15196 : see how much of the 'sem*(2)' library is present.
15197 h_sem=true
15198 echo " "
15199 case "$d_semctl$d_semget$d_semop" in
15200 *"$undef"*) h_sem=false;;
15201 esac
15202 case "$osname" in
15203 freebsd)
15204     case "`ipcs 2>&1`" in
15205     "SVID messages"*"not configured"*)
15206         echo "Your $osname does not have the sem*(2) configured." >&4
15207         h_sem=false
15208         val="$undef"
15209         set semctl d_semctl
15210         eval $setvar
15211         set semget d_semget
15212         eval $setvar
15213         set semop d_semop
15214         eval $setvar
15215         ;;
15216     esac
15217     ;;
15218 esac
15219 : we could also check for sys/ipc.h ...
15220 if $h_sem && $test `./findhdr sys/sem.h`; then
15221         echo "You have the full sem*(2) library." >&4
15222         val="$define"
15223 else
15224         echo "You don't have the full sem*(2) library." >&4
15225         val="$undef"
15226 fi
15227 set d_sem
15228 eval $setvar
15229
15230 : see whether sys/sem.h defines union semun
15231 echo " "
15232 $cat > try.c <<'END'
15233 #include <sys/types.h>
15234 #include <sys/ipc.h>
15235 #include <sys/sem.h>
15236 int main () { union semun semun; semun.buf = 0; }
15237 END
15238 set try
15239 if eval $compile; then
15240     echo "You have union semun in <sys/sem.h>." >&4
15241     val="$define"
15242 else
15243     echo "You do not have union semun in <sys/sem.h>." >&4
15244     val="$undef"
15245 fi
15246 $rm -f try try.c
15247 set d_union_semun
15248 eval $setvar
15249
15250 : see how to do semctl IPC_STAT
15251 case "$d_sem" in
15252 $define)
15253     echo " "
15254     $cat > try.h <<END
15255 #ifndef S_IRUSR
15256 #   ifdef S_IREAD
15257 #       define S_IRUSR S_IREAD
15258 #       define S_IWUSR S_IWRITE
15259 #       define S_IXUSR S_IEXEC
15260 #   else
15261 #       define S_IRUSR 0400
15262 #       define S_IWUSR 0200
15263 #       define S_IXUSR 0100
15264 #   endif
15265 #   define S_IRGRP (S_IRUSR>>3)
15266 #   define S_IWGRP (S_IWUSR>>3)
15267 #   define S_IXGRP (S_IXUSR>>3)
15268 #   define S_IROTH (S_IRUSR>>6)
15269 #   define S_IWOTH (S_IWUSR>>6)
15270 #   define S_IXOTH (S_IXUSR>>6)
15271 #endif
15272 #ifndef S_IRWXU
15273 #   define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
15274 #   define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
15275 #   define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
15276 #endif
15277 END
15278     : see whether semctl IPC_STAT can use union semun
15279     val="$undef"
15280     case "$d_semctl_semun" in
15281     '')
15282       $cat > try.c <<END
15283 #include <sys/types.h>
15284 #include <sys/ipc.h>
15285 #include <sys/sem.h>
15286 #include <sys/stat.h>
15287 #include <stdio.h>
15288 #include <errno.h>
15289 #include "try.h"
15290 #ifndef errno
15291 extern int errno;
15292 #endif
15293 #$d_union_semun HAS_UNION_SEMUN
15294 int main() {
15295     union semun
15296 #ifndef HAS_UNION_SEMUN
15297     {
15298         int val;
15299         struct semid_ds *buf;
15300         unsigned short *array;
15301     }
15302 #endif
15303     arg;
15304     int sem, st;
15305
15306 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) && defined(S_IRWXO) && defined(IPC_CREAT)
15307     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
15308     if (sem > -1) {
15309         struct semid_ds argbuf;
15310         arg.buf = &argbuf;
15311 #       ifdef IPC_STAT
15312         st = semctl(sem, 0, IPC_STAT, arg);
15313         if (st == 0)
15314             printf("semun\n");
15315         else
15316 #       endif /* IPC_STAT */
15317             printf("semctl IPC_STAT failed: errno = %d\n", errno);
15318 #       ifdef IPC_RMID
15319         if (semctl(sem, 0, IPC_RMID, arg) != 0)
15320 #       endif /* IPC_RMID */
15321             printf("semctl IPC_RMID failed: errno = %d\n", errno);
15322     } else
15323 #endif /* IPC_PRIVATE && ... */
15324         printf("semget failed: errno = %d\n", errno);
15325   return 0;
15326 }
15327 END
15328       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       ;;
15337     esac
15338     set d_semctl_semun
15339     eval $setvar
15340     case "$d_semctl_semun" in
15341     $define)
15342         echo "You can use union semun for semctl IPC_STAT." >&4
15343         also='also'
15344         ;;
15345     *)  echo "You cannot use union semun for semctl IPC_STAT." >&4
15346         also=''
15347         ;;
15348     esac
15349
15350     : see whether semctl IPC_STAT can use struct semid_ds pointer
15351     val="$undef"
15352     case "$d_semctl_semid_ds" in
15353     '')
15354       $cat > try.c <<'END'
15355 #include <sys/types.h>
15356 #include <sys/ipc.h>
15357 #include <sys/sem.h>
15358 #include <sys/stat.h>
15359 #include "try.h"
15360 #include <stdio.h>
15361 #include <errno.h>
15362 #ifndef errno
15363 extern int errno;
15364 #endif
15365 int main() {
15366     struct semid_ds arg;
15367     int sem, st;
15368
15369 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) &&  defined(S_IRWXO) && defined(IPC_CREAT)
15370     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
15371     if (sem > -1) {
15372 #       ifdef IPC_STAT
15373         st = semctl(sem, 0, IPC_STAT, &arg);
15374         if (st == 0)
15375             printf("semid_ds\n");
15376         else
15377 #       endif /* IPC_STAT */
15378             printf("semctl IPC_STAT failed: errno = %d\n", errno);
15379 #       ifdef IPC_RMID
15380         if (semctl(sem, 0, IPC_RMID, &arg) != 0)
15381 #       endif /* IPC_RMID */
15382             printf("semctl IPC_RMID failed: errno = %d\n", errno);
15383     } else
15384 #endif /* IPC_PRIVATE && ... */
15385         printf("semget failed: errno = %d\n", errno);
15386
15387     return 0;
15388 }
15389 END
15390       set try
15391       if eval $compile; then
15392           xxx=`$run ./try`
15393           case "$xxx" in
15394           semid_ds) val="$define" ;;
15395           esac
15396       fi
15397       $rm -f try try.c
15398       ;;
15399     esac
15400     set d_semctl_semid_ds
15401     eval $setvar
15402     case "$d_semctl_semid_ds" in
15403     $define)
15404         echo "You can $also use struct semid_ds* for semctl IPC_STAT." >&4
15405         ;;
15406     *)  echo "You cannot use struct semid_ds* for semctl IPC_STAT." >&4
15407         ;;
15408     esac
15409     $rm -f try.h
15410     ;;
15411 *)  val="$undef"
15412
15413     # We do not have the full sem*(2) library, so assume we can not
15414     # use either.
15415
15416     set d_semctl_semun
15417     eval $setvar
15418
15419     set d_semctl_semid_ds
15420     eval $setvar
15421     ;;
15422 esac
15423
15424 : see if sendmsg exists
15425 set sendmsg d_sendmsg
15426 eval $inlibc
15427
15428 : see if setegid exists
15429 set setegid d_setegid
15430 eval $inlibc
15431
15432 : see if seteuid exists
15433 set seteuid d_seteuid
15434 eval $inlibc
15435
15436 : see if setgrent exists
15437 set setgrent d_setgrent
15438 eval $inlibc
15439
15440 : see if setgrent_r exists
15441 set setgrent_r d_setgrent_r
15442 eval $inlibc
15443 case "$d_setgrent_r" in
15444 "$define")
15445         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
15446         case "$d_setgrent_r_proto:$usethreads" in
15447         ":define")      d_setgrent_r_proto=define
15448                 set d_setgrent_r_proto setgrent_r $hdrs
15449                 eval $hasproto ;;
15450         *)      ;;
15451         esac
15452         case "$d_setgrent_r_proto" in
15453         define)
15454         case "$setgrent_r_proto" in
15455         ''|0) try='int setgrent_r(FILE**);'
15456         ./protochk "extern $try" $hdrs && setgrent_r_proto=I_H ;;
15457         esac
15458         case "$setgrent_r_proto" in
15459         ''|0) try='void setgrent_r(FILE**);'
15460         ./protochk "extern $try" $hdrs && setgrent_r_proto=V_H ;;
15461         esac
15462         case "$setgrent_r_proto" in
15463         ''|0)   d_setgrent_r=undef
15464                 setgrent_r_proto=0
15465                 echo "Disabling setgrent_r, cannot determine prototype." >&4 ;;
15466         * )     case "$setgrent_r_proto" in
15467                 REENTRANT_PROTO*) ;;
15468                 *) setgrent_r_proto="REENTRANT_PROTO_$setgrent_r_proto" ;;
15469                 esac
15470                 echo "Prototype: $try" ;;
15471         esac
15472         ;;
15473         *)      case "$usethreads" in
15474                 define) echo "setgrent_r has no prototype, not using it." >&4 ;;
15475                 esac
15476                 d_setgrent_r=undef
15477                 setgrent_r_proto=0
15478                 ;;
15479         esac
15480         ;;
15481 *)      setgrent_r_proto=0
15482         ;;
15483 esac
15484
15485 : see if sethostent exists
15486 set sethostent d_sethent
15487 eval $inlibc
15488
15489 : see if sethostent_r exists
15490 set sethostent_r d_sethostent_r
15491 eval $inlibc
15492 case "$d_sethostent_r" in
15493 "$define")
15494         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15495         case "$d_sethostent_r_proto:$usethreads" in
15496         ":define")      d_sethostent_r_proto=define
15497                 set d_sethostent_r_proto sethostent_r $hdrs
15498                 eval $hasproto ;;
15499         *)      ;;
15500         esac
15501         case "$d_sethostent_r_proto" in
15502         define)
15503         case "$sethostent_r_proto" in
15504         ''|0) try='int sethostent_r(int, struct hostent_data*);'
15505         ./protochk "extern $try" $hdrs && sethostent_r_proto=I_ID ;;
15506         esac
15507         case "$sethostent_r_proto" in
15508         ''|0) try='void sethostent_r(int, struct hostent_data*);'
15509         ./protochk "extern $try" $hdrs && sethostent_r_proto=V_ID ;;
15510         esac
15511         case "$sethostent_r_proto" in
15512         ''|0)   d_sethostent_r=undef
15513                 sethostent_r_proto=0
15514                 echo "Disabling sethostent_r, cannot determine prototype." >&4 ;;
15515         * )     case "$sethostent_r_proto" in
15516                 REENTRANT_PROTO*) ;;
15517                 *) sethostent_r_proto="REENTRANT_PROTO_$sethostent_r_proto" ;;
15518                 esac
15519                 echo "Prototype: $try" ;;
15520         esac
15521         ;;
15522         *)      case "$usethreads" in
15523                 define) echo "sethostent_r has no prototype, not using it." >&4 ;;
15524                 esac
15525                 d_sethostent_r=undef
15526                 sethostent_r_proto=0
15527                 ;;
15528         esac
15529         ;;
15530 *)      sethostent_r_proto=0
15531         ;;
15532 esac
15533
15534 : see if setitimer exists
15535 set setitimer d_setitimer
15536 eval $inlibc
15537
15538 : see if setlinebuf exists
15539 set setlinebuf d_setlinebuf
15540 eval $inlibc
15541
15542 : see if setlocale exists
15543 set setlocale d_setlocale
15544 eval $inlibc
15545
15546 : see if locale.h is available
15547 set locale.h i_locale
15548 eval $inhdr
15549
15550 : see if setlocale_r exists
15551 set setlocale_r d_setlocale_r
15552 eval $inlibc
15553 case "$d_setlocale_r" in
15554 "$define")
15555         hdrs="$i_systypes sys/types.h define stdio.h $i_locale locale.h"
15556         case "$d_setlocale_r_proto:$usethreads" in
15557         ":define")      d_setlocale_r_proto=define
15558                 set d_setlocale_r_proto setlocale_r $hdrs
15559                 eval $hasproto ;;
15560         *)      ;;
15561         esac
15562         case "$d_setlocale_r_proto" in
15563         define)
15564         case "$setlocale_r_proto" in
15565         ''|0) try='int setlocale_r(int, const char*, char*, int);'
15566         ./protochk "extern $try" $hdrs && setlocale_r_proto=I_ICBI ;;
15567         esac
15568         case "$setlocale_r_proto" in
15569         ''|0)   d_setlocale_r=undef
15570                 setlocale_r_proto=0
15571                 echo "Disabling setlocale_r, cannot determine prototype." >&4 ;;
15572         * )     case "$setlocale_r_proto" in
15573                 REENTRANT_PROTO*) ;;
15574                 *) setlocale_r_proto="REENTRANT_PROTO_$setlocale_r_proto" ;;
15575                 esac
15576                 echo "Prototype: $try" ;;
15577         esac
15578         ;;
15579         *)      case "$usethreads" in
15580                 define) echo "setlocale_r has no prototype, not using it." >&4 ;;
15581                 esac
15582                 d_setlocale_r=undef
15583                 setlocale_r_proto=0
15584                 ;;
15585         esac
15586         ;;
15587 *)      setlocale_r_proto=0
15588         ;;
15589 esac
15590
15591 : see if setnetent exists
15592 set setnetent d_setnent
15593 eval $inlibc
15594
15595 : see if setnetent_r exists
15596 set setnetent_r d_setnetent_r
15597 eval $inlibc
15598 case "$d_setnetent_r" in
15599 "$define")
15600         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15601         case "$d_setnetent_r_proto:$usethreads" in
15602         ":define")      d_setnetent_r_proto=define
15603                 set d_setnetent_r_proto setnetent_r $hdrs
15604                 eval $hasproto ;;
15605         *)      ;;
15606         esac
15607         case "$d_setnetent_r_proto" in
15608         define)
15609         case "$setnetent_r_proto" in
15610         ''|0) try='int setnetent_r(int, struct netent_data*);'
15611         ./protochk "extern $try" $hdrs && setnetent_r_proto=I_ID ;;
15612         esac
15613         case "$setnetent_r_proto" in
15614         ''|0) try='void setnetent_r(int, struct netent_data*);'
15615         ./protochk "extern $try" $hdrs && setnetent_r_proto=V_ID ;;
15616         esac
15617         case "$setnetent_r_proto" in
15618         ''|0)   d_setnetent_r=undef
15619                 setnetent_r_proto=0
15620                 echo "Disabling setnetent_r, cannot determine prototype." >&4 ;;
15621         * )     case "$setnetent_r_proto" in
15622                 REENTRANT_PROTO*) ;;
15623                 *) setnetent_r_proto="REENTRANT_PROTO_$setnetent_r_proto" ;;
15624                 esac
15625                 echo "Prototype: $try" ;;
15626         esac
15627         ;;
15628         *)      case "$usethreads" in
15629                 define) echo "setnetent_r has no prototype, not using it." >&4 ;;
15630                 esac
15631                 d_setnetent_r=undef
15632                 setnetent_r_proto=0
15633                 ;;
15634         esac
15635         ;;
15636 *)      setnetent_r_proto=0
15637         ;;
15638 esac
15639
15640 : see if setprotoent exists
15641 set setprotoent d_setpent
15642 eval $inlibc
15643
15644 : see if setpgid exists
15645 set setpgid d_setpgid
15646 eval $inlibc
15647
15648 : see if setpgrp2 exists
15649 set setpgrp2 d_setpgrp2
15650 eval $inlibc
15651
15652 : see if setpriority exists
15653 set setpriority d_setprior
15654 eval $inlibc
15655
15656 : see if setproctitle exists
15657 set setproctitle d_setproctitle
15658 eval $inlibc
15659
15660 : see if setprotoent_r exists
15661 set setprotoent_r d_setprotoent_r
15662 eval $inlibc
15663 case "$d_setprotoent_r" in
15664 "$define")
15665         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15666         case "$d_setprotoent_r_proto:$usethreads" in
15667         ":define")      d_setprotoent_r_proto=define
15668                 set d_setprotoent_r_proto setprotoent_r $hdrs
15669                 eval $hasproto ;;
15670         *)      ;;
15671         esac
15672         case "$d_setprotoent_r_proto" in
15673         define)
15674         case "$setprotoent_r_proto" in
15675         ''|0) try='int setprotoent_r(int, struct protoent_data*);'
15676         ./protochk "extern $try" $hdrs && setprotoent_r_proto=I_ID ;;
15677         esac
15678         case "$setprotoent_r_proto" in
15679         ''|0) try='void setprotoent_r(int, struct protoent_data*);'
15680         ./protochk "extern $try" $hdrs && setprotoent_r_proto=V_ID ;;
15681         esac
15682         case "$setprotoent_r_proto" in
15683         ''|0)   d_setprotoent_r=undef
15684                 setprotoent_r_proto=0
15685                 echo "Disabling setprotoent_r, cannot determine prototype." >&4 ;;
15686         * )     case "$setprotoent_r_proto" in
15687                 REENTRANT_PROTO*) ;;
15688                 *) setprotoent_r_proto="REENTRANT_PROTO_$setprotoent_r_proto" ;;
15689                 esac
15690                 echo "Prototype: $try" ;;
15691         esac
15692         ;;
15693         *)      case "$usethreads" in
15694                 define) echo "setprotoent_r has no prototype, not using it." >&4 ;;
15695                 esac
15696                 d_setprotoent_r=undef
15697                 setprotoent_r_proto=0
15698                 ;;
15699         esac
15700         ;;
15701 *)      setprotoent_r_proto=0
15702         ;;
15703 esac
15704
15705 : see if setpwent exists
15706 set setpwent d_setpwent
15707 eval $inlibc
15708
15709 : see if setpwent_r exists
15710 set setpwent_r d_setpwent_r
15711 eval $inlibc
15712 case "$d_setpwent_r" in
15713 "$define")
15714         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
15715         case "$d_setpwent_r_proto:$usethreads" in
15716         ":define")      d_setpwent_r_proto=define
15717                 set d_setpwent_r_proto setpwent_r $hdrs
15718                 eval $hasproto ;;
15719         *)      ;;
15720         esac
15721         case "$d_setpwent_r_proto" in
15722         define)
15723         case "$setpwent_r_proto" in
15724         ''|0) try='int setpwent_r(FILE**);'
15725         ./protochk "extern $try" $hdrs && setpwent_r_proto=I_H ;;
15726         esac
15727         case "$setpwent_r_proto" in
15728         ''|0) try='void setpwent_r(FILE**);'
15729         ./protochk "extern $try" $hdrs && setpwent_r_proto=V_H ;;
15730         esac
15731         case "$setpwent_r_proto" in
15732         ''|0)   d_setpwent_r=undef
15733                 setpwent_r_proto=0
15734                 echo "Disabling setpwent_r, cannot determine prototype." >&4 ;;
15735         * )     case "$setpwent_r_proto" in
15736                 REENTRANT_PROTO*) ;;
15737                 *) setpwent_r_proto="REENTRANT_PROTO_$setpwent_r_proto" ;;
15738                 esac
15739                 echo "Prototype: $try" ;;
15740         esac
15741         ;;
15742         *)      case "$usethreads" in
15743                 define) echo "setpwent_r has no prototype, not using it." >&4 ;;
15744                 esac
15745                 d_setpwent_r=undef
15746                 setpwent_r_proto=0
15747                 ;;
15748         esac
15749         ;;
15750 *)      setpwent_r_proto=0
15751         ;;
15752 esac
15753
15754 : see if setregid exists
15755 set setregid d_setregid
15756 eval $inlibc
15757 set setresgid d_setresgid
15758 eval $inlibc
15759
15760 : see if setreuid exists
15761 set setreuid d_setreuid
15762 eval $inlibc
15763 set setresuid d_setresuid
15764 eval $inlibc
15765
15766 : see if setrgid exists
15767 set setrgid d_setrgid
15768 eval $inlibc
15769
15770 : see if setruid exists
15771 set setruid d_setruid
15772 eval $inlibc
15773
15774 : see if setservent exists
15775 set setservent d_setsent
15776 eval $inlibc
15777
15778 : see if setservent_r exists
15779 set setservent_r d_setservent_r
15780 eval $inlibc
15781 case "$d_setservent_r" in
15782 "$define")
15783         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15784         case "$d_setservent_r_proto:$usethreads" in
15785         ":define")      d_setservent_r_proto=define
15786                 set d_setservent_r_proto setservent_r $hdrs
15787                 eval $hasproto ;;
15788         *)      ;;
15789         esac
15790         case "$d_setservent_r_proto" in
15791         define)
15792         case "$setservent_r_proto" in
15793         ''|0) try='int setservent_r(int, struct servent_data*);'
15794         ./protochk "extern $try" $hdrs && setservent_r_proto=I_ID ;;
15795         esac
15796         case "$setservent_r_proto" in
15797         ''|0) try='void setservent_r(int, struct servent_data*);'
15798         ./protochk "extern $try" $hdrs && setservent_r_proto=V_ID ;;
15799         esac
15800         case "$setservent_r_proto" in
15801         ''|0)   d_setservent_r=undef
15802                 setservent_r_proto=0
15803                 echo "Disabling setservent_r, cannot determine prototype." >&4 ;;
15804         * )     case "$setservent_r_proto" in
15805                 REENTRANT_PROTO*) ;;
15806                 *) setservent_r_proto="REENTRANT_PROTO_$setservent_r_proto" ;;
15807                 esac
15808                 echo "Prototype: $try" ;;
15809         esac
15810         ;;
15811         *)      case "$usethreads" in
15812                 define) echo "setservent_r has no prototype, not using it." >&4 ;;
15813                 esac
15814                 d_setservent_r=undef
15815                 setservent_r_proto=0
15816                 ;;
15817         esac
15818         ;;
15819 *)      setservent_r_proto=0
15820         ;;
15821 esac
15822
15823 : see if setsid exists
15824 set setsid d_setsid
15825 eval $inlibc
15826
15827 : see if setvbuf exists
15828 set setvbuf d_setvbuf
15829 eval $inlibc
15830
15831 : see if sfio.h is available
15832 set sfio.h i_sfio
15833 eval $inhdr
15834
15835
15836 : see if sfio library is available
15837 case "$i_sfio" in
15838 $define)
15839         val=''
15840         set sfreserve val
15841         eval $inlibc
15842         ;;
15843 *)
15844         val="$undef"
15845         ;;
15846 esac
15847 : Ok, but do we want to use it.
15848 case "$val" in
15849 $define)
15850         case "$usesfio" in
15851         true|$define|[yY]*) dflt='y';;
15852         *) dflt='n';;
15853         esac
15854         echo "$package can use the sfio library, but it is experimental."
15855         case "$useperlio" in
15856         "$undef")
15857             echo "For sfio also the PerlIO abstraction layer is needed."
15858             echo "Earlier you said you wouldn't want that."
15859             ;;
15860         esac
15861         rp="You seem to have sfio available, do you want to try using it?"
15862         . ./myread
15863         case "$ans" in
15864         y|Y)    echo "Ok, turning on both sfio and PerlIO, then."
15865                 useperlio="$define"
15866                 val="$define"
15867                 ;;
15868         *)      echo "Ok, avoiding sfio this time.  I'll use stdio instead."
15869                 val="$undef"
15870                 ;;
15871         esac
15872         ;;
15873 *)      case "$usesfio" in
15874         true|$define|[yY]*)
15875                 echo "Sorry, cannot find sfio on this machine." >&4
15876                 echo "Ignoring your setting of usesfio=$usesfio." >&4
15877                 val="$undef"
15878                 ;;
15879         esac
15880         ;;
15881 esac
15882 set d_sfio
15883 eval $setvar
15884 case "$d_sfio" in
15885 $define) usesfio='true';;
15886 *) usesfio='false';;
15887 esac
15888 case "$d_sfio" in
15889 $define) ;;
15890 *)      : Remove sfio from list of libraries to use
15891         case "$libs" in
15892         *-lsfio*)
15893                 echo "Removing unneeded -lsfio from library list" >&4
15894                 set `echo X $libs | $sed -e 's/-lsfio / /' -e 's/-lsfio$//'`
15895                 shift
15896                 libs="$*"
15897                 echo "libs = $libs" >&4
15898                 ;;
15899         esac
15900 ;;
15901 esac
15902
15903
15904 : see if shmctl exists
15905 set shmctl d_shmctl
15906 eval $inlibc
15907
15908 : see if shmget exists
15909 set shmget d_shmget
15910 eval $inlibc
15911
15912 : see if shmat exists
15913 set shmat d_shmat
15914 eval $inlibc
15915 : see what shmat returns
15916 case "$d_shmat" in
15917 "$define")
15918         $cat >shmat.c <<'END'
15919 #include <sys/shm.h>
15920 void *shmat();
15921 END
15922         if $cc $ccflags -c shmat.c >/dev/null 2>&1; then
15923                 shmattype='void *'
15924         else
15925                 shmattype='char *'
15926         fi
15927         echo "and it returns ($shmattype)." >&4
15928         : see if a prototype for shmat is available
15929         xxx=`./findhdr sys/shm.h`
15930         $cppstdin $cppflags $cppminus < $xxx > shmat.c 2>/dev/null
15931         if $contains 'shmat.*(' shmat.c >/dev/null 2>&1; then
15932                 val="$define"
15933         else
15934                 val="$undef"
15935         fi
15936         $rm -f shmat.[co]
15937         ;;
15938 *)
15939         val="$undef"
15940         ;;
15941 esac
15942 set d_shmatprototype
15943 eval $setvar
15944
15945 : see if shmdt exists
15946 set shmdt d_shmdt
15947 eval $inlibc
15948
15949 : see how much of the 'shm*(2)' library is present.
15950 h_shm=true
15951 echo " "
15952 case "$d_shmctl$d_shmget$d_shmat$d_shmdt" in
15953 *"$undef"*) h_shm=false;;
15954 esac
15955 case "$osname" in
15956 freebsd)
15957     case "`ipcs 2>&1`" in
15958     "SVID shared memory"*"not configured"*)
15959         echo "Your $osname does not have the shm*(2) configured." >&4
15960         h_shm=false
15961         val="$undef"
15962         set shmctl d_shmctl
15963         evat $setvar
15964         set shmget d_shmget
15965         evat $setvar
15966         set shmat d_shmat
15967         evat $setvar
15968         set shmdt d_shmdt
15969         evat $setvar
15970         ;;
15971     esac
15972     ;;
15973 esac
15974 : we could also check for sys/ipc.h ...
15975 if $h_shm && $test `./findhdr sys/shm.h`; then
15976         echo "You have the full shm*(2) library." >&4
15977         val="$define"
15978 else
15979         echo "You don't have the full shm*(2) library." >&4
15980         val="$undef"
15981 fi
15982 set d_shm
15983 eval $setvar
15984
15985 echo " "
15986 : see if we have sigaction
15987 if set sigaction val -f d_sigaction; eval $csym; $val; then
15988         echo 'sigaction() found.' >&4
15989         $cat > try.c <<EOP
15990 #include <stdio.h>
15991 #include <sys/types.h>
15992 #include <signal.h>
15993 #$i_stdlib I_STDLIB
15994 #ifdef I_STDLIB
15995 #include <stdlib.h>
15996 #endif
15997 int main()
15998 {
15999     struct sigaction act, oact;
16000     act.sa_flags = 0;
16001     oact.sa_handler = 0;
16002     /* so that act and oact are used */
16003     exit(act.sa_flags == 0 &&  oact.sa_handler == 0);
16004 }
16005 EOP
16006         set try
16007         if eval $compile_ok; then
16008                 val="$define"
16009         else
16010                 echo "But you don't seem to have a useable struct sigaction." >&4
16011                 val="$undef"
16012         fi
16013 else
16014         echo 'sigaction NOT found.' >&4
16015         val="$undef"
16016 fi
16017 set d_sigaction; eval $setvar
16018 $rm -f try try$_o try.c
16019
16020 : see if sigprocmask exists
16021 set sigprocmask d_sigprocmask
16022 eval $inlibc
16023
16024 : see if sigsetjmp exists
16025 echo " "
16026 case "$d_sigsetjmp" in
16027 '')
16028         $cat >try.c <<EOP
16029 #include <setjmp.h>
16030 #$i_stdlib I_STDLIB
16031 #ifdef I_STDLIB
16032 #include <stdlib.h>
16033 #endif
16034 sigjmp_buf env;
16035 int set = 1;
16036 int main()
16037 {
16038         if (sigsetjmp(env,1))
16039                 exit(set);
16040         set = 0;
16041         siglongjmp(env, 1);
16042         exit(1);
16043 }
16044 EOP
16045         set try
16046         if eval $compile; then
16047                 if $run ./try >/dev/null 2>&1; then
16048                         echo "POSIX sigsetjmp found." >&4
16049                         val="$define"
16050                 else
16051                         $cat >&4 <<EOM
16052 Uh-Oh! You have POSIX sigsetjmp and siglongjmp, but they do not work properly!!
16053 I'll ignore them.
16054 EOM
16055                         val="$undef"
16056                 fi
16057         else
16058                 echo "sigsetjmp not found." >&4
16059                 val="$undef"
16060         fi
16061         ;;
16062 *) val="$d_sigsetjmp"
16063         case "$d_sigsetjmp" in
16064         $define) echo "POSIX sigsetjmp found." >&4;;
16065         $undef) echo "sigsetjmp not found." >&4;;
16066         esac
16067         ;;
16068 esac
16069 set d_sigsetjmp
16070 eval $setvar
16071 $rm -f try.c try
16072
16073 : see if sockatmark exists
16074 set sockatmark d_sockatmark
16075 eval $inlibc
16076
16077 : see if prototype for sockatmark is available
16078 echo " "
16079 set d_sockatmarkproto sockatmark $d_socket sys/socket.h
16080 eval $hasproto
16081
16082 : see if socks5_init exists
16083 set socks5_init d_socks5_init
16084 eval $inlibc
16085
16086 : see if srand48_r exists
16087 set srand48_r d_srand48_r
16088 eval $inlibc
16089 case "$d_srand48_r" in
16090 "$define")
16091         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
16092         case "$d_srand48_r_proto:$usethreads" in
16093         ":define")      d_srand48_r_proto=define
16094                 set d_srand48_r_proto srand48_r $hdrs
16095                 eval $hasproto ;;
16096         *)      ;;
16097         esac
16098         case "$d_srand48_r_proto" in
16099         define)
16100         case "$srand48_r_proto" in
16101         ''|0) try='int srand48_r(long, struct drand48_data*);'
16102         ./protochk "extern $try" $hdrs && srand48_r_proto=I_LS ;;
16103         esac
16104         case "$srand48_r_proto" in
16105         ''|0)   d_srand48_r=undef
16106                 srand48_r_proto=0
16107                 echo "Disabling srand48_r, cannot determine prototype." >&4 ;;
16108         * )     case "$srand48_r_proto" in
16109                 REENTRANT_PROTO*) ;;
16110                 *) srand48_r_proto="REENTRANT_PROTO_$srand48_r_proto" ;;
16111                 esac
16112                 echo "Prototype: $try" ;;
16113         esac
16114         ;;
16115         *)      case "$usethreads" in
16116                 define) echo "srand48_r has no prototype, not using it." >&4 ;;
16117                 esac
16118                 d_srand48_r=undef
16119                 srand48_r_proto=0
16120                 ;;
16121         esac
16122         ;;
16123 *)      srand48_r_proto=0
16124         ;;
16125 esac
16126
16127 : see if srandom_r exists
16128 set srandom_r d_srandom_r
16129 eval $inlibc
16130 case "$d_srandom_r" in
16131 "$define")
16132         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
16133         case "$d_srandom_r_proto:$usethreads" in
16134         ":define")      d_srandom_r_proto=define
16135                 set d_srandom_r_proto srandom_r $hdrs
16136                 eval $hasproto ;;
16137         *)      ;;
16138         esac
16139         case "$d_srandom_r_proto" in
16140         define)
16141         case "$srandom_r_proto" in
16142         ''|0) try='int srandom_r(unsigned int, struct random_data*);'
16143         ./protochk "extern $try" $hdrs && srandom_r_proto=I_TS ;;
16144         esac
16145         case "$srandom_r_proto" in
16146         ''|0)   d_srandom_r=undef
16147                 srandom_r_proto=0
16148                 echo "Disabling srandom_r, cannot determine prototype." >&4 ;;
16149         * )     case "$srandom_r_proto" in
16150                 REENTRANT_PROTO*) ;;
16151                 *) srandom_r_proto="REENTRANT_PROTO_$srandom_r_proto" ;;
16152                 esac
16153                 echo "Prototype: $try" ;;
16154         esac
16155         ;;
16156         *)      case "$usethreads" in
16157                 define) echo "srandom_r has no prototype, not using it." >&4 ;;
16158                 esac
16159                 d_srandom_r=undef
16160                 srandom_r_proto=0
16161                 ;;
16162         esac
16163         ;;
16164 *)      srandom_r_proto=0
16165         ;;
16166 esac
16167
16168 : see if prototype for setresgid is available
16169 echo " "
16170 set d_sresgproto setresgid $i_unistd unistd.h
16171 eval $hasproto
16172
16173 : see if prototype for setresuid is available
16174 echo " "
16175 set d_sresuproto setresuid $i_unistd unistd.h
16176 eval $hasproto
16177
16178 : see if sys/stat.h is available
16179 set sys/stat.h i_sysstat
16180 eval $inhdr
16181
16182
16183 : see if stat knows about block sizes
16184 echo " "
16185 echo "Checking to see if your struct stat has st_blocks field..." >&4
16186 set d_statblks stat st_blocks $i_sysstat sys/stat.h
16187 eval $hasfield
16188
16189
16190 : see if this is a sys/vfs.h system
16191 set sys/vfs.h i_sysvfs
16192 eval $inhdr
16193
16194
16195 : see if this is a sys/statfs.h system
16196 set sys/statfs.h i_sysstatfs
16197 eval $inhdr
16198
16199
16200 echo " "
16201 echo "Checking to see if your system supports struct statfs..." >&4
16202 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
16203 eval $hasstruct
16204 case "$d_statfs_s" in
16205 "$define")      echo "Yes, it does."   ;;
16206 *)              echo "No, it doesn't." ;;
16207 esac
16208
16209
16210
16211 : see if struct statfs knows about f_flags
16212 case "$d_statfs_s" in
16213 define) 
16214         echo " "
16215         echo "Checking to see if your struct statfs has f_flags field..." >&4
16216         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
16217         eval $hasfield
16218         ;;
16219 *)      val="$undef"
16220         set d_statfs_f_flags
16221         eval $setvar
16222         ;;
16223 esac
16224 case "$d_statfs_f_flags" in
16225 "$define")      echo "Yes, it does."   ;;
16226 *)              echo "No, it doesn't." ;;
16227 esac
16228
16229 $cat >&4 <<EOM
16230 Checking how to access stdio streams by file descriptor number...
16231 EOM
16232 case "$stdio_stream_array" in
16233 '')     $cat >try.c <<EOCP
16234 #include <stdio.h>
16235 int main() {
16236   if (&STDIO_STREAM_ARRAY[fileno(stdin)] == stdin)
16237     printf("yes\n");
16238 }
16239 EOCP
16240         for s in _iob __iob __sF
16241         do
16242                 set try -DSTDIO_STREAM_ARRAY=$s
16243                 if eval $compile; then
16244                         case "`$run ./try`" in
16245                         yes)    stdio_stream_array=$s; break ;;
16246                         esac
16247                 fi
16248         done
16249         $rm -f try.* try$exe_ext
16250 esac
16251 case "$stdio_stream_array" in
16252 '')     $cat >&4 <<EOM
16253 I can't figure out how to access stdio streams by file descriptor number.
16254 EOM
16255         d_stdio_stream_array="$undef"
16256         ;;
16257 *)      $cat >&4 <<EOM
16258 You can access stdio streams by file descriptor number by the $stdio_stream_array array.
16259 EOM
16260         d_stdio_stream_array="$define"
16261         ;;
16262 esac
16263
16264 : see if strcoll exists
16265 set strcoll d_strcoll
16266 eval $inlibc
16267
16268 : check for structure copying
16269 echo " "
16270 echo "Checking to see if your C compiler can copy structs..." >&4
16271 $cat >try.c <<'EOCP'
16272 int main()
16273 {
16274         struct blurfl {
16275                 int dyick;
16276         } foo, bar;
16277
16278         foo = bar;
16279 }
16280 EOCP
16281 if $cc -c try.c >/dev/null 2>&1 ; then
16282         val="$define"
16283         echo "Yup, it can."
16284 else
16285         val="$undef"
16286         echo "Nope, it can't."
16287 fi
16288 set d_strctcpy
16289 eval $setvar
16290 $rm -f try.*
16291
16292 : see if strerror and/or sys_errlist[] exist
16293 echo " "
16294 if test "X$d_strerror" = X -o "X$d_syserrlst" = X; then
16295     if set strerror val -f d_strerror; eval $csym; $val; then
16296                 echo 'strerror() found.' >&4
16297                 d_strerror="$define"
16298                 d_strerrm='strerror(e)'
16299                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
16300                         echo "(You also have sys_errlist[], so we could roll our own strerror.)" 
16301                         d_syserrlst="$define"
16302                 else
16303                         echo "(Since you don't have sys_errlist[], sterror() is welcome.)"
16304                         d_syserrlst="$undef"
16305                 fi
16306     elif xxx=`./findhdr string.h`; test "$xxx" || xxx=`./findhdr strings.h`; \
16307                         $contains '#[   ]*define.*strerror' "$xxx" >/dev/null 2>&1; then
16308                 echo 'strerror() found in string header.' >&4
16309                 d_strerror="$define"
16310                 d_strerrm='strerror(e)'
16311                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
16312                         echo "(Most probably, strerror() uses sys_errlist[] for descriptions.)"
16313                                 d_syserrlst="$define"
16314                 else
16315                         echo "(You don't appear to have any sys_errlist[], how can this be?)"
16316                         d_syserrlst="$undef"
16317                 fi
16318     elif set sys_errlist val -a d_syserrlst; eval $csym; $val; then
16319                 echo "strerror() not found, but you have sys_errlist[] so we'll use that." >&4
16320                 d_strerror="$undef"
16321                 d_syserrlst="$define"
16322                 d_strerrm='((e)<0||(e)>=sys_nerr?"unknown":sys_errlist[e])'
16323     else
16324                 echo 'strerror() and sys_errlist[] NOT found.' >&4
16325                 d_strerror="$undef"
16326                 d_syserrlst="$undef"
16327                 d_strerrm='"unknown"'
16328     fi
16329 fi
16330
16331 : see if strerror_r exists
16332 set strerror_r d_strerror_r
16333 eval $inlibc
16334 case "$d_strerror_r" in
16335 "$define")
16336         hdrs="$i_systypes sys/types.h define stdio.h $i_string string.h"
16337         case "$d_strerror_r_proto:$usethreads" in
16338         ":define")      d_strerror_r_proto=define
16339                 set d_strerror_r_proto strerror_r $hdrs
16340                 eval $hasproto ;;
16341         *)      ;;
16342         esac
16343         case "$d_strerror_r_proto" in
16344         define)
16345         case "$strerror_r_proto" in
16346         ''|0) try='int strerror_r(int, char*, size_t);'
16347         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBW ;;
16348         esac
16349         case "$strerror_r_proto" in
16350         ''|0) try='int strerror_r(int, char*, int);'
16351         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBI ;;
16352         esac
16353         case "$strerror_r_proto" in
16354         ''|0) try='char* strerror_r(int, char*, size_t);'
16355         ./protochk "extern $try" $hdrs && strerror_r_proto=B_IBW ;;
16356         esac
16357         case "$strerror_r_proto" in
16358         ''|0)   d_strerror_r=undef
16359                 strerror_r_proto=0
16360                 echo "Disabling strerror_r, cannot determine prototype." >&4 ;;
16361         * )     case "$strerror_r_proto" in
16362                 REENTRANT_PROTO*) ;;
16363                 *) strerror_r_proto="REENTRANT_PROTO_$strerror_r_proto" ;;
16364                 esac
16365                 echo "Prototype: $try" ;;
16366         esac
16367         ;;
16368         *)      case "$usethreads" in
16369                 define) echo "strerror_r has no prototype, not using it." >&4 ;;
16370                 esac
16371                 d_strerror_r=undef
16372                 strerror_r_proto=0
16373                 ;;
16374         esac
16375         ;;
16376 *)      strerror_r_proto=0
16377         ;;
16378 esac
16379
16380 : see if strftime exists
16381 set strftime d_strftime
16382 eval $inlibc
16383
16384 : see if strtod exists
16385 set strtod d_strtod
16386 eval $inlibc
16387
16388 : see if strtol exists
16389 set strtol d_strtol
16390 eval $inlibc
16391
16392 : see if strtold exists
16393 set strtold d_strtold
16394 eval $inlibc
16395
16396 : see if strtoll exists
16397 set strtoll d_strtoll
16398 eval $inlibc
16399
16400 case "$d_longlong-$d_strtoll" in
16401 "$define-$define")
16402         $cat <<EOM
16403 Checking whether your strtoll() works okay...
16404 EOM
16405         $cat >try.c <<'EOCP'
16406 #include <errno.h>
16407 #ifdef __hpux
16408 #define strtoll __strtoll
16409 #endif
16410 #ifdef __EMX__
16411 #define strtoll _strtoll
16412 #endif
16413 #include <stdio.h>
16414 extern long long int strtoll(char *s, char **, int); 
16415 static int bad = 0;
16416 int check(char *s, long long ell, int een) {
16417         long long gll;
16418         errno = 0;
16419         gll = strtoll(s, 0, 10);
16420         if (!((gll == ell) && (errno == een)))
16421                 bad++;
16422 }
16423 int main() {
16424         check(" 1",                                      1LL, 0);
16425         check(" 0",                                      0LL, 0);
16426         check("-1",                                     -1LL, 0);
16427         check("-9223372036854775808", -9223372036854775808LL, 0);
16428         check("-9223372036854775808", -9223372036854775808LL, 0);
16429         check(" 9223372036854775807",  9223372036854775807LL, 0);
16430         check("-9223372036854775808", -9223372036854775808LL, 0);
16431         check(" 9223372036854775808",  9223372036854775807LL, ERANGE);
16432         check("-9223372036854775809", -9223372036854775808LL, ERANGE);
16433         if (!bad)
16434                 printf("ok\n");
16435 }
16436 EOCP
16437         set try
16438         if eval $compile; then
16439                 yyy=`$run ./try`
16440                 case "$yyy" in
16441                 ok) echo "Your strtoll() seems to be working okay." ;;
16442                 *) cat <<EOM >&4
16443 Your strtoll() doesn't seem to be working okay.
16444 EOM
16445                    d_strtoll="$undef"
16446                    ;;
16447                 esac
16448         else
16449                 echo "(I can't seem to compile the test program--assuming it doesn't)"
16450                 d_strtoll="$undef"
16451         fi
16452         ;;
16453 esac
16454
16455 : see if strtoq exists
16456 set strtoq d_strtoq
16457 eval $inlibc
16458
16459 : see if strtoul exists
16460 set strtoul d_strtoul
16461 eval $inlibc
16462
16463 case "$d_strtoul" in
16464 "$define")
16465         $cat <<EOM
16466 Checking whether your strtoul() works okay...
16467 EOM
16468         $cat >try.c <<'EOCP'
16469 #include <errno.h>
16470 #include <stdio.h>
16471 extern unsigned long int strtoul(char *s, char **, int); 
16472 static int bad = 0;
16473 void check(char *s, unsigned long eul, int een) {
16474         unsigned long gul;
16475         errno = 0;
16476         gul = strtoul(s, 0, 10);
16477         if (!((gul == eul) && (errno == een)))
16478                 bad++;
16479 }
16480 int main() {
16481         check(" 1", 1L, 0);
16482         check(" 0", 0L, 0);
16483 EOCP
16484         case "$longsize" in
16485         8)
16486             $cat >>try.c <<'EOCP'
16487         check("18446744073709551615", 18446744073709551615UL, 0);
16488         check("18446744073709551616", 18446744073709551615UL, ERANGE);
16489 #if 0 /* strtoul() for /^-/ strings is undefined. */
16490         check("-1", 18446744073709551615UL, 0);
16491         check("-18446744073709551614", 2, 0);
16492         check("-18446744073709551615", 1, 0);
16493         check("-18446744073709551616", 18446744073709551615UL, ERANGE);
16494         check("-18446744073709551617", 18446744073709551615UL, ERANGE);
16495 #endif
16496 EOCP
16497                 ;;
16498         4)
16499                     $cat >>try.c <<'EOCP'
16500         check("4294967295", 4294967295UL, 0);
16501         check("4294967296", 4294967295UL, ERANGE);
16502 #if 0 /* strtoul() for /^-/ strings is undefined. */
16503         check("-1", 4294967295UL, 0);
16504         check("-4294967294", 2, 0);
16505         check("-4294967295", 1, 0);
16506         check("-4294967296", 4294967295UL, ERANGE);
16507         check("-4294967297", 4294967295UL, ERANGE);
16508 #endif
16509 EOCP
16510                 ;;
16511         *)
16512 : Should we write these tests to be more portable by sprintf-ing
16513 : ~0 and then manipulating that char string as input for strtol?
16514                 ;;
16515         esac
16516         $cat >>try.c <<'EOCP'
16517         if (!bad)
16518                 printf("ok\n");
16519         return 0;
16520 }
16521 EOCP
16522         set try
16523         if eval $compile; then
16524                 case "`$run ./try`" in
16525                 ok) echo "Your strtoul() seems to be working okay." ;;
16526                 *) cat <<EOM >&4
16527 Your strtoul() doesn't seem to be working okay.
16528 EOM
16529                    d_strtoul="$undef"
16530                    ;;
16531                 esac
16532         fi
16533         ;;
16534 esac
16535
16536 : see if strtoull exists
16537 set strtoull d_strtoull
16538 eval $inlibc
16539
16540 case "$d_longlong-$d_strtoull" in
16541 "$define-$define")
16542         $cat <<EOM
16543 Checking whether your strtoull() works okay...
16544 EOM
16545         $cat >try.c <<'EOCP'
16546 #include <errno.h>
16547 #ifdef __hpux
16548 #define strtoull __strtoull
16549 #endif
16550 #include <stdio.h>
16551 extern unsigned long long int strtoull(char *s, char **, int); 
16552 static int bad = 0;
16553 int check(char *s, long long eull, int een) {
16554         long long gull;
16555         errno = 0;
16556         gull = strtoull(s, 0, 10);
16557         if (!((gull == eull) && (errno == een)))
16558                 bad++;
16559 }
16560 int main() {
16561         check(" 1",                                        1LL, 0);
16562         check(" 0",                                        0LL, 0);
16563         check("18446744073709551615",  18446744073709551615ULL, 0);
16564         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
16565 #if 0 /* strtoull() for /^-/ strings is undefined. */
16566         check("-1",                    18446744073709551615ULL, 0);
16567         check("-18446744073709551614",                     2LL, 0);
16568         check("-18446744073709551615",                     1LL, 0);
16569         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
16570         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
16571 #endif
16572         if (!bad)
16573                 printf("ok\n");
16574 }
16575 EOCP
16576         set try
16577         if eval $compile; then
16578                 case "`$run ./try`" in
16579                 ok) echo "Your strtoull() seems to be working okay." ;;
16580                 *) cat <<EOM >&4
16581 Your strtoull() doesn't seem to be working okay.
16582 EOM
16583                    d_strtoull="$undef"
16584                    ;;
16585                 esac
16586         fi
16587         ;;
16588 esac
16589
16590 : see if strtouq exists
16591 set strtouq d_strtouq
16592 eval $inlibc
16593
16594 case "$d_strtouq" in
16595 "$define")
16596         $cat <<EOM
16597 Checking whether your strtouq() works okay...
16598 EOM
16599         $cat >try.c <<'EOCP'
16600 #include <errno.h>
16601 #include <stdio.h>
16602 extern unsigned long long int strtouq(char *s, char **, int); 
16603 static int bad = 0;
16604 void check(char *s, unsigned long long eull, int een) {
16605         unsigned long long gull;
16606         errno = 0;
16607         gull = strtouq(s, 0, 10);
16608         if (!((gull == eull) && (errno == een)))
16609                 bad++;
16610 }
16611 int main() {
16612         check(" 1",                                        1LL, 0);
16613         check(" 0",                                        0LL, 0);
16614         check("18446744073709551615",  18446744073709551615ULL, 0);
16615         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
16616 #if 0 /* strtouq() for /^-/ strings is undefined. */
16617         check("-1",                    18446744073709551615ULL, 0);
16618         check("-18446744073709551614",                     2LL, 0);
16619         check("-18446744073709551615",                     1LL, 0);
16620         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
16621         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
16622 #endif
16623         if (!bad)
16624                 printf("ok\n");
16625         return 0;
16626 }
16627 EOCP
16628         set try
16629         if eval $compile; then
16630                 case "`$run ./try`" in
16631                 ok) echo "Your strtouq() seems to be working okay." ;;
16632                 *) cat <<EOM >&4
16633 Your strtouq() doesn't seem to be working okay.
16634 EOM
16635                    d_strtouq="$undef"
16636                    ;;
16637                 esac
16638         fi
16639         ;;
16640 esac
16641
16642 : see if strxfrm exists
16643 set strxfrm d_strxfrm
16644 eval $inlibc
16645
16646 : see if symlink exists
16647 set symlink d_symlink
16648 eval $inlibc
16649
16650 : see if syscall exists
16651 set syscall d_syscall
16652 eval $inlibc
16653
16654 : see if prototype for syscall is available
16655 echo " "
16656 set d_syscallproto syscall $i_unistd unistd.h
16657 eval $hasproto
16658
16659 : see if sysconf exists
16660 set sysconf d_sysconf
16661 eval $inlibc
16662
16663 : see if system exists
16664 set system d_system
16665 eval $inlibc
16666
16667 : see if tcgetpgrp exists
16668 set tcgetpgrp d_tcgetpgrp
16669 eval $inlibc
16670
16671 : see if tcsetpgrp exists
16672 set tcsetpgrp d_tcsetpgrp
16673 eval $inlibc
16674
16675 : see if prototype for telldir is available
16676 echo " "
16677 set d_telldirproto telldir $i_systypes sys/types.h $i_dirent dirent.h
16678 eval $hasproto
16679
16680 : see if time exists
16681 echo " "
16682 if test "X$d_time" = X -o X"$timetype" = X; then
16683     if set time val -f d_time; eval $csym; $val; then
16684                 echo 'time() found.' >&4
16685                 val="$define"
16686                 rp="What is the type returned by time() on this system?"
16687                 set time_t timetype long stdio.h sys/types.h
16688                 eval $typedef_ask
16689     else
16690                 echo 'time() not found, hope that will do.' >&4
16691                 val="$undef"
16692                 timetype='int';
16693     fi
16694     set d_time
16695     eval $setvar
16696 fi
16697
16698 : see if this is a sys/times.h system
16699 set sys/times.h i_systimes
16700 eval $inhdr
16701
16702 : see if times exists
16703 echo " "
16704 if set times val -f d_times; eval $csym; $val; then
16705         echo 'times() found.' >&4
16706         d_times="$define"
16707         inc=''
16708         case "$i_systimes" in
16709         "$define") inc='sys/times.h';;
16710         esac
16711         rp="What is the type returned by times() on this system?"
16712         set clock_t clocktype long stdio.h sys/types.h $inc
16713         eval $typedef_ask
16714 else
16715         echo 'times() NOT found, hope that will do.' >&4
16716         d_times="$undef"
16717         clocktype='int'
16718 fi
16719
16720 : see if tmpnam_r exists
16721 set tmpnam_r d_tmpnam_r
16722 eval $inlibc
16723 case "$d_tmpnam_r" in
16724 "$define")
16725         hdrs="$i_systypes sys/types.h define stdio.h "
16726         case "$d_tmpnam_r_proto:$usethreads" in
16727         ":define")      d_tmpnam_r_proto=define
16728                 set d_tmpnam_r_proto tmpnam_r $hdrs
16729                 eval $hasproto ;;
16730         *)      ;;
16731         esac
16732         case "$d_tmpnam_r_proto" in
16733         define)
16734         case "$tmpnam_r_proto" in
16735         ''|0) try='char* tmpnam_r(char*);'
16736         ./protochk "extern $try" $hdrs && tmpnam_r_proto=B_B ;;
16737         esac
16738         case "$tmpnam_r_proto" in
16739         ''|0)   d_tmpnam_r=undef
16740                 tmpnam_r_proto=0
16741                 echo "Disabling tmpnam_r, cannot determine prototype." >&4 ;;
16742         * )     case "$tmpnam_r_proto" in
16743                 REENTRANT_PROTO*) ;;
16744                 *) tmpnam_r_proto="REENTRANT_PROTO_$tmpnam_r_proto" ;;
16745                 esac
16746                 echo "Prototype: $try" ;;
16747         esac
16748         ;;
16749         *)      case "$usethreads" in
16750                 define) echo "tmpnam_r has no prototype, not using it." >&4 ;;
16751                 esac
16752                 d_tmpnam_r=undef
16753                 tmpnam_r_proto=0
16754                 ;;
16755         esac
16756         ;;
16757 *)      tmpnam_r_proto=0
16758         ;;
16759 esac
16760
16761 : see if truncate exists
16762 set truncate d_truncate
16763 eval $inlibc
16764
16765 : see if ttyname_r exists
16766 set ttyname_r d_ttyname_r
16767 eval $inlibc
16768 case "$d_ttyname_r" in
16769 "$define")
16770         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
16771         case "$d_ttyname_r_proto:$usethreads" in
16772         ":define")      d_ttyname_r_proto=define
16773                 set d_ttyname_r_proto ttyname_r $hdrs
16774                 eval $hasproto ;;
16775         *)      ;;
16776         esac
16777         case "$d_ttyname_r_proto" in
16778         define)
16779         case "$ttyname_r_proto" in
16780         ''|0) try='int ttyname_r(int, char*, size_t);'
16781         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBW ;;
16782         esac
16783         case "$ttyname_r_proto" in
16784         ''|0) try='int ttyname_r(int, char*, int);'
16785         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBI ;;
16786         esac
16787         case "$ttyname_r_proto" in
16788         ''|0) try='char* ttyname_r(int, char*, int);'
16789         ./protochk "extern $try" $hdrs && ttyname_r_proto=B_IBI ;;
16790         esac
16791         case "$ttyname_r_proto" in
16792         ''|0)   d_ttyname_r=undef
16793                 ttyname_r_proto=0
16794                 echo "Disabling ttyname_r, cannot determine prototype." >&4 ;;
16795         * )     case "$ttyname_r_proto" in
16796                 REENTRANT_PROTO*) ;;
16797                 *) ttyname_r_proto="REENTRANT_PROTO_$ttyname_r_proto" ;;
16798                 esac
16799                 echo "Prototype: $try" ;;
16800         esac
16801         ;;
16802         *)      case "$usethreads" in
16803                 define) echo "ttyname_r has no prototype, not using it." >&4 ;;
16804                 esac
16805                 d_ttyname_r=undef
16806                 ttyname_r_proto=0
16807                 ;;
16808         esac
16809         ;;
16810 *)      ttyname_r_proto=0
16811         ;;
16812 esac
16813
16814 : see if tzname[] exists
16815 echo " "
16816 if set tzname val -a d_tzname; eval $csym; $val; then
16817         val="$define"
16818         echo 'tzname[] found.' >&4
16819 else
16820         val="$undef"
16821         echo 'tzname[] NOT found.' >&4
16822 fi
16823 set d_tzname
16824 eval $setvar
16825
16826 case "$osname" in
16827 next|rhapsody|darwin) multiarch="$define" ;;
16828 esac
16829 case "$multiarch" in
16830 ''|[nN]*) multiarch="$undef" ;;
16831 esac
16832
16833 : check for ordering of bytes in a UV
16834 echo " "
16835 case "$usecrosscompile$multiarch" in
16836 *$define*)
16837         $cat <<EOM
16838 You seem to be either cross-compiling or doing a multiarchitecture build,
16839 skipping the byteorder check.
16840
16841 EOM
16842         byteorder='ffff'
16843         ;;
16844 *)
16845         case "$byteorder" in
16846         '')
16847                 $cat <<'EOM'
16848 In the following, larger digits indicate more significance.  A big-endian
16849 machine like a Pyramid or a Motorola 680?0 chip will come out to 4321. A
16850 little-endian machine like a Vax or an Intel 80?86 chip would be 1234. Other
16851 machines may have weird orders like 3412.  A Cray will report 87654321,
16852 an Alpha will report 12345678. If the test program works the default is
16853 probably right.
16854 I'm now running the test program...
16855 EOM
16856                 $cat >try.c <<EOCP
16857 #include <stdio.h>
16858 #$i_stdlib I_STDLIB
16859 #ifdef I_STDLIB
16860 #include <stdlib.h>
16861 #endif
16862 #include <sys/types.h>
16863 typedef $uvtype UV;
16864 int main()
16865 {
16866         int i;
16867         union {
16868                 UV l;
16869                 char c[$uvsize];
16870         } u;
16871
16872         if ($uvsize > 4)
16873                 u.l = (((UV)0x08070605) << 32) | (UV)0x04030201;
16874         else
16875                 u.l = (UV)0x04030201;
16876         for (i = 0; i < $uvsize; i++)
16877                 printf("%c", u.c[i]+'0');
16878         printf("\n");
16879         exit(0);
16880 }
16881 EOCP
16882                 xxx_prompt=y
16883                 set try
16884                 if eval $compile && ./try > /dev/null; then
16885                         dflt=`$run ./try`
16886                         case "$dflt" in
16887                         [1-4][1-4][1-4][1-4]|12345678|87654321)
16888                                 echo "(The test program ran ok.)"
16889                                 echo "byteorder=$dflt"
16890                                 xxx_prompt=n
16891                         ;;
16892                         ????|????????) echo "(The test program ran ok.)" ;;
16893                         *) echo "(The test program didn't run right for some reason.)" ;;
16894                         esac
16895                 else
16896                         dflt='4321'
16897                         cat <<'EOM'
16898 (I can't seem to compile the test program.  Guessing big-endian...)
16899 EOM
16900                 fi
16901                 case "$xxx_prompt" in
16902                 y)
16903                         rp="What is the order of bytes in $uvtype?"
16904                         . ./myread
16905                         byteorder="$ans"
16906                         ;;
16907                 *)      byteorder=$dflt
16908                         ;;
16909                 esac
16910                 ;;
16911         esac
16912         $rm -f try.c try
16913         ;;
16914 esac
16915
16916
16917 $cat <<EOM
16918
16919 Checking to see whether you can access character data unalignedly...
16920 EOM
16921 case "$d_u32align" in
16922 '')   $cat >try.c <<EOCP
16923 #include <stdio.h>
16924 #$i_stdlib I_STDLIB
16925 #ifdef I_STDLIB
16926 #include <stdlib.h>
16927 #endif
16928 #define U32 $u32type
16929 #define BYTEORDER 0x$byteorder
16930 #define U8 $u8type
16931 #include <signal.h>
16932 #ifdef SIGBUS
16933 $signal_t bletch(s) int s; { exit(4); }
16934 #endif
16935 int main() {
16936 #if BYTEORDER == 0x1234 || BYTEORDER == 0x4321
16937     U8 buf[8];
16938     U32 *up;
16939     int i;
16940
16941     if (sizeof(U32) != 4) {
16942         printf("sizeof(U32) is not 4, but %d\n", sizeof(U32));
16943         exit(1);
16944     }
16945
16946     fflush(stdout);
16947
16948 #ifdef SIGBUS
16949     signal(SIGBUS, bletch);
16950 #endif
16951
16952     buf[0] = 0;
16953     buf[1] = 0;
16954     buf[2] = 0;
16955     buf[3] = 1;
16956     buf[5] = 0;
16957     buf[6] = 0;
16958     buf[7] = 0;
16959     buf[8] = 1;
16960
16961     for (i = 0; i < 4; i++) {
16962         up = (U32*)(buf + i);
16963         if (! ((*up == 1 << (8*i)) ||   /* big-endian */
16964                (*up == 1 << (8*(3-i)))  /* little-endian */
16965               )
16966            )
16967         {
16968             printf("read failed (%x)\n", *up);
16969             exit(2);
16970         }
16971     }
16972
16973     /* write test */
16974     for (i = 0; i < 4; i++) {
16975         up = (U32*)(buf + i);
16976         *up = 0xBeef;
16977         if (*up != 0xBeef) {
16978             printf("write failed (%x)\n", *up);
16979             exit(3);
16980         }
16981     }
16982
16983     exit(0);
16984 #else
16985     printf("1\n");
16986     exit(1);
16987 #endif
16988     return 0;
16989 }
16990 EOCP
16991 set try
16992 if eval $compile_ok; then
16993         echo "(Testing for character data alignment may crash the test.  That's okay.)" >&4
16994         $run ./try 2>&1 >/dev/null
16995         case "$?" in
16996         0)      cat >&4 <<EOM
16997 You can access character data pretty unalignedly.
16998 EOM
16999                 d_u32align="$undef"
17000                 ;;
17001         *)      cat >&4 <<EOM
17002 It seems that you must access character data in an aligned manner.
17003 EOM
17004                 d_u32align="$define"
17005                 ;;
17006         esac
17007 else
17008         rp='Can you access character data at unaligned addresses?'
17009         dflt='n'
17010         . ./myread
17011         case "$ans" in
17012         [yY]*)  d_u32align="$undef"  ;;
17013         *)      d_u32align="$define" ;;
17014         esac
17015 fi
17016 $rm -f core core.try.* try.core
17017 ;;
17018 esac
17019
17020 : see if ualarm exists
17021 set ualarm d_ualarm
17022 eval $inlibc
17023
17024 : see if umask exists
17025 set umask d_umask
17026 eval $inlibc
17027
17028 : see if unordered exists
17029 set unordered d_unordered
17030 eval $inlibc
17031
17032 : see if usleep exists
17033 set usleep d_usleep
17034 eval $inlibc
17035
17036 : see if prototype for usleep is available
17037 echo " "
17038 set d_usleepproto usleep $i_unistd unistd.h
17039 eval $hasproto
17040
17041 : see if ustat exists
17042 set ustat d_ustat
17043 eval $inlibc
17044
17045 : backward compatibility for d_hvfork
17046 if test X$d_hvfork != X; then
17047         d_vfork="$d_hvfork"
17048         d_hvfork=''
17049 fi
17050 : see if there is a vfork
17051 val=''
17052 set vfork val
17053 eval $inlibc
17054
17055 : Ok, but do we want to use it. vfork is reportedly unreliable in 
17056 : perl on Solaris 2.x, and probably elsewhere.
17057 case "$val" in
17058 $define)
17059         echo " "
17060         case "$usevfork" in
17061         false) dflt='n';;
17062         *) dflt='y';;
17063         esac
17064         cat <<'EOM'
17065  
17066 Perl can only use a vfork() that doesn't suffer from strict
17067 restrictions on calling functions or modifying global data in
17068 the child.  For example, glibc-2.1 contains such a vfork()
17069 that is unsuitable.  If your system provides a proper fork()
17070 call, chances are that you do NOT want perl to use vfork().
17071
17072 EOM
17073         rp="Do you still want to use vfork()?"
17074         . ./myread
17075         case "$ans" in
17076         y|Y) ;;
17077         *)
17078                 echo "Ok, we won't use vfork()."
17079                 val="$undef"
17080                 ;;
17081         esac
17082         ;;
17083 esac
17084 set d_vfork
17085 eval $setvar
17086 case "$d_vfork" in
17087 $define) usevfork='true';;
17088 *) usevfork='false';;
17089 esac
17090
17091 : see if closedir exists
17092 set closedir d_closedir
17093 eval $inlibc
17094
17095 case "$d_closedir" in
17096 "$define")
17097         echo " "
17098         echo "Checking whether closedir() returns a status..." >&4
17099         cat > try.c <<EOM
17100 #$i_dirent I_DIRENT             /**/
17101 #$i_sysdir I_SYS_DIR            /**/
17102 #$i_sysndir I_SYS_NDIR          /**/
17103 #$i_systypes I_SYS_TYPES        /**/
17104
17105 #if defined(I_SYS_TYPES)
17106 #include <sys/types.h>
17107 #endif
17108 #if defined(I_DIRENT)
17109 #include <dirent.h>
17110 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
17111 #include <sys/dir.h>
17112 #endif
17113 #else
17114 #ifdef I_SYS_NDIR
17115 #include <sys/ndir.h>
17116 #else
17117 #ifdef I_SYS_DIR
17118 #ifdef hp9000s500
17119 #include <ndir.h>       /* may be wrong in the future */
17120 #else
17121 #include <sys/dir.h>
17122 #endif
17123 #endif
17124 #endif
17125 #endif 
17126 int main() { return closedir(opendir(".")); }
17127 EOM
17128         set try
17129         if eval $compile_ok; then
17130                 if $run ./try > /dev/null 2>&1 ; then
17131                         echo "Yes, it does."
17132                         val="$undef"
17133                 else
17134                         echo "No, it doesn't."
17135                         val="$define"
17136                 fi
17137         else
17138                 echo "(I can't seem to compile the test program--assuming it doesn't)"
17139                 val="$define"
17140         fi
17141         ;;
17142 *)
17143         val="$undef";
17144         ;;
17145 esac
17146 set d_void_closedir
17147 eval $setvar
17148 $rm -f try try.*
17149 : see if there is a wait4
17150 set wait4 d_wait4
17151 eval $inlibc
17152
17153 : see if waitpid exists
17154 set waitpid d_waitpid
17155 eval $inlibc
17156
17157 : see if wcstombs exists
17158 set wcstombs d_wcstombs
17159 eval $inlibc
17160
17161 : see if wctomb exists
17162 set wctomb d_wctomb
17163 eval $inlibc
17164
17165 : see if writev exists
17166 set writev d_writev
17167 eval $inlibc
17168
17169 : preserve RCS keywords in files with variable substitution, grrr
17170 Date='$Date'
17171 Id='$Id'
17172 Log='$Log'
17173 RCSfile='$RCSfile'
17174 Revision='$Revision'
17175
17176 : check for alignment requirements
17177 echo " "
17178 case "$usecrosscompile$multiarch" in
17179 *$define*)
17180         $cat <<EOM
17181 You seem to be either cross-compiling or doing a multiarchitecture build,
17182 skipping the memory alignment check.
17183
17184 EOM
17185         case "$alignbytes" in
17186         '') alignbytes=8 ;;
17187         esac
17188         ;;
17189 *)
17190         case "$alignbytes" in
17191         '') echo "Checking alignment constraints..." >&4
17192                 if $test "X$uselongdouble" = Xdefine -a "X$d_longdbl" = Xdefine; then
17193                         $cat >try.c <<'EOCP'
17194 typedef long double NV;
17195 EOCP
17196                 else
17197                         $cat >try.c <<'EOCP'
17198 typedef double NV;
17199 EOCP
17200                 fi
17201                 $cat >>try.c <<'EOCP'
17202 #include <stdio.h>
17203 struct foobar {
17204         char foo;
17205         NV bar;
17206 } try_algn;
17207 int main()
17208 {
17209     printf("%d\n", (int)((char *)&try_algn.bar - (char *)&try_algn.foo));
17210     return(0);
17211 }
17212 EOCP
17213                 set try
17214                 if eval $compile_ok; then
17215                         dflt=`$run ./try`
17216                 else
17217                         dflt='8'
17218                         echo "(I can't seem to compile the test program...)"
17219                 fi
17220                 ;;
17221         *) dflt="$alignbytes"
17222                 ;;
17223         esac
17224         rp="Doubles must be aligned on a how-many-byte boundary?"
17225         . ./myread
17226         alignbytes="$ans"
17227         $rm -f try.c try
17228         ;;
17229 esac
17230
17231
17232 : set the base revision
17233 baserev=5.0
17234
17235 : how do we concatenate cpp tokens here?
17236 echo " "
17237 echo "Checking to see how your cpp does stuff like concatenate tokens..." >&4
17238 $cat >cpp_stuff.c <<'EOCP'
17239 #define RCAT(a,b)a/**/b
17240 #define ACAT(a,b)a ## b
17241 RCAT(Rei,ser)
17242 ACAT(Cir,cus)
17243 EOCP
17244 $cppstdin $cppflags $cppminus <cpp_stuff.c >cpp_stuff.out 2>&1
17245 if $contains 'Circus' cpp_stuff.out >/dev/null 2>&1; then
17246         echo "Oh!  Smells like ANSI's been here." >&4
17247         echo "We can catify or stringify, separately or together!"
17248         cpp_stuff=42
17249 elif $contains 'Reiser' cpp_stuff.out >/dev/null 2>&1; then
17250         echo "Ah, yes!  The good old days!" >&4
17251         echo "However, in the good old days we don't know how to stringify and"
17252         echo "catify at the same time."
17253         cpp_stuff=1
17254 else
17255         $cat >&4 <<EOM
17256 Hmm, I don't seem to be able to concatenate tokens with your cpp.
17257 You're going to have to edit the values of CAT[2-5] in config.h...
17258 EOM
17259         cpp_stuff="/* Help! How do we handle cpp_stuff? */*/"
17260 fi
17261 $rm -f cpp_stuff.*
17262
17263 : see if this is a db.h system
17264 set db.h i_db
17265 eval $inhdr
17266
17267 case "$i_db" in
17268 $define)
17269         : Check db version.
17270         echo " "
17271         echo "Checking Berkeley DB version ..." >&4
17272         $cat >try.c <<EOCP
17273 #$d_const HASCONST
17274 #ifndef HASCONST
17275 #define const
17276 #endif
17277 #include <sys/types.h>
17278 #include <stdio.h>
17279 #$i_stdlib I_STDLIB
17280 #ifdef I_STDLIB
17281 #include <stdlib.h>
17282 #endif
17283 #include <db.h>
17284 int main(int argc, char *argv[])
17285 {
17286 #ifdef DB_VERSION_MAJOR /* DB version >= 2 */
17287     int Major, Minor, Patch ;
17288     unsigned long Version ;
17289     (void)db_version(&Major, &Minor, &Patch) ;
17290     if (argc == 2) {
17291         printf("%d %d %d %d %d %d\n",
17292                DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH,
17293                Major, Minor, Patch);
17294         exit(0);
17295     }
17296     printf("You have Berkeley DB Version 2 or greater.\n");
17297
17298     printf("db.h is from Berkeley DB Version %d.%d.%d\n",
17299                 DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH);
17300     printf("libdb is from Berkeley DB Version %d.%d.%d\n",
17301                 Major, Minor, Patch) ;
17302
17303     /* check that db.h & libdb are compatible */
17304     if (DB_VERSION_MAJOR != Major || DB_VERSION_MINOR != Minor || DB_VERSION_PATCH != Patch) {
17305         printf("db.h and libdb are incompatible.\n") ;
17306         exit(3);        
17307     }
17308
17309     printf("db.h and libdb are compatible.\n") ;
17310
17311     Version = DB_VERSION_MAJOR * 1000000 + DB_VERSION_MINOR * 1000
17312                 + DB_VERSION_PATCH ;
17313
17314     /* needs to be >= 2.3.4 */
17315     if (Version < 2003004) {
17316     /* if (DB_VERSION_MAJOR == 2 && DB_VERSION_MINOR == 0 && DB_VERSION_PATCH < 5) { */
17317         printf("Perl needs Berkeley DB 2.3.4 or greater.\n") ;
17318         exit(2);        
17319     }
17320
17321     exit(0);
17322 #else
17323 #if defined(_DB_H_) && defined(BTREEMAGIC) && defined(HASHMAGIC)
17324     if (argc == 2) {
17325         printf("1 0 0\n");
17326         exit(0);
17327     }
17328     printf("You have Berkeley DB Version 1.\n");
17329     exit(0);    /* DB version < 2: the coast is clear. */
17330 #else
17331     exit(1);    /* <db.h> not Berkeley DB? */
17332 #endif
17333 #endif
17334 }
17335 EOCP
17336         set try
17337         if eval $compile_ok && $run ./try; then
17338                 echo 'Looks OK.' >&4
17339                 set `$run ./try 1`
17340                 db_version_major=$1
17341                 db_version_minor=$2
17342                 db_version_patch=$3
17343         else
17344                 echo "I can't use Berkeley DB with your <db.h>.  I'll disable Berkeley DB." >&4
17345                 i_db=$undef
17346                 case " $libs " in
17347                 *"-ldb "*)
17348                         : Remove db from list of libraries to use
17349                         echo "Removing unusable -ldb from library list" >&4
17350                         set `echo X $libs | $sed -e 's/-ldb / /' -e 's/-ldb$//'`
17351                         shift
17352                         libs="$*"
17353                         echo "libs = $libs" >&4
17354                         ;;
17355                 esac
17356         fi
17357         $rm -f try.*
17358         ;;
17359 esac
17360
17361 case "$i_db" in
17362 define)
17363         : Check the return type needed for hash 
17364         echo " "
17365         echo "Checking return type needed for hash for Berkeley DB ..." >&4
17366         $cat >try.c <<EOCP
17367 #$d_const HASCONST
17368 #ifndef HASCONST
17369 #define const
17370 #endif
17371 #include <sys/types.h>
17372 #include <db.h>
17373
17374 #ifndef DB_VERSION_MAJOR
17375 u_int32_t hash_cb (ptr, size)
17376 const void *ptr;
17377 size_t size;
17378 {
17379 }
17380 HASHINFO info;
17381 int main()
17382 {
17383         info.hash = hash_cb;
17384 }
17385 #endif
17386 EOCP
17387         if $cc $ccflags -c try.c >try.out 2>&1 ; then
17388                 if $contains warning try.out >>/dev/null 2>&1 ; then
17389                         db_hashtype='int'
17390                 else
17391                         db_hashtype='u_int32_t'
17392                 fi
17393         else
17394                 : XXX Maybe we should just give up here.
17395                 db_hashtype=u_int32_t
17396                 $cat try.out >&4
17397                 echo "Help:  I can't seem to compile the db test program." >&4
17398                 echo "Something's wrong, but I'll assume you use $db_hashtype." >&4
17399         fi
17400         $rm -f try.*
17401         echo "Your version of Berkeley DB uses $db_hashtype for hash."
17402         ;;
17403 *)      db_hashtype=u_int32_t
17404         ;;
17405 esac
17406 case "$i_db" in
17407 define)
17408         : Check the return type needed for prefix 
17409         echo " "
17410         echo "Checking return type needed for prefix for Berkeley DB ..." >&4
17411         cat >try.c <<EOCP
17412 #$d_const HASCONST
17413 #ifndef HASCONST
17414 #define const
17415 #endif
17416 #include <sys/types.h>
17417 #include <db.h>
17418
17419 #ifndef DB_VERSION_MAJOR
17420 size_t prefix_cb (key1, key2)
17421 const DBT *key1;
17422 const DBT *key2;
17423 {
17424 }
17425 BTREEINFO info;
17426 int main()
17427 {
17428         info.prefix = prefix_cb;
17429 }
17430 #endif
17431 EOCP
17432         if $cc $ccflags -c try.c  >try.out 2>&1 ; then
17433                 if $contains warning try.out >>/dev/null 2>&1 ; then
17434                         db_prefixtype='int'
17435                 else
17436                         db_prefixtype='size_t'
17437                 fi
17438         else
17439                 db_prefixtype='size_t'
17440                 : XXX Maybe we should just give up here.
17441                 $cat try.out >&4
17442                 echo "Help:  I can't seem to compile the db test program." >&4
17443                 echo "Something's wrong, but I'll assume you use $db_prefixtype." >&4
17444         fi
17445         $rm -f try.*
17446         echo "Your version of Berkeley DB uses $db_prefixtype for prefix."
17447         ;;
17448 *)      db_prefixtype='size_t'
17449         ;;
17450 esac
17451
17452
17453 : How can we generate normalized random numbers ?
17454 echo " "
17455 echo "Looking for a random number function..." >&4
17456 case "$randfunc" in
17457 '')
17458         if set drand48 val -f; eval $csym; $val; then
17459                 dflt="drand48"
17460                 echo "Good, found drand48()." >&4
17461         elif set random val -f; eval $csym; $val; then
17462                 dflt="random"
17463                 echo "OK, found random()." >&4
17464         else
17465                 dflt="rand"
17466                 echo "Yick, looks like I have to use rand()." >&4
17467         fi
17468         echo " "
17469         ;;
17470 *)
17471         dflt="$randfunc"
17472         ;;
17473 esac
17474 cont=true
17475
17476 case "$ccflags" in
17477 *-Dmy_rand=*|*-Dmy_srand=*)
17478         echo "Removing obsolete -Dmy_rand, -Dmy_srand, and -Drandbits from ccflags." >&4
17479         ccflags="`echo $ccflags | sed -e 's/-Dmy_rand=random/ /'`"
17480         ccflags="`echo $ccflags | sed -e 's/-Dmy_srand=srandom/ /'`"
17481         ccflags="`echo $ccflags | sed -e 's/-Drandbits=[0-9][0-9]*/ /'`"
17482         ;;
17483 esac
17484
17485 while $test "$cont"; do
17486         rp="Use which function to generate random numbers?"
17487         . ./myread
17488         if $test "$ans" = "$dflt"; then
17489                 : null
17490         else
17491                 randbits=''
17492         fi
17493         randfunc="$ans"
17494         if set $ans val -f; eval $csym; $val; then
17495                 cont=''
17496         else
17497                 dflt=y
17498                 rp="I cannot find function $ans. Use that name anyway?"
17499                 . ./myread
17500                 dflt=rand
17501                 case "$ans" in
17502                         [yY]*) cont='';;
17503                 esac
17504         fi
17505         case "$cont" in
17506         '')
17507                 case "$randfunc" in
17508                 drand48)
17509                         drand01="drand48()"
17510                         seedfunc="srand48"
17511                         randbits=48
17512                         randseedtype=long
17513                         ;;
17514                 rand|random)
17515                         case "$randbits" in
17516                         '')
17517 echo "Checking to see how many bits your $randfunc() function produces..." >&4
17518                                 $cat >try.c <<EOCP
17519 #$i_unistd I_UNISTD
17520 #$i_stdlib I_STDLIB
17521 #include <stdio.h>
17522 #ifdef I_UNISTD
17523 #  include <unistd.h>
17524 #endif
17525 #ifdef I_STDLIB
17526 #  include <stdlib.h>
17527 #endif
17528 int main()
17529 {
17530         register int i;
17531         register unsigned long tmp;
17532         register unsigned long max = 0L;
17533
17534         for (i = 1000; i; i--) {
17535                 tmp = (unsigned long) $randfunc();
17536                 if (tmp > max) max = tmp;
17537         }
17538         for (i = 0; max; i++)
17539                 max /= 2;
17540         printf("%d\n",i);
17541 }
17542 EOCP
17543                                 set try
17544                                 if eval $compile_ok; then
17545                                         dflt=`try`
17546                                 else
17547                                         dflt='?'
17548                                         echo "(I can't seem to compile the test program...)"
17549                                 fi
17550                                 ;;
17551                         *)
17552                                 dflt="$randbits"
17553                                 ;;
17554                         esac
17555                         rp="How many bits does your $randfunc() function produce?"
17556                         . ./myread
17557                         randbits="$ans"
17558                         $rm -f try.c try
17559                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
17560                         seedfunc="s$randfunc"
17561                         randseedtype=unsigned
17562                         ;;
17563                 *)
17564                         dflt="31"
17565                         rp="How many bits does your $randfunc() function produce?"
17566                         . ./myread
17567                         randbits="$ans"
17568                         seedfunc="s$randfunc"
17569                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
17570                         if set $seedfunc val -f; eval $csym; $val; then
17571                                 echo "(Using $seedfunc() to seed random generator)"
17572                         else
17573                                 echo "(Warning: no $seedfunc() to seed random generator)"
17574                                 seedfunc=rand
17575                         fi
17576                         randseedtype=unsigned
17577                         ;;
17578                 esac
17579                 ;;
17580         esac
17581 done
17582
17583 echo " "
17584 echo "Determining whether or not we are on an EBCDIC system..." >&4
17585 $cat >try.c <<'EOM'
17586 int main()
17587 {
17588   if ('M'==0xd4) return 0;
17589   return 1;
17590 }
17591 EOM
17592
17593 val=$undef
17594 set try
17595 if eval $compile_ok; then
17596         if $run ./try; then
17597                 echo "You seem to speak EBCDIC." >&4
17598                 val="$define"
17599         else
17600                 echo "Nope, no EBCDIC, probably ASCII or some ISO Latin. Or UTF-8." >&4
17601         fi
17602 else
17603         echo "I'm unable to compile the test program." >&4
17604         echo "I'll assume ASCII or some ISO Latin. Or UTF8." >&4
17605 fi
17606 $rm -f try try.*
17607 set ebcdic
17608 eval $setvar
17609
17610 echo " "
17611 $cat >&4 <<EOM
17612 Checking how to flush all pending stdio output...
17613 EOM
17614 # I only know how to find the first 32 possibly open files on SunOS.
17615 # See also hints/sunos_4_1.sh and util.c  --AD
17616 case "$osname" in
17617 sunos) $echo '#define PERL_FFLUSH_ALL_FOPEN_MAX 32' > try.c ;;
17618 esac
17619 $cat >>try.c <<EOCP
17620 #include <stdio.h>
17621 #$i_stdlib I_STDLIB
17622 #ifdef I_STDLIB
17623 #include <stdlib.h>
17624 #endif
17625 #$i_unistd I_UNISTD
17626 #ifdef I_UNISTD
17627 # include <unistd.h>
17628 #endif
17629 #$d_sysconf HAS_SYSCONF
17630 #$d_stdio_stream_array HAS_STDIO_STREAM_ARRAY
17631 #ifdef HAS_STDIO_STREAM_ARRAY
17632 # define STDIO_STREAM_ARRAY $stdio_stream_array
17633 #endif
17634 int main() {
17635   FILE* p;
17636   unlink("try.out");
17637   p = fopen("try.out", "w");
17638 #ifdef TRY_FPUTC
17639   fputc('x', p);
17640 #else
17641 # ifdef TRY_FPRINTF
17642   fprintf(p, "x");
17643 # endif
17644 #endif
17645 #ifdef TRY_FFLUSH_NULL
17646   fflush(NULL);
17647 #endif
17648 #ifdef TRY_FFLUSH_ALL
17649   {
17650     long open_max = -1;
17651 # ifdef PERL_FFLUSH_ALL_FOPEN_MAX
17652     open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
17653 # else
17654 #  if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
17655     open_max = sysconf(_SC_OPEN_MAX);
17656 #  else
17657 #   ifdef FOPEN_MAX
17658     open_max = FOPEN_MAX;
17659 #   else
17660 #    ifdef OPEN_MAX
17661     open_max = OPEN_MAX;
17662 #    else
17663 #     ifdef _NFILE
17664     open_max = _NFILE;
17665 #     endif
17666 #    endif
17667 #   endif
17668 #  endif
17669 # endif 
17670 # ifdef HAS_STDIO_STREAM_ARRAY
17671     if (open_max > 0) {
17672       long i;
17673       for (i = 0; i < open_max; i++)
17674             if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
17675                 STDIO_STREAM_ARRAY[i]._file < open_max &&
17676                 STDIO_STREAM_ARRAY[i]._flag)
17677                 fflush(&STDIO_STREAM_ARRAY[i]);
17678     }   
17679   }
17680 # endif
17681 #endif
17682   _exit(42);
17683 }
17684 EOCP
17685 : first we have to find out how _not_ to flush
17686 $to try.c
17687 if $test "X$fflushNULL" = X -o "X$fflushall" = X; then
17688     output=''
17689     set try -DTRY_FPUTC
17690     if eval $compile; then
17691             $run ./try 2>/dev/null
17692             code="$?"
17693             $from try.out
17694             if $test ! -s try.out -a "X$code" = X42; then
17695                 output=-DTRY_FPUTC
17696             fi
17697     fi
17698     case "$output" in
17699     '')
17700             set try -DTRY_FPRINTF
17701             if eval $compile; then
17702                     $run ./try 2>/dev/null
17703                     code="$?"
17704                     $from try.out
17705                     if $test ! -s try.out -a "X$code" = X42; then
17706                         output=-DTRY_FPRINTF
17707                     fi
17708             fi
17709         ;;
17710     esac
17711 fi
17712 : check for fflush NULL behaviour
17713 case "$fflushNULL" in
17714 '')     set try -DTRY_FFLUSH_NULL $output
17715         if eval $compile; then
17716                 $run ./try 2>/dev/null
17717                 code="$?"
17718                 $from try.out
17719                 if $test -s try.out -a "X$code" = X42; then
17720                         fflushNULL="`$cat try.out`"
17721                 else
17722                         if $test "X$code" != X42; then
17723                                 $cat >&4 <<EOM
17724 (If this test failed, don't worry, we'll try another method shortly.)
17725 EOM
17726                         fi
17727                 fi
17728         fi
17729         $rm -f core try.core core.try.*
17730         case "$fflushNULL" in
17731         x)      $cat >&4 <<EOM
17732 Your fflush(NULL) works okay for output streams.
17733 Let's see if it clobbers input pipes...
17734 EOM
17735 # As of mid-March 2000 all versions of Solaris appear to have a stdio
17736 # bug that improperly flushes the input end of pipes.  So we avoid the
17737 # autoflush on fork/system/exec support for now. :-(
17738 $cat >tryp.c <<EOCP
17739 #include <stdio.h>
17740 int
17741 main(int argc, char **argv)
17742 {
17743     char buf[1024];
17744     int i;
17745     char *bp = buf;
17746     while (1) {
17747         while ((i = getc(stdin)) != -1
17748                && (*bp++ = i) != '\n'
17749                && bp < &buf[1024])
17750         /* DO NOTHING */ ;
17751         *bp = '\0';
17752         fprintf(stdout, "%s", buf);
17753         fflush(NULL);
17754         if (i == -1)
17755             return 0;
17756         bp = buf;
17757     }
17758 }
17759 EOCP
17760                 fflushNULL="$define"
17761                 set tryp
17762                 if eval $compile; then
17763                     $rm -f tryp.out
17764                     $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
17765                     if cmp tryp.c tryp.out >/dev/null 2>&1; then
17766                        $cat >&4 <<EOM
17767 fflush(NULL) seems to behave okay with input streams.
17768 EOM
17769                         fflushNULL="$define"
17770                     else
17771                         $cat >&4 <<EOM
17772 Ouch, fflush(NULL) clobbers input pipes!  We will not use it.
17773 EOM
17774                         fflushNULL="$undef"
17775                     fi
17776                 fi
17777                 $rm -f core tryp.c tryp.core core.tryp.*
17778                 ;;
17779         '')     $cat >&4 <<EOM
17780 Your fflush(NULL) isn't working (contrary to ANSI C).
17781 EOM
17782                 fflushNULL="$undef"
17783                 ;;
17784         *)      $cat >&4 <<EOM
17785 Cannot figure out whether your fflush(NULL) works or not.
17786 I'm assuming it doesn't (contrary to ANSI C).
17787 EOM
17788                 fflushNULL="$undef"
17789                 ;;
17790         esac
17791         ;;
17792 $define|true|[yY]*)
17793         fflushNULL="$define"
17794         ;;
17795 *)
17796         fflushNULL="$undef"
17797         ;;
17798 esac
17799 : check explicit looping only if NULL did not work, and if the pipe
17800 : bug does not show up on an explicit flush too
17801 case "$fflushNULL" in
17802 "$undef")
17803         $cat >tryp.c <<EOCP
17804 #include <stdio.h>
17805 int
17806 main(int argc, char **argv)
17807 {
17808     char buf[1024];
17809     int i;
17810     char *bp = buf;
17811     while (1) {
17812         while ((i = getc(stdin)) != -1
17813                && (*bp++ = i) != '\n'
17814                && bp < &buf[1024])
17815         /* DO NOTHING */ ;
17816         *bp = '\0';
17817         fprintf(stdout, "%s", buf);
17818         fflush(stdin);
17819         if (i == -1)
17820             return 0;
17821         bp = buf;
17822     }
17823 }
17824 EOCP
17825         set tryp
17826         if eval $compile; then
17827             $rm -f tryp.out
17828             $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
17829             if cmp tryp.c tryp.out >/dev/null 2>&1; then
17830                $cat >&4 <<EOM
17831 Good, at least fflush(stdin) seems to behave okay when stdin is a pipe.
17832 EOM
17833                 : now check for fflushall behaviour
17834                 case "$fflushall" in
17835                 '')     set try -DTRY_FFLUSH_ALL $output
17836                         if eval $compile; then
17837                                 $cat >&4 <<EOM
17838 (Now testing the other method--but note that this also may fail.)
17839 EOM
17840                                 $run ./try 2>/dev/null
17841                                 code=$?
17842                                 $from try.out
17843                                 if $test -s try.out -a "X$code" = X42; then
17844                                         fflushall="`$cat try.out`"
17845                                 fi
17846                         fi
17847                         $rm -f core try.core core.try.*
17848                         case "$fflushall" in
17849                         x)      $cat >&4 <<EOM
17850 Whew. Flushing explicitly all the stdio streams works.
17851 EOM
17852                                 fflushall="$define"
17853                                 ;;
17854                         '')     $cat >&4 <<EOM
17855 Sigh. Flushing explicitly all the stdio streams doesn't work.
17856 EOM
17857                                 fflushall="$undef"
17858                                 ;;
17859                         *)      $cat >&4 <<EOM
17860 Cannot figure out whether flushing stdio streams explicitly works or not.
17861 I'm assuming it doesn't.
17862 EOM
17863                                 fflushall="$undef"
17864                                 ;;
17865                         esac
17866                         ;;
17867                 "$define"|true|[yY]*)
17868                         fflushall="$define"
17869                         ;;
17870                 *)
17871                         fflushall="$undef"
17872                         ;;
17873                 esac
17874             else
17875                 $cat >&4 <<EOM
17876 All is futile.  Even fflush(stdin) clobbers input pipes!
17877 EOM
17878                 fflushall="$undef"
17879             fi
17880         else
17881             fflushall="$undef"
17882         fi
17883         $rm -f core tryp.c tryp.core core.tryp.*
17884         ;;
17885 *)      fflushall="$undef"
17886         ;;
17887 esac
17888
17889 case "$fflushNULL$fflushall" in
17890 undefundef)
17891         $cat <<EOM
17892 OK, I give up.  I cannot figure out how to flush pending stdio output.
17893 We won't be flushing handles at all before fork/exec/popen.
17894 EOM
17895         ;;
17896 esac
17897 $rm -f try.* try$exe_ext
17898
17899 : Store the full pathname to the ar program for use in the C program
17900 : Respect a hint or command line value for full_ar.
17901 case "$full_ar" in
17902 '') full_ar=$ar ;;
17903 esac
17904
17905 : Store the full pathname to the sed program for use in the C program
17906 full_sed=$sed
17907
17908 : see what type gids are declared as in the kernel
17909 echo " "
17910 echo "Looking for the type for group ids returned by getgid()."
17911 set gid_t gidtype xxx stdio.h sys/types.h
17912 eval $typedef
17913 case "$gidtype" in
17914 xxx)
17915         xxx=`./findhdr sys/user.h`
17916         set `grep 'groups\[NGROUPS\];' "$xxx" 2>/dev/null` unsigned short
17917         case $1 in
17918         unsigned) dflt="$1 $2" ;;
17919         *) dflt="$1" ;;
17920         esac
17921         ;;
17922 *) dflt="$gidtype";;
17923 esac
17924 case "$gidtype" in
17925 gid_t) echo "gid_t found." ;;
17926 *)      rp="What is the type for group ids returned by getgid()?"
17927         . ./myread
17928         gidtype="$ans"
17929         ;;
17930 esac
17931
17932 echo " "
17933 case "$gidtype" in
17934 *_t) zzz="$gidtype"     ;;
17935 *)   zzz="gid"          ;;
17936 esac
17937 echo "Checking the size of $zzz..." >&4 
17938 cat > try.c <<EOCP
17939 #include <sys/types.h>
17940 #include <stdio.h>
17941 #$i_stdlib I_STDLIB
17942 #ifdef I_STDLIB
17943 #include <stdlib.h>
17944 #endif
17945 int main() {
17946     printf("%d\n", (int)sizeof($gidtype));
17947     exit(0);
17948 }
17949 EOCP
17950 set try
17951 if eval $compile_ok; then
17952         yyy=`$run ./try`
17953         case "$yyy" in
17954         '')     gidsize=4
17955                 echo "(I can't execute the test program--guessing $gidsize.)" >&4
17956                 ;;
17957         *)      gidsize=$yyy
17958                 echo "Your $zzz is $gidsize bytes long."
17959                 ;;
17960         esac
17961 else
17962         gidsize=4
17963         echo "(I can't compile the test program--guessing $gidsize.)" >&4
17964 fi
17965
17966
17967 echo " "
17968 case "$gidtype" in
17969 *_t) zzz="$gidtype"     ;;
17970 *)   zzz="gid"          ;;
17971 esac
17972 echo "Checking the sign of $zzz..." >&4 
17973 cat > try.c <<EOCP
17974 #include <sys/types.h>
17975 #include <stdio.h>
17976 int main() {
17977         $gidtype foo = -1;
17978         if (foo < 0)
17979                 printf("-1\n");
17980         else
17981                 printf("1\n");
17982 }
17983 EOCP
17984 set try
17985 if eval $compile; then
17986         yyy=`$run ./try`
17987         case "$yyy" in
17988         '')     gidsign=1
17989                 echo "(I can't execute the test program--guessing unsigned.)" >&4
17990                 ;;
17991         *)      gidsign=$yyy
17992                 case "$gidsign" in
17993                  1) echo "Your $zzz is unsigned." ;;
17994                 -1) echo "Your $zzz is signed."   ;;
17995                 esac
17996                 ;;
17997         esac
17998 else
17999         gidsign=1
18000         echo "(I can't compile the test program--guessing unsigned.)" >&4
18001 fi
18002
18003
18004 echo " "
18005
18006 if $test X"$quadtype" != X; then
18007
18008 echo "Checking how to print 64-bit integers..." >&4
18009
18010 if $test X"$sPRId64" = X -a X"$quadtype" = Xint; then
18011         $cat >try.c <<'EOCP'
18012 #include <sys/types.h>
18013 #include <stdio.h>
18014 int main() {
18015   int q = 12345678901;
18016   printf("%ld\n", q);
18017 }
18018 EOCP
18019         set try
18020         if eval $compile; then
18021                 yyy=`$run ./try`
18022                 case "$yyy" in
18023                 12345678901)
18024                         sPRId64='"d"'; sPRIi64='"i"'; sPRIu64='"u"';
18025                         sPRIo64='"o"'; sPRIx64='"x"'; sPRIXU64='"X"';
18026                         echo "We will use %d."
18027                         ;;
18028                 esac
18029         fi
18030 fi
18031
18032 if $test X"$sPRId64" = X -a X"$quadtype" = Xlong; then
18033         $cat >try.c <<'EOCP'
18034 #include <sys/types.h>
18035 #include <stdio.h>
18036 int main() {
18037   long q = 12345678901;
18038   printf("%ld\n", q);
18039 }
18040 EOCP
18041         set try
18042         if eval $compile; then
18043                 yyy=`$run ./try`
18044                 case "$yyy" in
18045                 12345678901)
18046                         sPRId64='"ld"'; sPRIi64='"li"'; sPRIu64='"lu"';
18047                         sPRIo64='"lo"'; sPRIx64='"lx"'; sPRIXU64='"lX"';
18048                         echo "We will use %ld."
18049                         ;;
18050                 esac
18051         fi
18052 fi
18053
18054 if $test X"$sPRId64" = X -a X"$i_inttypes" = X"$define" -a X"$quadtype" = Xint64_t; then
18055         $cat >try.c <<'EOCP'
18056 #include <sys/types.h>
18057 #include <inttypes.h>
18058 #include <stdio.h>
18059 int main() {
18060   int64_t q = 12345678901;
18061   printf("%" PRId64 "\n", q);
18062 }
18063 EOCP
18064         set try
18065         if eval $compile; then
18066                 yyy=`$run ./try`
18067                 case "$yyy" in
18068                 12345678901)
18069                         sPRId64=PRId64; sPRIi64=PRIi64; sPRIu64=PRIu64;
18070                         sPRIo64=PRIo64; sPRIx64=PRIx64; sPRIXU64=PRIXU64;
18071                         echo "We will use the C9X style."
18072                         ;;
18073                 esac
18074         fi
18075 fi
18076
18077 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
18078         $cat >try.c <<EOCP
18079 #include <sys/types.h>
18080 #include <stdio.h>
18081 int main() {
18082   $quadtype q = 12345678901;
18083   printf("%Ld\n", q);
18084 }
18085 EOCP
18086         set try
18087         if eval $compile; then
18088                 yyy=`$run ./try`
18089                 case "$yyy" in
18090                 12345678901)
18091                         sPRId64='"Ld"'; sPRIi64='"Li"'; sPRIu64='"Lu"';
18092                         sPRIo64='"Lo"'; sPRIx64='"Lx"'; sPRIXU64='"LX"';
18093                         echo "We will use %Ld."
18094                         ;;
18095                 esac
18096         fi
18097 fi
18098
18099 if $test X"$sPRId64" = X -a X"$quadtype" = X"long long"; then
18100         $cat >try.c <<'EOCP'
18101 #include <sys/types.h>
18102 #include <stdio.h>
18103 int main() {
18104   long long q = 12345678901LL; /* AIX cc requires the LL suffix. */
18105   printf("%lld\n", q);
18106 }
18107 EOCP
18108         set try
18109         if eval $compile; then
18110                 yyy=`$run ./try`
18111                 case "$yyy" in
18112                 12345678901)
18113                         sPRId64='"lld"'; sPRIi64='"lli"'; sPRIu64='"llu"';
18114                         sPRIo64='"llo"'; sPRIx64='"llx"'; sPRIXU64='"llX"';
18115                         echo "We will use the %lld style."
18116                         ;;
18117                 esac
18118         fi
18119 fi
18120
18121 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
18122         $cat >try.c <<EOCP
18123 #include <sys/types.h>
18124 #include <stdio.h>
18125 int main() {
18126   $quadtype q = 12345678901;
18127   printf("%qd\n", q);
18128 }
18129 EOCP
18130         set try
18131         if eval $compile; then
18132                 yyy=`$run ./try`
18133                 case "$yyy" in
18134                 12345678901)
18135                         sPRId64='"qd"'; sPRIi64='"qi"'; sPRIu64='"qu"';
18136                         sPRIo64='"qo"'; sPRIx64='"qx"'; sPRIXU64='"qX"';
18137                         echo "We will use %qd."
18138                         ;;
18139                 esac
18140         fi
18141 fi
18142
18143 if $test X"$sPRId64" = X; then
18144         echo "Cannot figure out how to print 64-bit integers." >&4
18145 fi
18146
18147 $rm -f try try.*
18148
18149 fi
18150
18151 case "$sPRId64" in
18152 '')     d_PRId64="$undef"; d_PRIi64="$undef"; d_PRIu64="$undef"; 
18153         d_PRIo64="$undef"; d_PRIx64="$undef"; d_PRIXU64="$undef"; 
18154         ;;
18155 *)      d_PRId64="$define"; d_PRIi64="$define"; d_PRIu64="$define"; 
18156         d_PRIo64="$define"; d_PRIx64="$define"; d_PRIXU64="$define"; 
18157         ;;
18158 esac
18159
18160
18161 echo " "
18162 $echo "Checking the format strings to be used for Perl's internal types..." >&4
18163
18164 if $test X"$ivsize" = X8; then
18165         ivdformat="$sPRId64"
18166         uvuformat="$sPRIu64"
18167         uvoformat="$sPRIo64"
18168         uvxformat="$sPRIx64"
18169         uvXUformat="$sPRIXU64"
18170 else
18171         if $test X"$ivsize" = X"$longsize"; then
18172                 ivdformat='"ld"'
18173                 uvuformat='"lu"'
18174                 uvoformat='"lo"'
18175                 uvxformat='"lx"'
18176                 uvXUformat='"lX"'
18177         else
18178                 if $test X"$ivsize" = X"$intsize"; then
18179                         ivdformat='"d"'
18180                         uvuformat='"u"'
18181                         uvoformat='"o"'
18182                         uvxformat='"x"'
18183                         uvXUformat='"X"'
18184                 else
18185                         : far out
18186                         if $test X"$ivsize" = X"$shortsize"; then
18187                                 ivdformat='"hd"'
18188                                 uvuformat='"hu"'
18189                                 uvoformat='"ho"'
18190                                 uvxformat='"hx"'
18191                                 uvXUformat='"hX"'
18192                         fi
18193                 fi
18194         fi
18195 fi
18196
18197 if $test X"$uselongdouble" = X"$define" -a X"$d_longdbl" = X"$define" -a X"$d_PRIgldbl" = X"$define"; then
18198         nveformat="$sPRIeldbl"
18199         nvfformat="$sPRIfldbl"
18200         nvgformat="$sPRIgldbl"
18201         nvEUformat="$sPRIEUldbl"
18202         nvFUformat="$sPRIFUldbl"
18203         nvGUformat="$sPRIGUldbl"
18204 else
18205         nveformat='"e"'
18206         nvfformat='"f"'
18207         nvgformat='"g"'
18208         nvEUformat='"E"'
18209         nvFUformat='"F"'
18210         nvGUformat='"G"'
18211 fi
18212
18213 case "$ivdformat" in
18214 '') echo "$0: Fatal: failed to find format strings, cannot continue." >&4
18215     exit 1
18216     ;;
18217 esac
18218
18219
18220 echo " "
18221 $echo "Checking the format string to be used for gids..." >&4
18222
18223 case "$gidsign" in
18224 -1)     if $test X"$gidsize" = X"$ivsize"; then
18225                 gidformat="$ivdformat"
18226         else
18227                 if $test X"$gidsize" = X"$longsize"; then
18228                         gidformat='"ld"'
18229                 else
18230                         if $test X"$gidsize" = X"$intsize"; then
18231                                 gidformat='"d"'
18232                         else
18233                                 if $test X"$gidsize" = X"$shortsize"; then
18234                                         gidformat='"hd"'
18235                                 fi
18236                         fi
18237                 fi
18238         fi
18239         ;;
18240 *)      if $test X"$gidsize" = X"$uvsize"; then
18241                 gidformat="$uvuformat"
18242         else
18243                 if $test X"$gidsize" = X"$longsize"; then
18244                         gidformat='"lu"'
18245                 else
18246                         if $test X"$gidsize" = X"$intsize"; then
18247                                 gidformat='"u"'
18248                         else
18249                                 if $test X"$gidsize" = X"$shortsize"; then
18250                                         gidformat='"hu"'
18251                                 fi
18252                         fi
18253                 fi
18254         fi
18255         ;;
18256 esac
18257
18258 : see if getgroups exists
18259 set getgroups d_getgrps
18260 eval $inlibc
18261
18262 : see if setgroups exists
18263 set setgroups d_setgrps
18264 eval $inlibc
18265
18266
18267 : Find type of 2nd arg to 'getgroups()' and 'setgroups()'
18268 echo " "
18269 case "$d_getgrps$d_setgrps" in
18270 *define*)
18271         case "$groupstype" in
18272         '') dflt="$gidtype" ;;
18273         *)  dflt="$groupstype" ;;
18274         esac
18275         $cat <<EOM
18276 What type of pointer is the second argument to getgroups() and setgroups()?
18277 Usually this is the same as group ids, $gidtype, but not always.
18278
18279 EOM
18280         rp='What type pointer is the second argument to getgroups() and setgroups()?'
18281         . ./myread
18282         groupstype="$ans"
18283         ;;
18284 *)  groupstype="$gidtype";;
18285 esac
18286
18287 echo " "
18288 echo "Checking if your $make program sets \$(MAKE)..." >&4
18289 case "$make_set_make" in
18290 '')
18291         $sed 's/^X //' > testmake.mak << 'EOF'
18292 Xall:
18293 X       @echo 'maketemp="$(MAKE)"'
18294 EOF
18295         case "`$make -f testmake.mak 2>/dev/null`" in
18296         *maketemp=*) make_set_make='#' ;;
18297         *)      make_set_make="MAKE=$make" ;;
18298         esac
18299         $rm -f testmake.mak
18300         ;;
18301 esac
18302 case "$make_set_make" in
18303 '#') echo "Yup, it does.";;
18304 *) echo "Nope, it doesn't.";;
18305 esac
18306
18307 : see what type is used for mode_t
18308 rp="What is the type used for file modes for system calls (e.g. fchmod())?"
18309 set mode_t modetype int stdio.h sys/types.h
18310 eval $typedef_ask
18311
18312 : see if stdarg is available
18313 echo " "
18314 if $test `./findhdr stdarg.h`; then
18315         echo "<stdarg.h> found." >&4
18316         valstd="$define"
18317 else
18318         echo "<stdarg.h> NOT found." >&4
18319         valstd="$undef"
18320 fi
18321
18322 : see if varags is available
18323 echo " "
18324 if $test `./findhdr varargs.h`; then
18325         echo "<varargs.h> found." >&4
18326 else
18327         echo "<varargs.h> NOT found, but that's ok (I hope)." >&4
18328 fi
18329
18330 : set up the varargs testing programs
18331 $cat > varargs.c <<EOP
18332 #ifdef I_STDARG
18333 #include <stdarg.h>
18334 #endif
18335 #ifdef I_VARARGS
18336 #include <varargs.h>
18337 #endif
18338
18339 #ifdef I_STDARG
18340 int f(char *p, ...)
18341 #else
18342 int f(va_alist)
18343 va_dcl
18344 #endif
18345 {
18346         va_list ap;
18347 #ifndef I_STDARG
18348         char *p;
18349 #endif
18350 #ifdef I_STDARG
18351         va_start(ap,p);
18352 #else
18353         va_start(ap);
18354         p = va_arg(ap, char *);
18355 #endif
18356         va_end(ap);
18357 }
18358 EOP
18359 $cat > varargs <<EOP
18360 $startsh
18361 if $cc -c $ccflags -D\$1 varargs.c >/dev/null 2>&1; then
18362         echo "true"
18363 else
18364         echo "false"
18365 fi
18366 $rm -f varargs$_o
18367 EOP
18368 chmod +x varargs
18369
18370 : now check which varargs header should be included
18371 echo " "
18372 i_varhdr=''
18373 case "$valstd" in
18374 "$define")
18375         if `./varargs I_STDARG`; then
18376                 val='stdarg.h'
18377         elif `./varargs I_VARARGS`; then
18378                 val='varargs.h'
18379         fi
18380         ;;
18381 *)
18382         if `./varargs I_VARARGS`; then
18383                 val='varargs.h'
18384         fi
18385         ;;
18386 esac
18387 case "$val" in
18388 '')
18389 echo "I could not find the definition for va_dcl... You have problems..." >&4
18390         val="$undef"; set i_stdarg; eval $setvar
18391         val="$undef"; set i_varargs; eval $setvar
18392         ;;
18393 *) 
18394         set i_varhdr
18395         eval $setvar
18396         case "$i_varhdr" in
18397         stdarg.h)
18398                 val="$define"; set i_stdarg; eval $setvar
18399                 val="$undef"; set i_varargs; eval $setvar
18400                 ;;
18401         varargs.h)
18402                 val="$undef"; set i_stdarg; eval $setvar
18403                 val="$define"; set i_varargs; eval $setvar
18404                 ;;
18405         esac
18406         echo "We'll include <$i_varhdr> to get va_dcl definition." >&4;;
18407 esac
18408 $rm -f varargs*
18409
18410 : see if we need va_copy
18411 echo " "
18412 case "$i_stdarg" in
18413 "$define")
18414         $cat >try.c <<EOCP
18415 #include <stdarg.h>
18416 #include <stdio.h>
18417 #$i_stdlib I_STDLIB
18418 #ifdef I_STDLIB
18419 #include <stdlib.h>
18420 #endif
18421 #include <signal.h>
18422
18423 int
18424 ivfprintf(FILE *f, const char *fmt, va_list *valp)
18425 {
18426   return vfprintf(f, fmt, *valp);
18427 }
18428  
18429 int    
18430 myvfprintf(FILE *f, const  char *fmt, va_list val)
18431 {
18432   return ivfprintf(f, fmt, &val);
18433 }
18434       
18435 int
18436 myprintf(char *fmt, ...) 
18437 {
18438   va_list val;
18439   va_start(val, fmt);
18440   return myvfprintf(stdout, fmt, val); 
18441 }         
18442
18443 int
18444 main(int ac, char **av)
18445 {
18446   signal(SIGSEGV, exit);
18447
18448   myprintf("%s%cs all right, then\n", "that", '\'');                            
18449   exit(0);      
18450 }
18451 EOCP
18452         set try
18453         if eval $compile && $run ./try 2>&1 >/dev/null; then
18454                 case "`$run ./try`" in
18455                 "that's all right, then")
18456                         okay=yes
18457                         ;;
18458                 esac
18459         fi
18460         case "$okay" in
18461         yes)    echo "It seems that you don't need va_copy()." >&4
18462                 need_va_copy="$undef"
18463                 ;;
18464         *)      echo "It seems that va_copy() or similar will be needed." >&4
18465                 need_va_copy="$define"
18466                 ;;
18467         esac
18468         $rm -f try.* core core.* *.core *.core.*
18469         ;;
18470 *)      echo "You don't have <stdarg.h>, not checking for va_copy()." >&4
18471         ;;
18472 esac
18473
18474 : see what type is used for size_t
18475 rp="What is the type used for the length parameter for string functions?"
18476 set size_t sizetype 'unsigned int' stdio.h sys/types.h
18477 eval $typedef_ask
18478
18479 : check for type of arguments to gethostbyaddr. 
18480 if test "X$netdb_host_type" = X -o "X$netdb_hlen_type" = X; then
18481         case "$d_gethbyaddr" in
18482         $define)
18483                 $cat <<EOM
18484
18485 Checking to see what type of arguments are accepted by gethostbyaddr().
18486 EOM
18487                 hdrs="$define sys/types.h
18488                         $d_socket sys/socket.h 
18489                         $i_niin netinet/in.h 
18490                         $i_netdb netdb.h
18491                         $i_unistd unistd.h"
18492                 : The first arg can 'char *' or 'void *'
18493                 : The second arg is some of integral type
18494                 for xxx in in_addr_t 'const void *' 'const char *' 'void *' 'char *'; do
18495                         for yyy in size_t long int; do
18496                                 case "$netdb_host_type" in
18497                                 '')     try="extern struct hostent *gethostbyaddr($xxx, $yyy, int);"
18498                                         if ./protochk "$try" $hdrs; then
18499                                                 echo "Your system accepts $xxx for the first arg."
18500                                                 echo "...and $yyy for the second arg."
18501                                                 netdb_host_type="$xxx"
18502                                                 netdb_hlen_type="$yyy"
18503                                         fi
18504                                         ;;
18505                                 esac
18506                         done
18507                 done
18508                 : In case none of those worked, prompt the user.
18509                 case "$netdb_host_type" in
18510                 '')     rp='What is the type for the 1st argument to gethostbyaddr?'
18511                         dflt='char *'
18512                         . ./myread
18513                         netdb_host_type=$ans
18514                         rp='What is the type for the 2nd argument to gethostbyaddr?'
18515                         dflt="$sizetype"
18516                         . ./myread
18517                         netdb_hlen_type=$ans
18518                         ;;
18519                 esac
18520                 ;;
18521         *)      : no gethostbyaddr, so pick harmless defaults
18522                 netdb_host_type='char *'
18523                 netdb_hlen_type="$sizetype"
18524                 ;;
18525         esac
18526         # Remove the "const" if needed. -- but then we'll have a 
18527         # prototype clash!
18528         # netdb_host_type=`echo "$netdb_host_type" | sed 's/^const //'`
18529 fi
18530
18531 : check for type of argument to gethostbyname. 
18532 if test "X$netdb_name_type" = X ; then
18533         case "$d_gethbyname" in
18534         $define)
18535                 $cat <<EOM
18536
18537 Checking to see what type of argument is accepted by gethostbyname().
18538 EOM
18539                 hdrs="$define sys/types.h
18540                         $d_socket sys/socket.h 
18541                         $i_niin netinet/in.h 
18542                         $i_netdb netdb.h
18543                         $i_unistd unistd.h"
18544                 for xxx in "const char *" "char *"; do
18545                         case "$netdb_name_type" in
18546                         '')     try="extern struct hostent *gethostbyname($xxx);"
18547                                 if ./protochk "$try" $hdrs; then
18548                                         echo "Your system accepts $xxx."
18549                                         netdb_name_type="$xxx"
18550                                 fi
18551                                 ;;
18552                         esac
18553                 done
18554                 : In case none of those worked, prompt the user.
18555                 case "$netdb_name_type" in
18556                 '')     rp='What is the type for the 1st argument to gethostbyname?'
18557                         dflt='char *'
18558                         . ./myread
18559                         netdb_name_type=$ans
18560                         ;;
18561                 esac
18562                 ;;
18563         *)      : no gethostbyname, so pick harmless default
18564                 netdb_name_type='char *'
18565                 ;;
18566         esac
18567 fi
18568
18569 : check for type of 1st argument to getnetbyaddr. 
18570 if test "X$netdb_net_type" = X ; then
18571         case "$d_getnbyaddr" in
18572         $define)
18573                 $cat <<EOM
18574
18575 Checking to see what type of 1st argument is accepted by getnetbyaddr().
18576 EOM
18577                 hdrs="$define sys/types.h
18578                         $d_socket sys/socket.h 
18579                         $i_niin netinet/in.h 
18580                         $i_netdb netdb.h
18581                         $i_unistd unistd.h"
18582                 for xxx in in_addr_t "unsigned long" long "unsigned int" int; do
18583                         case "$netdb_net_type" in
18584                         '')     try="extern struct netent *getnetbyaddr($xxx, int);"
18585                                 if ./protochk "$try" $hdrs; then
18586                                         echo "Your system accepts $xxx."
18587                                         netdb_net_type="$xxx"
18588                                 fi
18589                                 ;;
18590                         esac
18591                 done
18592                 : In case none of those worked, prompt the user.
18593                 case "$netdb_net_type" in
18594                 '')     rp='What is the type for the 1st argument to getnetbyaddr?'
18595                         dflt='long'
18596                         . ./myread
18597                         netdb_net_type=$ans
18598                         ;;
18599                 esac
18600                 ;;
18601         *)      : no getnetbyaddr, so pick harmless default
18602                 netdb_net_type='long'
18603                 ;;
18604         esac
18605 fi
18606 : locate the preferred pager for this system
18607 fn=f/
18608 case "$pager" in
18609 '')
18610         dflt=''
18611         case "$pg" in
18612         /*) dflt=$pg;;
18613         [a-zA-Z]:/*) dflt=$pg;;
18614         esac
18615         case "$more" in
18616         /*) dflt=$more;;
18617         [a-zA-Z]:/*) dflt=$more;;
18618         esac
18619         case "$less" in
18620         /*) dflt=$less;;
18621         [a-zA-Z]:/*) dflt=$less;;
18622         esac
18623         case "$dflt" in
18624         '') dflt=/usr/ucb/more;;
18625         esac
18626         ;;
18627 *)      dflt="$pager"
18628         : Instruct ./getfile to trust the hinted or previous pager value,
18629         : even if it does not begin with a slash.  For example, on os2,
18630         : pager might be cmd /c more.  See comments in UU/getfile.
18631         fn="f/($pager)"
18632         ;;
18633 esac
18634 echo " "
18635 rp='What pager is used on your system?'
18636 . ./getfile
18637 pager="$ans"
18638
18639 : see what type pids are declared as in the kernel
18640 rp="What is the type of process ids on this system?"
18641 set pid_t pidtype int stdio.h sys/types.h
18642 eval $typedef_ask
18643
18644 : Find earliest binary compatible site_perl subdirectory perl can use.
18645 xs_apiversion=$version # The current site_perl version.
18646 : Find earliest pure perl site_perl subdirectory perl can use.
18647 : The versioned directories started at 5.005.
18648 pm_apiversion='5.005'
18649
18650 : see if ar generates random libraries by itself
18651 echo " "
18652 echo "Checking how to generate random libraries on your machine..." >&4
18653 echo 'int bar1() { return bar2(); }' > bar1.c
18654 echo 'int bar2() { return 2; }' > bar2.c
18655 $cat > foo.c <<EOP
18656 #$i_stdlib I_STDLIB
18657 #ifdef I_STDLIB
18658 #include <stdlib.h>
18659 #endif
18660 int main() { printf("%d\n", bar1()); exit(0); }
18661 EOP
18662 $cc $ccflags -c bar1.c >/dev/null 2>&1
18663 $cc $ccflags -c bar2.c >/dev/null 2>&1
18664 $cc $ccflags -c foo.c >/dev/null 2>&1
18665 $ar rc bar$_a bar2$_o bar1$_o >/dev/null 2>&1
18666 if $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
18667         $run ./foobar >/dev/null 2>&1; then
18668         echo "$ar appears to generate random libraries itself."
18669         orderlib=false
18670         ranlib=":"
18671 elif $ar ts bar$_a >/dev/null 2>&1 &&
18672         $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
18673         $run ./foobar >/dev/null 2>&1; then
18674                 echo "a table of contents needs to be added with '$ar ts'."
18675                 orderlib=false
18676                 ranlib="$ar ts"
18677 else
18678         case "$ranlib" in
18679         :) ranlib='';;
18680         '')
18681                 ranlib=`./loc ranlib X /usr/bin /bin /usr/local/bin`
18682                 $test -f $ranlib || ranlib=''
18683                 ;;
18684         esac
18685         if $test -n "$ranlib"; then
18686                 echo "your system has '$ranlib'; we'll use that."
18687                 orderlib=false
18688         else
18689                 echo "your system doesn't seem to support random libraries"
18690                 echo "so we'll use lorder and tsort to order the libraries."
18691                 orderlib=true
18692                 ranlib=":"
18693         fi
18694 fi
18695 $rm -f foo* bar* 
18696
18697 : check for type of arguments to select. 
18698 case "$selecttype" in
18699 '') case "$d_select" in
18700         $define)
18701                 echo " "
18702                 $cat <<EOM
18703 Checking to see what type of arguments are accepted by select().
18704 EOM
18705                 hdrs="$define sys/types.h
18706                         $i_systime sys/time.h 
18707                         $i_sysselct sys/select.h
18708                         $d_socket sys/socket.h"
18709                 : The first arg can be int, unsigned, or size_t
18710                 : The last arg may or may not be 'const'
18711                 val=''
18712                 : void pointer has been seen but using that
18713                 : breaks the selectminbits test
18714                 for xxx in 'fd_set *' 'int *'; do
18715                         for nfd in 'int' 'size_t' 'unsigned long' 'unsigned' ; do
18716                                 for tmo in 'struct timeval *' 'const struct timeval *'; do
18717                                         case "$val" in
18718                                         '')     try="extern select _(($nfd, $xxx, $xxx, $xxx, $tmo));"
18719                                                 if ./protochk "$try" $hdrs; then
18720                                                         echo "Your system accepts $xxx."
18721                                                         val="$xxx"
18722                                                 fi
18723                                                 ;;
18724                                         esac
18725                                 done
18726                         done
18727                 done
18728                 case "$val" in
18729                 '')     rp='What is the type for the 2nd, 3rd, and 4th arguments to select?'
18730                         case "$d_fd_set" in
18731                                 $define) dflt="fd_set *" ;;
18732                                 *)              dflt="int *" ;;
18733                         esac
18734                         . ./myread
18735                         val=$ans
18736                         ;;
18737                 esac
18738                 selecttype="$val"
18739                 ;;
18740         *)      : no select, so pick a harmless default
18741                 selecttype='int *'
18742                 ;;
18743         esac
18744         ;;
18745 esac
18746
18747 : check for the select 'width'
18748 case "$selectminbits" in
18749 '') safebits=`expr $ptrsize \* 8`
18750     case "$d_select" in
18751         $define)
18752                 $cat <<EOM
18753
18754 Checking to see on how many bits at a time your select() operates...
18755 EOM
18756                 $cat >try.c <<EOCP
18757 #include <sys/types.h>
18758 #$i_time I_TIME
18759 #$i_systime I_SYS_TIME
18760 #$i_systimek I_SYS_TIME_KERNEL
18761 #ifdef I_TIME
18762 #   include <time.h>
18763 #endif
18764 #ifdef I_SYS_TIME
18765 #   ifdef I_SYS_TIME_KERNEL
18766 #       define KERNEL
18767 #   endif
18768 #   include <sys/time.h>
18769 #   ifdef I_SYS_TIME_KERNEL
18770 #       undef KERNEL
18771 #   endif
18772 #endif
18773 #$i_sysselct I_SYS_SELECT
18774 #ifdef I_SYS_SELECT
18775 #include <sys/select.h>
18776 #endif
18777 #$d_socket HAS_SOCKET
18778 #ifdef HAS_SOCKET
18779 #   include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
18780 #endif
18781 #include <stdio.h>
18782 #$i_stdlib I_STDLIB
18783 #ifdef I_STDLIB
18784 #include <stdlib.h>
18785 #endif
18786 $selecttype b;
18787 #define S sizeof(*(b))
18788 #define MINBITS 64
18789 #define NBYTES (S * 8 > MINBITS ? S : MINBITS/8)
18790 #define NBITS  (NBYTES * 8)
18791 int main() {
18792     char *s = malloc(NBYTES);
18793     struct timeval t;
18794     int i;
18795     FILE* fp;
18796     int fd;
18797
18798     if (!s)
18799         exit(1);
18800     fclose(stdin);
18801     fp = fopen("try.c", "r");
18802     if (fp == 0)
18803       exit(2);
18804     fd = fileno(fp);
18805     if (fd < 0)
18806       exit(3);
18807     b = ($selecttype)s;
18808     for (i = 0; i < NBITS; i++)
18809         FD_SET(i, b);
18810     t.tv_sec  = 0;
18811     t.tv_usec = 0;
18812     select(fd + 1, b, 0, 0, &t);
18813     for (i = NBITS - 1; i > fd && FD_ISSET(i, b); i--);
18814     free(s);
18815     printf("%d\n", i + 1);
18816     return 0;
18817 }
18818 EOCP
18819                 set try
18820                 if eval $compile_ok; then
18821                         selectminbits=`$run ./try`
18822                         case "$selectminbits" in
18823                         '')     cat >&4 <<EOM
18824 Cannot figure out on how many bits at a time your select() operates.
18825 I'll play safe and guess it is $safebits bits.
18826 EOM
18827                                 selectminbits=$safebits
18828                                 bits="$safebits bits"
18829                                 ;;
18830                         1)      bits="1 bit" ;;
18831                         *)      bits="$selectminbits bits" ;;
18832                         esac
18833                         echo "Your select() operates on $bits at a time." >&4
18834                 else
18835                         rp='What is the minimum number of bits your select() operates on?'
18836                         case "$byteorder" in
18837                         12345678)       dflt=64 ;;
18838                         1234)           dflt=32 ;;
18839                         *)              dflt=1  ;;
18840                         esac
18841                         . ./myread
18842                         val=$ans
18843                         selectminbits="$val"
18844                 fi
18845                 $rm -f try.* try
18846                 ;;
18847         *)      : no select, so pick a harmless default
18848                 selectminbits=$safebits
18849                 ;;
18850         esac
18851         ;;
18852 esac
18853
18854 : Trace out the files included by signal.h, then look for SIGxxx names.
18855 : Remove SIGARRAYSIZE used by HPUX.
18856 : Remove SIGSTKSIZE used by Linux.
18857 : Remove SIGSTKSZ used by Posix.
18858 : Remove SIGTYP void lines used by OS2.
18859 : Some cpps, like os390, dont give the file name anywhere
18860 if [ "X$fieldn" = X ]; then
18861         : Just make some guesses.  We check them later.
18862         xxx='/usr/include/signal.h /usr/include/sys/signal.h'
18863 else
18864         xxx=`echo '#include <signal.h>' |
18865         $cppstdin $cppminus $cppflags 2>/dev/null |
18866         $grep '^[       ]*#.*include' | 
18867         $awk "{print \\$$fieldn}" | $sed 's!"!!g' | $sed 's!\\\\\\\\!/!g' | $sort | $uniq`
18868 fi
18869 : Check this list of files to be sure we have parsed the cpp output ok.
18870 : This will also avoid potentially non-existent files, such 
18871 : as ../foo/bar.h
18872 xxxfiles=''
18873 for xx in $xxx /dev/null ; do
18874         $test -f "$xx" && xxxfiles="$xxxfiles $xx"
18875 done
18876 : If we have found no files, at least try signal.h
18877 case "$xxxfiles" in
18878 '')     xxxfiles=`./findhdr signal.h` ;;
18879 esac
18880 xxx=`awk '
18881 $1 ~ /^#define$/ && $2 ~ /^SIG[A-Z0-9]*$/ && $2 !~ /SIGARRAYSIZE/ && $2 !~ /SIGSTKSIZE/ && $2 !~ /SIGSTKSZ/ && $3 !~ /void/ {
18882         print substr($2, 4, 20)
18883 }
18884 $1 == "#" && $2 ~ /^define$/ && $3 ~ /^SIG[A-Z0-9]*$/ && $3 !~ /SIGARRAYSIZE/ && $4 !~ /void/ {
18885         print substr($3, 4, 20)
18886 }' $xxxfiles`
18887 : Append some common names just in case the awk scan failed.
18888 xxx="$xxx ABRT ALRM BUS CANCEL CHLD CLD CONT DIL EMT FPE"
18889 xxx="$xxx FREEZE HUP ILL INT IO IOT KILL LOST LWP PHONE"
18890 xxx="$xxx PIPE POLL PROF PWR QUIT RTMAX RTMIN SEGV STKFLT STOP"
18891 xxx="$xxx SYS TERM THAW TRAP TSTP TTIN TTOU URG USR1 USR2"
18892 xxx="$xxx USR3 USR4 VTALRM WAITING WINCH WIND WINDOW XCPU XFSZ"
18893
18894 : generate a few handy files for later
18895 $cat > signal.c <<EOCP
18896 #include <sys/types.h>
18897 #include <signal.h>
18898 #$i_stdlib I_STDLIB
18899 #ifdef I_STDLIB
18900 #include <stdlib.h>
18901 #endif
18902 #include <stdio.h>
18903 int main() {
18904
18905 /* Strange style to avoid deeply-nested #if/#else/#endif */
18906 #ifndef NSIG
18907 #  ifdef _NSIG
18908 #    define NSIG (_NSIG)
18909 #  endif
18910 #endif
18911
18912 #ifndef NSIG
18913 #  ifdef SIGMAX
18914 #    define NSIG (SIGMAX+1)
18915 #  endif
18916 #endif
18917
18918 #ifndef NSIG
18919 #  ifdef SIG_MAX
18920 #    define NSIG (SIG_MAX+1)
18921 #  endif
18922 #endif
18923
18924 #ifndef NSIG
18925 #  ifdef MAXSIG
18926 #    define NSIG (MAXSIG+1)
18927 #  endif
18928 #endif
18929
18930 #ifndef NSIG
18931 #  ifdef MAX_SIG
18932 #    define NSIG (MAX_SIG+1)
18933 #  endif
18934 #endif
18935
18936 #ifndef NSIG
18937 #  ifdef SIGARRAYSIZE
18938 #    define NSIG (SIGARRAYSIZE+1) /* Not sure of the +1 */
18939 #  endif
18940 #endif
18941
18942 #ifndef NSIG
18943 #  ifdef _sys_nsig
18944 #    define NSIG (_sys_nsig) /* Solaris 2.5 */
18945 #  endif
18946 #endif
18947
18948 /* Default to some arbitrary number that's big enough to get most
18949    of the common signals.
18950 */
18951 #ifndef NSIG
18952 #    define NSIG 50
18953 #endif
18954
18955 printf("NSIG %d\n", NSIG);
18956
18957 #ifndef JUST_NSIG
18958
18959 EOCP
18960
18961 echo $xxx | $tr ' ' $trnl | $sort | $uniq | $awk '
18962 {
18963         printf "#ifdef SIG"; printf $1; printf "\n"
18964         printf "printf(\""; printf $1; printf " %%d\\n\",SIG";
18965         printf $1; printf ");\n"
18966         printf "#endif\n"
18967 }
18968 END {
18969         printf "#endif /* JUST_NSIG */\n";
18970         printf "exit(0);\n}\n";
18971 }
18972 ' >>signal.c
18973 $cat >signal.awk <<'EOP'
18974 BEGIN { ndups = 0 }
18975 $1 ~ /^NSIG$/ { nsig = $2 }
18976 ($1 !~ /^NSIG$/) && (NF == 2) && ($2 ~ /^[0-9][0-9]*$/) {
18977     if ($2 > maxsig) { maxsig = $2 }
18978     if (sig_name[$2]) {
18979         dup_name[ndups] = $1
18980         dup_num[ndups] = $2
18981         ndups++ 
18982     }
18983     else {
18984         sig_name[$2] = $1
18985         sig_num[$2] = $2
18986     }
18987 }
18988 END { 
18989     if (nsig == 0) {
18990         nsig = maxsig + 1
18991     }
18992     printf("NSIG %d\n", nsig);
18993     for (n = 1; n < nsig; n++) {
18994         if (sig_name[n]) {
18995             printf("%s %d\n", sig_name[n], sig_num[n])
18996         }
18997         else {
18998             printf("NUM%d %d\n", n, n) 
18999         }
19000     }
19001     for (n = 0; n < ndups; n++) {
19002         printf("%s %d\n", dup_name[n], dup_num[n])
19003     }
19004 }
19005 EOP
19006 $cat >signal_cmd <<EOS
19007 $startsh
19008 if $test -s signal.lst; then
19009     echo "Using your existing signal.lst file"
19010         exit 0
19011 fi
19012 xxx="$xxx"
19013 EOS
19014 $cat >>signal_cmd <<'EOS'
19015
19016 set signal
19017 if eval $compile_ok; then
19018         $run ./signal$_exe | ($sort -n -k 2 2>/dev/null || $sort -n +1) | $uniq | $awk -f signal.awk >signal.lst
19019 else
19020         echo "(I can't seem be able to compile the whole test program)" >&4
19021         echo "(I'll try it in little pieces.)" >&4
19022         set signal -DJUST_NSIG
19023         if eval $compile_ok; then
19024                 $run ./signal$_exe > signal.nsg
19025                 $cat signal.nsg
19026         else
19027                 echo "I can't seem to figure out how many signals you have." >&4
19028                 echo "Guessing 50." >&4
19029                 echo 'NSIG 50' > signal.nsg
19030         fi
19031         : Now look at all the signal names, one at a time.
19032         for xx in `echo $xxx | $tr ' ' $trnl | $sort | $uniq`; do
19033                 $cat > signal.c <<EOCP
19034 #include <sys/types.h>
19035 #include <signal.h>
19036 #include <stdio.h>
19037 int main() {
19038 printf("$xx %d\n", SIG${xx});
19039 return 0;
19040 }
19041 EOCP
19042                 set signal
19043                 if eval $compile; then
19044                         echo "SIG${xx} found."
19045                         $run ./signal$_exe  >> signal.ls1
19046                 else
19047                         echo "SIG${xx} NOT found."
19048                 fi
19049         done
19050         if $test -s signal.ls1; then
19051                 $cat signal.nsg signal.ls1 |
19052                         $sort -n | $uniq | $awk -f signal.awk >signal.lst
19053         fi
19054
19055 fi
19056 if $test -s signal.lst; then
19057         :
19058 else
19059         echo "(AAK! I can't compile the test programs -- Guessing)" >&4
19060         echo 'kill -l' >signal
19061         set X `csh -f <signal`
19062         $rm -f signal
19063         shift
19064         case $# in
19065         0) set HUP INT QUIT ILL TRAP ABRT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM;;
19066         esac
19067         echo $@ | $tr ' ' $trnl | \
19068             $awk '{ printf "%s %d\n", $1, ++s; }
19069                   END { printf "NSIG %d\n", ++s }' >signal.lst
19070 fi
19071 $rm -f signal.c signal$_exe signal$_o signal.nsg signal.ls1
19072 EOS
19073 chmod a+x signal_cmd
19074 $eunicefix signal_cmd
19075
19076 : generate list of signal names
19077 echo " "
19078 case "$sig_name_init" in
19079 '') doinit=yes ;;
19080 *)  case "$sig_num_init" in
19081     ''|*,*) doinit=yes ;;
19082     esac ;;
19083 esac
19084 case "$doinit" in
19085 yes)
19086         echo "Generating a list of signal names and numbers..." >&4
19087         . ./signal_cmd
19088         sig_count=`$awk '/^NSIG/ { printf "%d", $2 }' signal.lst`
19089         sig_name=`$awk 'BEGIN { printf "ZERO " }
19090                         !/^NSIG/ { printf "%s ", $1 }' signal.lst`
19091         sig_num=`$awk  'BEGIN { printf "0 " }
19092                         !/^NSIG/ { printf "%d ", $2 }' signal.lst`
19093         sig_name_init=`$awk 'BEGIN      { printf "\"ZERO\", " }
19094                              !/^NSIG/   { printf "\"%s\", ", $1 }
19095                              END        { printf "0\n" }' signal.lst`
19096         sig_num_init=`$awk  'BEGIN      { printf "0, " }
19097                              !/^NSIG/   { printf "%d, ", $2}
19098                              END        { printf "0\n"}' signal.lst`
19099         ;;
19100 esac
19101 echo "The following $sig_count signals are available:"
19102 echo " "
19103 echo $sig_name | $awk \
19104 'BEGIN { linelen = 0 }
19105 {
19106         for (i = 1; i <= NF; i++) {
19107                 name = "SIG" $i " "
19108                 linelen = linelen + length(name)
19109                 if (linelen > 70) {
19110                         printf "\n"
19111                         linelen = length(name)
19112                 }
19113                 printf "%s", name
19114         }
19115         printf "\n"
19116 }'
19117 sig_size=`echo $sig_name | awk '{print NF}'`
19118 $rm -f signal signal.c signal.awk signal.lst signal_cmd 
19119
19120 echo " "
19121 case "$sizetype" in
19122 *_t) zzz="$sizetype"    ;;
19123 *)   zzz="filesize"     ;;
19124 esac
19125 echo "Checking the size of $zzz..." >&4 
19126 cat > try.c <<EOCP
19127 #include <sys/types.h>
19128 #include <stdio.h>
19129 #$i_stdlib I_STDLIB
19130 #ifdef I_STDLIB
19131 #include <stdlib.h>
19132 #endif
19133 int main() {
19134     printf("%d\n", (int)sizeof($sizetype));
19135     exit(0);
19136 }
19137 EOCP
19138 set try
19139 if eval $compile_ok; then
19140         yyy=`$run ./try`
19141         case "$yyy" in
19142         '')     sizesize=4
19143                 echo "(I can't execute the test program--guessing $sizesize.)" >&4
19144                 ;;
19145         *)      sizesize=$yyy
19146                 echo "Your $zzz size is $sizesize bytes."
19147                 ;;
19148         esac
19149 else
19150         sizesize=4
19151         echo "(I can't compile the test program--guessing $sizesize.)" >&4
19152 fi
19153
19154
19155 : check for socklen_t
19156 echo " "
19157 echo "Checking to see if you have socklen_t..." >&4
19158 $cat >try.c <<EOCP
19159 #include <sys/types.h>
19160 #$d_socket HAS_SOCKET
19161 #ifdef HAS_SOCKET
19162 #include <sys/socket.h>
19163 #endif
19164 int main() { socklen_t x = 16; }
19165 EOCP
19166 set try
19167 if eval $compile; then
19168         val="$define"
19169         echo "You have socklen_t."
19170 else
19171         val="$undef"
19172         echo "You do not have socklen_t."
19173         case "$sizetype" in
19174         size_t) echo "(You do have size_t, that might work. Some people are happy with just an int.)" ;;
19175         esac
19176 fi
19177 $rm -f try try.*
19178 set d_socklen_t
19179 eval $setvar
19180
19181 : see if this is a socks.h system
19182 set socks.h i_socks
19183 eval $inhdr
19184
19185 : check for type of the size argument to socket calls
19186 case "$d_socket" in
19187 "$define")
19188         $cat <<EOM
19189
19190 Checking to see what type is the last argument of accept().
19191 EOM
19192         yyy=''
19193         case "$d_socklen_t" in
19194         "$define") yyy="$yyy socklen_t"
19195         esac
19196         yyy="$yyy $sizetype int long unsigned"
19197         for xxx in $yyy; do
19198                 case "$socksizetype" in
19199                 '')     try="extern int accept(int, struct sockaddr *, $xxx *);"
19200                         case "$usesocks" in
19201                         "$define")
19202                                 if ./protochk "$try" $i_systypes sys/types.h $d_socket sys/socket.h literal '#define INCLUDE_PROTOTYPES' $i_socks socks.h.; then
19203                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
19204                                         socksizetype="$xxx"
19205                                 fi
19206                                 ;;
19207                         *)      if ./protochk "$try"  $i_systypes sys/types.h $d_socket sys/socket.h; then
19208                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
19209                                         socksizetype="$xxx"
19210                                 fi
19211                                 ;;
19212                         esac
19213                         ;;
19214                 esac
19215         done
19216 : In case none of those worked, prompt the user.
19217         case "$socksizetype" in
19218         '')     rp='What is the type for socket address structure sizes?'
19219                 dflt='int'
19220                 . ./myread
19221                 socksizetype=$ans
19222                 ;;
19223         esac
19224         ;;
19225 *)      : no sockets, so pick relatively harmless default
19226         socksizetype='int'
19227         ;;
19228 esac
19229
19230 : see what type is used for signed size_t
19231 set ssize_t ssizetype int stdio.h sys/types.h
19232 eval $typedef
19233 dflt="$ssizetype"
19234 $cat > try.c <<EOM
19235 #include <stdio.h>
19236 #$i_stdlib I_STDLIB
19237 #ifdef I_STDLIB
19238 #include <stdlib.h>
19239 #endif
19240 #include <sys/types.h>
19241 #define Size_t $sizetype
19242 #define SSize_t $dflt
19243 int main()
19244 {
19245         if (sizeof(Size_t) == sizeof(SSize_t))
19246                 printf("$dflt\n");
19247         else if (sizeof(Size_t) == sizeof(int))
19248                 printf("int\n");
19249         else 
19250                 printf("long\n");
19251         exit(0);
19252 }
19253 EOM
19254 echo " "
19255 set try
19256 if eval $compile_ok && $run ./try > /dev/null; then
19257         ssizetype=`$run ./try`
19258         echo "I'll be using $ssizetype for functions returning a byte count." >&4
19259 else
19260         $cat >&4 <<EOM
19261 Help! I can't compile and run the ssize_t test program: please enlighten me!
19262 (This is probably a misconfiguration in your system or libraries, and
19263 you really ought to fix it.  Still, I'll try anyway.)
19264
19265 I need a type that is the same size as $sizetype, but is guaranteed to
19266 be signed.  Common values are ssize_t, int and long.
19267
19268 EOM
19269         rp="What signed type is the same size as $sizetype?"
19270         . ./myread
19271         ssizetype="$ans"
19272 fi
19273 $rm -f try try.*
19274
19275 : see what type of char stdio uses.
19276 echo " "
19277 echo '#include <stdio.h>' | $cppstdin $cppminus > stdioh
19278 if $contains 'unsigned.*char.*_ptr;' stdioh >/dev/null 2>&1 ; then
19279         echo "Your stdio uses unsigned chars." >&4
19280         stdchar="unsigned char"
19281 else
19282         echo "Your stdio uses signed chars." >&4
19283         stdchar="char"
19284 fi
19285 $rm -f stdioh
19286
19287
19288
19289 : see what type uids are declared as in the kernel
19290 echo " "
19291 echo "Looking for the type for user ids returned by getuid()."
19292 set uid_t uidtype xxx stdio.h sys/types.h
19293 eval $typedef
19294 case "$uidtype" in
19295 xxx)
19296         xxx=`./findhdr sys/user.h`
19297         set `grep '_ruid;' "$xxx" 2>/dev/null` unsigned short
19298         case $1 in
19299         unsigned) dflt="$1 $2" ;;
19300         *) dflt="$1" ;;
19301         esac
19302         ;;
19303 *) dflt="$uidtype";;
19304 esac
19305 case "$uidtype" in
19306 uid_t)  echo "uid_t found." ;;
19307 *)      rp="What is the type for user ids returned by getuid()?"
19308         . ./myread
19309         uidtype="$ans"
19310         ;;
19311 esac
19312
19313 echo " "
19314 case "$uidtype" in
19315 *_t) zzz="$uidtype"     ;;
19316 *)   zzz="uid"          ;;
19317 esac
19318 echo "Checking the size of $zzz..." >&4 
19319 cat > try.c <<EOCP
19320 #include <sys/types.h>
19321 #include <stdio.h>
19322 #$i_stdlib I_STDLIB
19323 #ifdef I_STDLIB
19324 #include <stdlib.h>
19325 #endif
19326 int main() {
19327     printf("%d\n", (int)sizeof($uidtype));
19328     exit(0);
19329 }
19330 EOCP
19331 set try
19332 if eval $compile_ok; then
19333         yyy=`$run ./try`
19334         case "$yyy" in
19335         '')     uidsize=4
19336                 echo "(I can't execute the test program--guessing $uidsize.)" >&4
19337                 ;;
19338         *)      uidsize=$yyy
19339                 echo "Your $zzz is $uidsize bytes long."
19340                 ;;
19341         esac
19342 else
19343         uidsize=4
19344         echo "(I can't compile the test program--guessing $uidsize.)" >&4
19345 fi
19346
19347 echo " "
19348 case "$uidtype" in
19349 *_t) zzz="$uidtype"     ;;
19350 *)   zzz="uid"          ;;
19351 esac
19352 echo "Checking the sign of $zzz..." >&4
19353 cat > try.c <<EOCP
19354 #include <sys/types.h>
19355 #include <stdio.h>
19356 int main() {
19357         $uidtype foo = -1;
19358         if (foo < 0)
19359                 printf("-1\n");
19360         else
19361                 printf("1\n");
19362 }
19363 EOCP
19364 set try
19365 if eval $compile; then
19366         yyy=`$run ./try`
19367         case "$yyy" in
19368         '')     uidsign=1
19369                 echo "(I can't execute the test program--guessing unsigned.)" >&4
19370                 ;;
19371         *)      uidsign=$yyy
19372                 case "$uidsign" in
19373                  1) echo "Your $zzz is unsigned." ;;
19374                 -1) echo "Your $zzz is signed."   ;;
19375                 esac
19376                 ;;
19377         esac
19378 else
19379         uidsign=1
19380         echo "(I can't compile the test program--guessing unsigned.)" >&4
19381 fi
19382
19383
19384
19385 echo " "
19386 $echo "Checking the format string to be used for uids..." >&4
19387
19388 case "$uidsign" in
19389 -1)     if $test X"$uidsize" = X"$ivsize"; then
19390                 uidformat="$ivdformat"
19391         else
19392                 if $test X"$uidsize" = X"$longsize"; then
19393                         uidformat='"ld"'
19394                 else
19395                         if $test X"$uidsize" = X"$intsize"; then
19396                                 uidformat='"d"'
19397                         else
19398                                 if $test X"$uidsize" = X"$shortsize"; then
19399                                         uidformat='"hd"'
19400                                 fi
19401                         fi
19402                 fi
19403         fi
19404         ;;
19405 *)      if $test X"$uidsize" = X"$uvsize"; then
19406                 uidformat="$uvuformat"
19407         else
19408                 if $test X"$uidsize" = X"$longsize"; then
19409                         uidformat='"lu"'
19410                 else
19411                         if $test X"$uidsize" = X"$intsize"; then
19412                                 uidformat='"u"'
19413                         else
19414                                 if $test X"$uidsize" = X"$shortsize"; then
19415                                         uidformat='"hu"'
19416                                 fi
19417                         fi
19418                 fi
19419         fi
19420         ;;
19421 esac
19422
19423 : determine compiler compiler
19424 case "$yacc" in
19425 '')
19426         dflt=yacc;;
19427 *)
19428         dflt="$yacc";;
19429 esac
19430 echo " "
19431 comp='yacc'
19432 if $test -f "$byacc$_exe"; then
19433         dflt="$byacc"
19434         comp="byacc or $comp"
19435 fi
19436 if $test -f "$bison$_exe"; then
19437         comp="$comp or bison -y"
19438 fi
19439 rp="Which compiler compiler ($comp) shall I use?"
19440 . ./myread
19441 yacc="$ans"
19442 case "$yacc" in
19443 *bis*)
19444         case "$yacc" in
19445         *-y*) ;;
19446         *)
19447                 yacc="$yacc -y"
19448                 echo "(Adding -y option to bison to get yacc-compatible behaviour.)"
19449                 ;;
19450         esac
19451         ;;
19452 esac
19453
19454 : see if this is a fp.h system
19455 set fp.h i_fp
19456 eval $inhdr
19457
19458 : see if this is a fp_class.h system
19459 set fp_class.h i_fp_class
19460 eval $inhdr
19461
19462 : see if this is a ieeefp.h system
19463 case "$i_ieeefp" in
19464 '' ) set ieeefp.h i_ieeefp
19465      eval $inhdr
19466      ;;
19467 esac
19468
19469 : see if this is a libutil.h system
19470 set libutil.h i_libutil
19471 eval $inhdr
19472
19473 : see if mach cthreads are available
19474 if test "X$usethreads" = "X$define"; then
19475         set mach/cthreads.h i_machcthr
19476         eval $inhdr
19477 else
19478         i_machcthr="$undef"
19479 fi
19480
19481
19482
19483 : see if this is a math.h system
19484 set math.h i_math
19485 eval $inhdr
19486
19487 : see if this is a mntent.h system
19488 set mntent.h i_mntent
19489 eval $inhdr
19490
19491 : see if ndbm.h is available
19492 set ndbm.h t_ndbm
19493 eval $inhdr
19494
19495 case "$t_ndbm" in
19496 $undef)
19497     # Some Linux distributions such as RedHat 7.1 put the
19498     # ndbm.h header in /usr/include/gdbm/ndbm.h.
19499     if $test -f /usr/include/gdbm/ndbm.h; then
19500         echo '<gdbm/ndbm.h> found.'
19501         ccflags="$ccflags -I/usr/include/gdbm"
19502         cppflags="$cppflags -I/usr/include/gdbm"
19503         t_ndbm=$define
19504     fi
19505     ;;
19506 esac
19507
19508 case "$t_ndbm" in
19509 $define)
19510         : see if dbm_open exists
19511         set dbm_open d_dbm_open
19512         eval $inlibc
19513         case "$d_dbm_open" in
19514         $undef)
19515                 t_ndbm="$undef"
19516                 echo "We won't be including <ndbm.h>"
19517                 ;;
19518         esac
19519         ;;
19520 esac
19521 val="$t_ndbm"
19522 set i_ndbm
19523 eval $setvar
19524
19525 : see if net/errno.h is available
19526 val=''
19527 set net/errno.h val
19528 eval $inhdr
19529
19530 : Unfortunately, it causes problems on some systems.  Arrgh.
19531 case "$val" in
19532 $define)
19533         cat > try.c <<'EOM'
19534 #include <stdio.h>
19535 #include <errno.h>
19536 #include <net/errno.h>
19537 int func()
19538 {
19539         return ENOTSOCK;
19540 }
19541 EOM
19542         if $cc $ccflags -c try.c >/dev/null 2>&1; then
19543                 echo "We'll be including <net/errno.h>." >&4
19544         else
19545                 echo "We won't be including <net/errno.h>." >&4
19546                 val="$undef"
19547         fi
19548         $rm -f try.* try
19549         ;;
19550 esac
19551 set i_neterrno
19552 eval $setvar
19553
19554 : see if netinet/tcp.h is available
19555 set netinet/tcp.h i_netinettcp
19556 eval $inhdr
19557
19558 : see if this is a poll.h system
19559 set poll.h i_poll
19560 eval $inhdr
19561
19562 : see if this is a prot.h system
19563 set prot.h i_prot
19564 eval $inhdr
19565
19566 echo " "
19567 $echo "Guessing which symbols your C compiler and preprocessor define..." >&4 
19568 $cat <<'EOSH' > Cppsym.know
19569 a29k ABI64 aegis AES_SOURCE AIX AIX32 AIX370
19570 AIX41 AIX42 AIX43 AIX_SOURCE aixpc ALL_SOURCE
19571 alliant alpha am29000 AM29000 AMD64 amiga AMIGAOS AMIX
19572 ansi ANSI_C_SOURCE apollo ardent ARM32 atarist att386 att3b
19573 BeOS BIG_ENDIAN BIT_MSF bsd BSD bsd43 bsd4_2 bsd4_3 BSD4_3 bsd4_4
19574 BSD_4_3 BSD_4_4 BSD_NET2 BSD_TIME BSD_TYPES BSDCOMPAT bsdi
19575 bull c cadmus clipper CMU COFF COMPILER_VERSION
19576 concurrent convex cpu cray CRAY CRAYMPP ctix CX_UX
19577 CYGWIN DGUX DGUX_SOURCE DJGPP dmert DOLPHIN DPX2 DSO
19578 Dynix DynixPTX ELF encore EPI EXTENSIONS FAVOR_BSD
19579 FILE_OFFSET_BITS FreeBSD GCC_NEW_VARARGS gcos gcx gimpel
19580 GLIBC GLIBC_MINOR
19581 GNU_SOURCE GNUC GNUC_MINOR GNU_LIBRARY GO32 gould GOULD_PN
19582 H3050R H3050RX hbullx20 hcx host_mips
19583 hp200 hp300 hp700 HP700 hp800 hp9000
19584 hp9000s200 hp9000s300 hp9000s400 hp9000s500
19585 hp9000s700 hp9000s800 hp9k8 hp_osf hppa hpux HPUX_SOURCE
19586 i186 i286 i386 i486 i586 i686 i8086 i80960 i860 I960
19587 IA64 iAPX286 ibm ibm032 ibmesa IBMR2 ibmrt ILP32 ILP64
19588 INLINE_INTRINSICS INTRINSICS INT64 interdata is68k ksr1
19589 LANGUAGE_C LARGE_FILE_API LARGEFILE64_SOURCE
19590 LARGEFILE_SOURCE LFS64_LARGEFILE LFS_LARGEFILE
19591 Linux LITTLE_ENDIAN LONG64 LONG_DOUBLE LONG_LONG
19592 LONGDOUBLE LONGLONG LP64 luna luna88k Lynx
19593 M68000 m68k m88100 m88k M88KBCS_TARGET M_COFF
19594 M_I186 M_I286 M_I386 M_I8086 M_I86 M_I86SM M_SYS3
19595 M_SYS5 M_SYSIII M_SYSV M_UNIX M_XENIX MACH machine MachTen
19596 MATH_HAS_NO_SIDE_EFFECTS
19597 mc300 mc500 mc68000 mc68010 mc68020 mc68030 mc68040
19598 mc68060 mc68k mc68k32 mc700 mc88000 mc88100 merlin
19599 mert MiNT mips MIPS_FPSET MIPS_ISA MIPS_SIM MIPS_SZINT
19600 MIPS_SZLONG MIPS_SZPTR MIPSEB MIPSEL MODERN_C motorola
19601 mpeix MSDOS MTXINU MULTIMAX mvs MVS n16 ncl_el ncl_mr
19602 NetBSD news1500 news1700 news1800 news1900 news3700
19603 news700 news800 news900 NeXT NLS nonstopux ns16000 ns32000
19604 ns32016 ns32332 ns32k nsc32000
19605 OCS88 OEMVS OpenBSD os OS2 OS390 osf OSF1 OSF_SOURCE
19606 pa_risc PA_RISC1_1 PA_RISC2_0 PARAGON parisc
19607 pc532 pdp11 PGC PIC plexus PORTAR posix
19608 POSIX1B_SOURCE POSIX2_SOURCE POSIX4_SOURCE
19609 POSIX_C_SOURCE POSIX_SOURCE POWER
19610 PROTOTYPES PWB pyr QNX R3000 REENTRANT RES Rhapsody RISC6000
19611 riscix riscos RT S390 SA110 scs SCO sequent sgi SGI_SOURCE SH3 sinix
19612 SIZE_INT SIZE_LONG SIZE_PTR SOCKET_SOURCE SOCKETS_SOURCE
19613 sony sony_news sonyrisc sparc sparclite spectrum
19614 stardent stdc STDC_EXT stratos sun sun3 sun386
19615 Sun386i svr3 svr4 SVR4_2 SVR4_SOURCE svr5
19616 SX system SYSTYPE_BSD SYSTYPE_BSD43 SYSTYPE_BSD44
19617 SYSTYPE_SVR4 SYSTYPE_SVR5 SYSTYPE_SYSV SYSV SYSV3 SYSV4 SYSV5
19618 sysV68 sysV88 Tek4132 Tek4300 titan
19619 TM3200 TM5400 TM5600
19620 tower tower32 tower32_200 tower32_600 tower32_700
19621 tower32_800 tower32_850 tss
19622 u370 u3b u3b2 u3b20 u3b200 u3b20d u3b5
19623 ultrix UMAXV UnicomPBB UnicomPBD UNICOS UNICOSMK
19624 unix UNIX95 UNIX99 unixpc unos
19625 USE_BSD USE_FILE_OFFSET64 USE_GNU USE_ISOC9X USE_LARGEFILE USE_LARGEFILE64
19626 USE_MISC USE_POSIX USE_POSIX199309 USE_POSIX199506 USE_POSIX2
19627 USE_REENTRANT USE_SVID USE_UNIX98 USE_XOPEN USE_XOPEN_EXTENDED
19628 USGr4 USGr4_2
19629 Utek UTek UTS UWIN uxpm uxps vax venix VMESA vms xenix Xenix286
19630 XOPEN_SOURCE XOPEN_SOURCE_EXTENDED XPG2 XPG2_EXTENDED
19631 XPG3 XPG3_EXTENDED XPG4 XPG4_EXTENDED
19632 z8000
19633 EOSH
19634 # Maybe put other stuff here too.
19635 cat <<EOSH >>Cppsym.know
19636 $osname
19637 EOSH
19638 ./tr '[a-z]' '[A-Z]' < Cppsym.know > Cppsym.a
19639 ./tr '[A-Z]' '[a-z]' < Cppsym.know > Cppsym.b
19640 $cat Cppsym.know > Cppsym.c
19641 $cat Cppsym.a Cppsym.b Cppsym.c | $tr ' ' $trnl | $sort | $uniq > Cppsym.know
19642 $rm -f Cppsym.a Cppsym.b Cppsym.c
19643 cat <<EOSH > Cppsym
19644 $startsh
19645 if $test \$# -gt 0; then
19646     echo \$* | $tr " " "$trnl" | ./Cppsym.try > Cppsym.got
19647     if $test -s Cppsym.got; then
19648         $rm -f Cppsym.got
19649         exit 0
19650     fi
19651     $rm -f Cppsym.got
19652     exit 1
19653 else
19654     $tr " " "$trnl" | ./Cppsym.try
19655     exit 0
19656 fi
19657 EOSH
19658 chmod +x Cppsym
19659 $eunicefix Cppsym
19660 cat <<EOSH > Cppsym.try
19661 $startsh
19662 cat <<'EOCP' > try.c
19663 #include <stdio.h>
19664 int main() {
19665 EOCP
19666 $awk \\
19667 EOSH
19668 cat <<'EOSH' >> Cppsym.try
19669 'length($1) > 0 {
19670     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
19671     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
19672     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
19673     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
19674 }'       >> try.c
19675 echo 'return 0;}' >> try.c
19676 EOSH
19677 cat <<EOSH >> Cppsym.try
19678 ccflags="$ccflags"
19679 case "$osname-$gccversion" in
19680 irix-) ccflags="\$ccflags -woff 1178" ;;
19681 os2-*) ccflags="\$ccflags -Zlinker /PM:VIO" ;;
19682 esac
19683 $cc -o try $optimize \$ccflags $ldflags try.c $libs && $run ./try
19684 EOSH
19685 chmod +x Cppsym.try
19686 $eunicefix Cppsym.try
19687 ./Cppsym < Cppsym.know > Cppsym.true
19688 : now check the C compiler for additional symbols
19689 postprocess_cc_v=''
19690 case "$osname" in
19691 aix) postprocess_cc_v="|$tr , ' '" ;;
19692 esac
19693 $cat >ccsym <<EOS
19694 $startsh
19695 $cat >tmp.c <<EOF
19696 extern int foo;
19697 EOF
19698 for i in \`$cc -v -c tmp.c 2>&1 $postprocess_cc_v\`
19699 do
19700         case "\$i" in
19701         -D*) echo "\$i" | $sed 's/^-D//';;
19702         -A*) $test "$gccversion" && echo "\$i" | $sed 's/^-A//' | $sed 's/\(.*\)(\(.*\))/\1=\2/';;
19703         esac
19704 done
19705 $rm -f try.c
19706 EOS
19707 postprocess_cc_v=''
19708 chmod +x ccsym
19709 $eunicefix ccsym
19710 ./ccsym > ccsym1.raw
19711 if $test -s ccsym1.raw; then
19712        $sort ccsym1.raw | $uniq >ccsym.raw
19713 else
19714        mv ccsym1.raw ccsym.raw
19715 fi
19716
19717 $awk '/\=/ { print $0; next }
19718         { print $0"=1" }' ccsym.raw >ccsym.list
19719 $awk '/\=/ { print $0; next }
19720         { print $0"=1" }' Cppsym.true >ccsym.true
19721 $comm -13 ccsym.true ccsym.list >ccsym.own
19722 $comm -12 ccsym.true ccsym.list >ccsym.com
19723 $comm -23 ccsym.true ccsym.list >ccsym.cpp
19724 also=''
19725 if $test -z ccsym.raw; then
19726         echo "Your C compiler doesn't seem to define any symbols!" >&4
19727         echo " "
19728         echo "However, your C preprocessor defines the following symbols:"
19729         $cat Cppsym.true
19730         ccsymbols=''
19731         cppsymbols=`$cat Cppsym.true`
19732         cppsymbols=`echo $cppsymbols`
19733         cppccsymbols="$cppsymbols"
19734 else
19735         if $test -s ccsym.com; then
19736                 echo "Your C compiler and pre-processor define these symbols:"
19737                 $sed -e 's/\(..*\)=.*/\1/' ccsym.com
19738                 also='also '
19739                 symbols='ones'
19740                 cppccsymbols=`$cat ccsym.com`
19741                 cppccsymbols=`echo $cppccsymbols`
19742                 $test "$silent" || sleep 1
19743         fi
19744         if $test -s ccsym.cpp; then
19745                 $test "$also" && echo " "
19746                 echo "Your C pre-processor ${also}defines the following symbols:"
19747                 $sed -e 's/\(..*\)=.*/\1/' ccsym.cpp
19748                 also='further '
19749                 cppsymbols=`$cat ccsym.cpp`
19750                 cppsymbols=`echo $cppsymbols`
19751                 $test "$silent" || sleep 1
19752         fi
19753         if $test -s ccsym.own; then
19754                 $test "$also" && echo " "
19755                 echo "Your C compiler ${also}defines the following cpp symbols:"
19756                 $sed -e 's/\(..*\)=1/\1/' ccsym.own
19757                 $sed -e 's/\(..*\)=.*/\1/' ccsym.own | $uniq >>Cppsym.true
19758                 ccsymbols=`$cat ccsym.own`
19759                 ccsymbols=`echo $ccsymbols`
19760                 $test "$silent" || sleep 1
19761         fi
19762 fi
19763
19764 : see if this is a termio system
19765 val="$undef"
19766 val2="$undef"
19767 val3="$undef"
19768 if $test `./findhdr termios.h`; then
19769         set tcsetattr i_termios
19770         eval $inlibc
19771         val3="$i_termios"
19772 fi
19773 echo " "
19774 case "$val3" in
19775 "$define") echo "You have POSIX termios.h... good!" >&4;;
19776 *) if ./Cppsym pyr; then
19777                 case "`/bin/universe`" in
19778                 ucb) if $test `./findhdr sgtty.h`; then
19779                                 val2="$define"
19780                                 echo "<sgtty.h> found." >&4
19781                         else
19782                                 echo "System is pyramid with BSD universe."
19783                                 echo "<sgtty.h> not found--you could have problems." >&4
19784                         fi;;
19785                 *) if $test `./findhdr termio.h`; then
19786                                 val="$define"
19787                                 echo "<termio.h> found." >&4
19788                         else
19789                                 echo "System is pyramid with USG universe."
19790                                 echo "<termio.h> not found--you could have problems." >&4
19791                         fi;;
19792                 esac
19793         elif ./usg; then
19794                 if $test `./findhdr termio.h`; then
19795                         echo "<termio.h> found." >&4
19796                         val="$define"
19797                 elif $test `./findhdr sgtty.h`; then
19798                         echo "<sgtty.h> found." >&4
19799                         val2="$define"
19800                 else
19801 echo "Neither <termio.h> nor <sgtty.h> found--you could have problems." >&4
19802                 fi
19803         else
19804                 if $test `./findhdr sgtty.h`; then
19805                         echo "<sgtty.h> found." >&4
19806                         val2="$define"
19807                 elif $test `./findhdr termio.h`; then
19808                         echo "<termio.h> found." >&4
19809                         val="$define"
19810                 else
19811 echo "Neither <sgtty.h> nor <termio.h> found--you could have problems." >&4
19812                 fi
19813         fi;;
19814 esac
19815 set i_termio; eval $setvar
19816 val=$val2; set i_sgtty; eval $setvar
19817 val=$val3; set i_termios; eval $setvar
19818
19819 : see if stddef is available
19820 set stddef.h i_stddef
19821 eval $inhdr
19822
19823 : see if this is a sunmath.h system
19824 set sunmath.h i_sunmath
19825 eval $inhdr
19826
19827 : see if sys/access.h is available
19828 set sys/access.h i_sysaccess
19829 eval $inhdr
19830
19831 : see if ioctl defs are in sgtty, termio, sys/filio or sys/ioctl
19832 set sys/filio.h i_sysfilio
19833 eval $inhdr
19834 echo " "
19835 if $test `./findhdr sys/ioctl.h`; then
19836         val="$define"
19837         echo '<sys/ioctl.h> found.' >&4
19838 else
19839         val="$undef"
19840         if $test $i_sysfilio = "$define"; then
19841             echo '<sys/ioctl.h> NOT found.' >&4
19842         else
19843                 $test $i_sgtty = "$define" && xxx="sgtty.h"
19844                 $test $i_termio = "$define" && xxx="termio.h"
19845                 $test $i_termios = "$define" && xxx="termios.h"
19846 echo "No <sys/ioctl.h> found, assuming ioctl args are defined in <$xxx>." >&4
19847         fi
19848 fi
19849 set i_sysioctl
19850 eval $setvar
19851
19852 : see if socket ioctl defs are in sys/sockio.h
19853 echo " "
19854 xxx=`./findhdr sys/sockio.h`
19855 if $test "$xxx"; then
19856         if $contains SIOCATMARK $xxx >/dev/null 2>&1; then
19857                 val="$define"
19858                 echo "You have socket ioctls defined in <sys/sockio.h>." >&4
19859         else
19860                 val="$undef"
19861                 echo "No socket ioctls found in <sys/sockio.h>." >&4
19862         fi
19863 else
19864         val="$undef"
19865         $cat <<EOM
19866 <sys/sockio.h> not found, assuming socket ioctls are in <sys/ioctl.h>.
19867 EOM
19868 fi
19869 set i_syssockio
19870 eval $setvar
19871
19872
19873 : see if this is a syslog.h system
19874 set syslog.h i_syslog
19875 eval $inhdr
19876
19877
19878 : see if this is a sys/mode.h system
19879 set sys/mode.h i_sysmode
19880 eval $inhdr
19881
19882 : see if sys/resource.h has to be included
19883 set sys/resource.h i_sysresrc
19884 eval $inhdr
19885
19886 : see if sys/security.h is available
19887 set sys/security.h i_syssecrt
19888 eval $inhdr
19889
19890 : see if this is a sys/statvfs.h system
19891 set sys/statvfs.h i_sysstatvfs
19892 eval $inhdr
19893
19894 : see if this is a sys/un.h system
19895 set sys/un.h i_sysun
19896 eval $inhdr
19897
19898
19899 : see if this is a sys/utsname.h system
19900 set sys/utsname.h i_sysutsname
19901 eval $inhdr
19902
19903 : see if this is a syswait system
19904 set sys/wait.h i_syswait
19905 eval $inhdr
19906
19907 : see if this is a ustat.h system
19908 set ustat.h i_ustat
19909 eval $inhdr
19910
19911 : see if this is an utime system
19912 set utime.h i_utime
19913 eval $inhdr
19914
19915 : see if this is a values.h system
19916 set values.h i_values
19917 eval $inhdr
19918
19919 : see if this is a vfork system
19920 case "$d_vfork" in
19921 "$define")
19922         set vfork.h i_vfork
19923         eval $inhdr
19924         ;;
19925 *)
19926         i_vfork="$undef"
19927         ;;
19928 esac
19929
19930 : see if gdbm.h is available
19931 set gdbm.h t_gdbm
19932 eval $inhdr
19933 case "$t_gdbm" in
19934 $define)
19935         : see if gdbm_open exists
19936         set gdbm_open d_gdbm_open
19937         eval $inlibc
19938         case "$d_gdbm_open" in
19939         $undef)
19940                 t_gdbm="$undef"
19941                 echo "We won't be including <gdbm.h>"
19942                 ;;
19943         esac
19944         ;;
19945 esac
19946 val="$t_gdbm"
19947 set i_gdbm
19948 eval $setvar
19949
19950 echo " "
19951 echo "Looking for extensions..." >&4
19952 : If we are using the old config.sh, known_extensions may contain
19953 : old or inaccurate or duplicate values.
19954 known_extensions=''
19955 nonxs_extensions=''
19956 : We do not use find because it might not be available.
19957 : We do not just use MANIFEST because the user may have dropped
19958 : some additional extensions into the source tree and expect them
19959 : to be built.
19960
19961 : Function to recursively find available extensions, ignoring DynaLoader
19962 : NOTE: recursion limit of 10 to prevent runaway in case of symlink madness
19963 find_extensions='
19964     for xxx in *; do
19965        case "$xxx" in
19966            DynaLoader|dynaload) ;;
19967            *)
19968            if $test -f $xxx/$xxx.xs; then
19969                known_extensions="$known_extensions $1$xxx";
19970            elif $test -f $xxx/Makefile.PL; then
19971                nonxs_extensions="$nonxs_extensions $1$xxx";
19972            else
19973                if $test -d $xxx -a $# -lt 10; then
19974                    set $1$xxx/ $*;
19975                    cd "$xxx";
19976                    eval $find_extensions;
19977                    cd ..;
19978                    shift;
19979                fi;
19980            fi
19981            ;;
19982        esac;
19983     done'
19984 tdir=`pwd`
19985 cd "$rsrc/ext"
19986 set X
19987 shift
19988 eval $find_extensions
19989 # Special case:  Add in threads/shared since it is not picked up by the
19990 # recursive find above (and adding in general recursive finding breaks
19991 # SDBM_File/sdbm).  A.D.  10/25/2001.
19992 known_extensions="$known_extensions threads/shared"
19993 set X $nonxs_extensions
19994 shift
19995 nonxs_extensions="$*"
19996 set X $known_extensions
19997 shift
19998 known_extensions="$*"
19999 cd "$tdir"
20000
20001 : Now see which are supported on this system.
20002 avail_ext=''
20003 for xxx in $known_extensions ; do
20004         case "$xxx" in
20005         DB_File|db_file)
20006                 case "$i_db" in
20007                 $define) avail_ext="$avail_ext $xxx" ;;
20008                 esac
20009                 ;;
20010         GDBM_File|gdbm_fil)
20011                 case "$i_gdbm" in 
20012                 $define) avail_ext="$avail_ext $xxx" ;;
20013                 esac
20014                 ;;
20015         I18N/Langinfo|i18n_lan)
20016                 case "$i_langinfo$d_nl_langinfo" in 
20017                 $define$define) avail_ext="$avail_ext $xxx" ;;
20018                 esac
20019                 ;;
20020         NDBM_File|ndbm_fil)
20021                 case "$i_ndbm" in
20022                 $define)
20023                     case "$osname-$use64bitint" in
20024                     hpux-define)
20025                         case "$libs" in
20026                         *-lndbm*) avail_ext="$avail_ext $xxx" ;;
20027                         esac
20028                         ;;
20029                     *) avail_ext="$avail_ext $xxx" ;;
20030                     esac
20031                     ;;
20032                 esac
20033                 ;;
20034         ODBM_File|odbm_fil) 
20035                 case "${i_dbm}${i_rpcsvcdbm}" in
20036                 *"${define}"*)
20037                     case "$osname-$use64bitint" in
20038                     hpux-define)
20039                         case "$libs" in
20040                         *-ldbm*) avail_ext="$avail_ext $xxx" ;;
20041                         esac
20042                         ;;
20043                     *) avail_ext="$avail_ext $xxx" ;;
20044                     esac
20045                     ;;
20046                 esac
20047                 ;;
20048         POSIX|posix)
20049                 case "$useposix" in
20050                 true|define|y) avail_ext="$avail_ext $xxx" ;;
20051                 esac
20052                 ;;
20053         Opcode|opcode)
20054                 case "$useopcode" in
20055                 true|define|y) avail_ext="$avail_ext $xxx" ;;
20056                 esac
20057                 ;;
20058         Socket|socket)
20059                 case "$d_socket" in 
20060                 true|$define|y)
20061                     case "$osname" in
20062                     beos) ;; # not unless BONE
20063                     *) avail_ext="$avail_ext $xxx" ;;
20064                     esac
20065                     ;;
20066                 esac
20067                 ;;
20068         Sys/Syslog|sys/syslog)
20069                 : XXX syslog requires socket
20070                 case "$d_socket" in 
20071                 true|$define|y) avail_ext="$avail_ext $xxx" ;;
20072                 esac
20073                 ;;
20074         Thread|thread)
20075                 case "$usethreads" in
20076                 true|$define|y)
20077                         case "$useithreads" in
20078                         $undef|false|[nN]*) avail_ext="$avail_ext $xxx" ;;
20079                         esac
20080                 esac
20081                 ;;
20082         XS/APItest|xs/apitest)
20083                 # This is just for testing.  Skip it unless we have dynamic loading.
20084
20085                 case "$usedl" in
20086                 $define) avail_ext="$avail_ext $xxx" ;;
20087                 esac
20088                 ;;
20089         XS/Typemap|xs/typemap)
20090                 # This is just for testing.  Skip it unless we have dynamic loading.
20091                 case "$usedl" in
20092                 $define) avail_ext="$avail_ext $xxx" ;;
20093                 esac
20094                 ;;
20095         threads|threads/shared)
20096                 # threads and threads::shared are special cases.
20097                 # To stop people from asking "Perl 5.8.0 was supposed
20098                 # to have this new fancy threads implementation but my
20099                 # perl doesn't have it" and from people trying to
20100                 # (re)install the threads module using CPAN.pm and
20101                 # CPAN.pm then offering to reinstall Perl 5.8.0,
20102                 # the threads.pm and threads/shared.pm will always be
20103                 # there, croaking informatively ("you need to rebuild
20104                 # all of Perl with threads, sorry") when threads haven't
20105                 # been compiled in.
20106                 # --jhi
20107                 avail_ext="$avail_ext $xxx"
20108                 ;;
20109         IPC/SysV|ipc/sysv)
20110                 : XXX Do we need a useipcsysv variable here
20111                 case "${d_msg}${d_sem}${d_shm}" in 
20112                 *"${define}"*) avail_ext="$avail_ext $xxx" ;;
20113                 esac
20114                 ;;
20115         *)      avail_ext="$avail_ext $xxx"
20116                 ;;
20117         esac
20118 done
20119
20120 set X $avail_ext
20121 shift
20122 avail_ext="$*"
20123
20124 case "$onlyextensions" in
20125 '') ;;
20126 *)  keepextensions=''
20127     echo "You have requested that only certains extensions be included..." >&4
20128     for i in $onlyextensions; do
20129         case " $avail_ext " in
20130         *" $i "*)
20131             echo "Keeping extension $i."
20132             keepextensions="$keepextensions $i"
20133             ;;
20134         *) echo "Ignoring extension $i." ;;
20135         esac
20136     done
20137     avail_ext="$keepextensions"
20138     ;;
20139 esac
20140
20141 case "$noextensions" in
20142 '') ;;
20143 *)  keepextensions=''
20144     echo "You have requested that certain extensions be ignored..." >&4
20145     for i in $avail_ext; do
20146         case " $noextensions " in
20147         *" $i "*) echo "Ignoring extension $i." ;;
20148         *) echo "Keeping extension $i.";
20149            keepextensions="$keepextensions $i"
20150            ;;
20151         esac
20152     done
20153     avail_ext="$keepextensions"
20154     ;;
20155 esac
20156
20157 : Now see which nonxs extensions are supported on this system.
20158 : For now assume all are.
20159 nonxs_ext=''
20160 for xxx in $nonxs_extensions ; do
20161         case "$xxx" in
20162         *)      nonxs_ext="$nonxs_ext $xxx"
20163                 ;;
20164         esac
20165 done
20166
20167 set X $nonxs_ext
20168 shift
20169 nonxs_ext="$*"
20170
20171 case $usedl in
20172 $define)
20173         $cat <<EOM
20174 A number of extensions are supplied with $package.  You may choose to
20175 compile these extensions for dynamic loading (the default), compile
20176 them into the $package executable (static loading), or not include
20177 them at all.  Answer "none" to include no extensions.
20178 Note that DynaLoader is always built and need not be mentioned here.
20179
20180 EOM
20181         case "$dynamic_ext" in
20182         '')
20183                 : Exclude those listed in static_ext
20184                 dflt=''
20185                 for xxx in $avail_ext; do
20186                         case " $static_ext " in
20187                         *" $xxx "*) ;;
20188                         *) dflt="$dflt $xxx" ;;
20189                         esac
20190                 done
20191                 set X $dflt
20192                 shift
20193                 dflt="$*"
20194                 ;;
20195         *)      dflt="$dynamic_ext"
20196                 # Perhaps we are reusing an old out-of-date config.sh.
20197                 case "$hint" in
20198                 previous)
20199                         if test X"$dynamic_ext" != X"$avail_ext"; then
20200                                 $cat <<EOM
20201 NOTICE:  Your previous config.sh list may be incorrect. 
20202 The extensions now available to you are 
20203         ${avail_ext}
20204 but the default list from your previous config.sh is
20205         ${dynamic_ext} 
20206
20207 EOM
20208                         fi
20209                         ;;
20210                 esac
20211                 ;;
20212         esac
20213         case "$dflt" in
20214         '')     dflt=none;;
20215         esac
20216         rp="What extensions do you wish to load dynamically?"
20217         . ./myread
20218         case "$ans" in
20219         none) dynamic_ext=' ' ;;
20220         *) dynamic_ext="$ans" ;;
20221         esac
20222
20223         case "$static_ext" in
20224         '')
20225                 : Exclude those already listed in dynamic linking
20226                 dflt=''
20227                 for xxx in $avail_ext; do
20228                         case " $dynamic_ext " in
20229                         *" $xxx "*) ;;
20230                         *) dflt="$dflt $xxx" ;;
20231                         esac
20232                 done
20233                 set X $dflt
20234                 shift
20235                 dflt="$*"
20236                 ;;
20237         *)  dflt="$static_ext" 
20238                 ;;
20239         esac
20240
20241         case "$dflt" in
20242         '')     dflt=none;;
20243         esac
20244         rp="What extensions do you wish to load statically?"
20245         . ./myread
20246         case "$ans" in
20247         none) static_ext=' ' ;;
20248         *) static_ext="$ans" ;;
20249         esac
20250         ;;
20251 *)
20252         $cat <<EOM
20253 A number of extensions are supplied with $package.  Answer "none" 
20254 to include no extensions. 
20255 Note that DynaLoader is always built and need not be mentioned here.
20256
20257 EOM
20258         case "$static_ext" in
20259         '') dflt="$avail_ext" ;;
20260         *)      dflt="$static_ext"
20261                 # Perhaps we are reusing an old out-of-date config.sh.
20262                 case "$hint" in
20263                 previous)
20264                         if test X"$static_ext" != X"$avail_ext"; then
20265                                 $cat <<EOM
20266 NOTICE:  Your previous config.sh list may be incorrect. 
20267 The extensions now available to you are 
20268         ${avail_ext}
20269 but the default list from your previous config.sh is
20270         ${static_ext} 
20271
20272 EOM
20273                         fi
20274                         ;;
20275                 esac
20276                 ;;
20277         esac
20278         : Exclude those that are not xs extensions
20279         case "$dflt" in
20280         '')     dflt=none;;
20281         esac
20282         rp="What extensions do you wish to include?"
20283         . ./myread
20284         case "$ans" in
20285         none) static_ext=' ' ;;
20286         *) static_ext="$ans" ;;
20287         esac
20288         ;;
20289 esac
20290 #        
20291 # Encode is a special case.  If we are building Encode as a static
20292 # extension, we need to explicitly list its subextensions as well.
20293 # For other nested extensions, this is handled automatically by
20294 # the appropriate Makefile.PL.
20295 case " $static_ext " in
20296         *" Encode "*) # Add the subextensions of Encode
20297         cd "$rsrc/ext"
20298         for xxx in `ls Encode/*/Makefile.PL|awk -F/ '{print $2}'`; do
20299                 static_ext="$static_ext Encode/$xxx"
20300         done
20301         cd "$tdir"
20302         ;;
20303 esac
20304
20305 set X $dynamic_ext $static_ext $nonxs_ext
20306 shift
20307 extensions="$*"
20308
20309 # Sanity check:  We require an extension suitable for use with
20310 # AnyDBM_File, as well as Fcntl and IO.  (Failure to have these
20311 # should show up as failures in the test suite, but it's helpful to
20312 # catch them now.) The 'extensions' list is normally sorted
20313 # alphabetically, so we need to accept either
20314 #    DB_File ... Fcntl ... IO  ....
20315 # or something like
20316 #    Fcntl ... NDBM_File ... IO  ....
20317 case " $extensions"  in
20318 *"_File "*" Fcntl "*" IO "*) ;; # DB_File
20319 *" Fcntl "*"_File "*" IO "*) ;; # GDBM_File
20320 *" Fcntl "*" IO "*"_File "*) ;; # NDBM_File
20321 *) echo "WARNING: Extensions DB_File or *DBM_File, Fcntl, and IO not configured." >&4
20322    echo "WARNING: The Perl you are building will be quite crippled." >& 4
20323    ;;
20324 esac
20325
20326 : Remove libraries needed only for extensions
20327 : The appropriate ext/Foo/Makefile.PL will add them back in, if necessary.
20328 : The exception is SunOS 4.x, which needs them.
20329 case "${osname}X${osvers}" in
20330 sunos*X4*)
20331     perllibs="$libs"
20332     ;;
20333 *) case "$usedl" in
20334     $define|true|[yY]*)
20335             set X `echo " $libs " | sed -e 's@ -lndbm @ @' -e 's@ -lgdbm @ @' -e 's@ -ldbm @ @' -e 's@ -ldb @ @'` 
20336             shift
20337             perllibs="$*"
20338             ;;
20339     *)  perllibs="$libs"
20340             ;;
20341     esac
20342     ;;
20343 esac
20344
20345 : Remove build directory name from cppstdin so it can be used from
20346 : either the present location or the final installed location.
20347 echo " "
20348 : Get out of the UU directory to get correct path name.
20349 cd ..
20350 case "$cppstdin" in
20351 `pwd`/cppstdin)
20352         echo "Stripping down cppstdin path name"
20353         cppstdin=cppstdin
20354         ;;
20355 esac
20356 cd UU
20357
20358 : end of configuration questions
20359 echo " "
20360 echo "End of configuration questions."
20361 echo " "
20362
20363 : back to where it started
20364 if test -d ../UU; then
20365         cd ..
20366 fi
20367
20368 : configuration may be patched via a 'config.arch' file
20369 if $test -f config.arch; then
20370         echo "I see a config.arch file, loading it."
20371         . ./config.arch
20372 fi
20373
20374 : configuration may be patched via a 'config.over' file
20375 if $test -f config.over; then
20376         echo " "
20377         dflt=y
20378         rp='I see a config.over file.  Do you wish to load it?'
20379         . UU/myread
20380         case "$ans" in
20381         n*) echo "OK, I'll ignore it.";;
20382         *)      . ./config.over
20383                 echo "Configuration override changes have been loaded."
20384                 ;;
20385         esac
20386 fi
20387
20388 : in case they want portability, strip down executable paths
20389 case "$d_portable" in
20390 "$define")
20391         echo " "
20392         echo "Stripping down executable paths..." >&4
20393         for file in $loclist $trylist; do
20394                 eval temp=\$$file
20395                 eval $file=`basename $temp`
20396         done
20397         ;;
20398 esac
20399
20400 : create config.sh file
20401 echo " "
20402 echo "Creating config.sh..." >&4
20403 $spitshell <<EOT >config.sh
20404 $startsh
20405 #
20406 # This file was produced by running the Configure script. It holds all the
20407 # definitions figured out by Configure. Should you modify one of these values,
20408 # do not forget to propagate your changes by running "Configure -der". You may
20409 # instead choose to run each of the .SH files by yourself, or "Configure -S".
20410 #
20411
20412 # Package name      : $package
20413 # Source directory  : $src
20414 # Configuration time: $cf_time
20415 # Configured by     : $cf_by
20416 # Target system     : $myuname
20417
20418 Author='$Author'
20419 Date='$Date'
20420 Header='$Header'
20421 Id='$Id'
20422 Locker='$Locker'
20423 Log='$Log'
20424 Mcc='$Mcc'
20425 RCSfile='$RCSfile'
20426 Revision='$Revision'
20427 Source='$Source'
20428 State='$State'
20429 _a='$_a'
20430 _exe='$_exe'
20431 _o='$_o'
20432 afs='$afs'
20433 afsroot='$afsroot'
20434 alignbytes='$alignbytes'
20435 ansi2knr='$ansi2knr'
20436 aphostname='$aphostname'
20437 api_revision='$api_revision'
20438 api_subversion='$api_subversion'
20439 api_version='$api_version'
20440 api_versionstring='$api_versionstring'
20441 ar='$ar'
20442 archlib='$archlib'
20443 archlibexp='$archlibexp'
20444 archname64='$archname64'
20445 archname='$archname'
20446 archobjs='$archobjs'
20447 asctime_r_proto='$asctime_r_proto'
20448 awk='$awk'
20449 baserev='$baserev'
20450 bash='$bash'
20451 bin='$bin'
20452 binexp='$binexp'
20453 bison='$bison'
20454 byacc='$byacc'
20455 byteorder='$byteorder'
20456 c='$c'
20457 castflags='$castflags'
20458 cat='$cat'
20459 cc='$cc'
20460 cccdlflags='$cccdlflags'
20461 ccdlflags='$ccdlflags'
20462 ccflags='$ccflags'
20463 ccflags_uselargefiles='$ccflags_uselargefiles'
20464 ccname='$ccname'
20465 ccsymbols='$ccsymbols'
20466 ccversion='$ccversion'
20467 cf_by='$cf_by'
20468 cf_email='$cf_email'
20469 cf_time='$cf_time'
20470 charsize='$charsize'
20471 chgrp='$chgrp'
20472 chmod='$chmod'
20473 chown='$chown'
20474 clocktype='$clocktype'
20475 comm='$comm'
20476 compress='$compress'
20477 contains='$contains'
20478 cp='$cp'
20479 cpio='$cpio'
20480 cpp='$cpp'
20481 cpp_stuff='$cpp_stuff'
20482 cppccsymbols='$cppccsymbols'
20483 cppflags='$cppflags'
20484 cpplast='$cpplast'
20485 cppminus='$cppminus'
20486 cpprun='$cpprun'
20487 cppstdin='$cppstdin'
20488 cppsymbols='$cppsymbols'
20489 crypt_r_proto='$crypt_r_proto'
20490 cryptlib='$cryptlib'
20491 csh='$csh'
20492 ctermid_r_proto='$ctermid_r_proto'
20493 ctime_r_proto='$ctime_r_proto'
20494 d_Gconvert='$d_Gconvert'
20495 d_PRIEUldbl='$d_PRIEUldbl'
20496 d_PRIFUldbl='$d_PRIFUldbl'
20497 d_PRIGUldbl='$d_PRIGUldbl'
20498 d_PRIXU64='$d_PRIXU64'
20499 d_PRId64='$d_PRId64'
20500 d_PRIeldbl='$d_PRIeldbl'
20501 d_PRIfldbl='$d_PRIfldbl'
20502 d_PRIgldbl='$d_PRIgldbl'
20503 d_PRIi64='$d_PRIi64'
20504 d_PRIo64='$d_PRIo64'
20505 d_PRIu64='$d_PRIu64'
20506 d_PRIx64='$d_PRIx64'
20507 d_SCNfldbl='$d_SCNfldbl'
20508 d__fwalk='$d__fwalk'
20509 d_access='$d_access'
20510 d_accessx='$d_accessx'
20511 d_aintl='$d_aintl'
20512 d_alarm='$d_alarm'
20513 d_archlib='$d_archlib'
20514 d_asctime_r='$d_asctime_r'
20515 d_atolf='$d_atolf'
20516 d_atoll='$d_atoll'
20517 d_attribut='$d_attribut'
20518 d_bcmp='$d_bcmp'
20519 d_bcopy='$d_bcopy'
20520 d_bsd='$d_bsd'
20521 d_bsdgetpgrp='$d_bsdgetpgrp'
20522 d_bsdsetpgrp='$d_bsdsetpgrp'
20523 d_bzero='$d_bzero'
20524 d_casti32='$d_casti32'
20525 d_castneg='$d_castneg'
20526 d_charvspr='$d_charvspr'
20527 d_chown='$d_chown'
20528 d_chroot='$d_chroot'
20529 d_chsize='$d_chsize'
20530 d_class='$d_class'
20531 d_closedir='$d_closedir'
20532 d_cmsghdr_s='$d_cmsghdr_s'
20533 d_const='$d_const'
20534 d_copysignl='$d_copysignl'
20535 d_crypt='$d_crypt'
20536 d_crypt_r='$d_crypt_r'
20537 d_csh='$d_csh'
20538 d_ctermid_r='$d_ctermid_r'
20539 d_ctime_r='$d_ctime_r'
20540 d_cuserid='$d_cuserid'
20541 d_dbl_dig='$d_dbl_dig'
20542 d_dbminitproto='$d_dbminitproto'
20543 d_difftime='$d_difftime'
20544 d_dirfd='$d_dirfd'
20545 d_dirnamlen='$d_dirnamlen'
20546 d_dlerror='$d_dlerror'
20547 d_dlopen='$d_dlopen'
20548 d_dlsymun='$d_dlsymun'
20549 d_dosuid='$d_dosuid'
20550 d_drand48_r='$d_drand48_r'
20551 d_drand48proto='$d_drand48proto'
20552 d_dup2='$d_dup2'
20553 d_eaccess='$d_eaccess'
20554 d_endgrent='$d_endgrent'
20555 d_endgrent_r='$d_endgrent_r'
20556 d_endhent='$d_endhent'
20557 d_endhostent_r='$d_endhostent_r'
20558 d_endnent='$d_endnent'
20559 d_endnetent_r='$d_endnetent_r'
20560 d_endpent='$d_endpent'
20561 d_endprotoent_r='$d_endprotoent_r'
20562 d_endpwent='$d_endpwent'
20563 d_endpwent_r='$d_endpwent_r'
20564 d_endsent='$d_endsent'
20565 d_endservent_r='$d_endservent_r'
20566 d_eofnblk='$d_eofnblk'
20567 d_eunice='$d_eunice'
20568 d_faststdio='$d_faststdio'
20569 d_fchdir='$d_fchdir'
20570 d_fchmod='$d_fchmod'
20571 d_fchown='$d_fchown'
20572 d_fcntl='$d_fcntl'
20573 d_fcntl_can_lock='$d_fcntl_can_lock'
20574 d_fd_macros='$d_fd_macros'
20575 d_fd_set='$d_fd_set'
20576 d_fds_bits='$d_fds_bits'
20577 d_fgetpos='$d_fgetpos'
20578 d_finite='$d_finite'
20579 d_finitel='$d_finitel'
20580 d_flexfnam='$d_flexfnam'
20581 d_flock='$d_flock'
20582 d_flockproto='$d_flockproto'
20583 d_fork='$d_fork'
20584 d_fp_class='$d_fp_class'
20585 d_fpathconf='$d_fpathconf'
20586 d_fpclass='$d_fpclass'
20587 d_fpclassify='$d_fpclassify'
20588 d_fpclassl='$d_fpclassl'
20589 d_fpos64_t='$d_fpos64_t'
20590 d_frexpl='$d_frexpl'
20591 d_fs_data_s='$d_fs_data_s'
20592 d_fseeko='$d_fseeko'
20593 d_fsetpos='$d_fsetpos'
20594 d_fstatfs='$d_fstatfs'
20595 d_fstatvfs='$d_fstatvfs'
20596 d_fsync='$d_fsync'
20597 d_ftello='$d_ftello'
20598 d_ftime='$d_ftime'
20599 d_getcwd='$d_getcwd'
20600 d_getespwnam='$d_getespwnam'
20601 d_getfsstat='$d_getfsstat'
20602 d_getgrent='$d_getgrent'
20603 d_getgrent_r='$d_getgrent_r'
20604 d_getgrgid_r='$d_getgrgid_r'
20605 d_getgrnam_r='$d_getgrnam_r'
20606 d_getgrps='$d_getgrps'
20607 d_gethbyaddr='$d_gethbyaddr'
20608 d_gethbyname='$d_gethbyname'
20609 d_gethent='$d_gethent'
20610 d_gethname='$d_gethname'
20611 d_gethostbyaddr_r='$d_gethostbyaddr_r'
20612 d_gethostbyname_r='$d_gethostbyname_r'
20613 d_gethostent_r='$d_gethostent_r'
20614 d_gethostprotos='$d_gethostprotos'
20615 d_getitimer='$d_getitimer'
20616 d_getlogin='$d_getlogin'
20617 d_getlogin_r='$d_getlogin_r'
20618 d_getmnt='$d_getmnt'
20619 d_getmntent='$d_getmntent'
20620 d_getnbyaddr='$d_getnbyaddr'
20621 d_getnbyname='$d_getnbyname'
20622 d_getnent='$d_getnent'
20623 d_getnetbyaddr_r='$d_getnetbyaddr_r'
20624 d_getnetbyname_r='$d_getnetbyname_r'
20625 d_getnetent_r='$d_getnetent_r'
20626 d_getnetprotos='$d_getnetprotos'
20627 d_getpagsz='$d_getpagsz'
20628 d_getpbyname='$d_getpbyname'
20629 d_getpbynumber='$d_getpbynumber'
20630 d_getpent='$d_getpent'
20631 d_getpgid='$d_getpgid'
20632 d_getpgrp2='$d_getpgrp2'
20633 d_getpgrp='$d_getpgrp'
20634 d_getppid='$d_getppid'
20635 d_getprior='$d_getprior'
20636 d_getprotobyname_r='$d_getprotobyname_r'
20637 d_getprotobynumber_r='$d_getprotobynumber_r'
20638 d_getprotoent_r='$d_getprotoent_r'
20639 d_getprotoprotos='$d_getprotoprotos'
20640 d_getprpwnam='$d_getprpwnam'
20641 d_getpwent='$d_getpwent'
20642 d_getpwent_r='$d_getpwent_r'
20643 d_getpwnam_r='$d_getpwnam_r'
20644 d_getpwuid_r='$d_getpwuid_r'
20645 d_getsbyname='$d_getsbyname'
20646 d_getsbyport='$d_getsbyport'
20647 d_getsent='$d_getsent'
20648 d_getservbyname_r='$d_getservbyname_r'
20649 d_getservbyport_r='$d_getservbyport_r'
20650 d_getservent_r='$d_getservent_r'
20651 d_getservprotos='$d_getservprotos'
20652 d_getspnam='$d_getspnam'
20653 d_getspnam_r='$d_getspnam_r'
20654 d_gettimeod='$d_gettimeod'
20655 d_gmtime_r='$d_gmtime_r'
20656 d_gnulibc='$d_gnulibc'
20657 d_grpasswd='$d_grpasswd'
20658 d_hasmntopt='$d_hasmntopt'
20659 d_htonl='$d_htonl'
20660 d_ilogbl='$d_ilogbl'
20661 d_index='$d_index'
20662 d_inetaton='$d_inetaton'
20663 d_int64_t='$d_int64_t'
20664 d_isascii='$d_isascii'
20665 d_isfinite='$d_isfinite'
20666 d_isinf='$d_isinf'
20667 d_isnan='$d_isnan'
20668 d_isnanl='$d_isnanl'
20669 d_killpg='$d_killpg'
20670 d_lchown='$d_lchown'
20671 d_ldbl_dig='$d_ldbl_dig'
20672 d_link='$d_link'
20673 d_localtime_r='$d_localtime_r'
20674 d_locconv='$d_locconv'
20675 d_lockf='$d_lockf'
20676 d_longdbl='$d_longdbl'
20677 d_longlong='$d_longlong'
20678 d_lseekproto='$d_lseekproto'
20679 d_lstat='$d_lstat'
20680 d_madvise='$d_madvise'
20681 d_mblen='$d_mblen'
20682 d_mbstowcs='$d_mbstowcs'
20683 d_mbtowc='$d_mbtowc'
20684 d_memchr='$d_memchr'
20685 d_memcmp='$d_memcmp'
20686 d_memcpy='$d_memcpy'
20687 d_memmove='$d_memmove'
20688 d_memset='$d_memset'
20689 d_mkdir='$d_mkdir'
20690 d_mkdtemp='$d_mkdtemp'
20691 d_mkfifo='$d_mkfifo'
20692 d_mkstemp='$d_mkstemp'
20693 d_mkstemps='$d_mkstemps'
20694 d_mktime='$d_mktime'
20695 d_mmap='$d_mmap'
20696 d_modfl='$d_modfl'
20697 d_modfl_pow32_bug='$d_modfl_pow32_bug'
20698 d_modflproto='$d_modflproto'
20699 d_mprotect='$d_mprotect'
20700 d_msg='$d_msg'
20701 d_msg_ctrunc='$d_msg_ctrunc'
20702 d_msg_dontroute='$d_msg_dontroute'
20703 d_msg_oob='$d_msg_oob'
20704 d_msg_peek='$d_msg_peek'
20705 d_msg_proxy='$d_msg_proxy'
20706 d_msgctl='$d_msgctl'
20707 d_msgget='$d_msgget'
20708 d_msghdr_s='$d_msghdr_s'
20709 d_msgrcv='$d_msgrcv'
20710 d_msgsnd='$d_msgsnd'
20711 d_msync='$d_msync'
20712 d_munmap='$d_munmap'
20713 d_mymalloc='$d_mymalloc'
20714 d_nice='$d_nice'
20715 d_nl_langinfo='$d_nl_langinfo'
20716 d_nv_preserves_uv='$d_nv_preserves_uv'
20717 d_off64_t='$d_off64_t'
20718 d_old_pthread_create_joinable='$d_old_pthread_create_joinable'
20719 d_oldpthreads='$d_oldpthreads'
20720 d_oldsock='$d_oldsock'
20721 d_open3='$d_open3'
20722 d_pathconf='$d_pathconf'
20723 d_pause='$d_pause'
20724 d_perl_otherlibdirs='$d_perl_otherlibdirs'
20725 d_phostname='$d_phostname'
20726 d_pipe='$d_pipe'
20727 d_poll='$d_poll'
20728 d_portable='$d_portable'
20729 d_procselfexe='$d_procselfexe'
20730 d_pthread_atfork='$d_pthread_atfork'
20731 d_pthread_attr_setscope='$d_pthread_attr_setscope'
20732 d_pthread_yield='$d_pthread_yield'
20733 d_pwage='$d_pwage'
20734 d_pwchange='$d_pwchange'
20735 d_pwclass='$d_pwclass'
20736 d_pwcomment='$d_pwcomment'
20737 d_pwexpire='$d_pwexpire'
20738 d_pwgecos='$d_pwgecos'
20739 d_pwpasswd='$d_pwpasswd'
20740 d_pwquota='$d_pwquota'
20741 d_qgcvt='$d_qgcvt'
20742 d_quad='$d_quad'
20743 d_random_r='$d_random_r'
20744 d_readdir64_r='$d_readdir64_r'
20745 d_readdir='$d_readdir'
20746 d_readdir_r='$d_readdir_r'
20747 d_readlink='$d_readlink'
20748 d_readv='$d_readv'
20749 d_recvmsg='$d_recvmsg'
20750 d_rename='$d_rename'
20751 d_rewinddir='$d_rewinddir'
20752 d_rmdir='$d_rmdir'
20753 d_safebcpy='$d_safebcpy'
20754 d_safemcpy='$d_safemcpy'
20755 d_sanemcmp='$d_sanemcmp'
20756 d_sbrkproto='$d_sbrkproto'
20757 d_scalbnl='$d_scalbnl'
20758 d_sched_yield='$d_sched_yield'
20759 d_scm_rights='$d_scm_rights'
20760 d_seekdir='$d_seekdir'
20761 d_select='$d_select'
20762 d_sem='$d_sem'
20763 d_semctl='$d_semctl'
20764 d_semctl_semid_ds='$d_semctl_semid_ds'
20765 d_semctl_semun='$d_semctl_semun'
20766 d_semget='$d_semget'
20767 d_semop='$d_semop'
20768 d_sendmsg='$d_sendmsg'
20769 d_setegid='$d_setegid'
20770 d_seteuid='$d_seteuid'
20771 d_setgrent='$d_setgrent'
20772 d_setgrent_r='$d_setgrent_r'
20773 d_setgrps='$d_setgrps'
20774 d_sethent='$d_sethent'
20775 d_sethostent_r='$d_sethostent_r'
20776 d_setitimer='$d_setitimer'
20777 d_setlinebuf='$d_setlinebuf'
20778 d_setlocale='$d_setlocale'
20779 d_setlocale_r='$d_setlocale_r'
20780 d_setnent='$d_setnent'
20781 d_setnetent_r='$d_setnetent_r'
20782 d_setpent='$d_setpent'
20783 d_setpgid='$d_setpgid'
20784 d_setpgrp2='$d_setpgrp2'
20785 d_setpgrp='$d_setpgrp'
20786 d_setprior='$d_setprior'
20787 d_setproctitle='$d_setproctitle'
20788 d_setprotoent_r='$d_setprotoent_r'
20789 d_setpwent='$d_setpwent'
20790 d_setpwent_r='$d_setpwent_r'
20791 d_setregid='$d_setregid'
20792 d_setresgid='$d_setresgid'
20793 d_setresuid='$d_setresuid'
20794 d_setreuid='$d_setreuid'
20795 d_setrgid='$d_setrgid'
20796 d_setruid='$d_setruid'
20797 d_setsent='$d_setsent'
20798 d_setservent_r='$d_setservent_r'
20799 d_setsid='$d_setsid'
20800 d_setvbuf='$d_setvbuf'
20801 d_sfio='$d_sfio'
20802 d_shm='$d_shm'
20803 d_shmat='$d_shmat'
20804 d_shmatprototype='$d_shmatprototype'
20805 d_shmctl='$d_shmctl'
20806 d_shmdt='$d_shmdt'
20807 d_shmget='$d_shmget'
20808 d_sigaction='$d_sigaction'
20809 d_sigprocmask='$d_sigprocmask'
20810 d_sigsetjmp='$d_sigsetjmp'
20811 d_sockatmark='$d_sockatmark'
20812 d_sockatmarkproto='$d_sockatmarkproto'
20813 d_socket='$d_socket'
20814 d_socklen_t='$d_socklen_t'
20815 d_sockpair='$d_sockpair'
20816 d_socks5_init='$d_socks5_init'
20817 d_sqrtl='$d_sqrtl'
20818 d_srand48_r='$d_srand48_r'
20819 d_srandom_r='$d_srandom_r'
20820 d_sresgproto='$d_sresgproto'
20821 d_sresuproto='$d_sresuproto'
20822 d_statblks='$d_statblks'
20823 d_statfs_f_flags='$d_statfs_f_flags'
20824 d_statfs_s='$d_statfs_s'
20825 d_statvfs='$d_statvfs'
20826 d_stdio_cnt_lval='$d_stdio_cnt_lval'
20827 d_stdio_ptr_lval='$d_stdio_ptr_lval'
20828 d_stdio_ptr_lval_nochange_cnt='$d_stdio_ptr_lval_nochange_cnt'
20829 d_stdio_ptr_lval_sets_cnt='$d_stdio_ptr_lval_sets_cnt'
20830 d_stdio_stream_array='$d_stdio_stream_array'
20831 d_stdiobase='$d_stdiobase'
20832 d_stdstdio='$d_stdstdio'
20833 d_strchr='$d_strchr'
20834 d_strcoll='$d_strcoll'
20835 d_strctcpy='$d_strctcpy'
20836 d_strerrm='$d_strerrm'
20837 d_strerror='$d_strerror'
20838 d_strerror_r='$d_strerror_r'
20839 d_strftime='$d_strftime'
20840 d_strtod='$d_strtod'
20841 d_strtol='$d_strtol'
20842 d_strtold='$d_strtold'
20843 d_strtoll='$d_strtoll'
20844 d_strtoq='$d_strtoq'
20845 d_strtoul='$d_strtoul'
20846 d_strtoull='$d_strtoull'
20847 d_strtouq='$d_strtouq'
20848 d_strxfrm='$d_strxfrm'
20849 d_suidsafe='$d_suidsafe'
20850 d_symlink='$d_symlink'
20851 d_syscall='$d_syscall'
20852 d_syscallproto='$d_syscallproto'
20853 d_sysconf='$d_sysconf'
20854 d_sysernlst='$d_sysernlst'
20855 d_syserrlst='$d_syserrlst'
20856 d_system='$d_system'
20857 d_tcgetpgrp='$d_tcgetpgrp'
20858 d_tcsetpgrp='$d_tcsetpgrp'
20859 d_telldir='$d_telldir'
20860 d_telldirproto='$d_telldirproto'
20861 d_time='$d_time'
20862 d_times='$d_times'
20863 d_tm_tm_gmtoff='$d_tm_tm_gmtoff'
20864 d_tm_tm_zone='$d_tm_tm_zone'
20865 d_tmpnam_r='$d_tmpnam_r'
20866 d_truncate='$d_truncate'
20867 d_ttyname_r='$d_ttyname_r'
20868 d_tzname='$d_tzname'
20869 d_u32align='$d_u32align'
20870 d_ualarm='$d_ualarm'
20871 d_umask='$d_umask'
20872 d_uname='$d_uname'
20873 d_union_semun='$d_union_semun'
20874 d_unordered='$d_unordered'
20875 d_usleep='$d_usleep'
20876 d_usleepproto='$d_usleepproto'
20877 d_ustat='$d_ustat'
20878 d_vendorarch='$d_vendorarch'
20879 d_vendorbin='$d_vendorbin'
20880 d_vendorlib='$d_vendorlib'
20881 d_vendorscript='$d_vendorscript'
20882 d_vfork='$d_vfork'
20883 d_void_closedir='$d_void_closedir'
20884 d_voidsig='$d_voidsig'
20885 d_voidtty='$d_voidtty'
20886 d_volatile='$d_volatile'
20887 d_vprintf='$d_vprintf'
20888 d_wait4='$d_wait4'
20889 d_waitpid='$d_waitpid'
20890 d_wcstombs='$d_wcstombs'
20891 d_wctomb='$d_wctomb'
20892 d_writev='$d_writev'
20893 d_xenix='$d_xenix'
20894 date='$date'
20895 db_hashtype='$db_hashtype'
20896 db_prefixtype='$db_prefixtype'
20897 db_version_major='$db_version_major'
20898 db_version_minor='$db_version_minor'
20899 db_version_patch='$db_version_patch'
20900 defvoidused='$defvoidused'
20901 direntrytype='$direntrytype'
20902 dlext='$dlext'
20903 dlsrc='$dlsrc'
20904 doublesize='$doublesize'
20905 drand01='$drand01'
20906 drand48_r_proto='$drand48_r_proto'
20907 dynamic_ext='$dynamic_ext'
20908 eagain='$eagain'
20909 ebcdic='$ebcdic'
20910 echo='$echo'
20911 egrep='$egrep'
20912 emacs='$emacs'
20913 endgrent_r_proto='$endgrent_r_proto'
20914 endhostent_r_proto='$endhostent_r_proto'
20915 endnetent_r_proto='$endnetent_r_proto'
20916 endprotoent_r_proto='$endprotoent_r_proto'
20917 endpwent_r_proto='$endpwent_r_proto'
20918 endservent_r_proto='$endservent_r_proto'
20919 eunicefix='$eunicefix'
20920 exe_ext='$exe_ext'
20921 expr='$expr'
20922 extensions='$extensions'
20923 extras='$extras'
20924 fflushNULL='$fflushNULL'
20925 fflushall='$fflushall'
20926 find='$find'
20927 firstmakefile='$firstmakefile'
20928 flex='$flex'
20929 fpossize='$fpossize'
20930 fpostype='$fpostype'
20931 freetype='$freetype'
20932 from='$from'
20933 full_ar='$full_ar'
20934 full_csh='$full_csh'
20935 full_sed='$full_sed'
20936 gccansipedantic='$gccansipedantic'
20937 gccosandvers='$gccosandvers'
20938 gccversion='$gccversion'
20939 getgrent_r_proto='$getgrent_r_proto'
20940 getgrgid_r_proto='$getgrgid_r_proto'
20941 getgrnam_r_proto='$getgrnam_r_proto'
20942 gethostbyaddr_r_proto='$gethostbyaddr_r_proto'
20943 gethostbyname_r_proto='$gethostbyname_r_proto'
20944 gethostent_r_proto='$gethostent_r_proto'
20945 getlogin_r_proto='$getlogin_r_proto'
20946 getnetbyaddr_r_proto='$getnetbyaddr_r_proto'
20947 getnetbyname_r_proto='$getnetbyname_r_proto'
20948 getnetent_r_proto='$getnetent_r_proto'
20949 getprotobyname_r_proto='$getprotobyname_r_proto'
20950 getprotobynumber_r_proto='$getprotobynumber_r_proto'
20951 getprotoent_r_proto='$getprotoent_r_proto'
20952 getpwent_r_proto='$getpwent_r_proto'
20953 getpwnam_r_proto='$getpwnam_r_proto'
20954 getpwuid_r_proto='$getpwuid_r_proto'
20955 getservbyname_r_proto='$getservbyname_r_proto'
20956 getservbyport_r_proto='$getservbyport_r_proto'
20957 getservent_r_proto='$getservent_r_proto'
20958 getspnam_r_proto='$getspnam_r_proto'
20959 gidformat='$gidformat'
20960 gidsign='$gidsign'
20961 gidsize='$gidsize'
20962 gidtype='$gidtype'
20963 glibpth='$glibpth'
20964 gmake='$gmake'
20965 gmtime_r_proto='$gmtime_r_proto'
20966 gnulibc_version='$gnulibc_version'
20967 grep='$grep'
20968 groupcat='$groupcat'
20969 groupstype='$groupstype'
20970 gzip='$gzip'
20971 h_fcntl='$h_fcntl'
20972 h_sysfile='$h_sysfile'
20973 hint='$hint'
20974 hostcat='$hostcat'
20975 html1dir='$html1dir'
20976 html1direxp='$html1direxp'
20977 html3dir='$html3dir'
20978 html3direxp='$html3direxp'
20979 i16size='$i16size'
20980 i16type='$i16type'
20981 i32size='$i32size'
20982 i32type='$i32type'
20983 i64size='$i64size'
20984 i64type='$i64type'
20985 i8size='$i8size'
20986 i8type='$i8type'
20987 i_arpainet='$i_arpainet'
20988 i_bsdioctl='$i_bsdioctl'
20989 i_crypt='$i_crypt'
20990 i_db='$i_db'
20991 i_dbm='$i_dbm'
20992 i_dirent='$i_dirent'
20993 i_dld='$i_dld'
20994 i_dlfcn='$i_dlfcn'
20995 i_fcntl='$i_fcntl'
20996 i_float='$i_float'
20997 i_fp='$i_fp'
20998 i_fp_class='$i_fp_class'
20999 i_gdbm='$i_gdbm'
21000 i_grp='$i_grp'
21001 i_ieeefp='$i_ieeefp'
21002 i_inttypes='$i_inttypes'
21003 i_langinfo='$i_langinfo'
21004 i_libutil='$i_libutil'
21005 i_limits='$i_limits'
21006 i_locale='$i_locale'
21007 i_machcthr='$i_machcthr'
21008 i_malloc='$i_malloc'
21009 i_math='$i_math'
21010 i_memory='$i_memory'
21011 i_mntent='$i_mntent'
21012 i_ndbm='$i_ndbm'
21013 i_netdb='$i_netdb'
21014 i_neterrno='$i_neterrno'
21015 i_netinettcp='$i_netinettcp'
21016 i_niin='$i_niin'
21017 i_poll='$i_poll'
21018 i_prot='$i_prot'
21019 i_pthread='$i_pthread'
21020 i_pwd='$i_pwd'
21021 i_rpcsvcdbm='$i_rpcsvcdbm'
21022 i_sfio='$i_sfio'
21023 i_sgtty='$i_sgtty'
21024 i_shadow='$i_shadow'
21025 i_socks='$i_socks'
21026 i_stdarg='$i_stdarg'
21027 i_stddef='$i_stddef'
21028 i_stdlib='$i_stdlib'
21029 i_string='$i_string'
21030 i_sunmath='$i_sunmath'
21031 i_sysaccess='$i_sysaccess'
21032 i_sysdir='$i_sysdir'
21033 i_sysfile='$i_sysfile'
21034 i_sysfilio='$i_sysfilio'
21035 i_sysin='$i_sysin'
21036 i_sysioctl='$i_sysioctl'
21037 i_syslog='$i_syslog'
21038 i_sysmman='$i_sysmman'
21039 i_sysmode='$i_sysmode'
21040 i_sysmount='$i_sysmount'
21041 i_sysndir='$i_sysndir'
21042 i_sysparam='$i_sysparam'
21043 i_sysresrc='$i_sysresrc'
21044 i_syssecrt='$i_syssecrt'
21045 i_sysselct='$i_sysselct'
21046 i_syssockio='$i_syssockio'
21047 i_sysstat='$i_sysstat'
21048 i_sysstatfs='$i_sysstatfs'
21049 i_sysstatvfs='$i_sysstatvfs'
21050 i_systime='$i_systime'
21051 i_systimek='$i_systimek'
21052 i_systimes='$i_systimes'
21053 i_systypes='$i_systypes'
21054 i_sysuio='$i_sysuio'
21055 i_sysun='$i_sysun'
21056 i_sysutsname='$i_sysutsname'
21057 i_sysvfs='$i_sysvfs'
21058 i_syswait='$i_syswait'
21059 i_termio='$i_termio'
21060 i_termios='$i_termios'
21061 i_time='$i_time'
21062 i_unistd='$i_unistd'
21063 i_ustat='$i_ustat'
21064 i_utime='$i_utime'
21065 i_values='$i_values'
21066 i_varargs='$i_varargs'
21067 i_varhdr='$i_varhdr'
21068 i_vfork='$i_vfork'
21069 ignore_versioned_solibs='$ignore_versioned_solibs'
21070 inc_version_list='$inc_version_list'
21071 inc_version_list_init='$inc_version_list_init'
21072 incpath='$incpath'
21073 inews='$inews'
21074 installarchlib='$installarchlib'
21075 installbin='$installbin'
21076 installhtml1dir='$installhtml1dir'
21077 installhtml3dir='$installhtml3dir'
21078 installman1dir='$installman1dir'
21079 installman3dir='$installman3dir'
21080 installprefix='$installprefix'
21081 installprefixexp='$installprefixexp'
21082 installprivlib='$installprivlib'
21083 installscript='$installscript'
21084 installsitearch='$installsitearch'
21085 installsitebin='$installsitebin'
21086 installsitehtml1dir='$installsitehtml1dir'
21087 installsitehtml3dir='$installsitehtml3dir'
21088 installsitelib='$installsitelib'
21089 installsiteman1dir='$installsiteman1dir'
21090 installsiteman3dir='$installsiteman3dir'
21091 installsitescript='$installsitescript'
21092 installstyle='$installstyle'
21093 installusrbinperl='$installusrbinperl'
21094 installvendorarch='$installvendorarch'
21095 installvendorbin='$installvendorbin'
21096 installvendorhtml1dir='$installvendorhtml1dir'
21097 installvendorhtml3dir='$installvendorhtml3dir'
21098 installvendorlib='$installvendorlib'
21099 installvendorman1dir='$installvendorman1dir'
21100 installvendorman3dir='$installvendorman3dir'
21101 installvendorscript='$installvendorscript'
21102 intsize='$intsize'
21103 issymlink='$issymlink'
21104 ivdformat='$ivdformat'
21105 ivsize='$ivsize'
21106 ivtype='$ivtype'
21107 known_extensions='$known_extensions'
21108 ksh='$ksh'
21109 ld='$ld'
21110 lddlflags='$lddlflags'
21111 ldflags='$ldflags'
21112 ldflags_uselargefiles='$ldflags_uselargefiles'
21113 ldlibpthname='$ldlibpthname'
21114 less='$less'
21115 lib_ext='$lib_ext'
21116 libc='$libc'
21117 libperl='$libperl'
21118 libpth='$libpth'
21119 libs='$libs'
21120 libsdirs='$libsdirs'
21121 libsfiles='$libsfiles'
21122 libsfound='$libsfound'
21123 libspath='$libspath'
21124 libswanted='$libswanted'
21125 libswanted_uselargefiles='$libswanted_uselargefiles'
21126 line='$line'
21127 lint='$lint'
21128 lkflags='$lkflags'
21129 ln='$ln'
21130 lns='$lns'
21131 localtime_r_proto='$localtime_r_proto'
21132 locincpth='$locincpth'
21133 loclibpth='$loclibpth'
21134 longdblsize='$longdblsize'
21135 longlongsize='$longlongsize'
21136 longsize='$longsize'
21137 lp='$lp'
21138 lpr='$lpr'
21139 ls='$ls'
21140 lseeksize='$lseeksize'
21141 lseektype='$lseektype'
21142 mail='$mail'
21143 mailx='$mailx'
21144 make='$make'
21145 make_set_make='$make_set_make'
21146 mallocobj='$mallocobj'
21147 mallocsrc='$mallocsrc'
21148 malloctype='$malloctype'
21149 man1dir='$man1dir'
21150 man1direxp='$man1direxp'
21151 man1ext='$man1ext'
21152 man3dir='$man3dir'
21153 man3direxp='$man3direxp'
21154 man3ext='$man3ext'
21155 mips_type='$mips_type'
21156 mistrustnm='$mistrustnm'
21157 mkdir='$mkdir'
21158 mmaptype='$mmaptype'
21159 modetype='$modetype'
21160 more='$more'
21161 multiarch='$multiarch'
21162 mv='$mv'
21163 myarchname='$myarchname'
21164 mydomain='$mydomain'
21165 myhostname='$myhostname'
21166 myuname='$myuname'
21167 n='$n'
21168 need_va_copy='$need_va_copy'
21169 netdb_hlen_type='$netdb_hlen_type'
21170 netdb_host_type='$netdb_host_type'
21171 netdb_name_type='$netdb_name_type'
21172 netdb_net_type='$netdb_net_type'
21173 nm='$nm'
21174 nm_opt='$nm_opt'
21175 nm_so_opt='$nm_so_opt'
21176 nonxs_ext='$nonxs_ext'
21177 nroff='$nroff'
21178 nvEUformat='$nvEUformat'
21179 nvFUformat='$nvFUformat'
21180 nvGUformat='$nvGUformat'
21181 nv_preserves_uv_bits='$nv_preserves_uv_bits'
21182 nveformat='$nveformat'
21183 nvfformat='$nvfformat'
21184 nvgformat='$nvgformat'
21185 nvsize='$nvsize'
21186 nvtype='$nvtype'
21187 o_nonblock='$o_nonblock'
21188 obj_ext='$obj_ext'
21189 old_pthread_create_joinable='$old_pthread_create_joinable'
21190 optimize='$optimize'
21191 orderlib='$orderlib'
21192 osname='$osname'
21193 osvers='$osvers'
21194 otherlibdirs='$otherlibdirs'
21195 package='$package'
21196 pager='$pager'
21197 passcat='$passcat'
21198 patchlevel='$patchlevel'
21199 path_sep='$path_sep'
21200 perl5='$perl5'
21201 perl='$perl'
21202 perl_patchlevel='$perl_patchlevel'
21203 perladmin='$perladmin'
21204 perllibs='$perllibs'
21205 perlpath='$perlpath'
21206 pg='$pg'
21207 phostname='$phostname'
21208 pidtype='$pidtype'
21209 plibpth='$plibpth'
21210 pm_apiversion='$pm_apiversion'
21211 pmake='$pmake'
21212 pr='$pr'
21213 prefix='$prefix'
21214 prefixexp='$prefixexp'
21215 privlib='$privlib'
21216 privlibexp='$privlibexp'
21217 procselfexe='$procselfexe'
21218 prototype='$prototype'
21219 ptrsize='$ptrsize'
21220 quadkind='$quadkind'
21221 quadtype='$quadtype'
21222 randbits='$randbits'
21223 randfunc='$randfunc'
21224 random_r_proto='$random_r_proto'
21225 randseedtype='$randseedtype'
21226 ranlib='$ranlib'
21227 rd_nodata='$rd_nodata'
21228 readdir64_r_proto='$readdir64_r_proto'
21229 readdir_r_proto='$readdir_r_proto'
21230 revision='$revision'
21231 rm='$rm'
21232 rmail='$rmail'
21233 run='$run'
21234 runnm='$runnm'
21235 sPRIEUldbl='$sPRIEUldbl'
21236 sPRIFUldbl='$sPRIFUldbl'
21237 sPRIGUldbl='$sPRIGUldbl'
21238 sPRIXU64='$sPRIXU64'
21239 sPRId64='$sPRId64'
21240 sPRIeldbl='$sPRIeldbl'
21241 sPRIfldbl='$sPRIfldbl'
21242 sPRIgldbl='$sPRIgldbl'
21243 sPRIi64='$sPRIi64'
21244 sPRIo64='$sPRIo64'
21245 sPRIu64='$sPRIu64'
21246 sPRIx64='$sPRIx64'
21247 sSCNfldbl='$sSCNfldbl'
21248 sched_yield='$sched_yield'
21249 scriptdir='$scriptdir'
21250 scriptdirexp='$scriptdirexp'
21251 sed='$sed'
21252 seedfunc='$seedfunc'
21253 selectminbits='$selectminbits'
21254 selecttype='$selecttype'
21255 sendmail='$sendmail'
21256 setgrent_r_proto='$setgrent_r_proto'
21257 sethostent_r_proto='$sethostent_r_proto'
21258 setlocale_r_proto='$setlocale_r_proto'
21259 setnetent_r_proto='$setnetent_r_proto'
21260 setprotoent_r_proto='$setprotoent_r_proto'
21261 setpwent_r_proto='$setpwent_r_proto'
21262 setservent_r_proto='$setservent_r_proto'
21263 sh='$sh'
21264 shar='$shar'
21265 sharpbang='$sharpbang'
21266 shmattype='$shmattype'
21267 shortsize='$shortsize'
21268 shrpenv='$shrpenv'
21269 shsharp='$shsharp'
21270 sig_count='$sig_count'
21271 sig_name='$sig_name'
21272 sig_name_init='$sig_name_init'
21273 sig_num='$sig_num'
21274 sig_num_init='$sig_num_init'
21275 sig_size='$sig_size'
21276 signal_t='$signal_t'
21277 sitearch='$sitearch'
21278 sitearchexp='$sitearchexp'
21279 sitebin='$sitebin'
21280 sitebinexp='$sitebinexp'
21281 sitehtml1dir='$sitehtml1dir'
21282 sitehtml1direxp='$sitehtml1direxp'
21283 sitehtml3dir='$sitehtml3dir'
21284 sitehtml3direxp='$sitehtml3direxp'
21285 sitelib='$sitelib'
21286 sitelib_stem='$sitelib_stem'
21287 sitelibexp='$sitelibexp'
21288 siteman1dir='$siteman1dir'
21289 siteman1direxp='$siteman1direxp'
21290 siteman3dir='$siteman3dir'
21291 siteman3direxp='$siteman3direxp'
21292 siteprefix='$siteprefix'
21293 siteprefixexp='$siteprefixexp'
21294 sitescript='$sitescript'
21295 sitescriptexp='$sitescriptexp'
21296 sizesize='$sizesize'
21297 sizetype='$sizetype'
21298 sleep='$sleep'
21299 smail='$smail'
21300 so='$so'
21301 sockethdr='$sockethdr'
21302 socketlib='$socketlib'
21303 socksizetype='$socksizetype'
21304 sort='$sort'
21305 spackage='$spackage'
21306 spitshell='$spitshell'
21307 srand48_r_proto='$srand48_r_proto'
21308 srandom_r_proto='$srandom_r_proto'
21309 src='$src'
21310 ssizetype='$ssizetype'
21311 startperl='$startperl'
21312 startsh='$startsh'
21313 static_ext='$static_ext'
21314 stdchar='$stdchar'
21315 stdio_base='$stdio_base'
21316 stdio_bufsiz='$stdio_bufsiz'
21317 stdio_cnt='$stdio_cnt'
21318 stdio_filbuf='$stdio_filbuf'
21319 stdio_ptr='$stdio_ptr'
21320 stdio_stream_array='$stdio_stream_array'
21321 strerror_r_proto='$strerror_r_proto'
21322 strings='$strings'
21323 submit='$submit'
21324 subversion='$subversion'
21325 sysman='$sysman'
21326 tail='$tail'
21327 tar='$tar'
21328 targetarch='$targetarch'
21329 tbl='$tbl'
21330 tee='$tee'
21331 test='$test'
21332 timeincl='$timeincl'
21333 timetype='$timetype'
21334 tmpnam_r_proto='$tmpnam_r_proto'
21335 to='$to'
21336 touch='$touch'
21337 tr='$tr'
21338 trnl='$trnl'
21339 troff='$troff'
21340 ttyname_r_proto='$ttyname_r_proto'
21341 u16size='$u16size'
21342 u16type='$u16type'
21343 u32size='$u32size'
21344 u32type='$u32type'
21345 u64size='$u64size'
21346 u64type='$u64type'
21347 u8size='$u8size'
21348 u8type='$u8type'
21349 uidformat='$uidformat'
21350 uidsign='$uidsign'
21351 uidsize='$uidsize'
21352 uidtype='$uidtype'
21353 uname='$uname'
21354 uniq='$uniq'
21355 uquadtype='$uquadtype'
21356 use5005threads='$use5005threads'
21357 use64bitall='$use64bitall'
21358 use64bitint='$use64bitint'
21359 usecrosscompile='$usecrosscompile'
21360 usedl='$usedl'
21361 usefaststdio='$usefaststdio'
21362 useithreads='$useithreads'
21363 uselargefiles='$uselargefiles'
21364 uselongdouble='$uselongdouble'
21365 usemorebits='$usemorebits'
21366 usemultiplicity='$usemultiplicity'
21367 usemymalloc='$usemymalloc'
21368 usenm='$usenm'
21369 useopcode='$useopcode'
21370 useperlio='$useperlio'
21371 useposix='$useposix'
21372 usereentrant='$usereentrant'
21373 usesfio='$usesfio'
21374 useshrplib='$useshrplib'
21375 usesocks='$usesocks'
21376 usethreads='$usethreads'
21377 usevendorprefix='$usevendorprefix'
21378 usevfork='$usevfork'
21379 usrinc='$usrinc'
21380 uuname='$uuname'
21381 uvXUformat='$uvXUformat'
21382 uvoformat='$uvoformat'
21383 uvsize='$uvsize'
21384 uvtype='$uvtype'
21385 uvuformat='$uvuformat'
21386 uvxformat='$uvxformat'
21387 vendorarch='$vendorarch'
21388 vendorarchexp='$vendorarchexp'
21389 vendorbin='$vendorbin'
21390 vendorbinexp='$vendorbinexp'
21391 vendorhtml1dir='$vendorhtml1dir'
21392 vendorhtml1direxp='$vendorhtml1direxp'
21393 vendorhtml3dir='$vendorhtml3dir'
21394 vendorhtml3direxp='$vendorhtml3direxp'
21395 vendorlib='$vendorlib'
21396 vendorlib_stem='$vendorlib_stem'
21397 vendorlibexp='$vendorlibexp'
21398 vendorman1dir='$vendorman1dir'
21399 vendorman1direxp='$vendorman1direxp'
21400 vendorman3dir='$vendorman3dir'
21401 vendorman3direxp='$vendorman3direxp'
21402 vendorprefix='$vendorprefix'
21403 vendorprefixexp='$vendorprefixexp'
21404 vendorscript='$vendorscript'
21405 vendorscriptexp='$vendorscriptexp'
21406 version='$version'
21407 version_patchlevel_string='$version_patchlevel_string'
21408 versiononly='$versiononly'
21409 vi='$vi'
21410 voidflags='$voidflags'
21411 xlibpth='$xlibpth'
21412 xs_apiversion='$xs_apiversion'
21413 yacc='$yacc'
21414 yaccflags='$yaccflags'
21415 zcat='$zcat'
21416 zip='$zip'
21417 EOT
21418
21419 : Add in command line options if available
21420 $test -f UU/cmdline.opt && $cat UU/cmdline.opt >> config.sh
21421
21422 : add special variables
21423 $test -f $src/patchlevel.h && \
21424 awk '/^#define[         ]+PERL_/ {printf "%s=%s\n",$2,$3}' $src/patchlevel.h >>config.sh
21425 echo "PERL_PATCHLEVEL=$perl_patchlevel" >>config.sh
21426 echo "PERL_CONFIG_SH=true" >>config.sh
21427
21428 : propagate old symbols
21429 if $test -f UU/config.sh; then
21430         <UU/config.sh $sort | $uniq >UU/oldconfig.sh
21431         sed -n 's/^\([a-zA-Z_0-9]*\)=.*/\1/p' config.sh config.sh UU/oldconfig.sh |\
21432         $sort | $uniq -u >UU/oldsyms
21433         set X `cat UU/oldsyms`
21434         shift
21435         case $# in
21436         0) ;;
21437         *)
21438                 cat <<EOM
21439 Hmm...You had some extra variables I don't know about...I'll try to keep 'em...
21440 EOM
21441                 echo "# Variables propagated from previous config.sh file." >>config.sh
21442                 for sym in `cat UU/oldsyms`; do
21443                         echo "    Propagating $hint variable "'$'"$sym..."
21444                         eval 'tmp="$'"${sym}"'"'
21445                         echo "$tmp" | \
21446                                 sed -e "s/'/'\"'\"'/g" -e "s/^/$sym='/" -e "s/$/'/" >>config.sh
21447                 done
21448                 ;;
21449         esac
21450 fi
21451
21452 : Finish up by extracting the .SH files
21453 case "$alldone" in
21454 exit)
21455         $rm -rf UU
21456         echo "Extraction done."
21457         exit 0
21458         ;;
21459 cont)
21460         ;;
21461 '')
21462         dflt=''
21463         nostick=true
21464         $cat <<EOM
21465
21466 If you'd like to make any changes to the config.sh file before I begin
21467 to configure things, do it as a shell escape now (e.g. !vi config.sh).
21468
21469 EOM
21470         rp="Press return or use a shell escape to edit config.sh:"
21471         . UU/myread
21472         nostick=''
21473         case "$ans" in
21474         '') ;;
21475         *) : in case they cannot read
21476                 sh 1>&4 -c "$ans";;
21477         esac
21478         ;;
21479 esac
21480
21481 : if this fails, just run all the .SH files by hand
21482 . ./config.sh
21483
21484 echo " "
21485 exec 1>&4
21486 pwd=`pwd`
21487 . ./UU/extract
21488 cd "$pwd"
21489
21490 if $contains '^depend:' [Mm]akefile >/dev/null 2>&1; then
21491         dflt=y
21492         case "$silent" in
21493         true) ;;
21494         *)
21495                 $cat <<EOM
21496
21497 Now you need to generate make dependencies by running "$make depend".
21498 You might prefer to run it in background: "$make depend > makedepend.out &"
21499 It can take a while, so you might not want to run it right now.
21500
21501 EOM
21502                 ;;
21503         esac
21504         rp="Run $make depend now?"
21505         . UU/myread
21506         case "$ans" in
21507         y*)
21508                 $make depend && echo "Now you must run '$make'."
21509                 ;;
21510         *)
21511                 echo "You must run '$make depend' then '$make'."
21512                 ;;
21513         esac
21514 elif test -f [Mm]akefile; then
21515         echo " "
21516         echo "Now you must run a $make."
21517 else
21518         echo "Configure done."
21519 fi
21520
21521 if $test -f Policy.sh; then
21522     $cat <<EOM
21523
21524 If you compile $package on a different machine or from a different object
21525 directory, copy the Policy.sh file from this object directory to the
21526 new one before you run Configure -- this will help you with most of
21527 the policy defaults.
21528
21529 EOM
21530 fi
21531 if $test -f config.msg; then
21532     echo "Hmm.  I also noted the following information while running:"
21533     echo " "
21534     $cat config.msg >&4
21535     $rm -f config.msg
21536 fi
21537 $rm -f kit*isdone ark*isdone
21538 $rm -rf UU
21539
21540 : End of Configure
21541