This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Keep perl5115delta.pod up to date
[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 package (which contains metaconfig) is available via SVN:
17 #     svn co https://svn.sourceforge.net/svnroot/dist/trunk/dist
18 #
19 # Though this script was generated by metaconfig from metaunits, it is
20 # OK to send patches against Configure itself. It's up to the Configure
21 # pumpkin to backport the patch to the metaunits if it is accepted.
22 # For more information on patching Configure, see pod/perlhack.pod
23 #
24 # The metaunits are also available from the public git repository:
25 #     http://perl5.git.perl.org/metaconfig.git/ or
26 #     $ git clone git://perl5.git.perl.org/metaconfig.git metaconfig
27 #
28 # See Porting/pumpkin.pod for more information on metaconfig.
29 #
30
31 # $Id: Head.U 6 2006-08-25 22:21:46Z rmanfredi $
32 #
33 # Generated on Sat Feb 13 19:05:42 CET 2010 [metaconfig 3.5 PL0]
34 # (with additional metaconfig patches by perlbug@perl.org)
35
36 cat >c1$$ <<EOF
37 ARGGGHHHH!!!!!
38
39 SCO csh still thinks true is false.  Write to SCO today and tell them that next
40 year Configure ought to "rm /bin/csh" unless they fix their blasted shell. :-)
41
42 (Actually, Configure ought to just patch csh in place.  Hmm.  Hmmmmm.  All
43 we'd have to do is go in and swap the && and || tokens, wherever they are.)
44
45 [End of diatribe. We now return you to your regularly scheduled programming...]
46 EOF
47 cat >c2$$ <<EOF
48
49 OOPS!  You naughty creature!  You didn't run Configure with sh!
50 I will attempt to remedy the situation by running sh for you...
51 EOF
52
53 true || cat c1$$ c2$$
54 true || exec sh $0 $argv:q
55
56 (exit $?0) || cat c2$$
57 (exit $?0) || exec sh $0 $argv:q
58 rm -f c1$$ c2$$
59
60 if test -f /dev/cputype -a -f /dev/drivers -a -f /dev/osversion; then
61         cat <<EOF
62 ***
63 *** I'm sorry but this system looks like Plan 9 and Plan 9 doesn't do
64 *** Configure that well.  (Plan 9 is close to UNIX but not close enough.)
65 *** Please read the README.plan9 for further instructions.
66 *** Cannot continue, aborting.
67 ***
68 EOF
69         exit 1
70 fi
71
72 if test ! -c /dev/null ; then
73         cat <<EOF
74 ***
75 *** I'm sorry, but /dev/null appears to be a file rather than a device.
76 *** Please consult your operating sytem's notes for making a device
77 *** in /dev.
78 *** Cannot continue, aborting.
79 ***
80 EOF
81         exit 1
82 fi
83
84 : compute my invocation name
85 me=$0
86 case "$0" in
87 */*)
88         me=`echo $0 | sed -e 's!.*/\(.*\)!\1!' 2>/dev/null`
89         test "$me" || me=$0
90         ;;
91 esac
92
93 : Proper separator for the PATH environment variable
94 p_=:
95 : On OS/2 this directory should exist if this is not floppy only system ":-]"
96 if test -d c:/. || ( uname -a | grep -i 'os\(/\|\)2' ) 2>&1 >/dev/null ; then
97         if test -n "$OS2_SHELL"; then
98                 p_=\;
99                 PATH=`cmd /c "echo %PATH%" | tr '\\\\' / `
100                 OS2_SHELL=`cmd /c "echo %OS2_SHELL%" | tr '\\\\' / | tr '[A-Z]' '[a-z]'`
101                 is_os2=yes
102         elif test -n "$DJGPP"; then
103                 case "X${MACHTYPE:-nonesuchmach}" in
104                 *cygwin) ;;
105                 *) p_=\; ;;
106                 esac
107         fi
108 fi
109
110 : Proper PATH setting
111 paths='/bin /usr/bin /usr/local/bin /usr/ucb /usr/local /usr/lbin'
112 paths="$paths /opt/bin /opt/local/bin /opt/local /opt/lbin"
113 paths="$paths /usr/5bin /etc /usr/gnu/bin /usr/new /usr/new/bin /usr/nbin"
114 paths="$paths /opt/gnu/bin /opt/new /opt/new/bin /opt/nbin"
115 paths="$paths /sys5.3/bin /sys5.3/usr/bin /bsd4.3/bin /bsd4.3/usr/ucb"
116 paths="$paths /bsd4.3/usr/bin /usr/bsd /bsd43/bin /opt/ansic/bin /usr/ccs/bin"
117 paths="$paths /etc /usr/lib /usr/ucblib /lib /usr/ccs/lib"
118 paths="$paths /sbin /usr/sbin /usr/libexec"
119 paths="$paths /system/gnu_library/bin"
120
121 for p in $paths
122 do
123         case "$p_$PATH$p_" in
124         *$p_$p$p_*) ;;
125         *) test -d $p && PATH=$PATH$p_$p ;;
126         esac
127 done
128
129 PATH=.$p_$PATH
130 export PATH
131
132 : shall we be using ksh?
133 inksh=''
134 needksh=''
135 avoidksh=''
136 newsh=/bin/ksh
137 changesh=''
138 if (PATH=.; alias -x) >/dev/null 2>&1; then
139                 inksh=true
140 fi
141 if test -f /hp-ux -a -f /bin/ksh; then
142         needksh='to avoid sh bug in "here document" expansion'
143 fi
144 if test -d /usr/lpp -a -f /usr/bin/bsh -a -f /usr/bin/uname; then
145         if test X`/usr/bin/uname -v` = X4; then
146                 avoidksh="to avoid AIX 4's /bin/sh"
147                 newsh=/usr/bin/bsh
148         fi
149 fi
150 if test -f /osf_boot -a -f /usr/sbin/setld; then
151         if test X`/usr/bin/uname -s` = XOSF1; then
152                 avoidksh="to avoid Digital UNIX' ksh"
153                 newsh=/bin/sh
154                 unset BIN_SH
155         fi
156 fi
157 case "$inksh/$needksh" in
158 /[a-z]*)
159                 ENV=''
160                 changesh=true
161                 reason="$needksh"
162         ;;
163 esac
164 case "$inksh/$avoidksh" in
165 true/[a-z]*)
166         changesh=true
167         reason="$avoidksh"
168         ;;
169 esac
170 case "$inksh/$needksh-$avoidksh-" in
171 true/--)
172                 cat <<EOM
173 (I see you are using the Korn shell.  Some ksh's blow up on $me,
174 mainly on older exotic systems.  If yours does, try the Bourne shell instead.)
175 EOM
176         ;;
177 esac
178 case "$changesh" in
179 true)
180         export newsh
181         echo "(Feeding myself to $newsh $reason.)"
182         case "$0" in
183         Configure|*/Configure) exec $newsh $0 "$@";;
184         *) exec $newsh Configure "$@";;
185         esac
186         ;;
187 esac
188 test -x "${newsh}" || unset newsh
189
190 : if needed, set CDPATH to a harmless value that is not chatty
191 : avoid bash 2.02 problems with empty CDPATH.
192 case "$CDPATH" in
193 '')     ;;
194 *)      case "$SHELL" in
195         *bash*) CDPATH='.' ;;
196         *) CDPATH='' ;;
197         esac
198         ;;
199 esac
200
201 : Configure runs within the UU subdirectory
202 test -d UU || mkdir UU
203 cd UU && rm -f ./*
204
205 ccname=''
206 ccversion=''
207 ccsymbols=''
208 cppccsymbols=''
209 cppsymbols=''
210 from=''
211 run=''
212 targetarch=''
213 to=''
214 usecrosscompile=''
215 extern_C=''
216 mistrustnm=''
217 usedevel=''
218 perllibs=''
219 dynamic_ext=''
220 extensions=''
221 known_extensions=''
222 nonxs_ext=''
223 static_ext=''
224 useopcode=''
225 useposix=''
226 extras=''
227 d_bsd=''
228 d_eunice=''
229 d_xenix=''
230 eunicefix=''
231 ar=''
232 awk=''
233 bash=''
234 bison=''
235 byacc=''
236 cat=''
237 chgrp=''
238 chmod=''
239 chown=''
240 comm=''
241 compress=''
242 cp=''
243 cpio=''
244 cpp=''
245 csh=''
246 date=''
247 echo=''
248 egrep=''
249 emacs=''
250 expr=''
251 find=''
252 flex=''
253 gmake=''
254 grep=''
255 gzip=''
256 inews=''
257 ksh=''
258 less=''
259 line=''
260 lint=''
261 ln=''
262 lp=''
263 lpr=''
264 ls=''
265 mail=''
266 mailx=''
267 make=''
268 mkdir=''
269 more=''
270 mv=''
271 nm=''
272 nroff=''
273 perl=''
274 pg=''
275 pmake=''
276 pr=''
277 rm=''
278 rmail=''
279 sed=''
280 sendmail=''
281 shar=''
282 sleep=''
283 smail=''
284 sort=''
285 submit=''
286 tail=''
287 tar=''
288 tbl=''
289 tee=''
290 test=''
291 touch=''
292 tr=''
293 troff=''
294 uname=''
295 uniq=''
296 uuname=''
297 vi=''
298 zcat=''
299 zip=''
300 full_ar=''
301 full_sed=''
302 libswanted=''
303 hint=''
304 myuname=''
305 osname=''
306 osvers=''
307 Author=''
308 Date=''
309 Header=''
310 Id=''
311 Locker=''
312 Log=''
313 RCSfile=''
314 Revision=''
315 Source=''
316 State=''
317 _a=''
318 _exe=''
319 _o=''
320 archobjs=''
321 exe_ext=''
322 firstmakefile=''
323 lib_ext=''
324 obj_ext=''
325 path_sep=''
326 rm_try=''
327 afs=''
328 afsroot=''
329 alignbytes=''
330 ansi2knr=''
331 archlib=''
332 archlibexp=''
333 d_archlib=''
334 installarchlib=''
335 archname=''
336 myarchname=''
337 d_atolf=''
338 d_atoll=''
339 baserev=''
340 bin=''
341 binexp=''
342 initialinstalllocation=''
343 installbin=''
344 userelocatableinc=''
345 byteorder=''
346 cc=''
347 ccflags=''
348 cppflags=''
349 ldflags=''
350 lkflags=''
351 locincpth=''
352 optimize=''
353 cf_email=''
354 cf_by=''
355 cf_time=''
356 charbits=''
357 charsize=''
358 contains=''
359 cpp_stuff=''
360 cpplast=''
361 cppminus=''
362 cpprun=''
363 cppstdin=''
364 d__fwalk=''
365 d_access=''
366 d_accessx=''
367 d_aintl=''
368 d_alarm=''
369 asctime_r_proto=''
370 d_asctime_r=''
371 d_attribute_deprecated=''
372 d_attribute_format=''
373 d_attribute_malloc=''
374 d_attribute_nonnull=''
375 d_attribute_noreturn=''
376 d_attribute_pure=''
377 d_attribute_unused=''
378 d_attribute_warn_unused_result=''
379 d_printf_format_null=''
380 d_bcmp=''
381 d_bcopy=''
382 d_builtin_choose_expr=''
383 d_builtin_expect=''
384 d_bzero=''
385 d_c99_variadic_macros=''
386 d_casti32=''
387 castflags=''
388 d_castneg=''
389 d_chown=''
390 d_chroot=''
391 d_chsize=''
392 d_class=''
393 d_clearenv=''
394 d_closedir=''
395 d_void_closedir=''
396 d_cmsghdr_s=''
397 d_const=''
398 d_copysignl=''
399 d_cplusplus=''
400 cryptlib=''
401 d_crypt=''
402 crypt_r_proto=''
403 d_crypt_r=''
404 d_csh=''
405 full_csh=''
406 d_ctermid=''
407 ctermid_r_proto=''
408 d_ctermid_r=''
409 ctime_r_proto=''
410 d_ctime_r=''
411 d_cuserid=''
412 d_dbl_dig=''
413 d_dbminitproto=''
414 d_difftime=''
415 d_dir_dd_fd=''
416 d_dirfd=''
417 d_dlerror=''
418 d_dlopen=''
419 d_dlsymun=''
420 d_dosuid=''
421 d_suidsafe=''
422 d_drand48_r=''
423 drand48_r_proto=''
424 d_drand48proto=''
425 d_dup2=''
426 d_eaccess=''
427 d_endgrent=''
428 d_endgrent_r=''
429 endgrent_r_proto=''
430 d_endhent=''
431 d_endhostent_r=''
432 endhostent_r_proto=''
433 d_endnent=''
434 d_endnetent_r=''
435 endnetent_r_proto=''
436 d_endpent=''
437 d_endprotoent_r=''
438 endprotoent_r_proto=''
439 d_endpwent=''
440 d_endpwent_r=''
441 endpwent_r_proto=''
442 d_endsent=''
443 d_endservent_r=''
444 endservent_r_proto=''
445 d_faststdio=''
446 d_fchdir=''
447 d_fchmod=''
448 d_fchown=''
449 d_fcntl=''
450 d_fcntl_can_lock=''
451 d_fd_macros=''
452 d_fd_set=''
453 d_fds_bits=''
454 d_fgetpos=''
455 d_finite=''
456 d_finitel=''
457 d_flexfnam=''
458 d_flock=''
459 d_flockproto=''
460 d_fork=''
461 d_fp_class=''
462 d_fpclass=''
463 d_fpclassify=''
464 d_fpclassl=''
465 d_fpos64_t=''
466 d_frexpl=''
467 d_fs_data_s=''
468 d_fseeko=''
469 d_fsetpos=''
470 d_fstatfs=''
471 d_fsync=''
472 d_ftello=''
473 d_ftime=''
474 d_gettimeod=''
475 d_futimes=''
476 d_Gconvert=''
477 d_getaddrinfo=''
478 d_getcwd=''
479 d_getespwnam=''
480 d_getfsstat=''
481 d_getgrent=''
482 d_getgrent_r=''
483 getgrent_r_proto=''
484 d_getgrgid_r=''
485 getgrgid_r_proto=''
486 d_getgrnam_r=''
487 getgrnam_r_proto=''
488 d_getgrps=''
489 d_gethbyaddr=''
490 d_gethbyname=''
491 d_gethent=''
492 aphostname=''
493 d_gethname=''
494 d_phostname=''
495 d_uname=''
496 d_gethostbyaddr_r=''
497 gethostbyaddr_r_proto=''
498 d_gethostbyname_r=''
499 gethostbyname_r_proto=''
500 d_gethostent_r=''
501 gethostent_r_proto=''
502 d_gethostprotos=''
503 d_getitimer=''
504 d_getlogin=''
505 d_getlogin_r=''
506 getlogin_r_proto=''
507 d_getmnt=''
508 d_getmntent=''
509 d_getnameinfo=''
510 d_getnbyaddr=''
511 d_getnbyname=''
512 d_getnent=''
513 d_getnetbyaddr_r=''
514 getnetbyaddr_r_proto=''
515 d_getnetbyname_r=''
516 getnetbyname_r_proto=''
517 d_getnetent_r=''
518 getnetent_r_proto=''
519 d_getnetprotos=''
520 d_getpagsz=''
521 d_getpent=''
522 d_getpgid=''
523 d_getpgrp2=''
524 d_bsdgetpgrp=''
525 d_getpgrp=''
526 d_getppid=''
527 d_getprior=''
528 d_getpbyname=''
529 d_getpbynumber=''
530 d_getprotobyname_r=''
531 getprotobyname_r_proto=''
532 d_getprotobynumber_r=''
533 getprotobynumber_r_proto=''
534 d_getprotoent_r=''
535 getprotoent_r_proto=''
536 d_getprotoprotos=''
537 d_getprpwnam=''
538 d_getpwent=''
539 d_getpwent_r=''
540 getpwent_r_proto=''
541 d_getpwnam_r=''
542 getpwnam_r_proto=''
543 d_getpwuid_r=''
544 getpwuid_r_proto=''
545 d_getsent=''
546 d_getservbyname_r=''
547 getservbyname_r_proto=''
548 d_getservbyport_r=''
549 getservbyport_r_proto=''
550 d_getservent_r=''
551 getservent_r_proto=''
552 d_getservprotos=''
553 d_getspnam=''
554 d_getspnam_r=''
555 getspnam_r_proto=''
556 d_getsbyname=''
557 d_getsbyport=''
558 d_gmtime_r=''
559 gmtime_r_proto=''
560 d_gnulibc=''
561 gnulibc_version=''
562 d_hasmntopt=''
563 d_htonl=''
564 d_ilogbl=''
565 d_inetaton=''
566 d_inetntop=''
567 d_inetpton=''
568 d_int64_t=''
569 d_isascii=''
570 d_isfinite=''
571 d_isinf=''
572 d_isnan=''
573 d_isnanl=''
574 d_killpg=''
575 d_lchown=''
576 d_ldbl_dig=''
577 d_libm_lib_version=''
578 d_link=''
579 d_localtime_r=''
580 d_localtime_r_needs_tzset=''
581 localtime_r_proto=''
582 d_locconv=''
583 d_lockf=''
584 d_longdbl=''
585 longdblsize=''
586 d_longlong=''
587 longlongsize=''
588 d_lseekproto=''
589 d_lstat=''
590 d_madvise=''
591 d_malloc_good_size=''
592 d_malloc_size=''
593 d_mblen=''
594 d_mbstowcs=''
595 d_mbtowc=''
596 d_memchr=''
597 d_memcmp=''
598 d_memcpy=''
599 d_memmove=''
600 d_memset=''
601 d_mkdir=''
602 d_mkdtemp=''
603 d_mkfifo=''
604 d_mkstemp=''
605 d_mkstemps=''
606 d_mktime=''
607 d_mmap=''
608 mmaptype=''
609 d_modfl=''
610 d_modfl_pow32_bug=''
611 d_modflproto=''
612 d_mprotect=''
613 d_msg=''
614 d_msgctl=''
615 d_msgget=''
616 d_msghdr_s=''
617 d_msgrcv=''
618 d_msgsnd=''
619 d_msync=''
620 d_munmap=''
621 d_nice=''
622 d_nl_langinfo=''
623 d_off64_t=''
624 d_open3=''
625 d_fpathconf=''
626 d_pathconf=''
627 d_pause=''
628 d_pipe=''
629 d_poll=''
630 d_portable=''
631 d_procselfexe=''
632 procselfexe=''
633 d_old_pthread_create_joinable=''
634 old_pthread_create_joinable=''
635 d_pthread_atfork=''
636 d_pthread_attr_setscope=''
637 d_pthread_yield=''
638 d_sched_yield=''
639 sched_yield=''
640 d_qgcvt=''
641 d_random_r=''
642 random_r_proto=''
643 d_readdir64_r=''
644 readdir64_r_proto=''
645 d_readdir=''
646 d_rewinddir=''
647 d_seekdir=''
648 d_telldir=''
649 d_readdir_r=''
650 readdir_r_proto=''
651 d_readlink=''
652 d_readv=''
653 d_recvmsg=''
654 d_rename=''
655 d_rmdir=''
656 d_safebcpy=''
657 d_safemcpy=''
658 d_sanemcmp=''
659 d_sbrkproto=''
660 d_scalbnl=''
661 d_select=''
662 d_sem=''
663 d_semctl=''
664 d_semget=''
665 d_semop=''
666 d_sendmsg=''
667 d_setegid=''
668 d_seteuid=''
669 d_setgrent=''
670 d_setgrent_r=''
671 setgrent_r_proto=''
672 d_setgrps=''
673 d_sethent=''
674 d_sethostent_r=''
675 sethostent_r_proto=''
676 d_setitimer=''
677 d_setlinebuf=''
678 d_setlocale=''
679 d_setlocale_r=''
680 setlocale_r_proto=''
681 d_setnent=''
682 d_setnetent_r=''
683 setnetent_r_proto=''
684 d_setpent=''
685 d_setpgid=''
686 d_setpgrp2=''
687 d_bsdsetpgrp=''
688 d_setpgrp=''
689 d_setprior=''
690 d_setproctitle=''
691 d_setprotoent_r=''
692 setprotoent_r_proto=''
693 d_setpwent=''
694 d_setpwent_r=''
695 setpwent_r_proto=''
696 d_setregid=''
697 d_setresgid=''
698 d_setresuid=''
699 d_setreuid=''
700 d_setrgid=''
701 d_setruid=''
702 d_setsent=''
703 d_setservent_r=''
704 setservent_r_proto=''
705 d_setsid=''
706 d_setvbuf=''
707 d_sfio=''
708 usesfio=''
709 d_shm=''
710 d_shmat=''
711 d_shmatprototype=''
712 shmattype=''
713 d_shmctl=''
714 d_shmdt=''
715 d_shmget=''
716 d_sigaction=''
717 d_signbit=''
718 d_sigprocmask=''
719 d_sigsetjmp=''
720 usesitecustomize=''
721 d_snprintf=''
722 d_vsnprintf=''
723 d_sockatmark=''
724 d_sockatmarkproto=''
725 d_msg_ctrunc=''
726 d_msg_dontroute=''
727 d_msg_oob=''
728 d_msg_peek=''
729 d_msg_proxy=''
730 d_oldsock=''
731 d_scm_rights=''
732 d_socket=''
733 d_sockpair=''
734 sockethdr=''
735 socketlib=''
736 d_socklen_t=''
737 d_socks5_init=''
738 d_sprintf_returns_strlen=''
739 d_sqrtl=''
740 d_srand48_r=''
741 srand48_r_proto=''
742 d_srandom_r=''
743 srandom_r_proto=''
744 d_sresgproto=''
745 d_sresuproto=''
746 d_statblks=''
747 d_statfs_f_flags=''
748 d_statfs_s=''
749 d_fstatvfs=''
750 d_statvfs=''
751 d_stdio_cnt_lval=''
752 d_stdio_ptr_lval=''
753 d_stdio_ptr_lval_nochange_cnt=''
754 d_stdio_ptr_lval_sets_cnt=''
755 d_stdiobase=''
756 d_stdstdio=''
757 stdio_base=''
758 stdio_bufsiz=''
759 stdio_cnt=''
760 stdio_filbuf=''
761 stdio_ptr=''
762 d_index=''
763 d_strchr=''
764 d_strcoll=''
765 d_strctcpy=''
766 d_strerrm=''
767 d_strerror=''
768 d_sysernlst=''
769 d_syserrlst=''
770 d_strerror_r=''
771 strerror_r_proto=''
772 d_strftime=''
773 d_strlcat=''
774 d_strlcpy=''
775 d_strtod=''
776 d_strtol=''
777 d_strtold=''
778 d_strtoll=''
779 d_strtoq=''
780 d_strtoul=''
781 d_strtoull=''
782 d_strtouq=''
783 d_strxfrm=''
784 d_symlink=''
785 d_syscall=''
786 d_syscallproto=''
787 d_sysconf=''
788 d_system=''
789 d_tcgetpgrp=''
790 d_tcsetpgrp=''
791 d_telldirproto=''
792 d_time=''
793 timetype=''
794 d_asctime64=''
795 d_ctime64=''
796 d_difftime64=''
797 d_gmtime64=''
798 d_localtime64=''
799 d_mktime64=''
800 d_timegm=''
801 clocktype=''
802 d_times=''
803 d_tmpnam_r=''
804 tmpnam_r_proto=''
805 d_truncate=''
806 d_ttyname_r=''
807 ttyname_r_proto=''
808 d_tzname=''
809 d_u32align=''
810 d_ualarm=''
811 d_umask=''
812 d_semctl_semid_ds=''
813 d_semctl_semun=''
814 d_union_semun=''
815 d_unordered=''
816 d_unsetenv=''
817 d_usleep=''
818 d_usleepproto=''
819 d_ustat=''
820 d_pseudofork=''
821 d_vfork=''
822 usevfork=''
823 d_voidsig=''
824 signal_t=''
825 d_volatile=''
826 d_charvspr=''
827 d_vprintf=''
828 d_wait4=''
829 d_waitpid=''
830 d_wcstombs=''
831 d_wctomb=''
832 d_writev=''
833 dlext=''
834 bin_ELF=''
835 cccdlflags=''
836 ccdlflags=''
837 dlsrc=''
838 ld=''
839 lddlflags=''
840 usedl=''
841 doublesize=''
842 ebcdic=''
843 fflushNULL=''
844 fflushall=''
845 fpossize=''
846 fpostype=''
847 gccansipedantic=''
848 gccosandvers=''
849 gccversion=''
850 gidformat=''
851 gidsign=''
852 gidsize=''
853 gidtype=''
854 groupstype=''
855 h_fcntl=''
856 h_sysfile=''
857 html1dir=''
858 html1direxp=''
859 installhtml1dir=''
860 html3dir=''
861 html3direxp=''
862 installhtml3dir=''
863 i_arpainet=''
864 i_assert=''
865 i_crypt=''
866 db_hashtype=''
867 db_prefixtype=''
868 db_version_major=''
869 db_version_minor=''
870 db_version_patch=''
871 i_db=''
872 i_dbm=''
873 i_rpcsvcdbm=''
874 d_dirnamlen=''
875 direntrytype=''
876 i_dirent=''
877 i_dld=''
878 i_dlfcn=''
879 i_fcntl=''
880 i_float=''
881 i_fp=''
882 i_fp_class=''
883 i_gdbm=''
884 d_grpasswd=''
885 i_grp=''
886 i_ieeefp=''
887 i_inttypes=''
888 i_langinfo=''
889 i_libutil=''
890 i_limits=''
891 i_locale=''
892 i_machcthr=''
893 i_malloc=''
894 i_mallocmalloc=''
895 i_math=''
896 i_memory=''
897 i_mntent=''
898 d_gdbm_ndbm_h_uses_prototypes=''
899 d_gdbmndbm_h_uses_prototypes=''
900 d_ndbm=''
901 d_ndbm_h_uses_prototypes=''
902 i_gdbm_ndbm=''
903 i_gdbmndbm=''
904 i_ndbm=''
905 i_netdb=''
906 i_neterrno=''
907 i_netinettcp=''
908 i_niin=''
909 i_sysin=''
910 i_poll=''
911 i_prot=''
912 i_pthread=''
913 d_pwage=''
914 d_pwchange=''
915 d_pwclass=''
916 d_pwcomment=''
917 d_pwexpire=''
918 d_pwgecos=''
919 d_pwpasswd=''
920 d_pwquota=''
921 i_pwd=''
922 i_sfio=''
923 i_shadow=''
924 i_socks=''
925 i_stddef=''
926 i_stdlib=''
927 i_string=''
928 strings=''
929 i_sunmath=''
930 i_sysaccess=''
931 i_sysdir=''
932 i_sysfile=''
933 d_voidtty=''
934 i_bsdioctl=''
935 i_sysfilio=''
936 i_sysioctl=''
937 i_syssockio=''
938 i_syslog=''
939 i_sysmman=''
940 i_sysmode=''
941 i_sysmount=''
942 i_sysndir=''
943 i_sysparam=''
944 i_syspoll=''
945 i_sysresrc=''
946 i_syssecrt=''
947 i_sysselct=''
948 i_sysstat=''
949 i_sysstatfs=''
950 i_sysstatvfs=''
951 i_systimes=''
952 i_systypes=''
953 i_sysuio=''
954 i_sysun=''
955 i_sysutsname=''
956 i_sysvfs=''
957 i_syswait=''
958 i_sgtty=''
959 i_termio=''
960 i_termios=''
961 d_tm_tm_gmtoff=''
962 d_tm_tm_zone=''
963 i_systime=''
964 i_systimek=''
965 i_time=''
966 timeincl=''
967 i_unistd=''
968 i_ustat=''
969 i_utime=''
970 i_values=''
971 i_stdarg=''
972 i_varargs=''
973 i_varhdr=''
974 i_vfork=''
975 d_inc_version_list=''
976 inc_version_list=''
977 inc_version_list_init=''
978 installprefix=''
979 installprefixexp=''
980 installstyle=''
981 installusrbinperl=''
982 intsize=''
983 longsize=''
984 shortsize=''
985 issymlink=''
986 libc=''
987 ldlibpthname=''
988 libperl=''
989 shrpenv=''
990 useshrplib=''
991 glibpth=''
992 libpth=''
993 loclibpth=''
994 plibpth=''
995 xlibpth=''
996 ignore_versioned_solibs=''
997 libs=''
998 libsdirs=''
999 libsfiles=''
1000 libsfound=''
1001 libspath=''
1002 lns=''
1003 d_PRIEUldbl=''
1004 d_PRIFUldbl=''
1005 d_PRIGUldbl=''
1006 d_PRIeldbl=''
1007 d_PRIfldbl=''
1008 d_PRIgldbl=''
1009 d_SCNfldbl=''
1010 sPRIEUldbl=''
1011 sPRIFUldbl=''
1012 sPRIGUldbl=''
1013 sPRIeldbl=''
1014 sPRIfldbl=''
1015 sPRIgldbl=''
1016 sSCNfldbl=''
1017 lseeksize=''
1018 lseektype=''
1019 mad=''
1020 madlyh=''
1021 madlyobj=''
1022 madlysrc=''
1023 make_set_make=''
1024 d_mymalloc=''
1025 freetype=''
1026 mallocobj=''
1027 mallocsrc=''
1028 malloctype=''
1029 usemallocwrap=''
1030 usemymalloc=''
1031 installman1dir=''
1032 man1dir=''
1033 man1direxp=''
1034 man1ext=''
1035 installman3dir=''
1036 man3dir=''
1037 man3direxp=''
1038 man3ext=''
1039 modetype=''
1040 multiarch=''
1041 mydomain=''
1042 myhostname=''
1043 phostname=''
1044 c=''
1045 n=''
1046 d_eofnblk=''
1047 eagain=''
1048 o_nonblock=''
1049 rd_nodata=''
1050 need_va_copy=''
1051 netdb_hlen_type=''
1052 netdb_host_type=''
1053 netdb_name_type=''
1054 netdb_net_type=''
1055 groupcat=''
1056 hostcat=''
1057 passcat=''
1058 orderlib=''
1059 ranlib=''
1060 d_perl_otherlibdirs=''
1061 otherlibdirs=''
1062 package=''
1063 spackage=''
1064 pager=''
1065 api_revision=''
1066 api_subversion=''
1067 api_version=''
1068 api_versionstring=''
1069 patchlevel=''
1070 perl_patchlevel=''
1071 revision=''
1072 subversion=''
1073 version=''
1074 version_patchlevel_string=''
1075 perl5=''
1076 perladmin=''
1077 perlpath=''
1078 d_nv_preserves_uv=''
1079 d_nv_zero_is_allbits_zero=''
1080 i16size=''
1081 i16type=''
1082 i32size=''
1083 i32type=''
1084 i64size=''
1085 i64type=''
1086 i8size=''
1087 i8type=''
1088 ivsize=''
1089 ivtype=''
1090 nv_overflows_integers_at=''
1091 nv_preserves_uv_bits=''
1092 nvsize=''
1093 nvtype=''
1094 u16size=''
1095 u16type=''
1096 u32size=''
1097 u32type=''
1098 u64size=''
1099 u64type=''
1100 u8size=''
1101 u8type=''
1102 uvsize=''
1103 uvtype=''
1104 ivdformat=''
1105 nvEUformat=''
1106 nvFUformat=''
1107 nvGUformat=''
1108 nveformat=''
1109 nvfformat=''
1110 nvgformat=''
1111 uvXUformat=''
1112 uvoformat=''
1113 uvuformat=''
1114 uvxformat=''
1115 pidtype=''
1116 prefix=''
1117 prefixexp=''
1118 installprivlib=''
1119 privlib=''
1120 privlibexp=''
1121 prototype=''
1122 ptrsize=''
1123 d_PRIXU64=''
1124 d_PRId64=''
1125 d_PRIi64=''
1126 d_PRIo64=''
1127 d_PRIu64=''
1128 d_PRIx64=''
1129 sPRIXU64=''
1130 sPRId64=''
1131 sPRIi64=''
1132 sPRIo64=''
1133 sPRIu64=''
1134 sPRIx64=''
1135 d_quad=''
1136 quadkind=''
1137 quadtype=''
1138 uquadtype=''
1139 drand01=''
1140 randbits=''
1141 randfunc=''
1142 randseedtype=''
1143 seedfunc=''
1144 installscript=''
1145 scriptdir=''
1146 scriptdirexp=''
1147 selectminbits=''
1148 selecttype=''
1149 sh=''
1150 sig_count=''
1151 sig_name=''
1152 sig_name_init=''
1153 sig_num=''
1154 sig_num_init=''
1155 sig_size=''
1156 d_sitearch=''
1157 installsitearch=''
1158 sitearch=''
1159 sitearchexp=''
1160 installsitebin=''
1161 sitebin=''
1162 sitebinexp=''
1163 installsitehtml1dir=''
1164 sitehtml1dir=''
1165 sitehtml1direxp=''
1166 installsitehtml3dir=''
1167 sitehtml3dir=''
1168 sitehtml3direxp=''
1169 installsitelib=''
1170 sitelib=''
1171 sitelib_stem=''
1172 sitelibexp=''
1173 installsiteman1dir=''
1174 siteman1dir=''
1175 siteman1direxp=''
1176 installsiteman3dir=''
1177 siteman3dir=''
1178 siteman3direxp=''
1179 siteprefix=''
1180 siteprefixexp=''
1181 installsitescript=''
1182 sitescript=''
1183 sitescriptexp=''
1184 sizesize=''
1185 sizetype=''
1186 so=''
1187 socksizetype=''
1188 sharpbang=''
1189 shsharp=''
1190 spitshell=''
1191 src=''
1192 ssizetype=''
1193 startperl=''
1194 startsh=''
1195 stdchar=''
1196 d_stdio_stream_array=''
1197 stdio_stream_array=''
1198 sysman=''
1199 sGMTIME_max=''
1200 sGMTIME_min=''
1201 sLOCALTIME_max=''
1202 sLOCALTIME_min=''
1203 trnl=''
1204 uidformat=''
1205 uidsign=''
1206 uidsize=''
1207 uidtype=''
1208 archname64=''
1209 use64bitall=''
1210 use64bitint=''
1211 dtrace=''
1212 usedtrace=''
1213 usefaststdio=''
1214 ccflags_uselargefiles=''
1215 ldflags_uselargefiles=''
1216 libswanted_uselargefiles=''
1217 uselargefiles=''
1218 uselongdouble=''
1219 usemorebits=''
1220 usemultiplicity=''
1221 nm_opt=''
1222 nm_so_opt=''
1223 runnm=''
1224 usenm=''
1225 useperlio=''
1226 usesocks=''
1227 d_oldpthreads=''
1228 use5005threads=''
1229 useithreads=''
1230 usereentrant=''
1231 usethreads=''
1232 incpath=''
1233 mips_type=''
1234 usrinc=''
1235 vaproto=''
1236 d_vendorarch=''
1237 installvendorarch=''
1238 vendorarch=''
1239 vendorarchexp=''
1240 d_vendorbin=''
1241 installvendorbin=''
1242 vendorbin=''
1243 vendorbinexp=''
1244 installvendorhtml1dir=''
1245 vendorhtml1dir=''
1246 vendorhtml1direxp=''
1247 installvendorhtml3dir=''
1248 vendorhtml3dir=''
1249 vendorhtml3direxp=''
1250 d_vendorlib=''
1251 installvendorlib=''
1252 vendorlib=''
1253 vendorlib_stem=''
1254 vendorlibexp=''
1255 installvendorman1dir=''
1256 vendorman1dir=''
1257 vendorman1direxp=''
1258 installvendorman3dir=''
1259 vendorman3dir=''
1260 vendorman3direxp=''
1261 usevendorprefix=''
1262 vendorprefix=''
1263 vendorprefixexp=''
1264 d_vendorscript=''
1265 installvendorscript=''
1266 vendorscript=''
1267 vendorscriptexp=''
1268 versiononly=''
1269 defvoidused=''
1270 voidflags=''
1271 yacc=''
1272 yaccflags=''
1273 CONFIG=''
1274
1275 : Detect odd OSs
1276 define='define'
1277 undef='undef'
1278 smallmach='pdp11 i8086 z8000 i80286 iAPX286'
1279 rmlist=''
1280
1281 : We must find out about Eunice early
1282 eunicefix=':'
1283 if test -f /etc/unixtovms; then
1284         eunicefix=/etc/unixtovms
1285 fi
1286 if test -f /etc/unixtovms.exe; then
1287         eunicefix=/etc/unixtovms.exe
1288 fi
1289
1290 : Set executable suffix now -- needed before hints available
1291 if test -f "/libs/version.library"; then
1292 : Amiga OS
1293     _exe=""
1294 elif test -f "/system/gnu_library/bin/ar.pm"; then
1295 : Stratus VOS
1296     _exe=".pm"
1297 elif test -n "$DJGPP"; then
1298 : DOS DJGPP
1299     _exe=".exe"
1300 elif test -d c:/. -o -n "$is_os2" ; then
1301 : OS/2 or cygwin
1302     _exe=".exe"
1303 fi
1304
1305 groupstype=''
1306 i_whoami=''
1307 : Trailing extension.  Override this in a hint file, if needed.
1308 : Extra object files, if any, needed on this platform.
1309 archobjs=''
1310 archname=''
1311 libnames=''
1312 : change the next line if compiling for Xenix/286 on Xenix/386
1313 xlibpth='/usr/lib/386 /lib/386'
1314 : Possible local library directories to search.
1315 loclibpth="/usr/local/lib /opt/local/lib /usr/gnu/lib"
1316 loclibpth="$loclibpth /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib"
1317
1318 : general looking path for locating libraries
1319 glibpth="/lib /usr/lib $xlibpth"
1320 glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/local/lib"
1321 test -f /usr/shlib/libc.so && glibpth="/usr/shlib $glibpth"
1322 test -f /shlib/libc.so     && glibpth="/shlib $glibpth"
1323 test -d /usr/lib64         && glibpth="$glibpth /lib64 /usr/lib64 /usr/local/lib64"
1324
1325 : Private path used by Configure to find libraries.  Its value
1326 : is prepended to libpth. This variable takes care of special
1327 : machines, like the mips.  Usually, it should be empty.
1328 plibpth=''
1329
1330 : default library list
1331 libswanted=''
1332 : some systems want to use only the non-versioned libso:s
1333 ignore_versioned_solibs=''
1334 : set usethreads on the Configure command line to enable threads.
1335 usereentrant='undef'
1336 : full support for void wanted by default
1337 defvoidused=15
1338
1339 : Possible local include directories to search.
1340 : Set locincpth to "" in a hint file to defeat local include searches.
1341 locincpth="/usr/local/include /opt/local/include /usr/gnu/include"
1342 locincpth="$locincpth /opt/gnu/include /usr/GNU/include /opt/GNU/include"
1343 :
1344 : no include file wanted by default
1345 inclwanted=''
1346
1347 : Enable -DEBUGGING and -DDEBUGGING from the command line
1348 EBUGGING=''
1349 DEBUGGING=old
1350
1351 ccname=''
1352 ccversion=''
1353 perllibs=''
1354 : set useposix=false in your hint file to disable the POSIX extension.
1355 useposix=true
1356 : set useopcode=false in your hint file to disable the Opcode extension.
1357 useopcode=true
1358 archname64=''
1359 ccflags_uselargefiles=''
1360 ldflags_uselargefiles=''
1361 libswanted_uselargefiles=''
1362 : set usemultiplicity on the Configure command line to enable multiplicity.
1363 : set usesocks on the Configure command line to enable socks.
1364 : List of libraries we want.
1365 : If anyone needs extra -lxxx, put those in a hint file.
1366 libswanted="sfio socket bind inet nsl nm ndbm gdbm dbm db malloc dl dld ld sun"
1367 libswanted="$libswanted m crypt sec util c cposix posix ucb bsd BSD"
1368 : We probably want to search /usr/shlib before most other libraries.
1369 : This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist.
1370 glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'`
1371 glibpth="/usr/shlib $glibpth"
1372 : Do not use vfork unless overridden by a hint file.
1373 usevfork=false
1374
1375 : Find the basic shell for Bourne shell scripts
1376 case "$sh" in
1377 '')
1378         case "$SYSTYPE" in
1379         *bsd*|sys5*) xxx="/$SYSTYPE/bin/sh";;
1380         *) xxx='/bin/sh';;
1381         esac
1382         if test -f "$xxx"; then
1383                 sh="$xxx"
1384         else
1385                 : Build up a list and do a single loop so we can 'break' out.
1386                 pth=`echo $PATH | sed -e "s/$p_/ /g"`
1387                 for xxx in sh bash ksh pdksh ash; do
1388                         for p in $pth; do
1389                                 try="$try ${p}/${xxx}"
1390                         done
1391                 done
1392                 for xxx in $try; do
1393                         if test -f "$xxx"; then
1394                                 sh="$xxx";
1395                                 break
1396                         elif test "X$_exe" != X -a -f "$xxx$_exe"; then
1397                                 sh="$xxx";
1398                                 break
1399                         elif test -f "$xxx.exe"; then
1400                                 sh="$xxx";
1401                                 break
1402                         fi
1403                 done
1404         fi
1405         ;;
1406 esac
1407
1408 case "$sh" in
1409 '')     cat >&2 <<EOM
1410 $me:  Fatal Error:  I can't find a Bourne Shell anywhere.  
1411
1412 Usually it's in /bin/sh.  How did you even get this far?
1413 Please contact me (Perl Maintainers) at perlbug@perl.org and 
1414 we'll try to straighten this all out.
1415 EOM
1416         exit 1
1417         ;;
1418 esac
1419
1420 : see if sh knows # comments
1421 if `$sh -c '#' >/dev/null 2>&1`; then
1422         shsharp=true
1423         spitshell=cat
1424         xcat=/bin/cat
1425         test -f $xcat$_exe || xcat=/usr/bin/cat
1426         if test ! -f $xcat$_exe; then
1427                 for p in `echo $PATH | sed -e "s/$p_/ /g"` $paths; do
1428                         if test -f $p/cat$_exe; then
1429                                 xcat=$p/cat
1430                                 break
1431                         fi
1432                 done
1433                 if test ! -f $xcat$_exe; then
1434                         echo "Can't find cat anywhere!"
1435                         exit 1
1436                 fi
1437         fi
1438         echo "#!$xcat" >sharp
1439         $eunicefix sharp
1440         chmod +x sharp
1441         ./sharp > today 2>/dev/null
1442         if test -s today; then
1443                 sharpbang='#!'
1444         else
1445                 echo "#! $xcat" > sharp
1446                 $eunicefix sharp
1447                 chmod +x sharp
1448                 ./sharp > today 2>/dev/null
1449                 if test -s today; then
1450                         sharpbang='#! '
1451                 else
1452                         sharpbang=': use '
1453                 fi
1454         fi
1455 else
1456         echo " "
1457         echo "Your $sh doesn't grok # comments--I will strip them later on."
1458         shsharp=false
1459         cd ..
1460         echo "exec grep -v '^[  ]*#'" >spitshell
1461         chmod +x spitshell
1462         $eunicefix spitshell
1463         spitshell=`pwd`/spitshell
1464         cd UU
1465         echo "I presume that if # doesn't work, #! won't work either!"
1466         sharpbang=': use '
1467 fi
1468 rm -f sharp today
1469
1470 : figure out how to guarantee sh startup
1471 case "$startsh" in
1472 '') startsh=${sharpbang}${sh} ;;
1473 *)
1474 esac
1475 cat >sharp <<EOSS
1476 $startsh
1477 set abc
1478 test "$?abc" != 1
1479 EOSS
1480
1481 chmod +x sharp
1482 $eunicefix sharp
1483 if ./sharp; then
1484         : echo "Yup, it does."
1485 else
1486         echo "Hmm... '$startsh' does not guarantee sh startup..."
1487         echo "You may have to fix up the shell scripts to make sure $sh runs them."
1488 fi
1489 rm -f sharp
1490
1491 : Save command line options in file UU/cmdline.opt for later use in
1492 : generating config.sh.
1493 cat > cmdline.opt <<EOSH
1494 : Configure command line arguments.
1495 config_arg0='$0'
1496 config_args='$*'
1497 config_argc=$#
1498 EOSH
1499 argn=1
1500 args_exp=''
1501 args_sep=''
1502 for arg in "$@"; do
1503         cat >>cmdline.opt <<EOSH
1504 config_arg$argn='$arg'
1505 EOSH
1506         cat <<EOC | sed -e "s/'/'"'"'"'"'"'"'/g" > cmdl.opt
1507 $arg
1508 EOC
1509         arg_exp=`cat cmdl.opt`
1510         args_exp="$args_exp$args_sep'$arg_exp'"
1511         argn=`expr $argn + 1`
1512         args_sep=' '
1513 done
1514 rm -f cmdl.opt
1515
1516 : produce awk script to parse command line options
1517 cat >options.awk <<'EOF'
1518 BEGIN {
1519         optstr = "A:dD:eEf:hKOrsSU:V";  # getopt-style specification
1520
1521         len = length(optstr);
1522         for (i = 1; i <= len; i++) {
1523                 c = substr(optstr, i, 1);
1524                 if (i < len) a = substr(optstr, i + 1, 1); else a = "";
1525                 if (a == ":") {
1526                         arg[c] = 1;
1527                         i++;
1528                 }
1529                 opt[c] = 1;
1530         }
1531 }
1532 {
1533         expect = 0;
1534         str = $0;
1535         if (substr(str, 1, 1) != "-") {
1536                 printf("'%s'\n", str);
1537                 next;
1538         }
1539         len = length($0);
1540         for (i = 2; i <= len; i++) {
1541                 c = substr(str, i, 1);
1542                 if (!opt[c]) {
1543                         printf("-%s\n", substr(str, i));
1544                         next;
1545                 }
1546                 printf("-%s\n", c);
1547                 if (arg[c]) {
1548                         if (i < len)
1549                                 printf("'%s'\n", substr(str, i + 1));
1550                         else
1551                                 expect = 1;
1552                         next;
1553                 }
1554         }
1555 }
1556 END {
1557         if (expect)
1558                 print "?";
1559 }
1560 EOF
1561
1562 : process the command line options
1563 set X `for arg in "$@"; do echo "X$arg"; done |
1564         sed -e s/X// | awk -f options.awk`
1565 eval "set $*"
1566 shift
1567 rm -f options.awk
1568
1569 : set up default values
1570 fastread=''
1571 reuseval=false
1572 config_sh=''
1573 alldone=''
1574 error=''
1575 silent=''
1576 extractsh=''
1577 override=''
1578 knowitall=''
1579 rm -f optdef.sh posthint.sh
1580 cat >optdef.sh <<EOS
1581 $startsh
1582 EOS
1583
1584
1585 : option parsing
1586 while test $# -gt 0; do
1587         case "$1" in
1588         -d) shift; fastread=yes;;
1589         -e) shift; alldone=cont;;
1590         -f)
1591                 shift
1592                 cd ..
1593                 if test -r "$1"; then
1594                         config_sh="$1"
1595                 else
1596                         echo "$me: cannot read config file $1." >&2
1597                         error=true
1598                 fi
1599                 cd UU
1600                 shift;;
1601         --help|\
1602         -h) shift; error=true;;
1603         -r) shift; reuseval=true;;
1604         -s) shift; silent=true; realsilent=true;;
1605         -E) shift; alldone=exit;;
1606         -K) shift; knowitall=true;;
1607         -O) shift; override=true;;
1608         -S) shift; silent=true; extractsh=true;;
1609         -D)
1610                 shift
1611                 case "$1" in
1612                 *=)
1613                         echo "$me: use '-U symbol=', not '-D symbol='." >&2
1614                         echo "$me: ignoring -D $1" >&2
1615                         ;;
1616                 *=*) echo "$1" | \
1617                                 sed -e "s/'/'\"'\"'/g" -e "s/=\(.*\)/='\1'/" >> optdef.sh;;
1618                 *) echo "$1='define'" >> optdef.sh;;
1619                 esac
1620                 shift
1621                 ;;
1622         -U)
1623                 shift
1624                 case "$1" in
1625                 *=) echo "$1" >> optdef.sh;;
1626                 *=*)
1627                         echo "$me: use '-D symbol=val', not '-U symbol=val'." >&2
1628                         echo "$me: ignoring -U $1" >&2
1629                         ;;
1630                 *) echo "$1='undef'" >> optdef.sh;;
1631                 esac
1632                 shift
1633                 ;;
1634         -A)
1635             shift
1636             xxx=''
1637             yyy="$1"
1638             zzz=''
1639             uuu=undef
1640             case "$yyy" in
1641             *=*) zzz=`echo "$yyy"|sed 's!=.*!!'`
1642                  case "$zzz" in
1643                  *:*) zzz='' ;;
1644                  *)   xxx=append
1645                       zzz=" "`echo "$yyy"|sed 's!^[^=]*=!!'`
1646                       yyy=`echo "$yyy"|sed 's!=.*!!'` ;;
1647                  esac
1648                  ;;
1649             esac
1650             case "$xxx" in
1651             '')  case "$yyy" in
1652                  *:*) xxx=`echo "$yyy"|sed 's!:.*!!'`
1653                       yyy=`echo "$yyy"|sed 's!^[^:]*:!!'`
1654                       zzz=`echo "$yyy"|sed 's!^[^=]*=!!'`
1655                       yyy=`echo "$yyy"|sed 's!=.*!!'` ;;
1656                  *)   xxx=`echo "$yyy"|sed 's!:.*!!'`
1657                       yyy=`echo "$yyy"|sed 's!^[^:]*:!!'` ;;
1658                  esac
1659                  ;;
1660             esac
1661             case "$xxx" in
1662             append)
1663                 echo "$yyy=\"\${$yyy}$zzz\""    >> posthint.sh ;;
1664             clear)
1665                 echo "$yyy=''"                  >> posthint.sh ;;
1666             define)
1667                 case "$zzz" in
1668                 '') zzz=define ;;
1669                 esac
1670                 echo "$yyy='$zzz'"              >> posthint.sh ;;
1671             eval)
1672                 echo "eval \"$yyy=$zzz\""       >> posthint.sh ;;
1673             prepend)
1674                 echo "$yyy=\"$zzz\${$yyy}\""    >> posthint.sh ;;
1675             undef)
1676                 case "$zzz" in
1677                 '') zzz="$uuu" ;;
1678                 esac
1679                 echo "$yyy=$zzz"                >> posthint.sh ;;
1680             *)  echo "$me: unknown -A command '$xxx', ignoring -A $1" >&2 ;;
1681             esac
1682             shift
1683             ;;
1684         -V) echo "$me generated by metaconfig 3.5 PL0." >&2
1685             exit 0;;
1686         --) break;;
1687         -*) echo "$me: unknown option $1" >&2; shift; error=true;;
1688         *) break;;
1689         esac
1690 done
1691
1692 case "$error" in
1693 true)
1694         cat >&2 <<EOM
1695 Usage: $me [-dehrsEKOSV] [-f config.sh] [-D symbol] [-D symbol=value]
1696                  [-U symbol] [-U symbol=] [-A command:symbol...]
1697   -d : use defaults for all answers.
1698   -e : go on without questioning past the production of config.sh.
1699   -f : specify an alternate default configuration file.
1700   -h : print this help message and exit (with an error status).
1701   -r : reuse C symbols value if possible (skips costly nm extraction).
1702   -s : silent mode, only echoes questions and essential information.
1703   -D : define symbol to have some value:
1704          -D symbol         symbol gets the value 'define'
1705          -D symbol=value   symbol gets the value 'value'
1706        common used examples (see INSTALL for more info):
1707          -Duse64bitint            use 64bit integers
1708          -Duse64bitall            use 64bit integers and pointers
1709          -Dusethreads             use thread support
1710          -Dinc_version_list=none  do not include older perl trees in @INC
1711          -DEBUGGING=none          DEBUGGING options
1712          -Dcc=gcc                 choose your compiler
1713          -Dprefix=/opt/perl5      choose your destination
1714   -E : stop at the end of questions, after having produced config.sh.
1715   -K : do not use unless you know what you are doing.
1716   -O : let -D and -U override definitions from loaded configuration file.
1717   -S : perform variable substitutions on all .SH files (can mix with -f)
1718   -U : undefine symbol:
1719          -U symbol    symbol gets the value 'undef'
1720          -U symbol=   symbol gets completely empty
1721        e.g.:  -Uversiononly
1722   -A : manipulate symbol after the platform specific hints have been applied:
1723          -A append:symbol=value   append value to symbol
1724          -A symbol=value          like append:, but with a separating space
1725          -A define:symbol=value   define symbol to have value
1726          -A clear:symbol          define symbol to be ''
1727          -A define:symbol         define symbol to be 'define'
1728          -A eval:symbol=value     define symbol to be eval of value
1729          -A prepend:symbol=value  prepend value to symbol
1730          -A undef:symbol          define symbol to be 'undef'
1731          -A undef:symbol=         define symbol to be ''
1732        e.g.:  -A prepend:libswanted='cl pthread '
1733               -A ccflags=-DSOME_MACRO
1734   -V : print version number and exit (with a zero status).
1735 EOM
1736         exit 1
1737         ;;
1738 esac
1739
1740 : Sanity checks
1741 case "$fastread$alldone" in
1742 yescont|yesexit) ;;
1743 *)
1744         case "$extractsh" in
1745         true) ;;
1746         *)
1747                 if test ! -t 0; then
1748                         echo "Say 'sh Configure', not 'sh <Configure'"
1749                         exit 1
1750                 fi
1751                 ;;
1752         esac
1753         ;;
1754 esac
1755
1756 exec 4>&1
1757 case "$silent" in
1758 true) exec 1>/dev/null;;
1759 esac
1760
1761 : run the defines and the undefines, if any, but leave the file out there...
1762 touch optdef.sh
1763 . ./optdef.sh
1764 : create the posthint manipulation script and leave the file out there...
1765 touch posthint.sh
1766
1767 : set package name
1768 package='perl5'
1769 first=`echo $package | sed -e 's/^\(.\).*/\1/'`
1770 last=`echo $package | sed -e 's/^.\(.*\)/\1/'`
1771 case "`echo AbyZ | tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
1772 ABYZ) spackage=`echo $first | tr '[:lower:]' '[:upper:]'`$last;;
1773 *) spackage=`echo $first | tr '[a-z]' '[A-Z]'`$last;;
1774 esac
1775
1776 : Some greps do not return status, grrr.
1777 echo "grimblepritz" >grimble
1778 if grep blurfldyick grimble >/dev/null 2>&1 ; then
1779         contains=contains
1780 elif grep grimblepritz grimble >/dev/null 2>&1 ; then
1781         contains=grep
1782 else
1783         contains=contains
1784 fi
1785 rm -f grimble
1786 : the following should work in any shell
1787 case "$contains" in
1788 contains*)
1789         echo " "
1790         echo "AGH!  Grep doesn't return a status.  Attempting remedial action."
1791         cat >contains <<'EOSS'
1792 grep "$1" "$2" >.greptmp && cat .greptmp && test -s .greptmp
1793 EOSS
1794 chmod +x contains
1795 esac
1796
1797 : Find the path to the source tree
1798 case "$src" in
1799 '') case "$0" in
1800     */*) src=`echo $0 | sed -e 's%/[^/][^/]*$%%'`
1801          case "$src" in
1802          /*)    ;;
1803          .)     ;;
1804          *)     src=`cd ../$src && pwd` ;;
1805          esac
1806          ;;
1807     *)   src='.';;
1808     esac;;
1809 esac
1810 case "$src" in
1811 '')     src=/
1812         rsrc=/
1813         ;;
1814 /*)     rsrc="$src";;
1815 *)      rsrc="../$src";;
1816 esac
1817 if test -f $rsrc/Configure && \
1818         $contains "^package='$package'\$" $rsrc/Configure >/dev/null 2>&1
1819 then
1820    : found it, so we are ok.
1821 else
1822         rsrc=''
1823         for src in . .. ../.. ../../.. ../../../..; do
1824                 if test -f ../$src/Configure && \
1825                         $contains "^package=$package$" ../$src/Configure >/dev/null 2>&1
1826                 then
1827                         rsrc=../$src
1828                         break
1829                 fi
1830         done
1831 fi
1832 case "$rsrc" in
1833 '')
1834         cat <<EOM >&4
1835
1836 Sorry, I can't seem to locate the source dir for $package.  Please start
1837 Configure with an explicit path -- i.e. /some/path/Configure.
1838
1839 EOM
1840         exit 1
1841         ;;
1842 ../.)   rsrc='..';;
1843 *)
1844         echo " "
1845         echo "Sources for $package found in \"$src\"." >&4
1846         ;;
1847 esac
1848
1849 : script used to extract .SH files with variable substitutions
1850 cat >extract <<'EOS'
1851 PERL_CONFIG_SH=true
1852 echo "Doing variable substitutions on .SH files..."
1853 if test -f MANIFEST; then
1854         set x `awk '{print $1}' < MANIFEST | grep '\.SH$'`
1855 else
1856         echo "(Looking for .SH files under the source directory.)"
1857         set x `(cd "$src"; find . -name "*.SH" -print)`
1858 fi
1859 shift
1860 case $# in
1861 0) set x `(cd "$src"; echo *.SH)`; shift;;
1862 esac
1863 if test ! -f "$src/$1"; then
1864         shift
1865 fi
1866 mkdir_p='
1867 name=$1;
1868 create="";
1869 while test $name; do
1870         if test ! -d "$name"; then
1871                 create="$name $create";
1872                 name=`echo $name | sed -e "s|^[^/]*$||"`;
1873                 name=`echo $name | sed -e "s|\(.*\)/.*|\1|"`;
1874         else
1875                 name="";
1876         fi;
1877 done;
1878 for file in $create; do
1879         mkdir $file;
1880 done
1881 '
1882 for file in $*; do
1883         case "$src" in
1884         ".")
1885                 case "$file" in
1886                 */*)
1887                         dir=`expr X$file : 'X\(.*\)/'`
1888                         file=`expr X$file : 'X.*/\(.*\)'`
1889                         (cd "$dir" && . ./$file)
1890                         ;;
1891                 *)
1892                         . ./$file
1893                         ;;
1894                 esac
1895                 ;;
1896         *)
1897                 case "$file" in
1898                 */*)
1899                         dir=`expr X$file : 'X\(.*\)/'`
1900                         file=`expr X$file : 'X.*/\(.*\)'`
1901                         (set x $dir; shift; eval $mkdir_p)
1902                         sh <"$src/$dir/$file"
1903                         ;;
1904                 *)
1905                         sh <"$src/$file"
1906                         ;;
1907                 esac
1908                 ;;
1909         esac
1910 done
1911 if test -f "$src/config_h.SH"; then
1912         if test ! -f config.h; then
1913         : oops, they left it out of MANIFEST, probably, so do it anyway.
1914         . "$src/config_h.SH"
1915         fi
1916 fi
1917 EOS
1918
1919 : extract files and exit if asked to do so
1920 case "$extractsh" in
1921 true)
1922         case "$realsilent" in
1923         true) ;;
1924         *) exec 1>&4;;
1925         esac
1926         case "$config_sh" in
1927         '') config_sh='config.sh';;
1928         esac
1929         echo " "
1930         echo "Fetching answers from $config_sh..."
1931         cd ..
1932         . $config_sh
1933         test "$override" && . ./optdef.sh
1934         echo " "
1935         . UU/extract
1936         rm -rf UU
1937         echo "Extraction done."
1938         exit 0
1939         ;;
1940 esac
1941
1942 : Eunice requires " " instead of "", can you believe it
1943 echo " "
1944 : Here we go...
1945 echo "Beginning of configuration questions for $package."
1946
1947 trap 'echo " "; test -d ../UU && rm -rf X $rmlist; exit 1' 1 2 3 15
1948
1949 : first determine how to suppress newline on echo command
1950 echo " "
1951 echo "Checking echo to see how to suppress newlines..."
1952 (echo "hi there\c" ; echo " ") >.echotmp
1953 if $contains c .echotmp >/dev/null 2>&1 ; then
1954         echo "...using -n."
1955         n='-n'
1956         c=''
1957 else
1958         cat <<'EOM'
1959 ...using \c
1960 EOM
1961         n=''
1962         c='\c'
1963 fi
1964 echo $n "The star should be here-->$c"
1965 echo '*'
1966 rm -f .echotmp
1967
1968 : Now test for existence of everything in MANIFEST
1969 echo " "
1970 if test -f "$rsrc/MANIFEST"; then
1971         echo "First let's make sure your kit is complete.  Checking..." >&4
1972         awk '$1 !~ /PACK[A-Z]+/ {print $1}' "$rsrc/MANIFEST" | \
1973                 (split -l 50 2>/dev/null || split -50)
1974         rm -f missing
1975         tmppwd=`pwd`
1976         for filelist in x??; do
1977                 (cd "$rsrc"; ls `cat "$tmppwd/$filelist"` \
1978                         >/dev/null 2>>"$tmppwd/missing")
1979         done
1980         if test -s missing; then
1981                 cat missing >&4
1982                 cat >&4 <<'EOM'
1983
1984 THIS PACKAGE SEEMS TO BE INCOMPLETE.
1985
1986 You have the option of continuing the configuration process, despite the
1987 distinct possibility that your kit is damaged, by typing 'y'es.  If you
1988 do, don't blame me if something goes wrong.  I advise you to type 'n'o
1989 and contact the author (perlbug@perl.org).
1990
1991 EOM
1992                 echo $n "Continue? [n] $c" >&4
1993                 read ans
1994                 case "$ans" in
1995                 y*)
1996                         echo "Continuing..." >&4
1997                         rm -f missing
1998                         ;;
1999                 *)
2000                         echo "ABORTING..." >&4
2001                         kill $$
2002                         ;;
2003                 esac
2004         else
2005                 echo "Looks good..."
2006         fi
2007 else
2008         echo "There is no MANIFEST file.  I hope your kit is complete !"
2009 fi
2010 rm -f missing x??
2011
2012 : Find the appropriate value for a newline for tr
2013 echo " "
2014 if test -n "$DJGPP"; then
2015        trnl='\012'
2016 fi
2017 if test X"$trnl" = X; then
2018         case "`echo foo|tr '\n' x 2>/dev/null`" in
2019         foox) trnl='\n' ;;
2020         esac
2021 fi
2022 if test X"$trnl" = X; then
2023         case "`echo foo|tr '\012' x 2>/dev/null`" in
2024         foox) trnl='\012' ;;
2025         esac
2026 fi
2027 if test X"$trnl" = X; then
2028        case "`echo foo|tr '\r\n' xy 2>/dev/null`" in
2029        fooxy) trnl='\n\r' ;;
2030        esac
2031 fi
2032 if test X"$trnl" = X; then
2033         cat <<EOM >&2
2034
2035 $me: Fatal Error: cannot figure out how to translate newlines with 'tr'.
2036
2037 EOM
2038         exit 1
2039 fi
2040
2041 : compute the number of columns on the terminal for proper question formatting
2042 case "$COLUMNS" in
2043 '') COLUMNS='80';;
2044 esac
2045
2046 : set up the echo used in my read
2047 myecho="case \"\$xxxm\" in
2048 '') echo $n \"\$rp $c\" >&4;;
2049 *) case \"\$rp\" in
2050         '') echo $n \"[\$xxxm] $c\";;
2051         *)
2052                 if test \`echo \"\$rp [\$xxxm]  \" | wc -c\` -ge $COLUMNS; then
2053                         echo \"\$rp\" >&4
2054                         echo $n \"[\$xxxm] $c\" >&4
2055                 else
2056                         echo $n \"\$rp [\$xxxm] $c\" >&4
2057                 fi
2058                 ;;
2059         esac;;
2060 esac"
2061
2062 : now set up to do reads with possible shell escape and default assignment
2063 cat <<EOSC >myread
2064 $startsh
2065 xxxm=\$dflt
2066 $myecho
2067 ans='!'
2068 case "\$fastread" in
2069 yes) case "\$dflt" in
2070         '') ;;
2071         *) ans='';
2072                 case "\$silent-\$rp" in
2073                 true-) ;;
2074                 *) echo " " >&4;;
2075                 esac;;
2076         esac;;
2077 *) case "\$silent" in
2078         true) case "\$rp" in
2079                 '') ans='';;
2080                 esac;;
2081         esac;;
2082 esac
2083 while expr "X\$ans" : "X!" >/dev/null; do
2084         read answ
2085         set x \$xxxm
2086         shift
2087         aok=''; eval "ans=\\"\$answ\\"" && aok=y
2088         case  "\$answ" in
2089         "!")
2090                 sh 1>&4
2091                 echo " "
2092                 $myecho
2093                 ;;
2094         !*)
2095                 set x \`expr "X\$ans" : "X!\(.*\)\$"\`
2096                 shift
2097                 sh 1>&4 -c "\$*"
2098                 echo " "
2099                 $myecho
2100                 ;;
2101         "\$ans")
2102                 case "\$ans" in
2103                 \\&*)
2104                         set x \`expr "X\$ans" : "X&\(.*\)\$"\`
2105                         shift
2106                         case "\$1" in
2107                         -d)
2108                                 fastread=yes
2109                                 echo "(OK, I'll run with -d after this question.)" >&4
2110                                 ;;
2111                         -*)
2112                                 echo "*** Sorry, \$1 not supported yet." >&4
2113                                 ;;
2114                         esac
2115                         $myecho
2116                         ans=!
2117                         ;;
2118                 esac;;
2119         *)
2120                 case "\$aok" in
2121                 y)
2122                         echo "*** Substitution done -- please confirm."
2123                         xxxm="\$ans"
2124                         ans=\`echo $n "\$ans$c" | tr '$trnl' ' '\`
2125                         xxxm="\$ans"
2126                         ans=!
2127                         ;;
2128                 *)
2129                         echo "*** Error -- try again."
2130                         ans=!
2131                         ;;
2132                 esac
2133                 $myecho
2134                 ;;
2135         esac
2136         case "\$ans\$xxxm\$nostick" in
2137         '')
2138                 ans=!
2139                 $myecho
2140                 ;;
2141         esac
2142 done
2143 case "\$ans" in
2144 '') ans="\$xxxm";;
2145 esac
2146 EOSC
2147
2148 : create .config dir to save info across Configure sessions
2149 test -d ../.config || mkdir ../.config
2150 cat >../.config/README <<EOF
2151 This directory created by Configure to save information that should
2152 persist across sessions for $package.
2153
2154 You may safely delete it if you wish.
2155 EOF
2156
2157 : See if we are using a devel version and want that
2158 xversion=`awk '/define[         ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
2159 case "$usedevel" in
2160 $define|true|[yY]*)
2161     usedevel="$define" ;;
2162 *) case "$xversion" in
2163    *[13579])
2164         cat >&4 <<EOH
2165 *** WHOA THERE!!! ***
2166
2167     This is an UNSTABLE DEVELOPMENT release.
2168     The version of this $package distribution is $xversion, that is, odd,
2169     (as opposed to even) and that signifies a development release.
2170     If you want a maintenance release, you want an even-numbered version.
2171
2172     Do ***NOT*** install this into production use.
2173     Data corruption and crashes are possible.
2174
2175     It is most seriously suggested that you do not continue any further
2176     unless you want to help in developing and debugging Perl.
2177
2178     If you *still* want to build perl, you can answer 'y' now,
2179     or pass -Dusedevel to Configure.
2180
2181 EOH
2182         rp='Do you really want to continue?'
2183         dflt='n'
2184         . ./myread
2185         case "$ans" in
2186         [yY]) echo >&4 "Okay, continuing."
2187               usedevel="$define" ;;
2188         *) echo >&4 "Okay, bye."
2189            exit 1
2190            ;;
2191         esac
2192         ;;
2193     esac
2194     usedevel="$undef"
2195     ;;
2196 esac
2197 case "$usedevel" in
2198 $define|true|[yY]*)
2199         case "$versiononly" in
2200         '') versiononly="$define" ;;
2201         esac
2202         case "$installusrbinperl" in
2203         '') installusrbinperl="$undef" ;;
2204         esac
2205         ;;
2206 esac
2207
2208 : general instructions
2209 needman=true
2210 firsttime=true
2211 user=`(logname) 2>/dev/null`
2212 case "$user" in
2213 '') user=`whoami 2>&1`;;
2214 esac
2215 if $contains "^$user\$" ../.config/instruct >/dev/null 2>&1; then
2216         firsttime=false
2217         echo " "
2218         rp='Would you like to see the instructions?'
2219         dflt=n
2220         . ./myread
2221         case "$ans" in
2222         [yY]*) ;;
2223         *) needman=false;;
2224         esac
2225 fi
2226 if $needman; then
2227         cat <<EOH
2228
2229 This installation shell script will examine your system and ask you questions
2230 to determine how the perl5 package should be installed. If you get
2231 stuck on a question, you may use a ! shell escape to start a subshell or
2232 execute a command.  Many of the questions will have default answers in square
2233 brackets; typing carriage return will give you the default.
2234
2235 On some of the questions which ask for file or directory names you are allowed
2236 to use the ~name construct to specify the login directory belonging to "name",
2237 even if you don't have a shell which knows about that.  Questions where this is
2238 allowed will be marked "(~name ok)".
2239
2240 EOH
2241         rp=''
2242         dflt='Type carriage return to continue'
2243         . ./myread
2244         cat <<'EOH'
2245
2246 The prompter used in this script allows you to use shell variables and
2247 backticks in your answers.  You may use $1, $2, etc...  to refer to the words
2248 in the default answer, as if the default line was a set of arguments given to a
2249 script shell.  This means you may also use $* to repeat the whole default line,
2250 so you do not have to re-type everything to add something to the default.
2251
2252 Everytime there is a substitution, you will have to confirm.  If there is an
2253 error (e.g. an unmatched backtick), the default answer will remain unchanged
2254 and you will be prompted again.
2255
2256 If you are in a hurry, you may run 'Configure -d'.  This will bypass nearly all
2257 the questions and use the computed defaults (or the previous answers if there
2258 was already a config.sh file). Type 'Configure -h' for a list of options.
2259 You may also start interactively and then answer '& -d' at any prompt to turn
2260 on the non-interactive behaviour for the remainder of the execution.
2261
2262 EOH
2263         . ./myread
2264         cat <<EOH
2265
2266 Much effort has been expended to ensure that this shell script will run on any
2267 Unix system.  If despite that it blows up on yours, your best bet is to edit
2268 Configure and run it again.  If you can't run Configure for some reason,
2269 you'll have to generate a config.sh file by hand.  Whatever problems you
2270 have, let me (perlbug@perl.org) know how I blew it.
2271
2272 This installation script affects things in two ways:
2273
2274 1) it may do direct variable substitutions on some of the files included
2275    in this kit.
2276 2) it builds a config.h file for inclusion in C programs.  You may edit
2277    any of these files as the need arises after running this script.
2278
2279 If you make a mistake on a question, there is no easy way to back up to it
2280 currently.  The easiest thing to do is to edit config.sh and rerun all the SH
2281 files.  Configure will offer to let you do this before it runs the SH files.
2282
2283 EOH
2284         dflt='Type carriage return to continue'
2285         . ./myread
2286         case "$firsttime" in
2287         true) echo $user >>../.config/instruct;;
2288         esac
2289 fi
2290
2291 : find out where common programs are
2292 echo " "
2293 echo "Locating common programs..." >&4
2294 cat <<EOSC >loc
2295 $startsh
2296 case \$# in
2297 0) exit 1;;
2298 esac
2299 thing=\$1
2300 shift
2301 dflt=\$1
2302 shift
2303 for dir in \$*; do
2304         case "\$thing" in
2305         .)
2306         if test -d \$dir/\$thing; then
2307                 echo \$dir
2308                 exit 0
2309         fi
2310         ;;
2311         *)
2312         for thisthing in \$dir/\$thing; do
2313                 : just loop through to pick last item
2314         done
2315         if test -f \$thisthing; then
2316                 echo \$thisthing
2317                 exit 0
2318         elif test "X$_exe" != X -a -f \$thisthing$_exe; then
2319                 echo \$thisthing
2320                 exit 0
2321         elif test -f \$dir/\$thing.exe; then
2322                 if test -n "$DJGPP"; then
2323                         echo \$dir/\$thing.exe
2324                 elif test "$eunicefix" != ":"; then
2325                         : on Eunice apparently
2326                         echo \$dir/\$thing
2327                 fi
2328                 exit 0
2329         fi
2330         ;;
2331         esac
2332 done
2333 echo \$dflt
2334 exit 1
2335 EOSC
2336 chmod +x loc
2337 $eunicefix loc
2338 loclist="
2339 awk
2340 cat
2341 chmod
2342 comm
2343 cp
2344 echo
2345 expr
2346 grep
2347 ls
2348 mkdir
2349 rm
2350 sed
2351 sort
2352 touch
2353 tr
2354 uniq
2355 "
2356 trylist="
2357 ar
2358 bison
2359 byacc
2360 cpp
2361 csh
2362 date
2363 egrep
2364 gmake
2365 gzip
2366 less
2367 ln
2368 make
2369 more
2370 nm
2371 nroff
2372 pg
2373 test
2374 uname
2375 zip
2376 "
2377 pth=`echo $PATH | sed -e "s/$p_/ /g"`
2378 pth="$pth /lib /usr/lib"
2379 for file in $loclist; do
2380         eval xxx=\$$file
2381         case "$xxx" in
2382         /*|?:[\\/]*)
2383                 if test -f "$xxx"; then
2384                         : ok
2385                 else
2386                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
2387                         xxx=`./loc $file $file $pth`
2388                 fi
2389                 ;;
2390         '') xxx=`./loc $file $file $pth`;;
2391         *) xxx=`./loc $xxx $xxx $pth`;;
2392         esac
2393         eval $file=$xxx$_exe
2394         eval _$file=$xxx
2395         case "$xxx" in
2396         /*)
2397                 echo $file is in $xxx.
2398                 ;;
2399         ?:[\\/]*)
2400                 echo $file is in $xxx.
2401                 ;;
2402         *)
2403                 echo "I don't know where '$file' is, and my life depends on it." >&4
2404                 echo "Go find a public domain implementation or fix your PATH setting!" >&4
2405                 exit 1
2406                 ;;
2407         esac
2408 done
2409 echo " "
2410 echo "Don't worry if any of the following aren't found..."
2411 say=offhand
2412 for file in $trylist; do
2413         eval xxx=\$$file
2414         case "$xxx" in
2415         /*|?:[\\/]*)
2416                 if test -f "$xxx"; then
2417                         : ok
2418                 else
2419                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
2420                         xxx=`./loc $file $file $pth`
2421                 fi
2422                 ;;
2423         '') xxx=`./loc $file $file $pth`;;
2424         *) xxx=`./loc $xxx $xxx $pth`;;
2425         esac
2426         eval $file=$xxx$_exe
2427         eval _$file=$xxx
2428         case "$xxx" in
2429         /*)
2430                 echo $file is in $xxx.
2431                 ;;
2432         ?:[\\/]*)
2433                 echo $file is in $xxx.
2434                 ;;
2435         *)
2436                 echo "I don't see $file out there, $say."
2437                 say=either
2438                 ;;
2439         esac
2440 done
2441 case "$egrep" in
2442 egrep)
2443         echo "Substituting grep for egrep."
2444         egrep=$grep
2445         _egrep=$grep
2446         ;;
2447 esac
2448 case "$less" in
2449 '')     ;;
2450 *)      if $less -R </dev/null >/dev/null; then
2451                echo "Substituting less -R for less."
2452                less="$less -R"
2453                _less=$less
2454         fi
2455         ;;
2456 esac
2457 case "$ln" in
2458 ln)
2459         echo "Substituting cp for ln."
2460         ln=$cp
2461         _ln=$cp
2462         ;;
2463 esac
2464 case "$make" in
2465 make)
2466         case "$gmake" in
2467         gmake)
2468         echo "I can't find make or gmake, and my life depends on it." >&4
2469         echo "Go find a public domain implementation or fix your PATH setting!" >&4
2470         exit 1
2471         ;;
2472         esac
2473         ;;
2474 esac
2475 case "$gmake" in
2476 gmake)  ;;
2477 *)      # We can't have osname yet.
2478         if test -f "/system/gnu_library/bin/ar.pm"; then # Stratus VOS
2479                 # Assume that gmake, if found, is definitely GNU make
2480                 # and prefer it over the system make.
2481                 echo "Substituting gmake for make."
2482                 make=$gmake
2483                 _make=$gmake
2484         fi
2485         ;;
2486 esac
2487 case "$test" in
2488 test)
2489         echo "Hopefully test is built into your sh."
2490         ;;
2491 *)
2492         if `sh -c "PATH= test true" >/dev/null 2>&1`; then
2493                 echo "Using the test built into your sh."
2494                 test=test
2495                 _test=test
2496         fi
2497         ;;
2498 esac
2499 case "$echo" in
2500 echo)
2501         echo "Hopefully echo is built into your sh."
2502         ;;
2503 '') ;;
2504 *)
2505         echo " "
2506 echo "Checking compatibility between $echo and builtin echo (if any)..." >&4
2507         $echo $n "hi there$c" >foo1
2508         echo $n "hi there$c" >foo2
2509         if cmp foo1 foo2 >/dev/null 2>&1; then
2510                 echo "They are compatible.  In fact, they may be identical."
2511         else
2512                 case "$n" in
2513                 '-n') n='' c='\c';;
2514                 *) n='-n' c='';;
2515                 esac
2516                 cat <<FOO
2517 They are not compatible!  You are probably running ksh on a non-USG system.
2518 I'll have to use $echo instead of the builtin, since Bourne shell doesn't
2519 have echo built in and we may have to run some Bourne shell scripts.  That
2520 means I'll have to use '$n$c' to suppress newlines now.  Life is ridiculous.
2521
2522 FOO
2523                 $echo $n "The star should be here-->$c"
2524                 $echo "*"
2525         fi
2526         $rm -f foo1 foo2
2527         ;;
2528 esac
2529
2530 # This question was auctioned at YAPC::Europe-2007 in Vienna
2531 # I never promised you could answer it. I only auctioned the question.
2532 cat <<FOO
2533 The following message is sponsored by
2534
2535   Dresden.pm<--The stars should be here.
2536
2537 Dear Perl user, system administrator or package
2538 maintainer, the Perl community sends greetings to
2539 you. Do you (emblematical) greet back [Y/n]? n
2540
2541 FOO
2542
2543 : Check what type of C compiler we use
2544 cat <<EOS >trygcc
2545 $startsh
2546 EOS
2547 cat <<'EOSC' >>trygcc
2548 case "$cc" in
2549 '') ;;
2550 *)  $rm -f try try.*
2551     $cat >try.c <<EOM
2552 int main(int argc, char *argv[]) {
2553   return 0;
2554 }
2555 EOM
2556     if $cc -o try $ccflags $ldflags try.c; then
2557        :
2558     else
2559         echo "Uh-oh, the C compiler '$cc' doesn't seem to be working." >&4
2560         despair=yes
2561         trygcc=yes
2562         case "$cc" in
2563         *gcc*) trygcc=no ;;
2564         esac
2565         # Skip this test because it gives a false match on output like:
2566         #    ./trygcc: line 23: cc: command not found
2567         # case "`$cc -v -c try.c 2>&1`" in
2568         # *gcc*) trygcc=no ;;
2569         # esac
2570         if $test X"$trygcc" = Xyes; then
2571             if gcc -o try -c try.c; then
2572                 echo " "
2573                 echo "You seem to have a working gcc, though." >&4
2574                 # Switching compilers may undo the work of hints files.
2575                 # The most common problem is -D_REENTRANT for threads.
2576                 # This heuristic catches that case, but gets false positives
2577                 # if -Dusethreads was not actually specified.  Better to
2578                 # bail out here with a useful message than fail 
2579                 # mysteriously later. Should we perhaps just try to
2580                 # re-invoke Configure -Dcc=gcc config_args ?
2581                 if $test -f usethreads.cbu; then
2582                         $cat >&4 <<EOM 
2583
2584 *** However, any setting of the C compiler flags (e.g. for thread support)
2585 *** will be lost.  It may be necessary for you to restart Configure and
2586 *** add -Dcc=gcc to your Configure command line.
2587
2588 EOM
2589                         rp="Would you like to go ahead and try gcc anyway?"
2590                         dflt=n
2591                 else
2592                         rp="Would you like to use it?"
2593                         dflt=y
2594                 fi
2595                 if $test -f myread; then
2596                     . ./myread
2597                 else
2598                     if $test -f UU/myread; then
2599                         . ./UU/myread
2600                     else
2601                         echo "Cannot find myread, sorry.  Aborting." >&2
2602                         exit 1
2603                     fi
2604                 fi  
2605                 case "$ans" in
2606                 [yY]*) cc=gcc; ccname=gcc; ccflags=''; despair=no;
2607                 esac
2608             fi
2609         fi
2610     fi
2611     $rm -f try try.*
2612     ;;
2613 esac
2614 EOSC
2615
2616 cat <<EOS >checkcc
2617 $startsh
2618 EOS
2619 cat <<'EOSC' >>checkcc
2620 case "$cc" in        
2621 '') ;;
2622 *)  $rm -f try try.*              
2623     $cat >try.c <<EOM
2624 int main(int argc, char *argv[]) {
2625   return 0;
2626 }
2627 EOM
2628     if $cc -o try $ccflags $ldflags try.c; then
2629        :
2630     else
2631         if $test X"$despair" = Xyes; then
2632            echo "Uh-oh, the C compiler '$cc' doesn't seem to be working." >&4
2633         fi
2634         $cat >&4 <<EOM         
2635 You need to find a working C compiler.
2636 Either (purchase and) install the C compiler supplied by your OS vendor,
2637 or for a free C compiler try http://gcc.gnu.org/
2638 I cannot continue any further, aborting.
2639 EOM
2640         exit 1
2641     fi
2642     $rm -f try try.*
2643     ;;
2644 esac
2645 EOSC
2646
2647 : determine whether symbolic links are supported
2648 echo " "
2649 $touch blurfl
2650 if $ln -s blurfl sym > /dev/null 2>&1 ; then
2651         echo "Symbolic links are supported." >&4
2652         lns="$ln -s"
2653 else
2654         echo "Symbolic links are NOT supported." >&4
2655         lns="$ln"
2656 fi
2657 $rm -f blurfl sym
2658
2659 : determine whether symbolic links are supported
2660 echo " "
2661 case "$lns" in
2662 *"ln"*" -s")
2663         echo "Checking how to test for symbolic links..." >&4
2664         $lns blurfl sym
2665         if $test "X$issymlink" = X; then
2666                 case "$newsh" in
2667                 '') sh     -c "PATH= test -h sym" >/dev/null 2>&1 ;;
2668                 *)  $newsh -c "PATH= test -h sym" >/dev/null 2>&1 ;;
2669                 esac
2670                 if test $? = 0; then
2671                         issymlink="test -h"
2672                 else
2673                         echo "Your builtin 'test -h' may be broken." >&4
2674                         case "$test" in
2675                         /*)     ;;
2676                         *)      pth=`echo $PATH | sed -e "s/$p_/ /g"`
2677                                 for p in $pth
2678                                 do
2679                                         if test -f "$p/$test"; then
2680                                                 test="$p/$test"
2681                                                 break
2682                                         fi
2683                                 done
2684                                 ;;
2685                         esac
2686                         case "$test" in
2687                         /*)
2688                                 echo "Trying external '$test -h'." >&4
2689                                 issymlink="$test -h"
2690                                 if $test ! -h sym >/dev/null 2>&1; then
2691                                         echo "External '$test -h' is broken, too." >&4
2692                                         issymlink=''
2693                                 fi
2694                                 ;;
2695                         *)      issymlink='' ;;
2696                         esac
2697                 fi              
2698         fi
2699         if $test "X$issymlink" = X; then
2700                 if $test -L sym 2>/dev/null; then
2701                         issymlink="$test -L"
2702                         echo "The builtin '$test -L' worked." >&4
2703                 fi
2704         fi
2705         if $test "X$issymlink" != X; then
2706                 echo "You can test for symbolic links with '$issymlink'." >&4
2707         else
2708                 echo "I do not know how you can test for symbolic links." >&4
2709         fi
2710         $rm -f blurfl sym
2711         ;;
2712 *)      echo "No symbolic links, so not testing for their testing..." >&4
2713         ;;
2714 esac
2715 echo " "
2716
2717 : Make symlinks util
2718 case "$mksymlinks" in
2719 $define|true|[yY]*)
2720         case "$src" in
2721         ''|'.') echo "Cannot create symlinks in the original directory." >&4
2722                 exit 1
2723                 ;;
2724         *)      case "$lns:$issymlink" in
2725                 *"ln"*" -s:"*"test -"?)
2726                         echo "Creating the symbolic links..." >&4
2727                         echo "(First creating the subdirectories...)" >&4
2728                         cd ..
2729                         awk '{print $1}' $src/MANIFEST | grep / | sed 's:/[^/]*$::' | sort -u | while true; do
2730                                 read directory
2731                                 test -z "$directory" && break
2732                                 mkdir -p $directory
2733                         done
2734                         # Sanity check 1.
2735                         if test ! -d t/base; then
2736                                 echo "Failed to create the subdirectories.  Aborting." >&4
2737                                 exit 1
2738                         fi
2739                         echo "(Then creating the symlinks...)" >&4
2740                         awk '{print $1}' $src/MANIFEST | while true; do
2741                                 read filename
2742                                 test -z "$filename" && break
2743                                 if test -f $filename; then
2744                                         if $issymlink $filename; then
2745                                                 rm -f $filename
2746                                         fi
2747                                 fi
2748                                 if test -f $filename; then
2749                                         echo "$filename already exists, not symlinking."
2750                                 else
2751                                         ln -s $src/$filename $filename
2752                                 fi
2753                         done
2754                         # Sanity check 2.
2755                         if test ! -f t/base/lex.t; then
2756                                 echo "Failed to create the symlinks (t/base/lex.t missing).  Aborting." >&4
2757                                 exit 1
2758                         fi
2759                         cd UU
2760                         ;;
2761                 *)      echo "(I cannot figure out how to do symbolic links, ignoring mksymlinks)." >&4
2762                         ;;
2763                 esac
2764                 ;;
2765         esac
2766         ;;
2767 esac
2768
2769 : Check for Cross-Compilation
2770 case "$usecrosscompile" in
2771 $define|true|[yY]*)
2772         $echo "Cross-compiling..."
2773         croak=''
2774         case "$cc" in
2775         *-*-gcc) # A cross-compiling gcc, probably.
2776             targetarch=`$echo $cc|$sed 's/-gcc$//'`
2777             ar=$targetarch-ar
2778             # leave out ld, choosing it is more complex
2779             nm=$targetarch-nm
2780             ranlib=$targetarch-ranlib
2781             $echo 'extern int foo;' > try.c
2782             set X `$cc -v -E try.c 2>&1 | $awk '/^#include </,/^End of search /'|$grep '/include'`
2783             shift
2784             if $test $# -gt 0; then
2785                 incpth="$incpth $*"
2786                 incpth="`$echo $incpth|$sed 's/^ //'`"
2787                 echo "Guessing incpth '$incpth'." >&4
2788                 for i in $*; do
2789                     j="`$echo $i|$sed 's,/include$,/lib,'`"
2790                     if $test -d $j; then
2791                         libpth="$libpth $j"
2792                     fi
2793                 done   
2794                 libpth="`$echo $libpth|$sed 's/^ //'`"
2795                 echo "Guessing libpth '$libpth'." >&4
2796             fi
2797             $rm -f try.c
2798             ;;
2799         esac
2800         case "$targetarch" in
2801         '') echo "Targetarch not defined." >&4; croak=y ;;
2802         *)  echo "Using targetarch $targetarch." >&4 ;;
2803         esac
2804         case "$incpth" in
2805         '') echo "Incpth not defined." >&4; croak=y ;;
2806         *)  echo "Using incpth '$incpth'." >&4 ;;
2807         esac
2808         case "$libpth" in
2809         '') echo "Libpth not defined." >&4; croak=y ;;
2810         *)  echo "Using libpth '$libpth'." >&4 ;;
2811         esac
2812         case "$usrinc" in
2813         '') for i in $incpth; do
2814                 if $test -f $i/errno.h -a -f $i/stdio.h -a -f $i/time.h; then
2815                     usrinc=$i
2816                     echo "Guessing usrinc $usrinc." >&4
2817                     break
2818                 fi
2819             done
2820             case "$usrinc" in
2821             '') echo "Usrinc not defined." >&4; croak=y ;;
2822             esac
2823             ;;
2824         *)  echo "Using usrinc $usrinc." >&4 ;;
2825         esac
2826         case "$targethost" in
2827         '') echo "Targethost not defined." >&4; croak=y ;;
2828         *)  echo "Using targethost $targethost." >&4
2829         esac
2830         locincpth=' '
2831         loclibpth=' '
2832         case "$croak" in
2833         y) echo "Cannot continue, aborting." >&4; exit 1 ;;
2834         esac
2835         case "$src" in
2836         /*) run=$src/Cross/run
2837             targetmkdir=$src/Cross/mkdir
2838             to=$src/Cross/to
2839             from=$src/Cross/from
2840             ;;
2841         *)  pwd=`$test -f ../Configure & cd ..; pwd`
2842             run=$pwd/Cross/run
2843             targetmkdir=$pwd/Cross/mkdir
2844             to=$pwd/Cross/to
2845             from=$pwd/Cross/from
2846             ;;
2847         esac
2848         case "$targetrun" in
2849         '') targetrun=ssh ;;
2850         esac
2851         case "$targetto" in
2852         '') targetto=scp ;;
2853         esac
2854         case "$targetfrom" in
2855         '') targetfrom=scp ;;
2856         esac
2857         run=$run-$targetrun
2858         to=$to-$targetto
2859         from=$from-$targetfrom
2860         case "$targetdir" in
2861         '')  targetdir=/tmp
2862              echo "Guessing targetdir $targetdir." >&4
2863              ;;
2864         esac
2865         case "$targetuser" in
2866         '')  targetuser=root
2867              echo "Guessing targetuser $targetuser." >&4
2868              ;;
2869         esac
2870         case "$targetfrom" in
2871         scp)    q=-q ;;
2872         *)      q='' ;;
2873         esac
2874         case "$targetrun" in
2875         ssh|rsh)
2876             cat >$run <<EOF
2877 #!/bin/sh
2878 case "\$1" in
2879 -cwd)
2880   shift
2881   cwd=\$1
2882   shift
2883   ;;
2884 esac
2885 case "\$cwd" in
2886 '') cwd=$targetdir ;;
2887 esac
2888 exe=\$1
2889 shift
2890 if $test ! -f \$exe.xok; then
2891   $to \$exe
2892   $touch \$exe.xok
2893 fi
2894 $targetrun -l $targetuser $targethost "cd \$cwd && ./\$exe \$@"
2895 EOF
2896             ;;
2897         *)  echo "Unknown targetrun '$targetrun'" >&4
2898             exit 1
2899             ;;
2900         esac
2901         case "$targetmkdir" in
2902         */Cross/mkdir)
2903             cat >$targetmkdir <<EOF
2904 #!/bin/sh
2905 $targetrun -l $targetuser $targethost "mkdir -p \$@"
2906 EOF
2907             $chmod a+rx $targetmkdir
2908             ;;
2909         *)  echo "Unknown targetmkdir '$targetmkdir'" >&4
2910             exit 1
2911             ;;
2912         esac
2913         case "$targetto" in
2914         scp|rcp)
2915             cat >$to <<EOF
2916 #!/bin/sh
2917 for f in \$@
2918 do
2919   case "\$f" in
2920   /*)
2921     $targetmkdir \`dirname \$f\`
2922     $targetto $q \$f $targetuser@$targethost:\$f            || exit 1
2923     ;;
2924   *)
2925     $targetmkdir $targetdir/\`dirname \$f\`
2926     $targetto $q \$f $targetuser@$targethost:$targetdir/\$f || exit 1
2927     ;;
2928   esac
2929 done
2930 exit 0
2931 EOF
2932             ;;
2933         cp) cat >$to <<EOF
2934 #!/bin/sh
2935 for f in \$@
2936 do
2937   case "\$f" in
2938   /*)
2939     $mkdir -p $targetdir/\`dirname \$f\`
2940     $cp \$f $targetdir/\$f || exit 1
2941     ;;
2942   *)
2943     $targetmkdir $targetdir/\`dirname \$f\`
2944     $cp \$f $targetdir/\$f || exit 1
2945     ;;
2946   esac
2947 done
2948 exit 0
2949 EOF
2950             ;;
2951         *)  echo "Unknown targetto '$targetto'" >&4
2952             exit 1
2953             ;;
2954         esac
2955         case "$targetfrom" in
2956         scp|rcp)
2957           cat >$from <<EOF
2958 #!/bin/sh
2959 for f in \$@
2960 do
2961   $rm -f \$f
2962   $targetfrom $q $targetuser@$targethost:$targetdir/\$f . || exit 1
2963 done
2964 exit 0
2965 EOF
2966             ;;
2967         cp) cat >$from <<EOF
2968 #!/bin/sh
2969 for f in \$@
2970 do
2971   $rm -f \$f
2972   cp $targetdir/\$f . || exit 1
2973 done
2974 exit 0
2975 EOF
2976             ;;
2977         *)  echo "Unknown targetfrom '$targetfrom'" >&4
2978             exit 1
2979             ;;
2980         esac
2981         if $test ! -f $run; then
2982             echo "Target 'run' script '$run' not found." >&4
2983         else
2984             $chmod a+rx $run
2985         fi
2986         if $test ! -f $to; then
2987             echo "Target 'to' script '$to' not found." >&4
2988         else
2989             $chmod a+rx $to
2990         fi
2991         if $test ! -f $from; then
2992             echo "Target 'from' script '$from' not found." >&4
2993         else
2994             $chmod a+rx $from
2995         fi
2996         if $test ! -f $run -o ! -f $to -o ! -f $from; then
2997             exit 1
2998         fi
2999         cat >&4 <<EOF
3000 Using '$run' for remote execution,
3001 and '$from' and '$to'
3002 for remote file transfer.
3003 EOF
3004         ;;
3005 *)      run=''
3006         to=:
3007         from=:
3008         usecrosscompile='undef'
3009         targetarch=''
3010         ;;
3011 esac
3012
3013 : see whether [:lower:] and [:upper:] are supported character classes
3014 echo " "
3015 case "`echo AbyZ | $tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
3016 ABYZ)
3017         echo "Good, your tr supports [:lower:] and [:upper:] to convert case." >&4
3018         up='[:upper:]'
3019         low='[:lower:]'
3020         ;;
3021 *)      # There is a discontinuity in EBCDIC between 'R' and 'S'
3022         # (0xd9 and 0xe2), therefore that is a nice testing point.
3023         if test "X$up" = X -o "X$low" = X; then
3024             case "`echo RS | $tr '[R-S]' '[r-s]' 2>/dev/null`" in
3025             rs) up='[A-Z]'
3026                 low='[a-z]'
3027                 ;;
3028             esac
3029         fi
3030         if test "X$up" = X -o "X$low" = X; then
3031             case "`echo RS | $tr R-S r-s 2>/dev/null`" in
3032             rs) up='A-Z'
3033                 low='a-z'
3034                 ;;
3035             esac
3036         fi
3037         if test "X$up" = X -o "X$low" = X; then
3038             case "`echo RS | od -x 2>/dev/null`" in
3039             *D9E2*|*d9e2*)
3040                 echo "Hey, this might be EBCDIC." >&4
3041                 if test "X$up" = X -o "X$low" = X; then
3042                     case "`echo RS | $tr '[A-IJ-RS-Z]' '[a-ij-rs-z]' 2>/dev/null`" in
3043                     rs) up='[A-IJ-RS-Z]'
3044                         low='[a-ij-rs-z]'
3045                         ;;
3046                     esac
3047                 fi
3048                 if test "X$up" = X -o "X$low" = X; then
3049                     case "`echo RS | $tr A-IJ-RS-Z a-ij-rs-z 2>/dev/null`" in
3050                     rs) up='A-IJ-RS-Z'
3051                         low='a-ij-rs-z'
3052                         ;;
3053                     esac
3054                 fi
3055                 ;;
3056             esac
3057         fi
3058 esac
3059 case "`echo RS | $tr \"$up\" \"$low\" 2>/dev/null`" in
3060 rs)
3061     echo "Using $up and $low to convert case." >&4
3062     ;;
3063 *)
3064     echo "I don't know how to translate letters from upper to lower case." >&4
3065     echo "Your tr is not acting any way I know of." >&4
3066     exit 1
3067     ;;
3068 esac
3069 : set up the translation script tr, must be called with ./tr of course
3070 cat >tr <<EOSC
3071 $startsh
3072 case "\$1\$2" in
3073 '[A-Z][a-z]') exec $tr '$up' '$low';;
3074 '[a-z][A-Z]') exec $tr '$low' '$up';;
3075 esac
3076 exec $tr "\$@"
3077 EOSC
3078 chmod +x tr
3079 $eunicefix tr
3080
3081 : Try to determine whether config.sh was made on this system
3082 case "$config_sh" in
3083 '')
3084 myuname=`$uname -a 2>/dev/null`
3085 $test -z "$myuname" && myuname=`hostname 2>/dev/null`
3086 # tr '[A-Z]' '[a-z]' would not work in EBCDIC
3087 # because the A-Z/a-z are not consecutive.
3088 myuname=`echo $myuname | $sed -e 's/^[^=]*=//' -e "s,['/],,g" | \
3089         ./tr '[A-Z]' '[a-z]' | $tr $trnl ' '`
3090 newmyuname="$myuname"
3091 dflt=n
3092 case "$knowitall" in
3093 '')
3094         if test -f ../config.sh; then
3095                 if $contains myuname= ../config.sh >/dev/null 2>&1; then
3096                         eval "`grep myuname= ../config.sh`"
3097                 fi
3098                 if test "X$myuname" = "X$newmyuname"; then
3099                         dflt=y
3100                 fi
3101         fi
3102         ;;
3103 *) dflt=y;;
3104 esac
3105
3106 : Get old answers from old config file if Configure was run on the
3107 : same system, otherwise use the hints.
3108 hint=default
3109 cd ..
3110 if test -f config.sh; then
3111         echo " "
3112         rp="I see a config.sh file.  Shall I use it to set the defaults?"
3113         . UU/myread
3114         case "$ans" in
3115         n*|N*) echo "OK, I'll ignore it."
3116                 mv config.sh config.sh.old
3117                 myuname="$newmyuname"
3118                 ;;
3119         *)  echo "Fetching default answers from your old config.sh file..." >&4
3120                 tmp_n="$n"
3121                 tmp_c="$c"
3122                 tmp_sh="$sh"
3123                 . ./config.sh
3124                 cp config.sh UU
3125                 n="$tmp_n"
3126                 c="$tmp_c"
3127                 : Older versions did not always set $sh.  Catch re-use of such
3128                 : an old config.sh.
3129                 case "$sh" in
3130                 '') sh="$tmp_sh" ;;
3131                 esac
3132                 hint=previous
3133                 ;;
3134         esac
3135 fi
3136 . ./UU/checkcc
3137 if test ! -f config.sh; then
3138         $cat <<EOM
3139
3140 First time through, eh?  I have some defaults handy for some systems
3141 that need some extra help getting the Configure answers right:
3142
3143 EOM
3144         (cd $src/hints; ls -C *.sh) | $sed 's/\.sh/   /g' >&4
3145         dflt=''
3146         : Half the following guesses are probably wrong... If you have better
3147         : tests or hints, please send them to perlbug@perl.org
3148         : The metaconfig authors would also appreciate a copy...
3149         $test -f /irix && osname=irix
3150         $test -f /xenix && osname=sco_xenix
3151         $test -f /dynix && osname=dynix
3152         $test -f /dnix && osname=dnix
3153         $test -f /lynx.os && osname=lynxos
3154         $test -f /unicos && osname=unicos && osvers=`$uname -r`
3155         $test -f /unicosmk && osname=unicosmk && osvers=`$uname -r`
3156         $test -f /unicosmk.ar && osname=unicosmk && osvers=`$uname -r`
3157         $test -f /bin/mips && /bin/mips && osname=mips
3158         $test -d /NextApps && set X `hostinfo | grep 'NeXT Mach.*:' | \
3159                 $sed -e 's/://' -e 's/\./_/'` && osname=next && osvers=$4
3160         $test -d /usr/apollo/bin && osname=apollo
3161         $test -f /etc/saf/_sactab && osname=svr4
3162         $test -d /usr/include/minix && osname=minix
3163         $test -f /system/gnu_library/bin/ar.pm && osname=vos
3164         if $test -d /MachTen -o -d /MachTen_Folder; then
3165                 osname=machten
3166                 if $test -x /sbin/version; then
3167                         osvers=`/sbin/version | $awk '{print $2}' |
3168                         $sed -e 's/[A-Za-z]$//'`
3169                 elif $test -x /usr/etc/version; then
3170                         osvers=`/usr/etc/version | $awk '{print $2}' |
3171                         $sed -e 's/[A-Za-z]$//'`
3172                 else
3173                         osvers="$2.$3"
3174                 fi
3175         fi
3176
3177         $test -f /sys/posix.dll &&
3178                 $test -f /usr/bin/what &&
3179                 set X `/usr/bin/what /sys/posix.dll` &&
3180                 $test "$3" = UWIN &&
3181                 osname=uwin &&
3182                 osvers="$5"
3183
3184         if $test -f $uname; then
3185                 set X $myuname
3186                 shift
3187
3188                 case "$5" in
3189                 fps*) osname=fps ;;
3190                 mips*)
3191                         case "$4" in
3192                         umips) osname=umips ;;
3193                         *) osname=mips ;;
3194                         esac;;
3195                 [23]100) osname=mips ;;
3196                 next*) osname=next ;;
3197                 i386*)
3198                         tmp=`/bin/uname -X 2>/dev/null|awk '/3\.2v[45]/{ print $(NF) }'`
3199                         if $test "$tmp" != "" -a "$3" = "3.2" -a -f '/etc/systemid'; then
3200                                 osname='sco'
3201                                 osvers=$tmp
3202                         elif $test -f /etc/kconfig; then
3203                                 osname=isc
3204                                 if test "$lns" = "$ln -s"; then
3205                                         osvers=4
3206                                 elif $contains _SYSV3 /usr/include/stdio.h > /dev/null 2>&1 ; then
3207                                         osvers=3
3208                                 elif $contains _POSIX_SOURCE /usr/include/stdio.h > /dev/null 2>&1 ; then
3209                                         osvers=2
3210                                 fi
3211                         fi
3212                         tmp=''
3213                         ;;
3214                 pc*)
3215                         if test -n "$DJGPP"; then
3216                                 osname=dos
3217                                 osvers=djgpp
3218                         fi
3219                         ;;
3220                 esac
3221
3222                 case "$1" in
3223                 aix) osname=aix
3224                         tmp=`( (oslevel) 2>/dev/null || echo "not found") 2>&1`
3225                         case "$tmp" in
3226                         # oslevel can fail with:
3227                         # oslevel: Unable to acquire lock.
3228                         *not\ found) osvers="$4"."$3" ;;
3229                         '<3240'|'<>3240') osvers=3.2.0 ;;
3230                         '=3240'|'>3240'|'<3250'|'<>3250') osvers=3.2.4 ;;
3231                         '=3250'|'>3250') osvers=3.2.5 ;;
3232                         *) osvers=$tmp;;
3233                         esac
3234                         ;;
3235                 bsd386) osname=bsd386
3236                         osvers=`$uname -r`
3237                         ;;
3238                 cygwin*) osname=cygwin
3239                         osvers="$3"
3240                         ;;
3241                 *dc.osx) osname=dcosx
3242                         osvers="$3"
3243                         ;;
3244                 dnix) osname=dnix
3245                         osvers="$3"
3246                         ;;
3247                 domainos) osname=apollo
3248                         osvers="$3"
3249                         ;;
3250                 dgux)   osname=dgux
3251                         osvers="$3"
3252                         ;;
3253                 dragonfly) osname=dragonfly
3254                         osvers="$3"
3255                         ;;
3256                 dynixptx*) osname=dynixptx
3257                         osvers=`echo "$4"|sed 's/^v//'`
3258                         ;;
3259                 freebsd) osname=freebsd
3260                         osvers="$3" ;;
3261                 genix)  osname=genix ;;
3262                 gnu)    osname=gnu
3263                         osvers="$3" ;;
3264                 hp*)    osname=hpux
3265                         osvers=`echo "$3" | $sed 's,.*\.\([0-9]*\.[0-9]*\),\1,'`
3266                         ;;
3267                 irix*)  osname=irix
3268                         case "$3" in
3269                         4*) osvers=4 ;;
3270                         5*) osvers=5 ;;
3271                         *)      osvers="$3" ;;
3272                         esac
3273                         ;;
3274                 linux)  osname=linux
3275                         case "$3" in
3276                         *)      osvers="$3" ;;
3277                         esac
3278                         ;;
3279                 MiNT)   osname=mint
3280                         ;;
3281                 netbsd*) osname=netbsd
3282                         osvers="$3"
3283                         ;;
3284                 news-os) osvers="$3"
3285                         case "$3" in
3286                         4*) osname=newsos4 ;;
3287                         *) osname=newsos ;;
3288                         esac
3289                         ;;
3290                 next*) osname=next ;;
3291                 nonstop-ux) osname=nonstopux ;;
3292                 openbsd) osname=openbsd
3293                         osvers="$3"
3294                         ;;
3295                 os2)    osname=os2
3296                         osvers="$4"
3297                         ;;
3298                 POSIX-BC | posix-bc ) osname=posix-bc
3299                         osvers="$3"
3300                         ;;
3301                 powerux | power_ux | powermax_os | powermaxos | \
3302                 powerunix | power_unix) osname=powerux
3303                         osvers="$3"
3304                         ;;
3305                 qnx) osname=qnx
3306                         osvers="$4"
3307                         ;;
3308                 solaris) osname=solaris
3309                         case "$3" in
3310                         5*) osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3311                         *)      osvers="$3" ;;
3312                         esac
3313                         ;;
3314                 sunos) osname=sunos
3315                         case "$3" in
3316                         5*) osname=solaris
3317                                 osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3318                         *)      osvers="$3" ;;
3319                         esac
3320                         ;;
3321                 titanos) osname=titanos
3322                         case "$3" in
3323                         1*) osvers=1 ;;
3324                         2*) osvers=2 ;;
3325                         3*) osvers=3 ;;
3326                         4*) osvers=4 ;;
3327                         *)      osvers="$3" ;;
3328                         esac
3329                         ;;
3330                 ultrix) osname=ultrix
3331                         osvers="$3"
3332                         ;;
3333                 osf1|mls+)      case "$5" in
3334                                 alpha)
3335                                         osname=dec_osf
3336                                         osvers=`sizer -v | awk -FUNIX '{print $2}' | awk '{print $1}' |  tr '[A-Z]' '[a-z]' | sed 's/^[xvt]//'`
3337                                         case "$osvers" in
3338                                         [1-9].[0-9]*) ;;
3339                                         *) osvers=`echo "$3" | sed 's/^[xvt]//'` ;;
3340                                         esac
3341                                         ;;
3342                         hp*)    osname=hp_osf1  ;;
3343                         mips)   osname=mips_osf1 ;;
3344                         esac
3345                         ;;
3346                 # UnixWare 7.1.2 is known as Open UNIX 8
3347                 openunix|unixware) osname=svr5
3348                         osvers="$4"
3349                         ;;
3350                 uts)    osname=uts
3351                         osvers="$3"
3352                         ;;
3353                 vos) osvers="$3"
3354                         ;;
3355                 $2) case "$osname" in
3356                         *isc*) ;;
3357                         *freebsd*) ;;
3358                         svr*)
3359                                 : svr4.x or possibly later
3360                                 case "svr$3" in
3361                                 ${osname}*)
3362                                         osname=svr$3
3363                                         osvers=$4
3364                                         ;;
3365                                 esac
3366                                 case "$osname" in
3367                                 svr4.0)
3368                                         : Check for ESIX
3369                                         if test -f /stand/boot ; then
3370                                                 eval `grep '^INITPROG=[a-z/0-9]*$' /stand/boot`
3371                                                 if test -n "$INITPROG" -a -f "$INITPROG"; then
3372                         isesix=`strings -a $INITPROG|grep 'ESIX SYSTEM V/386 Release 4.0'`
3373                                                         if test -n "$isesix"; then
3374                                                                 osname=esix4
3375                                                         fi
3376                                                 fi
3377                                         fi
3378                                         ;;
3379                                 esac
3380                                 ;;
3381                         *)      if test -f /etc/systemid; then
3382                                         osname=sco
3383                                         set `echo $3 | $sed 's/\./ /g'` $4
3384                                         if $test -f $src/hints/sco_$1_$2_$3.sh; then
3385                                                 osvers=$1.$2.$3
3386                                         elif $test -f $src/hints/sco_$1_$2.sh; then
3387                                                 osvers=$1.$2
3388                                         elif $test -f $src/hints/sco_$1.sh; then
3389                                                 osvers=$1
3390                                         fi
3391                                 else
3392                                         case "$osname" in
3393                                         '') : Still unknown.  Probably a generic Sys V.
3394                                                 osname="sysv"
3395                                                 osvers="$3"
3396                                                 ;;
3397                                         esac
3398                                 fi
3399                                 ;;
3400                         esac
3401                         ;;
3402                 *)      case "$osname" in
3403                         '') : Still unknown.  Probably a generic BSD.
3404                                 osname="$1"
3405                                 osvers="$3"
3406                                 ;;
3407                         esac
3408                         ;;
3409                 esac
3410         else
3411                 if test -f /vmunix -a -f $src/hints/news_os.sh; then
3412                         (what /vmunix | UU/tr '[A-Z]' '[a-z]') > UU/kernel.what 2>&1
3413                         if $contains news-os UU/kernel.what >/dev/null 2>&1; then
3414                                 osname=news_os
3415                         fi
3416                         $rm -f UU/kernel.what
3417                 elif test -d c:/. -o -n "$is_os2" ; then
3418                         set X $myuname
3419                         osname=os2
3420                         osvers="$5"
3421                 fi
3422         fi
3423
3424         case "$targetarch" in
3425         '') ;;
3426         *)  hostarch=$osname
3427             osname=`echo $targetarch|sed 's,^[^-]*-,,'`
3428             osvers=''
3429             ;;
3430         esac
3431
3432         : Now look for a hint file osname_osvers, unless one has been
3433         : specified already.
3434         case "$hintfile" in
3435         ''|' ')
3436                 file=`echo "${osname}_${osvers}" | $sed -e 's%\.%_%g' -e 's%_$%%'`
3437                 : Also try without trailing minor version numbers.
3438                 xfile=`echo $file | $sed -e 's%_[^_]*$%%'`
3439                 xxfile=`echo $xfile | $sed -e 's%_[^_]*$%%'`
3440                 xxxfile=`echo $xxfile | $sed -e 's%_[^_]*$%%'`
3441                 xxxxfile=`echo $xxxfile | $sed -e 's%_[^_]*$%%'`
3442                 case "$file" in
3443                 '') dflt=none ;;
3444                 *)  case "$osvers" in
3445                         '') dflt=$file
3446                                 ;;
3447                         *)  if $test -f $src/hints/$file.sh ; then
3448                                         dflt=$file
3449                                 elif $test -f $src/hints/$xfile.sh ; then
3450                                         dflt=$xfile
3451                                 elif $test -f $src/hints/$xxfile.sh ; then
3452                                         dflt=$xxfile
3453                                 elif $test -f $src/hints/$xxxfile.sh ; then
3454                                         dflt=$xxxfile
3455                                 elif $test -f $src/hints/$xxxxfile.sh ; then
3456                                         dflt=$xxxxfile
3457                                 elif $test -f "$src/hints/${osname}.sh" ; then
3458                                         dflt="${osname}"
3459                                 else
3460                                         dflt=none
3461                                 fi
3462                                 ;;
3463                         esac
3464                         ;;
3465                 esac
3466                 if $test -f Policy.sh ; then
3467                         case "$dflt" in
3468                         *Policy*) ;;
3469                         none) dflt="Policy" ;;
3470                         *) dflt="Policy $dflt" ;;
3471                         esac
3472                 fi
3473                 ;;
3474         *)
3475                 dflt=`echo $hintfile | $sed 's/\.sh$//'`
3476                 ;;
3477         esac
3478
3479         if $test -f Policy.sh ; then
3480                 $cat <<EOM
3481
3482 There's also a Policy hint file available, which should make the
3483 site-specific (policy) questions easier to answer.
3484 EOM
3485
3486         fi
3487
3488         $cat <<EOM
3489
3490 You may give one or more space-separated answers, or "none" if appropriate.
3491 If you have a handcrafted Policy.sh file or a Policy.sh file generated by a
3492 previous run of Configure, you may specify it as well as or instead of
3493 OS-specific hints.  If hints are provided for your OS, you should use them:
3494 although Perl can probably be built without hints on many platforms, using
3495 hints often improve performance and may enable features that Configure can't
3496 set up on its own. If there are no hints that match your OS, specify "none";
3497 DO NOT give a wrong version or a wrong OS.
3498
3499 EOM
3500
3501         rp="Which of these apply, if any?"
3502         . UU/myread
3503         tans=$ans
3504         for file in $tans; do
3505                 if $test X$file = XPolicy -a -f Policy.sh; then
3506                         . Policy.sh
3507                         $cat Policy.sh >> UU/config.sh
3508                 elif $test -f $src/hints/$file.sh; then
3509                         . $src/hints/$file.sh
3510                         $cat $src/hints/$file.sh >> UU/config.sh
3511                 elif $test X"$tans" = X -o X"$tans" = Xnone ; then
3512                         : nothing
3513                 else
3514                         : Give one chance to correct a possible typo.
3515                         echo "$file.sh does not exist"
3516                         dflt=$file
3517                         rp="hint to use instead?"
3518                         . UU/myread
3519                         for file in $ans; do
3520                                 if $test -f "$src/hints/$file.sh"; then
3521                                         . $src/hints/$file.sh
3522                                         $cat $src/hints/$file.sh >> UU/config.sh
3523                                 elif $test X$ans = X -o X$ans = Xnone ; then
3524                                         : nothing
3525                                 else
3526                                         echo "$file.sh does not exist -- ignored."
3527                                 fi
3528                         done
3529                 fi
3530         done
3531
3532         hint=recommended
3533         : Remember our hint file for later.
3534         if $test -f "$src/hints/$file.sh" ; then
3535                 hintfile="$file"
3536         else
3537                 hintfile=''
3538         fi
3539 fi
3540 cd UU
3541 ;;
3542 *)
3543         echo " "
3544         echo "Fetching default answers from $config_sh..." >&4
3545         tmp_n="$n"
3546         tmp_c="$c"
3547         cd ..
3548         cp $config_sh config.sh 2>/dev/null
3549         chmod +w config.sh
3550         . ./config.sh
3551         cd UU
3552         cp ../config.sh .
3553         n="$tmp_n"
3554         c="$tmp_c"
3555         hint=previous
3556         ;;
3557 esac
3558 test "$override" && . ./optdef.sh
3559
3560 : Restore computed paths
3561 for file in $loclist $trylist; do
3562         eval $file="\$_$file"
3563 done
3564
3565 cat << EOM
3566
3567 Configure uses the operating system name and version to set some defaults.
3568 The default value is probably right if the name rings a bell. Otherwise,
3569 since spelling matters for me, either accept the default or answer "none"
3570 to leave it blank.
3571
3572 EOM
3573 case "$osname" in
3574         ''|' ')
3575                 case "$hintfile" in
3576                 ''|' '|none) dflt=none ;;
3577                 *)  dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/_.*$//'` ;;
3578                 esac
3579                 ;;
3580         *) dflt="$osname" ;;
3581 esac
3582 rp="Operating system name?"
3583 . ./myread
3584 case "$ans" in
3585 none)  osname='' ;;
3586 *) osname=`echo "$ans" | $sed -e 's/[   ][      ]*/_/g' | ./tr '[A-Z]' '[a-z]'`;;
3587 esac
3588 echo " "
3589 case "$osvers" in
3590         ''|' ')
3591                 case "$hintfile" in
3592                 ''|' '|none) dflt=none ;;
3593                 *)      dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/^[^_]*//'`
3594                         dflt=`echo $dflt | $sed -e 's/^_//' -e 's/_/./g'`
3595                         case "$dflt" in
3596                         ''|' ') dflt=none ;;
3597                         esac
3598                         ;;
3599                 esac
3600                 ;;
3601         *) dflt="$osvers" ;;
3602 esac
3603 rp="Operating system version?"
3604 . ./myread
3605 case "$ans" in
3606 none)  osvers='' ;;
3607 *) osvers="$ans" ;;
3608 esac
3609
3610
3611 . ./posthint.sh
3612
3613 : who configured the system
3614 cf_time=`LC_ALL=C; LANGUAGE=C; export LC_ALL; export LANGUAGE; $date 2>&1`
3615 case "$cf_by" in
3616 "")
3617         cf_by=`(logname) 2>/dev/null`
3618         case "$cf_by" in
3619         "")
3620                 cf_by=`(whoami) 2>/dev/null`
3621                 case "$cf_by" in
3622                 "") cf_by=unknown ;;
3623                 esac ;;
3624         esac ;;
3625 esac
3626
3627 : decide how portable to be.  Allow command line overrides.
3628 case "$d_portable" in
3629 "$undef") ;;
3630 *)      d_portable="$define" ;;
3631 esac
3632
3633 : set up shell script to do ~ expansion
3634 cat >filexp <<EOSS
3635 $startsh
3636 : expand filename
3637 case "\$1" in
3638  \~/*|\~)
3639         echo \$1 | $sed "s|~|\${HOME-\$LOGDIR}|"
3640         ;;
3641  \~*)
3642         if $test -f /bin/csh; then
3643                 /bin/csh -f -c "glob \$1"
3644                 failed=\$?
3645                 echo ""
3646                 exit \$failed
3647         else
3648                 name=\`$expr x\$1 : '..\([^/]*\)'\`
3649                 dir=\`$sed -n -e "/^\${name}:/{s/^[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:\([^:]*\).*"'\$'"/\1/" -e p -e q -e '}' </etc/passwd\`
3650                 if $test ! -d "\$dir"; then
3651                         me=\`basename \$0\`
3652                         echo "\$me: can't locate home directory for: \$name" >&2
3653                         exit 1
3654                 fi
3655                 case "\$1" in
3656                 */*)
3657                         echo \$dir/\`$expr x\$1 : '..[^/]*/\(.*\)'\`
3658                         ;;
3659                 *)
3660                         echo \$dir
3661                         ;;
3662                 esac
3663         fi
3664         ;;
3665 *)
3666         echo \$1
3667         ;;
3668 esac
3669 EOSS
3670 chmod +x filexp
3671 $eunicefix filexp
3672
3673 : now set up to get a file name
3674 cat <<EOS >getfile
3675 $startsh
3676 EOS
3677 cat <<'EOSC' >>getfile
3678 tilde=''
3679 fullpath=''
3680 already=''
3681 skip=''
3682 none_ok=''
3683 exp_file=''
3684 nopath_ok=''
3685 orig_rp="$rp"
3686 orig_dflt="$dflt"
3687 case "$gfpth" in
3688 '') gfpth='.' ;;
3689 esac
3690
3691 case "$fn" in
3692 *\(*)
3693         : getfile will accept an answer from the comma-separated list
3694         : enclosed in parentheses even if it does not meet other criteria.
3695         expr "$fn" : '.*(\(.*\)).*' | $tr ',' $trnl >getfile.ok
3696         fn=`echo $fn | sed 's/(.*)//'`
3697         ;;
3698 esac
3699
3700 case "$fn" in
3701 *:*)
3702         loc_file=`expr $fn : '.*:\(.*\)'`
3703         fn=`expr $fn : '\(.*\):.*'`
3704         ;;
3705 esac
3706
3707 case "$fn" in
3708 *~*) tilde=true;;
3709 esac
3710 case "$fn" in
3711 */*) fullpath=true;;
3712 esac
3713 case "$fn" in
3714 *+*) skip=true;;
3715 esac
3716 case "$fn" in
3717 *n*) none_ok=true;;
3718 esac
3719 case "$fn" in
3720 *e*) exp_file=true;;
3721 esac
3722 case "$fn" in
3723 *p*) nopath_ok=true;;
3724 esac
3725
3726 case "$fn" in
3727 *f*) type='File';;
3728 *d*) type='Directory';;
3729 *l*) type='Locate';;
3730 esac
3731
3732 what="$type"
3733 case "$what" in
3734 Locate) what='File';;
3735 esac
3736
3737 case "$exp_file" in
3738 '')
3739         case "$d_portable" in
3740         "$define") ;;
3741         *) exp_file=true;;
3742         esac
3743         ;;
3744 esac
3745
3746 cd ..
3747 while test "$type"; do
3748         redo=''
3749         rp="$orig_rp"
3750         dflt="$orig_dflt"
3751         case "$tilde" in
3752         true) rp="$rp (~name ok)";;
3753         esac
3754         . UU/myread
3755         if test -f UU/getfile.ok && \
3756                 $contains "^$ans\$" UU/getfile.ok >/dev/null 2>&1
3757         then
3758                 value="$ans"
3759                 ansexp="$ans"
3760                 break
3761         fi
3762         case "$ans" in
3763         none)
3764                 value=''
3765                 ansexp=''
3766                 case "$none_ok" in
3767                 true) type='';;
3768                 esac
3769                 ;;
3770         *)
3771                 case "$tilde" in
3772                 '') value="$ans"
3773                         ansexp="$ans";;
3774                 *)
3775                         value=`UU/filexp $ans`
3776                         case $? in
3777                         0)
3778                                 if test "$ans" != "$value"; then
3779                                         echo "(That expands to $value on this system.)"
3780                                 fi
3781                                 ;;
3782                         *) value="$ans";;
3783                         esac
3784                         ansexp="$value"
3785                         case "$exp_file" in
3786                         '') value="$ans";;
3787                         esac
3788                         ;;
3789                 esac
3790                 case "$fullpath" in
3791                 true)
3792                         case "$ansexp" in
3793                         /*) value="$ansexp" ;;
3794                         [a-zA-Z]:/*) value="$ansexp" ;;
3795                         *)
3796                                 redo=true
3797                                 case "$already" in
3798                                 true)
3799                                 echo "I shall only accept a full path name, as in /bin/ls." >&4
3800                                 echo "Use a ! shell escape if you wish to check pathnames." >&4
3801                                         ;;
3802                                 *)
3803                                 echo "Please give a full path name, starting with slash." >&4
3804                                         case "$tilde" in
3805                                         true)
3806                                 echo "Note that using ~name is ok provided it expands well." >&4
3807                                                 already=true
3808                                                 ;;
3809                                         esac
3810                                 esac
3811                                 ;;
3812                         esac
3813                         ;;
3814                 esac
3815                 case "$redo" in
3816                 '')
3817                         case "$type" in
3818                         File)
3819                                 for fp in $gfpth; do
3820                                         if test "X$fp" = X.; then
3821                                             pf="$ansexp"
3822                                         else    
3823                                             pf="$fp/$ansexp"
3824                                         fi
3825                                         if test -f "$pf"; then
3826                                                 type=''
3827                                         elif test -r "$pf" || (test -h "$pf") >/dev/null 2>&1
3828                                         then
3829                                                 echo "($value is not a plain file, but that's ok.)"
3830                                                 type=''
3831                                         fi
3832                                         if test X"$type" = X; then
3833                                             value="$pf"
3834                                             break
3835                                         fi
3836                                 done
3837                                 ;;
3838                         Directory)
3839                                 for fp in $gfpth; do
3840                                         if test "X$fp" = X.; then
3841                                             dir="$ans"
3842                                             direxp="$ansexp"
3843                                         else    
3844                                             dir="$fp/$ansexp"
3845                                             direxp="$fp/$ansexp"
3846                                         fi
3847                                         if test -d "$direxp"; then
3848                                                 type=''
3849                                                 value="$dir"
3850                                                 break
3851                                         fi
3852                                 done
3853                                 ;;
3854                         Locate)
3855                                 if test -d "$ansexp"; then
3856                                         echo "(Looking for $loc_file in directory $value.)"
3857                                         value="$value/$loc_file"
3858                                         ansexp="$ansexp/$loc_file"
3859                                 fi
3860                                 if test -f "$ansexp"; then
3861                                         type=''
3862                                 fi
3863                                 case "$nopath_ok" in
3864                                 true)   case "$value" in
3865                                         */*) ;;
3866                                         *)      echo "Assuming $value will be in people's path."
3867                                                 type=''
3868                                                 ;;
3869                                         esac
3870                                         ;;
3871                                 esac
3872                                 ;;
3873                         esac
3874
3875                         case "$skip" in
3876                         true) type='';
3877                         esac
3878
3879                         case "$type" in
3880                         '') ;;
3881                         *)
3882                                 if test "$fastread" = yes; then
3883                                         dflt=y
3884                                 else
3885                                         dflt=n
3886                                 fi
3887                                 rp="$what $value doesn't exist.  Use that name anyway?"
3888                                 . UU/myread
3889                                 dflt=''
3890                                 case "$ans" in
3891                                 y*) type='';;
3892                                 *) echo " ";;
3893                                 esac
3894                                 ;;
3895                         esac
3896                         ;;
3897                 esac
3898                 ;;
3899         esac
3900 done
3901 cd UU
3902 ans="$value"
3903 rp="$orig_rp"
3904 dflt="$orig_dflt"
3905 rm -f getfile.ok
3906 test "X$gfpthkeep" != Xy && gfpth=""
3907 EOSC
3908
3909 : determine root of directory hierarchy where package will be installed.
3910 case "$prefix" in
3911 '')
3912         dflt=`./loc . /usr/local /usr/local /local /opt /usr`
3913         ;;
3914 *?/)
3915         dflt=`echo "$prefix" | sed 's/.$//'`
3916         ;;
3917 *)
3918         dflt="$prefix"
3919         ;;
3920 esac
3921 $cat <<EOM
3922
3923 By default, $package will be installed in $dflt/bin, manual pages
3924 under $dflt/man, etc..., i.e. with $dflt as prefix for all
3925 installation directories. Typically this is something like /usr/local.
3926 If you wish to have binaries under /usr/bin but other parts of the
3927 installation under /usr/local, that's ok: you will be prompted
3928 separately for each of the installation directories, the prefix being
3929 only used to set the defaults.
3930
3931 EOM
3932 fn=d~
3933 rp='Installation prefix to use?'
3934 . ./getfile
3935 oldprefix=''
3936 case "$prefix" in
3937 '') ;;
3938 *)
3939         case "$ans" in
3940         "$prefix") ;;
3941         *) oldprefix="$prefix";;
3942         esac
3943         ;;
3944 esac
3945 prefix="$ans"
3946 prefixexp="$ansexp"
3947
3948 : allow them to override the AFS root
3949 case "$afsroot" in
3950 '')     afsroot=/afs ;;
3951 *)      afsroot=$afsroot ;;
3952 esac
3953
3954 : is AFS running?
3955 echo " "
3956 case "$afs" in
3957 $define|true)   afs=true ;;
3958 $undef|false)   afs=false ;;
3959 *)      if $test -d $afsroot; then
3960                 afs=true
3961         else
3962                 afs=false
3963         fi
3964         ;;
3965 esac
3966 if $afs; then
3967         echo "AFS may be running... I'll be extra cautious then..." >&4
3968 else
3969         echo "AFS does not seem to be running..." >&4
3970 fi
3971
3972 : determine installation prefix for where package is to be installed.
3973 if $afs; then 
3974 $cat <<EOM
3975
3976 Since you are running AFS, I need to distinguish the directory in which
3977 files will reside from the directory in which they are installed (and from
3978 which they are presumably copied to the former directory by occult means).
3979
3980 EOM
3981         case "$installprefix" in
3982         '') dflt=`echo $prefix | sed 's#^/afs/#/afs/.#'`;;
3983         *) dflt="$installprefix";;
3984         esac
3985 else
3986 $cat <<EOM
3987
3988 In some special cases, particularly when building $package for distribution,
3989 it is convenient to distinguish the directory in which files should be
3990 installed from the directory ($prefix) in which they will
3991 eventually reside.  For most users, these two directories are the same.
3992
3993 EOM
3994         case "$installprefix" in
3995         '') dflt=$prefix ;;
3996         *) dflt=$installprefix;;
3997         esac
3998 fi
3999 fn=d~
4000 rp='What installation prefix should I use for installing files?'
4001 . ./getfile
4002 installprefix="$ans"
4003 installprefixexp="$ansexp"
4004
4005 : Perform the prefixexp/installprefixexp correction if necessary
4006 cat <<EOS >installprefix
4007 $startsh
4008 EOS
4009 cat <<'EOSC' >>installprefix
4010 : Change installation prefix, if necessary.
4011 if $test X"$prefix" != X"$installprefix"; then
4012     eval "install${prefixvar}=\`echo \$${prefixvar}exp | sed \"s#^\$prefixexp#\$installprefixexp#\"\`"
4013 else
4014     eval "install${prefixvar}=\"\$${prefixvar}exp\""
4015 fi
4016 EOSC
4017 chmod +x installprefix
4018 $eunicefix installprefix
4019
4020 : Set variables such as privlib and privlibexp from the output of ./getfile
4021 : performing the prefixexp/installprefixexp correction if necessary.
4022 cat <<EOS >setprefixvar
4023 $startsh
4024 EOS
4025 cat <<'EOSC' >>setprefixvar
4026 eval "${prefixvar}=\"\$ans\""
4027 eval "${prefixvar}exp=\"\$ansexp\""
4028 . ./installprefix
4029 EOSC
4030 chmod +x setprefixvar
4031 $eunicefix setprefixvar
4032
4033 : set up the script used to warn in case of inconsistency
4034 cat <<EOS >whoa
4035 $startsh
4036 EOS
4037 cat <<'EOSC' >>whoa
4038 dflt=y
4039 case "$hint" in
4040     recommended)
4041         case "$hintfile" in
4042         '')     echo "The $hint value for \$$var on this machine was \"$was\"!" >&4
4043                 ;;
4044         *)      echo "Hmm.  Based on the hints in hints/$hintfile.sh, " >&4
4045                 echo "the $hint value for \$$var on this machine was \"$was\"!" >&4
4046                 ;;
4047         esac
4048         ;;
4049     *)  echo " "
4050         echo "*** WHOA THERE!!! ***" >&4
4051         echo "    The $hint value for \$$var on this machine was \"$was\"!" >&4
4052         ;;
4053 esac
4054 rp="    Keep the $hint value?"
4055 . ./myread
4056 case "$ans" in
4057 y) td=$was; tu=$was;;
4058 esac
4059 EOSC
4060
4061 : function used to set '$1' to '$val'
4062 setvar='var=$1; eval "was=\$$1"; td=$define; tu=$undef;
4063 case "$val$was" in
4064 $define$undef) . ./whoa; eval "$var=\$td";;
4065 $undef$define) . ./whoa; eval "$var=\$tu";;
4066 *) eval "$var=$val";;
4067 esac'
4068
4069 : Check is we will use socks
4070 case "$usesocks" in
4071 $define|true|[yY]*)     dflt='y';;
4072 *) dflt='n';;
4073 esac
4074 cat <<EOM
4075
4076 Perl can be built to use the SOCKS proxy protocol library.  To do so,
4077 Configure must be run with -Dusesocks.  If you use SOCKS you also need
4078 to use the PerlIO abstraction layer, this will be implicitly selected.
4079
4080 If this doesn't make any sense to you, just accept the default '$dflt'.
4081 EOM
4082 rp='Build Perl for SOCKS?'
4083 . ./myread
4084 case "$ans" in
4085 y|Y)    val="$define" ;;
4086 *)      val="$undef" ;;
4087 esac
4088 set usesocks
4089 eval $setvar
4090
4091 case "$usesocks" in
4092 $define|true|[yY]*) useperlio="$define";;
4093 esac
4094
4095 : Check if we want perlio
4096 case "$useperlio" in
4097 $define|true|[yY]*|'')  dflt='y';;
4098 *) dflt='n';;
4099 esac
4100 cat <<EOM
4101
4102 Previous version of $package used the standard IO mechanisms as
4103 defined in <stdio.h>.  Versions 5.003_02 and later of $package allow
4104 alternate IO mechanisms via the PerlIO abstraction layer, but the
4105 stdio mechanism is still available if needed.  The abstraction layer
4106 can use AT&T's sfio (if you already have sfio installed) or regular stdio.
4107 Using PerlIO with sfio may cause problems with some extension modules.
4108
4109 If this doesn't make any sense to you, just accept the default '$dflt'.
4110 EOM
4111 rp='Use the PerlIO abstraction layer?'
4112 . ./myread
4113 case "$ans" in
4114 y|Y)
4115         val="$define"
4116         ;;
4117 *)
4118         echo "Ok, doing things the stdio way."
4119         val="$undef"
4120         ;;
4121 esac
4122 set useperlio
4123 eval $setvar
4124
4125 case "$usesocks" in
4126 $define|true|[yY]*)
4127         case "$useperlio" in
4128         $define|true|[yY]*) ;;
4129         *)      cat >&4 <<EOM
4130
4131 You are using the SOCKS proxy protocol library which means that you
4132 should also use the PerlIO layer.  You may be headed for trouble.
4133
4134 EOM
4135                 ;;
4136         esac
4137         ;;
4138 esac
4139
4140 : get the patchlevel
4141 echo " "
4142 echo "Getting the current patchlevel..." >&4
4143 if $test -r $rsrc/patchlevel.h;then
4144         revision=`awk '/define[         ]+PERL_REVISION/ {print $3}' $rsrc/patchlevel.h`
4145         patchlevel=`awk '/define[       ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
4146         subversion=`awk '/define[       ]+PERL_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
4147         api_revision=`awk '/define[     ]+PERL_API_REVISION/ {print $3}' $rsrc/patchlevel.h`
4148         api_version=`awk '/define[      ]+PERL_API_VERSION/ {print $3}' $rsrc/patchlevel.h`
4149         api_subversion=`awk '/define[   ]+PERL_API_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
4150         perl_patchlevel=`egrep ',"(MAINT|SMOKE)[0-9][0-9]*"' $rsrc/patchlevel.h|tail -1|sed 's/[^0-9]//g'`
4151 else
4152         revision=0
4153         patchlevel=0
4154         subversion=0
4155         api_revision=0
4156         api_version=0
4157         api_subversion=0
4158         perl_patchlevel=0
4159         $echo "(You do not have patchlevel.h.  Eek.)"
4160 fi
4161 if $test -r $rsrc/.patch ; then
4162         if $test "X$perl_patchlevel" = "X" || $test "`cat $rsrc/.patch`" -gt "$perl_patchlevel" ; then
4163                 perl_patchlevel=`cat $rsrc/.patch`
4164         fi
4165 fi
4166 : Define a handy string here to avoid duplication in myconfig.SH and configpm.
4167 version_patchlevel_string="version $patchlevel subversion $subversion"
4168 case "$perl_patchlevel" in
4169 0|'') ;;
4170 *)  perl_patchlevel=`echo $perl_patchlevel | sed 's/.* //'`
4171     version_patchlevel_string="$version_patchlevel_string patch $perl_patchlevel"
4172     ;;
4173 esac
4174
4175 $echo "(You have $package $version_patchlevel_string.)"
4176
4177 case "$osname" in
4178 dos|vms)
4179         : XXX Should be a Configure test for double-dots in filenames.
4180         version=`echo $revision $patchlevel $subversion | \
4181                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
4182         api_versionstring=`echo $api_revision $api_version $api_subversion | \
4183                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
4184         ;;
4185 *)
4186         version=`echo $revision $patchlevel $subversion | \
4187                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
4188         api_versionstring=`echo $api_revision $api_version $api_subversion | \
4189                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
4190         ;;
4191 esac
4192 : Special case the 5.005_xx maintenance series, which used 5.005
4193 : without any subversion label as a subdirectory in $sitelib
4194 if test "${api_revision}${api_version}${api_subversion}" = "550"; then
4195         api_versionstring='5.005'
4196 fi
4197
4198 : Do we want threads support and if so, what type
4199 case "$usethreads" in
4200 $define|true|[yY]*)     dflt='y';;
4201 *)     # Catch case where user specified ithreads or 5005threads but
4202        # forgot -Dusethreads (A.D. 4/2002)
4203        case "$useithreads$use5005threads" in
4204        *$define*)
4205                 case "$useperlio" in
4206                 "$define")      dflt='y' ;;
4207                 *)              dflt='n' ;;
4208                 esac
4209                 ;;
4210        *)       dflt='n';;
4211        esac
4212        ;;
4213 esac
4214 cat <<EOM
4215
4216 Perl can be built to take advantage of threads on some systems.
4217 To do so, Configure can be run with -Dusethreads.
4218
4219 Note that Perl built with threading support runs slightly slower
4220 and uses more memory than plain Perl. The current implementation
4221 is believed to be stable, but it is fairly new, and so should be
4222 treated with caution.
4223
4224 If this doesn't make any sense to you, just accept the default '$dflt'.
4225 EOM
4226 rp='Build a threading Perl?'
4227 . ./myread
4228 case "$ans" in
4229 y|Y)    val="$define" ;;
4230 *)      val="$undef" ;;
4231 esac
4232 set usethreads
4233 eval $setvar
4234
4235 if $test $patchlevel -lt 9; then
4236     case "$usethreads" in
4237     $define)
4238         $cat <<EOM
4239
4240 Since release 5.6, Perl has had two different threading implementations,
4241 the newer interpreter-based version (ithreads) with one interpreter per
4242 thread, and the older 5.005 version (5005threads).
4243 The 5005threads version is effectively unmaintained and will probably be
4244 removed in Perl 5.10, so there should be no need to build a Perl using it
4245 unless needed for backwards compatibility with some existing 5.005threads
4246 code.
4247
4248 EOM
4249         : Default to ithreads unless overridden on command line or with
4250         : old config.sh
4251         dflt='y'
4252         case "$use5005threads" in
4253                 $define|true|[yY]*) dflt='n';;
4254         esac
4255         case "$useithreads" in
4256                 $undef|false|[nN]*) dflt='n';;
4257         esac
4258         rp='Use the newer interpreter-based ithreads?'
4259         . ./myread
4260         case "$ans" in
4261         y|Y)    val="$define" ;;
4262         *)      val="$undef" ;;
4263         esac
4264         set useithreads
4265         eval $setvar
4266         : Now set use5005threads to the opposite value.
4267         case "$useithreads" in
4268         $define) val="$undef" ;;
4269         *) val="$define" ;;
4270         esac
4271         set use5005threads
4272         eval $setvar
4273         ;;
4274     *)
4275         useithreads="$undef"
4276         use5005threads="$undef"
4277         ;;
4278     esac
4279
4280     case "$useithreads$use5005threads" in
4281     "$define$define")
4282         $cat >&4 <<EOM
4283
4284 You cannot have both the ithreads and the 5.005 threads enabled
4285 at the same time.  Disabling the 5.005 threads since they are
4286 much less stable than the ithreads.
4287
4288 EOM
4289         use5005threads="$undef"
4290         ;;
4291     esac
4292
4293 else
4294 : perl-5.9.x and later
4295
4296     if test X"$usethreads" = "X$define"; then
4297         case "$use5005threads" in
4298             $define|true|[yY]*)
4299                 $cat >&4 <<EOM
4300
4301 5.005 threads has been removed for 5.10.  Perl will be built using ithreads.
4302
4303 EOM
4304             ;;
4305         esac
4306     fi
4307
4308     use5005threads="$undef"
4309     useithreads="$usethreads"
4310 fi
4311
4312 if test X"$usethreads" = "X$define" -a "X$useperlio" = "Xundef"; then
4313         cat >&4 <<EOF
4314 ***
4315 *** To build with ithreads you must also use the PerlIO layer.
4316 *** Cannot continue, aborting.
4317 ***
4318 EOF
4319         exit 1
4320 fi
4321
4322 case "$d_oldpthreads" in
4323 '')     : Configure tests would be welcome here.  For now, assume undef.
4324         val="$undef" ;;
4325 *)      val="$d_oldpthreads" ;;
4326 esac
4327 set d_oldpthreads
4328 eval $setvar
4329
4330
4331 : Look for a hint-file generated 'call-back-unit'.  If the
4332 : user has specified that a threading perl is to be built,
4333 : we may need to set or change some other defaults.
4334 if $test -f usethreads.cbu; then
4335     echo "Your platform has some specific hints regarding threaded builds, using them..."
4336     . ./usethreads.cbu
4337 else
4338     case "$usethreads" in
4339         "$define"|true|[yY]*)
4340                 $cat <<EOM
4341 (Your platform does not have any specific hints for threaded builds.
4342  Assuming POSIX threads, then.)
4343 EOM
4344         ;;
4345     esac
4346 fi
4347
4348 : Check if multiplicity is required
4349 cat <<EOM
4350
4351 Perl can be built so that multiple Perl interpreters can coexist
4352 within the same Perl executable.
4353 EOM
4354
4355 case "$useithreads" in
4356 $define)
4357         cat <<EOM
4358 This multiple interpreter support is required for interpreter-based threads.
4359 EOM
4360         val="$define"
4361         ;;
4362 *)      case "$usemultiplicity" in
4363         $define|true|[yY]*)     dflt='y';;
4364         *) dflt='n';;
4365         esac
4366         echo " "
4367         echo "If this doesn't make any sense to you, just accept the default '$dflt'."
4368         rp='Build Perl for multiplicity?'
4369         . ./myread
4370         case "$ans" in
4371         y|Y)    val="$define" ;;
4372         *)      val="$undef" ;;
4373         esac
4374         ;;
4375 esac
4376 set usemultiplicity
4377 eval $setvar
4378
4379 : Check if morebits is requested
4380 case "$usemorebits" in
4381 "$define"|true|[yY]*)
4382         use64bitint="$define"
4383         uselongdouble="$define"
4384         usemorebits="$define"
4385         ;;
4386 *)      usemorebits="$undef"
4387         ;;
4388 esac
4389
4390 : Determine the C compiler to be used
4391 echo " "
4392 case "$cc" in
4393 '') dflt=cc;;
4394 *) dflt="$cc";;
4395 esac
4396 rp="Use which C compiler?"
4397 . ./myread
4398 cc="$ans"
4399
4400 : See whether they have no cc but they do have gcc
4401 . ./trygcc
4402 if $test -f cc.cbu; then
4403     . ./cc.cbu
4404 fi
4405 . ./checkcc
4406
4407 : make some quick guesses about what we are up against
4408 echo " "
4409 $echo $n "Hmm...  $c"
4410 echo exit 1 >bsd
4411 echo exit 1 >usg
4412 echo exit 1 >v7
4413 echo exit 1 >osf1
4414 echo exit 1 >eunice
4415 echo exit 1 >xenix
4416 echo exit 1 >venix
4417 echo exit 1 >os2
4418 d_bsd="$undef"
4419 $cat /usr/include/signal.h /usr/include/sys/signal.h >foo 2>/dev/null
4420 if test -f /osf_boot || $contains 'OSF/1' /usr/include/ctype.h >/dev/null 2>&1
4421 then
4422         echo "Looks kind of like an OSF/1 system, but we'll see..."
4423         echo exit 0 >osf1
4424 elif test `echo abc | $tr a-z A-Z` = Abc ; then
4425         xxx=`./loc addbib blurfl $pth`
4426         if $test -f $xxx; then
4427         echo "Looks kind of like a USG system with BSD features, but we'll see..."
4428                 echo exit 0 >bsd
4429                 echo exit 0 >usg
4430         else
4431                 if $contains SIGTSTP foo >/dev/null 2>&1 ; then
4432                         echo "Looks kind of like an extended USG system, but we'll see..."
4433                 else
4434                         echo "Looks kind of like a USG system, but we'll see..."
4435                 fi
4436                 echo exit 0 >usg
4437         fi
4438 elif $contains SIGTSTP foo >/dev/null 2>&1 ; then
4439         echo "Looks kind of like a BSD system, but we'll see..."
4440         d_bsd="$define"
4441         echo exit 0 >bsd
4442 else
4443         echo "Looks kind of like a Version 7 system, but we'll see..."
4444         echo exit 0 >v7
4445 fi
4446 case "$eunicefix" in
4447 *unixtovms*)
4448         $cat <<'EOI'
4449 There is, however, a strange, musty smell in the air that reminds me of
4450 something...hmm...yes...I've got it...there's a VMS nearby, or I'm a Blit.
4451 EOI
4452         echo exit 0 >eunice
4453         d_eunice="$define"
4454 : it so happens the Eunice I know will not run shell scripts in Unix format
4455         ;;
4456 *)
4457         echo " "
4458         echo "Congratulations.  You aren't running Eunice."
4459         d_eunice="$undef"
4460         ;;
4461 esac
4462 : Detect OS2.  The p_ variable is set above in the Head.U unit.
4463 : Note that this also -- wrongly -- detects e.g. dos-djgpp, which also uses
4464 : semicolon as a patch separator
4465 case "$p_" in
4466 :) ;;
4467 *)
4468         $cat <<'EOI'
4469 I have the feeling something is not exactly right, however...don't tell me...
4470 lemme think...does HAL ring a bell?...no, of course, you're only running OS/2!
4471 (Or you may be running DOS with DJGPP.)
4472 EOI
4473         echo exit 0 >os2
4474         ;;
4475 esac
4476 if test -f /xenix; then
4477         echo "Actually, this looks more like a XENIX system..."
4478         echo exit 0 >xenix
4479         d_xenix="$define"
4480 else
4481         echo " "
4482         echo "It's not Xenix..."
4483         d_xenix="$undef"
4484 fi
4485 chmod +x xenix
4486 $eunicefix xenix
4487 if test -f /venix; then
4488         echo "Actually, this looks more like a VENIX system..."
4489         echo exit 0 >venix
4490 else
4491         echo " "
4492         if ./xenix; then
4493                 : null
4494         else
4495                 echo "Nor is it Venix..."
4496         fi
4497 fi
4498 chmod +x bsd usg v7 osf1 eunice xenix venix os2
4499 $eunicefix bsd usg v7 osf1 eunice xenix venix os2
4500 $rm -f foo
4501
4502 : Check if we are using GNU gcc and what its version is
4503 echo " "
4504 echo "Checking for GNU cc in disguise and/or its version number..." >&4
4505 $cat >try.c <<EOM
4506 #include <stdio.h>
4507 int main() {
4508 #if defined(__GNUC__) && !defined(__INTEL_COMPILER)
4509 #ifdef __VERSION__
4510         printf("%s\n", __VERSION__);
4511 #else
4512         printf("%s\n", "1");
4513 #endif
4514 #endif
4515         return(0);
4516 }
4517 EOM
4518 if $cc -o try $ccflags $ldflags try.c; then
4519         gccversion=`$run ./try`
4520         case "$gccversion" in
4521         '') echo "You are not using GNU cc." ;;
4522         *)  echo "You are using GNU cc $gccversion."
4523             ccname=gcc
4524             ;;
4525         esac
4526 else
4527         echo " "
4528         echo "*** WHOA THERE!!! ***" >&4
4529         echo "    Your C compiler \"$cc\" doesn't seem to be working!" >&4
4530         case "$knowitall" in
4531         '')
4532         echo "    You'd better start hunting for one and let me know about it." >&4
4533                 exit 1
4534                 ;;
4535         esac
4536 fi
4537 $rm -f try try.*
4538 case "$gccversion" in
4539 1*) cpp=`./loc gcc-cpp $cpp $pth` ;;
4540 esac
4541 case "$gccversion" in
4542 '') gccosandvers='' ;;
4543 *) gccshortvers=`echo "$gccversion"|sed 's/ .*//'`
4544    gccosandvers=`$cc -v 2>&1|grep '/specs$'|sed "s!.*/[^-/]*-[^-/]*-\([^-/]*\)/$gccshortvers/specs!\1!"`
4545    gccshortvers=''
4546    case "$gccosandvers" in
4547    $osname) gccosandvers='' ;; # linux gccs seem to have no linux osvers, grr
4548    $osname$osvers) ;; # looking good
4549    $osname*) cat <<EOM >&4
4550
4551 *** WHOA THERE!!! ***
4552
4553     Your gcc has not been compiled for the exact release of
4554     your operating system ($gccosandvers versus $osname$osvers).
4555
4556     In general it is a good idea to keep gcc synchronized with
4557     the operating system because otherwise serious problems
4558     may ensue when trying to compile software, like Perl.
4559
4560     I'm trying to be optimistic here, though, and will continue.
4561     If later during the configuration and build icky compilation
4562     problems appear (headerfile conflicts being the most common
4563     manifestation), I suggest reinstalling the gcc to match
4564     your operating system release.
4565
4566 EOM
4567       ;;
4568    *) gccosandvers='' ;; # failed to parse, better be silent
4569    esac
4570    ;;
4571 esac
4572 case "$ccname" in
4573 '') ccname="$cc" ;;
4574 esac
4575
4576 # gcc 3.* complain about adding -Idirectories that they already know about,
4577 # so we will take those off from locincpth.
4578 case "$gccversion" in
4579 3*)
4580     echo "main(){}">try.c
4581     for incdir in $locincpth; do
4582        warn=`$cc $ccflags -I$incdir -c try.c 2>&1 | \
4583              grep '^c[cp]p*[01]: warning: changing search order '`
4584        if test "X$warn" != X; then
4585            locincpth=`echo " $locincpth " | sed "s! $incdir ! !"`
4586        fi
4587     done
4588     $rm -f try try.*
4589 esac
4590
4591 : What should the include directory be ?
4592 echo " "
4593 $echo $n "Hmm...  $c"
4594 dflt='/usr/include'
4595 incpath=''
4596 mips_type=''
4597 if $test -f /bin/mips && /bin/mips; then
4598         echo "Looks like a MIPS system..."
4599         $cat >usr.c <<'EOCP'
4600 #ifdef SYSTYPE_BSD43
4601 /bsd43
4602 #endif
4603 EOCP
4604         if cc -E usr.c > usr.out && $contains / usr.out >/dev/null 2>&1; then
4605                 dflt='/bsd43/usr/include'
4606                 incpath='/bsd43'
4607                 mips_type='BSD 4.3'
4608         else
4609                 mips_type='System V'
4610         fi
4611         $rm -f usr.c usr.out
4612         echo "and you're compiling with the $mips_type compiler and libraries."
4613         xxx_prompt=y
4614         echo "exit 0" >mips
4615 else
4616         echo "Doesn't look like a MIPS system."
4617         xxx_prompt=n
4618         echo "exit 1" >mips
4619 fi
4620 chmod +x mips
4621 $eunicefix mips
4622 case "$usrinc" in
4623 '') ;;
4624 *) dflt="$usrinc";;
4625 esac
4626 case "$xxx_prompt" in
4627 y)      fn=d/
4628         echo " "
4629         rp='Where are the include files you want to use?'
4630         . ./getfile
4631         usrinc="$ans"
4632         ;;
4633 *)      usrinc="$dflt"
4634         ;;
4635 esac
4636
4637 : see how we invoke the C preprocessor
4638 echo " "
4639 echo "Now, how can we feed standard input to your C preprocessor..." >&4
4640 cat <<'EOT' >testcpp.c
4641 #define ABC abc
4642 #define XYZ xyz
4643 ABC.XYZ
4644 EOT
4645 cd ..
4646 if test ! -f cppstdin; then
4647         if test "X$osname" = "Xaix" -a "X$gccversion" = X; then
4648                 # AIX cc -E doesn't show the absolute headerfile
4649                 # locations but we'll cheat by using the -M flag.
4650                 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
4651         else
4652                 echo 'cat >.$$.c; '"$cc"' -E ${1+"$@"} .$$.c; rm .$$.c' >cppstdin
4653         fi
4654 else
4655         echo "Keeping your $hint cppstdin wrapper."
4656 fi
4657 chmod 755 cppstdin
4658 wrapper=`pwd`/cppstdin
4659 ok='false'
4660 cd UU
4661
4662 if $test "X$cppstdin" != "X" && \
4663         $cppstdin $cppminus <testcpp.c >testcpp.out 2>&1 && \
4664         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4665 then
4666         echo "You used to use $cppstdin $cppminus so we'll use that again."
4667         case "$cpprun" in
4668         '') echo "But let's see if we can live without a wrapper..." ;;
4669         *)
4670                 if $cpprun $cpplast <testcpp.c >testcpp.out 2>&1 && \
4671                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4672                 then
4673                         echo "(And we'll use $cpprun $cpplast to preprocess directly.)"
4674                         ok='true'
4675                 else
4676                         echo "(However, $cpprun $cpplast does not work, let's see...)"
4677                 fi
4678                 ;;
4679         esac
4680 else
4681         case "$cppstdin" in
4682         '') ;;
4683         *)
4684                 echo "Good old $cppstdin $cppminus does not seem to be of any help..."
4685                 ;;
4686         esac
4687 fi
4688
4689 if $ok; then
4690         : nothing
4691 elif echo 'Maybe "'"$cc"' -E" will work...'; \
4692         $cc -E <testcpp.c >testcpp.out 2>&1; \
4693         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4694         echo "Yup, it does."
4695         x_cpp="$cc -E"
4696         x_minus='';
4697 elif echo 'Nope...maybe "'"$cc"' -E -" will work...'; \
4698         $cc -E - <testcpp.c >testcpp.out 2>&1; \
4699         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4700         echo "Yup, it does."
4701         x_cpp="$cc -E"
4702         x_minus='-';
4703 elif echo 'Nope...maybe "'"$cc"' -P" will work...'; \
4704         $cc -P <testcpp.c >testcpp.out 2>&1; \
4705         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4706         echo "Yipee, that works!"
4707         x_cpp="$cc -P"
4708         x_minus='';
4709 elif echo 'Nope...maybe "'"$cc"' -P -" will work...'; \
4710         $cc -P - <testcpp.c >testcpp.out 2>&1; \
4711         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4712         echo "At long last!"
4713         x_cpp="$cc -P"
4714         x_minus='-';
4715 elif echo 'No such luck, maybe "'$cpp'" will work...'; \
4716         $cpp <testcpp.c >testcpp.out 2>&1; \
4717         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4718         echo "It works!"
4719         x_cpp="$cpp"
4720         x_minus='';
4721 elif echo 'Nixed again...maybe "'$cpp' -" will work...'; \
4722         $cpp - <testcpp.c >testcpp.out 2>&1; \
4723         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4724         echo "Hooray, it works!  I was beginning to wonder."
4725         x_cpp="$cpp"
4726         x_minus='-';
4727 elif echo 'Uh-uh.  Time to get fancy.  Trying a wrapper...'; \
4728         $wrapper <testcpp.c >testcpp.out 2>&1; \
4729         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4730         x_cpp="$wrapper"
4731         x_minus=''
4732         echo "Eureka!"
4733 else
4734         dflt=''
4735         rp="No dice.  I can't find a C preprocessor.  Name one:"
4736         . ./myread
4737         x_cpp="$ans"
4738         x_minus=''
4739         $x_cpp <testcpp.c >testcpp.out 2>&1
4740         if $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4741                 echo "OK, that will do." >&4
4742         else
4743 echo "Sorry, I can't get that to work.  Go find one and rerun Configure." >&4
4744                 exit 1
4745         fi
4746 fi
4747
4748 case "$ok" in
4749 false)
4750         cppstdin="$x_cpp"
4751         cppminus="$x_minus"
4752         cpprun="$x_cpp"
4753         cpplast="$x_minus"
4754         set X $x_cpp
4755         shift
4756         case "$1" in
4757         "$cpp")
4758                 echo "Perhaps can we force $cc -E using a wrapper..."
4759                 if $wrapper <testcpp.c >testcpp.out 2>&1; \
4760                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4761                 then
4762                         echo "Yup, we can."
4763                         cppstdin="$wrapper"
4764                         cppminus='';
4765                 else
4766                         echo "Nope, we'll have to live without it..."
4767                 fi
4768                 ;;
4769         esac
4770         case "$cpprun" in
4771         "$wrapper")
4772                 cpprun=''
4773                 cpplast=''
4774                 ;;
4775         esac
4776         ;;
4777 esac
4778
4779 case "$cppstdin" in
4780 "$wrapper"|'cppstdin') ;;
4781 *) $rm -f $wrapper;;
4782 esac
4783 $rm -f testcpp.c testcpp.out
4784
4785 : Set private lib path
4786 case "$plibpth" in
4787 '') if ./mips; then
4788                 plibpth="$incpath/usr/lib /usr/local/lib /usr/ccs/lib"
4789         fi;;
4790 esac
4791 case "$libpth" in
4792 ' ') dlist='';;
4793 '') dlist="$loclibpth $plibpth $glibpth";;
4794 *) dlist="$libpth";;
4795 esac
4796
4797 : Now check and see which directories actually exist, avoiding duplicates
4798 libpth=''
4799 for xxx in $dlist
4800 do
4801     if $test -d $xxx; then
4802                 case " $libpth " in
4803                 *" $xxx "*) ;;
4804                 *) libpth="$libpth $xxx";;
4805                 esac
4806     fi
4807 done
4808 $cat <<'EOM'
4809
4810 Some systems have incompatible or broken versions of libraries.  Among
4811 the directories listed in the question below, please remove any you
4812 know not to be holding relevant libraries, and add any that are needed.
4813 Say "none" for none.
4814
4815 EOM
4816 case "$libpth" in
4817 '') dflt='none';;
4818 *)
4819         set X $libpth
4820         shift
4821         dflt=${1+"$@"}
4822         ;;
4823 esac
4824 rp="Directories to use for library searches?"
4825 . ./myread
4826 case "$ans" in
4827 none) libpth=' ';;
4828 *) libpth="$ans";;
4829 esac
4830
4831 : compute shared library extension
4832 case "$so" in
4833 '')
4834         if xxx=`./loc libc.sl X $libpth`; $test -f "$xxx"; then
4835                 dflt='sl'
4836         else
4837                 dflt='so'
4838         fi
4839         ;;
4840 *) dflt="$so";;
4841 esac
4842 $cat <<EOM
4843
4844 On some systems, shared libraries may be available.  Answer 'none' if
4845 you want to suppress searching of shared libraries for the remainder
4846 of this configuration.
4847
4848 EOM
4849 rp='What is the file extension used for shared libraries?'
4850 . ./myread
4851 so="$ans"
4852
4853 : Define several unixisms.
4854 : Hints files or command line option can be used to override them.
4855 : The convoluted testing is in case hints files set either the old
4856 : or the new name.
4857 case "$_exe" in
4858 '')     case "$exe_ext" in
4859         '')     ;;
4860         *)      _exe="$exe_ext" ;;
4861         esac
4862         ;;
4863 esac
4864 case "$_a" in
4865 '')     case "$lib_ext" in
4866     '') _a='.a';;
4867         *)      _a="$lib_ext" ;;
4868         esac
4869         ;;
4870 esac
4871 case "$_o" in
4872 '') case "$obj_ext" in
4873         '')     _o='.o';;
4874         *)      _o="$obj_ext";;
4875         esac
4876         ;;
4877 esac
4878 case "$p_" in
4879 '') case "$path_sep" in
4880         '')     p_=':';;
4881         *)      p_="$path_sep";;
4882         esac
4883         ;;
4884 esac
4885 exe_ext=$_exe
4886 lib_ext=$_a
4887 obj_ext=$_o
4888 path_sep=$p_
4889
4890 rm_try="$rm -f try try$_exe a.out .out try.[cho] try.$_o core core.try* try.core*"
4891
4892 : Which makefile gets called first.  This is used by make depend.
4893 case "$firstmakefile" in
4894 '') firstmakefile='makefile';;
4895 esac
4896
4897 : Check for uselongdouble support
4898 case "$ccflags" in
4899 *-DUSE_LONG_DOUBLE*|*-DUSE_MORE_BITS*) uselongdouble="$define" ;;
4900 esac
4901
4902 case "$uselongdouble" in
4903 $define|true|[yY]*)     dflt='y';;
4904 *) dflt='n';;
4905 esac
4906 cat <<EOM
4907
4908 Perl can be built to take advantage of long doubles which
4909 (if available) may give more accuracy and range for floating point numbers.
4910
4911 If this doesn't make any sense to you, just accept the default '$dflt'.
4912 EOM
4913 rp='Try to use long doubles if available?'
4914 . ./myread
4915 case "$ans" in
4916 y|Y)    val="$define"   ;;
4917 *)      val="$undef"    ;;
4918 esac
4919 set uselongdouble
4920 eval $setvar
4921
4922 case "$uselongdouble" in
4923 true|[yY]*) uselongdouble="$define" ;;
4924 esac
4925
4926 : Look for a hint-file generated 'call-back-unit'.  If the
4927 : user has specified that long doubles should be used,
4928 : we may need to set or change some other defaults.
4929 if $test -f uselongdouble.cbu; then
4930     echo "Your platform has some specific hints regarding long doubles, using them..."
4931     . ./uselongdouble.cbu
4932 else
4933     case "$uselongdouble" in
4934         $define)
4935                 $cat <<EOM
4936 (Your platform does not have any specific hints for long doubles.)
4937 EOM
4938         ;;
4939     esac
4940 fi
4941
4942 : Looking for optional libraries
4943 echo " "
4944 echo "Checking for optional libraries..." >&4
4945 case "$libs" in
4946 ' '|'') dflt='';;
4947 *) dflt="$libs";;
4948 esac
4949 case "$libswanted" in
4950 '') libswanted='c_s';;
4951 esac
4952 case "$usesocks" in
4953 "$define") libswanted="$libswanted socks5 socks5_sh" ;;
4954 esac
4955 libsfound=''
4956 libsfiles=''
4957 libsdirs=''
4958 libspath=''
4959 for thisdir in $libpth $xlibpth; do
4960   test -d $thisdir && libspath="$libspath $thisdir"
4961 done
4962 for thislib in $libswanted; do
4963         for thisdir in $libspath; do
4964             xxx=''
4965             if $test ! -f "$xxx" -a "X$ignore_versioned_solibs" = "X"; then
4966                 xxx=`ls $thisdir/lib$thislib.$so.[0-9] 2>/dev/null|sed -n '$p'`
4967                 $test -f "$xxx" && eval $libscheck
4968                 $test -f "$xxx" && libstyle=shared
4969             fi
4970             if test ! -f "$xxx"; then
4971                 xxx=$thisdir/lib$thislib.$so
4972                 $test -f "$xxx" && eval $libscheck
4973                 $test -f "$xxx" && libstyle=shared
4974             fi
4975             if test ! -f "$xxx"; then
4976                 xxx=$thisdir/lib$thislib$_a
4977                 $test -f "$xxx" && eval $libscheck
4978                 $test -f "$xxx" && libstyle=static
4979             fi
4980             if test ! -f "$xxx"; then
4981                 xxx=$thisdir/$thislib$_a
4982                 $test -f "$xxx" && eval $libscheck
4983                 $test -f "$xxx" && libstyle=static
4984             fi
4985             if test ! -f "$xxx"; then
4986                 xxx=$thisdir/lib${thislib}_s$_a
4987                 $test -f "$xxx" && eval $libscheck
4988                 $test -f "$xxx" && libstyle=static
4989                 $test -f "$xxx" && thislib=${thislib}_s
4990             fi
4991             if test ! -f "$xxx"; then
4992                 xxx=$thisdir/Slib$thislib$_a
4993                 $test -f "$xxx" && eval $libscheck
4994                 $test -f "$xxx" && libstyle=static
4995             fi
4996             if $test -f "$xxx"; then
4997                 case "$libstyle" in
4998                 shared) echo "Found -l$thislib (shared)." ;;
4999                 static) echo "Found -l$thislib." ;;
5000                 *)      echo "Found -l$thislib ($libstyle)." ;;
5001                 esac
5002                 case " $dflt " in
5003                 *"-l$thislib "*);;
5004                 *) dflt="$dflt -l$thislib"
5005                    libsfound="$libsfound $xxx"
5006                    yyy=`basename $xxx`
5007                    libsfiles="$libsfiles $yyy"
5008                    yyy=`echo $xxx|$sed -e "s%/$yyy\\$%%"`
5009                    case " $libsdirs " in
5010                    *" $yyy "*) ;;
5011                    *) libsdirs="$libsdirs $yyy" ;;
5012                    esac
5013                    ;;
5014                 esac
5015                 break
5016             fi
5017         done
5018         if $test ! -f "$xxx"; then
5019             echo "No -l$thislib."
5020         fi
5021 done
5022 set X $dflt
5023 shift
5024 dflt="$*"
5025 case "$libs" in
5026 '') dflt="$dflt";;
5027 *) dflt="$libs";;
5028 esac
5029 case "$dflt" in
5030 ' '|'') dflt='none';;
5031 esac
5032
5033 $cat <<EOM
5034
5035 In order to compile $package on your machine, a number of libraries
5036 are usually needed.  Include any other special libraries here as well.
5037 Say "none" for none.  The default list is almost always right.
5038 EOM
5039
5040 echo " "
5041 rp="What libraries to use?"
5042 . ./myread
5043 case "$ans" in
5044 none) libs=' ';;
5045 *) libs="$ans";;
5046 esac
5047
5048 : determine optimization, if desired, or use for debug flag also
5049 case "$optimize" in
5050 ' '|$undef) dflt='none';;
5051 '') dflt='-O';;
5052 *) dflt="$optimize";;
5053 esac
5054 $cat <<EOH
5055
5056 By default, $package compiles with the -O flag to use the optimizer.
5057 Alternately, you might want to use the symbolic debugger, which uses
5058 the -g flag (on traditional Unix systems).  Either flag can be
5059 specified here.  To use neither flag, specify the word "none".
5060
5061 EOH
5062 rp="What optimizer/debugger flag should be used?"
5063 . ./myread
5064 optimize="$ans"
5065 case "$optimize" in
5066 'none') optimize=" ";;
5067 esac
5068
5069 : Check what DEBUGGING is required from the command line
5070 : -DEBUGGING      or -DDEBUGGING or
5071 : -DEBUGGING=both                       = -g + -DDEBUGGING
5072 : -DEBUGGING=-g   or -Doptimize=-g      = -g
5073 : -DEBUGGING=none or -UDEBUGGING        =
5074 : -DEBUGGING=old  or -DEBUGGING=default = ? $optimize
5075 case "$EBUGGING" in
5076 '')     ;;
5077 *)      DEBUGGING=$EBUGGING ;;
5078 esac
5079
5080 case "$DEBUGGING" in
5081 -g|both|$define)
5082     case "$optimize" in
5083         *-g*) ;;
5084         *)    optimize="$optimize -g" ;;
5085     esac ;;
5086 none|$undef)
5087     case "$optimize" in
5088         *-g*)   set `echo "X $optimize " | sed 's/ -g / /'`
5089                 shift
5090                 optimize="$*"
5091                 ;;
5092     esac ;;
5093 esac
5094
5095 dflt=''
5096 case "$DEBUGGING" in
5097 both|$define) dflt='-DDEBUGGING'
5098 esac
5099
5100 : argument order is deliberate, as the flag will start with - which set could
5101 : think is an option
5102 checkccflag='check=$1; flag=$2; callback=$3;
5103 echo " ";
5104 echo "Checking if your compiler accepts $flag" 2>&1;
5105 echo "int main(void) { return 0; }" > gcctest.c;
5106 if $cc -O2 $flag -o gcctest gcctest.c 2>gcctest.out && ./gcctest; then
5107     echo "Yes, it does." 2>&1;
5108     if $test -s gcctest.out ; then
5109         echo "But your platform does not like it:";
5110         cat gcctest.out;
5111     else
5112         case "$ccflags" in
5113         *$check*)
5114             echo "Leaving current flags $ccflags alone." 2>&1
5115             ;;
5116         *) dflt="$dflt $flag";
5117             eval $callback
5118             ;;
5119         esac
5120     fi
5121 else
5122     echo "Nope, it does not, but that is ok." 2>&1;
5123 fi
5124 '
5125
5126 : We will not override a previous value, but we might want to
5127 : augment a hint file
5128 case "$hint" in
5129 default|recommended)
5130         case "$gccversion" in
5131         1*) dflt="$dflt -fpcc-struct-return" ;;
5132         esac
5133         case "$optimize:$DEBUGGING" in
5134         *-g*:old) dflt="$dflt -DDEBUGGING";;
5135         esac
5136         case "$gccversion" in
5137         2*) if $test -d /etc/conf/kconfig.d &&
5138                         $contains _POSIX_VERSION $usrinc/sys/unistd.h >/dev/null 2>&1
5139                 then
5140                         # Interactive Systems (ISC) POSIX mode.
5141                         dflt="$dflt -posix"
5142                 fi
5143                 ;;
5144         esac
5145         case "$gccversion" in
5146         1*) ;;
5147         2.[0-8]*) ;;
5148         ?*)     set strict-aliasing -fno-strict-aliasing
5149                 eval $checkccflag
5150                 ;;
5151         esac
5152         # For gcc, adding -pipe speeds up compilations for some, but apparently
5153         # some assemblers can't read from stdin.  (It also slows down compilations
5154         # in other cases, but those are apparently rarer these days.)  AD 5/2004.
5155         case "$gccversion" in
5156         ?*)     set pipe -pipe
5157                 eval $checkccflag
5158                 ;;
5159         esac
5160
5161         # on x86_64 (at least) we require an extra library (libssp) in the
5162         # link command line. This library is not named, so I infer that it is
5163         # an implementation detail that may change. Hence the safest approach
5164         # is to add the flag to the flags passed to the compiler at link time,
5165         # as that way the compiler can do the right implementation dependant
5166         # thing. (NWC)
5167         case "$gccversion" in
5168         ?*)     set stack-protector -fstack-protector
5169                 eval $checkccflag
5170                 ;;
5171         esac
5172         ;;
5173 esac
5174
5175 case "$mips_type" in
5176 *BSD*|'') inclwanted="$locincpth $usrinc";;
5177 *) inclwanted="$locincpth $inclwanted $usrinc/bsd";;
5178 esac
5179 for thisincl in $inclwanted; do
5180         if $test -d $thisincl; then
5181                 if $test x$thisincl != x$usrinc; then
5182                         case "$dflt" in
5183                         *" -I$thisincl "*);;
5184                         *) dflt="$dflt -I$thisincl ";;
5185                         esac
5186                 fi
5187         fi
5188 done
5189
5190 inctest='if $contains $2 $usrinc/$1 >/dev/null 2>&1; then
5191         xxx=true;
5192 elif $contains $2 $usrinc/sys/$1 >/dev/null 2>&1; then
5193         xxx=true;
5194 else
5195         xxx=false;
5196 fi;
5197 if $xxx; then
5198         case "$dflt" in
5199         *$2*);;
5200         *) dflt="$dflt -D$2";;
5201         esac;
5202 fi'
5203
5204 set signal.h LANGUAGE_C; eval $inctest
5205
5206 case "$usesocks" in
5207 $define)
5208         ccflags="$ccflags -DSOCKS"
5209         ;;
5210 esac
5211
5212 case "$hint" in
5213 default|recommended) dflt="$ccflags $dflt" ;;
5214 *) dflt="$ccflags";;
5215 esac
5216
5217 case "$dflt" in
5218 ''|' ') dflt=none;;
5219 esac
5220
5221 $cat <<EOH
5222
5223 Your C compiler may want other flags.  For this question you should include
5224 -I/whatever and -DWHATEVER flags and any other flags used by the C compiler,
5225 but you should NOT include libraries or ld flags like -lwhatever.  If you
5226 want $package to honor its debug switch, you should include -DDEBUGGING here.
5227 Your C compiler might also need additional flags, such as -D_POSIX_SOURCE.
5228
5229 To use no flags, specify the word "none".
5230
5231 EOH
5232 set X $dflt
5233 shift
5234 dflt=${1+"$@"}
5235 rp="Any additional cc flags?"
5236 . ./myread
5237 case "$ans" in
5238 none) ccflags='';;
5239 *) ccflags="$ans";;
5240 esac
5241
5242 : the following weeds options from ccflags that are of no interest to cpp
5243 case "$cppflags" in
5244 '') cppflags="$ccflags" ;;
5245 *)  cppflags="$cppflags $ccflags" ;;
5246 esac
5247 case "$gccversion" in
5248 1*) cppflags="$cppflags -D__GNUC__"
5249 esac
5250 case "$mips_type" in
5251 '');;
5252 *BSD*) cppflags="$cppflags -DSYSTYPE_BSD43";;
5253 esac
5254 case "$cppflags" in
5255 '');;
5256 *)
5257         echo " "
5258         echo "Let me guess what the preprocessor flags are..." >&4
5259         set X $cppflags
5260         shift
5261         cppflags=''
5262         $cat >cpp.c <<'EOM'
5263 #define BLURFL foo
5264
5265 BLURFL xx LFRULB
5266 EOM
5267         previous=''
5268         for flag in $*
5269         do
5270                 case "$flag" in
5271                 -*) ftry="$flag";;
5272                 *) ftry="$previous $flag";;
5273                 esac
5274                 if $cppstdin -DLFRULB=bar $cppflags $ftry $cppminus <cpp.c \
5275                         >cpp1.out 2>/dev/null && \
5276                         $cpprun -DLFRULB=bar $cppflags $ftry $cpplast <cpp.c \
5277                         >cpp2.out 2>/dev/null && \
5278                         $contains 'foo.*xx.*bar' cpp1.out >/dev/null 2>&1 && \
5279                         $contains 'foo.*xx.*bar' cpp2.out >/dev/null 2>&1
5280                 then
5281                         cppflags="$cppflags $ftry"
5282                         previous=''
5283                 else
5284                         previous="$flag"
5285                 fi
5286         done
5287         set X $cppflags
5288         shift
5289         cppflags=${1+"$@"}
5290         case "$cppflags" in
5291         *-*)  echo "They appear to be: $cppflags";;
5292         esac
5293         $rm -f cpp.c cpp?.out
5294         ;;
5295 esac
5296
5297 : flags used in final linking phase
5298 case "$ldflags" in
5299 '') if ./venix; then
5300                 dflt='-i -z'
5301         else
5302                 dflt=''
5303         fi
5304         case "$ccflags" in
5305         *-posix*) dflt="$dflt -posix" ;;
5306         esac
5307         ;;
5308 *) dflt="$ldflags";;
5309 esac
5310 # See note above about -fstack-protector
5311 case "$ccflags" in
5312 *-fstack-protector*) 
5313         case "$dflt" in
5314         *-fstack-protector*) ;; # Don't add it again
5315         *) dflt="$dflt -fstack-protector" ;; 
5316         esac
5317         ;;
5318 esac
5319
5320 : Try to guess additional flags to pick up local libraries.
5321 for thislibdir in $libpth; do
5322         case " $loclibpth " in
5323         *" $thislibdir "*)
5324                 case "$dflt " in
5325                 *"-L$thislibdir "*) ;;
5326                 *)  dflt="$dflt -L$thislibdir" ;;
5327                 esac
5328                 ;;
5329         esac
5330 done
5331
5332 case "$dflt" in
5333 '') dflt='none' ;;
5334 esac
5335
5336 $cat <<EOH
5337
5338 Your C linker may need flags.  For this question you should
5339 include -L/whatever and any other flags used by the C linker, but you
5340 should NOT include libraries like -lwhatever.
5341
5342 Make sure you include the appropriate -L/path flags if your C linker
5343 does not normally search all of the directories you specified above,
5344 namely
5345         $libpth
5346 To use no flags, specify the word "none".
5347
5348 EOH
5349
5350 rp="Any additional ld flags (NOT including libraries)?"
5351 . ./myread
5352 case "$ans" in
5353 none) ldflags='';;
5354 *) ldflags="$ans";;
5355 esac
5356 rmlist="$rmlist pdp11"
5357
5358 : coherency check
5359 echo " "
5360 echo "Checking your choice of C compiler and flags for coherency..." >&4
5361 $cat > try.c <<'EOF'
5362 #include <stdio.h>
5363 int main() { printf("Ok\n"); return(0); }
5364 EOF
5365 set X $cc -o try $optimize $ccflags $ldflags try.c $libs
5366 shift
5367 $cat >try.msg <<'EOM'
5368 I've tried to compile and run the following simple program:
5369
5370 EOM
5371 $cat try.c >> try.msg
5372
5373 $cat >> try.msg <<EOM
5374
5375 I used the command:
5376
5377         $*
5378         $run ./try
5379
5380 and I got the following output:
5381
5382 EOM
5383 dflt=y
5384 if $sh -c "$cc -o try $optimize $ccflags $ldflags try.c $libs" >>try.msg 2>&1; then
5385         if $sh -c "$run ./try " >>try.msg 2>&1; then
5386                 xxx=`$run ./try`
5387                 case "$xxx" in
5388                 "Ok") dflt=n ;;
5389                 *)      echo 'The program compiled OK, but produced no output.' >> try.msg
5390                         case " $libs " in
5391                         *" -lsfio "*)
5392                                 cat >> try.msg <<'EOQS'
5393 If $libs contains -lsfio, and sfio is mis-configured, then it
5394 sometimes (apparently) runs and exits with a 0 status, but with no
5395 output!  It may have to do with sfio's use of _exit vs. exit.
5396
5397 EOQS
5398                                 rp="You have a big problem.  Shall I abort Configure"
5399                                 dflt=y
5400                                 ;;
5401                         esac
5402                         ;;
5403                 esac
5404         else
5405                 echo "The program compiled OK, but exited with status $?." >>try.msg
5406                 rp="You have a problem.  Shall I abort Configure"
5407                 dflt=y
5408         fi
5409 else
5410         echo "I can't compile the test program." >>try.msg
5411         rp="You have a BIG problem.  Shall I abort Configure"
5412         dflt=y
5413 fi
5414 case "$dflt" in
5415 y)
5416         $cat try.msg >&4
5417         case "$knowitall" in
5418         '')
5419                 echo "(The supplied flags or libraries might be incorrect.)"
5420                 ;;
5421         *) dflt=n;;
5422         esac
5423         echo " "
5424         . ./myread
5425         case "$ans" in
5426         n*|N*) ;;
5427         *)      echo "Ok.  Stopping Configure." >&4
5428                 exit 1
5429                 ;;
5430         esac
5431         ;;
5432 n) echo "OK, that should do.";;
5433 esac
5434 $rm_try gcctest gcctest.out
5435
5436 : define a shorthand compile call
5437 compile='
5438 mc_file=$1;
5439 shift;
5440 case "$usedevel" in $define|true|[yY]*) if $test ! -f "${mc_file}.c"; then
5441 echo "Internal Configure script bug - compiler test file ${mc_file}.c is missing. Please report this to perlbug@perl.org" >&4;
5442 exit 1;
5443 fi;
5444 esac;
5445 $cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs > /dev/null 2>&1;'
5446 : define a shorthand compile call for compilations that should be ok.
5447 compile_ok='
5448 mc_file=$1;
5449 shift;
5450 $cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs;'
5451
5452 : determine filename position in cpp output
5453 echo " "
5454 echo "Computing filename position in cpp output for #include directives..." >&4
5455 case "$osname" in
5456 vos) testaccess=-e ;;
5457 *)   testaccess=-r ;;
5458 esac
5459 echo '#include <stdio.h>' > foo.c
5460 $cat >fieldn <<EOF
5461 $startsh
5462 $cppstdin $cppflags $cppminus <foo.c 2>/dev/null | \
5463 $grep '^[       ]*#.*stdio\.h' | \
5464 while read cline; do
5465         pos=1
5466         set \$cline
5467         while $test \$# -gt 0; do
5468                 if $test $testaccess \`echo \$1 | $tr -d '"'\`; then
5469                         echo "\$pos"
5470                         exit 0
5471                 fi
5472                 shift
5473                 pos=\`expr \$pos + 1\`
5474         done
5475 done
5476 EOF
5477 chmod +x fieldn
5478 fieldn=`./fieldn`
5479 $rm -f foo.c fieldn
5480 case $fieldn in
5481 '') pos='???';;
5482 1) pos=first;;
5483 2) pos=second;;
5484 3) pos=third;;
5485 *) pos="${fieldn}th";;
5486 esac
5487 echo "Your cpp writes the filename in the $pos field of the line."
5488
5489 case "$osname" in
5490 vos) cppfilter="tr '\\\\>' '/' |" ;; # path component separator is >
5491 os2) cppfilter="sed -e 's|\\\\\\\\|/|g' |" ;; # path component separator is \
5492 *)   cppfilter='' ;;
5493 esac
5494 : locate header file
5495 $cat >findhdr <<EOF
5496 $startsh
5497 wanted=\$1
5498 name=''
5499 for usrincdir in $usrinc
5500 do
5501         if test -f \$usrincdir/\$wanted; then
5502                 echo "\$usrincdir/\$wanted"
5503                 exit 0
5504         fi
5505 done
5506 awkprg='{ print \$$fieldn }'
5507 echo "#include <\$wanted>" > foo\$\$.c
5508 $cppstdin $cppminus $cppflags < foo\$\$.c 2>/dev/null | \
5509 $cppfilter $grep "^[    ]*#.*\$wanted" | \
5510 while read cline; do
5511         name=\`echo \$cline | $awk "\$awkprg" | $tr -d '"'\`
5512         case "\$name" in
5513         *[/\\\\]\$wanted) echo "\$name"; exit 1;;
5514         *[\\\\/]\$wanted) echo "\$name"; exit 1;;
5515         *) exit 2;;
5516         esac;
5517 done;
5518 #
5519 # status = 0: grep returned 0 lines, case statement not executed
5520 # status = 1: headerfile found
5521 # status = 2: while loop executed, no headerfile found
5522 #
5523 status=\$?
5524 $rm -f foo\$\$.c;
5525 if test \$status -eq 1; then
5526         exit 0;
5527 fi
5528 exit 1
5529 EOF
5530 chmod +x findhdr
5531
5532 : define an alternate in-header-list? function
5533 inhdr='echo " "; td=$define; tu=$undef; yyy=$@;
5534 cont=true; xxf="echo \"<\$1> found.\" >&4";
5535 case $# in 2) xxnf="echo \"<\$1> NOT found.\" >&4";;
5536 *) xxnf="echo \"<\$1> NOT found, ...\" >&4";;
5537 esac;
5538 case $# in 4) instead=instead;; *) instead="at last";; esac;
5539 while $test "$cont"; do
5540         xxx=`./findhdr $1`
5541         var=$2; eval "was=\$$2";
5542         if $test "$xxx" && $test -r "$xxx";
5543         then eval $xxf;
5544         eval "case \"\$$var\" in $undef) . ./whoa; esac"; eval "$var=\$td";
5545                 cont="";
5546         else eval $xxnf;
5547         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu"; fi;
5548         set $yyy; shift; shift; yyy=$@;
5549         case $# in 0) cont="";;
5550         2) xxf="echo \"but I found <\$1> $instead.\" >&4";
5551                 xxnf="echo \"and I did not find <\$1> either.\" >&4";;
5552         *) xxf="echo \"but I found <\$1\> instead.\" >&4";
5553                 xxnf="echo \"there is no <\$1>, ...\" >&4";;
5554         esac;
5555 done;
5556 while $test "$yyy";
5557 do set $yyy; var=$2; eval "was=\$$2";
5558         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu";
5559         set $yyy; shift; shift; yyy=$@;
5560 done'
5561
5562 : see if stdlib is available
5563 set stdlib.h i_stdlib
5564 eval $inhdr
5565
5566 : check for lengths of integral types
5567 echo " "
5568 case "$intsize" in
5569 '')
5570         echo "Checking to see how big your integers are..." >&4
5571         $cat >try.c <<EOCP
5572 #include <stdio.h>
5573 #$i_stdlib I_STDLIB
5574 #ifdef I_STDLIB
5575 #include <stdlib.h>
5576 #endif
5577 int main()
5578 {
5579         printf("intsize=%d;\n", (int)sizeof(int));
5580         printf("longsize=%d;\n", (int)sizeof(long));
5581         printf("shortsize=%d;\n", (int)sizeof(short));
5582         exit(0);
5583 }
5584 EOCP
5585         set try
5586         if eval $compile_ok && $run ./try > /dev/null; then
5587                 eval `$run ./try`
5588                 echo "Your integers are $intsize bytes long."
5589                 echo "Your long integers are $longsize bytes long."
5590                 echo "Your short integers are $shortsize bytes long."
5591         else
5592                 $cat >&4 <<EOM
5593 !
5594 Help! I can't compile and run the intsize test program: please enlighten me!
5595 (This is probably a misconfiguration in your system or libraries, and
5596 you really ought to fix it.  Still, I'll try anyway.)
5597 !
5598 EOM
5599                 dflt=4
5600                 rp="What is the size of an integer (in bytes)?"
5601                 . ./myread
5602                 intsize="$ans"
5603                 dflt=$intsize
5604                 rp="What is the size of a long integer (in bytes)?"
5605                 . ./myread
5606                 longsize="$ans"
5607                 dflt=2
5608                 rp="What is the size of a short integer (in bytes)?"
5609                 . ./myread
5610                 shortsize="$ans"
5611         fi
5612         ;;
5613 esac
5614 $rm_try
5615
5616 : check for long long
5617 echo " "
5618 echo "Checking to see if you have long long..." >&4
5619 echo 'int main() { long long x = 7; return 0; }' > try.c
5620 set try
5621 if eval $compile; then
5622         val="$define"
5623         echo "You have long long."
5624 else
5625         val="$undef"
5626         echo "You do not have long long."
5627 fi
5628 $rm_try
5629 set d_longlong
5630 eval $setvar
5631
5632 : check for length of long long
5633 case "${d_longlong}${longlongsize}" in
5634 $define)
5635         echo " "
5636         echo "Checking to see how big your long longs are..." >&4
5637         $cat >try.c <<'EOCP'
5638 #include <stdio.h>
5639 int main()
5640 {
5641     printf("%d\n", (int)sizeof(long long));
5642     return(0);
5643 }
5644 EOCP
5645         set try
5646         if eval $compile_ok; then
5647                 longlongsize=`$run ./try`
5648                 echo "Your long longs are $longlongsize bytes long."
5649         else
5650                 dflt='8'
5651                 echo " "
5652                 echo "(I can't seem to compile the test program.  Guessing...)"
5653                 rp="What is the size of a long long (in bytes)?"
5654                 . ./myread
5655                 longlongsize="$ans"
5656         fi
5657         if $test "X$longsize" = "X$longlongsize"; then
5658                 echo "(That isn't any different from an ordinary long.)"
5659         fi
5660         ;;
5661 esac
5662 $rm_try
5663
5664 : see if inttypes.h is available
5665 : we want a real compile instead of Inhdr because some systems
5666 : have an inttypes.h which includes non-existent headers
5667 echo " "
5668 $cat >try.c <<EOCP
5669 #include <inttypes.h>
5670 int main() {
5671         static int32_t foo32 = 0x12345678;
5672 }
5673 EOCP
5674 set try
5675 if eval $compile; then
5676         echo "<inttypes.h> found." >&4
5677         val="$define"
5678 else
5679         echo "<inttypes.h> NOT found." >&4
5680         val="$undef"
5681 fi
5682 $rm_try
5683 set i_inttypes
5684 eval $setvar
5685
5686 : check for int64_t
5687 echo " "
5688 echo "Checking to see if you have int64_t..." >&4
5689 $cat >try.c <<EOCP
5690 #include <sys/types.h>
5691 #$i_inttypes I_INTTYPES
5692 #ifdef I_INTTYPES
5693 #include <inttypes.h>
5694 #endif
5695 int main() { int64_t x = 7; }
5696 EOCP
5697 set try
5698 if eval $compile; then
5699         val="$define"
5700         echo "You have int64_t."
5701 else
5702         val="$undef"
5703         echo "You do not have int64_t."
5704 fi
5705 $rm_try
5706 set d_int64_t
5707 eval $setvar
5708
5709 : Check if 64bit ints have a quad type
5710 echo " "
5711 echo "Checking which 64-bit integer type we could use..." >&4
5712
5713 case "$intsize" in
5714 8) val=int
5715    set quadtype
5716    eval $setvar
5717    val='"unsigned int"'
5718    set uquadtype
5719    eval $setvar
5720    quadkind=1
5721    ;;
5722 *) case "$longsize" in
5723    8) val=long
5724       set quadtype
5725       eval $setvar
5726       val='"unsigned long"'
5727       set uquadtype
5728       eval $setvar
5729       quadkind=2
5730       ;;
5731    *) case "$d_longlong:$longlongsize" in
5732       define:8)
5733         val='"long long"'
5734         set quadtype
5735         eval $setvar
5736         val='"unsigned long long"'
5737         set uquadtype
5738         eval $setvar
5739         quadkind=3
5740         ;;
5741       *) case "$d_int64_t" in
5742          define)
5743            val=int64_t
5744            set quadtype
5745            eval $setvar
5746            val=uint64_t
5747            set uquadtype
5748            eval $setvar
5749            quadkind=4
5750            ;;
5751          esac
5752          ;;
5753       esac
5754       ;;
5755    esac
5756    ;;
5757 esac
5758
5759 case "$quadtype" in
5760 '')     echo "Alas, no 64-bit integer types in sight." >&4
5761         d_quad="$undef"
5762         ;;
5763 *)      echo "We could use '$quadtype' for 64-bit integers." >&4
5764         d_quad="$define"
5765         ;;
5766 esac
5767
5768 : Do we want 64bit support
5769 case "$uselonglong" in
5770 "$define"|true|[yY]*)
5771         cat <<EOM >&4
5772
5773 *** Configure -Duselonglong is deprecated, using -Duse64bitint instead.
5774 EOM
5775         use64bitint="$define"
5776         ;;
5777 esac
5778 case "$use64bits" in
5779 "$define"|true|[yY]*)
5780         cat <<EOM >&4
5781
5782 *** Configure -Duse64bits is deprecated, using -Duse64bitint instead.
5783 EOM
5784         use64bitint="$define"
5785         ;;
5786 esac
5787 case "$use64bitints" in
5788 "$define"|true|[yY]*)
5789         cat <<EOM >&4
5790
5791 *** There is no Configure -Duse64bitints, using -Duse64bitint instead.
5792 EOM
5793         use64bitint="$define"
5794         ;;
5795 esac
5796 case "$use64bitsint" in
5797 "$define"|true|[yY]*)
5798         cat <<EOM >&4
5799
5800 *** There is no Configure -Duse64bitsint, using -Duse64bitint instead.
5801 EOM
5802         use64bitint="$define"
5803         ;;
5804 esac
5805 case "$uselonglongs" in
5806 "$define"|true|[yY]*)
5807         cat <<EOM >&4
5808
5809 *** There is no Configure -Duselonglongs, using -Duse64bitint instead.
5810 EOM
5811         use64bitint="$define"
5812         ;;
5813 esac
5814 case "$use64bitsall" in
5815 "$define"|true|[yY]*)
5816         cat <<EOM >&4
5817
5818 *** There is no Configure -Duse64bitsall, using -Duse64bitall instead.
5819 EOM
5820         use64bitall="$define"
5821         ;;
5822 esac
5823
5824 case "$ccflags" in
5825 *-DUSE_LONG_LONG*|*-DUSE_64_BIT_INT*|*-DUSE_64_BIT_ALL*) use64bitint="$define";;
5826 esac
5827 case "$use64bitall" in
5828 "$define"|true|[yY]*) use64bitint="$define" ;;
5829 esac
5830
5831 case "$longsize" in
5832 8) cat <<EOM
5833
5834 You have natively 64-bit long integers.
5835 EOM
5836    val="$define"
5837    ;;
5838 *) case "$use64bitint" in
5839    "$define"|true|[yY]*) dflt='y';;
5840    *) dflt='n';;
5841    esac
5842    case "$d_quad" in
5843    "$define") ;;
5844    *) dflt='n' ;;
5845    esac
5846    cat <<EOM
5847
5848 Perl can be built to take advantage of 64-bit integer types
5849 on some systems.  To do so, Configure can be run with -Duse64bitint.
5850 Choosing this option will most probably introduce binary incompatibilities.
5851
5852 If this doesn't make any sense to you, just accept the default '$dflt'.
5853 (The default has been chosen based on your configuration.)
5854 EOM
5855    rp='Try to use 64-bit integers, if available?'
5856    . ./myread
5857    case "$ans" in
5858    [yY]*) val="$define" ;;
5859    *)     val="$undef"  ;;
5860    esac
5861    ;;
5862 esac
5863 set use64bitint
5864 eval $setvar
5865
5866 case "$use64bitall" in
5867 "$define"|true|[yY]*) dflt='y' ;;
5868 *) case "$longsize" in
5869    8) dflt='y' ;;
5870    *) dflt='n' ;;
5871    esac
5872    ;;
5873 esac
5874 cat <<EOM
5875
5876 You may also choose to try maximal 64-bitness.  It means using as much
5877 64-bitness as possible on the platform.  This in turn means even more
5878 binary incompatibilities.  On the other hand, your platform may not
5879 have any more 64-bitness available than what you already have chosen.
5880
5881 If this doesn't make any sense to you, just accept the default '$dflt'.
5882 (The default has been chosen based on your configuration.)
5883 EOM
5884 rp='Try to use maximal 64-bit support, if available?'
5885 . ./myread
5886 case "$ans" in
5887 [yY]*) val="$define" ;;
5888 *)     val="$undef"  ;;
5889 esac
5890 set use64bitall
5891 eval $setvar
5892 case "$use64bitall" in
5893 "$define")
5894         case "$use64bitint" in
5895         "$undef")
5896                 cat <<EOM
5897
5898 Since you have chosen a maximally 64-bit build, I'm also turning on
5899 the use of 64-bit integers.
5900 EOM
5901                 use64bitint="$define" ;;
5902         esac
5903         ;;
5904 esac
5905
5906 : Look for a hint-file generated 'call-back-unit'.  If the
5907 : user has specified that a 64-bit perl is to be built,
5908 : we may need to set or change some other defaults.
5909 if $test -f use64bitint.cbu; then
5910         echo "Your platform has some specific hints regarding 64-bit integers, using them..."
5911         . ./use64bitint.cbu
5912 fi
5913 case "$use64bitint" in
5914 "$define"|true|[yY]*)
5915         case "$longsize" in
5916         4) case "$archname64" in
5917            '') archname64=64int ;;
5918            esac
5919            ;;
5920         esac
5921         ;;
5922 esac
5923
5924 : Look for a hint-file generated 'call-back-unit'.  If the
5925 : user has specified that a maximally 64-bit perl is to be built,
5926 : we may need to set or change some other defaults.
5927 if $test -f use64bitall.cbu; then
5928         echo "Your platform has some specific hints regarding 64-bit builds, using them..."
5929         . ./use64bitall.cbu
5930 fi
5931 case "$use64bitall" in
5932 "$define"|true|[yY]*)
5933         case "$longsize" in
5934         4) case "$archname64" in
5935            ''|64int) archname64=64all ;;
5936            esac
5937            ;;
5938         esac
5939         ;;
5940 esac
5941
5942 case "$d_quad:$use64bitint" in
5943 $undef:$define)
5944         cat >&4 <<EOF
5945
5946 *** You have chosen to use 64-bit integers,
5947 *** but none can be found.
5948 *** Please rerun Configure without -Duse64bitint and/or -Dusemorebits.
5949 *** Cannot continue, aborting.
5950
5951 EOF
5952         exit 1
5953         ;;
5954 esac
5955
5956 : check for length of double
5957 echo " "
5958 case "$doublesize" in
5959 '')
5960         echo "Checking to see how big your double precision numbers are..." >&4
5961         $cat >try.c <<EOCP
5962 #include <stdio.h>
5963 #$i_stdlib I_STDLIB
5964 #ifdef I_STDLIB
5965 #include <stdlib.h>
5966 #endif
5967 int main()
5968 {
5969     printf("%d\n", (int)sizeof(double));
5970     exit(0);
5971 }
5972 EOCP
5973         set try
5974         if eval $compile_ok; then
5975                 doublesize=`$run ./try`
5976                 echo "Your double is $doublesize bytes long."
5977         else
5978                 dflt='8'
5979                 echo "(I can't seem to compile the test program.  Guessing...)"
5980                 rp="What is the size of a double precision number (in bytes)?"
5981                 . ./myread
5982                 doublesize="$ans"
5983         fi
5984         ;;
5985 esac
5986 $rm_try
5987
5988 : check for long doubles
5989 echo " "
5990 echo "Checking to see if you have long double..." >&4
5991 echo 'int main() { long double x = 7.0; }' > try.c
5992 set try
5993 if eval $compile; then
5994         val="$define"
5995         echo "You have long double."
5996 else
5997         val="$undef"
5998         echo "You do not have long double."
5999 fi
6000 $rm_try
6001 set d_longdbl
6002 eval $setvar
6003
6004 : check for length of long double
6005 case "${d_longdbl}${longdblsize}" in
6006 $define)
6007         echo " "
6008         echo "Checking to see how big your long doubles are..." >&4
6009         $cat >try.c <<'EOCP'
6010 #include <stdio.h>
6011 int main()
6012 {
6013         printf("%d\n", sizeof(long double));
6014 }
6015 EOCP
6016         set try
6017         set try
6018         if eval $compile; then
6019                 longdblsize=`$run ./try`
6020                 echo "Your long doubles are $longdblsize bytes long."
6021         else
6022                 dflt='8'
6023                 echo " "
6024                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
6025                 rp="What is the size of a long double (in bytes)?"
6026                 . ./myread
6027                 longdblsize="$ans"
6028         fi
6029         if $test "X$doublesize" = "X$longdblsize"; then
6030                 echo "That isn't any different from an ordinary double."
6031                 echo "I'll keep your setting anyway, but you may see some"
6032                 echo "harmless compilation warnings."
6033         fi
6034         ;;
6035 esac
6036 $rm_try
6037
6038 : determine the architecture name
6039 echo " "
6040 if xxx=`./loc arch blurfl $pth`; $test -f "$xxx"; then
6041         tarch=`arch`"-$osname"
6042 elif xxx=`./loc uname blurfl $pth`; $test -f "$xxx" ; then
6043         if uname -m > tmparch 2>&1 ; then
6044                 tarch=`$sed -e 's/ *$//' -e 's/ /_/g' \
6045                         -e 's/$/'"-$osname/" tmparch`
6046         else
6047                 tarch="$osname"
6048         fi
6049         $rm -f tmparch
6050 else
6051         tarch="$osname"
6052 fi
6053 case "$myarchname" in
6054 ''|"$tarch") ;;
6055 *)
6056         echo "(Your architecture name used to be $myarchname.)"
6057         archname=''
6058         ;;
6059 esac
6060 case "$targetarch" in
6061 '') ;;
6062 *)  archname=`echo $targetarch|sed 's,^[^-]*-,,'` ;;
6063 esac
6064 myarchname="$tarch"
6065 case "$archname" in
6066 '') dflt="$tarch";;
6067 *) dflt="$archname";;
6068 esac
6069 rp='What is your architecture name'
6070 . ./myread
6071 archname="$ans"
6072 case "$usethreads" in
6073 $define)
6074         echo "Threads selected." >&4
6075         case "$archname" in
6076         *-thread*) echo "...and architecture name already has -thread." >&4
6077                 ;;
6078         *)      archname="$archname-thread"
6079                 echo "...setting architecture name to $archname." >&4
6080                 ;;
6081         esac
6082         ;;
6083 esac
6084 case "$usemultiplicity" in
6085 $define)
6086         echo "Multiplicity selected." >&4
6087         case "$archname" in
6088         *-multi*) echo "...and architecture name already has -multi." >&4
6089                 ;;
6090         *)      archname="$archname-multi"
6091                 echo "...setting architecture name to $archname." >&4
6092                 ;;
6093         esac
6094         ;;
6095 esac
6096 case "$use64bitint$use64bitall" in
6097 *"$define"*)
6098         case "$archname64" in
6099         '')
6100                 echo "This architecture is naturally 64-bit, not changing architecture name." >&4
6101                 ;;
6102         *)
6103                 case "$use64bitint" in
6104                 "$define") echo "64 bit integers selected." >&4 ;;
6105                 esac
6106                 case "$use64bitall" in
6107                 "$define") echo "Maximal 64 bitness selected." >&4 ;;
6108                 esac
6109                 case "$archname" in
6110                 *-$archname64*) echo "...and architecture name already has $archname64." >&4
6111                         ;;
6112                 *)      archname="$archname-$archname64"
6113                         echo "...setting architecture name to $archname." >&4
6114                         ;;
6115                 esac
6116                 ;;
6117         esac
6118 esac
6119 case "$uselongdouble" in
6120 $define)
6121         echo "Long doubles selected." >&4
6122         case "$longdblsize" in
6123         $doublesize)
6124                 echo "...but long doubles are equal to doubles, not changing architecture name." >&4
6125                 ;;
6126         *)
6127                 case "$archname" in
6128                 *-ld*) echo "...and architecture name already has -ld." >&4
6129                         ;;
6130                 *)      archname="$archname-ld"
6131                         echo "...setting architecture name to $archname." >&4
6132                         ;;
6133                 esac
6134                 ;;
6135         esac
6136         ;;
6137 esac
6138 case "$useperlio" in
6139 $define)
6140         echo "Perlio selected." >&4
6141         ;;
6142 *)
6143         echo "Perlio not selected, using stdio." >&4
6144         case "$archname" in
6145         *-stdio*) echo "...and architecture name already has -stdio." >&4
6146                 ;;
6147         *)      archname="$archname-stdio"
6148                 echo "...setting architecture name to $archname." >&4
6149                 ;;
6150         esac
6151         ;;
6152 esac
6153 if $test -f archname.cbu; then
6154         echo "Your platform has some specific hints for architecture name, using them..."
6155         . ./archname.cbu
6156 fi
6157
6158 : set the prefixit variable, to compute a suitable default value
6159 prefixit='case "$3" in
6160 ""|none)
6161         case "$oldprefix" in
6162         "") eval "$1=\"\$$2\"";;
6163         *)
6164                 case "$3" in
6165                 "") eval "$1=";;
6166                 none)
6167                         eval "tp=\"\$$2\"";
6168                         case "$tp" in
6169                         ""|" ") eval "$1=\"\$$2\"";;
6170                         *) eval "$1=";;
6171                         esac;;
6172                 esac;;
6173         esac;;
6174 *)
6175         eval "tp=\"$oldprefix-\$$2-\""; eval "tp=\"$tp\"";
6176         case "$tp" in
6177         --|/*--|\~*--) eval "$1=\"$prefix/$3\"";;
6178         /*-$oldprefix/*|\~*-$oldprefix/*)
6179                 eval "$1=\`echo \$$2 | sed \"s,^$oldprefix,$prefix,\"\`";;
6180         *) eval "$1=\"\$$2\"";;
6181         esac;;
6182 esac'
6183
6184 : determine installation style
6185 : For now, try to deduce it from prefix unless it is already set.
6186 : Reproduce behavior of 5.005 and earlier, maybe drop that in 5.7.
6187 case "$installstyle" in
6188 '')     case "$prefix" in
6189                 *perl*) dflt='lib';;
6190                 *) dflt='lib/perl5' ;;
6191         esac
6192         ;;
6193 *)      dflt="$installstyle" ;;
6194 esac
6195 : Probably not worth prompting for this since we prompt for all
6196 : the directories individually, and the prompt would be too long and
6197 : confusing anyway.
6198 installstyle=$dflt
6199
6200 : determine where public executables go
6201 echo " "
6202 set dflt bin bin
6203 eval $prefixit
6204 fn=d~
6205 rp='Pathname where the public executables will reside?'
6206 . ./getfile
6207 if $test "X$ansexp" != "X$binexp"; then
6208         installbin=''
6209 fi
6210 prefixvar=bin
6211 : XXX Bug? -- ignores Configure -Dinstallprefix setting.
6212 : XXX If this is fixed, also fix the "start perl" hunk below, which relies on
6213 :     this via initialinstalllocation
6214 . ./setprefixvar
6215
6216 case "$userelocatableinc" in
6217 $define|true|[yY]*)     dflt='y' ;;
6218 *)                      dflt='n' ;;
6219 esac
6220 cat <<EOM
6221
6222 Would you like to build Perl so that the installation is relocatable, so that
6223 library paths in @INC are determined relative to the path of the perl binary?
6224 This is not advised for system Perl installs, or if you need to run setid
6225 scripts or scripts under taint mode.
6226
6227 If this doesn't make any sense to you, just accept the default '$dflt'.
6228 EOM
6229 rp='Use relocatable @INC?'
6230 . ./myread
6231 case "$ans" in
6232 y|Y)    val="$define" ;;
6233 *)      val="$undef"  ;;
6234 esac
6235 set userelocatableinc
6236 eval $setvar
6237
6238 initialinstalllocation="$binexp"
6239 : Default prefix is now "up one level from where the binaries are"
6240 case "$userelocatableinc" in
6241 $define|true|[yY]*)
6242     bin=".../"
6243     binexp=".../"
6244     prefix=".../.."
6245     prefixexp=".../.."
6246     installprefixexp=".../.."
6247     ;;
6248 esac
6249
6250 : determine where private library files go
6251 : Usual default is /usr/local/lib/perl5/$version.
6252 : Also allow things like /opt/perl/lib/$version, since
6253 : /opt/perl/lib/perl5... would be redundant.
6254 : The default "style" setting is made in installstyle.U
6255 case "$installstyle" in
6256 *lib/perl5*) set dflt privlib lib/$package/$version ;;
6257 *)       set dflt privlib lib/$version ;;
6258 esac
6259 eval $prefixit
6260 $cat <<EOM
6261
6262 There are some auxiliary files for $package that need to be put into a
6263 private library directory that is accessible by everyone.
6264
6265 EOM
6266 fn=$binexp
6267 fn=d~+
6268 rp='Pathname where the private library files will reside?'
6269 . ./getfile
6270 prefixvar=privlib
6271 . ./setprefixvar
6272
6273 : set the prefixup variable, to restore leading tilda escape
6274 prefixup='case "$prefixexp" in
6275 "$prefix") ;;
6276 *) eval "$1=\`echo \$$1 | sed \"s,^$prefixexp,$prefix,\"\`";;
6277 esac'
6278
6279 : determine where public architecture dependent libraries go
6280 set archlib archlib
6281 eval $prefixit
6282 : privlib default is /usr/local/lib/$package/$version
6283 : archlib default is /usr/local/lib/$package/$version/$archname
6284 : privlib may have an optional trailing /share.
6285 tdflt=`echo $privlib | $sed 's,/share$,,'`
6286 tdflt=$tdflt/$archname
6287 case "$archlib" in
6288 '')     dflt=$tdflt
6289         ;;
6290 *)      dflt="$archlib"
6291     ;;
6292 esac
6293 $cat <<EOM
6294
6295 $spackage contains architecture-dependent library files.  If you are
6296 sharing libraries in a heterogeneous environment, you might store
6297 these files in a separate location.  Otherwise, you can just include
6298 them with the rest of the public library files.
6299
6300 EOM
6301 fn=$binexp
6302 fn=d+~
6303 rp='Where do you want to put the public architecture-dependent libraries?'
6304 . ./getfile
6305 prefixvar=archlib
6306 . ./setprefixvar
6307 if $test X"$archlib" = X"$privlib"; then
6308         d_archlib="$undef"
6309 else
6310         d_archlib="$define"
6311 fi
6312
6313 : see if setuid scripts can be secure
6314 $cat <<EOM
6315
6316 Some kernels have a bug that prevents setuid #! scripts from being
6317 secure.  Some sites have disabled setuid #! scripts because of this.
6318
6319 First let's decide if your kernel supports secure setuid #! scripts.
6320 (If setuid #! scripts would be secure but have been disabled anyway,
6321 don't say that they are secure if asked.)
6322
6323 EOM
6324
6325 val="$undef"
6326 if $test -d /dev/fd; then
6327         echo "#!$ls" >reflect
6328         chmod +x,u+s reflect
6329         ./reflect >flect 2>&1
6330         if $contains "/dev/fd" flect >/dev/null; then
6331                 echo "Congratulations, your kernel has secure setuid scripts!" >&4
6332                 val="$define"
6333         else
6334                 $cat <<EOM
6335 If you are not sure if they are secure, I can check but I'll need a
6336 username and password different from the one you are using right now.
6337 If you don't have such a username or don't want me to test, simply
6338 enter 'none'.
6339
6340 EOM
6341                 rp='Other username to test security of setuid scripts with?'
6342                 dflt='none'
6343                 . ./myread
6344                 case "$ans" in
6345                 n|none)
6346                         case "$d_suidsafe" in
6347                         '')     echo "I'll assume setuid scripts are *not* secure." >&4
6348                                 dflt=n;;
6349                         "$undef")
6350                                 echo "Well, the $hint value is *not* secure." >&4
6351                                 dflt=n;;
6352                         *)      echo "Well, the $hint value *is* secure." >&4
6353                                 dflt=y;;
6354                         esac
6355                         ;;
6356                 *)
6357                         $rm -f reflect flect
6358                         echo "#!$ls" >reflect
6359                         chmod +x,u+s reflect
6360                         echo >flect
6361                         chmod a+w flect
6362                         echo '"su" will (probably) prompt you for '"$ans's password."
6363                         su $ans -c './reflect >flect'
6364                         if $contains "/dev/fd" flect >/dev/null; then
6365                                 echo "Okay, it looks like setuid scripts are secure." >&4
6366                                 dflt=y
6367                         else
6368                                 echo "I don't think setuid scripts are secure." >&4
6369                                 dflt=n
6370                         fi
6371                         ;;
6372                 esac
6373                 rp='Does your kernel have *secure* setuid scripts?'
6374                 . ./myread
6375                 case "$ans" in
6376                 [yY]*)  val="$define";;
6377                 *)      val="$undef";;
6378                 esac
6379         fi
6380 else
6381         echo "I don't think setuid scripts are secure (no /dev/fd directory)." >&4
6382         echo "(That's for file descriptors, not floppy disks.)"
6383         val="$undef"
6384 fi
6385 set d_suidsafe
6386 eval $setvar
6387
6388 $rm -f reflect flect
6389
6390 : now see if they want to do setuid emulation
6391 if $test $patchlevel -lt 11; then
6392 echo " "
6393 val="$undef"
6394 case "$d_suidsafe" in
6395 "$define")
6396         val="$undef"
6397         echo "No need to emulate SUID scripts since they are secure here." >&4
6398         ;;
6399 *)
6400         $cat <<EOM
6401 Some systems have disabled setuid scripts, especially systems where
6402 setuid scripts cannot be secure.  On systems where setuid scripts have
6403 been disabled, the setuid/setgid bits on scripts are currently
6404 useless.  It is possible for $package to detect those bits and emulate
6405 setuid/setgid in a secure fashion.  This emulation will only work if
6406 setuid scripts have been disabled in your kernel.
6407
6408 EOM
6409         case "$d_dosuid" in
6410         "$define") dflt=y ;;
6411         *) dflt=n ;;
6412         esac
6413         rp="Do you want to do setuid/setgid emulation?"
6414         . ./myread
6415         case "$ans" in
6416         [yY]*)  val="$define";;
6417         *)      val="$undef";;
6418         esac
6419         ;;
6420 esac
6421 set d_dosuid
6422 eval $setvar
6423 else
6424     case "$d_dosuid" in
6425         "$define")
6426         cat >&4 <<EOH
6427
6428 SUID emulation has been removed for 5.12
6429 Please re-run Configure without -Dd_dosuid
6430
6431 EOH
6432         exit 1;
6433         ;;
6434     esac
6435     d_dosuid=undef
6436 fi
6437
6438 : Find perl5.005 or later.
6439 echo "Looking for a previously installed perl5.005 or later... "
6440 case "$perl5" in
6441 '')     for tdir in `echo "$binexp$path_sep$PATH" | $sed "s/$path_sep/ /g"`; do
6442                 : Check if this perl is recent and can load a simple module
6443                 if $test -x $tdir/perl$exe_ext && $tdir/perl -Mless -e 'use 5.005;' >/dev/null 2>&1; then
6444                         perl5=$tdir/perl
6445                         break;
6446                 elif $test -x $tdir/perl5$exe_ext && $tdir/perl5 -Mless -e 'use 5.005;' >/dev/null 2>&1; then
6447                         perl5=$tdir/perl5
6448                         break;
6449                 fi
6450         done
6451         ;;
6452 *)      perl5="$perl5"
6453         ;;
6454 esac
6455 case "$perl5" in
6456 '')     echo "None found.  That's ok.";;
6457 *)      echo "Using $perl5." ;;
6458 esac
6459
6460 : Set the siteprefix variables
6461 $cat <<EOM
6462
6463 After $package is installed, you may wish to install various
6464 add-on modules and utilities.  Typically, these add-ons will
6465 be installed under $prefix with the rest
6466 of this package.  However, you may wish to install such add-ons
6467 elsewhere under a different prefix.
6468
6469 If you do not wish to put everything under a single prefix, that's
6470 ok.  You will be prompted for the individual locations; this siteprefix
6471 is only used to suggest the defaults.
6472
6473 The default should be fine for most people.
6474
6475 EOM
6476 fn=d~+
6477 rp='Installation prefix to use for add-on modules and utilities?'
6478 : XXX Here might be another good place for an installstyle setting.
6479 case "$siteprefix" in
6480 '') dflt=$prefix ;;
6481 *)  dflt=$siteprefix ;;
6482 esac
6483 . ./getfile
6484 : XXX Prefixit unit does not yet support siteprefix and vendorprefix
6485 oldsiteprefix=''
6486 case "$siteprefix" in
6487 '') ;;
6488 *)      case "$ans" in
6489         "$prefix") ;;
6490         *) oldsiteprefix="$prefix";;
6491         esac
6492         ;;
6493 esac
6494 siteprefix="$ans"
6495 siteprefixexp="$ansexp"
6496
6497 : determine where site specific libraries go.
6498 : Usual default is /usr/local/lib/perl5/site_perl/$version
6499 : The default "style" setting is made in installstyle.U
6500 : XXX No longer works with Prefixit stuff.
6501 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6502 case "$sitelib" in
6503 '') case "$installstyle" in
6504         *lib/perl5*) dflt=$siteprefix/lib/$package/site_$prog/$version ;;
6505         *)       dflt=$siteprefix/lib/site_$prog/$version ;;
6506         esac
6507         ;;
6508 *)      dflt="$sitelib"
6509         ;;
6510 esac
6511 $cat <<EOM
6512
6513 The installation process will create a directory for
6514 site-specific extensions and modules.  Most users find it convenient
6515 to place all site-specific files in this directory rather than in the
6516 main distribution directory.
6517
6518 EOM
6519 fn=d~+
6520 rp='Pathname for the site-specific library files?'
6521 . ./getfile
6522 prefixvar=sitelib
6523 . ./setprefixvar
6524 sitelib_stem=`echo "$sitelibexp" | sed "s,/$version$,,"`
6525
6526 : Determine list of previous versions to include in @INC
6527 $cat > getverlist <<EOPL
6528 #!$perl5 -w
6529 use File::Basename;
6530 \$api_versionstring = "$api_versionstring";
6531 \$version = "$version";
6532 \$stem = "$sitelib_stem";
6533 \$archname = "$archname";
6534 EOPL
6535         $cat >> getverlist <<'EOPL'
6536 # The list found is store twice for each entry: the original name, and
6537 # the binary broken down version as pack "sss", so sorting is easy and
6538 # unambiguous. This will work for all versions that have a maximum of
6539 # three digit groups, separate by '.'s or '_'s. Names are extended with
6540 # ".0.0" to ensure at least three elements for the pack.
6541 #                                       -- H.Merijn Brand (m)'06 23-10-2006
6542
6543 # Can't have leading @ because metaconfig interprets it as a command!
6544 ;@inc_version_list=();
6545 # XXX Redo to do opendir/readdir?
6546 if (-d $stem) {
6547     chdir($stem);
6548     ;@candidates = map {
6549         [ $_, pack "sss", split m/[._]/, "$_.0.0" ] } glob("5.*");
6550     ;@candidates = sort { $a->[1] cmp $b->[1]} @candidates;
6551 }
6552 else {
6553     ;@candidates = ();
6554 }
6555
6556 ($pversion, $aversion, $vsn5005) = map {
6557     pack "sss", split m/[._]/, "$_.0.0" } $version, $api_versionstring, "5.005";
6558 foreach $d (@candidates) {
6559     if ($d->[1] lt $pversion) {
6560         if ($d->[1] ge $aversion) {
6561             unshift(@inc_version_list, grep { -d } $d->[0]."/$archname", $d->[0]);
6562         }
6563         elsif ($d->[1] ge $vsn5005) {
6564             unshift(@inc_version_list, grep { -d } $d->[0]);
6565         }
6566     }
6567     else {
6568         # Skip newer version.  I.e. don't look in
6569         # 5.7.0 if we're installing 5.6.1.
6570     }
6571 }
6572
6573 if (@inc_version_list) {
6574     print join(' ', @inc_version_list);
6575 }
6576 else {
6577     # Blank space to preserve value for next Configure run.
6578     print " ";
6579 }
6580 EOPL
6581 chmod +x getverlist
6582 case "$inc_version_list" in
6583 '')     if test -x "$perl5$exe_ext"; then
6584                 dflt=`$perl5 getverlist`
6585         else
6586                 dflt='none'
6587         fi
6588         ;;
6589 $undef) dflt='none' ;;
6590 *)  eval dflt=\"$inc_version_list\" ;;
6591 esac
6592 case "$dflt" in
6593 ''|' ') dflt=none ;;
6594 esac
6595 case "$dflt" in
6596 5.005) dflt=none ;;
6597 esac
6598 $cat <<EOM
6599
6600 In order to ease the process of upgrading, this version of perl
6601 can be configured to use modules built and installed with earlier
6602 versions of perl that were installed under $prefix.  Specify here
6603 the list of earlier versions that this version of perl should check.
6604 If Configure detected no earlier versions of perl installed under
6605 $prefix, then the list will be empty.  Answer 'none' to tell perl
6606 to not search earlier versions.
6607
6608 The default should almost always be sensible, so if you're not sure,
6609 just accept the default.
6610 EOM
6611
6612 rp='List of earlier versions to include in @INC?'
6613 . ./myread
6614 case "$ans" in
6615 [Nn]one|''|' '|$undef) inc_version_list=' ' ;;
6616 *) inc_version_list="$ans" ;;
6617 esac
6618 case "$inc_version_list" in
6619 ''|' ')
6620         inc_version_list_init='0'
6621         d_inc_version_list="$undef"
6622         ;;
6623 *)      inc_version_list_init=`echo $inc_version_list |
6624                 $sed -e 's/^/"/' -e 's/ /","/g' -e 's/$/",0/'`
6625         d_inc_version_list="$define"
6626         ;;
6627 esac
6628 $rm -f getverlist
6629
6630 : see if malloc/malloc.h has to be included
6631 set malloc/malloc.h i_mallocmalloc
6632 eval $inhdr
6633
6634 : see if this is a malloc.h system
6635 : we want a real compile instead of Inhdr because some systems have a
6636 : malloc.h that just gives a compile error saying to use stdlib.h instead
6637 echo " "
6638 $cat >try.c <<EOCP
6639 #include <stdlib.h>
6640 #include <malloc.h>
6641 #$i_mallocmalloc I_MALLOCMALLOC
6642 #ifdef I_MALLOCMALLOC
6643 # include <malloc/malloc.h>
6644 #endif
6645
6646 int main () { return 0; }
6647 EOCP
6648 set try
6649 if eval $compile; then
6650     echo "<malloc.h> found." >&4
6651     val="$define"
6652 else
6653     echo "<malloc.h> NOT found." >&4
6654     val="$undef"
6655 fi
6656 $rm_try
6657 set i_malloc
6658 eval $setvar
6659
6660 : check for void type
6661 echo " "
6662 echo "Checking to see how well your C compiler groks the void type..." >&4
6663 case "$voidflags" in
6664 '')
6665         $cat >try.c <<EOCP
6666 #$i_stdlib I_STDLIB
6667 #ifdef I_STDLIB
6668 #include <stdlib.h>
6669 #endif
6670 #if TRY & 1
6671 void sub() {
6672 #else
6673 sub() {
6674 #endif
6675         extern void moo();      /* function returning void */
6676         void (*goo)();          /* ptr to func returning void */
6677 #if TRY & 8
6678         void *hue;              /* generic ptr */
6679 #endif
6680 #if TRY & 2
6681         void (*foo[10])();
6682 #endif
6683
6684 #if TRY & 4
6685         if(goo == moo) {
6686                 exit(0);
6687         }
6688 #endif
6689         exit(0);
6690 }
6691 int main() { sub(); }
6692 EOCP
6693         if $cc $ccflags -c -DTRY=$defvoidused try.c >.out 2>&1 ; then
6694                 voidflags=$defvoidused
6695         echo "Good.  It appears to support void to the level $package wants.">&4
6696                 if $contains warning .out >/dev/null 2>&1; then
6697                         echo "However, you might get some warnings that look like this:"
6698                         $cat .out
6699                 fi
6700         else
6701 echo "Hmm, your compiler has some difficulty with void. Checking further..." >&4
6702                 if $cc $ccflags -c -DTRY=1 try.c >/dev/null 2>&1; then
6703                         echo "It supports 1..."
6704                         if $cc $ccflags -c -DTRY=3 try.c >/dev/null 2>&1; then
6705                                 echo "It also supports 2..."
6706                                 if $cc $ccflags -c -DTRY=7 try.c >/dev/null 2>&1; then
6707                                         voidflags=7
6708                                         echo "And it supports 4 but not 8 definitely."
6709                                 else
6710                                         echo "It doesn't support 4..."
6711                                         if $cc $ccflags -c -DTRY=11 try.c >/dev/null 2>&1; then
6712                                                 voidflags=11
6713                                                 echo "But it supports 8."
6714                                         else
6715                                                 voidflags=3
6716                                                 echo "Neither does it support 8."
6717                                         fi
6718                                 fi
6719                         else
6720                                 echo "It does not support 2..."
6721                                 if $cc $ccflags -c -DTRY=13 try.c >/dev/null 2>&1; then
6722                                         voidflags=13
6723                                         echo "But it supports 4 and 8."
6724                                 else
6725                                         if $cc $ccflags -c -DTRY=5 try.c >/dev/null 2>&1; then
6726                                                 voidflags=5
6727                                                 echo "And it supports 4 but has not heard about 8."
6728                                         else
6729                                                 echo "However it supports 8 but not 4."
6730                                         fi
6731                                 fi
6732                         fi
6733                 else
6734                         echo "There is no support at all for void."
6735                         voidflags=0
6736                 fi
6737         fi
6738 esac
6739 case "$voidflags" in
6740 "$defvoidused") ;;
6741 *)      $cat >&4 <<'EOM'
6742   Support flag bits are:
6743     1: basic void declarations.
6744     2: arrays of pointers to functions returning void.
6745     4: operations between pointers to and addresses of void functions.
6746     8: generic void pointers.
6747 EOM
6748         dflt="$voidflags";
6749         rp="Your void support flags add up to what?"
6750         . ./myread
6751         voidflags="$ans"
6752         ;;
6753 esac
6754 $rm_try
6755
6756 : check for length of pointer
6757 echo " "
6758 case "$ptrsize" in
6759 '')
6760         echo "Checking to see how big your pointers are..." >&4
6761         if test "$voidflags" -gt 7; then
6762                 echo '#define VOID_PTR char *' > try.c
6763         else
6764                 echo '#define VOID_PTR void *' > try.c
6765         fi
6766         $cat >>try.c <<EOCP
6767 #include <stdio.h>
6768 #$i_stdlib I_STDLIB
6769 #ifdef I_STDLIB
6770 #include <stdlib.h>
6771 #endif
6772 int main()
6773 {
6774     printf("%d\n", (int)sizeof(VOID_PTR));
6775     exit(0);
6776 }
6777 EOCP
6778         set try
6779         if eval $compile_ok; then
6780                 ptrsize=`$run ./try`
6781                 echo "Your pointers are $ptrsize bytes long."
6782         else
6783                 dflt='4'
6784                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
6785                 rp="What is the size of a pointer (in bytes)?"
6786                 . ./myread
6787                 ptrsize="$ans"
6788         fi
6789         ;;
6790 esac
6791 $rm_try
6792 case "$use64bitall" in
6793 "$define"|true|[yY]*)
6794         case "$ptrsize" in
6795         4)      cat <<EOM >&4
6796
6797 *** You have chosen a maximally 64-bit build,
6798 *** but your pointers are only 4 bytes wide.
6799 *** Please rerun Configure without -Duse64bitall.
6800 EOM
6801                 case "$d_quad" in
6802                 define)
6803                         cat <<EOM >&4
6804 *** Since you have quads, you could possibly try with -Duse64bitint.
6805 EOM
6806                         ;;
6807                 esac
6808                 cat <<EOM >&4
6809 *** Cannot continue, aborting.
6810
6811 EOM
6812
6813                 exit 1
6814                 ;;
6815         esac
6816         ;;
6817 esac
6818
6819
6820 : determine whether to use malloc wrapping
6821 echo " "
6822 case "$usemallocwrap" in
6823 [yY]*|true|$define)     dflt='y' ;;
6824 [nN]*|false|$undef)     dflt='n' ;;
6825 *)      case "$usedevel" in
6826         [yY]*|true|$define)     dflt='y' ;;
6827         *) dflt='n' ;;
6828         esac
6829         ;;
6830 esac
6831 rp="Do you wish to wrap malloc calls to protect against potential overflows?"
6832 . ./myread
6833 usemallocwrap="$ans"
6834 case "$ans" in
6835 y*|true)
6836         usemallocwrap="$define" ;;
6837 *)
6838         usemallocwrap="$undef" ;;
6839 esac
6840
6841 : determine which malloc to compile in
6842 echo " "
6843 case "$usemymalloc" in
6844 [yY]*|true|$define)     dflt='y' ;;
6845 [nN]*|false|$undef)     dflt='n' ;;
6846 *)      case "$ptrsize" in
6847         4) dflt='y' ;;
6848         *) dflt='n' ;;
6849         esac
6850         ;;
6851 esac
6852 rp="Do you wish to attempt to use the malloc that comes with $package?"
6853 . ./myread
6854 usemymalloc="$ans"
6855 case "$ans" in
6856 y*|true)
6857         usemymalloc='y'
6858         mallocsrc='malloc.c'
6859         mallocobj="malloc$_o"
6860         d_mymalloc="$define"
6861         case "$libs" in
6862         *-lmalloc*)
6863                 : Remove malloc from list of libraries to use
6864                 echo "Removing unneeded -lmalloc from library list" >&4
6865                 set `echo X $libs | $sed -e 's/-lmalloc / /' -e 's/-lmalloc$//'`
6866                 shift
6867                 libs="$*"
6868                 echo "libs = $libs" >&4
6869                 ;;
6870         esac
6871         ;;
6872 *)
6873         usemymalloc='n'
6874         mallocsrc=''
6875         mallocobj=''
6876         d_mymalloc="$undef"
6877         ;;
6878 esac
6879
6880 : compute the return types of malloc and free
6881 echo " "
6882 $cat >malloc.c <<END
6883 #$i_malloc I_MALLOC
6884 #$i_stdlib I_STDLIB
6885 #include <stdio.h>
6886 #include <sys/types.h>
6887 #ifdef I_MALLOC
6888 #include <malloc.h>
6889 #endif
6890 #ifdef I_STDLIB
6891 #include <stdlib.h>
6892 #endif
6893 #ifdef TRY_MALLOC
6894 void *malloc();
6895 #endif
6896 #ifdef TRY_FREE
6897 void free();
6898 #endif
6899 END
6900 case "$malloctype" in
6901 '')
6902         if $cc $ccflags -c -DTRY_MALLOC malloc.c >/dev/null 2>&1; then
6903                 malloctype='void *'
6904         else
6905                 malloctype='char *'
6906         fi
6907         ;;
6908 esac
6909 echo "Your system wants malloc to return '$malloctype', it would seem." >&4
6910
6911 case "$freetype" in
6912 '')
6913         if $cc $ccflags -c -DTRY_FREE malloc.c >/dev/null 2>&1; then
6914                 freetype='void'
6915         else
6916                 freetype='int'
6917         fi
6918         ;;
6919 esac
6920 echo "Your system uses $freetype free(), it would seem." >&4
6921 $rm -f malloc.[co]
6922 : determine where site specific architecture-dependent libraries go.
6923 : sitelib  default is /usr/local/lib/perl5/site_perl/$version
6924 : sitearch default is /usr/local/lib/perl5/site_perl/$version/$archname
6925 : sitelib may have an optional trailing /share.
6926 case "$sitearch" in
6927 '')     dflt=`echo $sitelib | $sed 's,/share$,,'`
6928         dflt="$dflt/$archname"
6929         ;;
6930 *)      dflt="$sitearch"
6931         ;;
6932 esac
6933 set sitearch sitearch none
6934 eval $prefixit
6935 $cat <<EOM
6936
6937 The installation process will also create a directory for
6938 architecture-dependent site-specific extensions and modules.
6939
6940 EOM
6941 fn=d~+
6942 rp='Pathname for the site-specific architecture-dependent library files?'
6943 . ./getfile
6944 prefixvar=sitearch
6945 . ./setprefixvar
6946 if $test X"$sitearch" = X"$sitelib"; then
6947         d_sitearch="$undef"
6948 else
6949         d_sitearch="$define"
6950 fi
6951
6952 : Set the vendorprefix variables
6953 $cat <<EOM
6954
6955 The installation process will also create a directory for
6956 vendor-supplied add-ons.  Vendors who supply perl with their system
6957 may find it convenient to place all vendor-supplied files in this
6958 directory rather than in the main distribution directory.  This will
6959 ease upgrades between binary-compatible maintenance versions of perl.
6960
6961 Of course you may also use these directories in whatever way you see
6962 fit.  For example, you might use them to access modules shared over a
6963 company-wide network.
6964
6965 The default answer should be fine for most people.
6966 This causes further questions about vendor add-ons to be skipped
6967 and no vendor-specific directories will be configured for perl.
6968
6969 EOM
6970 rp='Do you want to configure vendor-specific add-on directories?'
6971 case "$usevendorprefix" in
6972 define|true|[yY]*) dflt=y ;;
6973 *)      : User may have set vendorprefix directly on Configure command line.
6974         case "$vendorprefix" in
6975         ''|' ') dflt=n ;;
6976         *)      dflt=y ;;
6977         esac
6978         ;;
6979 esac
6980 . ./myread
6981 case "$ans" in
6982 [yY]*)  fn=d~+
6983         rp='Installation prefix to use for vendor-supplied add-ons?'
6984         case "$vendorprefix" in
6985         '') dflt='' ;;
6986         *)  dflt=$vendorprefix ;;
6987         esac
6988         . ./getfile
6989         : XXX Prefixit unit does not yet support siteprefix and vendorprefix
6990         oldvendorprefix=''
6991         case "$vendorprefix" in
6992         '') ;;
6993         *)      case "$ans" in
6994                 "$prefix") ;;
6995                 *) oldvendorprefix="$prefix";;
6996                 esac
6997                 ;;
6998         esac
6999         usevendorprefix="$define"
7000         vendorprefix="$ans"
7001         vendorprefixexp="$ansexp"
7002         ;;
7003 *)      usevendorprefix="$undef"
7004         vendorprefix=''
7005         vendorprefixexp=''
7006         ;;
7007 esac
7008
7009 : Set the vendorlib variables
7010 case "$vendorprefix" in
7011 '')     d_vendorlib="$undef"
7012         vendorlib=''
7013         vendorlibexp=''
7014         ;;
7015 *)      d_vendorlib="$define"
7016         : determine where vendor-supplied modules go.
7017         : Usual default is /usr/local/lib/perl5/vendor_perl/$version
7018         case "$vendorlib" in
7019         '')
7020                 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
7021                 case "$installstyle" in
7022                 *lib/perl5*) dflt=$vendorprefix/lib/$package/vendor_$prog/$version ;;
7023                 *)           dflt=$vendorprefix/lib/vendor_$prog/$version ;;
7024                 esac
7025                 ;;
7026         *)      dflt="$vendorlib"
7027                 ;;
7028         esac
7029         fn=d~+
7030         rp='Pathname for the vendor-supplied library files?'
7031         . ./getfile
7032         vendorlib="$ans"
7033         vendorlibexp="$ansexp"
7034         ;;
7035 esac
7036 vendorlib_stem=`echo "$vendorlibexp" | sed "s,/$version$,,"`
7037 prefixvar=vendorlib
7038 . ./installprefix
7039
7040 : Set the vendorarch variables
7041 case "$vendorprefix" in
7042 '')     d_vendorarch="$undef"
7043         vendorarch=''
7044         vendorarchexp=''
7045         ;;
7046 *)      d_vendorarch="$define"
7047         : determine where vendor-supplied architecture-dependent libraries go.
7048         : vendorlib  default is /usr/local/lib/perl5/vendor_perl/$version
7049         : vendorarch default is /usr/local/lib/perl5/vendor_perl/$version/$archname
7050         : vendorlib may have an optional trailing /share.
7051         case "$vendorarch" in
7052         '')     dflt=`echo $vendorlib | $sed 's,/share$,,'`
7053                 dflt="$dflt/$archname"
7054                 ;;
7055         *)      dflt="$vendorarch" ;;
7056         esac
7057         fn=d~+
7058         rp='Pathname for vendor-supplied architecture-dependent files?'
7059         . ./getfile
7060         vendorarch="$ans"
7061         vendorarchexp="$ansexp"
7062         ;;
7063 esac
7064 prefixvar=vendorarch
7065 . ./installprefix
7066 if $test X"$vendorarch" = X"$vendorlib"; then
7067         d_vendorarch="$undef"
7068 else
7069         d_vendorarch="$define"
7070 fi
7071
7072 : Final catch-all directories to search
7073 $cat <<EOM
7074
7075 Lastly, you can have perl look in other directories for extensions and
7076 modules in addition to those already specified.
7077 These directories will be searched after 
7078         $sitearch 
7079         $sitelib 
7080 EOM
7081 test X"$vendorlib" != "X" && echo '     ' $vendorlib
7082 test X"$vendorarch" != "X" && echo '    ' $vendorarch
7083 echo ' '
7084 case "$otherlibdirs" in
7085 ''|' ') dflt='none' ;;
7086 *)      dflt="$otherlibdirs" ;;
7087 esac
7088 $cat <<EOM
7089 Enter a colon-separated set of extra paths to include in perl's @INC
7090 search path, or enter 'none' for no extra paths.
7091
7092 EOM
7093
7094 rp='Colon-separated list of additional directories for perl to search?'
7095 . ./myread
7096 case "$ans" in
7097 ' '|''|none)    otherlibdirs=' ' ;;     
7098 *)      otherlibdirs="$ans" ;;
7099 esac
7100 case "$otherlibdirs" in
7101 ' ') val=$undef ;;
7102 *)      val=$define ;;
7103 esac
7104 set d_perl_otherlibdirs
7105 eval $setvar
7106
7107 : Cruising for prototypes
7108 echo " "
7109 echo "Checking out function prototypes..." >&4
7110 $cat >prototype.c <<EOCP
7111 #$i_stdlib I_STDLIB
7112 #ifdef I_STDLIB
7113 #include <stdlib.h>
7114 #endif
7115 int main(int argc, char *argv[]) {
7116         exit(0);}
7117 EOCP
7118 if $cc $ccflags -c prototype.c >prototype.out 2>&1 ; then
7119         echo "Your C compiler appears to support function prototypes."
7120         val="$define"
7121 else
7122         echo "Your C compiler doesn't seem to understand function prototypes."
7123         val="$undef"
7124 fi
7125 set prototype
7126 eval $setvar
7127 $rm -f prototype*
7128
7129 : Check if ansi2knr is required
7130 case "$prototype" in
7131 "$define") ;;
7132 *)      ansi2knr='ansi2knr'
7133         echo " "
7134         cat <<EOM >&4
7135
7136 $me:  FATAL ERROR:
7137 This version of $package can only be compiled by a compiler that 
7138 understands function prototypes.  Unfortunately, your C compiler 
7139         $cc $ccflags
7140 doesn't seem to understand them.  Sorry about that.
7141
7142 If GNU cc is available for your system, perhaps you could try that instead.  
7143
7144 Eventually, we hope to support building Perl with pre-ANSI compilers.
7145 If you would like to help in that effort, please contact <perlbug@perl.org>.
7146
7147 Aborting Configure now.
7148 EOM
7149         exit 2
7150         ;;
7151 esac
7152
7153 : DTrace support
7154 dflt_dtrace='/usr/sbin/dtrace'
7155 $test -x /usr/bin/dtrace && dflt_dtrace='/usr/bin/dtrace'
7156
7157 cat <<EOM
7158
7159 Perl can be built to support DTrace on platforms that support it.
7160 DTrace is a diagnosis and performance analysis tool from Sun.
7161
7162 If this doesn't make any sense to you, just accept the default '$dflt'.
7163 EOM
7164
7165 while $test 1 ; do
7166         case "$usedtrace" in
7167         $define|true|[yY]*)
7168                 dflt='y'
7169                 ;;
7170         ?*)
7171                 dflt='y'
7172                 dflt_dtrace=$usedtrace
7173                 ;;
7174         *)
7175                 dflt='n'
7176                 ;;
7177         esac
7178
7179         rp='Support DTrace if available?'
7180         . ./myread
7181         case "$ans" in
7182         y|Y)    val="$define" ;;
7183         *)      val="$undef" ;;
7184         esac
7185         set usedtrace
7186         eval $setvar
7187
7188         test "X$usedtrace" != "X$define" && break
7189
7190         echo " "
7191         rp='Where is the dtrace executable?'
7192         dflt=$dflt_dtrace
7193         . ./getfile
7194         val="$ans"
7195         set dtrace
7196         eval $setvar
7197
7198         if $test -f $dtrace
7199         then
7200                 if $dtrace -h -s ../perldtrace.d \
7201                         -o perldtrace.tmp >/dev/null 2>&1 \
7202                         && rm -f perldtrace.tmp
7203                 then
7204                         echo " "
7205                         echo "Good: your $dtrace knows about the -h flag."
7206                 else
7207                         cat >&2 <<EOM
7208
7209 *** $me:  Fatal Error:  $dtrace doesn't support -h flag
7210 ***
7211 *** Your installed dtrace doesn't support the -h switch to compile a D
7212 *** program into a C header. Can't continue.
7213
7214 EOM
7215                         exit 1
7216                 fi
7217                 break;
7218         fi
7219
7220         case "$fastread" in
7221         yes)
7222                 cat >&2 <<EOM
7223
7224 *** $me:  Fatal Error:  $dtrace not found.
7225 *** Can't continue.
7226
7227 EOM
7228                 exit 1
7229                 ;;
7230         *)
7231                 echo "*** $dtrace was not found."
7232                 echo " "
7233                 ;;
7234         esac
7235 done
7236
7237 : See if we want extra modules installed
7238 echo " "
7239 case "$extras" in
7240 '') dflt='n';;
7241 *) dflt='y';;
7242 esac
7243 cat <<EOM
7244 Perl can be built with extra modules or bundles of modules which
7245 will be fetched from the CPAN and installed alongside Perl.
7246
7247 Notice that you will need access to the CPAN; either via the Internet,
7248 or a local copy, for example a CD-ROM or a local CPAN mirror.  (You will
7249 be asked later to configure the CPAN.pm module which will in turn do
7250 the installation of the rest of the extra modules or bundles.)
7251
7252 Notice also that if the modules require any external software such as
7253 libraries and headers (the libz library and the zlib.h header for the
7254 Compress::Zlib module, for example) you MUST have any such software
7255 already installed, this configuration process will NOT install such
7256 things for you.
7257
7258 If this doesn't make any sense to you, just accept the default '$dflt'.
7259 EOM
7260 rp='Install any extra modules (y or n)?'
7261 . ./myread
7262 case "$ans" in
7263 y|Y)
7264         cat <<EOM
7265
7266 Please list any extra modules or bundles to be installed from CPAN,
7267 with spaces between the names.  The names can be in any format the
7268 'install' command of CPAN.pm will understand.  (Answer 'none',
7269 without the quotes, to install no extra modules or bundles.)
7270 EOM
7271         rp='Extras?'
7272         dflt="$extras"
7273         . ./myread
7274         extras="$ans"
7275 esac
7276 case "$extras" in
7277 ''|'none')
7278         val=''
7279         $rm -f ../extras.lst
7280         ;;
7281 *)      echo "(Saving the list of extras for later...)"
7282         echo "$extras" > ../extras.lst
7283         val="'$extras'"
7284         ;;
7285 esac
7286 set extras
7287 eval $setvar
7288 echo " "
7289
7290 : determine where html pages for programs go
7291 set html1dir html1dir none
7292 eval $prefixit
7293 $cat <<EOM
7294
7295 If you wish to install html files for programs in $spackage, indicate
7296 the appropriate directory here.  To skip installing html files,
7297 answer "none".
7298 EOM
7299 case "$html1dir" in
7300 ''|none|$undef|' ') dflt=none ;;
7301 *) dflt=$html1dir ;;
7302 esac
7303 fn=dn+~
7304 rp="Directory for the main $spackage html pages?"
7305 . ./getfile
7306 prefixvar=html1dir
7307 . ./setprefixvar
7308 : Use ' ' for none so value is preserved next time through Configure
7309 $test X"$html1dir" = "X" && html1dir=' '
7310
7311 : determine where html pages for libraries and modules go
7312 set html3dir html3dir none
7313 eval $prefixit
7314 $cat <<EOM
7315
7316 If you wish to install html files for modules associated with $spackage,
7317 indicate the appropriate directory here.  To skip installing html files,
7318 answer "none".
7319 EOM
7320 : There is no obvious default.  If they have specified html1dir, then
7321 : try to key off that, possibly changing .../html1 into .../html3.
7322 case "$html3dir" in
7323 '') html3dir=`echo "$html1dir" | $sed 's/1$/3$/'` ;;
7324 *) dflt=$html3dir ;;
7325 esac
7326 fn=dn+~
7327 rp="Directory for the $spackage module html pages?"
7328 . ./getfile
7329 prefixvar=html3dir
7330 . ./setprefixvar
7331 : Use ' ' for none so value is preserved next time through Configure
7332 $test X"$html3dir" = "X" && html3dir=' '
7333
7334 : determine whether to install perl also as /usr/bin/perl
7335
7336 echo " "
7337 if $test -d /usr/bin -a "X$installbin" != X/usr/bin; then
7338         $cat <<EOM
7339 Many scripts expect perl to be installed as /usr/bin/perl.
7340
7341 If you want to, I can install the perl you are about to compile
7342 as /usr/bin/perl (in addition to $bin/perl).
7343 EOM
7344         if test -f /usr/bin/perl; then
7345             $cat <<EOM
7346
7347 However, please note that because you already have a /usr/bin/perl,
7348 overwriting that with a new Perl would very probably cause problems.
7349 Therefore I'm assuming you don't want to do that (unless you insist).
7350
7351 EOM
7352             case "$installusrbinperl" in
7353             "$define"|[yY]*)    dflt='y';;
7354             *)                  dflt='n';;
7355             esac
7356         else
7357             $cat <<EOM
7358
7359 Since you don't have a /usr/bin/perl I'm assuming creating one is okay.
7360
7361 EOM
7362             case "$installusrbinperl" in
7363             "$undef"|[nN]*)     dflt='n';;
7364             *)                  dflt='y';;
7365             esac
7366         fi
7367         rp="Do you want to install perl as /usr/bin/perl?"
7368         . ./myread
7369         case "$ans" in
7370         [yY]*)  val="$define";;
7371         *)      val="$undef" ;;
7372         esac
7373 else
7374         val="$undef"
7375 fi
7376 set installusrbinperl
7377 eval $setvar
7378
7379 : Check if we are using the GNU C library
7380 echo " "
7381 echo "Checking for GNU C Library..." >&4
7382 cat >try.c <<'EOCP'
7383 /* Find out version of GNU C library.  __GLIBC__ and __GLIBC_MINOR__
7384    alone are insufficient to distinguish different versions, such as
7385    2.0.6 and 2.0.7.  The function gnu_get_libc_version() appeared in
7386    libc version 2.1.0.      A. Dougherty,  June 3, 2002.
7387 */
7388 #include <stdio.h>
7389 int main(void)
7390 {
7391 #ifdef __GLIBC__
7392 #   ifdef __GLIBC_MINOR__
7393 #       if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1 && !defined(__cplusplus)
7394 #           include <gnu/libc-version.h>
7395             printf("%s\n",  gnu_get_libc_version());
7396 #       else
7397             printf("%d.%d\n",  __GLIBC__, __GLIBC_MINOR__);
7398 #       endif
7399 #   else
7400         printf("%d\n",  __GLIBC__);
7401 #   endif
7402     return 0;
7403 #else
7404     return 1;
7405 #endif
7406 }
7407 EOCP
7408 set try
7409 if eval $compile_ok && $run ./try > glibc.ver; then
7410         val="$define"
7411         gnulibc_version=`$cat glibc.ver`
7412         echo "You are using the GNU C Library version $gnulibc_version"
7413 else
7414         val="$undef"
7415         gnulibc_version=''
7416         echo "You are not using the GNU C Library"
7417 fi
7418 $rm_try glibc.ver
7419 set d_gnulibc
7420 eval $setvar
7421
7422 : see if nm is to be used to determine whether a symbol is defined or not
7423 case "$usenm" in
7424 '')
7425         dflt=''
7426         case "$d_gnulibc" in
7427         "$define")
7428                 echo " "
7429                 echo "nm probably won't work on the GNU C Library." >&4
7430                 dflt=n
7431                 ;;
7432         esac
7433         case "$dflt" in
7434         '') 
7435                 if $test "$osname" = aix -a "X$PASE" != "Xdefine" -a ! -f /lib/syscalls.exp; then
7436                         echo " "
7437                         echo "Whoops!  This is an AIX system without /lib/syscalls.exp!" >&4
7438                         echo "'nm' won't be sufficient on this sytem." >&4
7439                         dflt=n
7440                 fi
7441                 ;;
7442         esac
7443         case "$dflt" in
7444         '') dflt=`$egrep 'inlibc|csym' $rsrc/Configure | wc -l 2>/dev/null`
7445                 if $test $dflt -gt 20; then
7446                         dflt=y
7447                 else
7448                         dflt=n
7449                 fi
7450                 ;;
7451         esac
7452         ;;
7453 *)
7454         case "$usenm" in
7455         true|$define) dflt=y;;
7456         *) dflt=n;;
7457         esac
7458         ;;
7459 esac
7460 $cat <<EOM
7461
7462 I can use $nm to extract the symbols from your C libraries. This
7463 is a time consuming task which may generate huge output on the disk (up
7464 to 3 megabytes) but that should make the symbols extraction faster. The
7465 alternative is to skip the 'nm' extraction part and to compile a small
7466 test program instead to determine whether each symbol is present. If
7467 you have a fast C compiler and/or if your 'nm' output cannot be parsed,
7468 this may be the best solution.
7469
7470 You probably shouldn't let me use 'nm' if you are using the GNU C Library.
7471
7472 EOM
7473 rp="Shall I use $nm to extract C symbols from the libraries?"
7474 . ./myread
7475 case "$ans" in
7476 [Nn]*) usenm=false;;
7477 *) usenm=true;;
7478 esac
7479
7480 runnm=$usenm
7481 case "$reuseval" in
7482 true) runnm=false;;
7483 esac
7484
7485 : nm options which may be necessary
7486 case "$nm_opt" in
7487 '') if $test -f /mach_boot; then
7488                 nm_opt=''       # Mach
7489         elif $test -d /usr/ccs/lib; then
7490                 nm_opt='-p'     # Solaris (and SunOS?)
7491         elif $test -f /dgux; then
7492                 nm_opt='-p'     # DG-UX
7493         elif $test -f /lib64/rld; then
7494                 nm_opt='-p'     # 64-bit Irix
7495         else
7496                 nm_opt=''
7497         fi;;
7498 esac
7499
7500 : nm options which may be necessary for shared libraries but illegal
7501 : for archive libraries.  Thank you, Linux.
7502 case "$nm_so_opt" in
7503 '')     case "$myuname" in
7504         *linux*|gnu*)
7505                 if $nm --help | $grep 'dynamic' > /dev/null 2>&1; then
7506                         nm_so_opt='--dynamic'
7507                 fi
7508                 ;;
7509         esac
7510         ;;
7511 esac
7512
7513 : Figure out where the libc is located
7514 case "$runnm" in
7515 true)
7516 : get list of predefined functions in a handy place
7517 echo " "
7518 case "$libc" in
7519 '') libc=unknown
7520         case "$libs" in
7521         *-lc_s*) libc=`./loc libc_s$_a $libc $libpth`
7522         esac
7523         ;;
7524 esac
7525 case "$libs" in
7526 '') ;;
7527 *)  for thislib in $libs; do
7528         case "$thislib" in
7529         -lc|-lc_s)
7530                 : Handle C library specially below.
7531                 ;;
7532         -l*)
7533                 thislib=`echo $thislib | $sed -e 's/^-l//'`
7534                 if try=`./loc lib$thislib.$so.'*' X $libpth`; $test -f "$try"; then
7535                         :
7536                 elif try=`./loc lib$thislib.$so X $libpth`; $test -f "$try"; then
7537                         :
7538                 elif try=`./loc lib$thislib$_a X $libpth`; $test -f "$try"; then
7539                         :
7540                 elif try=`./loc $thislib$_a X $libpth`; $test -f "$try"; then
7541                         :
7542                 elif try=`./loc lib$thislib X $libpth`; $test -f "$try"; then
7543                         :
7544                 elif try=`./loc $thislib X $libpth`; $test -f "$try"; then
7545                         :
7546                 elif try=`./loc Slib$thislib$_a X $xlibpth`; $test -f "$try"; then
7547                         :
7548                 else
7549                         try=''
7550                 fi
7551                 libnames="$libnames $try"
7552                 ;;
7553         *) libnames="$libnames $thislib" ;;
7554         esac
7555         done
7556         ;;
7557 esac
7558 xxx=normal
7559 case "$libc" in
7560 unknown)
7561         set /lib/libc.$so
7562         for xxx in $libpth; do
7563                 $test -r $1 || set $xxx/libc.$so
7564                 : The messy sed command sorts on library version numbers.
7565                 $test -r $1 || \
7566                         set `echo blurfl; echo $xxx/libc.$so.[0-9]* | \
7567                         tr ' ' $trnl | egrep -v '\.[A-Za-z]*$' | $sed -e '
7568                                 h
7569                                 s/[0-9][0-9]*/0000&/g
7570                                 s/0*\([0-9][0-9][0-9][0-9][0-9]\)/\1/g
7571                                 G
7572                                 s/\n/ /' | \
7573                          $sort | $sed -e 's/^.* //'`
7574                 eval set \$$#
7575         done
7576         $test -r $1 || set /usr/ccs/lib/libc.$so
7577         $test -r $1 || set /lib/libsys_s$_a
7578         ;;
7579 *)
7580         set blurfl
7581         ;;
7582 esac
7583 if $test -r "$1"; then
7584         echo "Your (shared) C library seems to be in $1."
7585         libc="$1"
7586 elif $test -r /lib/libc && $test -r /lib/clib; then
7587         echo "Your C library seems to be in both /lib/clib and /lib/libc."
7588         xxx=apollo
7589         libc='/lib/clib /lib/libc'
7590         if $test -r /lib/syslib; then
7591                 echo "(Your math library is in /lib/syslib.)"
7592                 libc="$libc /lib/syslib"
7593         fi
7594 elif $test -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
7595         echo "Your C library seems to be in $libc, as you said before."
7596 elif $test -r $incpath/usr/lib/libc$_a; then
7597         libc=$incpath/usr/lib/libc$_a;
7598         echo "Your C library seems to be in $libc.  That's fine."
7599 elif $test -r /lib/libc$_a; then
7600         libc=/lib/libc$_a;
7601         echo "Your C library seems to be in $libc.  You're normal."
7602 else
7603         if tans=`./loc libc$_a blurfl/dyick $libpth`; $test -r "$tans"; then
7604                 :
7605         elif tans=`./loc libc blurfl/dyick $libpth`; $test -r "$tans"; then
7606                 libnames="$libnames "`./loc clib blurfl/dyick $libpth`
7607         elif tans=`./loc clib blurfl/dyick $libpth`; $test -r "$tans"; then
7608                 :
7609         elif tans=`./loc Slibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
7610                 :
7611         elif tans=`./loc Mlibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
7612                 :
7613         else
7614                 tans=`./loc Llibc$_a blurfl/dyick $xlibpth`
7615         fi
7616         if $test -r "$tans"; then
7617                 echo "Your C library seems to be in $tans, of all places."
7618                 libc=$tans
7619         else
7620                 libc='blurfl'
7621         fi
7622 fi
7623 if $test $xxx = apollo -o -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
7624         dflt="$libc"
7625         cat <<EOM
7626
7627 If the guess above is wrong (which it might be if you're using a strange
7628 compiler, or your machine supports multiple models), you can override it here.
7629
7630 EOM
7631 else
7632         dflt=''
7633         echo $libpth | $tr ' ' $trnl | $sort | $uniq > libpath
7634         cat >&4 <<EOM
7635 I can't seem to find your C library.  I've looked in the following places:
7636
7637 EOM
7638         $sed 's/^/      /' libpath
7639         cat <<EOM
7640
7641 None of these seems to contain your C library. I need to get its name...
7642
7643 EOM
7644 fi
7645 fn=f
7646 rp='Where is your C library?'
7647 . ./getfile
7648 libc="$ans"
7649
7650 echo " "
7651 echo $libc $libnames | $tr ' ' $trnl | $sort | $uniq > libnames
7652 set X `cat libnames`
7653 shift
7654 xxx=files
7655 case $# in 1) xxx=file; esac
7656 echo "Extracting names from the following $xxx for later perusal:" >&4
7657 echo " "
7658 $sed 's/^/      /' libnames >&4
7659 echo " "
7660 $echo $n "This may take a while...$c" >&4
7661
7662 for file in $*; do
7663         case $file in
7664         *$so*) $nm $nm_so_opt $nm_opt $file 2>/dev/null;;
7665         *) $nm $nm_opt $file 2>/dev/null;;
7666         esac
7667 done >libc.tmp
7668
7669 $echo $n ".$c"
7670 $grep fprintf libc.tmp > libc.ptf
7671 xscan='eval "<libc.ptf $com >libc.list"; $echo $n ".$c" >&4'
7672 xrun='eval "<libc.tmp $com >libc.list"; echo "done." >&4'
7673 xxx='[ADTSIW]'
7674 if com="$sed -n -e 's/__IO//' -e 's/^.* $xxx  *//p'";\
7675         eval $xscan;\
7676         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7677                 eval $xrun
7678 elif com="$sed -n -e 's/^__*//' -e 's/^\([a-zA-Z_0-9$]*\).*xtern.*/\1/p'";\
7679         eval $xscan;\
7680         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7681                 eval $xrun
7682 elif com="$sed -n -e '/|UNDEF/d' -e '/FUNC..GL/s/^.*|__*//p'";\
7683         eval $xscan;\
7684         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7685                 eval $xrun
7686 elif com="$sed -n -e 's/^.* D __*//p' -e 's/^.* D //p'";\
7687         eval $xscan;\
7688         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7689                 eval $xrun
7690 elif com="$sed -n -e 's/^_//' -e 's/^\([a-zA-Z_0-9]*\).*xtern.*text.*/\1/p'";\
7691         eval $xscan;\
7692         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7693                 eval $xrun
7694 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p'";\
7695         eval $xscan;\
7696         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7697                 eval $xrun
7698 elif com="$grep '|' | $sed -n -e '/|COMMON/d' -e '/|DATA/d' \
7699                                 -e '/ file/d' -e 's/^\([^       ]*\).*/\1/p'";\
7700         eval $xscan;\
7701         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7702                 eval $xrun
7703 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p' -e 's/^.*|FUNC |WEAK .*|//p'";\
7704         eval $xscan;\
7705         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7706                 eval $xrun
7707 elif com="$sed -n -e 's/^__//' -e '/|Undef/d' -e '/|Proc/s/ .*//p'";\
7708         eval $xscan;\
7709         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7710                 eval $xrun
7711 elif com="$sed -n -e 's/^.*|Proc .*|Text *| *//p'";\
7712         eval $xscan;\
7713         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7714                 eval $xrun
7715 elif com="$sed -n -e '/Def. Text/s/.* \([^ ]*\)\$/\1/p'";\
7716         eval $xscan;\
7717         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7718                 eval $xrun
7719 elif com="$sed -n -e 's/^[-0-9a-f ]*_\(.*\)=.*/\1/p'";\
7720         eval $xscan;\
7721         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7722                 eval $xrun
7723 elif com="$sed -n -e 's/.*\.text n\ \ \ \.//p'";\
7724         eval $xscan;\
7725         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7726                 eval $xrun
7727 elif com="sed -n -e 's/^__.*//' -e 's/[       ]*D[    ]*[0-9]*.*//p'";\
7728         eval $xscan;\
7729         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7730                 eval $xrun
7731 else
7732         $nm -p $* 2>/dev/null >libc.tmp
7733         $grep fprintf libc.tmp > libc.ptf
7734         if com="$sed -n -e 's/^.* [ADTSIW]  *_[_.]*//p' -e 's/^.* [ADTSIW] //p'";\
7735                 eval $xscan; $contains '^fprintf$' libc.list >/dev/null 2>&1
7736         then
7737                 nm_opt='-p'
7738                 eval $xrun
7739         else
7740                 echo " "
7741                 echo "$nm didn't seem to work right. Trying $ar instead..." >&4
7742                 com=''
7743                 if $ar t $libc > libc.tmp && \
7744                         $contains '^fprintf$' libc.tmp >/dev/null 2>&1
7745                 then
7746                         for thisname in $libnames $libc; do
7747                                 $ar t $thisname >>libc.tmp
7748                         done
7749                         $sed -e "s/\\$_o\$//" < libc.tmp > libc.list
7750                         echo "Ok." >&4
7751                 elif test "X$osname" = "Xos2" && $ar tv $libc > libc.tmp; then
7752                         for thisname in $libnames $libc; do
7753                                 $ar tv $thisname >>libc.tmp
7754                                 emximp -o tmp.imp $thisname \
7755                                     2>/dev/null && \
7756                                     $sed -e 's/^\([_a-zA-Z0-9]*\) .*$/\1/p' \
7757                                     < tmp.imp >>libc.tmp
7758                                 $rm -f tmp.imp
7759                         done
7760                         $sed -e "s/\\$_o\$//" -e 's/^ \+//' < libc.tmp > libc.list
7761                         echo "Ok." >&4
7762                 else
7763                         echo "$ar didn't seem to work right." >&4
7764                         echo "Maybe this is a Cray...trying bld instead..." >&4
7765                         if  bld t $libc | \
7766                                 $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" > libc.list &&
7767                                 $test -s libc.list
7768                         then
7769                                 for thisname in $libnames; do
7770                                         bld t $libnames | \
7771                                         $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" >>libc.list
7772                                         $ar t $thisname >>libc.tmp
7773                                 done
7774                                 echo "Ok." >&4
7775                         else
7776                                 echo "That didn't work either.  Giving up." >&4
7777                                 exit 1
7778                         fi
7779                 fi
7780         fi
7781 fi
7782 nm_extract="$com"
7783 case "$PASE" in
7784 define)
7785     echo " "
7786     echo "Since you are compiling for PASE, extracting more symbols from libc.a ...">&4
7787     dump -Tv /lib/libc.a | awk '$7 == "/unix" {print $5 " " $8}' | grep "^SV" | awk '{print $2}' >> libc.list
7788     ;;
7789 *)  if $test -f /lib/syscalls.exp; then
7790         echo " "
7791         echo "Also extracting names from /lib/syscalls.exp for good ole AIX..." >&4
7792         $sed -n 's/^\([^        ]*\)[   ]*syscall[0-9]*[        ]*$/\1/p' \
7793                 /lib/syscalls.exp >>libc.list
7794     fi
7795     ;;
7796 esac
7797 ;;
7798 esac
7799 $rm -f libnames libpath
7800
7801 : see if dld is available
7802 set dld.h i_dld
7803 eval $inhdr
7804
7805 : Check if we are using C++
7806 echo " "
7807 echo "Checking for C++..." >&4
7808 $cat >try.c <<'EOCP'
7809 #include <stdio.h>
7810 int main(void)
7811 {
7812 #ifdef __cplusplus
7813     return 0;
7814 #else
7815     return 1;
7816 #endif
7817 }
7818 EOCP
7819 set try
7820 if eval $compile_ok && $run ./try; then
7821         val="$define"
7822         echo "You are using a C++ compiler."
7823 else
7824         val="$undef"
7825         echo "You are not using a C++ compiler."
7826 fi
7827 $rm_try cplusplus$$
7828 set d_cplusplus
7829 eval $setvar
7830
7831 : is a C symbol defined?
7832 csym='tlook=$1;
7833 case "$3" in
7834 -v) tf=libc.tmp; tdc="";;
7835 -a) tf=libc.tmp; tdc="[]";;
7836 *) tlook="^$1\$"; tf=libc.list; tdc="()";;
7837 esac;
7838 case "$d_cplusplus" in
7839     $define)    extern_C="extern \"C\"" ;;
7840     *)          extern_C="extern"       ;;
7841 esac;
7842 tx=yes;
7843 case "$reuseval-$4" in
7844 true-) ;;
7845 true-*) tx=no; eval "tval=\$$4"; case "$tval" in "") tx=yes;; esac;;
7846 esac;
7847 case "$tx" in
7848 yes)
7849         tval=false;
7850         if $test "$runnm" = true; then
7851                 if $contains $tlook $tf >/dev/null 2>&1; then
7852                         tval=true;
7853                 elif $test "$mistrustnm" = compile -o "$mistrustnm" = run; then
7854                         echo "$extern_C void *$1$tdc; void *(*(p()))$tdc { return &$1; } int main() { if(p()) return(0); else return(1); }"> try.c;
7855                         $cc -o try $optimize $ccflags $ldflags try.c >/dev/null 2>&1 $libs && tval=true;
7856                         $test "$mistrustnm" = run -a -x try && { $run ./try$_exe >/dev/null 2>&1 || tval=false; };
7857                         $rm_try;
7858                 fi;
7859         else
7860                 echo "$extern_C void *$1$tdc; void *(*(p()))$tdc { return &$1; } int main() { if(p()) return(0); else return(1); }"> try.c;
7861                 $cc -o try $optimize $ccflags $ldflags try.c $libs >/dev/null 2>&1 && tval=true;
7862                 $rm_try;
7863         fi;
7864         ;;
7865 *)
7866         case "$tval" in
7867         $define) tval=true;;
7868         *) tval=false;;
7869         esac;
7870         ;;
7871 esac;
7872 eval "$2=$tval"'
7873
7874 : define an is-in-libc? function
7875 inlibc='echo " "; td=$define; tu=$undef;
7876 sym=$1; var=$2; eval "was=\$$2";
7877 tx=yes;
7878 case "$reuseval$was" in
7879 true) ;;
7880 true*) tx=no;;
7881 esac;
7882 case "$tx" in
7883 yes)
7884         set $sym tres -f;
7885         eval $csym;
7886         case "$tres" in
7887         true)
7888                 echo "$sym() found." >&4;
7889                 case "$was" in $undef) . ./whoa; esac; eval "$var=\$td";;
7890         *)
7891                 echo "$sym() NOT found." >&4;
7892                 case "$was" in $define) . ./whoa; esac; eval "$var=\$tu";;
7893         esac;;
7894 *)
7895         case "$was" in
7896         $define) echo "$sym() found." >&4;;
7897         *) echo "$sym() NOT found." >&4;;
7898         esac;;
7899 esac'
7900
7901 : see if dlopen exists
7902 xxx_runnm="$runnm"
7903 xxx_ccflags="$ccflags"
7904 runnm=false
7905 : with g++ one needs -shared to get is-in-libc to work for dlopen
7906 case "$gccversion" in
7907 '')     ;;
7908 *)      case "$d_cplusplus" in
7909         "$define") ccflags="$ccflags -shared" ;;
7910         esac
7911         ;;
7912 esac
7913 set dlopen d_dlopen
7914 eval $inlibc
7915 runnm="$xxx_runnm"
7916 ccflags="$xxx_ccflags"
7917
7918 : see if this is a unistd.h system
7919 set unistd.h i_unistd
7920 eval $inhdr
7921
7922 : determine which dynamic loading, if any, to compile in
7923 echo " "
7924 dldir="ext/DynaLoader"
7925 case "$usedl" in
7926 $define|y|true)
7927         dflt='y'
7928         usedl="$define"
7929         ;;
7930 $undef|n|false)
7931         dflt='n'
7932         usedl="$undef"
7933         ;;
7934 *)
7935         dflt='n'
7936         case "$d_dlopen" in
7937             $define) dflt='y' ;;
7938         esac
7939         case "$i_dld" in
7940             $define) dflt='y' ;;
7941         esac
7942         : Does a dl_xxx.xs file exist for this operating system
7943         $test -f $rsrc/$dldir/dl_${osname}.xs && dflt='y'
7944         ;;
7945 esac
7946 rp="Do you wish to use dynamic loading?"
7947 . ./myread
7948 usedl="$ans"
7949 bin_ELF="$undef"
7950 case "$ans" in
7951 y*) usedl="$define"
7952         case "$dlsrc" in
7953         '')
7954                 if $test -f $rsrc/$dldir/dl_${osname}.xs ; then
7955                         dflt="$dldir/dl_${osname}.xs"
7956                 elif $test "$d_dlopen" = "$define" ; then
7957                         dflt="$dldir/dl_dlopen.xs"
7958                 elif $test "$i_dld" = "$define" ; then
7959                         dflt="$dldir/dl_dld.xs"
7960                 else
7961                         dflt=''
7962                 fi
7963                 ;;
7964         *)      dflt="$dldir/$dlsrc"
7965                 ;;
7966         esac
7967     echo "The following dynamic loading files are available:"
7968         : Can not go over to $dldir because getfile has path hard-coded in.
7969         tdir=`pwd`; cd "$rsrc"; $ls -C $dldir/dl*.xs; cd "$tdir"
7970         rp="Source file to use for dynamic loading"
7971         fn="fne"
7972         gfpth="$src"
7973         . ./getfile
7974         usedl="$define"
7975         : emulate basename
7976         dlsrc=`echo $ans | $sed -e 's%.*/\([^/]*\)$%\1%'`
7977
7978         $cat << EOM
7979
7980 Some systems may require passing special flags to $cc -c to
7981 compile modules that will be used to create a shared library.
7982 To use no flags, say "none".
7983
7984 EOM
7985     case "$cccdlflags" in
7986     '') case "$gccversion" in
7987                 '') case "$osname" in
7988                         hpux)   dflt='+z' ;;
7989                         next)   dflt='none' ;;
7990                         irix*)  dflt='-KPIC' ;;
7991                         svr4*|esix*|solaris|nonstopux) dflt='-KPIC' ;;
7992                         sunos)  dflt='-pic' ;;
7993                         *)      dflt='none' ;;
7994                     esac
7995                         ;;
7996                 *)  case "$osname" in
7997                         darwin) dflt='none' ;;
7998                         linux*|svr4*|esix*|solaris|nonstopux) dflt='-fPIC' ;;
7999                         *)      dflt='-fpic' ;;
8000                     esac ;;
8001             esac ;;
8002         ' ') dflt='none' ;;
8003     *)  dflt="$cccdlflags" ;;
8004     esac
8005     rp="Any special flags to pass to $cc -c to compile shared library modules?"
8006     . ./myread
8007     case "$ans" in
8008     none) cccdlflags=' ' ;;
8009     *) cccdlflags="$ans" ;;
8010     esac
8011
8012     cat << EOM
8013
8014 Some systems use ld to create libraries that can be dynamically loaded,
8015 while other systems (such as those using ELF) use $cc.
8016
8017 EOM
8018         case "$ld" in
8019         '')     $cat >try.c <<EOM
8020 /* Test for whether ELF binaries are produced */
8021 #include <fcntl.h>
8022 #$i_stdlib I_STDLIB
8023 #ifdef I_STDLIB
8024 #include <stdlib.h>
8025 #endif
8026 #$i_unistd I_UNISTD
8027 #ifdef I_UNISTD
8028 #include <unistd.h>
8029 #endif
8030 int main() {
8031         char b[4];
8032         int i = open("a.out",O_RDONLY);
8033         if(i == -1)
8034                 exit(1); /* fail */
8035         if(read(i,b,4)==4 && b[0]==127 && b[1]=='E' && b[2]=='L' && b[3]=='F')
8036                 exit(0); /* succeed (yes, it's ELF) */
8037         else
8038                 exit(1); /* fail */
8039 }
8040 EOM
8041                 if $cc $ccflags $ldflags try.c >/dev/null 2>&1 && $run ./a.out; then
8042                         cat <<EOM
8043 You appear to have ELF support.  I'll use $cc to build dynamic libraries.
8044 EOM
8045                         dflt="$cc"
8046                         bin_ELF="$define"
8047                 else
8048                         echo "I'll use ld to build dynamic libraries."
8049                         dflt='ld'
8050                 fi
8051                 $rm_try
8052                 ;;
8053         *)      dflt="$ld"
8054                 ;;
8055         esac
8056
8057     rp="What command should be used to create dynamic libraries?"
8058     . ./myread
8059         ld="$ans"
8060
8061     cat << EOM
8062
8063 Some systems may require passing special flags to $ld to create a
8064 library that can be dynamically loaded.  If your ld flags include
8065 -L/other/path options to locate libraries outside your loader's normal
8066 search path, you may need to specify those -L options here as well.  To
8067 use no flags, say "none".
8068
8069 EOM
8070     case "$lddlflags" in
8071     '') case "$osname" in
8072                         beos) dflt='-nostart' ;;
8073                         haiku) dflt='-shared' ;;
8074                         hpux) dflt='-b';
8075                               case "$gccversion" in
8076                               '') dflt="$dflt +vnocompatwarnings" ;;
8077                               esac
8078                               ;;
8079                         linux|irix*|gnu*)  dflt="-shared $optimize" ;;
8080                         next)  dflt='none' ;;
8081                         solaris) dflt='-G' ;;
8082                         sunos) dflt='-assert nodefinitions' ;;
8083                         svr4*|esix*|nonstopux) dflt="-G $ldflags" ;;
8084                 *)     dflt='none' ;;
8085                         esac
8086                         ;;
8087     *) dflt="$lddlflags" ;;
8088     esac
8089
8090         : Try to guess additional flags to pick up local libraries.
8091         : Be careful not to append to a plain 'none'
8092         case "$dflt" in
8093         none) dflt='' ;;
8094         esac
8095         for thisflag in $ldflags; do
8096                 case "$thisflag" in
8097                 -L*|-R*|-Wl,-R*)
8098                         case " $dflt " in
8099                         *" $thisflag "*) ;;
8100                         *) dflt="$dflt $thisflag" ;;
8101                         esac
8102                         ;;
8103                 esac
8104         done
8105
8106         case "$dflt" in
8107         ''|' ') dflt='none' ;;
8108         esac
8109
8110         case "$ldflags" in
8111         *-fstack-protector*)
8112             case "$dflt" in
8113                         *-fstack-protector*) ;; # Don't add it again
8114                         *) dflt="$dflt -fstack-protector" ;; 
8115                 esac
8116                 ;;
8117         esac
8118
8119
8120     rp="Any special flags to pass to $ld to create a dynamically loaded library?"
8121     . ./myread
8122     case "$ans" in
8123     none) lddlflags=' ' ;;
8124     *) lddlflags="$ans" ;;
8125     esac
8126
8127         cat <<EOM
8128
8129 Some systems may require passing special flags to $cc to indicate that
8130 the resulting executable will use dynamic linking.  To use no flags,
8131 say "none".
8132
8133 EOM
8134     case "$ccdlflags" in
8135     '') case "$osname" in
8136             linux|hpux|gnu*)    dflt='-Wl,-E' ;;
8137             next|sunos) dflt='none' ;;
8138             *)          dflt='none' ;;
8139             esac ;;
8140     ' ')  dflt='none' ;;
8141     *)  dflt="$ccdlflags" ;;
8142     esac
8143     rp="Any special flags to pass to $cc to use dynamic linking?"
8144     . ./myread
8145     case "$ans" in
8146     none) ccdlflags=' ' ;;
8147     *) ccdlflags="$ans" ;;
8148     esac
8149     ;;
8150 *)  usedl="$undef"
8151         ld='ld'
8152     dlsrc='dl_none.xs'
8153     lddlflags=''
8154     ccdlflags=''
8155     ;;
8156 esac
8157
8158 : Do we want a shared libperl?
8159 also=''
8160 case "$usedl" in
8161 $undef)
8162         # No dynamic loading being used, so don't bother even to prompt.
8163         useshrplib='false'
8164         ;;
8165 *)      case "$useshrplib" in
8166         '')     case "$osname" in
8167                 svr4*|nonstopux|dgux|dynixptx|esix|powerux|beos|haiku|cygwin*)
8168                         dflt=y
8169                         also='Building a shared libperl is required for dynamic loading to work on your system.'
8170                         ;;
8171                 next*)
8172                         case "$osvers" in
8173                         4*)     dflt=y
8174                                 also='Building a shared libperl is needed for MAB support.'
8175                                 ;;
8176                         *)      dflt=n
8177                                 ;;
8178                         esac
8179                         ;;
8180                 *)      dflt=n
8181                         ;;
8182                 esac
8183                 ;;
8184         $define|true|[Yy]*)
8185                 dflt=y
8186                 ;;
8187         *)      dflt=n
8188                 ;;
8189         esac
8190         $cat << EOM
8191
8192 The perl executable is normally obtained by linking perlmain.c with
8193 libperl${_a}, any static extensions (usually just DynaLoader), and
8194 any other libraries needed on this system (such as -lm, etc.).  Since
8195 your system supports dynamic loading, it is probably possible to build
8196 a shared libperl.$so.  If you will have more than one executable linked
8197 to libperl.$so, this will significantly reduce the size of each
8198 executable, but it may have a noticeable effect on performance.  The
8199 default is probably sensible for your system.
8200 $also
8201
8202 EOM
8203         rp="Build a shared libperl.$so (y/n)"
8204         . ./myread
8205         case "$ans" in
8206         true|$define|[Yy]*)
8207                 useshrplib='true'  ;;
8208         *)      useshrplib='false' ;;
8209         esac
8210         ;;
8211 esac
8212
8213 case "$useshrplib" in
8214 true)
8215         case "$userelocatableinc" in
8216         true|define)
8217                 echo "Cannot build with both -Duserelocatableinc and -Duseshrplib" >&4
8218                 echo "See INSTALL for an explanation why that won't work." >&4
8219                 exit 4
8220                 ;;
8221         esac
8222         case "$libperl" in
8223         '')
8224                 # Figure out a good name for libperl.so.  Since it gets stored in
8225                 # a version-specific architecture-dependent library, the version
8226                 # number isn't really that important, except for making cc/ld happy.
8227                 #
8228                 # A name such as libperl.so.10.1
8229                 majmin="libperl.$so.$patchlevel.$subversion"
8230                 # A name such as libperl.so.100
8231                 majonly=`echo $patchlevel $subversion |
8232                         $awk '{printf "%d%02d", $1, $2}'`
8233                 majonly=libperl.$so.$majonly
8234                 # I'd prefer to keep the os-specific stuff here to a minimum, and
8235                 # rely on figuring it out from the naming of libc.
8236                 case "${osname}${osvers}" in
8237                 next4*)
8238                         dflt=libperl.5.$so
8239                         # XXX How handle the --version stuff for MAB?
8240                         ;;
8241                 linux*|gnu*)  # ld won't link with a bare -lperl otherwise.
8242                         dflt=libperl.$so
8243                         ;;
8244                 cygwin*) # ld links now against the dll directly
8245                         majmin="cygperl5_${patchlevel}_${subversion}.${so}"
8246                         majonly=`echo $patchlevel $subversion |
8247                                 $awk '{printf "%03d%03d", $1, $2}'`
8248                         majonly=cygperl5.$majonly.$so
8249                         dflt=$majmin
8250                         ;;
8251                 *)      # Try to guess based on whether libc has major.minor.
8252                         case "$libc" in
8253                         *libc.$so.[0-9]*.[0-9]*) dflt=$majmin ;;
8254                         *libc.$so.[0-9]*) dflt=$majonly ;;
8255                         *)      dflt=libperl.$so ;;
8256                         esac
8257                         ;;
8258                 esac
8259                 ;;
8260         *)      dflt=$libperl
8261                 ;;
8262         esac
8263         cat << EOM
8264
8265 I need to select a good name for the shared libperl.  If your system uses
8266 library names with major and minor numbers, then you might want something
8267 like $majmin.  Alternatively, if your system uses a single version
8268 number for shared libraries, then you might want to use $majonly.
8269 Or, your system might be quite happy with a simple libperl.$so.
8270
8271 Since the shared libperl will get installed into a version-specific
8272 architecture-dependent directory, the version number of the shared perl
8273 library probably isn't important, so the default should be o.k.
8274
8275 EOM
8276         rp='What name do you want to give to the shared libperl?'
8277         . ./myread
8278         libperl=$ans
8279         echo "Ok, I'll use $libperl"
8280         ;;
8281 *)
8282         libperl="libperl${_a}"
8283         ;;
8284 esac
8285
8286 # Detect old use of shrpdir via undocumented Configure -Dshrpdir
8287 case "$shrpdir" in
8288 '') ;;
8289 *)      $cat >&4 <<EOM
8290 WARNING:  Use of the shrpdir variable for the installation location of
8291 the shared $libperl is not supported.  It was never documented and
8292 will not work in this version.  Let me (perlbug@perl.org)
8293 know of any problems this may cause.
8294
8295 EOM
8296         case "$shrpdir" in
8297         "$archlibexp/CORE")
8298                 $cat >&4 <<EOM
8299 But your current setting of $shrpdir is
8300 the default anyway, so it's harmless.
8301 EOM
8302                 ;;
8303         *)
8304                 $cat >&4 <<EOM
8305 Further, your current attempted setting of $shrpdir
8306 conflicts with the value of $archlibexp/CORE
8307 that installperl will use.
8308 EOM
8309                 ;;
8310         esac
8311         ;;
8312 esac
8313
8314 # How will the perl executable find the installed shared $libperl?
8315 # Add $xxx to ccdlflags.
8316 # If we can't figure out a command-line option, use $shrpenv to
8317 # set env LD_RUN_PATH.  The main perl makefile uses this.
8318 shrpdir=$archlibexp/CORE
8319 xxx=''
8320 tmp_shrpenv=''
8321 if "$useshrplib"; then
8322     case "$osname" in
8323         aix)
8324                 # We'll set it in Makefile.SH...
8325                 ;;
8326         solaris)
8327                 xxx="-R $shrpdir"
8328                 ;;
8329         freebsd|netbsd|openbsd|interix|dragonfly)
8330                 xxx="-Wl,-R$shrpdir"
8331                 ;;
8332         bsdos|linux|irix*|dec_osf|gnu*)
8333                 xxx="-Wl,-rpath,$shrpdir"
8334                 ;;
8335         next)
8336                 # next doesn't like the default...
8337                 ;;
8338         beos)
8339                 # beos doesn't like the default, either.
8340                 ;;
8341         haiku)
8342                 # Haiku doesn't like the default, either.
8343                 ;;
8344         hpux*)
8345                 # hpux doesn't like the default, either.
8346                 tmp_shrpenv="env LDOPTS=\"+s +b${shrpdir}\""
8347                 ;;
8348         cygwin)
8349                 # cygwin needs only ldlibpth
8350                 ;;
8351         *)
8352                 tmp_shrpenv="env LD_RUN_PATH=$shrpdir"
8353                 ;;
8354         esac
8355         case "$xxx" in
8356         '') ;;
8357         *)
8358                 # Only add $xxx if it isn't already in ccdlflags.
8359                 case " $ccdlflags " in
8360                 *" $xxx "*)     ;;
8361                 *)      ccdlflags="$ccdlflags $xxx"
8362                         cat <<EOM >&4
8363
8364 Adding $xxx to the flags
8365 passed to $ld so that the perl executable will find the
8366 installed shared $libperl.
8367
8368 EOM
8369                         ;;
8370                 esac
8371                 ;;
8372         esac
8373 fi
8374 # Fix ccdlflags in AIX for building external extensions.
8375 # (For building Perl itself bare -bE:perl.exp is needed,
8376 #  Makefile.SH takes care of this.)
8377 case "$osname" in
8378 aix) ccdlflags="$ccdlflags -bE:$installarchlib/CORE/perl.exp" ;;
8379 esac
8380 # Respect a hint or command-line value.
8381 case "$shrpenv" in
8382 '') shrpenv="$tmp_shrpenv" ;;
8383 esac
8384 case "$ldlibpthname" in
8385 '')     ldlibpthname=LD_LIBRARY_PATH ;;
8386 none)   ldlibpthname='' ;;
8387 esac
8388
8389 : determine where manual pages are on this system
8390 echo " "
8391 case "$sysman" in
8392 '') 
8393         syspath='/usr/share/man/man1 /usr/man/man1'
8394         syspath="$syspath /usr/man/mann /usr/man/manl /usr/man/local/man1"
8395         syspath="$syspath /usr/man/u_man/man1"
8396         syspath="$syspath /usr/catman/u_man/man1 /usr/man/l_man/man1"
8397         syspath="$syspath /usr/local/man/u_man/man1 /usr/local/man/l_man/man1"
8398         syspath="$syspath /usr/man/man.L /local/man/man1 /usr/local/man/man1"
8399         sysman=`./loc . /usr/man/man1 $syspath`
8400         ;;
8401 esac
8402 if $test -d "$sysman"; then
8403         echo "System manual is in $sysman." >&4
8404 else
8405         echo "Could not find manual pages in source form." >&4
8406 fi
8407
8408 : determine where manual pages go
8409 set man1dir man1dir none
8410 eval $prefixit
8411 $cat <<EOM
8412
8413 $spackage has manual pages available in source form.
8414 EOM
8415 case "$nroff" in
8416 nroff)
8417         echo "However, you don't have nroff, so they're probably useless to you."
8418         case "$man1dir" in
8419         '') man1dir="none";;
8420         esac;;
8421 esac
8422 echo "If you don't want the manual sources installed, answer 'none'."
8423 case "$man1dir" in
8424 ' ') dflt=none
8425         ;;
8426 '')
8427         lookpath="$prefixexp/share/man/man1"
8428         lookpath="$lookpath $prefixexp/man/man1 $prefixexp/man/l_man/man1"
8429         lookpath="$lookpath $prefixexp/man/p_man/man1"
8430         lookpath="$lookpath $prefixexp/man/u_man/man1"
8431         lookpath="$lookpath $prefixexp/man/man.1"
8432         case "$sysman" in
8433         */?_man*)       dflt=`./loc . $prefixexp/l_man/man1 $lookpath` ;;
8434         *)      dflt=`./loc . $prefixexp/man/man1 $lookpath` ;;
8435         esac
8436         set dflt
8437         eval $prefixup
8438         ;;
8439 *)  dflt="$man1dir"
8440         ;;
8441 esac
8442 echo " "
8443 fn=dn+~
8444 rp="Where do the main $spackage manual pages (source) go?"
8445 . ./getfile
8446 if $test "X$man1direxp" != "X$ansexp"; then
8447         installman1dir=''
8448 fi
8449 prefixvar=man1dir
8450 . ./setprefixvar
8451
8452 case "$man1dir" in
8453 '')     man1dir=' '
8454         installman1dir='';;
8455 esac
8456
8457 : What suffix to use on installed man pages
8458
8459 case "$man1dir" in
8460 ' ')
8461         man1ext='0'
8462         ;;
8463 *)
8464         rp="What suffix should be used for the main $spackage man pages?"
8465         case "$man1ext" in
8466         '')     case "$man1dir" in
8467                 *1)  dflt=1 ;;
8468                 *1p) dflt=1p ;;
8469                 *1pm) dflt=1pm ;;
8470                 *l) dflt=l;;
8471                 *n) dflt=n;;
8472                 *o) dflt=o;;
8473                 *p) dflt=p;;
8474                 *C) dflt=C;;
8475                 *L) dflt=L;;
8476                 *L1) dflt=L1;;
8477                 *) dflt=1;;
8478                 esac
8479                 ;;
8480         *)      dflt="$man1ext";;
8481         esac
8482         . ./myread
8483         man1ext="$ans"
8484         ;;
8485 esac
8486
8487 : see if we can have long filenames
8488 echo " "
8489 first=123456789abcdef
8490 $rm -f $first
8491 if (echo hi >$first) 2>/dev/null; then
8492         if $test -f 123456789abcde; then
8493                 echo 'You cannot have filenames longer than 14 characters.  Sigh.' >&4
8494                 val="$undef"
8495         else
8496                 echo 'You can have filenames longer than 14 characters.'>&4
8497                 val="$define"
8498         fi
8499 else
8500         $cat <<'EOM'
8501 You can't have filenames longer than 14 chars.
8502 You can't even think about them!
8503 EOM
8504         val="$undef"
8505 fi
8506 set d_flexfnam
8507 eval $setvar
8508 $rm -rf 123456789abcde*
8509
8510 : determine where library module manual pages go
8511 set man3dir man3dir none
8512 eval $prefixit
8513 $cat <<EOM
8514
8515 $spackage has manual pages for many of the library modules.
8516 EOM
8517
8518 case "$nroff" in
8519 nroff)
8520         $cat <<'EOM'
8521 However, you don't have nroff, so they're probably useless to you.
8522 EOM
8523         case "$man3dir" in
8524         '') man3dir="none";;
8525         esac;;
8526 esac
8527
8528 case "$d_flexfnam" in
8529 undef)
8530         $cat <<'EOM'
8531 However, your system can't handle the long file names like File::Basename.3.
8532 EOM
8533         case "$man3dir" in
8534         '') man3dir="none";;
8535         esac;;
8536 esac
8537
8538 echo "If you don't want the manual sources installed, answer 'none'."
8539 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
8540 case "$man3dir" in
8541 '')     dflt=`echo "$man1dir" | $sed -e 's/man1/man3/g' -e 's/man\.1/man\.3/g'`
8542         if $test -d "$privlib/man/man3"; then
8543                 cat <<EOM >&4
8544
8545 WARNING:  Previous versions of perl installed man3 pages into
8546 $privlib/man/man3.  This version will suggest a
8547 new default of $dflt.
8548 EOM
8549                 tdflt=$dflt
8550                 dflt='n'
8551                 rp='Do you wish to preserve the old behavior?(y/n)'
8552                 . ./myread
8553                 case "$ans" in
8554                 y*) dflt="$privlib/man/man3" ;;
8555                 *)  dflt=$tdflt ;;
8556                 esac
8557     fi
8558         ;;
8559 *)      dflt="$man3dir" ;;
8560 esac
8561 case "$dflt" in
8562 ' ') dflt=none ;;
8563 esac
8564 echo " "
8565 fn=dn+~
8566 rp="Where do the $package library man pages (source) go?"
8567 . ./getfile
8568 prefixvar=man3dir
8569 . ./setprefixvar
8570
8571 case "$man3dir" in
8572 '')     man3dir=' '
8573         installman3dir='';;
8574 esac
8575
8576 : What suffix to use on installed man pages
8577 case "$man3dir" in
8578 ' ')
8579         man3ext='0'
8580         ;;
8581 *)
8582         rp="What suffix should be used for the $package library man pages?"
8583         case "$man3ext" in
8584         '')     case "$man3dir" in
8585                 *3)  dflt=3 ;;
8586                 *3p) dflt=3p ;;
8587                 *3pm) dflt=3pm ;;
8588                 *l) dflt=l;;
8589                 *n) dflt=n;;
8590                 *o) dflt=o;;
8591                 *p) dflt=p;;
8592                 *C) dflt=C;;
8593                 *L) dflt=L;;
8594                 *L3) dflt=L3;;
8595                 *) dflt=3;;
8596                 esac
8597                 ;;
8598         *)      dflt="$man3ext";;
8599         esac
8600         . ./myread
8601         man3ext="$ans"
8602         ;;
8603 esac
8604
8605 : see if we have to deal with yellow pages, now NIS.
8606 if $test -d /usr/etc/yp || $test -d /etc/yp || $test -d /usr/lib/yp; then
8607         if $test -f /usr/etc/nibindd; then
8608                 echo " "
8609                 echo "I'm fairly confident you're on a NeXT."
8610                 echo " "
8611                 rp='Do you get the hosts file via NetInfo?'
8612                 dflt=y
8613                 case "$hostcat" in
8614                 nidump*) ;;
8615                 '') ;;
8616                 *) dflt=n;;
8617                 esac
8618                 . ./myread
8619                 case "$ans" in
8620                 y*) hostcat='nidump hosts .';;
8621                 *)      case "$hostcat" in
8622                         nidump*) hostcat='';;
8623                         esac
8624                         ;;
8625                 esac
8626         fi
8627         case "$hostcat" in
8628         nidump*) ;;
8629         *)
8630                 case "$hostcat" in
8631                 *ypcat*) dflt=y;;
8632                 '') if $contains '^\+' /etc/passwd >/dev/null 2>&1; then
8633                                 dflt=y
8634                         else
8635                                 dflt=n
8636                         fi;;
8637                 *) dflt=n;;
8638                 esac
8639                 echo " "
8640                 rp='Are you getting the hosts file via yellow pages?'
8641                 . ./myread
8642                 case "$ans" in
8643                 y*) hostcat='ypcat hosts';;
8644                 *) hostcat='cat /etc/hosts';;
8645                 esac
8646                 ;;
8647         esac
8648 fi
8649 case "$hostcat" in
8650 '') test -f /etc/hosts && hostcat='cat /etc/hosts';;
8651 esac
8652 case "$groupcat" in
8653 '') test -f /etc/group && groupcat='cat /etc/group';;
8654 esac
8655 case "$passcat" in
8656 '') test -f /etc/passwd && passcat='cat /etc/passwd';;
8657 esac
8658
8659 : now get the host name
8660 echo " "
8661 echo "Figuring out host name..." >&4
8662 case "$myhostname" in
8663 '') cont=true
8664         echo 'Maybe "hostname" will work...'
8665         if tans=`sh -c hostname 2>&1` ; then
8666                 myhostname=$tans
8667                 phostname=hostname
8668                 cont=''
8669         fi
8670         ;;
8671 *) cont='';;
8672 esac
8673 if $test "$cont"; then
8674         if ./xenix; then
8675                 echo 'Oh, dear.  Maybe "/etc/systemid" is the key...'
8676                 if tans=`cat /etc/systemid 2>&1` ; then
8677                         myhostname=$tans
8678                         phostname='cat /etc/systemid'
8679                         echo "Whadyaknow.  Xenix always was a bit strange..."
8680                         cont=''
8681                 fi
8682         elif $test -r /etc/systemid; then
8683                 echo "(What is a non-Xenix system doing with /etc/systemid?)"
8684         fi
8685 fi
8686 if $test "$cont"; then
8687         echo 'No, maybe "uuname -l" will work...'
8688         if tans=`sh -c 'uuname -l' 2>&1` ; then
8689                 myhostname=$tans
8690                 phostname='uuname -l'
8691         else
8692                 echo 'Strange.  Maybe "uname -n" will work...'
8693                 if tans=`sh -c 'uname -n' 2>&1` ; then
8694                         myhostname=$tans
8695                         phostname='uname -n'
8696                 else
8697                         echo 'Oh well, maybe I can mine it out of whoami.h...'
8698                         if tans=`sh -c $contains' sysname $usrinc/whoami.h' 2>&1` ; then
8699                                 myhostname=`echo "$tans" | $sed 's/^.*"\(.*\)"/\1/'`
8700                                 phostname="sed -n -e '"'/sysname/s/^.*\"\\(.*\\)\"/\1/{'"' -e p -e q -e '}' <$usrinc/whoami.h"
8701                         else
8702                                 case "$myhostname" in
8703                                 '') echo "Does this machine have an identity crisis or something?"
8704                                         phostname='';;
8705                                 *)
8706                                         echo "Well, you said $myhostname before..."
8707                                         phostname='echo $myhostname';;
8708                                 esac
8709                         fi
8710                 fi
8711         fi
8712 fi
8713 case "$myhostname" in
8714 '') myhostname=noname ;;
8715 esac
8716 : you do not want to know about this
8717 set $myhostname
8718 myhostname=$1
8719
8720 : verify guess
8721 if $test "$myhostname" ; then
8722         dflt=y
8723         rp='Your host name appears to be "'$myhostname'".'" Right?"
8724         . ./myread
8725         case "$ans" in
8726         y*) ;;
8727         *) myhostname='';;
8728         esac
8729 fi
8730
8731 : bad guess or no guess
8732 while $test "X$myhostname" = X ; do
8733         dflt=''
8734         rp="Please type the (one word) name of your host:"
8735         . ./myread
8736         myhostname="$ans"
8737 done
8738
8739 : translate upper to lower if necessary
8740 case "$myhostname" in
8741 *[A-Z]*)
8742         echo "(Normalizing case in your host name)"
8743         myhostname=`echo $myhostname | ./tr '[A-Z]' '[a-z]'`
8744         ;;
8745 esac
8746
8747 case "$myhostname" in
8748 *.*)
8749         dflt=`expr "X$myhostname" : "X[^.]*\(\..*\)"`
8750         myhostname=`expr "X$myhostname" : "X\([^.]*\)\."`
8751         echo "(Trimming domain name from host name--host name is now $myhostname)"
8752         ;;
8753 *) case "$mydomain" in
8754         '')
8755                 {
8756                         test "X$hostcat" = "Xypcat hosts" &&
8757                         ypmatch "$myhostname" hosts 2>/dev/null |\
8758                                 $sed -e 's/[     ]*#.*//; s/$/ /' > hosts && \
8759                         $test -s hosts
8760                 } || {
8761                         test "X$hostcat" != "X" &&
8762                         $hostcat | $sed -n -e "s/[       ]*#.*//; s/\$/ /
8763                                         /[       ]$myhostname[  . ]/p" > hosts
8764                 }
8765                 tmp_re="[       . ]"
8766                 if $test -f hosts; then
8767                         $test x`$awk "/[0-9].*[  ]$myhostname$tmp_re/ { sum++ }
8768                              END { print sum }" hosts` = x1 || tmp_re="[         ]"
8769                         dflt=.`$awk "/[0-9].*[   ]$myhostname$tmp_re/ {for(i=2; i<=NF;i++) print \\\$i}" \
8770                                 hosts | $sort | $uniq | \
8771                                 $sed -n -e "s/$myhostname\.\([-a-zA-Z0-9_.]\)/\1/p"`
8772                         case `$echo X$dflt` in
8773                         X*\ *)  echo "(Several hosts in the database matched hostname)"
8774                                 dflt=.
8775                                 ;;
8776                         X.) echo "(You do not have fully-qualified names in the hosts database)"
8777                                 ;;
8778                         esac
8779                 else
8780                         echo "(I cannot locate a hosts database anywhere)"
8781                         dflt=.
8782                 fi
8783                 case "$dflt" in
8784                 .)
8785                         tans=`./loc resolv.conf X /etc /usr/etc`
8786                         if $test -f "$tans"; then
8787                                 echo "(Attempting domain name extraction from $tans)"
8788                                 dflt=.`$sed -n -e 's/   / /g' \
8789                                   -e 's/^search  *\([^ ]*\).*/\1/p' $tans \
8790                                   -e 1q 2>/dev/null`
8791                                 case "$dflt" in
8792                                 .) dflt=.`$sed -n -e 's/        / /g' \
8793                                      -e 's/^domain  *\([^ ]*\).*/\1/p' $tans \
8794                                      -e 1q 2>/dev/null`
8795                                         ;;
8796                                 esac
8797                         fi
8798                         ;;
8799                 esac
8800                 case "$dflt" in
8801                 .) echo "(No help from resolv.conf either -- attempting clever guess)"
8802                         dflt=.`sh -c domainname 2>/dev/null`
8803                         case "$dflt" in
8804                         '') dflt='.';;
8805                         .nis.*|.yp.*|.main.*) dflt=`echo $dflt | $sed -e 's/^\.[^.]*//'`;;
8806                         esac
8807                         ;;
8808                 esac
8809                 case "$dflt$osname" in
8810                 .os390) echo "(Attempting domain name extraction from //'SYS1.TCPPARMS(TCPDATA)')"
8811                         dflt=.`awk '/^DOMAINORIGIN/ {print $2}' "//'SYS1.TCPPARMS(TCPDATA)'" 2>/dev/null`
8812                         ;;
8813                 esac
8814                 case "$dflt" in
8815                 .) echo "(Lost all hope -- silly guess then)"
8816                         dflt='.nonet'
8817                         ;;
8818                 esac
8819                 $rm -f hosts
8820                 ;;
8821         *) dflt="$mydomain";;
8822         esac;;
8823 esac
8824 echo " "
8825 rp="What is your domain name?"
8826 . ./myread
8827 tans="$ans"
8828 case "$ans" in
8829 '') ;;
8830 .*) ;;
8831 *) tans=".$tans";;
8832 esac
8833 mydomain="$tans"
8834
8835 : translate upper to lower if necessary
8836 case "$mydomain" in
8837 *[A-Z]*)
8838         echo "(Normalizing case in your domain name)"
8839         mydomain=`echo $mydomain | ./tr '[A-Z]' '[a-z]'`
8840         ;;
8841 esac
8842
8843 : a little sanity check here
8844 case "$phostname" in
8845 '') ;;
8846 *)
8847         case `$phostname | ./tr '[A-Z]' '[a-z]'` in
8848         $myhostname$mydomain|$myhostname) ;;
8849         *)
8850                 case "$phostname" in
8851                 sed*)
8852                         echo "(That doesn't agree with your whoami.h file, by the way.)"
8853                         ;;
8854                 *)
8855                         echo "(That doesn't agree with your $phostname command, by the way.)"
8856                         ;;
8857                 esac
8858         ;;
8859         esac
8860         ;;
8861 esac
8862
8863 : determine the e-mail address of the user who is running us
8864 $cat <<EOM
8865
8866 I need to get your e-mail address in Internet format if possible, i.e.
8867 something like user@host.domain. Please answer accurately since I have
8868 no easy means to double check it. The default value provided below
8869 is most probably close to reality but may not be valid from outside
8870 your organization...
8871
8872 EOM
8873 cont=x
8874 while test "$cont"; do
8875         case "$cf_email" in
8876         '') dflt="$cf_by@$myhostname$mydomain";;
8877         *) dflt="$cf_email";;
8878         esac
8879         rp='What is your e-mail address?'
8880         . ./myread
8881         cf_email="$ans"
8882         case "$cf_email" in
8883         *@*.*) cont='' ;;
8884         *)
8885                 rp='Address does not look like an Internet one.  Use it anyway?'
8886                 case "$fastread" in
8887                 yes) dflt=y ;;
8888                 *) dflt=n ;;
8889                 esac
8890                 . ./myread
8891                 case "$ans" in
8892                 y*) cont='' ;;
8893                 *) echo " " ;;
8894                 esac
8895                 ;;
8896         esac
8897 done
8898
8899 : Ask e-mail of administrator
8900 $cat <<EOM
8901
8902 If you or somebody else will be maintaining perl at your site, please
8903 fill in the correct e-mail address here so that they may be contacted
8904 if necessary. Currently, the "perlbug" program included with perl
8905 will send mail to this address in addition to perlbug@perl.org. You may
8906 enter "none" for no administrator.
8907
8908 EOM
8909 case "$perladmin" in
8910 '') dflt="$cf_email";;
8911 *) dflt="$perladmin";;
8912 esac
8913 rp='Perl administrator e-mail address'
8914 . ./myread
8915 perladmin="$ans"
8916
8917 : determine whether to only install version-specific parts.
8918 echo " "
8919 $cat <<EOM
8920 Do you want to install only the version-specific parts of the perl
8921 distribution?  Usually you do *not* want to do this.
8922 EOM
8923 case "$versiononly" in
8924 "$define"|[Yy]*|true) dflt='y' ;;
8925 *) dflt='n';
8926 esac
8927 rp="Do you want to install only the version-specific parts of perl?"
8928 . ./myread
8929 case "$ans" in
8930 [yY]*)  val="$define";;
8931 *)      val="$undef" ;;
8932 esac
8933 set versiononly
8934 eval $setvar
8935
8936 case "$versiononly" in
8937 "$define") inc_version_list=''
8938            inc_version_list_init=0
8939            ;;
8940 esac
8941
8942 : figure out how to guarantee perl startup
8943 : XXX Note that this currently takes advantage of the bug that binexp ignores
8944 :     the Configure -Dinstallprefix setting, which in turn means that under
8945 :     relocatable @INC, initialinstalllocation is what binexp started as.
8946 case "$startperl" in
8947 '')
8948         case "$sharpbang" in
8949         *!)
8950                 $cat <<EOH
8951
8952 I can use the #! construct to start perl on your system. This will
8953 make startup of perl scripts faster, but may cause problems if you
8954 want to share those scripts and perl is not in a standard place
8955 ($initialinstalllocation/perl) on all your platforms. The alternative
8956 is to force a shell by starting the script with a single ':' character.
8957
8958 EOH
8959                 case "$versiononly" in
8960                 "$define")      dflt="$initialinstalllocation/perl$version";;
8961                 *)              dflt="$initialinstalllocation/perl";;
8962                 esac
8963                 rp='What shall I put after the #! to start up perl ("none" to not use #!)?'
8964                 . ./myread
8965                 case "$ans" in
8966                 none)   startperl=": # use perl";;
8967                 *)      startperl="#!$ans"
8968                         if $test 30 -lt `echo "$ans" | wc -c`; then
8969                                 $cat >&4 <<EOM
8970
8971 WARNING:  Some systems limit the #! command to 32 characters.
8972 If you experience difficulty running Perl scripts with #!, try
8973 installing Perl in a directory with a shorter pathname.
8974
8975 EOM
8976                         fi ;;
8977                 esac
8978                 ;;
8979         *) startperl=": # use perl"
8980                 ;;
8981         esac
8982         ;;
8983 esac
8984 echo "I'll use $startperl to start perl scripts."
8985
8986 : figure best path for perl in scripts
8987 case "$perlpath" in
8988 '')
8989         case "$versiononly" in
8990         "$define")      perlpath="$initialinstalllocation/perl$version";;
8991         *)              perlpath="$initialinstalllocation/perl";;
8992         esac
8993         case "$startperl" in
8994         *!*) ;;
8995         *)
8996                 $cat <<EOH
8997
8998 I will use the "eval 'exec'" idiom to start Perl on your system.
8999 I can use the full path of your Perl binary for this purpose, but
9000 doing so may cause problems if you want to share those scripts and
9001 Perl is not always in a standard place ($initialinstalllocation/perl).
9002
9003 EOH
9004                 dflt="$initialinstalllocation/perl"
9005                 rp="What path shall I use in \"eval 'exec'\"?"
9006                 . ./myread
9007                 perlpath="$ans"
9008                 ;;
9009         esac
9010         ;;
9011 esac
9012 case "$startperl" in
9013 *!*)    ;;
9014 *)      echo "I'll use $perlpath in \"eval 'exec'\"" ;;
9015 esac
9016
9017 : determine where public executable scripts go
9018 set scriptdir scriptdir
9019 eval $prefixit
9020 case "$scriptdir" in
9021 '')
9022         dflt="$bin"
9023         : guess some guesses
9024         $test -d /usr/share/scripts && dflt=/usr/share/scripts
9025         $test -d /usr/share/bin     && dflt=/usr/share/bin
9026         $test -d /usr/local/script  && dflt=/usr/local/script
9027         $test -d /usr/local/scripts && dflt=/usr/local/scripts
9028         $test -d $prefixexp/script  && dflt=$prefixexp/script
9029         set dflt
9030         eval $prefixup
9031         ;;
9032 *)  dflt="$scriptdir"
9033         ;;
9034 esac
9035 $cat <<EOM
9036
9037 Some installations have a separate directory just for executable scripts so
9038 that they can mount it across multiple architectures but keep the scripts in
9039 one spot.  You might, for example, have a subdirectory of /usr/share for this.
9040 Or you might just lump your scripts in with all your other executables.
9041
9042 EOM
9043 fn=d~
9044 rp='Where do you keep publicly executable scripts?'
9045 . ./getfile
9046 if $test "X$ansexp" != "X$scriptdirexp"; then
9047         installscript=''
9048 fi
9049 installscriptdir=''
9050 prefixvar=scriptdir
9051 . ./setprefixvar
9052 : A little fix up for an irregularly named variable.
9053 installscript="$installscriptdir"
9054
9055 : determine where add-on public executables go
9056 case "$sitebin" in
9057 '')     dflt=$siteprefix/bin ;;
9058 *)      dflt=$sitebin ;;
9059 esac
9060 fn=d~
9061 rp='Pathname where the add-on public executables should be installed?'
9062 . ./getfile
9063 prefixvar=sitebin
9064 . ./setprefixvar
9065
9066 : determine where add-on html pages go
9067 : There is no standard location, so try to copy the previously-selected
9068 : directory structure for the core html pages.
9069 case "$sitehtml1dir" in
9070 '')    dflt=`echo "$html1dir" | $sed "s#^$prefix#$siteprefix#"` ;;
9071 *)     dflt=$sitehtml1dir ;;
9072 esac
9073 case "$dflt" in
9074 ''|' ') dflt=none ;;
9075 esac
9076 fn=dn+~
9077 rp='Pathname where the site-specific html pages should be installed?'
9078 . ./getfile
9079 prefixvar=sitehtml1dir
9080 . ./setprefixvar
9081
9082 : determine where add-on library html pages go
9083 : There is no standard location, so try to copy the previously-selected
9084 : directory structure for the core html pages.
9085 case "$sitehtml3dir" in
9086 '')    dflt=`echo "$html3dir" | $sed "s#^$prefix#$siteprefix#"` ;;
9087 *)     dflt=$sitehtml3dir ;;
9088 esac
9089 case "$dflt" in
9090 ''|' ') dflt=none ;;
9091 esac
9092 fn=dn+~
9093 rp='Pathname where the site-specific library html pages should be installed?'
9094 . ./getfile
9095 prefixvar=sitehtml3dir
9096 . ./setprefixvar
9097
9098 : determine where add-on manual pages go
9099 case "$siteman1dir" in
9100 '')     dflt=`echo $man1dir | $sed "s#^$prefix#$siteprefix#"` ;;
9101 *)      dflt=$siteman1dir ;;
9102 esac
9103 case "$dflt" in
9104 ''|' ') dflt=none ;;
9105 esac
9106 fn=dn+~
9107 rp='Pathname where the site-specific manual pages should be installed?'
9108 . ./getfile
9109 prefixvar=siteman1dir
9110 . ./setprefixvar
9111
9112 : determine where add-on library man pages go
9113 case "$siteman3dir" in
9114 '')     dflt=`echo $man3dir | $sed "s#^$prefix#$siteprefix#"` ;;
9115 *)      dflt=$siteman3dir ;;
9116 esac
9117 case "$dflt" in
9118 ''|' ') dflt=none ;;
9119 esac
9120 fn=dn+~
9121 rp='Pathname where the site-specific library manual pages should be installed?'
9122 . ./getfile
9123 prefixvar=siteman3dir
9124 . ./setprefixvar
9125
9126 : determine where add-on public executable scripts go
9127 case "$sitescript" in
9128 '')     dflt=$siteprefix/script
9129         $test -d $dflt || dflt=$sitebin ;;
9130 *)  dflt="$sitescript" ;;
9131 esac
9132 fn=d~+
9133 rp='Pathname where add-on public executable scripts should be installed?'
9134 . ./getfile
9135 prefixvar=sitescript
9136 . ./setprefixvar
9137
9138 : Check if faststdio is requested and available
9139 case "$usefaststdio" in
9140 $define|true|[yY]*|'')
9141         xversion=`awk '/define[         ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
9142         case "$xversion" in
9143         [68])   dflt='y' ;;
9144         *)      dflt='n' ;;
9145         esac
9146         ;;
9147 *) dflt='n';;
9148 esac
9149 cat <<EOM
9150
9151 Perl can be built to use 'fast stdio', which means using the stdio
9152 library but also directly manipulating the stdio buffers to enable
9153 faster I/O.  Using stdio is better for backward compatibility (especially
9154 for Perl extensions), but on the other hand since Perl 5.8 the 'perlio'
9155 interface has been preferred instead of stdio.
9156
9157 If this doesn't make any sense to you, just accept the default '$dflt'.
9158 EOM
9159 rp='Use the "fast stdio" if available?'
9160 . ./myread
9161 case "$ans" in
9162 y|Y)    val="$define" ;;
9163 *)      val="$undef" ;;
9164 esac
9165 set usefaststdio
9166 eval $setvar
9167
9168
9169 : define an is-a-typedef? function
9170 typedef='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
9171 case "$inclist" in
9172 "") inclist="sys/types.h";;
9173 esac;
9174 eval "varval=\$$var";
9175 case "$varval" in
9176 "")
9177         $rm -f temp.c;
9178         for inc in $inclist; do
9179                 echo "#include <$inc>" >>temp.c;
9180         done;
9181         echo "#ifdef $type" >> temp.c;
9182         echo "printf(\"We have $type\");" >> temp.c;
9183         echo "#endif" >> temp.c;
9184         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
9185         if $contains $type temp.E >/dev/null 2>&1; then
9186                 eval "$var=\$type";
9187         else
9188                 eval "$var=\$def";
9189         fi;
9190         $rm -f temp.?;;
9191 *) eval "$var=\$varval";;
9192 esac'
9193
9194 : define an is-a-typedef? function that prompts if the type is not available.
9195 typedef_ask='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
9196 case "$inclist" in
9197 "") inclist="sys/types.h";;
9198 esac;
9199 eval "varval=\$$var";
9200 case "$varval" in
9201 "")
9202         $rm -f temp.c;
9203         for inc in $inclist; do
9204                 echo "#include <$inc>" >>temp.c;
9205         done;
9206         echo "#ifdef $type" >> temp.c;
9207         echo "printf(\"We have $type\");" >> temp.c;
9208         echo "#endif" >> temp.c;
9209         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
9210         echo " " ;
9211         echo "$rp" | $sed -e "s/What is/Looking for/" -e "s/?/./";
9212         if $contains $type temp.E >/dev/null 2>&1; then
9213                 echo "$type found." >&4;
9214                 eval "$var=\$type";
9215         else
9216                 echo "$type NOT found." >&4;
9217                 dflt="$def";
9218                 . ./myread ;
9219                 eval "$var=\$ans";
9220         fi;
9221         $rm -f temp.?;;
9222 *) eval "$var=\$varval";;
9223 esac'
9224
9225 : see what type lseek is declared as in the kernel
9226 rp="What is the type used for lseek's offset on this system?"
9227 set off_t lseektype long stdio.h sys/types.h
9228 eval $typedef_ask
9229
9230 echo " "
9231 echo "Checking to see how big your file offsets are..." >&4
9232 $cat >try.c <<EOCP
9233 #include <sys/types.h>
9234 #include <stdio.h>
9235 int main()
9236 {
9237     printf("%d\n", (int)sizeof($lseektype));
9238     return(0);
9239 }
9240 EOCP
9241 set try
9242 if eval $compile_ok; then
9243         lseeksize=`$run ./try`
9244         echo "Your file offsets are $lseeksize bytes long."
9245 else
9246         dflt=$longsize
9247         echo " "
9248         echo "(I can't seem to compile the test program.  Guessing...)"
9249         rp="What is the size of your file offsets (in bytes)?"
9250         . ./myread
9251         lseeksize="$ans"
9252 fi
9253 $rm_try
9254
9255 : see what type file positions are declared as in the library
9256 rp="What is the type for file position used by fsetpos()?"
9257 set fpos_t fpostype long stdio.h sys/types.h
9258 eval $typedef_ask
9259
9260 : Check size for Fpos_t
9261 echo " "
9262 case "$fpostype" in
9263 *_t) zzz="$fpostype"    ;;
9264 *)   zzz="fpos_t"       ;;
9265 esac
9266 echo "Checking the size of $zzz..." >&4
9267 cat > try.c <<EOCP
9268 #include <sys/types.h>
9269 #include <stdio.h>
9270 #$i_stdlib I_STDLIB
9271 #ifdef I_STDLIB
9272 #include <stdlib.h>
9273 #endif
9274 int main() {
9275     printf("%d\n", (int)sizeof($fpostype));
9276     exit(0);
9277 }
9278 EOCP
9279 set try
9280 if eval $compile_ok; then
9281         yyy=`$run ./try`
9282         case "$yyy" in
9283         '')     fpossize=4
9284                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
9285                 ;;
9286         *)      fpossize=$yyy
9287                 echo "Your $zzz is $fpossize bytes long."
9288                 ;;
9289         esac
9290 else
9291         dflt="$longsize"
9292         echo " " >&4
9293         echo "(I can't compile the test program.  Guessing...)" >&4
9294         rp="What is the size of your file positions (in bytes)?"
9295         . ./myread
9296         fpossize="$ans"
9297 fi
9298
9299 : Check for large file support
9300 # Backward compatibility (uselfs is deprecated).
9301 case "$uselfs" in
9302 "$define"|true|[yY]*)
9303         cat <<EOM >&4
9304
9305 *** Configure -Duselfs is deprecated, using -Duselargefiles instead.
9306 EOM
9307         uselargefiles="$define"
9308         ;;
9309 esac
9310
9311 case "$lseeksize:$fpossize" in
9312 8:8) cat <<EOM
9313
9314 You can have files larger than 2 gigabytes.
9315 EOM
9316    val="$define" ;;
9317 *)    case "$uselargefiles" in
9318    "$undef"|false|[nN]*) dflt='n' ;;
9319    *)   dflt='y' ;;
9320    esac
9321    cat <<EOM
9322
9323 Perl can be built to understand large files (files larger than 2 gigabytes)
9324 on some systems.  To do so, Configure can be run with -Duselargefiles.
9325
9326 If this doesn't make any sense to you, just accept the default '$dflt'.
9327 EOM
9328    rp='Try to understand large files, if available?'
9329    . ./myread
9330    case "$ans" in
9331    y|Y)         val="$define" ;;
9332    *)           val="$undef"  ;;
9333    esac
9334    ;;
9335 esac
9336 set uselargefiles
9337 eval $setvar
9338 : Look for a hint-file generated 'call-back-unit'.  If the
9339 : user has specified that a large files perl is to be built,
9340 : we may need to set or change some other defaults.
9341 if $test -f uselargefiles.cbu; then
9342         echo "Your platform has some specific hints regarding large file builds, using them..."
9343         . ./uselargefiles.cbu
9344 fi
9345 case "$uselargefiles" in
9346 "$define")
9347         if $test -f uselargefiles.cbu; then
9348                 echo " "
9349                 echo "Rechecking to see how big your file offsets are..." >&4
9350                 $cat >try.c <<EOCP
9351 #include <sys/types.h>
9352 #include <stdio.h>
9353 int main()
9354 {
9355     printf("%d\n", (int)sizeof($lseektype));
9356     return(0);
9357 }
9358 EOCP
9359                 set try
9360                 if eval $compile_ok; then
9361                         lseeksize=`$run ./try`
9362                         $echo "Your file offsets are now $lseeksize bytes long."
9363                 else
9364                         dflt="$lseeksize"
9365                         echo " "
9366                         echo "(I can't seem to compile the test program.  Guessing...)"
9367                         rp="What is the size of your file offsets (in bytes)?"
9368                         . ./myread
9369                         lseeksize="$ans"
9370                 fi
9371                 case "$fpostype" in
9372                 *_t) zzz="$fpostype"    ;;
9373                 *)   zzz="fpos_t"       ;;
9374                 esac
9375                 $echo $n "Rechecking the size of $zzz...$c" >&4
9376                 $cat > try.c <<EOCP
9377 #include <sys/types.h>
9378 #include <stdio.h>
9379 #$i_stdlib I_STDLIB
9380 #ifdef I_STDLIB
9381 #include <stdlib.h>
9382 #endif
9383 int main() {
9384     printf("%d\n", (int)sizeof($fpostype));
9385     return(0);
9386 }
9387 EOCP
9388                 set try
9389                 if eval $compile_ok; then
9390                         yyy=`$run ./try`
9391                         dflt="$lseeksize"
9392                         case "$yyy" in
9393                         '')     echo " "
9394                                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
9395                                 ;;
9396                         *)      fpossize=$yyy
9397                                 echo " $fpossize bytes." >&4
9398                                 ;;
9399                         esac
9400                 else
9401                         dflt="$fpossize"
9402                         echo " "
9403                         echo "(I can't compile the test program.  Guessing...)" >&4
9404                         rp="What is the size of your file positions (in bytes)?"
9405                         . ./myread
9406                         fpossize="$ans"
9407                 fi
9408                 $rm_try
9409         fi
9410         ;;
9411 esac
9412
9413 : Set the vendorbin variables
9414 case "$vendorprefix" in
9415 '')     d_vendorbin="$undef"
9416         vendorbin=''
9417         vendorbinexp=''
9418         ;;
9419 *)      d_vendorbin="$define"
9420         : determine where vendor-supplied executables go.
9421         case "$vendorbin" in
9422         '') dflt=$vendorprefix/bin ;;
9423         *)      dflt="$vendorbin" ;;
9424         esac
9425         fn=d~+
9426         rp='Pathname for the vendor-supplied executables directory?'
9427         . ./getfile
9428         vendorbin="$ans"
9429         vendorbinexp="$ansexp"
9430         ;;
9431 esac
9432 prefixvar=vendorbin
9433 . ./installprefix
9434
9435 : Set the vendorhtml1dir variables
9436 case "$vendorprefix" in
9437 '')     vendorhtml1dir=''
9438         vendorhtml1direxp=''
9439         ;;
9440 *)      : determine where vendor-supplied html pages go.
9441         : There is no standard location, so try to copy the previously-selected
9442         : directory structure for the core html pages.
9443         : XXX Better default suggestions would be welcome.
9444         case "$vendorhtml1dir" in
9445         '')     dflt=`echo "$html1dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9446         *)      dflt=$vendorhtml1dir ;;
9447         esac
9448         case "$dflt" in
9449         ''|' ') dflt=none ;;
9450         esac
9451         fn=dn+~
9452         rp='Pathname for the vendor-supplied html pages?'
9453         . ./getfile
9454         vendorhtml1dir="$ans"
9455         vendorhtml1direxp="$ansexp"
9456         ;;
9457 esac
9458 : Use ' ' for none so value is preserved next time through Configure
9459 $test X"$vendorhtml1dir" = "X" && vendorhtml1dir=' '
9460 prefixvar=vendorhtml1dir
9461 . ./installprefix
9462
9463 : Set the vendorhtml3dir variables
9464 case "$vendorprefix" in
9465 '')     vendorhtml3dir=''
9466         vendorhtml3direxp=''
9467         ;;
9468 *)      : determine where vendor-supplied module html pages go.
9469         : There is no standard location, so try to copy the previously-selected
9470         : directory structure for the core html pages.
9471         : XXX Better default suggestions would be welcome.
9472         case "$vendorhtml3dir" in
9473         '')     dflt=`echo "$html3dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9474         *)      dflt=$vendorhtml3dir ;;
9475         esac
9476         case "$dflt" in
9477         ''|' ') dflt=none ;;
9478         esac
9479         fn=dn+~
9480         rp='Pathname for the vendor-supplied html pages?'
9481         . ./getfile
9482         vendorhtml3dir="$ans"
9483         vendorhtml3direxp="$ansexp"
9484         ;;
9485 esac
9486 : Use ' ' for none so value is preserved next time through Configure
9487 $test X"$vendorhtml3dir" = "X" && vendorhtml3dir=' '
9488 prefixvar=vendorhtml3dir
9489 . ./installprefix
9490
9491 : Set the vendorman1dir variables
9492 case "$vendorprefix" in
9493 '')     vendorman1dir=''
9494         vendorman1direxp=''
9495         ;;
9496 *)      : determine where vendor-supplied manual pages go.
9497         case "$vendorman1dir" in
9498         '') dflt=`echo "$man1dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9499         *)      dflt=$vendorman1dir ;;
9500         esac
9501         case "$dflt" in
9502         ''|' ') dflt=none ;;
9503         esac
9504         fn=nd~+
9505         rp='Pathname for the vendor-supplied manual section 1 pages?'
9506         . ./getfile
9507         vendorman1dir="$ans"
9508         vendorman1direxp="$ansexp"
9509         ;;
9510 esac
9511 : Use ' ' for none so value is preserved next time through Configure
9512 $test X"$vendorman1dir" = "X" && vendorman1dir=' '
9513 prefixvar=vendorman1dir
9514 . ./installprefix
9515
9516 : Set the vendorman3dir variables
9517 case "$vendorprefix" in
9518 '')     vendorman3dir=''
9519         vendorman3direxp=''
9520         ;;
9521 *)      : determine where vendor-supplied module manual pages go.
9522         case "$vendorman3dir" in
9523         '') dflt=`echo "$man3dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9524         *)      dflt=$vendorman3dir ;;
9525         esac
9526         case "$dflt" in
9527         ''|' ') dflt=none ;;
9528         esac
9529         fn=nd~+
9530         rp='Pathname for the vendor-supplied manual section 3 pages?'
9531         . ./getfile
9532         vendorman3dir="$ans"
9533         vendorman3direxp="$ansexp"
9534         ;;
9535 esac
9536 : Use ' ' for none so value is preserved next time through Configure
9537 $test X"$vendorman3dir" = "X" && vendorman3dir=' '
9538 prefixvar=vendorman3dir
9539 . ./installprefix
9540
9541 : Set the vendorscript variables
9542 case "$vendorprefix" in
9543 '')     d_vendorscript="$undef"
9544         vendorscript=''
9545         vendorscriptexp=''
9546         ;;
9547 *)      d_vendorscript="$define"
9548         : determine where vendor-supplied scripts go.
9549         case "$vendorscript" in
9550         '')     dflt=$vendorprefix/script
9551                 $test -d $dflt || dflt=$vendorbin ;;
9552         *)  dflt="$vendorscript" ;;
9553         esac
9554         $cat <<EOM
9555
9556 The installation process will create a directory for
9557 vendor-supplied scripts.
9558
9559 EOM
9560         fn=d~+
9561         rp='Pathname for the vendor-supplied scripts directory?'
9562         . ./getfile
9563         vendorscript="$ans"
9564         vendorscriptexp="$ansexp"
9565         ;;
9566 esac
9567 prefixvar=vendorscript
9568 . ./installprefix
9569
9570 : script used to emit important warnings
9571 cat >warn <<EOS
9572 $startsh
9573 if test \$# -gt 0; then
9574         echo "\$@" >msg
9575 else
9576         cat >msg
9577 fi
9578 echo "*** WARNING:" >&4
9579 sed -e 's/^/*** /' <msg >&4
9580 echo "*** " >&4
9581 cat msg >>config.msg
9582 echo " " >>config.msg
9583 rm -f msg
9584 EOS
9585 chmod +x warn
9586 $eunicefix warn
9587
9588 : see which of string.h or strings.h is needed
9589 echo " "
9590 strings=`./findhdr string.h`
9591 if $test "$strings" && $test -r "$strings"; then
9592         echo "Using <string.h> instead of <strings.h>." >&4
9593         val="$define"
9594 else
9595         val="$undef"
9596         strings=`./findhdr strings.h`
9597         if $test "$strings" && $test -r "$strings"; then
9598                 echo "Using <strings.h> instead of <string.h>." >&4
9599         else
9600                 ./warn "No string header found -- You'll surely have problems."
9601         fi
9602 fi
9603 set i_string
9604 eval $setvar
9605 case "$i_string" in
9606 "$undef") strings=`./findhdr strings.h`;;
9607 *)        strings=`./findhdr string.h`;;
9608 esac
9609
9610 : see if qgcvt exists
9611 set qgcvt d_qgcvt
9612 eval $inlibc
9613
9614 : Check print/scan long double stuff
9615 echo " "
9616
9617 if $test X"$d_longdbl" = X"$define"; then
9618
9619 echo "Checking how to print long doubles..." >&4
9620
9621 if $test X"$sPRIfldbl" = X -a X"$doublesize" = X"$longdblsize"; then
9622         $cat >try.c <<'EOCP'
9623 #include <sys/types.h>
9624 #include <stdio.h>
9625 int main() {
9626   double d = 123.456;
9627   printf("%.3f\n", d);
9628 }
9629 EOCP
9630         set try
9631         if eval $compile; then
9632                 yyy=`$run ./try`
9633                 case "$yyy" in
9634                 123.456)
9635                         sPRIfldbl='"f"'; sPRIgldbl='"g"'; sPRIeldbl='"e"';
9636                         sPRIFUldbl='"F"'; sPRIGUldbl='"G"'; sPRIEUldbl='"E"';
9637                         echo "We will use %f."
9638                         ;;
9639                 esac
9640         fi
9641 fi
9642
9643 if $test X"$sPRIfldbl" = X; then
9644         $cat >try.c <<'EOCP'
9645 #include <sys/types.h>
9646 #include <stdio.h>
9647 int main() {
9648   long double d = 123.456;
9649   printf("%.3Lf\n", d);
9650 }
9651 EOCP
9652         set try
9653         if eval $compile; then
9654                 yyy=`$run ./try`
9655                 case "$yyy" in
9656                 123.456)
9657                         sPRIfldbl='"Lf"'; sPRIgldbl='"Lg"'; sPRIeldbl='"Le"';
9658                         sPRIFUldbl='"LF"'; sPRIGUldbl='"LG"'; sPRIEUldbl='"LE"';
9659                         echo "We will use %Lf."
9660                         ;;
9661                 esac
9662         fi
9663 fi
9664
9665 if $test X"$sPRIfldbl" = X; then
9666         $cat >try.c <<'EOCP'
9667 #include <sys/types.h>
9668 #include <stdio.h>
9669 int main() {
9670   long double d = 123.456;
9671   printf("%.3llf\n", d);
9672 }
9673 EOCP
9674         set try
9675         if eval $compile; then
9676                 yyy=`$run ./try`
9677                 case "$yyy" in
9678                 123.456)
9679                         sPRIfldbl='"llf"'; sPRIgldbl='"llg"'; sPRIeldbl='"lle"';
9680                         sPRIFUldbl='"llF"'; sPRIGUldbl='"llG"'; sPRIEUldbl='"llE"';
9681                         echo "We will use %llf."
9682                         ;;
9683                 esac
9684         fi
9685 fi
9686
9687 if $test X"$sPRIfldbl" = X; then
9688         $cat >try.c <<'EOCP'
9689 #include <sys/types.h>
9690 #include <stdio.h>
9691 int main() {
9692   long double d = 123.456;
9693   printf("%.3lf\n", d);
9694 }
9695 EOCP
9696         set try
9697         if eval $compile; then
9698                 yyy=`$run ./try`
9699                 case "$yyy" in
9700                 123.456)
9701                         sPRIfldbl='"lf"'; sPRIgldbl='"lg"'; sPRIeldbl='"le"';
9702                         sPRIFUldbl='"lF"'; sPRIGUldbl='"lG"'; sPRIEUldbl='"lE"';
9703                         echo "We will use %lf."
9704                         ;;
9705                 esac
9706         fi
9707 fi
9708
9709 if $test X"$sPRIfldbl" = X; then
9710         echo "Cannot figure out how to print long doubles." >&4
9711 else
9712         sSCNfldbl=$sPRIfldbl    # expect consistency
9713 fi
9714
9715 $rm_try
9716
9717 fi # d_longdbl
9718
9719 case "$sPRIfldbl" in
9720 '')     d_PRIfldbl="$undef"; d_PRIgldbl="$undef"; d_PRIeldbl="$undef";
9721         d_PRIFUldbl="$undef"; d_PRIGUldbl="$undef"; d_PRIEUldbl="$undef";
9722         d_SCNfldbl="$undef";
9723         ;;
9724 *)      d_PRIfldbl="$define"; d_PRIgldbl="$define"; d_PRIeldbl="$define";
9725         d_PRIFUldbl="$define"; d_PRIGUldbl="$define"; d_PRIEUldbl="$define";
9726         d_SCNfldbl="$define";
9727         ;;
9728 esac
9729
9730 : Check how to convert floats to strings.
9731
9732 if test "X$d_Gconvert" = X; then
9733
9734 echo " "
9735 echo "Checking for an efficient way to convert floats to strings."
9736 echo " " > try.c
9737 case "$uselongdouble" in
9738 "$define") echo "#define USE_LONG_DOUBLE" >>try.c ;;
9739 esac
9740 case "$d_longdbl" in
9741 "$define") echo "#define HAS_LONG_DOUBLE" >>try.c ;;
9742 esac
9743 case "$d_PRIgldbl" in
9744 "$define") echo "#define HAS_PRIgldbl"    >>try.c ;;
9745 esac
9746 $cat >>try.c <<EOP
9747 #ifdef TRY_gconvert
9748 #define Gconvert(x,n,t,b) gconvert((x),(n),(t),(b))
9749 char *myname = "gconvert";
9750 #endif
9751 #ifdef TRY_gcvt
9752 #define Gconvert(x,n,t,b) gcvt((x),(n),(b))
9753 char *myname = "gcvt";
9754 #endif
9755 #ifdef TRY_qgcvt
9756 #define Gconvert(x,n,t,b) qgcvt((x),(n),(b))
9757 char *myname = "qgcvt";
9758 #define DOUBLETYPE long double
9759 #endif
9760 #ifdef TRY_sprintf
9761 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
9762 #ifdef HAS_PRIgldbl
9763 #define Gconvert(x,n,t,b) sprintf((b),"%.*"$sPRIgldbl,(n),(x))
9764 #else
9765 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(double)(x))
9766 #endif
9767 #else
9768 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))
9769 #endif
9770 char *myname = "sprintf";
9771 #endif
9772
9773 #ifndef DOUBLETYPE
9774 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
9775 #define DOUBLETYPE long double
9776 #else
9777 #define DOUBLETYPE double
9778 #endif
9779 #endif
9780
9781 #include <stdio.h>
9782
9783 #$i_stdlib I_STDLIB
9784 #ifdef I_STDLIB
9785 #include <stdlib.h>
9786 #endif
9787 #$i_string I_STRING
9788 #ifdef I_STRING
9789 #  include <string.h>
9790 #else
9791 #  include <strings.h>
9792 #endif
9793
9794 int checkit(char *expect, char *got)
9795 {
9796     if (strcmp(expect, got)) {
9797                 printf("%s oddity:  Expected %s, got %s\n",
9798                         myname, expect, got);
9799                 exit(1);
9800         }
9801 }
9802
9803 int main()
9804 {
9805         char buf[64];
9806         buf[63] = '\0';
9807
9808         /* This must be 1st test on (which?) platform */
9809         /* Alan Burlison <AlanBurlsin@unn.unisys.com> */
9810         Gconvert((DOUBLETYPE)0.1, 8, 0, buf);
9811         checkit("0.1", buf);
9812
9813         Gconvert((DOUBLETYPE)0.01, 8, 0, buf);
9814         checkit("0.01", buf);
9815
9816         Gconvert((DOUBLETYPE)0.001, 8, 0, buf);
9817         checkit("0.001", buf);
9818
9819         Gconvert((DOUBLETYPE)0.0001, 8, 0, buf);
9820         checkit("0.0001", buf);
9821
9822         Gconvert((DOUBLETYPE)0.00009, 8, 0, buf);
9823         if (strlen(buf) > 5)
9824             checkit("9e-005", buf); /* for Microsoft ?? */
9825         else
9826             checkit("9e-05", buf);
9827
9828         Gconvert((DOUBLETYPE)1.0, 8, 0, buf);
9829         checkit("1", buf);
9830
9831         Gconvert((DOUBLETYPE)1.1, 8, 0, buf);
9832         checkit("1.1", buf);
9833
9834         Gconvert((DOUBLETYPE)1.01, 8, 0, buf);
9835         checkit("1.01", buf);
9836
9837         Gconvert((DOUBLETYPE)1.001, 8, 0, buf);
9838         checkit("1.001", buf);
9839
9840         Gconvert((DOUBLETYPE)1.0001, 8, 0, buf);
9841         checkit("1.0001", buf);
9842
9843         Gconvert((DOUBLETYPE)1.00001, 8, 0, buf);
9844         checkit("1.00001", buf);
9845
9846         Gconvert((DOUBLETYPE)1.000001, 8, 0, buf);
9847         checkit("1.000001", buf);
9848
9849         Gconvert((DOUBLETYPE)0.0, 8, 0, buf);
9850         checkit("0", buf);
9851
9852         Gconvert((DOUBLETYPE)-1.0, 8, 0, buf);
9853         checkit("-1", buf);
9854
9855         /* Some Linux gcvt's give 1.e+5 here. */
9856         Gconvert((DOUBLETYPE)100000.0, 8, 0, buf);
9857         checkit("100000", buf);
9858
9859         /* Some Linux gcvt's give -1.e+5 here. */
9860         Gconvert((DOUBLETYPE)-100000.0, 8, 0, buf);
9861         checkit("-100000", buf);
9862
9863         Gconvert((DOUBLETYPE)123.456, 8, 0, buf);
9864         checkit("123.456", buf);
9865
9866         /* Testing of 1e+129 in bigintpm.t must not get extra '.' here. */
9867         Gconvert((DOUBLETYPE)1e34, 8, 0, buf);
9868         /* 34 should be enough to scare even long double
9869          * places into using the e notation. */
9870         if (strlen(buf) > 5)
9871             checkit("1e+034", buf); /* for Microsoft */
9872         else
9873             checkit("1e+34", buf);
9874
9875         /* For Perl, if you add additional tests here, also add them to
9876          * t/base/num.t for benefit of platforms not using Configure or
9877          * overriding d_Gconvert */
9878
9879         exit(0);
9880 }
9881 EOP
9882 : first add preferred functions to our list
9883 xxx_list=""
9884 for xxx_convert in $gconvert_preference; do
9885     case $xxx_convert in
9886     gcvt|gconvert|sprintf) xxx_list="$xxx_list $xxx_convert" ;;
9887     *) echo "Discarding unrecognized gconvert_preference $xxx_convert" >&4 ;;
9888     esac
9889 done
9890 : then add any others
9891 for xxx_convert in gconvert gcvt sprintf; do
9892     case "$xxx_list" in
9893     *$xxx_convert*) ;;
9894     *) xxx_list="$xxx_list $xxx_convert" ;;
9895     esac
9896 done
9897
9898 case "$d_longdbl$uselongdouble" in
9899 "$define$define")
9900     : again, add prefered functions to our list first
9901     xxx_ld_list=""
9902     for xxx_convert in $gconvert_ld_preference; do
9903         case $xxx_convert in
9904         qgcvt|gcvt|gconvert|sprintf) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
9905         *) echo "Discarding unrecognized gconvert_ld_preference $xxx_convert" ;;
9906         esac
9907     done
9908     : then add qgcvt, sprintf--then, in xxx_list order, gconvert and gcvt
9909     for xxx_convert in qgcvt sprintf $xxx_list; do
9910         case "$xxx_ld_list" in
9911         $xxx_convert*|*" $xxx_convert"*) ;;
9912         *) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
9913         esac
9914     done
9915     : if sprintf cannot do long doubles, move it to the end
9916     if test "$d_PRIgldbl" != "$define"; then
9917         xxx_ld_list="`echo $xxx_ld_list|sed s/sprintf//` sprintf"
9918     fi
9919     : if no qgcvt, remove it
9920     if test "$d_qgcvt" != "$define"; then
9921         xxx_ld_list="`echo $xxx_ld_list|sed s/qgcvt//`"
9922     fi
9923     : use the ld_list
9924     xxx_list="$xxx_ld_list"
9925     ;;
9926 esac
9927
9928 for xxx_convert in $xxx_list; do
9929         echo "Trying $xxx_convert..."
9930         $rm -f try try$_o core
9931         set try -DTRY_$xxx_convert
9932         if eval $compile; then
9933                 echo "$xxx_convert() found." >&4
9934                 if $run ./try; then
9935                         echo "I'll use $xxx_convert to convert floats into a string." >&4
9936                         break;
9937                 else
9938                         echo "...But $xxx_convert didn't work as I expected."
9939                         xxx_convert=''
9940                 fi
9941         else
9942                 echo "$xxx_convert NOT found." >&4
9943         fi
9944 done
9945
9946 if test X$xxx_convert = X; then
9947     echo "*** WHOA THERE!!! ***" >&4
9948     echo "None of ($xxx_list)  seemed to work properly.  I'll use sprintf." >&4
9949     xxx_convert=sprintf
9950 fi
9951
9952 case "$xxx_convert" in
9953 gconvert) d_Gconvert='gconvert((x),(n),(t),(b))' ;;
9954 gcvt) d_Gconvert='gcvt((x),(n),(b))' ;;
9955 qgcvt) d_Gconvert='qgcvt((x),(n),(b))' ;;
9956 *) case "$uselongdouble$d_longdbl$d_PRIgldbl" in
9957    "$define$define$define")
9958       d_Gconvert="sprintf((b),\"%.*\"$sPRIgldbl,(n),(x))" ;;
9959    "$define$define$undef")
9960       d_Gconvert='sprintf((b),"%.*g",(n),(double)(x))' ;;
9961    *) d_Gconvert='sprintf((b),"%.*g",(n),(x))' ;;
9962    esac
9963    ;;
9964 esac
9965
9966 fi
9967 $rm_try
9968
9969 : see if _fwalk exists
9970 set fwalk d__fwalk
9971 eval $inlibc
9972
9973 : Initialize h_fcntl
9974 h_fcntl=false
9975
9976 : Initialize h_sysfile
9977 h_sysfile=false
9978
9979 : access call always available on UNIX
9980 set access d_access
9981 eval $inlibc
9982
9983 : locate the flags for 'access()'
9984 case "$d_access" in
9985 "$define")
9986         echo " "
9987         $cat >access.c <<EOCP
9988 #include <sys/types.h>
9989 #ifdef I_FCNTL
9990 #include <fcntl.h>
9991 #endif
9992 #ifdef I_SYS_FILE
9993 #include <sys/file.h>
9994 #endif
9995 #ifdef I_UNISTD
9996 #include <unistd.h>
9997 #endif
9998 #$i_stdlib I_STDLIB
9999 #ifdef I_STDLIB
10000 #include <stdlib.h>
10001 #endif
10002 int main() {
10003         exit(R_OK);
10004 }
10005 EOCP
10006         : check sys/file.h first, no particular reason here
10007         if $test `./findhdr sys/file.h` && \
10008                 $cc -o access $cppflags -DI_SYS_FILE access.c >/dev/null 2>&1 ; then
10009                 h_sysfile=true;
10010                 echo "<sys/file.h> defines the *_OK access constants." >&4
10011         elif $test `./findhdr fcntl.h` && \
10012                 $cc -o access $cppflags -DI_FCNTL access.c >/dev/null 2>&1 ; then
10013                 h_fcntl=true;
10014                 echo "<fcntl.h> defines the *_OK access constants." >&4
10015         elif $test `./findhdr unistd.h` && \
10016                 $cc -o access $cppflags -DI_UNISTD access.c >/dev/null 2>&1 ; then
10017                 echo "<unistd.h> defines the *_OK access constants." >&4
10018         else
10019                 echo "I can't find the four *_OK access constants--I'll use mine." >&4
10020         fi
10021         ;;
10022 esac
10023 $rm -f access*
10024
10025 : see if accessx exists
10026 set accessx d_accessx
10027 eval $inlibc
10028
10029 : see if aintl exists
10030 set aintl d_aintl
10031 eval $inlibc
10032
10033 : see if alarm exists
10034 set alarm d_alarm
10035 eval $inlibc
10036
10037 : see if 64bit time functions exists
10038
10039 set ctime64 d_ctime64
10040 eval $inlibc
10041
10042 set localtime64 d_localtime64
10043 eval $inlibc
10044
10045 set gmtime64 d_gmtime64
10046 eval $inlibc
10047
10048 set mktime64 d_mktime64
10049 eval $inlibc
10050
10051 set difftime64 d_difftime64
10052 eval $inlibc
10053
10054 set asctime64 d_asctime64
10055 eval $inlibc
10056
10057 : see if POSIX threads are available
10058 set pthread.h i_pthread
10059 eval $inhdr
10060
10061 : define a fucntion to check prototypes
10062 $cat > protochk <<EOSH
10063 $startsh
10064 cc="$cc"
10065 optimize="$optimize"
10066 ccflags="$ccflags"
10067 prototype="$prototype"
10068 define="$define"
10069 rm_try="$rm_try"
10070 usethreads=$usethreads
10071 i_pthread=$i_pthread
10072 pthread_h_first=$pthread_h_first
10073 EOSH
10074
10075 $cat >> protochk <<'EOSH'
10076
10077 $rm_try
10078 foo="$1"
10079 shift
10080 while test $# -ge 2; do
10081         case "$1" in
10082                 $define) echo "#include <$2>" >> try.c ;;
10083                 literal) echo "$2" >> try.c ;;
10084         esac
10085     # Extra magic for the benefit of systems that need pthread.h
10086     # to be included early to correctly detect threadsafe functions.
10087     # Such functions must guarantee themselves, though, that the usethreads
10088     # and i_pthread have been defined, before calling protochk.
10089     if test "$usethreads" = "$define" -a "$i_pthread" = "$define" -a "$pthread_h_first" = "$define" -a "$pthread_h_done" = ""; then
10090         echo "#include <pthread.h>" >> try.c
10091         pthread_h_done=yes
10092     fi
10093     shift 2
10094 done
10095 test "$prototype" = "$define"  && echo '#define CAN_PROTOTYPE' >> try.c
10096 cat >> try.c <<'EOCP'
10097 #ifdef CAN_PROTOTYPE
10098 #define _(args) args
10099 #else
10100 #define _(args) ()
10101 #endif
10102 EOCP
10103 echo "$foo" >> try.c
10104 echo 'int no_real_function_has_this_name _((void)) { return 0; }' >> try.c
10105 $cc $optimize $ccflags -c try.c > /dev/null 2>&1
10106 status=$?
10107 $rm_try
10108 exit $status
10109 EOSH
10110 chmod +x protochk
10111 $eunicefix protochk
10112
10113 : Define hasproto macro for Configure internal use
10114 hasproto='varname=$1; func=$2; shift; shift;
10115 while $test $# -ge 2; do
10116         case "$1" in
10117         $define) echo "#include <$2>";;
10118         esac ;
10119     shift 2;
10120 done > try.c;
10121 $cppstdin $cppflags $cppminus < try.c > tryout.c 2>/dev/null;
10122 if $contains "$func.*(" tryout.c >/dev/null 2>&1; then
10123         echo "$func() prototype found.";
10124         val="$define";
10125 else
10126         echo "$func() prototype NOT found.";
10127         val="$undef";
10128 fi;
10129 set $varname;
10130 eval $setvar;
10131 $rm_try tryout.c'
10132
10133 : see if sys/types.h has to be included
10134 set sys/types.h i_systypes
10135 eval $inhdr
10136
10137 : see if sys/select.h has to be included
10138 set sys/select.h i_sysselct
10139 eval $inhdr
10140
10141 : Define hasfield macro for Configure internal use
10142 hasfield='varname=$1; struct=$2; field=$3; shift; shift; shift;
10143 while $test $# -ge 2; do
10144         case "$1" in
10145         $define) echo "#include <$2>";;
10146         esac ;
10147     shift 2;
10148 done > try.c;
10149 echo "int main () { struct $struct foo; char* bar; bar = (char*)foo.$field; }" >> try.c;
10150 set try;
10151 if eval $compile; then
10152         val="$define";
10153 else
10154         val="$undef";
10155 fi;
10156 set $varname;
10157 eval $setvar;
10158 $rm_try'
10159
10160 : see if we should include time.h, sys/time.h, or both
10161 echo " "
10162 if test "X$timeincl" = X; then
10163         echo "Testing to see if we should include <time.h>, <sys/time.h> or both." >&4
10164         $echo $n "I'm now running the test program...$c"
10165         $cat >try.c <<EOCP
10166 #include <sys/types.h>
10167 #ifdef I_TIME
10168 #include <time.h>
10169 #endif
10170 #ifdef I_SYSTIME
10171 #ifdef SYSTIMEKERNEL
10172 #define KERNEL
10173 #endif
10174 #include <sys/time.h>
10175 #endif
10176 #ifdef I_SYSSELECT
10177 #include <sys/select.h>
10178 #endif
10179 #$i_stdlib I_STDLIB
10180 #ifdef I_STDLIB
10181 #include <stdlib.h>
10182 #endif
10183 int main()
10184 {
10185         struct tm foo;
10186 #ifdef S_TIMEVAL
10187         struct timeval bar;
10188 #endif
10189 #ifdef S_TIMEZONE
10190         struct timezone tzp;
10191 #endif
10192         if (foo.tm_sec == foo.tm_sec)
10193                 exit(0);
10194 #ifdef S_TIMEVAL
10195         if (bar.tv_sec == bar.tv_sec)
10196                 exit(0);
10197 #endif
10198         exit(1);
10199 }
10200 EOCP
10201         flags=''
10202         for s_timezone in '-DS_TIMEZONE' ''; do
10203         sysselect=''
10204         for s_timeval in '-DS_TIMEVAL' ''; do
10205         for i_systimek in '' '-DSYSTIMEKERNEL'; do
10206         for i_time in '' '-DI_TIME'; do
10207         for i_systime in '-DI_SYSTIME' ''; do
10208                 case "$flags" in
10209                 '') $echo $n ".$c"
10210                         set try $i_time $i_systime $i_systimek $sysselect $s_timeval $s_timezone
10211                         if eval $compile; then
10212                                 set X $i_time $i_systime $i_systimek $sysselect $s_timeval
10213                                 shift
10214                                 flags="$*"
10215                                 echo " "
10216                                 $echo $n "Succeeded with $flags$c"
10217                         fi
10218                         ;;
10219                 esac
10220         done
10221         done
10222         done
10223         done
10224         done
10225         timeincl=''
10226         echo " "
10227         case "$flags" in
10228         *SYSTIMEKERNEL*) i_systimek="$define"
10229                 timeincl=`./findhdr sys/time.h`
10230                 echo "We'll include <sys/time.h> with KERNEL defined." >&4;;
10231         *) i_systimek="$undef";;
10232         esac
10233         case "$flags" in
10234         *I_TIME*) i_time="$define"
10235                 timeincl=`./findhdr time.h`" $timeincl"
10236                 echo "We'll include <time.h>." >&4;;
10237         *) i_time="$undef";;
10238         esac
10239         case "$flags" in
10240         *I_SYSTIME*) i_systime="$define"
10241                 timeincl=`./findhdr sys/time.h`" $timeincl"
10242                 echo "We'll include <sys/time.h>." >&4;;
10243         *) i_systime="$undef";;
10244         esac
10245         $rm_try
10246 fi
10247 : see if struct tm knows about tm_zone
10248 case "$i_systime$i_time" in
10249 *$define*)
10250         echo " "
10251         echo "Checking to see if your struct tm has tm_zone field..." >&4
10252         set d_tm_tm_zone tm tm_zone $i_systime sys/time.h $i_time time.h
10253         eval $hasfield
10254         ;;
10255 *)      val="$undef"
10256         set d_tm_tm_zone
10257         eval $setvar
10258         ;;
10259 esac
10260 case "$d_tm_tm_zone" in
10261 "$define")      echo "Yes, it does."   ;;
10262 *)              echo "No, it doesn't." ;;
10263 esac
10264 : see if struct tm knows about tm_gmtoff
10265 case "$i_systime$i_time" in
10266 *$define*)
10267         echo " "
10268         echo "Checking to see if your struct tm has tm_gmtoff field..." >&4
10269         set d_tm_tm_gmtoff tm tm_gmtoff $i_systime sys/time.h $i_time time.h
10270         eval $hasfield
10271         ;;
10272 *)      val="$undef"
10273         set d_tm_tm_gmtoff
10274         eval $setvar
10275         ;;
10276 esac
10277 case "$d_tm_tm_gmtoff" in
10278 "$define")      echo "Yes, it does."   ;;
10279 *)              echo "No, it doesn't." ;;
10280 esac
10281
10282 : see if asctime_r exists
10283 set asctime_r d_asctime_r
10284 eval $inlibc
10285 case "$d_asctime_r" in
10286 "$define")
10287         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
10288         case "$d_asctime_r_proto:$usethreads" in
10289         ":define")      d_asctime_r_proto=define
10290                 set d_asctime_r_proto asctime_r $hdrs
10291                 eval $hasproto ;;
10292         *)      ;;
10293         esac
10294         case "$d_asctime_r_proto" in
10295         define)
10296         case "$asctime_r_proto" in
10297         ''|0) try='char* asctime_r(const struct tm*, char*);'
10298         ./protochk "$extern_C $try" $hdrs && asctime_r_proto=B_SB ;;
10299         esac
10300         case "$asctime_r_proto" in
10301         ''|0) try='char* asctime_r(const struct tm*, char*, int);'
10302         ./protochk "$extern_C $try" $hdrs && asctime_r_proto=B_SBI ;;
10303         esac
10304         case "$asctime_r_proto" in
10305         ''|0) try='int asctime_r(const struct tm*, char*);'
10306         ./protochk "$extern_C $try" $hdrs && asctime_r_proto=I_SB ;;
10307         esac
10308         case "$asctime_r_proto" in
10309         ''|0) try='int asctime_r(const struct tm*, char*, int);'
10310         ./protochk "$extern_C $try" $hdrs && asctime_r_proto=I_SBI ;;
10311         esac
10312         case "$asctime_r_proto" in
10313         ''|0)   d_asctime_r=undef
10314                 asctime_r_proto=0
10315                 echo "Disabling asctime_r, cannot determine prototype." >&4 ;;
10316         * )     case "$asctime_r_proto" in
10317                 REENTRANT_PROTO*) ;;
10318                 *) asctime_r_proto="REENTRANT_PROTO_$asctime_r_proto" ;;
10319                 esac
10320                 echo "Prototype: $try" ;;
10321         esac
10322         ;;
10323         *)      case "$usethreads" in
10324                 define) echo "asctime_r has no prototype, not using it." >&4 ;;
10325                 esac
10326                 d_asctime_r=undef
10327                 asctime_r_proto=0
10328                 ;;
10329         esac
10330         ;;
10331 *)      asctime_r_proto=0
10332         ;;
10333 esac
10334
10335 : see if atolf exists
10336 set atolf d_atolf
10337 eval $inlibc
10338
10339 : see if atoll exists
10340 set atoll d_atoll
10341 eval $inlibc
10342
10343 : Look for GCC-style attribute format
10344 case "$d_attribute_format" in
10345 '')
10346 echo " "
10347 echo "Checking whether your compiler can handle __attribute__((format)) ..." >&4
10348 $cat >attrib.c <<'EOCP'
10349 #include <stdio.h>
10350 void my_special_printf(char* pat,...) __attribute__((__format__(__printf__,1,2)));
10351 EOCP
10352 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
10353         if $contains 'warning' attrib.out >/dev/null 2>&1; then
10354                 echo "Your C compiler doesn't support __attribute__((format))."
10355                 val="$undef"
10356         else
10357                 echo "Your C compiler supports __attribute__((format))."
10358                 val="$define"
10359         fi
10360 else
10361         echo "Your C compiler doesn't seem to understand __attribute__ at all."
10362         val="$undef"
10363 fi
10364 ;;
10365 *) val="$d_attribute_format" ;;
10366 esac
10367 set d_attribute_format
10368 eval $setvar
10369 $rm -f attrib*
10370
10371 : Look for GCC-style attribute format with null format allowed
10372 case "$d_printf_format_null" in
10373 '') case "$d_attribute_format" in
10374     $define)
10375         echo " "
10376         echo "Checking whether your compiler allows __printf__ format to be null ..." >&4
10377 $cat >attrib.c <<EOCP
10378 #include <stdio.h>
10379 #$i_stdlib I_STDLIB
10380 #ifdef I_STDLIB
10381 #include <stdlib.h>
10382 #endif
10383 int null_printf (char* pat,...) __attribute__((__format__(__printf__,1,2)));
10384 int null_printf (char* pat,...) { return (int)pat; }
10385 int main () { exit(null_printf(NULL)); }
10386 EOCP
10387         if $cc $ccflags -o attrib attrib.c >attrib.out 2>&1 ; then
10388             : run the executable in case it produces a run-time warning
10389             if $run ./attrib >>attrib.out 2>&1; then
10390                 if $contains 'warning' attrib.out >/dev/null 2>&1; then
10391                     echo "Your C compiler doesn't allow __printf__ format to be null."
10392                     val="$undef"
10393                 else
10394                     echo "Your C compiler allows __printf__ format to be null."
10395                     val="$define"
10396                 fi
10397             else
10398             echo "Your C compiler executable failed with __printf__ format null."
10399             val="$undef"
10400         fi
10401     else
10402         echo "Your C compiler fails with __printf__ format null."
10403         val="$undef"
10404     fi
10405     ;;
10406     *)  val="$undef" ;;
10407     esac
10408 ;;
10409 *)  val="$d_printf_format_null" ;;
10410 esac
10411 set d_printf_format_null
10412 eval $setvar
10413 $rm -f attrib*
10414
10415 : Look for GCC-style attribute malloc
10416 case "$d_attribute_malloc" in
10417 '')
10418 echo " "
10419 echo "Checking whether your compiler can handle __attribute__((malloc)) ..." >&4
10420 $cat >attrib.c <<'EOCP'
10421 #include <stdio.h>
10422 char *go_get_some_memory( int how_many_bytes ) __attribute__((malloc));
10423 EOCP
10424 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
10425         if $contains 'warning' attrib.out >/dev/null 2>&1; then
10426                 echo "Your C compiler doesn't support __attribute__((malloc))."
10427                 val="$undef"
10428         else
10429                 echo "Your C compiler supports __attribute__((malloc))."
10430                 val="$define"
10431         fi
10432 else
10433         echo "Your C compiler doesn't seem to understand __attribute__ at all."
10434         val="$undef"
10435 fi
10436 ;;
10437 *) val="$d_attribute_malloc" ;;
10438 esac
10439 set d_attribute_malloc
10440 eval $setvar
10441 $rm -f attrib*
10442
10443 : Look for GCC-style attribute nonnull
10444 case "$d_attribute_nonnull" in
10445 '')
10446 echo " "
10447 echo "Checking whether your compiler can handle __attribute__((nonnull(1))) ..." >&4
10448 $cat >attrib.c <<'EOCP'
10449 #include <stdio.h>
10450 void do_something (char *some_pointer,...) __attribute__((nonnull(1)));
10451 EOCP
10452 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
10453         if $contains 'warning' attrib.out >/dev/null 2>&1; then
10454                 echo "Your C compiler doesn't support __attribute__((nonnull))."
10455                 val="$undef"
10456         else
10457                 echo "Your C compiler supports __attribute__((nonnull))."
10458                 val="$define"
10459         fi
10460 else
10461         echo "Your C compiler doesn't seem to understand __attribute__ at all."
10462         val="$undef"
10463 fi
10464 ;;
10465 *) val="$d_attribute_nonnull" ;;
10466 esac
10467 set d_attribute_nonnull
10468 eval $setvar
10469 $rm -f attrib*
10470
10471 : Look for GCC-style attribute noreturn
10472 case "$d_attribute_noreturn" in
10473 '')
10474 echo " "
10475 echo "Checking whether your compiler can handle __attribute__((noreturn)) ..." >&4
10476 $cat >attrib.c <<'EOCP'
10477 #include <stdio.h>
10478 void fall_over_dead( void ) __attribute__((noreturn));
10479 EOCP
10480 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
10481         if $contains 'warning' attrib.out >/dev/null 2>&1; then
10482                 echo "Your C compiler doesn't support __attribute__((noreturn))."
10483                 val="$undef"
10484         else
10485                 echo "Your C compiler supports __attribute__((noreturn))."
10486                 val="$define"
10487         fi
10488 else
10489         echo "Your C compiler doesn't seem to understand __attribute__ at all."
10490         val="$undef"
10491 fi
10492 ;;
10493 *) val="$d_attribute_noreturn" ;;
10494 esac
10495 set d_attribute_noreturn
10496 eval $setvar
10497 $rm -f attrib*
10498
10499 : Look for GCC-style attribute pure
10500 case "$d_attribute_pure" in
10501 '')
10502 echo " "
10503 echo "Checking whether your compiler can handle __attribute__((pure)) ..." >&4
10504 $cat >attrib.c <<'EOCP'
10505 #include <stdio.h>
10506 int square( int n ) __attribute__((pure));
10507 EOCP
10508 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
10509         if $contains 'warning' attrib.out >/dev/null 2>&1; then
10510                 echo "Your C compiler doesn't support __attribute__((pure))."
10511                 val="$undef"
10512         else
10513                 echo "Your C compiler supports __attribute__((pure))."
10514                 val="$define"
10515         fi
10516 else
10517         echo "Your C compiler doesn't seem to understand __attribute__ at all."
10518         val="$undef"
10519 fi
10520 ;;
10521 *) val="$d_attribute_pure" ;;
10522 esac
10523 set d_attribute_pure
10524 eval $setvar
10525 $rm -f attrib*
10526
10527 : Look for GCC-style attribute unused
10528 case "$d_attribute_unused" in
10529 '')
10530 echo " "
10531 echo "Checking whether your compiler can handle __attribute__((unused)) ..." >&4
10532 $cat >attrib.c <<'EOCP'
10533 #include <stdio.h>
10534 int do_something( int dummy __attribute__((unused)), int n );
10535 EOCP
10536 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
10537         if $contains 'warning' attrib.out >/dev/null 2>&1; then
10538                 echo "Your C compiler doesn't support __attribute__((unused))."
10539                 val="$undef"
10540         else
10541                 echo "Your C compiler supports __attribute__((unused))."
10542                 val="$define"
10543         fi
10544 else
10545         echo "Your C compiler doesn't seem to understand __attribute__ at all."
10546         val="$undef"
10547 fi
10548 ;;
10549 *) val="$d_attribute_unused" ;;
10550 esac
10551 set d_attribute_unused
10552 eval $setvar
10553 $rm -f attrib*
10554
10555 : Look for GCC-style attribute deprecated
10556 case "$d_attribute_deprecated" in
10557 '')
10558 echo " "
10559 echo "Checking whether your compiler can handle __attribute__((deprecated)) ..." >&4
10560 $cat >attrib.c <<'EOCP'
10561 #include <stdio.h>
10562 int I_am_deprecated(void) __attribute__((deprecated));
10563 EOCP
10564 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
10565         if $contains 'warning' attrib.out >/dev/null 2>&1; then
10566                 echo "Your C compiler doesn't support __attribute__((deprecated))."
10567                 val="$undef"
10568         else
10569                 echo "Your C compiler supports __attribute__((deprecated))."
10570                 val="$define"
10571         fi
10572 else
10573         echo "Your C compiler doesn't seem to understand __attribute__ at all."
10574         val="$undef"
10575 fi
10576 ;;
10577 *) val="$d_attribute_deprecated" ;;
10578 esac
10579 set d_attribute_deprecated
10580 eval $setvar
10581 $rm -f attrib*
10582
10583 : Look for GCC-style attribute warn_unused_result
10584 case "$d_attribute_warn_unused_result" in
10585 '')
10586 echo " "
10587 echo "Checking whether your compiler can handle __attribute__((warn_unused_result)) ..." >&4
10588 $cat >attrib.c <<'EOCP'
10589 #include <stdio.h>
10590 int I_will_not_be_ignored(void) __attribute__((warn_unused_result));
10591 EOCP
10592 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
10593         if $contains 'warning' attrib.out >/dev/null 2>&1; then
10594                 echo "Your C compiler doesn't support __attribute__((warn_unused_result))."
10595                 val="$undef"
10596         else
10597                 echo "Your C compiler supports __attribute__((warn_unused_result))."
10598                 val="$define"
10599         fi
10600 else
10601         echo "Your C compiler doesn't seem to understand __attribute__ at all."
10602         val="$undef"
10603 fi
10604 ;;
10605 *) val="$d_attribute_warn_unused_result" ;;
10606 esac
10607 set d_attribute_warn_unused_result
10608 eval $setvar
10609 $rm -f attrib*
10610
10611 : see if bcmp exists
10612 set bcmp d_bcmp
10613 eval $inlibc
10614
10615 : see if bcopy exists
10616 set bcopy d_bcopy
10617 eval $inlibc
10618
10619 : see if getpgrp exists
10620 set getpgrp d_getpgrp
10621 eval $inlibc
10622
10623 case "$d_getpgrp" in
10624 "$define")
10625         echo " "
10626         echo "Checking to see which flavor of getpgrp is in use..."
10627         $cat >try.c <<EOP
10628 #$i_unistd I_UNISTD
10629 #include <sys/types.h>
10630 #ifdef I_UNISTD
10631 #  include <unistd.h>
10632 #endif
10633 #$i_stdlib I_STDLIB
10634 #ifdef I_STDLIB
10635 #include <stdlib.h>
10636 #endif
10637 int main()
10638 {
10639         if (getuid() == 0) {
10640                 printf("(I see you are running Configure as super-user...)\n");
10641                 setuid(1);
10642         }
10643 #ifdef TRY_BSD_PGRP
10644         if (getpgrp(1) == 0)
10645                 exit(0);
10646 #else
10647         if (getpgrp() > 0)
10648                 exit(0);
10649 #endif
10650         exit(1);
10651 }
10652 EOP
10653         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
10654                 echo "You have to use getpgrp(pid) instead of getpgrp()." >&4
10655                 val="$define"
10656         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
10657                 echo "You have to use getpgrp() instead of getpgrp(pid)." >&4
10658                 val="$undef"
10659         else
10660                 echo "I can't seem to compile and run the test program."
10661                 if ./usg; then
10662                         xxx="a USG one, i.e. you use getpgrp()."
10663                 else
10664                         # SVR4 systems can appear rather BSD-ish.
10665                         case "$i_unistd" in
10666                         $undef)
10667                                 xxx="a BSD one, i.e. you use getpgrp(pid)."
10668                                 val="$define"
10669                                 ;;
10670                         $define)
10671                                 xxx="probably a USG one, i.e. you use getpgrp()."
10672                                 val="$undef"
10673                                 ;;
10674                         esac
10675                 fi
10676                 echo "Assuming your getpgrp is $xxx" >&4
10677         fi
10678         ;;
10679 *) val="$undef";;
10680 esac
10681 set d_bsdgetpgrp
10682 eval $setvar
10683 $rm_try
10684
10685 : see if setpgrp exists
10686 set setpgrp d_setpgrp
10687 eval $inlibc
10688
10689 case "$d_setpgrp" in
10690 "$define")
10691         echo " "
10692         echo "Checking to see which flavor of setpgrp is in use..."
10693         $cat >try.c <<EOP
10694 #$i_unistd I_UNISTD
10695 #include <sys/types.h>
10696 #ifdef I_UNISTD
10697 #  include <unistd.h>
10698 #endif
10699 #$i_stdlib I_STDLIB
10700 #ifdef I_STDLIB
10701 #include <stdlib.h>
10702 #endif
10703 int main()
10704 {
10705         if (getuid() == 0) {
10706                 printf("(I see you are running Configure as super-user...)\n");
10707                 setuid(1);
10708         }
10709 #ifdef TRY_BSD_PGRP
10710         if (-1 == setpgrp(1, 1))
10711                 exit(0);
10712 #else
10713         if (setpgrp() != -1)
10714                 exit(0);
10715 #endif
10716         exit(1);
10717 }
10718 EOP
10719         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
10720                 echo 'You have to use setpgrp(pid,pgrp) instead of setpgrp().' >&4
10721                 val="$define"
10722         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
10723                 echo 'You have to use setpgrp() instead of setpgrp(pid,pgrp).' >&4
10724                 val="$undef"
10725         else
10726                 echo "(I can't seem to compile and run the test program.)"
10727                 if ./usg; then
10728                         xxx="a USG one, i.e. you use setpgrp()."
10729                 else
10730                         # SVR4 systems can appear rather BSD-ish.
10731                         case "$i_unistd" in
10732                         $undef)
10733                                 xxx="a BSD one, i.e. you use setpgrp(pid,pgrp)."
10734                                 val="$define"
10735                                 ;;
10736                         $define)
10737                                 xxx="probably a USG one, i.e. you use setpgrp()."
10738                                 val="$undef"
10739                                 ;;
10740                         esac
10741                 fi
10742                 echo "Assuming your setpgrp is $xxx" >&4
10743         fi
10744         ;;
10745 *) val="$undef";;
10746 esac
10747 set d_bsdsetpgrp
10748 eval $setvar
10749 $rm_try
10750
10751 : Look for GCC-style __builtin_choose_expr
10752 case "$d_builtin_choose_expr" in
10753 '')
10754     echo " "
10755     echo "Checking whether your compiler can handle __builtin_choose_expr ..." >&4
10756     $cat >try.c <<'EOCP'
10757 #include <assert.h>
10758 #include <stdlib.h>
10759 #include <stdio.h>
10760
10761 #define SYRINX(x) __builtin_choose_expr( x, (1056*2), (103*50) )
10762
10763 int main(void) {
10764     assert( SYRINX(1) == 2112 );
10765     assert( SYRINX(1) != 5150 );
10766     assert( SYRINX(0) == 5150 );
10767     assert( SYRINX(0) != 2112 );
10768     puts( "All good!" );
10769     exit(0);
10770 }
10771
10772 EOCP
10773     set try
10774     if eval $compile && $run ./try; then
10775         echo "Your C compiler supports __builtin_choose_expr."
10776         val="$define"
10777     else
10778         echo "Your C compiler doesn't seem to understand __builtin_choose_expr."
10779         val="$undef"
10780     fi
10781 ;;
10782 *) val="$d_builtin_choose_expr" ;;
10783 esac
10784
10785 set d_builtin_choose_expr
10786 eval $setvar
10787 $rm_try
10788
10789 : Look for GCC-style __builtin_expect
10790 case "$d_builtin_expect" in
10791 '')
10792     echo " "
10793     echo "Checking whether your compiler can handle __builtin_expect ..." >&4
10794     $cat >try.c <<'EOCP'
10795 int main(void) {
10796     int n = 50;
10797     if ( __builtin_expect(n, 0) ) n = 1;
10798     /* Remember shell exit code truth is 0, C truth is non-zero */
10799     return !(n == 1);
10800 }
10801 EOCP
10802     set try
10803     if eval $compile && $run ./try; then
10804         echo "Your C compiler supports __builtin_expect."
10805         val="$define"
10806     else
10807         echo "Your C compiler doesn't seem to understand __builtin_expect."
10808         val="$undef"
10809     fi
10810     ;;
10811 *) val="$d_builtin_expect" ;;
10812 esac
10813
10814 set d_builtin_expect
10815 eval $setvar
10816 $rm_try
10817
10818 : see if bzero exists
10819 set bzero d_bzero
10820 eval $inlibc
10821
10822 : see if stdarg is available
10823 echo " "
10824 if $test `./findhdr stdarg.h`; then
10825         echo "<stdarg.h> found." >&4
10826         valstd="$define"
10827 else
10828         echo "<stdarg.h> NOT found." >&4
10829         valstd="$undef"
10830 fi
10831
10832 : see if varags is available
10833 echo " "
10834 if $test `./findhdr varargs.h`; then
10835         echo "<varargs.h> found." >&4
10836 else
10837         echo "<varargs.h> NOT found, but that's ok (I hope)." >&4
10838 fi
10839
10840 : set up the varargs testing programs
10841 $cat > varargs.c <<EOP
10842 #ifdef I_STDARG
10843 #include <stdarg.h>
10844 #endif
10845 #ifdef I_VARARGS
10846 #include <varargs.h>
10847 #endif
10848
10849 #ifdef I_STDARG
10850 int f(char *p, ...)
10851 #else
10852 int f(va_alist)
10853 va_dcl
10854 #endif
10855 {
10856         va_list ap;
10857 #ifndef I_STDARG
10858         char *p;
10859 #endif
10860 #ifdef I_STDARG
10861         va_start(ap,p);
10862 #else
10863         va_start(ap);
10864         p = va_arg(ap, char *);
10865 #endif
10866         va_end(ap);
10867         return 0;
10868 }
10869 EOP
10870 $cat > varargs <<EOP
10871 $startsh
10872 if $cc -c $ccflags -D\$1 varargs.c >/dev/null 2>&1; then
10873         echo "true"
10874 else
10875         echo "false"
10876 fi
10877 $rm -f varargs$_o
10878 EOP
10879 chmod +x varargs
10880
10881 : now check which varargs header should be included
10882 echo " "
10883 i_varhdr=''
10884 case "$valstd" in
10885 "$define")
10886         if `./varargs I_STDARG`; then
10887                 val='stdarg.h'
10888         elif `./varargs I_VARARGS`; then
10889                 val='varargs.h'
10890         fi
10891         ;;
10892 *)
10893         if `./varargs I_VARARGS`; then
10894                 val='varargs.h'
10895         fi
10896         ;;
10897 esac
10898 case "$val" in
10899 '')
10900 echo "I could not find the definition for va_dcl... You have problems..." >&4
10901         val="$undef"; set i_stdarg; eval $setvar
10902         val="$undef"; set i_varargs; eval $setvar
10903         ;;
10904 *)
10905         set i_varhdr
10906         eval $setvar
10907         case "$i_varhdr" in
10908         stdarg.h)
10909                 val="$define"; set i_stdarg; eval $setvar
10910                 val="$undef"; set i_varargs; eval $setvar
10911                 ;;
10912         varargs.h)
10913                 val="$undef"; set i_stdarg; eval $setvar
10914                 val="$define"; set i_varargs; eval $setvar
10915                 ;;
10916         esac
10917         echo "We'll include <$i_varhdr> to get va_dcl definition." >&4;;
10918 esac
10919 $rm -f varargs*
10920
10921 : see if the Compiler supports C99 variadic macros
10922 case "$i_stdarg$i_stdlib" in
10923     "$define$define")
10924     echo "You have <stdarg.h> and <stdlib.h>, so checking for C99 variadic macros." >&4
10925     $cat >try.c <<EOCP
10926 #include <stdio.h>
10927 #include <stdarg.h>
10928
10929 #define foo(buffer, format, ...) sprintf(buffer, format, __VA_ARGS__)
10930
10931 int main() {
10932   char buf[20];
10933   foo(buf, "%d %g %.*s", 123, 456.0, (int)3, "789fail");
10934   puts(buf);
10935   return 0;
10936 }
10937 EOCP
10938     set try
10939     if eval $compile && $run ./try 2>&1 >/dev/null; then
10940         case "`$run ./try`" in
10941             "123 456 789")
10942             echo "You have C99 variadic macros." >&4
10943             d_c99_variadic_macros="$define"
10944             ;;
10945             *)
10946             echo "You don't have functional C99 variadic macros." >&4
10947             d_c99_variadic_macros="$undef"
10948             ;;
10949         esac
10950     else
10951         echo "I couldn't compile and run the test program, so I assume that you don't have functional C99 variadic macros." >&4
10952         d_c99_variadic_macros="$undef"
10953     fi
10954     $rm_try
10955     ;;
10956     *)
10957     echo "You don't have <stdarg.h> and <stdlib.h>, so not checking for C99 variadic macros." >&4
10958     d_c99_variadic_macros="$undef"
10959     ;;
10960 esac
10961
10962 : see if signal is declared as pointer to function returning int or void
10963 echo " "
10964 xxx=`./findhdr signal.h`
10965 $test "$xxx" && $cppstdin $cppminus $cppflags < $xxx >$$.tmp 2>/dev/null
10966 if $contains 'int.*\*[  ]*signal' $$.tmp >/dev/null 2>&1 ; then
10967         echo "You have int (*signal())() instead of void." >&4
10968         val="$undef"
10969 elif $contains 'void.*\*[       ]*signal' $$.tmp >/dev/null 2>&1 ; then
10970         echo "You have void (*signal())()." >&4
10971         val="$define"
10972 elif $contains 'extern[         ]*[(\*]*signal' $$.tmp >/dev/null 2>&1 ; then
10973         echo "You have int (*signal())() instead of void." >&4
10974         val="$undef"
10975 elif $contains 'void.*\*.*sig' $$.tmp >/dev/null 2>&1 ; then
10976         echo "You have void (*signal())()." >&4
10977         val="$define"
10978 else
10979         case "$d_voidsig" in
10980         '')
10981         echo "I can't determine whether signal handler returns void or int..." >&4
10982                 dflt=void
10983                 rp="What type does your signal handler return?"
10984                 . ./myread
10985                 case "$ans" in
10986                 v*) val="$define";;
10987                 *) val="$undef";;
10988                 esac;;
10989         "$define")
10990                 echo "As you already told me, signal handler returns void." >&4
10991                 val="$define"
10992                 ;;
10993         *)      echo "As you already told me, signal handler returns int." >&4
10994                 val="$undef"
10995                 ;;
10996         esac
10997 fi
10998 set d_voidsig
10999 eval $setvar
11000 case "$d_voidsig" in
11001 "$define") signal_t="void";;
11002 *) signal_t="int";;
11003 esac
11004 $rm -f $$.tmp
11005
11006 : check for ability to cast large floats to 32-bit ints.
11007 echo " "
11008 echo 'Checking whether your C compiler can cast large floats to int32.' >&4
11009 if $test "$intsize" -ge 4; then
11010         xxx=int
11011 else
11012         xxx=long
11013 fi
11014 $cat >try.c <<EOCP
11015 #include <stdio.h>
11016 #$i_stdlib I_STDLIB
11017 #ifdef I_STDLIB
11018 #include <stdlib.h>
11019 #endif
11020 #include <sys/types.h>
11021 #include <signal.h>
11022 $signal_t blech(int s) { exit(3); }
11023 int main()
11024 {
11025         $xxx i32;
11026         double f, g;
11027         int result = 0;
11028         char str[16];
11029         signal(SIGFPE, blech);
11030
11031         /* Don't let compiler optimize the test away.  Store the number
11032            in a writable string for gcc to pass to sscanf under HP-UX.
11033         */
11034         sprintf(str, "2147483647");
11035         sscanf(str, "%lf", &f); /* f = (double) 0x7fffffff; */
11036         g = 10 * f;
11037         i32  = ($xxx) g;
11038
11039         /* x86 processors will probably give 0x8000 0000, which is a
11040            sign change.  We don't want that.  We want to mimic SPARC
11041            behavior here, which is to preserve the sign and give
11042            back 0x7fff ffff.
11043         */
11044         if (i32 != ($xxx) f)
11045                 result |= 1;
11046         exit(result);
11047 }
11048 EOCP
11049 set try
11050 if eval $compile_ok; then
11051         $run ./try
11052         yyy=$?
11053 else
11054         echo "(I can't seem to compile the test program--assuming it can't)"
11055         yyy=1
11056 fi
11057 case "$yyy" in
11058 0)      val="$define"
11059         echo "Yup, it can."
11060         ;;
11061 *)      val="$undef"
11062         echo "Nope, it can't."
11063         ;;
11064 esac
11065 set d_casti32
11066 eval $setvar
11067 $rm_try
11068
11069 : check for ability to cast negative floats to unsigned
11070 echo " "
11071 echo 'Checking whether your C compiler can cast negative float to unsigned.' >&4
11072 $cat >try.c <<EOCP
11073 #include <stdio.h>
11074 #$i_stdlib I_STDLIB
11075 #ifdef I_STDLIB
11076 #include <stdlib.h>
11077 #endif
11078 #include <sys/types.h>
11079 #include <signal.h>
11080 $signal_t blech(int s) { exit(7); }
11081 $signal_t blech_in_list(int s) { exit(4); }
11082 unsigned long dummy_long(unsigned long p) { return p; }
11083 unsigned int dummy_int(unsigned int p) { return p; }
11084 unsigned short dummy_short(unsigned short p) { return p; }
11085 int main()
11086 {
11087         double f;
11088         unsigned long along;
11089         unsigned int aint;
11090         unsigned short ashort;
11091         int result = 0;
11092         char str[16];
11093
11094         /* Frustrate gcc-2.7.2's optimizer which failed this test with
11095            a direct f = -123. assignment.  gcc-2.8.0 reportedly
11096            optimized the whole file away
11097         */
11098         /* Store the number in a writable string for gcc to pass to
11099            sscanf under HP-UX.
11100         */
11101         sprintf(str, "-123");
11102         sscanf(str, "%lf", &f);  /* f = -123.; */
11103
11104         signal(SIGFPE, blech);
11105         along = (unsigned long)f;
11106         aint = (unsigned int)f;
11107         ashort = (unsigned short)f;
11108         if (along != (unsigned long)-123)
11109                 result |= 1;
11110         if (aint != (unsigned int)-123)
11111                 result |= 1;
11112         if (ashort != (unsigned short)-123)
11113                 result |= 1;
11114         sprintf(str, "1073741824.");
11115         sscanf(str, "%lf", &f); /* f = (double)0x40000000; */
11116         f = f + f;
11117         along = 0;
11118         along = (unsigned long)f;
11119         if (along != 0x80000000)
11120                 result |= 2;
11121         f -= 1.;
11122         along = 0;
11123         along = (unsigned long)f;
11124         if (along != 0x7fffffff)
11125                 result |= 1;
11126         f += 2.;
11127         along = 0;
11128         along = (unsigned long)f;
11129         if (along != 0x80000001)
11130                 result |= 2;
11131         if (result)
11132                 exit(result);
11133         signal(SIGFPE, blech_in_list);
11134         sprintf(str, "123.");
11135         sscanf(str, "%lf", &f);  /* f = 123.; */
11136         along = dummy_long((unsigned long)f);
11137         aint = dummy_int((unsigned int)f);
11138         ashort = dummy_short((unsigned short)f);
11139         if (along != (unsigned long)123)
11140                 result |= 4;
11141         if (aint != (unsigned int)123)
11142                 result |= 4;
11143         if (ashort != (unsigned short)123)
11144                 result |= 4;
11145         exit(result);
11146
11147 }
11148 EOCP
11149 set try
11150 if eval $compile_ok; then
11151         $run ./try
11152         castflags=$?
11153 else
11154         echo "(I can't seem to compile the test program--assuming it can't)"
11155         castflags=7
11156 fi
11157 case "$castflags" in
11158 0)      val="$define"
11159         echo "Yup, it can."
11160         ;;
11161 *)      val="$undef"
11162         echo "Nope, it can't."
11163         ;;
11164 esac
11165 set d_castneg
11166 eval $setvar
11167 $rm_try
11168
11169 : see if vprintf exists
11170 echo " "
11171 if set vprintf val -f d_vprintf; eval $csym; $val; then
11172         echo 'vprintf() found.' >&4
11173         val="$define"
11174         $cat >try.c <<EOF
11175 #$i_stdarg I_STDARG  /* Only one of these can be defined by i_varhrd */
11176 #$i_varargs I_VARARGS
11177
11178 #$i_stdlib I_STDLIB
11179 #$i_unistd I_UNISTD
11180
11181 #ifdef I_STDARG
11182 #  include <stdarg.h>
11183 #else /* I_VARARGS */
11184 #  include <varargs.h>
11185 #endif
11186
11187 #ifdef I_UNISTD
11188 #  include <unistd.h>
11189 #endif
11190
11191 #ifdef I_STDLIB
11192 #  include <stdlib.h>
11193 #endif
11194
11195 #include <stdio.h> /* vsprintf prototype */
11196
11197 #ifdef I_STDARG
11198 void xxx(int n, ...)
11199 {
11200     va_list args;
11201     char buf[10];
11202     va_start(args, n);
11203     exit((unsigned long)vsprintf(buf,"%s",args) > 10L);
11204 }
11205 int main() { xxx(1, "foo"); }
11206
11207 #else /* I_VARARGS */
11208
11209 xxx(va_alist)
11210 va_dcl
11211 {
11212     va_list args;
11213     char buf[10];
11214     va_start(args);
11215     exit((unsigned long)vsprintf(buf,"%s",args) > 10L);
11216 }
11217 int main() { xxx("foo"); }
11218
11219 #endif
11220
11221 EOF
11222         set try
11223         if eval $compile_ok; then
11224                 if $run ./try; then
11225                         echo "Your vsprintf() returns (int)." >&4
11226                         val2="$undef"
11227                 else
11228                         echo "Your vsprintf() returns (char*)." >&4
11229                         val2="$define"
11230                 fi
11231         else
11232                 echo 'I am unable to compile the vsprintf() test program.' >&4
11233                 # We shouldn't get here.  If we do, assume the standard signature,
11234                 # not the old BSD one.
11235                 echo 'Guessing that vsprintf() returns (int).' >&4
11236                 val2="$undef"
11237         fi
11238 else
11239         echo 'vprintf() NOT found.' >&4
11240         val="$undef"
11241         val2="$undef"
11242 fi
11243 $rm_try
11244 set d_vprintf
11245 eval $setvar
11246 val=$val2
11247 set d_charvspr
11248 eval $setvar
11249
11250 : see if chown exists
11251 set chown d_chown
11252 eval $inlibc
11253
11254 : see if chroot exists
11255 set chroot d_chroot
11256 eval $inlibc
11257
11258 : see if chsize exists
11259 set chsize d_chsize
11260 eval $inlibc
11261
11262 : see if class exists
11263 set class d_class
11264 eval $inlibc
11265
11266 : see if clearenv exists
11267 set clearenv d_clearenv
11268 eval $inlibc
11269
11270 : Define hasstruct macro for Configure internal use
11271 hasstruct='varname=$1; struct=$2; shift; shift;
11272 while $test $# -ge 2; do
11273         case "$1" in
11274         $define) echo "#include <$2>";;
11275         esac ;
11276     shift 2;
11277 done > try.c;
11278 echo "int main () { struct $struct foo; }" >> try.c;
11279 set try;
11280 if eval $compile; then
11281         val="$define";
11282 else
11283         val="$undef";
11284 fi;
11285 set $varname;
11286 eval $setvar;
11287 $rm_try'
11288
11289 : see whether socket exists
11290 socketlib=''
11291 sockethdr=''
11292 echo " "
11293 $echo $n "Hmm... $c" >&4
11294 if set socket val -f d_socket; eval $csym; $val; then
11295         echo "Looks like you have Berkeley networking support." >&4
11296         d_socket="$define"
11297         if set setsockopt val -f; eval $csym; $val; then
11298                 d_oldsock="$undef"
11299         else
11300                 echo "...but it uses the old BSD 4.1c interface, rather than 4.2." >&4
11301                 d_oldsock="$define"
11302         fi
11303 else
11304         if $contains socklib libc.list >/dev/null 2>&1; then
11305                 echo "Looks like you have Berkeley networking support." >&4
11306                 d_socket="$define"
11307                 : we will have to assume that it supports the 4.2 BSD interface
11308                 d_oldsock="$undef"
11309         else
11310                 echo "You don't have Berkeley networking in libc$_a..." >&4
11311                 if test "X$d_socket" = "X$define"; then
11312                    echo "...but you seem to believe that you have sockets." >&4
11313                 else
11314                         for net in net socket
11315                         do
11316                                 if test -f /usr/lib/lib$net$_a; then
11317                                         ( ($nm $nm_opt /usr/lib/lib$net$_a | eval $nm_extract) ||  \
11318                                         $ar t /usr/lib/lib$net$_a) 2>/dev/null >> libc.list
11319                                         if $contains socket libc.list >/dev/null 2>&1; then
11320                                                 d_socket="$define"
11321                                                 socketlib="-l$net"
11322                                                 case "$net" in
11323                                                 net)
11324                                                         echo "...but the Wollongong group seems to have hacked it in." >&4
11325                                                         sockethdr="-I/usr/netinclude"
11326                                                         ;;
11327                                                 esac
11328                                                 echo "Found Berkeley sockets interface in lib$net." >&4
11329                                                 if $contains setsockopt libc.list >/dev/null 2>&1; then
11330                                                         d_oldsock="$undef"
11331                                                 else
11332                                                         echo "...using the old BSD 4.1c interface, rather than 4.2." >&4
11333                                                         d_oldsock="$define"
11334                                                 fi
11335                                                 break
11336                                         fi
11337                                 fi
11338                         done
11339                         if test "X$d_socket" != "X$define"; then
11340                            echo "or anywhere else I see." >&4
11341                            d_socket="$undef"
11342                            d_oldsock="$undef"
11343                         fi
11344                 fi
11345         fi
11346 fi
11347
11348 : see if socketpair exists
11349 set socketpair d_sockpair
11350 eval $inlibc
11351
11352
11353 echo " "
11354 echo "Checking the availability of certain socket constants..." >&4
11355 for ENUM in MSG_CTRUNC MSG_DONTROUTE MSG_OOB MSG_PEEK MSG_PROXY SCM_RIGHTS; do
11356         enum=`$echo $ENUM|./tr '[A-Z]' '[a-z]'`
11357         $cat >try.c <<EOF
11358 #include <sys/types.h>
11359 #include <sys/socket.h>
11360 int main() {
11361     int i = $ENUM;
11362 }
11363 EOF
11364         val="$undef"
11365         set try; if eval $compile; then
11366                 val="$define"
11367         fi
11368         set d_${enum}; eval $setvar
11369         $rm_try
11370 done
11371
11372 : see if this is a sys/uio.h system
11373 set sys/uio.h i_sysuio
11374 eval $inhdr
11375
11376 : Check for cmsghdr support
11377 echo " "
11378 echo "Checking to see if your system supports struct cmsghdr..." >&4
11379 set d_cmsghdr_s cmsghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
11380 eval $hasstruct
11381 case "$d_cmsghdr_s" in
11382 "$define")      echo "Yes, it does."   ;;
11383 *)              echo "No, it doesn't." ;;
11384 esac
11385
11386
11387 : check for const keyword
11388 echo " "
11389 echo 'Checking to see if your C compiler knows about "const"...' >&4
11390 $cat >const.c <<'EOCP'
11391 typedef struct spug { int drokk; } spug;
11392 int main()
11393 {
11394         const char *foo;
11395         const spug y = { 0 };
11396 }
11397 EOCP
11398 if $cc -c $ccflags const.c >/dev/null 2>&1 ; then
11399         val="$define"
11400         echo "Yup, it does."
11401 else
11402         val="$undef"
11403         echo "Nope, it doesn't."
11404 fi
11405 set d_const
11406 eval $setvar
11407
11408 : see if copysignl exists
11409 set copysignl d_copysignl
11410 eval $inlibc
11411
11412 : see if crypt exists
11413 echo " "
11414 set crypt d_crypt
11415 eval $inlibc
11416 case "$d_crypt" in
11417 $define) cryptlib='' ;;
11418 *)      if set crypt val -f d_crypt; eval $csym; $val; then
11419                 echo 'crypt() found.' >&4
11420                 val="$define"
11421                 cryptlib=''
11422         else
11423                 cryptlib=`./loc Slibcrypt$_a "" $xlibpth`
11424                 if $test -z "$cryptlib"; then
11425                         cryptlib=`./loc Mlibcrypt$_a "" $xlibpth`
11426                 else
11427                         cryptlib=-lcrypt
11428                 fi
11429                 if $test -z "$cryptlib"; then
11430                         cryptlib=`./loc Llibcrypt$_a "" $xlibpth`
11431                 else
11432                         cryptlib=-lcrypt
11433                 fi
11434                 if $test -z "$cryptlib"; then
11435                         cryptlib=`./loc libcrypt$_a "" $libpth`
11436                 else
11437                         cryptlib=-lcrypt
11438                 fi
11439                 if $test -z "$cryptlib"; then
11440                         echo 'crypt() NOT found.' >&4
11441                         val="$undef"
11442                 else
11443                         val="$define"
11444                 fi
11445         fi
11446         set d_crypt
11447         eval $setvar
11448         ;;
11449 esac
11450
11451 : see if this is a crypt.h system
11452 set crypt.h i_crypt
11453 eval $inhdr
11454
11455 : see if crypt_r exists
11456 set crypt_r d_crypt_r
11457 eval $inlibc
11458 case "$d_crypt_r" in
11459 "$define")
11460         hdrs="$i_systypes sys/types.h define stdio.h $i_crypt crypt.h"
11461         case "$d_crypt_r_proto:$usethreads" in
11462         ":define")      d_crypt_r_proto=define
11463                 set d_crypt_r_proto crypt_r $hdrs
11464                 eval $hasproto ;;
11465         *)      ;;
11466         esac
11467         case "$d_crypt_r_proto" in
11468         define)
11469         case "$crypt_r_proto" in
11470         ''|0) try='char* crypt_r(const char*, const char*, struct crypt_data*);'
11471         ./protochk "$extern_C $try" $hdrs && crypt_r_proto=B_CCS ;;
11472         esac
11473         case "$crypt_r_proto" in
11474         ''|0) try='char* crypt_r(const char*, const char*, CRYPTD*);'
11475         ./protochk "$extern_C $try" $hdrs && crypt_r_proto=B_CCD ;;
11476         esac
11477         case "$crypt_r_proto" in
11478         ''|0)   d_crypt_r=undef
11479                 crypt_r_proto=0
11480                 echo "Disabling crypt_r, cannot determine prototype." >&4 ;;
11481         * )     case "$crypt_r_proto" in
11482                 REENTRANT_PROTO*) ;;
11483                 *) crypt_r_proto="REENTRANT_PROTO_$crypt_r_proto" ;;
11484                 esac
11485                 echo "Prototype: $try" ;;
11486         esac
11487         ;;
11488         *)      case "$usethreads" in
11489                 define) echo "crypt_r has no prototype, not using it." >&4 ;;
11490                 esac
11491                 d_crypt_r=undef
11492                 crypt_r_proto=0
11493                 ;;
11494         esac
11495         ;;
11496 *)      crypt_r_proto=0
11497         ;;
11498 esac
11499
11500 : get csh whereabouts
11501 case "$csh" in
11502 'csh') val="$undef" ;;
11503 *) val="$define" ;;
11504 esac
11505 set d_csh
11506 eval $setvar
11507 : Respect a hint or command line value for full_csh.
11508 case "$full_csh" in
11509 '') full_csh=$csh ;;
11510 esac
11511
11512 : see if ctermid exists
11513 set ctermid d_ctermid
11514 eval $inlibc
11515
11516 : see if ctermid_r exists
11517 set ctermid_r d_ctermid_r
11518 eval $inlibc
11519 case "$d_ctermid_r" in
11520 "$define")
11521         hdrs="$i_systypes sys/types.h define stdio.h "
11522         case "$d_ctermid_r_proto:$usethreads" in
11523         ":define")      d_ctermid_r_proto=define
11524                 set d_ctermid_r_proto ctermid_r $hdrs
11525                 eval $hasproto ;;
11526         *)      ;;
11527         esac
11528         case "$d_ctermid_r_proto" in
11529         define)
11530         case "$ctermid_r_proto" in
11531         ''|0) try='char* ctermid_r(char*);'
11532         ./protochk "$extern_C $try" $hdrs && ctermid_r_proto=B_B ;;
11533         esac
11534         case "$ctermid_r_proto" in
11535         ''|0)   d_ctermid_r=undef
11536                 ctermid_r_proto=0
11537                 echo "Disabling ctermid_r, cannot determine prototype." >&4 ;;
11538         * )     case "$ctermid_r_proto" in
11539                 REENTRANT_PROTO*) ;;
11540                 *) ctermid_r_proto="REENTRANT_PROTO_$ctermid_r_proto" ;;
11541                 esac
11542                 echo "Prototype: $try" ;;
11543         esac
11544         ;;
11545         *)      case "$usethreads" in
11546                 define) echo "ctermid_r has no prototype, not using it." >&4 ;;
11547                 esac
11548                 d_ctermid_r=undef
11549                 ctermid_r_proto=0
11550                 ;;
11551         esac
11552         ;;
11553 *)      ctermid_r_proto=0
11554         ;;
11555 esac
11556
11557 : see if ctime_r exists
11558 set ctime_r d_ctime_r
11559 eval $inlibc
11560 case "$d_ctime_r" in
11561 "$define")
11562         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
11563         case "$d_ctime_r_proto:$usethreads" in
11564         ":define")      d_ctime_r_proto=define
11565                 set d_ctime_r_proto ctime_r $hdrs
11566                 eval $hasproto ;;
11567         *)      ;;
11568         esac
11569         case "$d_ctime_r_proto" in
11570         define)
11571         case "$ctime_r_proto" in
11572         ''|0) try='char* ctime_r(const time_t*, char*);'
11573         ./protochk "$extern_C $try" $hdrs && ctime_r_proto=B_SB ;;
11574         esac
11575         case "$ctime_r_proto" in
11576         ''|0) try='char* ctime_r(const time_t*, char*, int);'
11577         ./protochk "$extern_C $try" $hdrs && ctime_r_proto=B_SBI ;;
11578         esac
11579         case "$ctime_r_proto" in
11580         ''|0) try='int ctime_r(const time_t*, char*);'
11581         ./protochk "$extern_C $try" $hdrs && ctime_r_proto=I_SB ;;
11582         esac
11583         case "$ctime_r_proto" in
11584         ''|0) try='int ctime_r(const time_t*, char*, int);'
11585         ./protochk "$extern_C $try" $hdrs && ctime_r_proto=I_SBI ;;
11586         esac
11587         case "$ctime_r_proto" in
11588         ''|0)   d_ctime_r=undef
11589                 ctime_r_proto=0
11590                 echo "Disabling ctime_r, cannot determine prototype." >&4 ;;
11591         * )     case "$ctime_r_proto" in
11592                 REENTRANT_PROTO*) ;;
11593                 *) ctime_r_proto="REENTRANT_PROTO_$ctime_r_proto" ;;
11594                 esac
11595                 echo "Prototype: $try" ;;
11596         esac
11597         ;;
11598         *)      case "$usethreads" in
11599                 define) echo "ctime_r has no prototype, not using it." >&4 ;;
11600                 esac
11601                 d_ctime_r=undef
11602                 ctime_r_proto=0
11603                 ;;
11604         esac
11605         ;;
11606 *)      ctime_r_proto=0
11607         ;;
11608 esac
11609
11610 : see if cuserid exists
11611 set cuserid d_cuserid
11612 eval $inlibc
11613
11614 : see if this is a limits.h system
11615 set limits.h i_limits
11616 eval $inhdr
11617
11618 : see if this is a float.h system
11619 set float.h i_float
11620 eval $inhdr
11621
11622 : See if number of significant digits in a double precision number is known
11623 echo " "
11624 $cat >dbl_dig.c <<EOM
11625 #$i_limits I_LIMITS
11626 #$i_float I_FLOAT
11627 #ifdef I_LIMITS
11628 #include <limits.h>
11629 #endif
11630 #ifdef I_FLOAT
11631 #include <float.h>
11632 #endif
11633 #ifdef DBL_DIG
11634 printf("Contains DBL_DIG");
11635 #endif
11636 EOM
11637 $cppstdin $cppflags $cppminus < dbl_dig.c >dbl_dig.E 2>/dev/null
11638 if $contains 'DBL_DIG' dbl_dig.E >/dev/null 2>&1; then
11639         echo "DBL_DIG found." >&4
11640         val="$define"
11641 else
11642         echo "DBL_DIG NOT found." >&4
11643         val="$undef"
11644 fi
11645 $rm -f dbl_dig.?
11646 set d_dbl_dig
11647 eval $setvar
11648
11649 : see if dbm.h is available
11650 : see if dbmclose exists
11651 set dbmclose d_dbmclose
11652 eval $inlibc
11653
11654 case "$d_dbmclose" in
11655 $define)
11656         set dbm.h i_dbm
11657         eval $inhdr
11658         case "$i_dbm" in
11659         $define)
11660                 val="$undef"
11661                 set i_rpcsvcdbm
11662                 eval $setvar
11663                 ;;
11664         *)      set rpcsvc/dbm.h i_rpcsvcdbm
11665                 eval $inhdr
11666                 ;;
11667         esac
11668         ;;
11669 *)      echo "We won't be including <dbm.h>"
11670         val="$undef"
11671         set i_dbm
11672         eval $setvar
11673         val="$undef"
11674         set i_rpcsvcdbm
11675         eval $setvar
11676         ;;
11677 esac
11678
11679 : see if prototype for dbminit is available
11680 echo " "
11681 set d_dbminitproto dbminit $i_dbm dbm.h
11682 eval $hasproto
11683
11684 : see if difftime exists
11685 set difftime d_difftime
11686 eval $inlibc
11687
11688 : see if this is a dirent system
11689 echo " "
11690 if xinc=`./findhdr dirent.h`; $test "$xinc"; then
11691         val="$define"
11692         echo "<dirent.h> found." >&4
11693 else
11694         val="$undef"
11695         if xinc=`./findhdr sys/dir.h`; $test "$xinc"; then
11696                 echo "<sys/dir.h> found." >&4
11697                 echo " "
11698         else
11699                 xinc=`./findhdr sys/ndir.h`
11700         fi
11701         echo "<dirent.h> NOT found." >&4
11702 fi
11703 set i_dirent
11704 eval $setvar
11705
11706 : Look for type of directory structure.
11707 echo " "
11708 $cppstdin $cppflags $cppminus < "$xinc" > try.c
11709
11710 case "$direntrytype" in
11711 ''|' ')
11712         case "$i_dirent" in
11713         $define) guess1='struct dirent' ;;
11714         *) guess1='struct direct'  ;;
11715         esac
11716         ;;
11717 *)      guess1="$direntrytype"
11718         ;;
11719 esac
11720
11721 case "$guess1" in
11722 'struct dirent') guess2='struct direct' ;;
11723 *) guess2='struct dirent' ;;
11724 esac
11725
11726 if $contains "$guess1" try.c >/dev/null 2>&1; then
11727         direntrytype="$guess1"
11728         echo "Your directory entries are $direntrytype." >&4
11729 elif $contains "$guess2" try.c >/dev/null 2>&1; then
11730         direntrytype="$guess2"
11731         echo "Your directory entries seem to be $direntrytype." >&4
11732 else
11733         echo "I don't recognize your system's directory entries." >&4
11734         rp="What type is used for directory entries on this system?"
11735         dflt="$guess1"
11736         . ./myread
11737         direntrytype="$ans"
11738 fi
11739 $rm_try
11740
11741 : see if the directory entry stores field length
11742 echo " "
11743 $cppstdin $cppflags $cppminus < "$xinc" > try.c
11744 if $contains 'd_namlen' try.c >/dev/null 2>&1; then
11745         echo "Good, your directory entry keeps length information in d_namlen." >&4
11746         val="$define"
11747 else
11748         echo "Your directory entry does not know about the d_namlen field." >&4
11749         val="$undef"
11750 fi
11751 set d_dirnamlen
11752 eval $setvar
11753 $rm_try
11754
11755 : Look for DIR.dd_fd
11756 case "$i_dirent" in
11757 "$define")
11758     echo "Checking to see if DIR has a dd_fd member variable" >&4
11759     $cat >try.c <<EOCP
11760 #$i_stdlib I_STDLIB
11761 #ifdef I_STDLIB
11762 #include <stdlib.h>
11763 #endif
11764 #include <dirent.h>
11765
11766 int main() {
11767     DIR dir;
11768     dir.dd_fd = 1;
11769     return 0;
11770 }
11771 EOCP
11772     val=$undef
11773     set try
11774     if eval $compile; then
11775         echo "Yes, it does."
11776         val="$define"
11777     else
11778         echo "No, it does not."
11779         val="$undef"
11780     fi
11781     ;;
11782 *)
11783     echo "You don't have a <dirent.h>, so not checking for dd_fd." >&4
11784     val="$undef"
11785     ;;
11786 esac
11787 set d_dir_dd_fd
11788 eval $setvar
11789 $rm_try
11790
11791 : see if this is an sysdir system
11792 set sys/dir.h i_sysdir
11793 eval $inhdr
11794
11795 : see if this is an sysndir system
11796 set sys/ndir.h i_sysndir
11797 eval $inhdr
11798
11799 : Look for dirfd
11800 echo " "
11801 $cat >dirfd.c <<EOM
11802 #include <stdio.h>
11803 #$i_stdlib I_STDLIB
11804 #ifdef I_STDLIB
11805 #include <stdlib.h>
11806 #endif
11807 #$i_dirent I_DIRENT             /**/
11808 #$i_sysdir I_SYS_DIR            /**/
11809 #$i_sysndir I_SYS_NDIR          /**/
11810 #$i_systypes I_SYS_TYPES        /**/
11811 #if defined(I_SYS_TYPES)
11812 #include <sys/types.h>
11813 #endif
11814 #if defined(I_DIRENT)
11815 #include <dirent.h>
11816 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
11817 #include <sys/dir.h>
11818 #endif
11819 #else
11820 #ifdef I_SYS_NDIR
11821 #include <sys/ndir.h>
11822 #else
11823 #ifdef I_SYS_DIR
11824 #ifdef hp9000s500
11825 #include <ndir.h>       /* may be wrong in the future */
11826 #else
11827 #include <sys/dir.h>
11828 #endif
11829 #endif
11830 #endif
11831 #endif 
11832 int main() {
11833         DIR *dirp = opendir(".");
11834         if (dirfd(dirp) >= 0)
11835                 exit(0);
11836         else
11837                 exit(1);
11838 }
11839 EOM
11840 val=$undef
11841 set dirfd
11842 if eval $compile; then
11843         val="$define"
11844 fi
11845 case "$val" in
11846 $define)        echo "dirfd() found." >&4       ;;
11847 *)              echo "dirfd() NOT found." >&4   ;;
11848 esac
11849 set d_dirfd
11850 eval $setvar
11851 $rm -f dirfd*
11852
11853 : see if dlerror exists
11854 xxx_runnm="$runnm"
11855 runnm=false
11856 set dlerror d_dlerror
11857 eval $inlibc
11858 runnm="$xxx_runnm"
11859
11860 : see if dlfcn is available
11861 set dlfcn.h i_dlfcn
11862 eval $inhdr
11863
11864 : Check what extension to use for shared libs
11865 case "$usedl" in
11866 $define|y|true)
11867         $cat << EOM
11868
11869 On a few systems, the dynamically loaded modules that perl generates and uses
11870 will need a different extension than shared libs. The default will probably
11871 be appropriate.
11872
11873 EOM
11874         case "$dlext" in
11875         '')     dflt="$so" ;;
11876         *)      dflt="$dlext" ;;
11877         esac
11878         rp='What is the extension of dynamically loaded modules'
11879         . ./myread
11880         dlext="$ans"
11881         ;;
11882 *)
11883         dlext="none"
11884         ;;
11885 esac
11886
11887 : Check if dlsym need a leading underscore
11888 echo " "
11889 val="$undef"
11890
11891 case "$dlsrc" in
11892 dl_dlopen.xs)
11893         echo "Checking whether your dlsym() needs a leading underscore ..." >&4
11894         $cat >dyna.c <<'EOM'
11895 fred () { }
11896 EOM
11897
11898 $cat >fred.c<<EOM
11899
11900 #include <stdio.h>
11901 #$i_stdlib I_STDLIB
11902 #ifdef I_STDLIB
11903 #include <stdlib.h>
11904 #endif
11905 #$i_dlfcn I_DLFCN
11906 #ifdef I_DLFCN
11907 #include <dlfcn.h>      /* the dynamic linker include file for SunOS/Solaris */
11908 #else
11909 #include <sys/types.h>
11910 #include <nlist.h>
11911 #include <link.h>
11912 #endif
11913
11914 extern int fred() ;
11915
11916 int main()
11917 {
11918     void * handle ;
11919     void * symbol ;
11920 #ifndef RTLD_LAZY
11921     int mode = 1 ;
11922 #else
11923     int mode = RTLD_LAZY ;
11924 #endif
11925     handle = dlopen("./dyna.$dlext", mode) ;
11926     if (handle == NULL) {
11927         printf ("1\n") ;
11928         fflush (stdout) ;
11929         exit(0);
11930     }
11931     symbol = dlsym(handle, "fred") ;
11932     if (symbol == NULL) {
11933         /* try putting a leading underscore */
11934         symbol = dlsym(handle, "_fred") ;
11935         if (symbol == NULL) {
11936             printf ("2\n") ;
11937             fflush (stdout) ;
11938             exit(0);
11939         }
11940         printf ("3\n") ;
11941     }
11942     else
11943         printf ("4\n") ;
11944     fflush (stdout) ;
11945     exit(0);
11946 }
11947 EOM
11948         : Call the object file tmp-dyna.o in case dlext=o.
11949         if $cc $ccflags $cccdlflags -c dyna.c > /dev/null 2>&1 &&
11950                 mv dyna${_o} tmp-dyna${_o} > /dev/null 2>&1 &&
11951                 $ld -o dyna.$dlext $ldflags $lddlflags tmp-dyna${_o} > /dev/null 2>&1 &&
11952                 $cc -o fred $ccflags $ldflags $cccdlflags $ccdlflags fred.c $libs > /dev/null 2>&1 && $to dyna.$dlext; then
11953                 xxx=`$run ./fred`
11954                 case $xxx in
11955                 1)      echo "Test program failed using dlopen." >&4
11956                         echo "Perhaps you should not use dynamic loading." >&4;;
11957                 2)      echo "Test program failed using dlsym." >&4
11958                         echo "Perhaps you should not use dynamic loading." >&4;;
11959                 3)      echo "dlsym needs a leading underscore" >&4
11960                         val="$define" ;;
11961                 4)      echo "dlsym doesn't need a leading underscore." >&4;;
11962                 esac
11963         else
11964                 echo "I can't compile and run the test program." >&4
11965                 echo "I'm guessing that dlsym doesn't need a leading underscore." >&4
11966         fi
11967         ;;
11968 esac
11969
11970 $rm -f fred fred.* dyna.$dlext dyna.* tmp-dyna.*
11971
11972 set d_dlsymun
11973 eval $setvar
11974
11975 : see if drand48_r exists
11976 set drand48_r d_drand48_r
11977 eval $inlibc
11978 case "$d_drand48_r" in
11979 "$define")
11980         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
11981         case "$d_drand48_r_proto:$usethreads" in
11982         ":define")      d_drand48_r_proto=define
11983                 set d_drand48_r_proto drand48_r $hdrs
11984                 eval $hasproto ;;
11985         *)      ;;
11986         esac
11987         case "$d_drand48_r_proto" in
11988         define)
11989         case "$drand48_r_proto" in
11990         ''|0) try='int drand48_r(struct drand48_data*, double*);'
11991         ./protochk "$extern_C $try" $hdrs && drand48_r_proto=I_ST ;;
11992         esac
11993         case "$drand48_r_proto" in
11994         ''|0)   d_drand48_r=undef
11995                 drand48_r_proto=0
11996                 echo "Disabling drand48_r, cannot determine prototype." >&4 ;;
11997         * )     case "$drand48_r_proto" in
11998                 REENTRANT_PROTO*) ;;
11999                 *) drand48_r_proto="REENTRANT_PROTO_$drand48_r_proto" ;;
12000                 esac
12001                 echo "Prototype: $try" ;;
12002         esac
12003         ;;
12004         *)      case "$usethreads" in
12005                 define) echo "drand48_r has no prototype, not using it." >&4 ;;
12006                 esac
12007                 d_drand48_r=undef
12008                 drand48_r_proto=0
12009                 ;;
12010         esac
12011         ;;
12012 *)      drand48_r_proto=0
12013         ;;
12014 esac
12015
12016 : see if prototype for drand48 is available
12017 echo " "
12018 set d_drand48proto drand48 $i_stdlib stdlib.h $i_unistd unistd.h
12019 eval $hasproto
12020
12021 : see if dup2 exists
12022 set dup2 d_dup2
12023 eval $inlibc
12024
12025 : see if eaccess exists
12026 set eaccess d_eaccess
12027 eval $inlibc
12028
12029 : see if endgrent exists
12030 set endgrent d_endgrent
12031 eval $inlibc
12032
12033 : see if this is an grp system
12034 set grp.h i_grp
12035 eval $inhdr
12036
12037 case "$i_grp" in
12038 $define)
12039         xxx=`./findhdr grp.h`
12040         $cppstdin $cppflags $cppminus < $xxx >$$.h
12041
12042         if $contains 'gr_passwd' $$.h >/dev/null 2>&1; then
12043                 val="$define"
12044         else
12045                 val="$undef"
12046         fi
12047         set d_grpasswd
12048         eval $setvar
12049
12050         $rm -f $$.h
12051         ;;
12052 *)
12053         val="$undef";
12054         set d_grpasswd; eval $setvar
12055         ;;
12056 esac
12057
12058 : see if endgrent_r exists
12059 set endgrent_r d_endgrent_r
12060 eval $inlibc
12061 case "$d_endgrent_r" in
12062 "$define")
12063         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12064         case "$d_endgrent_r_proto:$usethreads" in
12065         ":define")      d_endgrent_r_proto=define
12066                 set d_endgrent_r_proto endgrent_r $hdrs
12067                 eval $hasproto ;;
12068         *)      ;;
12069         esac
12070         case "$d_endgrent_r_proto" in
12071         define)
12072         case "$endgrent_r_proto" in
12073         ''|0) try='int endgrent_r(FILE**);'
12074         ./protochk "$extern_C $try" $hdrs && endgrent_r_proto=I_H ;;
12075         esac
12076         case "$endgrent_r_proto" in
12077         ''|0) try='void endgrent_r(FILE**);'
12078         ./protochk "$extern_C $try" $hdrs && endgrent_r_proto=V_H ;;
12079         esac
12080         case "$endgrent_r_proto" in
12081         ''|0)   d_endgrent_r=undef
12082                 endgrent_r_proto=0
12083                 echo "Disabling endgrent_r, cannot determine prototype." >&4 ;;
12084         * )     case "$endgrent_r_proto" in
12085                 REENTRANT_PROTO*) ;;
12086                 *) endgrent_r_proto="REENTRANT_PROTO_$endgrent_r_proto" ;;
12087                 esac
12088                 echo "Prototype: $try" ;;
12089         esac
12090         ;;
12091         *)      case "$usethreads" in
12092                 define) echo "endgrent_r has no prototype, not using it." >&4 ;;
12093                 esac
12094                 d_endgrent_r=undef
12095                 endgrent_r_proto=0
12096                 ;;
12097         esac
12098         ;;
12099 *)      endgrent_r_proto=0
12100         ;;
12101 esac
12102
12103 : see if endhostent exists
12104 set endhostent d_endhent
12105 eval $inlibc
12106
12107 : see if this is a netdb.h system
12108 set netdb.h i_netdb
12109 eval $inhdr
12110
12111 : see if endhostent_r exists
12112 set endhostent_r d_endhostent_r
12113 eval $inlibc
12114 case "$d_endhostent_r" in
12115 "$define")
12116         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12117         case "$d_endhostent_r_proto:$usethreads" in
12118         ":define")      d_endhostent_r_proto=define
12119                 set d_endhostent_r_proto endhostent_r $hdrs
12120                 eval $hasproto ;;
12121         *)      ;;
12122         esac
12123         case "$d_endhostent_r_proto" in
12124         define)
12125         case "$endhostent_r_proto" in
12126         ''|0) try='int endhostent_r(struct hostent_data*);'
12127         ./protochk "$extern_C $try" $hdrs && endhostent_r_proto=I_D ;;
12128         esac
12129         case "$endhostent_r_proto" in
12130         ''|0) try='void endhostent_r(struct hostent_data*);'
12131         ./protochk "$extern_C $try" $hdrs && endhostent_r_proto=V_D ;;
12132         esac
12133         case "$endhostent_r_proto" in
12134         ''|0)   d_endhostent_r=undef
12135                 endhostent_r_proto=0
12136                 echo "Disabling endhostent_r, cannot determine prototype." >&4 ;;
12137         * )     case "$endhostent_r_proto" in
12138                 REENTRANT_PROTO*) ;;
12139                 *) endhostent_r_proto="REENTRANT_PROTO_$endhostent_r_proto" ;;
12140                 esac
12141                 echo "Prototype: $try" ;;
12142         esac
12143         ;;
12144         *)      case "$usethreads" in
12145                 define) echo "endhostent_r has no prototype, not using it." >&4 ;;
12146                 esac
12147                 d_endhostent_r=undef
12148                 endhostent_r_proto=0
12149                 ;;
12150         esac
12151         ;;
12152 *)      endhostent_r_proto=0
12153         ;;
12154 esac
12155
12156 : see if endnetent exists
12157 set endnetent d_endnent
12158 eval $inlibc
12159
12160 : see if endnetent_r exists
12161 set endnetent_r d_endnetent_r
12162 eval $inlibc
12163 case "$d_endnetent_r" in
12164 "$define")
12165         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12166         case "$d_endnetent_r_proto:$usethreads" in
12167         ":define")      d_endnetent_r_proto=define
12168                 set d_endnetent_r_proto endnetent_r $hdrs
12169                 eval $hasproto ;;
12170         *)      ;;
12171         esac
12172         case "$d_endnetent_r_proto" in
12173         define)
12174         case "$endnetent_r_proto" in
12175         ''|0) try='int endnetent_r(struct netent_data*);'
12176         ./protochk "$extern_C $try" $hdrs && endnetent_r_proto=I_D ;;
12177         esac
12178         case "$endnetent_r_proto" in
12179         ''|0) try='void endnetent_r(struct netent_data*);'
12180         ./protochk "$extern_C $try" $hdrs && endnetent_r_proto=V_D ;;
12181         esac
12182         case "$endnetent_r_proto" in
12183         ''|0)   d_endnetent_r=undef
12184                 endnetent_r_proto=0
12185                 echo "Disabling endnetent_r, cannot determine prototype." >&4 ;;
12186         * )     case "$endnetent_r_proto" in
12187                 REENTRANT_PROTO*) ;;
12188                 *) endnetent_r_proto="REENTRANT_PROTO_$endnetent_r_proto" ;;
12189                 esac
12190                 echo "Prototype: $try" ;;
12191         esac
12192         ;;
12193         *)      case "$usethreads" in
12194                 define) echo "endnetent_r has no prototype, not using it." >&4 ;;
12195                 esac
12196                 d_endnetent_r=undef
12197                 endnetent_r_proto=0
12198                 ;;
12199         esac
12200         ;;
12201 *)      endnetent_r_proto=0
12202         ;;
12203 esac
12204
12205 : see if endprotoent exists
12206 set endprotoent d_endpent
12207 eval $inlibc
12208
12209 : see if endprotoent_r exists
12210 set endprotoent_r d_endprotoent_r
12211 eval $inlibc
12212 case "$d_endprotoent_r" in
12213 "$define")
12214         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12215         case "$d_endprotoent_r_proto:$usethreads" in
12216         ":define")      d_endprotoent_r_proto=define
12217                 set d_endprotoent_r_proto endprotoent_r $hdrs
12218                 eval $hasproto ;;
12219         *)      ;;
12220         esac
12221         case "$d_endprotoent_r_proto" in
12222         define)
12223         case "$endprotoent_r_proto" in
12224         ''|0) try='int endprotoent_r(struct protoent_data*);'
12225         ./protochk "$extern_C $try" $hdrs && endprotoent_r_proto=I_D ;;
12226         esac
12227         case "$endprotoent_r_proto" in
12228         ''|0) try='void endprotoent_r(struct protoent_data*);'
12229         ./protochk "$extern_C $try" $hdrs && endprotoent_r_proto=V_D ;;
12230         esac
12231         case "$endprotoent_r_proto" in
12232         ''|0)   d_endprotoent_r=undef
12233                 endprotoent_r_proto=0
12234                 echo "Disabling endprotoent_r, cannot determine prototype." >&4 ;;
12235         * )     case "$endprotoent_r_proto" in
12236                 REENTRANT_PROTO*) ;;
12237                 *) endprotoent_r_proto="REENTRANT_PROTO_$endprotoent_r_proto" ;;
12238                 esac
12239                 echo "Prototype: $try" ;;
12240         esac
12241         ;;
12242         *)      case "$usethreads" in
12243                 define) echo "endprotoent_r has no prototype, not using it." >&4 ;;
12244                 esac
12245                 d_endprotoent_r=undef
12246                 endprotoent_r_proto=0
12247                 ;;
12248         esac
12249         ;;
12250 *)      endprotoent_r_proto=0
12251         ;;
12252 esac
12253
12254 : see if endpwent exists
12255 set endpwent d_endpwent
12256 eval $inlibc
12257
12258 : see if this is a pwd.h system
12259 set pwd.h i_pwd
12260 eval $inhdr
12261
12262 case "$i_pwd" in
12263 $define)
12264         xxx=`./findhdr pwd.h`
12265         $cppstdin $cppflags $cppminus < $xxx >$$.h
12266
12267         if $contains 'pw_quota' $$.h >/dev/null 2>&1; then
12268                 val="$define"
12269         else
12270                 val="$undef"
12271         fi
12272         set d_pwquota
12273         eval $setvar
12274
12275         if $contains 'pw_age' $$.h >/dev/null 2>&1; then
12276                 val="$define"
12277         else
12278                 val="$undef"
12279         fi
12280         set d_pwage
12281         eval $setvar
12282
12283         if $contains 'pw_change' $$.h >/dev/null 2>&1; then
12284                 val="$define"
12285         else
12286                 val="$undef"
12287         fi
12288         set d_pwchange
12289         eval $setvar
12290
12291         if $contains 'pw_class' $$.h >/dev/null 2>&1; then
12292                 val="$define"
12293         else
12294                 val="$undef"
12295         fi
12296         set d_pwclass
12297         eval $setvar
12298
12299         if $contains 'pw_expire' $$.h >/dev/null 2>&1; then
12300                 val="$define"
12301         else
12302                 val="$undef"
12303         fi
12304         set d_pwexpire
12305         eval $setvar
12306
12307         if $contains 'pw_comment' $$.h >/dev/null 2>&1; then
12308                 val="$define"
12309         else
12310                 val="$undef"
12311         fi
12312         set d_pwcomment
12313         eval $setvar
12314
12315         if $contains 'pw_gecos' $$.h >/dev/null 2>&1; then
12316                 val="$define"
12317         else
12318                 val="$undef"
12319         fi
12320         set d_pwgecos
12321         eval $setvar
12322
12323         if $contains 'pw_passwd' $$.h >/dev/null 2>&1; then
12324                 val="$define"
12325         else
12326                 val="$undef"
12327         fi
12328         set d_pwpasswd
12329         eval $setvar
12330
12331         $rm -f $$.h
12332         ;;
12333 *)
12334         val="$undef"; 
12335         set d_pwquota; eval $setvar
12336         set d_pwage; eval $setvar
12337         set d_pwchange; eval $setvar
12338         set d_pwclass; eval $setvar
12339         set d_pwexpire; eval $setvar
12340         set d_pwcomment; eval $setvar
12341         set d_pwgecos; eval $setvar
12342         set d_pwpasswd; eval $setvar
12343         ;;
12344 esac
12345
12346 : see if endpwent_r exists
12347 set endpwent_r d_endpwent_r
12348 eval $inlibc
12349 case "$d_endpwent_r" in
12350 "$define")
12351         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
12352         case "$d_endpwent_r_proto:$usethreads" in
12353         ":define")      d_endpwent_r_proto=define
12354                 set d_endpwent_r_proto endpwent_r $hdrs
12355                 eval $hasproto ;;
12356         *)      ;;
12357         esac
12358         case "$d_endpwent_r_proto" in
12359         define)
12360         case "$endpwent_r_proto" in
12361         ''|0) try='int endpwent_r(FILE**);'
12362         ./protochk "$extern_C $try" $hdrs && endpwent_r_proto=I_H ;;
12363         esac
12364         case "$endpwent_r_proto" in
12365         ''|0) try='void endpwent_r(FILE**);'
12366         ./protochk "$extern_C $try" $hdrs && endpwent_r_proto=V_H ;;
12367         esac
12368         case "$endpwent_r_proto" in
12369         ''|0)   d_endpwent_r=undef
12370                 endpwent_r_proto=0
12371                 echo "Disabling endpwent_r, cannot determine prototype." >&4 ;;
12372         * )     case "$endpwent_r_proto" in
12373                 REENTRANT_PROTO*) ;;
12374                 *) endpwent_r_proto="REENTRANT_PROTO_$endpwent_r_proto" ;;
12375                 esac
12376                 echo "Prototype: $try" ;;
12377         esac
12378         ;;
12379         *)      case "$usethreads" in
12380                 define) echo "endpwent_r has no prototype, not using it." >&4 ;;
12381                 esac
12382                 d_endpwent_r=undef
12383                 endpwent_r_proto=0
12384                 ;;
12385         esac
12386         ;;
12387 *)      endpwent_r_proto=0
12388         ;;
12389 esac
12390
12391 : see if endservent exists
12392 set endservent d_endsent
12393 eval $inlibc
12394
12395 : see if endservent_r exists
12396 set endservent_r d_endservent_r
12397 eval $inlibc
12398 case "$d_endservent_r" in
12399 "$define")
12400         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12401         case "$d_endservent_r_proto:$usethreads" in
12402         ":define")      d_endservent_r_proto=define
12403                 set d_endservent_r_proto endservent_r $hdrs
12404                 eval $hasproto ;;
12405         *)      ;;
12406         esac
12407         case "$d_endservent_r_proto" in
12408         define)
12409         case "$endservent_r_proto" in
12410         ''|0) try='int endservent_r(struct servent_data*);'
12411         ./protochk "$extern_C $try" $hdrs && endservent_r_proto=I_D ;;
12412         esac
12413         case "$endservent_r_proto" in
12414         ''|0) try='void endservent_r(struct servent_data*);'
12415         ./protochk "$extern_C $try" $hdrs && endservent_r_proto=V_D ;;
12416         esac
12417         case "$endservent_r_proto" in
12418         ''|0)   d_endservent_r=undef
12419                 endservent_r_proto=0
12420                 echo "Disabling endservent_r, cannot determine prototype." >&4 ;;
12421         * )     case "$endservent_r_proto" in
12422                 REENTRANT_PROTO*) ;;
12423                 *) endservent_r_proto="REENTRANT_PROTO_$endservent_r_proto" ;;
12424                 esac
12425                 echo "Prototype: $try" ;;
12426         esac
12427         ;;
12428         *)      case "$usethreads" in
12429                 define) echo "endservent_r has no prototype, not using it." >&4 ;;
12430                 esac
12431                 d_endservent_r=undef
12432                 endservent_r_proto=0
12433                 ;;
12434         esac
12435         ;;
12436 *)      endservent_r_proto=0
12437         ;;
12438 esac
12439
12440 : Locate the flags for 'open()'
12441 echo " "
12442 $cat >try.c <<EOCP
12443 #include <sys/types.h>
12444 #ifdef I_FCNTL
12445 #include <fcntl.h>
12446 #endif
12447 #ifdef I_SYS_FILE
12448 #include <sys/file.h>
12449 #endif
12450 #$i_stdlib I_STDLIB
12451 #ifdef I_STDLIB
12452 #include <stdlib.h>
12453 #endif
12454 int main() {
12455         if(O_RDONLY);
12456 #ifdef O_TRUNC
12457         exit(0);
12458 #else
12459         exit(1);
12460 #endif
12461 }
12462 EOCP
12463 : check sys/file.h first to get FREAD on Sun
12464 if $test `./findhdr sys/file.h` && \
12465                 set try -DI_SYS_FILE && eval $compile; then
12466         h_sysfile=true;
12467         echo "<sys/file.h> defines the O_* constants..." >&4
12468         if $run ./try; then
12469                 echo "and you have the 3 argument form of open()." >&4
12470                 val="$define"
12471         else
12472                 echo "but not the 3 argument form of open().  Oh, well." >&4
12473                 val="$undef"
12474         fi
12475 elif $test `./findhdr fcntl.h` && \
12476                 set try -DI_FCNTL && eval $compile; then
12477         h_fcntl=true;
12478         echo "<fcntl.h> defines the O_* constants..." >&4
12479         if $run ./try; then
12480                 echo "and you have the 3 argument form of open()." >&4
12481                 val="$define"
12482         else
12483                 echo "but not the 3 argument form of open().  Oh, well." >&4
12484                 val="$undef"
12485         fi
12486 else
12487         val="$undef"
12488         echo "I can't find the O_* constant definitions!  You got problems." >&4
12489 fi
12490 set d_open3
12491 eval $setvar
12492 $rm_try
12493
12494 : see if this is a sys/file.h system
12495 val=''
12496 set sys/file.h val
12497 eval $inhdr
12498
12499 : do we need to include sys/file.h ?
12500 case "$val" in
12501 "$define")
12502         echo " "
12503         if $h_sysfile; then
12504                 val="$define"
12505                 echo "We'll be including <sys/file.h>." >&4
12506         else
12507                 val="$undef"
12508                 echo "We won't be including <sys/file.h>." >&4
12509         fi
12510         ;;
12511 *)
12512         h_sysfile=false
12513         ;;
12514 esac
12515 set i_sysfile
12516 eval $setvar
12517
12518 : see if fcntl.h is there
12519 val=''
12520 set fcntl.h val
12521 eval $inhdr
12522
12523 : see if we can include fcntl.h
12524 case "$val" in
12525 "$define")
12526         echo " "
12527         if $h_fcntl; then
12528                 val="$define"
12529                 echo "We'll be including <fcntl.h>." >&4
12530         else
12531                 val="$undef"
12532                 if $h_sysfile; then
12533         echo "We don't need to include <fcntl.h> if we include <sys/file.h>." >&4
12534                 else
12535                         echo "We won't be including <fcntl.h>." >&4
12536                 fi
12537         fi
12538         ;;
12539 *)
12540         h_fcntl=false
12541         val="$undef"
12542         ;;
12543 esac
12544 set i_fcntl
12545 eval $setvar
12546
12547 : see if fork exists
12548 set fork d_fork
12549 eval $inlibc
12550
12551 : see if pipe exists
12552 set pipe d_pipe
12553 eval $inlibc
12554
12555 : check for non-blocking I/O stuff
12556 case "$h_sysfile" in
12557 true) echo "#include <sys/file.h>" > head.c;;
12558 *)
12559        case "$h_fcntl" in
12560        true) echo "#include <fcntl.h>" > head.c;;
12561        *) echo "#include <sys/fcntl.h>" > head.c;;
12562        esac
12563        ;;
12564 esac
12565 echo " "
12566 echo "Figuring out the flag used by open() for non-blocking I/O..." >&4
12567 case "$o_nonblock" in
12568 '')
12569         $cat head.c > try.c
12570         $cat >>try.c <<EOCP
12571 #include <stdio.h>
12572 #$i_stdlib I_STDLIB
12573 #ifdef I_STDLIB
12574 #include <stdlib.h>
12575 #endif
12576 #$i_fcntl I_FCNTL
12577 #ifdef I_FCNTL
12578 #include <fcntl.h>
12579 #endif
12580 int main() {
12581 #ifdef O_NONBLOCK
12582         printf("O_NONBLOCK\n");
12583         exit(0);
12584 #endif
12585 #ifdef O_NDELAY
12586         printf("O_NDELAY\n");
12587         exit(0);
12588 #endif
12589 #ifdef FNDELAY
12590         printf("FNDELAY\n");
12591         exit(0);
12592 #endif
12593         exit(0);
12594 }
12595 EOCP
12596         set try
12597         if eval $compile_ok; then
12598                 o_nonblock=`$run ./try`
12599                 case "$o_nonblock" in
12600                 '') echo "I can't figure it out, assuming O_NONBLOCK will do.";;
12601                 *) echo "Seems like we can use $o_nonblock.";;
12602                 esac
12603         else
12604                 echo "(I can't compile the test program; pray O_NONBLOCK is right!)"
12605         fi
12606         ;;
12607 *) echo "Using $hint value $o_nonblock.";;
12608 esac
12609 $rm_try
12610
12611 echo " "
12612 echo "Let's see what value errno gets from read() on a $o_nonblock file..." >&4
12613 case "$eagain" in
12614 '')
12615         case "$d_fork:$d_pipe" in
12616         define:define)
12617         $cat head.c > try.c
12618         $cat >>try.c <<EOCP
12619 #include <errno.h>
12620 #include <sys/types.h>
12621 #include <signal.h>
12622 #include <stdio.h>
12623 #$i_stdlib I_STDLIB
12624 #ifdef I_STDLIB
12625 #include <stdlib.h>
12626 #endif
12627 #$i_fcntl I_FCNTL
12628 #ifdef I_FCNTL
12629 #include <fcntl.h>
12630 #endif
12631 #define MY_O_NONBLOCK $o_nonblock
12632 #ifndef errno  /* XXX need better Configure test */
12633 extern int errno;
12634 #endif
12635 #$i_unistd I_UNISTD
12636 #ifdef I_UNISTD
12637 #include <unistd.h>
12638 #endif
12639 #$i_string I_STRING
12640 #ifdef I_STRING
12641 #include <string.h>
12642 #else
12643 #include <strings.h>
12644 #endif
12645 $signal_t blech(int x) { exit(3); }
12646 EOCP
12647         $cat >> try.c <<'EOCP'
12648 int main()
12649 {
12650         int pd[2];
12651         int pu[2];
12652         char buf[1];
12653         char string[100];
12654
12655         pipe(pd);       /* Down: child -> parent */
12656         pipe(pu);       /* Up: parent -> child */
12657         if (0 != fork()) {
12658                 int ret;
12659                 close(pd[1]);   /* Parent reads from pd[0] */
12660                 close(pu[0]);   /* Parent writes (blocking) to pu[1] */
12661 #ifdef F_SETFL
12662                 if (-1 == fcntl(pd[0], F_SETFL, MY_O_NONBLOCK))
12663                         exit(1);
12664 #else
12665                 exit(4);
12666 #endif
12667                 signal(SIGALRM, blech);
12668                 alarm(5);
12669                 if ((ret = read(pd[0], buf, 1)) > 0)    /* Nothing to read! */
12670                         exit(2);
12671                 sprintf(string, "%d\n", ret);
12672                 write(2, string, strlen(string));
12673                 alarm(0);
12674 #ifdef EAGAIN
12675                 if (errno == EAGAIN) {
12676                         printf("EAGAIN\n");
12677                         goto ok;
12678                 }
12679 #endif
12680 #ifdef EWOULDBLOCK
12681                 if (errno == EWOULDBLOCK)
12682                         printf("EWOULDBLOCK\n");
12683 #endif
12684         ok:
12685                 write(pu[1], buf, 1);   /* Unblocks child, tell it to close our pipe */
12686                 sleep(2);                               /* Give it time to close our pipe */
12687                 alarm(5);
12688                 ret = read(pd[0], buf, 1);      /* Should read EOF */
12689                 alarm(0);
12690                 sprintf(string, "%d\n", ret);
12691                 write(4, string, strlen(string));
12692                 exit(0);
12693         }
12694
12695         close(pd[0]);                   /* We write to pd[1] */
12696         close(pu[1]);                   /* We read from pu[0] */
12697         read(pu[0], buf, 1);    /* Wait for parent to signal us we may continue */
12698         close(pd[1]);                   /* Pipe pd is now fully closed! */
12699         exit(0);                                /* Bye bye, thank you for playing! */
12700 }
12701 EOCP
12702         set try
12703         if eval $compile_ok; then
12704                 echo "$startsh" >mtry
12705                 echo "$run ./try >try.out 2>try.ret 4>try.err || exit 4" >>mtry
12706                 chmod +x mtry
12707                 ./mtry >/dev/null 2>&1
12708                 case $? in
12709                 0) eagain=`$cat try.out`;;
12710                 1) echo "Could not perform non-blocking setting!";;
12711                 2) echo "I did a successful read() for something that was not there!";;
12712                 3) echo "Hmm... non-blocking I/O does not seem to be working!";;
12713                 4) echo "Could not find F_SETFL!";;
12714                 *) echo "Something terribly wrong happened during testing.";;
12715                 esac
12716                 rd_nodata=`$cat try.ret`
12717                 echo "A read() system call with no data present returns $rd_nodata."
12718                 case "$rd_nodata" in
12719                 0|-1) ;;
12720                 *)
12721                         echo "(That's peculiar, fixing that to be -1.)"
12722                         rd_nodata=-1
12723                         ;;
12724                 esac
12725                 case "$eagain" in
12726                 '')
12727                         echo "Forcing errno EAGAIN on read() with no data available."
12728                         eagain=EAGAIN
12729                         ;;
12730                 *)
12731                         echo "Your read() sets errno to $eagain when no data is available."
12732                         ;;
12733                 esac
12734                 status=`$cat try.err`
12735                 case "$status" in
12736                 0) echo "And it correctly returns 0 to signal EOF.";;
12737                 -1) echo "But it also returns -1 to signal EOF, so be careful!";;
12738                 *) echo "However, your read() returns '$status' on EOF??";;
12739                 esac
12740                 val="$define"
12741                 if test "$status" = "$rd_nodata"; then
12742                         echo "WARNING: you can't distinguish between EOF and no data!"
12743                         val="$undef"
12744                 fi
12745         else
12746                 echo "I can't compile the test program--assuming errno EAGAIN will do."
12747                 eagain=EAGAIN
12748         fi
12749         ;;
12750         *)      echo "Can't figure out how to test this--assuming errno EAGAIN will do."
12751                 eagain=EAGAIN
12752                 val="$define"
12753                 ;;
12754         esac
12755         set d_eofnblk
12756         eval $setvar
12757         ;;
12758 *)
12759         echo "Using $hint value $eagain."
12760         echo "Your read() returns $rd_nodata when no data is present."
12761         case "$d_eofnblk" in
12762         "$define") echo "And you can see EOF because read() returns 0.";;
12763         "$undef") echo "But you can't see EOF status from read() returned value.";;
12764         *)
12765                 echo "(Assuming you can't see EOF status from read anyway.)"
12766                 d_eofnblk=$undef
12767                 ;;
12768         esac
12769         ;;
12770 esac
12771 $rm_try head.c mtry
12772
12773 : see if _ptr and _cnt from stdio act std
12774 echo " "
12775
12776 if $contains '_lbfsize' `./findhdr stdio.h` >/dev/null 2>&1 ; then
12777         echo "(Looks like you have stdio.h from BSD.)"
12778         case "$stdio_ptr" in
12779         '') stdio_ptr='((fp)->_p)'
12780                 ptr_lval=$define
12781                 ;;
12782         *)      ptr_lval=$d_stdio_ptr_lval;;
12783         esac
12784         case "$stdio_cnt" in
12785         '') stdio_cnt='((fp)->_r)'
12786                 cnt_lval=$define
12787                 ;;
12788         *)      cnt_lval=$d_stdio_cnt_lval;;
12789         esac
12790         case "$stdio_base" in
12791         '') stdio_base='((fp)->_ub._base ? (fp)->_ub._base : (fp)->_bf._base)';;
12792         esac
12793         case "$stdio_bufsiz" in
12794         '') stdio_bufsiz='((fp)->_ub._base ? (fp)->_ub._size : (fp)->_bf._size)';;
12795         esac
12796 elif $contains '_IO_fpos_t' `./findhdr stdio.h` `./findhdr libio.h` >/dev/null 2>&1 ; then
12797         echo "(Looks like you have stdio.h from Linux.)"
12798         case "$stdio_ptr" in
12799         '') stdio_ptr='((fp)->_IO_read_ptr)'
12800                 ptr_lval=$define
12801                 ;;
12802         *)      ptr_lval=$d_stdio_ptr_lval;;
12803         esac
12804         case "$stdio_cnt" in
12805         '') stdio_cnt='((fp)->_IO_read_end - (fp)->_IO_read_ptr)'
12806                 cnt_lval=$undef
12807                 ;;
12808         *)      cnt_lval=$d_stdio_cnt_lval;;
12809         esac
12810         case "$stdio_base" in
12811         '') stdio_base='((fp)->_IO_read_base)';;
12812         esac
12813         case "$stdio_bufsiz" in
12814         '') stdio_bufsiz='((fp)->_IO_read_end - (fp)->_IO_read_base)';;
12815         esac
12816 else
12817         case "$stdio_ptr" in
12818         '') stdio_ptr='((fp)->_ptr)'
12819                 ptr_lval=$define
12820                 ;;
12821         *)      ptr_lval=$d_stdio_ptr_lval;;
12822         esac
12823         case "$stdio_cnt" in
12824         '') stdio_cnt='((fp)->_cnt)'
12825                 cnt_lval=$define
12826                 ;;
12827         *)      cnt_lval=$d_stdio_cnt_lval;;
12828         esac
12829         case "$stdio_base" in
12830         '') stdio_base='((fp)->_base)';;
12831         esac
12832         case "$stdio_bufsiz" in
12833         '') stdio_bufsiz='((fp)->_cnt + (fp)->_ptr - (fp)->_base)';;
12834         esac
12835 fi
12836
12837 : test whether _ptr and _cnt really work
12838 echo "Checking how std your stdio is..." >&4
12839 $cat >try.c <<EOP
12840 #include <stdio.h>
12841 #$i_stdlib I_STDLIB
12842 #ifdef I_STDLIB
12843 #include <stdlib.h>
12844 #endif
12845 #define FILE_ptr(fp)    $stdio_ptr
12846 #define FILE_cnt(fp)    $stdio_cnt
12847 int main() {
12848         FILE *fp = fopen("try.c", "r");
12849         char c = getc(fp);
12850         if (
12851                 18 <= FILE_cnt(fp) &&
12852                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
12853         )
12854                 exit(0);
12855         exit(1);
12856 }
12857 EOP
12858 val="$undef"
12859 set try
12860 if eval $compile && $to try.c; then
12861         if $run ./try; then
12862                 echo "Your stdio acts pretty std."
12863                 val="$define"
12864         else
12865                 echo "Your stdio isn't very std."
12866         fi
12867 else
12868         echo "Your stdio doesn't appear very std."
12869 fi
12870 $rm_try
12871
12872 # glibc 2.2.90 and above apparently change stdio streams so Perl's
12873 # direct buffer manipulation no longer works.  The Configure tests
12874 # should be changed to correctly detect this, but until then,
12875 # the following check should at least let perl compile and run.
12876 # (This quick fix should be updated before 5.8.1.)
12877 # To be defensive, reject all unknown versions, and all versions  > 2.2.9.
12878 # A. Dougherty, June 3, 2002.
12879 case "$d_gnulibc" in
12880 $define)
12881         case "$gnulibc_version" in
12882         2.[01]*)  ;;
12883         2.2) ;;
12884         2.2.[0-9]) ;;
12885         *)  echo "But I will not snoop inside glibc $gnulibc_version stdio buffers."
12886                 val="$undef"
12887                 ;;
12888         esac
12889         ;;
12890 esac
12891 set d_stdstdio
12892 eval $setvar
12893
12894 : Can _ptr be used as an lvalue?
12895 case "$d_stdstdio$ptr_lval" in
12896 $define$define) val=$define ;;
12897 *) val=$undef ;;
12898 esac
12899 set d_stdio_ptr_lval
12900 eval $setvar
12901
12902 : Can _cnt be used as an lvalue?
12903 case "$d_stdstdio$cnt_lval" in
12904 $define$define) val=$define ;;
12905 *) val=$undef ;;
12906 esac
12907 set d_stdio_cnt_lval
12908 eval $setvar
12909
12910
12911 : test whether setting _ptr sets _cnt as a side effect
12912 d_stdio_ptr_lval_sets_cnt="$undef"
12913 d_stdio_ptr_lval_nochange_cnt="$undef"
12914 case "$d_stdio_ptr_lval$d_stdstdio" in
12915 $define$define)
12916         echo "Checking to see what happens if we set the stdio ptr..." >&4
12917 $cat >try.c <<EOP
12918 #include <stdio.h>
12919 /* Can we scream? */
12920 /* Eat dust sed :-) */
12921 /* In the buffer space, no one can hear you scream. */
12922 #$i_stdlib I_STDLIB
12923 #ifdef I_STDLIB
12924 #include <stdlib.h>
12925 #endif
12926 #define FILE_ptr(fp)    $stdio_ptr
12927 #define FILE_cnt(fp)    $stdio_cnt
12928 #include <sys/types.h>
12929 int main() {
12930         FILE *fp = fopen("try.c", "r");
12931         int c;
12932         char *ptr;
12933         size_t cnt;
12934         if (!fp) {
12935             puts("Fail even to read");
12936             exit(1);
12937         }
12938         c = getc(fp); /* Read away the first # */
12939         if (c == EOF) {
12940             puts("Fail even to read");
12941             exit(1);
12942         }
12943         if (!(
12944                 18 <= FILE_cnt(fp) &&
12945                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
12946         )) {
12947                 puts("Fail even to read");
12948                 exit (1);
12949         }
12950         ptr = (char*) FILE_ptr(fp);
12951         cnt = (size_t)FILE_cnt(fp);
12952
12953         FILE_ptr(fp) += 42;
12954
12955         if ((char*)FILE_ptr(fp) != (ptr + 42)) {
12956                 printf("Fail ptr check %p != %p", FILE_ptr(fp), (ptr + 42));
12957                 exit (1);
12958         }
12959         if (FILE_cnt(fp) <= 20) {
12960                 printf ("Fail (<20 chars to test)");
12961                 exit (1);
12962         }
12963         if (strncmp(FILE_ptr(fp), "Eat dust sed :-) */\n", 20) != 0) {
12964                 puts("Fail compare");
12965                 exit (1);
12966         }
12967         if (cnt == FILE_cnt(fp)) {
12968                 puts("Pass_unchanged");
12969                 exit (0);
12970         }
12971         if (FILE_cnt(fp) == (cnt - 42)) {
12972                 puts("Pass_changed");
12973                 exit (0);
12974         }
12975         printf("Fail count was %d now %d\n", cnt, FILE_cnt(fp));
12976         return 1;
12977
12978 }
12979 EOP
12980         set try
12981         if eval $compile && $to try.c; then
12982                 case `$run ./try` in
12983                 Pass_changed)
12984                         echo "Increasing ptr in your stdio decreases cnt by the same amount.  Good." >&4
12985                         d_stdio_ptr_lval_sets_cnt="$define" ;;
12986                 Pass_unchanged)
12987                         echo "Increasing ptr in your stdio leaves cnt unchanged.  Good." >&4
12988                         d_stdio_ptr_lval_nochange_cnt="$define" ;;
12989                 Fail*)
12990                         echo "Increasing ptr in your stdio didn't do exactly what I expected.  We'll not be doing that then." >&4 ;;
12991                 *)
12992                         echo "It appears attempting to set ptr in your stdio is a bad plan." >&4 ;;
12993         esac
12994         else
12995                 echo "It seems we can't set ptr in your stdio.  Nevermind." >&4
12996         fi
12997         $rm_try
12998         ;;
12999 esac
13000
13001 : see if _base is also standard
13002 val="$undef"
13003 case "$d_stdstdio" in
13004 $define)
13005         $cat >try.c <<EOP
13006 #include <stdio.h>
13007 #$i_stdlib I_STDLIB
13008 #ifdef I_STDLIB
13009 #include <stdlib.h>
13010 #endif
13011 #define FILE_base(fp)   $stdio_base
13012 #define FILE_bufsiz(fp) $stdio_bufsiz
13013 int main() {
13014         FILE *fp = fopen("try.c", "r");
13015         char c = getc(fp);
13016         if (
13017                 19 <= FILE_bufsiz(fp) &&
13018                 strncmp(FILE_base(fp), "#include <stdio.h>\n", 19) == 0
13019         )
13020                 exit(0);
13021         exit(1);
13022 }
13023 EOP
13024         set try
13025         if eval $compile && $to try.c; then
13026                 if $run ./try; then
13027                         echo "And its _base field acts std."
13028                         val="$define"
13029                 else
13030                         echo "But its _base field isn't std."
13031                 fi
13032         else
13033                 echo "However, it seems to be lacking the _base field."
13034         fi
13035         $rm_try
13036         ;;
13037 esac
13038 set d_stdiobase
13039 eval $setvar
13040
13041 : see if fast_stdio exists
13042 val="$undef"
13043 case "$d_stdstdio:$d_stdio_ptr_lval" in
13044 "$define:$define")
13045         case "$d_stdio_cnt_lval$d_stdio_ptr_lval_sets_cnt" in
13046         *$define*)
13047                 echo "You seem to have 'fast stdio' to directly manipulate the stdio buffers." >& 4
13048                 val="$define"
13049                 ;;
13050         esac
13051         ;;
13052 esac
13053 set d_faststdio
13054 eval $setvar
13055
13056
13057
13058 : see if fchdir exists
13059 set fchdir d_fchdir
13060 eval $inlibc
13061
13062 : see if fchmod exists
13063 set fchmod d_fchmod
13064 eval $inlibc
13065
13066 : see if fchown exists
13067 set fchown d_fchown
13068 eval $inlibc
13069
13070 : see if this is an fcntl system
13071 set fcntl d_fcntl
13072 eval $inlibc
13073
13074 : See if fcntl-based locking works.
13075 echo " "
13076 $cat >try.c <<EOCP
13077 #$i_stdlib I_STDLIB
13078 #ifdef I_STDLIB
13079 #include <stdlib.h>
13080 #endif
13081 #include <unistd.h>
13082 #include <fcntl.h>
13083 #include <signal.h>
13084 $signal_t blech(int x) { exit(3); }
13085 int main() {
13086 #if defined(F_SETLK) && defined(F_SETLKW)
13087      struct flock flock;
13088      int retval, fd;
13089      fd = open("try.c", O_RDONLY);
13090      flock.l_type = F_RDLCK;
13091      flock.l_whence = SEEK_SET;
13092      flock.l_start = flock.l_len = 0;
13093      signal(SIGALRM, blech);
13094      alarm(10);
13095      retval = fcntl(fd, F_SETLK, &flock);
13096      close(fd);
13097      (retval < 0 ? exit(2) : exit(0));
13098 #else
13099      exit(2);
13100 #endif
13101 }
13102 EOCP
13103 echo "Checking if fcntl-based file locking works... "
13104 case "$d_fcntl" in
13105 "$define")
13106         set try
13107         if eval $compile_ok; then
13108                 if $run ./try; then
13109                         echo "Yes, it seems to work."
13110                         val="$define"
13111                 else
13112                         echo "Nope, it didn't work."
13113                         val="$undef"
13114                         case "$?" in
13115                         3) $cat >&4 <<EOM
13116 ***
13117 *** I had to forcibly timeout from fcntl(..., F_SETLK, ...).
13118 *** This is (almost) impossible.
13119 *** If your NFS lock daemons are not feeling well, something like
13120 *** this may happen, please investigate.  Cannot continue, aborting.
13121 ***
13122 EOM
13123                                 exit 1
13124                                 ;;
13125                         esac
13126                 fi
13127         else
13128                 echo "I'm unable to compile the test program, so I'll assume not."
13129                 val="$undef"
13130         fi
13131         ;;
13132 *) val="$undef";
13133         echo "Nope, since you don't even have fcntl()."
13134         ;;
13135 esac
13136 set d_fcntl_can_lock
13137 eval $setvar
13138 $rm_try
13139
13140 : check for fd_set items
13141 $cat <<EOM
13142
13143 Checking to see how well your C compiler handles fd_set and friends ...
13144 EOM
13145 $cat >try.c <<EOCP
13146 #$i_stdlib I_STDLIB
13147 #ifdef I_STDLIB
13148 #include <stdlib.h>
13149 #endif
13150 #$i_systime I_SYS_TIME
13151 #$i_sysselct I_SYS_SELECT
13152 #$d_socket HAS_SOCKET
13153 #include <sys/types.h>
13154 #ifdef HAS_SOCKET
13155 #include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
13156 #endif
13157 #ifdef I_SYS_TIME
13158 #include <sys/time.h>
13159 #endif
13160 #ifdef I_SYS_SELECT
13161 #include <sys/select.h>
13162 #endif
13163 int main() {
13164         fd_set fds;
13165
13166 #ifdef TRYBITS
13167         if(fds.fds_bits);
13168 #endif
13169
13170 #if defined(FD_SET) && defined(FD_CLR) && defined(FD_ISSET) && defined(FD_ZERO)
13171         exit(0);
13172 #else
13173         exit(1);
13174 #endif
13175 }
13176 EOCP
13177 set try -DTRYBITS
13178 if eval $compile; then
13179         d_fds_bits="$define"
13180         d_fd_set="$define"
13181         echo "Well, your system knows about the normal fd_set typedef..." >&4
13182         if $run ./try; then
13183                 echo "and you have the normal fd_set macros (just as I'd expect)." >&4
13184                 d_fd_macros="$define"
13185         else
13186                 $cat >&4 <<'EOM'
13187 but not the normal fd_set macros!  Gaaack!  I'll have to cover for you.
13188 EOM
13189                 d_fd_macros="$undef"
13190         fi
13191 else
13192         $cat <<'EOM'
13193 Hmm, your compiler has some difficulty with fd_set.  Checking further...
13194 EOM
13195         set try
13196         if eval $compile; then
13197                 d_fds_bits="$undef"
13198                 d_fd_set="$define"
13199                 echo "Well, your system has some sort of fd_set available..." >&4
13200                 if $run ./try; then
13201                         echo "and you have the normal fd_set macros." >&4
13202                         d_fd_macros="$define"
13203                 else
13204                         $cat <<'EOM'
13205 but not the normal fd_set macros!  Gross!  More work for me...
13206 EOM
13207                         d_fd_macros="$undef"
13208                 fi
13209         else
13210         echo "Well, you got zip.  That's OK, I can roll my own fd_set stuff." >&4
13211                 d_fd_set="$undef"
13212                 d_fds_bits="$undef"
13213                 d_fd_macros="$undef"
13214         fi
13215 fi
13216 $rm_try
13217
13218 : see if fgetpos exists
13219 set fgetpos d_fgetpos
13220 eval $inlibc
13221
13222 : see if finite exists
13223 set finite d_finite
13224 eval $inlibc
13225
13226 : see if finitel exists
13227 set finitel d_finitel
13228 eval $inlibc
13229
13230 : see if flock exists
13231 set flock d_flock
13232 eval $inlibc
13233
13234 : see if prototype for flock is available
13235 echo " "
13236 set d_flockproto flock $i_sysfile sys/file.h
13237 eval $hasproto
13238
13239 : see if fp_class exists
13240 set fp_class d_fp_class
13241 eval $inlibc
13242
13243 : see if pathconf exists
13244 set pathconf d_pathconf
13245 eval $inlibc
13246
13247 : see if fpathconf exists
13248 set fpathconf d_fpathconf
13249 eval $inlibc
13250
13251 : see if fpclass exists
13252 set fpclass d_fpclass
13253 eval $inlibc
13254
13255 : see if fpclassify exists
13256 set fpclassify d_fpclassify
13257 eval $inlibc
13258
13259 : see if fpclassl exists
13260 set fpclassl d_fpclassl
13261 eval $inlibc
13262
13263 : check for fpos64_t
13264 echo " "
13265 echo "Checking to see if you have fpos64_t..." >&4
13266 $cat >try.c <<EOCP
13267 #include <stdio.h>
13268 int main() { fpos64_t x = 7; }
13269 EOCP
13270 set try
13271 if eval $compile; then
13272         val="$define"
13273         echo "You have fpos64_t."
13274 else
13275         val="$undef"
13276         echo "You do not have fpos64_t."
13277         case "$fpossize" in
13278         8) echo "(Your fpos_t is 64 bits, so you could use that.)" ;;
13279         esac
13280 fi
13281 $rm_try
13282 set d_fpos64_t
13283 eval $setvar
13284
13285 : see if frexpl exists
13286 set frexpl d_frexpl
13287 eval $inlibc
13288
13289 : see if this is a sys/param system
13290 set sys/param.h i_sysparam
13291 eval $inhdr
13292
13293 : see if this is a sys/mount.h system
13294 set sys/mount.h i_sysmount
13295 eval $inhdr
13296
13297 : Check for fs_data_s
13298 echo " "
13299 echo "Checking to see if your system supports struct fs_data..." >&4
13300 set d_fs_data_s fs_data $i_systypes sys/types.h $i_sysparam sys/param.h $i_sysmount sys/mount.h
13301 eval $hasstruct
13302 case "$d_fs_data_s" in
13303 "$define")      echo "Yes, it does."   ;;
13304 *)              echo "No, it doesn't." ;;
13305 esac
13306
13307 : see if fseeko exists
13308 set fseeko d_fseeko
13309 eval $inlibc
13310 case "$longsize" in
13311 8) echo "(Your long is 64 bits, so you could use fseek.)" ;;
13312 esac
13313
13314 : see if fsetpos exists
13315 set fsetpos d_fsetpos
13316 eval $inlibc
13317
13318 : see if fstatfs exists
13319 set fstatfs d_fstatfs
13320 eval $inlibc
13321
13322 : see if statvfs exists
13323 set statvfs d_statvfs
13324 eval $inlibc
13325
13326 : see if fstatvfs exists
13327 set fstatvfs d_fstatvfs
13328 eval $inlibc
13329
13330
13331 : see if fsync exists
13332 set fsync d_fsync
13333 eval $inlibc
13334
13335 : see if ftello exists
13336 set ftello d_ftello
13337 eval $inlibc
13338 case "$longsize" in
13339 8) echo "(Your long is 64 bits, so you could use ftell.)" ;;
13340 esac
13341
13342 : check for a working futimes
13343 d_futimes="$undef"
13344 echo " "
13345 echo "Checking if you have a working futimes()" >&4
13346 $cat >try.c <<EOCP
13347 #include <stdio.h>
13348 #include <sys/time.h>
13349 #include <errno.h>
13350 #include <fcntl.h>
13351
13352 int main ()
13353 {
13354     int fd, rv;
13355     fd = open ("try.c", O_RDWR);
13356     if (-1 == fd) exit (1);
13357     rv = futimes (fd, NULL);
13358     exit (rv == -1 ? errno : 0);
13359 }
13360 EOCP
13361 set try
13362 if eval $compile; then
13363     `$run ./try`
13364     rc=$?
13365     case "$rc" in
13366         0)  echo "Yes, you have" >&4
13367             d_futimes="$define"
13368             ;;
13369         *)  echo "No, you have futimes, but it isn't working ($rc) (probably harmless)" >&4
13370             ;;
13371     esac
13372 else
13373     echo "No, it does not (probably harmless)" >&4
13374 fi
13375 $rm_try
13376
13377 : see if ndbm.h is available
13378 set ndbm.h i_ndbm
13379 eval $inhdr
13380 : Compatibility location for RedHat 7.1
13381 set gdbm/ndbm.h i_gdbmndbm
13382 eval $inhdr
13383 : Compatibility location for Debian 4.0
13384 set gdbm-ndbm.h i_gdbm_ndbm
13385 eval $inhdr
13386
13387 val="$undef"
13388 if $test "$i_ndbm" = "$define" -o "$i_gdbmndbm" = "$define" -o "$i_gdbm_ndbm" = "$define"; then
13389         : see if dbm_open exists
13390         set dbm_open d_dbm_open
13391         eval $inlibc
13392         case "$d_dbm_open" in
13393         $undef)
13394                 i_ndbm="$undef"
13395                 i_gdbmndbm="$undef"
13396                 i_gdbm_ndbm="$undef"
13397                 echo "We won't be including <ndbm.h>"
13398                 val="$undef"
13399                 ;;
13400         *) val="$define"
13401            ;;
13402         esac
13403 fi
13404 set d_ndbm
13405 eval $setvar
13406
13407 ndbm_hdr_protochk='name=$1; hdr=$2;
13408 eval "ihdr=\$""i_$name";
13409 val="$undef";
13410 if $test "$ihdr" = "$define"; then
13411         $echo "Checking if your <$hdr> uses prototypes..." >&4;
13412         case "$d_cplusplus" in
13413         $define) ./protochk "$extern_C void dbm_close(DBM *);" literal "extern \"C\" {" $ihdr $hdr literal "}" && val="$define" ;;
13414         *) ./protochk "$extern_C void dbm_close(int, int);" $ihdr $hdr || val="$define" ;;
13415         esac;
13416         case "$val" in
13417         $define) $echo "Your <$hdr> seems to have prototypes";;
13418         *) $echo "Your <$hdr> does not seem to have prototypes";;
13419         esac;
13420 fi;
13421 set "d_${name}_h_uses_prototypes";
13422 eval $setvar'
13423
13424 set ndbm ndbm.h
13425 eval $ndbm_hdr_protochk
13426 set gdbmndbm gdbm/ndbm.h
13427 eval $ndbm_hdr_protochk
13428 set gdbm_ndbm gdbm-ndbm.h
13429 eval $ndbm_hdr_protochk
13430
13431 : see if getaddrinfo exists
13432 set getaddrinfo d_getaddrinfo
13433 eval $inlibc
13434
13435 : see if getcwd exists
13436 set getcwd d_getcwd
13437 eval $inlibc
13438
13439 : see if getespwnam exists
13440 set getespwnam d_getespwnam
13441 eval $inlibc
13442
13443 : see if getfsstat exists
13444 set getfsstat d_getfsstat
13445 eval $inlibc
13446
13447 : see if getgrent exists
13448 set getgrent d_getgrent
13449 eval $inlibc
13450
13451 : see if getgrent_r exists
13452 set getgrent_r d_getgrent_r
13453 eval $inlibc
13454 case "$d_getgrent_r" in
13455 "$define")
13456         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
13457         case "$d_getgrent_r_proto:$usethreads" in
13458         ":define")      d_getgrent_r_proto=define
13459                 set d_getgrent_r_proto getgrent_r $hdrs
13460                 eval $hasproto ;;
13461         *)      ;;
13462         esac
13463         case "$d_getgrent_r_proto" in
13464         define)
13465         case "$getgrent_r_proto" in
13466         ''|0) try='int getgrent_r(struct group*, char*, size_t, struct group**);'
13467         ./protochk "$extern_C $try" $hdrs && getgrent_r_proto=I_SBWR ;;
13468         esac
13469         case "$getgrent_r_proto" in
13470         ''|0) try='int getgrent_r(struct group*, char*, int, struct group**);'
13471         ./protochk "$extern_C $try" $hdrs && getgrent_r_proto=I_SBIR ;;
13472         esac
13473         case "$getgrent_r_proto" in
13474         ''|0) try='struct group* getgrent_r(struct group*, char*, size_t);'
13475         ./protochk "$extern_C $try" $hdrs && getgrent_r_proto=S_SBW ;;
13476         esac
13477         case "$getgrent_r_proto" in
13478         ''|0) try='struct group* getgrent_r(struct group*, char*, int);'
13479         ./protochk "$extern_C $try" $hdrs && getgrent_r_proto=S_SBI ;;
13480         esac
13481         case "$getgrent_r_proto" in
13482         ''|0) try='int getgrent_r(struct group*, char*, int);'
13483         ./protochk "$extern_C $try" $hdrs && getgrent_r_proto=I_SBI ;;
13484         esac
13485         case "$getgrent_r_proto" in
13486         ''|0) try='int getgrent_r(struct group*, char*, int, FILE**);'
13487         ./protochk "$extern_C $try" $hdrs && getgrent_r_proto=I_SBIH ;;
13488         esac
13489         case "$getgrent_r_proto" in
13490         ''|0)   d_getgrent_r=undef
13491                 getgrent_r_proto=0
13492                 echo "Disabling getgrent_r, cannot determine prototype." >&4 ;;
13493         * )     case "$getgrent_r_proto" in
13494                 REENTRANT_PROTO*) ;;
13495                 *) getgrent_r_proto="REENTRANT_PROTO_$getgrent_r_proto" ;;
13496                 esac
13497                 echo "Prototype: $try" ;;
13498         esac
13499         ;;
13500         *)      case "$usethreads" in
13501                 define) echo "getgrent_r has no prototype, not using it." >&4 ;;
13502                 esac
13503                 d_getgrent_r=undef
13504                 getgrent_r_proto=0
13505                 ;;
13506         esac
13507         ;;
13508 *)      getgrent_r_proto=0
13509         ;;
13510 esac
13511
13512 : see if getgrgid_r exists
13513 set getgrgid_r d_getgrgid_r
13514 eval $inlibc
13515 case "$d_getgrgid_r" in
13516 "$define")
13517         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
13518         case "$d_getgrgid_r_proto:$usethreads" in
13519         ":define")      d_getgrgid_r_proto=define
13520                 set d_getgrgid_r_proto getgrgid_r $hdrs
13521                 eval $hasproto ;;
13522         *)      ;;
13523         esac
13524         case "$d_getgrgid_r_proto" in
13525         define)
13526         case "$getgrgid_r_proto" in
13527         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, size_t, struct group**);'
13528         ./protochk "$extern_C $try" $hdrs && getgrgid_r_proto=I_TSBWR ;;
13529         esac
13530         case "$getgrgid_r_proto" in
13531         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int, struct group**);'
13532         ./protochk "$extern_C $try" $hdrs && getgrgid_r_proto=I_TSBIR ;;
13533         esac
13534         case "$getgrgid_r_proto" in
13535         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int);'
13536         ./protochk "$extern_C $try" $hdrs && getgrgid_r_proto=I_TSBI ;;
13537         esac
13538         case "$getgrgid_r_proto" in
13539         ''|0) try='struct group* getgrgid_r(gid_t, struct group*, char*, int);'
13540         ./protochk "$extern_C $try" $hdrs && getgrgid_r_proto=S_TSBI ;;
13541         esac
13542         case "$getgrgid_r_proto" in
13543         ''|0)   d_getgrgid_r=undef
13544                 getgrgid_r_proto=0
13545                 echo "Disabling getgrgid_r, cannot determine prototype." >&4 ;;
13546         * )     case "$getgrgid_r_proto" in
13547                 REENTRANT_PROTO*) ;;
13548                 *) getgrgid_r_proto="REENTRANT_PROTO_$getgrgid_r_proto" ;;
13549                 esac
13550                 echo "Prototype: $try" ;;
13551         esac
13552         ;;
13553         *)      case "$usethreads" in
13554                 define) echo "getgrgid_r has no prototype, not using it." >&4 ;;
13555                 esac
13556                 d_getgrgid_r=undef
13557                 getgrgid_r_proto=0
13558                 ;;
13559         esac
13560         ;;
13561 *)      getgrgid_r_proto=0
13562         ;;
13563 esac
13564
13565 : see if getgrnam_r exists
13566 set getgrnam_r d_getgrnam_r
13567 eval $inlibc
13568 case "$d_getgrnam_r" in
13569 "$define")
13570         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
13571         case "$d_getgrnam_r_proto:$usethreads" in
13572         ":define")      d_getgrnam_r_proto=define
13573                 set d_getgrnam_r_proto getgrnam_r $hdrs
13574                 eval $hasproto ;;
13575         *)      ;;
13576         esac
13577         case "$d_getgrnam_r_proto" in
13578         define)
13579         case "$getgrnam_r_proto" in
13580         ''|0) try='int getgrnam_r(const char*, struct group*, char*, size_t, struct group**);'
13581         ./protochk "$extern_C $try" $hdrs && getgrnam_r_proto=I_CSBWR ;;
13582         esac
13583         case "$getgrnam_r_proto" in
13584         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int, struct group**);'
13585         ./protochk "$extern_C $try" $hdrs && getgrnam_r_proto=I_CSBIR ;;
13586         esac
13587         case "$getgrnam_r_proto" in
13588         ''|0) try='struct group* getgrnam_r(const char*, char*, int);'
13589         ./protochk "$extern_C $try" $hdrs && getgrnam_r_proto=S_CBI ;;
13590         esac
13591         case "$getgrnam_r_proto" in
13592         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int);'
13593         ./protochk "$extern_C $try" $hdrs && getgrnam_r_proto=I_CSBI ;;
13594         esac
13595         case "$getgrnam_r_proto" in
13596         ''|0) try='struct group* getgrnam_r(const char*, struct group*, char*, int);'
13597         ./protochk "$extern_C $try" $hdrs && getgrnam_r_proto=S_CSBI ;;
13598         esac
13599         case "$getgrnam_r_proto" in
13600         ''|0)   d_getgrnam_r=undef
13601                 getgrnam_r_proto=0
13602                 echo "Disabling getgrnam_r, cannot determine prototype." >&4 ;;
13603         * )     case "$getgrnam_r_proto" in
13604                 REENTRANT_PROTO*) ;;
13605                 *) getgrnam_r_proto="REENTRANT_PROTO_$getgrnam_r_proto" ;;
13606                 esac
13607                 echo "Prototype: $try" ;;
13608         esac
13609         ;;
13610         *)      case "$usethreads" in
13611                 define) echo "getgrnam_r has no prototype, not using it." >&4 ;;
13612                 esac
13613                 d_getgrnam_r=undef
13614                 getgrnam_r_proto=0
13615                 ;;
13616         esac
13617         ;;
13618 *)      getgrnam_r_proto=0
13619         ;;
13620 esac
13621
13622 : see if gethostbyaddr exists
13623 set gethostbyaddr d_gethbyaddr
13624 eval $inlibc
13625
13626 : see if gethostbyname exists
13627 set gethostbyname d_gethbyname
13628 eval $inlibc
13629
13630 : see if gethostent exists
13631 set gethostent d_gethent
13632 eval $inlibc
13633
13634 : see how we will look up host name
13635 echo " "
13636 call=''
13637 if set gethostname val -f d_gethname; eval $csym; $val; then
13638         echo 'gethostname() found.' >&4
13639         d_gethname="$define"
13640         call=gethostname
13641 fi
13642 if set uname val -f d_uname; eval $csym; $val; then
13643         if ./xenix; then
13644                 $cat <<'EOM'
13645 uname() was found, but you're running xenix, and older versions of xenix
13646 have a broken uname(). If you don't really know whether your xenix is old
13647 enough to have a broken system call, use the default answer.
13648
13649 EOM
13650                 dflt=y
13651                 case "$d_uname" in
13652                 "$define") dflt=n;;
13653                 esac
13654                 rp='Is your uname() broken?'
13655                 . ./myread
13656                 case "$ans" in
13657                 n*) d_uname="$define"; call=uname;;
13658                 esac
13659         else
13660                 echo 'uname() found.' >&4
13661                 d_uname="$define"
13662                 case "$call" in
13663                 '') call=uname ;;
13664                 esac
13665         fi
13666 fi
13667 case "$d_gethname" in
13668 '') d_gethname="$undef";;
13669 esac
13670 case "$d_uname" in
13671 '') d_uname="$undef";;
13672 esac
13673 case "$d_uname$d_gethname" in
13674 *define*)
13675         dflt=n
13676         cat <<EOM
13677
13678 Every now and then someone has a $call() that lies about the hostname
13679 but can't be fixed for political or economic reasons.  If you wish, I can
13680 pretend $call() isn't there and maybe compute hostname at run-time
13681 thanks to the '$phostname' command.
13682
13683 EOM
13684         rp="Shall I ignore $call() from now on?"
13685         . ./myread
13686         case "$ans" in
13687         y*) d_uname="$undef" d_gethname="$undef"; $echo $n "Okay...$c";;
13688         esac;;
13689 esac
13690 case "$phostname" in
13691 '') aphostname='';;
13692 *) case "$aphostname" in
13693         /*) ;;
13694         *) set X $phostname
13695                 shift
13696                 file=$1
13697                 shift
13698                 file=`./loc $file $file $pth`
13699                 aphostname=`echo $file $*`
13700                 ;;
13701         esac
13702         ;;
13703 esac
13704 case "$d_uname$d_gethname" in
13705 *define*) ;;
13706 *)
13707         case "$phostname" in
13708         '')
13709                 echo "There will be no way for $package to get your hostname." >&4;;
13710         *)
13711         echo "I'll use 'popen("'"'$aphostname'", "r")'"' to get your hostname." >&4
13712                 ;;
13713         esac;;
13714 esac
13715 case "$d_phostname" in
13716 '') d_phostname="$undef";;
13717 esac
13718
13719 : see if gethostbyaddr_r exists
13720 set gethostbyaddr_r d_gethostbyaddr_r
13721 eval $inlibc
13722 case "$d_gethostbyaddr_r" in
13723 "$define")
13724         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13725         case "$d_gethostbyaddr_r_proto:$usethreads" in
13726         ":define")      d_gethostbyaddr_r_proto=define
13727                 set d_gethostbyaddr_r_proto gethostbyaddr_r $hdrs
13728                 eval $hasproto ;;
13729         *)      ;;
13730         esac
13731         case "$d_gethostbyaddr_r_proto" in
13732         define)
13733         case "$gethostbyaddr_r_proto" in
13734         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
13735         ./protochk "$extern_C $try" $hdrs && gethostbyaddr_r_proto=I_CWISBWRE ;;
13736         esac
13737         case "$gethostbyaddr_r_proto" in
13738         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, int, int*);'
13739         ./protochk "$extern_C $try" $hdrs && gethostbyaddr_r_proto=S_CWISBWIE ;;
13740         esac
13741         case "$gethostbyaddr_r_proto" in
13742         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, int, int*);'
13743         ./protochk "$extern_C $try" $hdrs && gethostbyaddr_r_proto=S_CWISBIE ;;
13744         esac
13745         case "$gethostbyaddr_r_proto" in
13746         ''|0) try='struct hostent* gethostbyaddr_r(const void*, size_t, int, struct hostent*, char*, int, int*);'
13747         ./protochk "$extern_C $try" $hdrs && gethostbyaddr_r_proto=S_TWISBIE ;;
13748         esac
13749         case "$gethostbyaddr_r_proto" in
13750         ''|0) try='struct hostent* gethostbyaddr_r(const char*, int, int, struct hostent*, char*, int, int*);'
13751         ./protochk "$extern_C $try" $hdrs && gethostbyaddr_r_proto=S_CIISBIE ;;
13752         esac
13753         case "$gethostbyaddr_r_proto" in
13754         ''|0) try='struct hostent* gethostbyaddr_r(const char*, struct hostent*, char*, int, int*);'
13755         ./protochk "$extern_C $try" $hdrs && gethostbyaddr_r_proto=S_CSBIE ;;
13756         esac
13757         case "$gethostbyaddr_r_proto" in
13758         ''|0) try='struct hostent* gethostbyaddr_r(const void*, struct hostent*, char*, int, int*);'
13759         ./protochk "$extern_C $try" $hdrs && gethostbyaddr_r_proto=S_TSBIE ;;
13760         esac
13761         case "$gethostbyaddr_r_proto" in
13762         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, struct hostent_data*);'
13763         ./protochk "$extern_C $try" $hdrs && gethostbyaddr_r_proto=I_CWISD ;;
13764         esac
13765         case "$gethostbyaddr_r_proto" in
13766         ''|0) try='int gethostbyaddr_r(const char*, int, int, struct hostent*, struct hostent_data*);'
13767         ./protochk "$extern_C $try" $hdrs && gethostbyaddr_r_proto=I_CIISD ;;
13768         esac
13769         case "$gethostbyaddr_r_proto" in
13770         ''|0) try='int gethostbyaddr_r(const char*, int, int);'
13771         ./protochk "$extern_C $try" $hdrs && gethostbyaddr_r_proto=I_CII ;;
13772         esac
13773         case "$gethostbyaddr_r_proto" in
13774         ''|0) try='int gethostbyaddr_r(const void*, socklen_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
13775         ./protochk "$extern_C $try" $hdrs && gethostbyaddr_r_proto=I_TsISBWRE ;;
13776         esac
13777         case "$gethostbyaddr_r_proto" in
13778         ''|0)   d_gethostbyaddr_r=undef
13779                 gethostbyaddr_r_proto=0
13780                 echo "Disabling gethostbyaddr_r, cannot determine prototype." >&4 ;;
13781         * )     case "$gethostbyaddr_r_proto" in
13782                 REENTRANT_PROTO*) ;;
13783                 *) gethostbyaddr_r_proto="REENTRANT_PROTO_$gethostbyaddr_r_proto" ;;
13784                 esac
13785                 echo "Prototype: $try" ;;
13786         esac
13787         ;;
13788         *)      case "$usethreads" in
13789                 define) echo "gethostbyaddr_r has no prototype, not using it." >&4 ;;
13790                 esac
13791                 d_gethostbyaddr_r=undef
13792                 gethostbyaddr_r_proto=0
13793                 ;;
13794         esac
13795         ;;
13796 *)      gethostbyaddr_r_proto=0
13797         ;;
13798 esac
13799
13800 : see if gethostbyname_r exists
13801 set gethostbyname_r d_gethostbyname_r
13802 eval $inlibc
13803 case "$d_gethostbyname_r" in
13804 "$define")
13805         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13806         case "$d_gethostbyname_r_proto:$usethreads" in
13807         ":define")      d_gethostbyname_r_proto=define
13808                 set d_gethostbyname_r_proto gethostbyname_r $hdrs
13809                 eval $hasproto ;;
13810         *)      ;;
13811         esac
13812         case "$d_gethostbyname_r_proto" in
13813         define)
13814         case "$gethostbyname_r_proto" in
13815         ''|0) try='int gethostbyname_r(const char*, struct hostent*, char*, size_t, struct hostent**, int*);'
13816         ./protochk "$extern_C $try" $hdrs && gethostbyname_r_proto=I_CSBWRE ;;
13817         esac
13818         case "$gethostbyname_r_proto" in
13819         ''|0) try='struct hostent* gethostbyname_r(const char*, struct hostent*, char*, int, int*);'
13820         ./protochk "$extern_C $try" $hdrs && gethostbyname_r_proto=S_CSBIE ;;
13821         esac
13822         case "$gethostbyname_r_proto" in
13823         ''|0) try='int gethostbyname_r(const char*, struct hostent*, struct hostent_data*);'
13824         ./protochk "$extern_C $try" $hdrs && gethostbyname_r_proto=I_CSD ;;
13825         esac
13826         case "$gethostbyname_r_proto" in
13827         ''|0)   d_gethostbyname_r=undef
13828                 gethostbyname_r_proto=0
13829                 echo "Disabling gethostbyname_r, cannot determine prototype." >&4 ;;
13830         * )     case "$gethostbyname_r_proto" in
13831                 REENTRANT_PROTO*) ;;
13832                 *) gethostbyname_r_proto="REENTRANT_PROTO_$gethostbyname_r_proto" ;;
13833                 esac
13834                 echo "Prototype: $try" ;;
13835         esac
13836         ;;
13837         *)      case "$usethreads" in
13838                 define) echo "gethostbyname_r has no prototype, not using it." >&4 ;;
13839                 esac
13840                 d_gethostbyname_r=undef
13841                 gethostbyname_r_proto=0
13842                 ;;
13843         esac
13844         ;;
13845 *)      gethostbyname_r_proto=0
13846         ;;
13847 esac
13848
13849 : see if gethostent_r exists
13850 set gethostent_r d_gethostent_r
13851 eval $inlibc
13852 case "$d_gethostent_r" in
13853 "$define")
13854         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13855         case "$d_gethostent_r_proto:$usethreads" in
13856         ":define")      d_gethostent_r_proto=define
13857                 set d_gethostent_r_proto gethostent_r $hdrs
13858                 eval $hasproto ;;
13859         *)      ;;
13860         esac
13861         case "$d_gethostent_r_proto" in
13862         define)
13863         case "$gethostent_r_proto" in
13864         ''|0) try='int gethostent_r(struct hostent*, char*, size_t, struct hostent**, int*);'
13865         ./protochk "$extern_C $try" $hdrs && gethostent_r_proto=I_SBWRE ;;
13866         esac
13867         case "$gethostent_r_proto" in
13868         ''|0) try='int gethostent_r(struct hostent*, char*, int, int*);'
13869         ./protochk "$extern_C $try" $hdrs && gethostent_r_proto=I_SBIE ;;
13870         esac
13871         case "$gethostent_r_proto" in
13872         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int, int*);'
13873         ./protochk "$extern_C $try" $hdrs && gethostent_r_proto=S_SBIE ;;
13874         esac
13875         case "$gethostent_r_proto" in
13876         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int);'
13877         ./protochk "$extern_C $try" $hdrs && gethostent_r_proto=S_SBI ;;
13878         esac
13879         case "$gethostent_r_proto" in
13880         ''|0) try='int gethostent_r(struct hostent*, char*, int);'
13881         ./protochk "$extern_C $try" $hdrs && gethostent_r_proto=I_SBI ;;
13882         esac
13883         case "$gethostent_r_proto" in
13884         ''|0) try='int gethostent_r(struct hostent*, struct hostent_data*);'
13885         ./protochk "$extern_C $try" $hdrs && gethostent_r_proto=I_SD ;;
13886         esac
13887         case "$gethostent_r_proto" in
13888         ''|0)   d_gethostent_r=undef
13889                 gethostent_r_proto=0
13890                 echo "Disabling gethostent_r, cannot determine prototype." >&4 ;;
13891         * )     case "$gethostent_r_proto" in
13892                 REENTRANT_PROTO*) ;;
13893                 *) gethostent_r_proto="REENTRANT_PROTO_$gethostent_r_proto" ;;
13894                 esac
13895                 echo "Prototype: $try" ;;
13896         esac
13897         ;;
13898         *)      case "$usethreads" in
13899                 define) echo "gethostent_r has no prototype, not using it." >&4 ;;
13900                 esac
13901                 d_gethostent_r=undef
13902                 gethostent_r_proto=0
13903                 ;;
13904         esac
13905         ;;
13906 *)      gethostent_r_proto=0
13907         ;;
13908 esac
13909
13910 : see if prototypes for various gethostxxx netdb.h functions are available
13911 echo " "
13912 set d_gethostprotos gethostent $i_netdb netdb.h
13913 eval $hasproto
13914
13915 : see if getitimer exists
13916 set getitimer d_getitimer
13917 eval $inlibc
13918
13919 : see if getlogin exists
13920 set getlogin d_getlogin
13921 eval $inlibc
13922
13923 : see if getlogin_r exists
13924 set getlogin_r d_getlogin_r
13925 eval $inlibc
13926 case "$d_getlogin_r" in
13927 "$define")
13928         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
13929         case "$d_getlogin_r_proto:$usethreads" in
13930         ":define")      d_getlogin_r_proto=define
13931                 set d_getlogin_r_proto getlogin_r $hdrs
13932                 eval $hasproto ;;
13933         *)      ;;
13934         esac
13935         case "$d_getlogin_r_proto" in
13936         define)
13937         case "$getlogin_r_proto" in
13938         ''|0) try='int getlogin_r(char*, size_t);'
13939         ./protochk "$extern_C $try" $hdrs && getlogin_r_proto=I_BW ;;
13940         esac
13941         case "$getlogin_r_proto" in
13942         ''|0) try='int getlogin_r(char*, int);'
13943         ./protochk "$extern_C $try" $hdrs && getlogin_r_proto=I_BI ;;
13944         esac
13945         case "$getlogin_r_proto" in
13946         ''|0) try='char* getlogin_r(char*, size_t);'
13947         ./protochk "$extern_C $try" $hdrs && getlogin_r_proto=B_BW ;;
13948         esac
13949         case "$getlogin_r_proto" in
13950         ''|0) try='char* getlogin_r(char*, int);'
13951         ./protochk "$extern_C $try" $hdrs && getlogin_r_proto=B_BI ;;
13952         esac
13953         case "$getlogin_r_proto" in
13954         ''|0)   d_getlogin_r=undef
13955                 getlogin_r_proto=0
13956                 echo "Disabling getlogin_r, cannot determine prototype." >&4 ;;
13957         * )     case "$getlogin_r_proto" in
13958                 REENTRANT_PROTO*) ;;
13959                 *) getlogin_r_proto="REENTRANT_PROTO_$getlogin_r_proto" ;;
13960                 esac
13961                 echo "Prototype: $try" ;;
13962         esac
13963         ;;
13964         *)      case "$usethreads" in
13965                 define) echo "getlogin_r has no prototype, not using it." >&4 ;;
13966                 esac
13967                 d_getlogin_r=undef
13968                 getlogin_r_proto=0
13969                 ;;
13970         esac
13971         ;;
13972 *)      getlogin_r_proto=0
13973         ;;
13974 esac
13975
13976 : see if getmnt exists
13977 set getmnt d_getmnt
13978 eval $inlibc
13979
13980 : see if getmntent exists
13981 set getmntent d_getmntent
13982 eval $inlibc
13983
13984 : see if getnameinfo exists
13985 set getnameinfo d_getnameinfo
13986 eval $inlibc
13987
13988 : see if getnetbyaddr exists
13989 set getnetbyaddr d_getnbyaddr
13990 eval $inlibc
13991
13992 : see if getnetbyname exists
13993 set getnetbyname d_getnbyname
13994 eval $inlibc
13995
13996 : see if getnetent exists
13997 set getnetent d_getnent
13998 eval $inlibc
13999
14000 : see if getnetbyaddr_r exists
14001 set getnetbyaddr_r d_getnetbyaddr_r
14002 eval $inlibc
14003 case "$d_getnetbyaddr_r" in
14004 "$define")
14005         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14006         case "$d_getnetbyaddr_r_proto:$usethreads" in
14007         ":define")      d_getnetbyaddr_r_proto=define
14008                 set d_getnetbyaddr_r_proto getnetbyaddr_r $hdrs
14009                 eval $hasproto ;;
14010         *)      ;;
14011         esac
14012         case "$d_getnetbyaddr_r_proto" in
14013         define)
14014         case "$getnetbyaddr_r_proto" in
14015         ''|0) try='int getnetbyaddr_r(unsigned long, int, struct netent*, char*, size_t, struct netent**, int*);'
14016         ./protochk "$extern_C $try" $hdrs && getnetbyaddr_r_proto=I_UISBWRE ;;
14017         esac
14018         case "$getnetbyaddr_r_proto" in
14019         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, char*, int);'
14020         ./protochk "$extern_C $try" $hdrs && getnetbyaddr_r_proto=I_LISBI ;;
14021         esac
14022         case "$getnetbyaddr_r_proto" in
14023         ''|0) try='struct netent* getnetbyaddr_r(in_addr_t, int, struct netent*, char*, int);'
14024         ./protochk "$extern_C $try" $hdrs && getnetbyaddr_r_proto=S_TISBI ;;
14025         esac
14026         case "$getnetbyaddr_r_proto" in
14027         ''|0) try='struct netent* getnetbyaddr_r(long, int, struct netent*, char*, int);'
14028         ./protochk "$extern_C $try" $hdrs && getnetbyaddr_r_proto=S_LISBI ;;
14029         esac
14030         case "$getnetbyaddr_r_proto" in
14031         ''|0) try='int getnetbyaddr_r(in_addr_t, int, struct netent*, struct netent_data*);'
14032         ./protochk "$extern_C $try" $hdrs && getnetbyaddr_r_proto=I_TISD ;;
14033         esac
14034         case "$getnetbyaddr_r_proto" in
14035         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, struct netent_data*);'
14036         ./protochk "$extern_C $try" $hdrs && getnetbyaddr_r_proto=I_LISD ;;
14037         esac
14038         case "$getnetbyaddr_r_proto" in
14039         ''|0) try='int getnetbyaddr_r(int, int, struct netent*, struct netent_data*);'
14040         ./protochk "$extern_C $try" $hdrs && getnetbyaddr_r_proto=I_IISD ;;
14041         esac
14042         case "$getnetbyaddr_r_proto" in
14043         ''|0) try='int getnetbyaddr_r(uint32_t, int, struct netent*, char*, size_t, struct netent**, int*);'
14044         ./protochk "$extern_C $try" $hdrs && getnetbyaddr_r_proto=I_uISBWRE ;;
14045         esac
14046         case "$getnetbyaddr_r_proto" in
14047         ''|0)   d_getnetbyaddr_r=undef
14048                 getnetbyaddr_r_proto=0
14049                 echo "Disabling getnetbyaddr_r, cannot determine prototype." >&4 ;;
14050         * )     case "$getnetbyaddr_r_proto" in
14051                 REENTRANT_PROTO*) ;;
14052                 *) getnetbyaddr_r_proto="REENTRANT_PROTO_$getnetbyaddr_r_proto" ;;
14053                 esac
14054                 echo "Prototype: $try" ;;
14055         esac
14056         ;;
14057         *)      case "$usethreads" in
14058                 define) echo "getnetbyaddr_r has no prototype, not using it." >&4 ;;
14059                 esac
14060                 d_getnetbyaddr_r=undef
14061                 getnetbyaddr_r_proto=0
14062                 ;;
14063         esac
14064         ;;
14065 *)      getnetbyaddr_r_proto=0
14066         ;;
14067 esac
14068
14069 : see if getnetbyname_r exists
14070 set getnetbyname_r d_getnetbyname_r
14071 eval $inlibc
14072 case "$d_getnetbyname_r" in
14073 "$define")
14074         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14075         case "$d_getnetbyname_r_proto:$usethreads" in
14076         ":define")      d_getnetbyname_r_proto=define
14077                 set d_getnetbyname_r_proto getnetbyname_r $hdrs
14078                 eval $hasproto ;;
14079         *)      ;;
14080         esac
14081         case "$d_getnetbyname_r_proto" in
14082         define)
14083         case "$getnetbyname_r_proto" in
14084         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, size_t, struct netent**, int*);'
14085         ./protochk "$extern_C $try" $hdrs && getnetbyname_r_proto=I_CSBWRE ;;
14086         esac
14087         case "$getnetbyname_r_proto" in
14088         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, int);'
14089         ./protochk "$extern_C $try" $hdrs && getnetbyname_r_proto=I_CSBI ;;
14090         esac
14091         case "$getnetbyname_r_proto" in
14092         ''|0) try='struct netent* getnetbyname_r(const char*, struct netent*, char*, int);'
14093         ./protochk "$extern_C $try" $hdrs && getnetbyname_r_proto=S_CSBI ;;
14094         esac
14095         case "$getnetbyname_r_proto" in
14096         ''|0) try='int getnetbyname_r(const char*, struct netent*, struct netent_data*);'
14097         ./protochk "$extern_C $try" $hdrs && getnetbyname_r_proto=I_CSD ;;
14098         esac
14099         case "$getnetbyname_r_proto" in
14100         ''|0)   d_getnetbyname_r=undef
14101                 getnetbyname_r_proto=0
14102                 echo "Disabling getnetbyname_r, cannot determine prototype." >&4 ;;
14103         * )     case "$getnetbyname_r_proto" in
14104                 REENTRANT_PROTO*) ;;
14105                 *) getnetbyname_r_proto="REENTRANT_PROTO_$getnetbyname_r_proto" ;;
14106                 esac
14107                 echo "Prototype: $try" ;;
14108         esac
14109         ;;
14110         *)      case "$usethreads" in
14111                 define) echo "getnetbyname_r has no prototype, not using it." >&4 ;;
14112                 esac
14113                 d_getnetbyname_r=undef
14114                 getnetbyname_r_proto=0
14115                 ;;
14116         esac
14117         ;;
14118 *)      getnetbyname_r_proto=0
14119         ;;
14120 esac
14121
14122 : see if getnetent_r exists
14123 set getnetent_r d_getnetent_r
14124 eval $inlibc
14125 case "$d_getnetent_r" in
14126 "$define")
14127         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14128         case "$d_getnetent_r_proto:$usethreads" in
14129         ":define")      d_getnetent_r_proto=define
14130                 set d_getnetent_r_proto getnetent_r $hdrs
14131                 eval $hasproto ;;
14132         *)      ;;
14133         esac
14134         case "$d_getnetent_r_proto" in
14135         define)
14136         case "$getnetent_r_proto" in
14137         ''|0) try='int getnetent_r(struct netent*, char*, size_t, struct netent**, int*);'
14138         ./protochk "$extern_C $try" $hdrs && getnetent_r_proto=I_SBWRE ;;
14139         esac
14140         case "$getnetent_r_proto" in
14141         ''|0) try='int getnetent_r(struct netent*, char*, int, int*);'
14142         ./protochk "$extern_C $try" $hdrs && getnetent_r_proto=I_SBIE ;;
14143         esac
14144         case "$getnetent_r_proto" in
14145         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int, int*);'
14146         ./protochk "$extern_C $try" $hdrs && getnetent_r_proto=S_SBIE ;;
14147         esac
14148         case "$getnetent_r_proto" in
14149         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int);'
14150         ./protochk "$extern_C $try" $hdrs && getnetent_r_proto=S_SBI ;;
14151         esac
14152         case "$getnetent_r_proto" in
14153         ''|0) try='int getnetent_r(struct netent*, char*, int);'
14154         ./protochk "$extern_C $try" $hdrs && getnetent_r_proto=I_SBI ;;
14155         esac
14156         case "$getnetent_r_proto" in
14157         ''|0) try='int getnetent_r(struct netent*, struct netent_data*);'
14158         ./protochk "$extern_C $try" $hdrs && getnetent_r_proto=I_SD ;;
14159         esac
14160         case "$getnetent_r_proto" in
14161         ''|0)   d_getnetent_r=undef
14162                 getnetent_r_proto=0
14163                 echo "Disabling getnetent_r, cannot determine prototype." >&4 ;;
14164         * )     case "$getnetent_r_proto" in
14165                 REENTRANT_PROTO*) ;;
14166                 *) getnetent_r_proto="REENTRANT_PROTO_$getnetent_r_proto" ;;
14167                 esac
14168                 echo "Prototype: $try" ;;
14169         esac
14170         ;;
14171         *)      case "$usethreads" in
14172                 define) echo "getnetent_r has no prototype, not using it." >&4 ;;
14173                 esac
14174                 d_getnetent_r=undef
14175                 getnetent_r_proto=0
14176                 ;;
14177         esac
14178         ;;
14179 *)      getnetent_r_proto=0
14180         ;;
14181 esac
14182
14183 : see if prototypes for various getnetxxx netdb.h functions are available
14184 echo " "
14185 set d_getnetprotos getnetent $i_netdb netdb.h
14186 eval $hasproto
14187
14188 : see if getpagesize exists
14189 set getpagesize d_getpagsz
14190 eval $inlibc
14191
14192 : Optional checks for getprotobyname and getprotobynumber
14193
14194 : see if getprotobyname exists
14195 set getprotobyname d_getpbyname
14196 eval $inlibc
14197
14198 : see if getprotobynumber exists
14199 set getprotobynumber d_getpbynumber
14200 eval $inlibc
14201
14202 : see if getprotoent exists
14203 set getprotoent d_getpent
14204 eval $inlibc
14205
14206 : see if getpgid exists
14207 set getpgid d_getpgid
14208 eval $inlibc
14209
14210 : see if getpgrp2 exists
14211 set getpgrp2 d_getpgrp2
14212 eval $inlibc
14213
14214 : see if getppid exists
14215 set getppid d_getppid
14216 eval $inlibc
14217
14218 : see if getpriority exists
14219 set getpriority d_getprior
14220 eval $inlibc
14221
14222 : see if getprotobyname_r exists
14223 set getprotobyname_r d_getprotobyname_r
14224 eval $inlibc
14225 case "$d_getprotobyname_r" in
14226 "$define")
14227         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14228         case "$d_getprotobyname_r_proto:$usethreads" in
14229         ":define")      d_getprotobyname_r_proto=define
14230                 set d_getprotobyname_r_proto getprotobyname_r $hdrs
14231                 eval $hasproto ;;
14232         *)      ;;
14233         esac
14234         case "$d_getprotobyname_r_proto" in
14235         define)
14236         case "$getprotobyname_r_proto" in
14237         ''|0) try='int getprotobyname_r(const char*, struct protoent*, char*, size_t, struct protoent**);'
14238         ./protochk "$extern_C $try" $hdrs && getprotobyname_r_proto=I_CSBWR ;;
14239         esac
14240         case "$getprotobyname_r_proto" in
14241         ''|0) try='struct protoent* getprotobyname_r(const char*, struct protoent*, char*, int);'
14242         ./protochk "$extern_C $try" $hdrs && getprotobyname_r_proto=S_CSBI ;;
14243         esac
14244         case "$getprotobyname_r_proto" in
14245         ''|0) try='int getprotobyname_r(const char*, struct protoent*, struct protoent_data*);'
14246         ./protochk "$extern_C $try" $hdrs && getprotobyname_r_proto=I_CSD ;;
14247         esac
14248         case "$getprotobyname_r_proto" in
14249         ''|0)   d_getprotobyname_r=undef
14250                 getprotobyname_r_proto=0
14251                 echo "Disabling getprotobyname_r, cannot determine prototype." >&4 ;;
14252         * )     case "$getprotobyname_r_proto" in
14253                 REENTRANT_PROTO*) ;;
14254                 *) getprotobyname_r_proto="REENTRANT_PROTO_$getprotobyname_r_proto" ;;
14255                 esac
14256                 echo "Prototype: $try" ;;
14257         esac
14258         ;;
14259         *)      case "$usethreads" in
14260                 define) echo "getprotobyname_r has no prototype, not using it." >&4 ;;
14261                 esac
14262                 d_getprotobyname_r=undef
14263                 getprotobyname_r_proto=0
14264                 ;;
14265         esac
14266         ;;
14267 *)      getprotobyname_r_proto=0
14268         ;;
14269 esac
14270
14271 : see if getprotobynumber_r exists
14272 set getprotobynumber_r d_getprotobynumber_r
14273 eval $inlibc
14274 case "$d_getprotobynumber_r" in
14275 "$define")
14276         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14277         case "$d_getprotobynumber_r_proto:$usethreads" in
14278         ":define")      d_getprotobynumber_r_proto=define
14279                 set d_getprotobynumber_r_proto getprotobynumber_r $hdrs
14280                 eval $hasproto ;;
14281         *)      ;;
14282         esac
14283         case "$d_getprotobynumber_r_proto" in
14284         define)
14285         case "$getprotobynumber_r_proto" in
14286         ''|0) try='int getprotobynumber_r(int, struct protoent*, char*, size_t, struct protoent**);'
14287         ./protochk "$extern_C $try" $hdrs && getprotobynumber_r_proto=I_ISBWR ;;
14288         esac
14289         case "$getprotobynumber_r_proto" in
14290         ''|0) try='struct protoent* getprotobynumber_r(int, struct protoent*, char*, int);'
14291         ./protochk "$extern_C $try" $hdrs && getprotobynumber_r_proto=S_ISBI ;;
14292         esac
14293         case "$getprotobynumber_r_proto" in
14294         ''|0) try='int getprotobynumber_r(int, struct protoent*, struct protoent_data*);'
14295         ./protochk "$extern_C $try" $hdrs && getprotobynumber_r_proto=I_ISD ;;
14296         esac
14297         case "$getprotobynumber_r_proto" in
14298         ''|0)   d_getprotobynumber_r=undef
14299                 getprotobynumber_r_proto=0
14300                 echo "Disabling getprotobynumber_r, cannot determine prototype." >&4 ;;
14301         * )     case "$getprotobynumber_r_proto" in
14302                 REENTRANT_PROTO*) ;;
14303                 *) getprotobynumber_r_proto="REENTRANT_PROTO_$getprotobynumber_r_proto" ;;
14304                 esac
14305                 echo "Prototype: $try" ;;
14306         esac
14307         ;;
14308         *)      case "$usethreads" in
14309                 define) echo "getprotobynumber_r has no prototype, not using it." >&4 ;;
14310                 esac
14311                 d_getprotobynumber_r=undef
14312                 getprotobynumber_r_proto=0
14313                 ;;
14314         esac
14315         ;;
14316 *)      getprotobynumber_r_proto=0
14317         ;;
14318 esac
14319
14320 : see if getprotoent_r exists
14321 set getprotoent_r d_getprotoent_r
14322 eval $inlibc
14323 case "$d_getprotoent_r" in
14324 "$define")
14325         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14326         case "$d_getprotoent_r_proto:$usethreads" in
14327         ":define")      d_getprotoent_r_proto=define
14328                 set d_getprotoent_r_proto getprotoent_r $hdrs
14329                 eval $hasproto ;;
14330         *)      ;;
14331         esac
14332         case "$d_getprotoent_r_proto" in
14333         define)
14334         case "$getprotoent_r_proto" in
14335         ''|0) try='int getprotoent_r(struct protoent*, char*, size_t, struct protoent**);'
14336         ./protochk "$extern_C $try" $hdrs && getprotoent_r_proto=I_SBWR ;;
14337         esac
14338         case "$getprotoent_r_proto" in
14339         ''|0) try='int getprotoent_r(struct protoent*, char*, int);'
14340         ./protochk "$extern_C $try" $hdrs && getprotoent_r_proto=I_SBI ;;
14341         esac
14342         case "$getprotoent_r_proto" in
14343         ''|0) try='struct protoent* getprotoent_r(struct protoent*, char*, int);'
14344         ./protochk "$extern_C $try" $hdrs && getprotoent_r_proto=S_SBI ;;
14345         esac
14346         case "$getprotoent_r_proto" in
14347         ''|0) try='int getprotoent_r(struct protoent*, struct protoent_data*);'
14348         ./protochk "$extern_C $try" $hdrs && getprotoent_r_proto=I_SD ;;
14349         esac
14350         case "$getprotoent_r_proto" in
14351         ''|0)   d_getprotoent_r=undef
14352                 getprotoent_r_proto=0
14353                 echo "Disabling getprotoent_r, cannot determine prototype." >&4 ;;
14354         * )     case "$getprotoent_r_proto" in
14355                 REENTRANT_PROTO*) ;;
14356                 *) getprotoent_r_proto="REENTRANT_PROTO_$getprotoent_r_proto" ;;
14357                 esac
14358                 echo "Prototype: $try" ;;
14359         esac
14360         ;;
14361         *)      case "$usethreads" in
14362                 define) echo "getprotoent_r has no prototype, not using it." >&4 ;;
14363                 esac
14364                 d_getprotoent_r=undef
14365                 getprotoent_r_proto=0
14366                 ;;
14367         esac
14368         ;;
14369 *)      getprotoent_r_proto=0
14370         ;;
14371 esac
14372
14373 : see if prototypes for various getprotoxxx netdb.h functions are available
14374 echo " "
14375 set d_getprotoprotos getprotoent $i_netdb netdb.h
14376 eval $hasproto
14377
14378 : see if getprpwnam exists
14379 set getprpwnam d_getprpwnam
14380 eval $inlibc
14381
14382 : see if getpwent exists
14383 set getpwent d_getpwent
14384 eval $inlibc
14385
14386 : see if getpwent_r exists
14387 set getpwent_r d_getpwent_r
14388 eval $inlibc
14389 case "$d_getpwent_r" in
14390 "$define")
14391         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
14392         case "$d_getpwent_r_proto:$usethreads" in
14393         ":define")      d_getpwent_r_proto=define
14394                 set d_getpwent_r_proto getpwent_r $hdrs
14395                 eval $hasproto ;;
14396         *)      ;;
14397         esac
14398         case "$d_getpwent_r_proto" in
14399         define)
14400         case "$getpwent_r_proto" in
14401         ''|0) try='int getpwent_r(struct passwd*, char*, size_t, struct passwd**);'
14402         ./protochk "$extern_C $try" $hdrs && getpwent_r_proto=I_SBWR ;;
14403         esac
14404         case "$getpwent_r_proto" in
14405         ''|0) try='int getpwent_r(struct passwd*, char*, int, struct passwd**);'
14406         ./protochk "$extern_C $try" $hdrs && getpwent_r_proto=I_SBIR ;;
14407         esac
14408         case "$getpwent_r_proto" in
14409         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, size_t);'
14410         ./protochk "$extern_C $try" $hdrs && getpwent_r_proto=S_SBW ;;
14411         esac
14412         case "$getpwent_r_proto" in
14413         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, int);'
14414         ./protochk "$extern_C $try" $hdrs && getpwent_r_proto=S_SBI ;;
14415         esac
14416         case "$getpwent_r_proto" in
14417         ''|0) try='int getpwent_r(struct passwd*, char*, int);'
14418         ./protochk "$extern_C $try" $hdrs && getpwent_r_proto=I_SBI ;;
14419         esac
14420         case "$getpwent_r_proto" in
14421         ''|0) try='int getpwent_r(struct passwd*, char*, int, FILE**);'
14422         ./protochk "$extern_C $try" $hdrs && getpwent_r_proto=I_SBIH ;;
14423         esac
14424         case "$getpwent_r_proto" in
14425         ''|0)   d_getpwent_r=undef
14426                 getpwent_r_proto=0
14427                 echo "Disabling getpwent_r, cannot determine prototype." >&4 ;;
14428         * )     case "$getpwent_r_proto" in
14429                 REENTRANT_PROTO*) ;;
14430                 *) getpwent_r_proto="REENTRANT_PROTO_$getpwent_r_proto" ;;
14431                 esac
14432                 echo "Prototype: $try" ;;
14433         esac
14434         ;;
14435         *)      case "$usethreads" in
14436                 define) echo "getpwent_r has no prototype, not using it." >&4 ;;
14437                 esac
14438                 d_getpwent_r=undef
14439                 getpwent_r_proto=0
14440                 ;;
14441         esac
14442         ;;
14443 *)      getpwent_r_proto=0
14444         ;;
14445 esac
14446
14447 : see if getpwnam_r exists
14448 set getpwnam_r d_getpwnam_r
14449 eval $inlibc
14450 case "$d_getpwnam_r" in
14451 "$define")
14452         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
14453         case "$d_getpwnam_r_proto:$usethreads" in
14454         ":define")      d_getpwnam_r_proto=define
14455                 set d_getpwnam_r_proto getpwnam_r $hdrs
14456                 eval $hasproto ;;
14457         *)      ;;
14458         esac
14459         case "$d_getpwnam_r_proto" in
14460         define)
14461         case "$getpwnam_r_proto" in
14462         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);'
14463         ./protochk "$extern_C $try" $hdrs && getpwnam_r_proto=I_CSBWR ;;
14464         esac
14465         case "$getpwnam_r_proto" in
14466         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int, struct passwd**);'
14467         ./protochk "$extern_C $try" $hdrs && getpwnam_r_proto=I_CSBIR ;;
14468         esac
14469         case "$getpwnam_r_proto" in
14470         ''|0) try='struct passwd* getpwnam_r(const char*, struct passwd*, char*, int);'
14471         ./protochk "$extern_C $try" $hdrs && getpwnam_r_proto=S_CSBI ;;
14472         esac
14473         case "$getpwnam_r_proto" in
14474         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int);'
14475         ./protochk "$extern_C $try" $hdrs && getpwnam_r_proto=I_CSBI ;;
14476         esac
14477         case "$getpwnam_r_proto" in
14478         ''|0)   d_getpwnam_r=undef
14479                 getpwnam_r_proto=0
14480                 echo "Disabling getpwnam_r, cannot determine prototype." >&4 ;;
14481         * )     case "$getpwnam_r_proto" in
14482                 REENTRANT_PROTO*) ;;
14483                 *) getpwnam_r_proto="REENTRANT_PROTO_$getpwnam_r_proto" ;;
14484                 esac
14485                 echo "Prototype: $try" ;;
14486         esac
14487         ;;
14488         *)      case "$usethreads" in
14489                 define) echo "getpwnam_r has no prototype, not using it." >&4 ;;
14490                 esac
14491                 d_getpwnam_r=undef
14492                 getpwnam_r_proto=0
14493                 ;;
14494         esac
14495         ;;
14496 *)      getpwnam_r_proto=0
14497         ;;
14498 esac
14499
14500 : see if getpwuid_r exists
14501 set getpwuid_r d_getpwuid_r
14502 eval $inlibc
14503 case "$d_getpwuid_r" in
14504 "$define")
14505         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
14506         case "$d_getpwuid_r_proto:$usethreads" in
14507         ":define")      d_getpwuid_r_proto=define
14508                 set d_getpwuid_r_proto getpwuid_r $hdrs
14509                 eval $hasproto ;;
14510         *)      ;;
14511         esac
14512         case "$d_getpwuid_r_proto" in
14513         define)
14514         case "$getpwuid_r_proto" in
14515         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**);'
14516         ./protochk "$extern_C $try" $hdrs && getpwuid_r_proto=I_TSBWR ;;
14517         esac
14518         case "$getpwuid_r_proto" in
14519         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int, struct passwd**);'
14520         ./protochk "$extern_C $try" $hdrs && getpwuid_r_proto=I_TSBIR ;;
14521         esac
14522         case "$getpwuid_r_proto" in
14523         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int);'
14524         ./protochk "$extern_C $try" $hdrs && getpwuid_r_proto=I_TSBI ;;
14525         esac
14526         case "$getpwuid_r_proto" in
14527         ''|0) try='struct passwd* getpwuid_r(uid_t, struct passwd*, char*, int);'
14528         ./protochk "$extern_C $try" $hdrs && getpwuid_r_proto=S_TSBI ;;
14529         esac
14530         case "$getpwuid_r_proto" in
14531         ''|0)   d_getpwuid_r=undef
14532                 getpwuid_r_proto=0
14533                 echo "Disabling getpwuid_r, cannot determine prototype." >&4 ;;
14534         * )     case "$getpwuid_r_proto" in
14535                 REENTRANT_PROTO*) ;;
14536                 *) getpwuid_r_proto="REENTRANT_PROTO_$getpwuid_r_proto" ;;
14537                 esac
14538                 echo "Prototype: $try" ;;
14539         esac
14540         ;;
14541         *)      case "$usethreads" in
14542                 define) echo "getpwuid_r has no prototype, not using it." >&4 ;;
14543                 esac
14544                 d_getpwuid_r=undef
14545                 getpwuid_r_proto=0
14546                 ;;
14547         esac
14548         ;;
14549 *)      getpwuid_r_proto=0
14550         ;;
14551 esac
14552
14553 : Optional checks for getsbyname and getsbyport
14554
14555 : see if getservbyname exists
14556 set getservbyname d_getsbyname
14557 eval $inlibc
14558
14559 : see if getservbyport exists
14560 set getservbyport d_getsbyport
14561 eval $inlibc
14562
14563 : see if getservent exists
14564 set getservent d_getsent
14565 eval $inlibc
14566
14567 : see if getservbyname_r exists
14568 set getservbyname_r d_getservbyname_r
14569 eval $inlibc
14570 case "$d_getservbyname_r" in
14571 "$define")
14572         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14573         case "$d_getservbyname_r_proto:$usethreads" in
14574         ":define")      d_getservbyname_r_proto=define
14575                 set d_getservbyname_r_proto getservbyname_r $hdrs
14576                 eval $hasproto ;;
14577         *)      ;;
14578         esac
14579         case "$d_getservbyname_r_proto" in
14580         define)
14581         case "$getservbyname_r_proto" in
14582         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, char*, size_t, struct servent**);'
14583         ./protochk "$extern_C $try" $hdrs && getservbyname_r_proto=I_CCSBWR ;;
14584         esac
14585         case "$getservbyname_r_proto" in
14586         ''|0) try='struct servent* getservbyname_r(const char*, const char*, struct servent*, char*, int);'
14587         ./protochk "$extern_C $try" $hdrs && getservbyname_r_proto=S_CCSBI ;;
14588         esac
14589         case "$getservbyname_r_proto" in
14590         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, struct servent_data*);'
14591         ./protochk "$extern_C $try" $hdrs && getservbyname_r_proto=I_CCSD ;;
14592         esac
14593         case "$getservbyname_r_proto" in
14594         ''|0)   d_getservbyname_r=undef
14595                 getservbyname_r_proto=0
14596                 echo "Disabling getservbyname_r, cannot determine prototype." >&4 ;;
14597         * )     case "$getservbyname_r_proto" in
14598                 REENTRANT_PROTO*) ;;
14599                 *) getservbyname_r_proto="REENTRANT_PROTO_$getservbyname_r_proto" ;;
14600                 esac
14601                 echo "Prototype: $try" ;;
14602         esac
14603         ;;
14604         *)      case "$usethreads" in
14605                 define) echo "getservbyname_r has no prototype, not using it." >&4 ;;
14606                 esac
14607                 d_getservbyname_r=undef
14608                 getservbyname_r_proto=0
14609                 ;;
14610         esac
14611         ;;
14612 *)      getservbyname_r_proto=0
14613         ;;
14614 esac
14615
14616 : see if getservbyport_r exists
14617 set getservbyport_r d_getservbyport_r
14618 eval $inlibc
14619 case "$d_getservbyport_r" in
14620 "$define")
14621         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14622         case "$d_getservbyport_r_proto:$usethreads" in
14623         ":define")      d_getservbyport_r_proto=define
14624                 set d_getservbyport_r_proto getservbyport_r $hdrs
14625                 eval $hasproto ;;
14626         *)      ;;
14627         esac
14628         case "$d_getservbyport_r_proto" in
14629         define)
14630         case "$getservbyport_r_proto" in
14631         ''|0) try='int getservbyport_r(int, const char*, struct servent*, char*, size_t, struct servent**);'
14632         ./protochk "$extern_C $try" $hdrs && getservbyport_r_proto=I_ICSBWR ;;
14633         esac
14634         case "$getservbyport_r_proto" in
14635         ''|0) try='struct servent* getservbyport_r(int, const char*, struct servent*, char*, int);'
14636         ./protochk "$extern_C $try" $hdrs && getservbyport_r_proto=S_ICSBI ;;
14637         esac
14638         case "$getservbyport_r_proto" in
14639         ''|0) try='int getservbyport_r(int, const char*, struct servent*, struct servent_data*);'
14640         ./protochk "$extern_C $try" $hdrs && getservbyport_r_proto=I_ICSD ;;
14641         esac
14642         case "$getservbyport_r_proto" in
14643         ''|0)   d_getservbyport_r=undef
14644                 getservbyport_r_proto=0
14645                 echo "Disabling getservbyport_r, cannot determine prototype." >&4 ;;
14646         * )     case "$getservbyport_r_proto" in
14647                 REENTRANT_PROTO*) ;;
14648                 *) getservbyport_r_proto="REENTRANT_PROTO_$getservbyport_r_proto" ;;
14649                 esac
14650                 echo "Prototype: $try" ;;
14651         esac
14652         ;;
14653         *)      case "$usethreads" in
14654                 define) echo "getservbyport_r has no prototype, not using it." >&4 ;;
14655                 esac
14656                 d_getservbyport_r=undef
14657                 getservbyport_r_proto=0
14658                 ;;
14659         esac
14660         ;;
14661 *)      getservbyport_r_proto=0
14662         ;;
14663 esac
14664
14665 : see if getservent_r exists
14666 set getservent_r d_getservent_r
14667 eval $inlibc
14668 case "$d_getservent_r" in
14669 "$define")
14670         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14671         case "$d_getservent_r_proto:$usethreads" in
14672         ":define")      d_getservent_r_proto=define
14673                 set d_getservent_r_proto getservent_r $hdrs
14674                 eval $hasproto ;;
14675         *)      ;;
14676         esac
14677         case "$d_getservent_r_proto" in
14678         define)
14679         case "$getservent_r_proto" in
14680         ''|0) try='int getservent_r(struct servent*, char*, size_t, struct servent**);'
14681         ./protochk "$extern_C $try" $hdrs && getservent_r_proto=I_SBWR ;;
14682         esac
14683         case "$getservent_r_proto" in
14684         ''|0) try='int getservent_r(struct servent*, char*, int);'
14685         ./protochk "$extern_C $try" $hdrs && getservent_r_proto=I_SBI ;;
14686         esac
14687         case "$getservent_r_proto" in
14688         ''|0) try='struct servent* getservent_r(struct servent*, char*, int);'
14689         ./protochk "$extern_C $try" $hdrs && getservent_r_proto=S_SBI ;;
14690         esac
14691         case "$getservent_r_proto" in
14692         ''|0) try='int getservent_r(struct servent*, struct servent_data*);'
14693         ./protochk "$extern_C $try" $hdrs && getservent_r_proto=I_SD ;;
14694         esac
14695         case "$getservent_r_proto" in
14696         ''|0)   d_getservent_r=undef
14697                 getservent_r_proto=0
14698                 echo "Disabling getservent_r, cannot determine prototype." >&4 ;;
14699         * )     case "$getservent_r_proto" in
14700                 REENTRANT_PROTO*) ;;
14701                 *) getservent_r_proto="REENTRANT_PROTO_$getservent_r_proto" ;;
14702                 esac
14703                 echo "Prototype: $try" ;;
14704         esac
14705         ;;
14706         *)      case "$usethreads" in
14707                 define) echo "getservent_r has no prototype, not using it." >&4 ;;
14708                 esac
14709                 d_getservent_r=undef
14710                 getservent_r_proto=0
14711                 ;;
14712         esac
14713         ;;
14714 *)      getservent_r_proto=0
14715         ;;
14716 esac
14717
14718 : see if prototypes for various getservxxx netdb.h functions are available
14719 echo " "
14720 set d_getservprotos getservent $i_netdb netdb.h
14721 eval $hasproto
14722
14723 : see if getspnam exists
14724 set getspnam d_getspnam
14725 eval $inlibc
14726
14727 : see if this is a shadow.h system
14728 set shadow.h i_shadow
14729 eval $inhdr
14730
14731 : see if getspnam_r exists
14732 set getspnam_r d_getspnam_r
14733 eval $inlibc
14734 case "$d_getspnam_r" in
14735 "$define")
14736         hdrs="$i_systypes sys/types.h define stdio.h $i_shadow shadow.h"
14737         case "$d_getspnam_r_proto:$usethreads" in
14738         ":define")      d_getspnam_r_proto=define
14739                 set d_getspnam_r_proto getspnam_r $hdrs
14740                 eval $hasproto ;;
14741         *)      ;;
14742         esac
14743         case "$d_getspnam_r_proto" in
14744         define)
14745         case "$getspnam_r_proto" in
14746         ''|0) try='int getspnam_r(const char*, struct spwd*, char*, size_t, struct spwd**);'
14747         ./protochk "$extern_C $try" $hdrs && getspnam_r_proto=I_CSBWR ;;
14748         esac
14749         case "$getspnam_r_proto" in
14750         ''|0) try='struct spwd* getspnam_r(const char*, struct spwd*, char*, int);'
14751         ./protochk "$extern_C $try" $hdrs && getspnam_r_proto=S_CSBI ;;
14752         esac
14753         case "$getspnam_r_proto" in
14754         ''|0)   d_getspnam_r=undef
14755                 getspnam_r_proto=0
14756                 echo "Disabling getspnam_r, cannot determine prototype." >&4 ;;
14757         * )     case "$getspnam_r_proto" in
14758                 REENTRANT_PROTO*) ;;
14759                 *) getspnam_r_proto="REENTRANT_PROTO_$getspnam_r_proto" ;;
14760                 esac
14761                 echo "Prototype: $try" ;;
14762         esac
14763         ;;
14764         *)      case "$usethreads" in
14765                 define) echo "getspnam_r has no prototype, not using it." >&4 ;;
14766                 esac
14767                 d_getspnam_r=undef
14768                 getspnam_r_proto=0
14769                 ;;
14770         esac
14771         ;;
14772 *)      getspnam_r_proto=0
14773         ;;
14774 esac
14775
14776 : see if gettimeofday or ftime exists
14777 set gettimeofday d_gettimeod
14778 eval $inlibc
14779 case "$d_gettimeod" in
14780 "$undef")
14781         set ftime d_ftime 
14782         eval $inlibc
14783         ;;
14784 *)
14785         val="$undef"; set d_ftime; eval $setvar
14786         ;;
14787 esac
14788 case "$d_gettimeod$d_ftime" in
14789 "$undef$undef")
14790         echo " "
14791         echo 'No ftime() nor gettimeofday() -- timing may be less accurate.' >&4
14792         ;;
14793 esac
14794
14795 : see if gmtime_r exists
14796 set gmtime_r d_gmtime_r
14797 eval $inlibc
14798 case "$d_gmtime_r" in
14799 "$define")
14800         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
14801         case "$d_gmtime_r_proto:$usethreads" in
14802         ":define")      d_gmtime_r_proto=define
14803                 set d_gmtime_r_proto gmtime_r $hdrs
14804                 eval $hasproto ;;
14805         *)      ;;
14806         esac
14807         case "$d_gmtime_r_proto" in
14808         define)
14809         case "$gmtime_r_proto" in
14810         ''|0) try='struct tm* gmtime_r(const time_t*, struct tm*);'
14811         ./protochk "$extern_C $try" $hdrs && gmtime_r_proto=S_TS ;;
14812         esac
14813         case "$gmtime_r_proto" in
14814         ''|0) try='int gmtime_r(const time_t*, struct tm*);'
14815         ./protochk "$extern_C $try" $hdrs && gmtime_r_proto=I_TS ;;
14816         esac
14817         case "$gmtime_r_proto" in
14818         ''|0)   d_gmtime_r=undef
14819                 gmtime_r_proto=0
14820                 echo "Disabling gmtime_r, cannot determine prototype." >&4 ;;
14821         * )     case "$gmtime_r_proto" in
14822                 REENTRANT_PROTO*) ;;
14823                 *) gmtime_r_proto="REENTRANT_PROTO_$gmtime_r_proto" ;;
14824                 esac
14825                 echo "Prototype: $try" ;;
14826         esac
14827         ;;
14828         *)      case "$usethreads" in
14829                 define) echo "gmtime_r has no prototype, not using it." >&4 ;;
14830                 esac
14831                 d_gmtime_r=undef
14832                 gmtime_r_proto=0
14833                 ;;
14834         esac
14835         ;;
14836 *)      gmtime_r_proto=0
14837         ;;
14838 esac
14839
14840 : see if hasmntopt exists
14841 set hasmntopt d_hasmntopt
14842 eval $inlibc
14843
14844 : see if this is a netinet/in.h or sys/in.h system
14845 set netinet/in.h i_niin sys/in.h i_sysin
14846 eval $inhdr
14847
14848 : see if arpa/inet.h has to be included
14849 set arpa/inet.h i_arpainet
14850 eval $inhdr
14851
14852 : see if htonl --and friends-- exists
14853 val=''
14854 set htonl val
14855 eval $inlibc
14856
14857 : Maybe they are macros.
14858 case "$val" in
14859 $undef)
14860         $cat >htonl.c <<EOM
14861 #include <stdio.h>
14862 #include <sys/types.h>
14863 #$i_niin I_NETINET_IN
14864 #$i_sysin I_SYS_IN
14865 #$i_arpainet I_ARPA_INET
14866 #ifdef I_NETINET_IN
14867 #include <netinet/in.h>
14868 #endif
14869 #ifdef I_SYS_IN
14870 #include <sys/in.h>
14871 #endif
14872 #ifdef I_ARPA_INET
14873 #include <arpa/inet.h>
14874 #endif
14875 #ifdef htonl
14876 printf("Defined as a macro.");
14877 #endif
14878 EOM
14879         $cppstdin $cppflags $cppminus < htonl.c >htonl.E 2>/dev/null
14880         if $contains 'Defined as a macro' htonl.E >/dev/null 2>&1; then
14881                 val="$define"
14882                 echo "But it seems to be defined as a macro." >&4
14883         fi
14884         $rm -f htonl.?
14885         ;;
14886 esac
14887 set d_htonl
14888 eval $setvar
14889
14890 : see if ilogbl exists
14891 set ilogbl d_ilogbl
14892 eval $inlibc
14893
14894 : index or strchr
14895 echo " "
14896 if set index val -f; eval $csym; $val; then
14897         if set strchr val -f d_strchr; eval $csym; $val; then
14898                 if $contains strchr "$strings" >/dev/null 2>&1 ; then
14899                         val="$define"
14900                         vali="$undef"
14901                         echo "strchr() found." >&4
14902                 else
14903                         val="$undef"
14904                         vali="$define"
14905                         echo "index() found." >&4
14906                 fi
14907         else
14908                 val="$undef"
14909                 vali="$define"
14910                 echo "index() found." >&4
14911         fi
14912 else
14913         if set strchr val -f d_strchr; eval $csym; $val; then
14914                 val="$define"
14915                 vali="$undef"
14916                 echo "strchr() found." >&4
14917         else
14918                 echo "No index() or strchr() found!" >&4
14919                 val="$undef"
14920                 vali="$undef"
14921         fi
14922 fi
14923 set d_strchr; eval $setvar
14924 val="$vali"
14925 set d_index; eval $setvar
14926
14927 : check whether inet_aton exists
14928 set inet_aton d_inetaton
14929 eval $inlibc
14930
14931 : see if inet_ntop exists
14932 set inet_ntop d_inetntop
14933 eval $inlibc
14934
14935 : see if inet_pton exists
14936 set inet_pton d_inetpton
14937 eval $inlibc
14938
14939 : Look for isascii
14940 echo " "
14941 $cat >isascii.c <<EOCP
14942 #include <stdio.h>
14943 #include <ctype.h>
14944 #$i_stdlib I_STDLIB
14945 #ifdef I_STDLIB
14946 #include <stdlib.h>
14947 #endif
14948 int main() {
14949         int c = 'A';
14950         if (isascii(c))
14951                 exit(0);
14952         else
14953                 exit(1);
14954 }
14955 EOCP
14956 set isascii
14957 if eval $compile; then
14958         echo "isascii() found." >&4
14959         val="$define"
14960 else
14961         echo "isascii() NOT found." >&4
14962         val="$undef"
14963 fi
14964 set d_isascii
14965 eval $setvar
14966 $rm -f isascii*
14967
14968 : see if isfinite exists
14969 set isfinite d_isfinite
14970 eval $inlibc
14971
14972 : see if isinf exists
14973 set isinf d_isinf
14974 eval $inlibc
14975
14976 : see if isnan exists
14977 set isnan d_isnan
14978 eval $inlibc
14979
14980 : see if isnanl exists
14981 set isnanl d_isnanl
14982 eval $inlibc
14983
14984 : see if killpg exists
14985 set killpg d_killpg
14986 eval $inlibc
14987
14988 : see if lchown exists
14989 echo " "
14990 $cat > try.c <<'EOCP'
14991 /* System header to define __stub macros and hopefully few prototypes,
14992     which can conflict with char lchown(); below.  */
14993 #include <assert.h>
14994 /* Override any gcc2 internal prototype to avoid an error.  */
14995 /* We use char because int might match the return type of a gcc2
14996    builtin and then its argument prototype would still apply.  */
14997 char lchown();
14998 int main() {
14999     /*  The GNU C library defines this for functions which it implements
15000         to always fail with ENOSYS.  Some functions are actually named
15001         something starting with __ and the normal name is an alias.  */
15002 #if defined (__stub_lchown) || defined (__stub___lchown)
15003 choke me
15004 #else
15005 lchown();
15006 #endif
15007 ; return 0; }
15008 EOCP
15009 set try
15010 if eval $compile; then
15011     $echo "lchown() found." >&4
15012     val="$define"
15013 else
15014     $echo "lchown() NOT found." >&4
15015     val="$undef"
15016 fi
15017 set d_lchown
15018 eval $setvar
15019
15020 : See if number of significant digits in a double precision number is known
15021 echo " "
15022 $cat >ldbl_dig.c <<EOM
15023 #$i_limits I_LIMITS
15024 #$i_float I_FLOAT
15025 #ifdef I_LIMITS
15026 #include <limits.h>
15027 #endif
15028 #ifdef I_FLOAT
15029 #include <float.h>
15030 #endif
15031 #ifdef LDBL_DIG
15032 printf("Contains LDBL_DIG");
15033 #endif
15034 EOM
15035 $cppstdin $cppflags $cppminus < ldbl_dig.c >ldbl_dig.E 2>/dev/null
15036 if $contains 'LDBL_DIG' ldbl_dig.E >/dev/null 2>&1; then
15037         echo "LDBL_DIG found." >&4
15038         val="$define"
15039 else
15040         echo "LDBL_DIG NOT found." >&4
15041         val="$undef"
15042 fi
15043 $rm -f ldbl_dig.?
15044 set d_ldbl_dig
15045 eval $setvar
15046
15047 : see if this is a math.h system
15048 set math.h i_math
15049 eval $inhdr
15050
15051 : check to see if math.h defines _LIB_VERSION
15052 d_libm_lib_version="$undef"
15053 case $i_math in
15054     $define)
15055         echo " "
15056         echo "Checking to see if your libm supports _LIB_VERSION..." >&4
15057         $cat >try.c <<EOCP
15058 #include <unistd.h>
15059 #include <math.h>
15060 int main (int argc, char *argv[])
15061 {
15062     printf ("%d\n", _LIB_VERSION);
15063     return (0);
15064     } /* main */
15065 EOCP
15066         set try
15067         if eval $compile; then
15068             foo=`$run ./try`
15069             echo "Yes, it does ($foo)" >&4
15070             d_libm_lib_version="$define"
15071         else
15072             echo "No, it does not (probably harmless)" >&4
15073             fi
15074         $rm_try
15075         ;;
15076
15077     esac
15078
15079 : see if link exists
15080 set link d_link
15081 eval $inlibc
15082
15083 : see if localtime_r exists
15084 set localtime_r d_localtime_r
15085 eval $inlibc
15086 case "$d_localtime_r" in
15087 "$define")
15088         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
15089         case "$d_localtime_r_proto:$usethreads" in
15090         ":define")      d_localtime_r_proto=define
15091                 set d_localtime_r_proto localtime_r $hdrs
15092                 eval $hasproto ;;
15093         *)      ;;
15094         esac
15095         case "$d_localtime_r_proto" in
15096         define)
15097         case "$localtime_r_proto" in
15098         ''|0) try='struct tm* localtime_r(const time_t*, struct tm*);'
15099         ./protochk "$extern_C $try" $hdrs && localtime_r_proto=S_TS ;;
15100         esac
15101         case "$localtime_r_proto" in
15102         ''|0) try='int localtime_r(const time_t*, struct tm*);'
15103         ./protochk "$extern_C $try" $hdrs && localtime_r_proto=I_TS ;;
15104         esac
15105         case "$localtime_r_proto" in
15106         ''|0)   d_localtime_r=undef
15107                 localtime_r_proto=0
15108                 echo "Disabling localtime_r, cannot determine prototype." >&4 ;;
15109         * )     case "$localtime_r_proto" in
15110                 REENTRANT_PROTO*) ;;
15111                 *) localtime_r_proto="REENTRANT_PROTO_$localtime_r_proto" ;;
15112                 esac
15113                 echo "Prototype: $try" ;;
15114         esac
15115         ;;
15116         *)      case "$usethreads" in
15117                 define) echo "localtime_r has no prototype, not using it." >&4 ;;
15118                 esac
15119                 d_localtime_r=undef
15120                 localtime_r_proto=0
15121                 ;;
15122         esac
15123         ;;
15124 *)      localtime_r_proto=0
15125         ;;
15126 esac
15127
15128 : see if localtime_r calls tzset
15129 case "$localtime_r_proto" in
15130 REENTRANT_PROTO*)
15131         $cat >try.c <<EOCP
15132 /*  Does our libc's localtime_r call tzset ?
15133  *  return 0 if so, 1 otherwise.
15134  */
15135 #$i_systypes    I_SYS_TYPES
15136 #$i_unistd      I_UNISTD
15137 #$i_time        I_TIME
15138 #$i_stdlib      I_STDLIB
15139 #$i_string      I_STRING
15140 #$i_malloc      I_MALLOC
15141 #ifdef I_SYS_TYPES
15142 #  include <sys/types.h>
15143 #endif
15144 #ifdef I_UNISTD
15145 #  include <unistd.h>
15146 #endif
15147 #ifdef I_TIME
15148 #  include <time.h>
15149 #endif
15150 #ifdef I_STDLIB
15151 #include <stdlib.h>
15152 #endif
15153 #ifdef I_STRING
15154 #  include <string.h>
15155 #else
15156 #  include <strings.h>
15157 #endif
15158 #ifdef I_MALLOC
15159 #  include <malloc.h>
15160 #endif
15161 int main()
15162 {
15163     time_t t = time(0L);
15164     char w_tz[]="TZ" "=GMT+5",
15165          e_tz[]="TZ" "=GMT-5",
15166         *tz_e = (char*)malloc(16),
15167         *tz_w = (char*)malloc(16);
15168     struct tm tm_e, tm_w;
15169     memset(&tm_e,'\0',sizeof(struct tm));
15170     memset(&tm_w,'\0',sizeof(struct tm));
15171     strcpy(tz_e,e_tz);
15172     strcpy(tz_w,w_tz);
15173
15174     putenv(tz_e);
15175     localtime_r(&t, &tm_e);
15176
15177     putenv(tz_w);
15178     localtime_r(&t, &tm_w);
15179
15180     if( memcmp(&tm_e, &tm_w, sizeof(struct tm)) == 0 )
15181         return 1;
15182     return 0;
15183 }
15184 EOCP
15185         set try
15186         if eval $compile; then
15187             if $run ./try; then
15188                 d_localtime_r_needs_tzset=undef;
15189             else
15190                 d_localtime_r_needs_tzset=define;
15191             fi;
15192         else
15193             d_localtime_r_needs_tzset=undef;
15194         fi;
15195      ;;
15196   *)
15197      d_localtime_r_needs_tzset=undef;
15198      ;;
15199 esac
15200 $rm_try
15201
15202 : see if localeconv exists
15203 set localeconv d_locconv
15204 eval $inlibc
15205
15206 : see if lockf exists
15207 set lockf d_lockf
15208 eval $inlibc
15209
15210 : see if prototype for lseek is available
15211 echo " "
15212 set d_lseekproto lseek $i_systypes sys/types.h $i_unistd unistd.h
15213 eval $hasproto
15214
15215 : see if lstat exists
15216 set lstat d_lstat
15217 eval $inlibc
15218
15219 : see if madvise exists
15220 set madvise d_madvise
15221 eval $inlibc
15222
15223 : see if malloc_size exists
15224 set malloc_size d_malloc_size
15225 eval $inlibc
15226
15227 : see if malloc_size_good exists
15228 set malloc_good_size d_malloc_good_size
15229 eval $inlibc
15230
15231 : see if mblen exists
15232 set mblen d_mblen
15233 eval $inlibc
15234
15235 : see if mbstowcs exists
15236 set mbstowcs d_mbstowcs
15237 eval $inlibc
15238
15239 : see if mbtowc exists
15240 set mbtowc d_mbtowc
15241 eval $inlibc
15242
15243 : see if memchr exists
15244 set memchr d_memchr
15245 eval $inlibc
15246
15247 : see if memcmp exists
15248 set memcmp d_memcmp
15249 eval $inlibc
15250
15251 : see if memcpy exists
15252 set memcpy d_memcpy
15253 eval $inlibc
15254
15255 : see if memmove exists
15256 set memmove d_memmove
15257 eval $inlibc
15258
15259 : see if memset exists
15260 set memset d_memset
15261 eval $inlibc
15262
15263 : see if mkdir exists
15264 set mkdir d_mkdir
15265 eval $inlibc
15266
15267 : see if mkdtemp exists
15268 set mkdtemp d_mkdtemp
15269 eval $inlibc
15270
15271 : see if mkfifo exists
15272 set mkfifo d_mkfifo
15273 eval $inlibc
15274
15275 : see if mkstemp exists
15276 set mkstemp d_mkstemp
15277 eval $inlibc
15278
15279 : see if mkstemps exists
15280 set mkstemps d_mkstemps
15281 eval $inlibc
15282
15283 : see if mktime exists
15284 set mktime d_mktime
15285 eval $inlibc
15286
15287 : see if this is a sys/mman.h system
15288 set sys/mman.h i_sysmman
15289 eval $inhdr
15290
15291 : see if mmap exists
15292 set mmap d_mmap
15293 eval $inlibc
15294 : see what shmat returns
15295 : default to something harmless
15296 mmaptype='void *'
15297 case "$i_sysmman$d_mmap" in
15298 "$define$define")
15299         $cat >mmap.c <<'END'
15300 #include <sys/mman.h>
15301 void *mmap();
15302 END
15303         if $cc $ccflags -c mmap.c >/dev/null 2>&1; then
15304                 mmaptype='void *'
15305         else
15306                 mmaptype='caddr_t'
15307         fi
15308         echo "and it returns ($mmaptype)." >&4
15309         ;;
15310 esac
15311
15312
15313
15314 : see if sqrtl exists
15315 set sqrtl d_sqrtl
15316 eval $inlibc
15317
15318 : see if scalbnl exists
15319 set scalbnl d_scalbnl
15320 eval $inlibc
15321
15322 : see if modfl exists
15323 set modfl d_modfl
15324 eval $inlibc
15325
15326 : see if prototype for modfl is available
15327 echo " "
15328 set d_modflproto modfl $i_math math.h
15329 eval $hasproto
15330
15331 d_modfl_pow32_bug="$undef"
15332
15333 case "$d_longdbl$d_modfl" in
15334 $define$define)
15335         $cat <<EOM
15336 Checking to see whether your modfl() is okay for large values...
15337 EOM
15338 $cat >try.c <<EOCP
15339 #include <math.h>
15340 #include <stdio.h>
15341 EOCP
15342 if $test "X$d_modflproto" != "X$define"; then
15343         $cat >>try.c <<EOCP
15344 /* Sigh. many current glibcs provide the function, but do not prototype it. */
15345 long double modfl (long double, long double *);
15346 EOCP
15347 fi
15348 $cat >>try.c <<EOCP
15349 int main() {
15350     long double nv = 4294967303.15;
15351     long double v, w;
15352     v = modfl(nv, &w);
15353 #ifdef __GLIBC__
15354     printf("glibc");
15355 #endif
15356     printf(" %"$sPRIfldbl" %"$sPRIfldbl" %"$sPRIfldbl"\n", nv, v, w);
15357     return 0;
15358 }
15359 EOCP
15360         case "$osname:$gccversion" in
15361         aix:)   saveccflags="$ccflags"
15362                 ccflags="$ccflags -qlongdouble" ;; # to avoid core dump
15363         esac
15364         set try
15365         if eval $compile; then
15366                 foo=`$run ./try`
15367                 case "$foo" in
15368                 *" 4294967303.150000 1.150000 4294967302.000000")
15369                         echo >&4 "Your modfl() is broken for large values."
15370                         d_modfl_pow32_bug="$define"
15371                         case "$foo" in
15372                         glibc)  echo >&4 "You should upgrade your glibc to at least 2.2.2 to get a fixed modfl()."
15373                         ;;
15374                         esac
15375                         ;;
15376                 *" 4294967303.150000 0.150000 4294967303.000000")
15377                         echo >&4 "Your modfl() seems okay for large values."
15378                         ;;
15379                 *)      echo >&4 "I don't understand your modfl() at all."
15380                         d_modfl="$undef"
15381                         ;;
15382                 esac
15383                 $rm_try
15384         else
15385                 echo "I cannot figure out whether your modfl() is okay, assuming it isn't."
15386                 d_modfl="$undef"
15387         fi
15388         case "$osname:$gccversion" in
15389         aix:)   ccflags="$saveccflags" ;; # restore
15390         esac
15391         ;;
15392 esac
15393
15394 if $test "$uselongdouble" = "$define"; then
15395     message=""
15396     if $test "$d_sqrtl" != "$define"; then
15397         message="$message sqrtl"
15398     fi
15399     if $test "$d_modfl" != "$define"; then
15400         if $test "$d_aintl:$d_copysignl" = "$define:$define"; then
15401             echo "You have both aintl and copysignl, so I can emulate modfl."
15402         else
15403             message="$message modfl"
15404         fi
15405     fi
15406     if $test "$d_frexpl" != "$define"; then
15407         if $test "$d_ilogbl:$d_scalbnl" = "$define:$define"; then
15408             echo "You have both ilogbl and scalbnl, so I can emulate frexpl."
15409         else
15410             message="$message frexpl"
15411         fi
15412     fi
15413
15414     if $test "$message" != ""; then
15415         $cat <<EOM >&4
15416
15417 *** You requested the use of long doubles but you do not seem to have
15418 *** the following mathematical functions needed for long double support:
15419 ***    $message
15420 *** Please rerun Configure without -Duselongdouble and/or -Dusemorebits.
15421 *** Cannot continue, aborting.
15422
15423 EOM
15424
15425         exit 1
15426     fi
15427 fi
15428
15429 : see if mprotect exists
15430 set mprotect d_mprotect
15431 eval $inlibc
15432
15433 : see if msgctl exists
15434 set msgctl d_msgctl
15435 eval $inlibc
15436
15437 : see if msgget exists
15438 set msgget d_msgget
15439 eval $inlibc
15440
15441 : see if msgsnd exists
15442 set msgsnd d_msgsnd
15443 eval $inlibc
15444
15445 : see if msgrcv exists
15446 set msgrcv d_msgrcv
15447 eval $inlibc
15448
15449 : see how much of the 'msg*(2)' library is present.
15450 h_msg=true
15451 echo " "
15452 case "$d_msgctl$d_msgget$d_msgsnd$d_msgrcv" in
15453 *"$undef"*) h_msg=false;;
15454 esac
15455 case "$osname" in
15456 freebsd)
15457     case "`ipcs 2>&1`" in
15458     "SVID messages"*"not configured"*)
15459         echo "Your $osname does not have the msg*(2) configured." >&4
15460         h_msg=false
15461         val="$undef"
15462         set msgctl d_msgctl
15463         eval $setvar
15464         set msgget d_msgget
15465         eval $setvar
15466         set msgsnd d_msgsnd
15467         eval $setvar
15468         set msgrcv d_msgrcv
15469         eval $setvar
15470         ;;
15471     esac
15472     ;;
15473 esac
15474 : we could also check for sys/ipc.h ...
15475 if $h_msg && $test `./findhdr sys/msg.h`; then
15476         echo "You have the full msg*(2) library." >&4
15477         val="$define"
15478 else
15479         echo "You don't have the full msg*(2) library." >&4
15480         val="$undef"
15481 fi
15482 set d_msg
15483 eval $setvar
15484
15485 : Check for msghdr_s
15486 echo " "
15487 echo "Checking to see if your system supports struct msghdr..." >&4
15488 set d_msghdr_s msghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
15489 eval $hasstruct
15490 case "$d_msghdr_s" in
15491 "$define")      echo "Yes, it does."   ;;
15492 *)              echo "No, it doesn't." ;;
15493 esac
15494
15495
15496 : see if msync exists
15497 set msync d_msync
15498 eval $inlibc
15499
15500 : see if munmap exists
15501 set munmap d_munmap
15502 eval $inlibc
15503
15504 : see if nice exists
15505 set nice d_nice
15506 eval $inlibc
15507
15508 : see if this is a langinfo.h system
15509 set langinfo.h i_langinfo
15510 eval $inhdr
15511
15512 : see if nl_langinfo exists
15513 set nl_langinfo d_nl_langinfo
15514 eval $inlibc
15515
15516 : check for volatile keyword
15517 echo " "
15518 echo 'Checking to see if your C compiler knows about "volatile"...' >&4
15519 $cat >try.c <<'EOCP'
15520 int main()
15521 {
15522         typedef struct _goo_struct goo_struct;
15523         goo_struct * volatile goo = ((goo_struct *)0);
15524         struct _goo_struct {
15525                 long long_int;
15526                 int reg_int;
15527                 char char_var;
15528         };
15529         typedef unsigned short foo_t;
15530         char *volatile foo;
15531         volatile int bar;
15532         volatile foo_t blech;
15533         foo = foo;
15534 }
15535 EOCP
15536 if $cc -c $ccflags try.c >/dev/null 2>&1 ; then
15537         val="$define"
15538         echo "Yup, it does."
15539 else
15540         val="$undef"
15541         echo "Nope, it doesn't."
15542 fi
15543 set d_volatile
15544 eval $setvar
15545 $rm_try
15546
15547 : Check basic sizes
15548 echo " "
15549 $echo "Choosing the C types to be used for Perl's internal types..." >&4
15550
15551 case "$use64bitint:$d_quad:$quadtype" in
15552 define:define:?*)
15553         ivtype="$quadtype"
15554         uvtype="$uquadtype"
15555         ivsize=8
15556         uvsize=8
15557         ;;
15558 *)      ivtype="long"
15559         uvtype="unsigned long"
15560         ivsize=$longsize
15561         uvsize=$longsize
15562         ;;
15563 esac
15564
15565 case "$uselongdouble:$d_longdbl" in
15566 define:define)
15567         nvtype="long double"
15568         nvsize=$longdblsize
15569         ;;
15570 *)      nvtype=double
15571         nvsize=$doublesize
15572         ;;
15573 esac
15574
15575 $echo "(IV will be "$ivtype", $ivsize bytes)"
15576 $echo "(UV will be "$uvtype", $uvsize bytes)"
15577 $echo "(NV will be "$nvtype", $nvsize bytes)"
15578
15579 $cat >try.c <<EOCP
15580 #$i_inttypes I_INTTYPES
15581 #ifdef I_INTTYPES
15582 #include <inttypes.h>
15583 #endif
15584 #include <stdio.h>
15585 int main() {
15586 #ifdef INT8
15587    int8_t i =  INT8_MAX;
15588   uint8_t u = UINT8_MAX;
15589   printf("int8_t\n");
15590 #endif
15591 #ifdef INT16
15592    int16_t i =  INT16_MAX;
15593   uint16_t i = UINT16_MAX;
15594   printf("int16_t\n");
15595 #endif
15596 #ifdef INT32
15597    int32_t i =  INT32_MAX;
15598   uint32_t u = UINT32_MAX;
15599   printf("int32_t\n");
15600 #endif
15601 }
15602 EOCP
15603
15604 i8type="signed char"
15605 u8type="unsigned char"
15606 i8size=1
15607 u8size=1
15608
15609 case "$i16type" in
15610 '')     case "$shortsize" in
15611         2)      i16type=short
15612                 u16type="unsigned short"
15613                 i16size=$shortsize
15614                 u16size=$shortsize
15615                 ;;
15616         esac
15617         ;;
15618 esac
15619 case "$i16type" in
15620 '')     set try -DINT16
15621         if eval $compile; then
15622                 case "`$run ./try`" in
15623                 int16_t)
15624                         i16type=int16_t
15625                         u16type=uint16_t
15626                         i16size=2
15627                         u16size=2
15628                         ;;
15629                 esac
15630         fi
15631         ;;
15632 esac
15633 case "$i16type" in
15634 '')     if $test $shortsize -ge 2; then
15635                 i16type=short
15636                 u16type="unsigned short"
15637                 i16size=$shortsize
15638                 u16size=$shortsize
15639         fi
15640         ;;
15641 esac
15642
15643 case "$i32type" in
15644 '')     case "$longsize" in
15645         4)      i32type=long
15646                 u32type="unsigned long"
15647                 i32size=$longsize
15648                 u32size=$longsize
15649                 ;;
15650         *)      case "$intsize" in
15651                 4)      i32type=int
15652                         u32type="unsigned int"
15653                         i32size=$intsize
15654                         u32size=$intsize
15655                         ;;
15656                 esac
15657                 ;;
15658         esac
15659         ;;
15660 esac
15661 case "$i32type" in
15662 '')     set try -DINT32
15663         if eval $compile; then
15664                 case "`$run ./try`" in
15665                 int32_t)
15666                         i32type=int32_t
15667                         u32type=uint32_t
15668                         i32size=4
15669                         u32size=4
15670                         ;;
15671                 esac
15672         fi
15673         ;;
15674 esac
15675 case "$i32type" in
15676 '')     if $test $intsize -ge 4; then
15677                 i32type=int
15678                 u32type="unsigned int"
15679                 i32size=$intsize
15680                 u32size=$intsize
15681         fi
15682         ;;
15683 esac
15684
15685 case "$i64type" in
15686 '')     case "$d_quad:$quadtype" in
15687         define:?*)
15688                 i64type="$quadtype"
15689                 u64type="$uquadtype"
15690                 i64size=8
15691                 u64size=8
15692                 ;;
15693         esac
15694         ;;
15695 esac
15696
15697 $echo "Checking how many bits of your UVs your NVs can preserve..." >&4
15698 : volatile so that the compiler has to store it out to memory.
15699 if test X"$d_volatile" = X"$define"; then
15700         volatile=volatile
15701 fi
15702 $cat <<EOP >try.c
15703 #include <stdio.h>
15704 #$i_stdlib I_STDLIB
15705 #ifdef I_STDLIB
15706 #include <stdlib.h>
15707 #endif
15708 #include <sys/types.h>
15709 #include <signal.h>
15710 #ifdef SIGFPE
15711 $volatile int bletched = 0;
15712 $signal_t blech(int s) { bletched = 1; }
15713 #endif
15714 int main() {
15715     $uvtype u = 0;
15716     $nvtype d;
15717     int     n = 8 * $uvsize;
15718     int     i;
15719 #ifdef SIGFPE
15720     signal(SIGFPE, blech);
15721 #endif
15722
15723     for (i = 0; i < n; i++) {
15724       u = u << 1 | ($uvtype)1;
15725       d = ($nvtype)u;
15726       if (($uvtype)d != u)
15727         break;
15728       if (d <= 0)
15729         break;
15730       d = ($nvtype)(u - 1);
15731       if (($uvtype)d != (u - 1))
15732         break;
15733 #ifdef SIGFPE
15734       if (bletched)
15735         break;
15736 #endif
15737     }
15738     printf("%d\n", ((i == n) ? -n : i));
15739     exit(0);
15740 }
15741 EOP
15742 set try
15743
15744 d_nv_preserves_uv="$undef"
15745 if eval $compile; then
15746         nv_preserves_uv_bits="`$run ./try`"
15747 fi
15748 case "$nv_preserves_uv_bits" in
15749 \-[1-9]*)
15750         nv_preserves_uv_bits=`expr 0 - $nv_preserves_uv_bits`
15751         $echo "Your NVs can preserve all $nv_preserves_uv_bits bits of your UVs."  2>&1
15752         d_nv_preserves_uv="$define"
15753         ;;
15754 [1-9]*) $echo "Your NVs can preserve only $nv_preserves_uv_bits bits of your UVs."  2>&1
15755         d_nv_preserves_uv="$undef" ;;
15756 *)      $echo "Can't figure out how many bits your NVs preserve." 2>&1
15757         nv_preserves_uv_bits="0" ;;
15758 esac
15759 $rm_try
15760
15761 $echo "Checking to find the largest integer value your NVs can hold..." >&4
15762 : volatile so that the compiler has to store it out to memory.
15763 if test X"$d_volatile" = X"$define"; then
15764         volatile=volatile
15765 fi
15766 $cat <<EOP >try.c
15767 #include <stdio.h>
15768
15769 typedef $nvtype NV;
15770
15771 int
15772 main() {
15773   NV value = 2;
15774   int count = 1;
15775
15776   while(count < 256) {
15777     $volatile NV up = value + 1.0;
15778     $volatile NV negated = -value;
15779     $volatile NV down = negated - 1.0;
15780     $volatile NV got_up = up - value;
15781     int up_good = got_up == 1.0;
15782     int got_down = down - negated;
15783     int down_good = got_down == -1.0;
15784
15785     if (down_good != up_good) {
15786       fprintf(stderr,
15787               "Inconsistency - up %d %f; down %d %f; for 2**%d (%.20f)\n",
15788               up_good, (double) got_up, down_good, (double) got_down,
15789               count, (double) value);
15790       return 1;
15791     }
15792     if (!up_good) {
15793       while (1) {
15794         if (count > 8) {
15795           count -= 8;
15796           fputs("256.0", stdout);
15797         } else {
15798           count--;
15799           fputs("2.0", stdout);
15800         }
15801         if (!count) {
15802           puts("");
15803           return 0;
15804         }
15805         fputs("*", stdout);
15806       }
15807     }
15808     value *= 2;
15809     ++count;
15810   }
15811   fprintf(stderr, "Cannot overflow integer range, even at 2**%d (%.20f)\n",
15812           count, (double) value);
15813   return 1;
15814 }
15815 EOP
15816 set try
15817
15818 nv_overflows_integers_at='0'
15819 if eval $compile; then
15820     xxx="`$run ./try`"
15821     case "$?" in
15822         0)
15823             case "$xxx" in
15824                 2*)  cat >&4 <<EOM
15825 The largest integer your NVs can preserve is equal to $xxx
15826 EOM
15827                     nv_overflows_integers_at="$xxx"
15828                     ;;
15829                 *)  cat >&4 <<EOM
15830 Cannot determine the largest integer value your NVs can hold, unexpected output
15831 '$xxx'
15832 EOM
15833                     ;;
15834             esac
15835             ;;
15836         *)  cat >&4 <<EOM
15837 Cannot determine the largest integer value your NVs can hold
15838 EOM
15839             ;;
15840     esac
15841 fi
15842 $rm_try
15843
15844 $echo "Checking whether NV 0.0 is all bits zero in memory..." >&4
15845 : volatile so that the compiler has to store it out to memory.
15846 if test X"$d_volatile" = X"$define"; then
15847         volatile=volatile
15848 fi
15849 $cat <<EOP >try.c
15850 #include <stdio.h>
15851 #$i_stdlib I_STDLIB
15852 #ifdef I_STDLIB
15853 #include <stdlib.h>
15854 #endif
15855 #$i_string I_STRING
15856 #ifdef I_STRING
15857 #  include <string.h>
15858 #else
15859 #  include <strings.h>
15860 #endif
15861 #include <sys/types.h>
15862 #include <signal.h>
15863 #ifdef SIGFPE
15864 $volatile int bletched = 0;
15865 $signal_t blech(int s) { bletched = 1; }
15866 #endif
15867
15868 int checkit($nvtype d, char *where) {
15869     unsigned char *p = (char *)&d;
15870     unsigned char *end = p + sizeof(d);
15871     int fail = 0;
15872
15873     while (p < end)
15874         fail += *p++;
15875
15876     if (!fail)
15877         return 0;
15878
15879     p = (char *)&d;
15880     printf("No - %s: 0x", where);
15881     while (p < end)
15882         printf ("%02X", *p++);
15883     printf("\n");
15884     return 1;
15885 }
15886
15887 int main(int argc, char **argv) {
15888     $nvtype d = 0.0;
15889     int fail = 0;
15890     fail += checkit(d, "0.0");
15891
15892     /* The compiler shouldn't be assuming that bletched is 0  */
15893     d = bletched;
15894
15895     fail += checkit(d, "bleched");
15896
15897 #ifdef SIGFPE
15898     signal(SIGFPE, blech);
15899 #endif
15900
15901     /* Paranoia - the compiler should have no way of knowing that ANSI says
15902        that argv[argc] will always be NULL.  Actually, if it did assume this it
15903        would be buggy, as this is C and main() can be called from elsewhere in
15904        the program.  */
15905     d = argv[argc] ? 1 : 0;
15906
15907     if (d) {
15908         printf("Odd argv[argc]=%p, d=%g\n", argv[argc], d);
15909     }
15910
15911     fail += checkit(d, "ternary");
15912
15913     memset(&d, sizeof(d), argv[argc] ? 1 : 0);
15914
15915     if (d != 0.0) {
15916         printf("No - memset doesn't give 0.0\n");
15917         /* This might just blow up:  */
15918         printf("(gives %g)\n", d);
15919         return 1;
15920     }
15921
15922 #ifdef SIGFPE
15923     if (bletched) {
15924         printf("No - something bleched\n");
15925         return 1;
15926     }
15927 #endif
15928     if (fail) {
15929       printf("No - %d fail(s)\n", fail);
15930       return 1;
15931     }
15932     printf("Yes\n");
15933     return 0;
15934 }
15935 EOP
15936 set try
15937
15938 d_nv_zero_is_allbits_zero="$undef"
15939 if eval $compile; then
15940     xxx="`$run ./try`"
15941     case "$?" in
15942         0)
15943             case "$xxx" in
15944                 Yes)  cat >&4 <<EOM
15945 0.0 is represented as all bits zero in memory
15946 EOM
15947                     d_nv_zero_is_allbits_zero="$define"
15948                     ;;
15949                 *)  cat >&4 <<EOM
15950 0.0 is not represented as all bits zero in memory
15951 EOM
15952                     d_nv_zero_is_allbits_zero="$undef"
15953                     ;;
15954             esac
15955             ;;
15956         *)  cat >&4 <<EOM
15957 0.0 is not represented as all bits zero in memory
15958 EOM
15959             d_nv_zero_is_allbits_zero="$undef"
15960             ;;
15961     esac
15962 fi
15963 $rm_try
15964
15965 : check for off64_t
15966 echo " "
15967 echo "Checking to see if you have off64_t..." >&4
15968 $cat >try.c <<EOCP
15969 #include <sys/types.h>
15970 #include <unistd.h>
15971 int main() { off64_t x = 7; }
15972 EOCP
15973 set try
15974 if eval $compile; then
15975         val="$define"
15976         echo "You have off64_t."
15977 else
15978         val="$undef"
15979         echo "You do not have off64_t."
15980         case "$lseeksize" in
15981         8) echo "(Your off_t is 64 bits, so you could use that.)" ;;
15982         esac
15983 fi
15984 $rm_try
15985 set d_off64_t
15986 eval $setvar
15987
15988 : how to create joinable pthreads
15989 if test "X$usethreads" = "X$define" -a "X$i_pthread" = "X$define"; then
15990         echo " "
15991         echo "Checking what constant to use for creating joinable pthreads..." >&4
15992         $cat >try.c <<'EOCP'
15993 #include <pthread.h>
15994 int main() {
15995     int detachstate = JOINABLE;
15996 }
15997 EOCP
15998         set try -DJOINABLE=PTHREAD_CREATE_JOINABLE
15999         if eval $compile; then
16000                 echo "You seem to use PTHREAD_CREATE_JOINABLE." >&4
16001                 val="$undef" # Yes, undef.
16002                 set d_old_pthread_create_joinable
16003                 eval $setvar
16004                 val=""
16005                 set old_pthread_create_joinable
16006                 eval $setvar
16007         else
16008                 set try -DJOINABLE=PTHREAD_CREATE_UNDETACHED
16009                 if eval $compile; then
16010                         echo "You seem to use PTHREAD_CREATE_UNDETACHED." >&4
16011                         val="$define"
16012                         set d_old_pthread_create_joinable
16013                         eval $setvar
16014                         val=PTHREAD_CREATE_UNDETACHED
16015                         set old_pthread_create_joinable
16016                         eval $setvar
16017                 else
16018                         set try -DJOINABLE=__UNDETACHED
16019                         if eval $compile; then
16020                                 echo "You seem to use __UNDETACHED." >&4
16021                                 val="$define"
16022                                 set d_old_pthread_create_joinable
16023                                 eval $setvar
16024                                 val=__UNDETACHED
16025                                 set old_pthread_create_joinable
16026                                 eval $setvar
16027                         else
16028                                 echo "Egads, nothing obvious found.  Guessing that you use 0." >&4
16029                                 val="$define"
16030                                 set d_old_pthread_create_joinable
16031                                 eval $setvar
16032                                 val=0
16033                                 set old_pthread_create_joinable
16034                                 eval $setvar
16035                         fi
16036                 fi
16037         fi
16038         $rm_try
16039 else
16040     d_old_pthread_create_joinable="$undef"
16041     old_pthread_create_joinable=""
16042 fi
16043
16044 : see if pause exists
16045 set pause d_pause
16046 eval $inlibc
16047
16048 : see if poll exists
16049 set poll d_poll
16050 eval $inlibc
16051
16052 : see if readlink exists
16053 set readlink d_readlink
16054 eval $inlibc
16055
16056 : Check if exe is symlink to abs path of executing program
16057 echo " "
16058 procselfexe=''
16059 val="$undef"
16060 case "$d_readlink" in
16061 "$define")
16062         if $issymlink /proc/self/exe ; then
16063                 $ls -l /proc/self/exe > reflect
16064                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
16065                         echo "You have Linux-like /proc/self/exe."
16066                         procselfexe='"/proc/self/exe"'
16067                         val="$define"
16068                 fi
16069         fi
16070         if $issymlink /proc/curproc/file ; then
16071                 $ls -l /proc/curproc/file > reflect
16072                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
16073                         echo "You have BSD-like /proc/curproc/file."
16074                         procselfexe='"/proc/curproc/file"'
16075                         val="$define"
16076                 fi
16077         fi
16078         ;;
16079 esac
16080 $rm -f reflect
16081 set d_procselfexe
16082 eval $setvar
16083
16084 : backward compatibility for d_hvfork
16085 if test X$d_hvfork != X; then
16086         d_vfork="$d_hvfork"
16087         d_hvfork=''
16088 fi
16089 : see if there is a vfork
16090 val=''
16091 set vfork val
16092 eval $inlibc
16093
16094 d_pseudofork=$undef
16095
16096 : Ok, but do we want to use it. vfork is reportedly unreliable in
16097 : perl on Solaris 2.x, and probably elsewhere.
16098 case "$val" in
16099 $define)
16100         echo " "
16101         case "$usevfork" in
16102         false) dflt='n';;
16103         *) dflt='y';;
16104         esac
16105         cat <<'EOM'
16106
16107 Perl can only use a vfork() that doesn't suffer from strict
16108 restrictions on calling functions or modifying global data in
16109 the child.  For example, glibc-2.1 contains such a vfork()
16110 that is unsuitable.  If your system provides a proper fork()
16111 call, chances are that you do NOT want perl to use vfork().
16112
16113 EOM
16114         rp="Do you still want to use vfork()?"
16115         . ./myread
16116         case "$ans" in
16117         y|Y) ;;
16118         *)
16119                 echo "Ok, we won't use vfork()."
16120                 val="$undef"
16121                 ;;
16122         esac
16123         ;;
16124 esac
16125 set d_vfork
16126 eval $setvar
16127 case "$d_vfork" in
16128 $define) usevfork='true';;
16129 *) usevfork='false';;
16130 esac
16131
16132 : see whether the pthread_atfork exists
16133 $cat >try.c <<EOP
16134 #include <pthread.h>
16135 #include <stdio.h>
16136 int main() {
16137 #ifdef  PTHREAD_ATFORK
16138         pthread_atfork(NULL,NULL,NULL);
16139 #endif
16140 }
16141 EOP
16142
16143 : see if pthread_atfork exists
16144 set try -DPTHREAD_ATFORK
16145 if eval $compile; then
16146     val="$define"
16147 else
16148     val="$undef"
16149 fi
16150 case "$usethreads" in
16151 $define)
16152         case "$val" in
16153         $define) echo 'pthread_atfork found.' >&4        ;;
16154         *)       echo 'pthread_atfork NOT found.' >&4    ;;
16155         esac
16156 esac
16157 set d_pthread_atfork
16158 eval $setvar
16159
16160 : see if pthread_attr_setscope exists
16161 set pthread_attr_setscope d_pthread_attr_setscope
16162 eval $inlibc
16163
16164 : see whether the various POSIXish _yields exist
16165 $cat >try.c <<EOP
16166 #include <pthread.h>
16167 #include <stdio.h>
16168 int main() {
16169 #ifdef SCHED_YIELD
16170         sched_yield();
16171 #else
16172 #ifdef PTHREAD_YIELD
16173         pthread_yield();
16174 #else
16175 #ifdef PTHREAD_YIELD_NULL
16176         pthread_yield(NULL);
16177 #endif
16178 #endif
16179 #endif
16180 }
16181 EOP
16182 : see if sched_yield exists
16183 set try -DSCHED_YIELD
16184 if eval $compile; then
16185     val="$define"
16186     sched_yield='sched_yield()'
16187 else
16188     val="$undef"
16189 fi
16190 case "$usethreads" in
16191 $define)
16192         case "$val" in
16193         $define) echo 'sched_yield() found.' >&4        ;;
16194         *)       echo 'sched_yield() NOT found.' >&4    ;;
16195         esac
16196 esac
16197 set d_sched_yield
16198 eval $setvar
16199
16200 : see if pthread_yield exists
16201 set try -DPTHREAD_YIELD
16202 if eval $compile; then
16203     val="$define"
16204     case "$sched_yield" in
16205     '') sched_yield='pthread_yield()' ;;
16206     esac
16207 else
16208     set try -DPTHREAD_YIELD_NULL
16209     if eval $compile; then
16210         val="$define"
16211         case "$sched_yield" in
16212         '') sched_yield='pthread_yield(NULL)' ;;
16213         esac
16214     else
16215         val="$undef"
16216     fi
16217 fi
16218 case "$usethreads" in
16219 $define)
16220         case "$val" in
16221         $define) echo 'pthread_yield() found.' >&4      ;;
16222         *)       echo 'pthread_yield() NOT found.' >&4  ;;
16223         esac
16224         ;;
16225 esac
16226 set d_pthread_yield
16227 eval $setvar
16228 case "$sched_yield" in
16229 '') sched_yield=undef ;;
16230 esac
16231 $rm_try
16232
16233 : see if random_r exists
16234 set random_r d_random_r
16235 eval $inlibc
16236 case "$d_random_r" in
16237 "$define")
16238         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
16239         case "$d_random_r_proto:$usethreads" in
16240         ":define")      d_random_r_proto=define
16241                 set d_random_r_proto random_r $hdrs
16242                 eval $hasproto ;;
16243         *)      ;;
16244         esac
16245         case "$d_random_r_proto" in
16246         define)
16247         case "$random_r_proto" in
16248         ''|0) try='int random_r(int*, struct random_data*);'
16249         ./protochk "$extern_C $try" $hdrs && random_r_proto=I_iS ;;
16250         esac
16251         case "$random_r_proto" in
16252         ''|0) try='int random_r(long*, struct random_data*);'
16253         ./protochk "$extern_C $try" $hdrs && random_r_proto=I_lS ;;
16254         esac
16255         case "$random_r_proto" in
16256         ''|0) try='int random_r(struct random_data*, int32_t*);'
16257         ./protochk "$extern_C $try" $hdrs && random_r_proto=I_St ;;
16258         esac
16259         case "$random_r_proto" in
16260         ''|0)   d_random_r=undef
16261                 random_r_proto=0
16262                 echo "Disabling random_r, cannot determine prototype." >&4 ;;
16263         * )     case "$random_r_proto" in
16264                 REENTRANT_PROTO*) ;;
16265                 *) random_r_proto="REENTRANT_PROTO_$random_r_proto" ;;
16266                 esac
16267                 echo "Prototype: $try" ;;
16268         esac
16269         ;;
16270         *)      case "$usethreads" in
16271                 define) echo "random_r has no prototype, not using it." >&4 ;;
16272                 esac
16273                 d_random_r=undef
16274                 random_r_proto=0
16275                 ;;
16276         esac
16277         ;;
16278 *)      random_r_proto=0
16279         ;;
16280 esac
16281
16282 : see if readdir and friends exist
16283 set readdir d_readdir
16284 eval $inlibc
16285 set seekdir d_seekdir
16286 eval $inlibc
16287 set telldir d_telldir
16288 eval $inlibc
16289 set rewinddir d_rewinddir
16290 eval $inlibc
16291
16292 : see if readdir64_r exists
16293 set readdir64_r d_readdir64_r
16294 eval $inlibc
16295 case "$d_readdir64_r" in
16296 "$define")
16297         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
16298         case "$d_readdir64_r_proto:$usethreads" in
16299         ":define")      d_readdir64_r_proto=define
16300                 set d_readdir64_r_proto readdir64_r $hdrs
16301                 eval $hasproto ;;
16302         *)      ;;
16303         esac
16304         case "$d_readdir64_r_proto" in
16305         define)
16306         case "$readdir64_r_proto" in
16307         ''|0) try='int readdir64_r(DIR*, struct dirent64*, struct dirent64**);'
16308         ./protochk "$extern_C $try" $hdrs && readdir64_r_proto=I_TSR ;;
16309         esac
16310         case "$readdir64_r_proto" in
16311         ''|0) try='int readdir64_r(DIR*, struct dirent64*);'
16312         ./protochk "$extern_C $try" $hdrs && readdir64_r_proto=I_TS ;;
16313         esac
16314         case "$readdir64_r_proto" in
16315         ''|0)   d_readdir64_r=undef
16316                 readdir64_r_proto=0
16317                 echo "Disabling readdir64_r, cannot determine prototype." >&4 ;;
16318         * )     case "$readdir64_r_proto" in
16319                 REENTRANT_PROTO*) ;;
16320                 *) readdir64_r_proto="REENTRANT_PROTO_$readdir64_r_proto" ;;
16321                 esac
16322                 echo "Prototype: $try" ;;
16323         esac
16324         ;;
16325         *)      case "$usethreads" in
16326                 define) echo "readdir64_r has no prototype, not using it." >&4 ;;
16327                 esac
16328                 d_readdir64_r=undef
16329                 readdir64_r_proto=0
16330                 ;;
16331         esac
16332         ;;
16333 *)      readdir64_r_proto=0
16334         ;;
16335 esac
16336
16337 : see if readdir_r exists
16338 set readdir_r d_readdir_r
16339 eval $inlibc
16340 case "$d_readdir_r" in
16341 "$define")
16342         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
16343         case "$d_readdir_r_proto:$usethreads" in
16344         ":define")      d_readdir_r_proto=define
16345                 set d_readdir_r_proto readdir_r $hdrs
16346                 eval $hasproto ;;
16347         *)      ;;
16348         esac
16349         case "$d_readdir_r_proto" in
16350         define)
16351         case "$readdir_r_proto" in
16352         ''|0) try='int readdir_r(DIR*, struct dirent*, struct dirent**);'
16353         ./protochk "$extern_C $try" $hdrs && readdir_r_proto=I_TSR ;;
16354         esac
16355         case "$readdir_r_proto" in
16356         ''|0) try='int readdir_r(DIR*, struct dirent*);'
16357         ./protochk "$extern_C $try" $hdrs && readdir_r_proto=I_TS ;;
16358         esac
16359         case "$readdir_r_proto" in
16360         ''|0)   d_readdir_r=undef
16361                 readdir_r_proto=0
16362                 echo "Disabling readdir_r, cannot determine prototype." >&4 ;;
16363         * )     case "$readdir_r_proto" in
16364                 REENTRANT_PROTO*) ;;
16365                 *) readdir_r_proto="REENTRANT_PROTO_$readdir_r_proto" ;;
16366                 esac
16367                 echo "Prototype: $try" ;;
16368         esac
16369         ;;
16370         *)      case "$usethreads" in
16371                 define) echo "readdir_r has no prototype, not using it." >&4 ;;
16372                 esac
16373                 d_readdir_r=undef
16374                 readdir_r_proto=0
16375                 ;;
16376         esac
16377         ;;
16378 *)      readdir_r_proto=0
16379         ;;
16380 esac
16381
16382 : see if readv exists
16383 set readv d_readv
16384 eval $inlibc
16385
16386 : see if recvmsg exists
16387 set recvmsg d_recvmsg
16388 eval $inlibc
16389
16390 : see if rename exists
16391 set rename d_rename
16392 eval $inlibc
16393
16394 : see if rmdir exists
16395 set rmdir d_rmdir
16396 eval $inlibc
16397
16398 : see if memory.h is available.
16399 val=''
16400 set memory.h val
16401 eval $inhdr
16402
16403 : See if it conflicts with string.h
16404 case "$val" in
16405 $define)
16406         case "$strings" in
16407         '') ;;
16408         *)
16409                 $cppstdin $cppflags $cppminus < $strings > mem.h
16410                 if $contains 'memcpy' mem.h >/dev/null 2>&1; then
16411                         echo " "
16412                         echo "We won't be including <memory.h>."
16413                         val="$undef"
16414                 fi
16415                 $rm -f mem.h
16416                 ;;
16417         esac
16418 esac
16419 set i_memory
16420 eval $setvar
16421
16422 : can bcopy handle overlapping blocks?
16423 echo " "
16424 val="$undef"
16425 case "$d_memmove" in
16426 "$define") echo "I'll use memmove() instead of bcopy() for overlapping copies." ;;
16427 *)      case "$d_bcopy" in
16428         "$define")
16429                 echo "Checking to see if bcopy() can do overlapping copies..." >&4
16430                 $cat >try.c <<EOCP
16431 #$i_memory I_MEMORY
16432 #$i_stdlib I_STDLIB
16433 #$i_string I_STRING
16434 #$i_unistd I_UNISTD
16435 EOCP
16436         $cat >>try.c <<'EOCP'
16437 #include <stdio.h>
16438 #ifdef I_MEMORY
16439 #  include <memory.h>
16440 #endif
16441 #ifdef I_STDLIB
16442 #  include <stdlib.h>
16443 #endif
16444 #ifdef I_STRING
16445 #  include <string.h>
16446 #else
16447 #  include <strings.h>
16448 #endif
16449 #ifdef I_UNISTD
16450 #  include <unistd.h>  /* Needed for NetBSD */
16451 #endif
16452 int main()
16453 {
16454 char buf[128], abc[128];
16455 char *b;
16456 int len;
16457 int off;
16458 int align;
16459
16460 /* Copy "abcde..." string to char abc[] so that gcc doesn't
16461    try to store the string in read-only memory. */
16462 bcopy("abcdefghijklmnopqrstuvwxyz0123456789", abc, 36);
16463
16464 for (align = 7; align >= 0; align--) {
16465         for (len = 36; len; len--) {
16466                 b = buf+align;
16467                 bcopy(abc, b, len);
16468                 for (off = 1; off <= len; off++) {
16469                         bcopy(b, b+off, len);
16470                         bcopy(b+off, b, len);
16471                         if (bcmp(b, abc, len))
16472                                 exit(1);
16473                 }
16474         }
16475 }
16476 exit(0);
16477 }
16478 EOCP
16479                 set try
16480                 if eval $compile_ok; then
16481                         if $run ./try 2>/dev/null; then
16482                                 echo "Yes, it can."
16483                                 val="$define"
16484                         else
16485                                 echo "It can't, sorry."
16486                         fi
16487                 else
16488                         echo "(I can't compile the test program, so we'll assume not...)"
16489                 fi
16490                 ;;
16491         esac
16492         $rm_try
16493         ;;
16494 esac
16495 set d_safebcpy
16496 eval $setvar
16497
16498 : can memcpy handle overlapping blocks?
16499 echo " "
16500 val="$undef"
16501 case "$d_memmove" in
16502 "$define") echo "I'll use memmove() instead of memcpy() for overlapping copies." ;;
16503 *)      case "$d_memcpy" in
16504         "$define")
16505                 echo "Checking to see if memcpy() can do overlapping copies..." >&4
16506                 $cat >try.c <<EOCP
16507 #$i_memory I_MEMORY
16508 #$i_stdlib I_STDLIB
16509 #$i_string I_STRING
16510 #$i_unistd I_UNISTD
16511 EOCP
16512         $cat >>try.c <<'EOCP'
16513 #include <stdio.h>
16514 #ifdef I_MEMORY
16515 #  include <memory.h>
16516 #endif
16517 #ifdef I_STDLIB
16518 #  include <stdlib.h>
16519 #endif
16520 #ifdef I_STRING
16521 #  include <string.h>
16522 #else
16523 #  include <strings.h>
16524 #endif
16525 #ifdef I_UNISTD
16526 #  include <unistd.h>  /* Needed for NetBSD */
16527 #endif
16528 int main()
16529 {
16530 char buf[128], abc[128];
16531 char *b;
16532 int len;
16533 int off;
16534 int align;
16535
16536 /* Copy "abcde..." string to char abc[] so that gcc doesn't
16537    try to store the string in read-only memory. */
16538 memcpy(abc, "abcdefghijklmnopqrstuvwxyz0123456789", 36);
16539
16540 for (align = 7; align >= 0; align--) {
16541         for (len = 36; len; len--) {
16542                 b = buf+align;
16543                 memcpy(b, abc, len);
16544                 for (off = 1; off <= len; off++) {
16545                         memcpy(b+off, b, len);
16546                         memcpy(b, b+off, len);
16547                         if (memcmp(b, abc, len))
16548                                 exit(1);
16549                 }
16550         }
16551 }
16552 exit(0);
16553 }
16554 EOCP
16555                 set try
16556                 if eval $compile_ok; then
16557                         if $run ./try 2>/dev/null; then
16558                                 echo "Yes, it can."
16559                                 val="$define"
16560                         else
16561                                 echo "It can't, sorry."
16562                         fi
16563                 else
16564                         echo "(I can't compile the test program, so we'll assume not...)"
16565                 fi
16566                 ;;
16567         esac
16568         $rm_try
16569         ;;
16570 esac
16571 set d_safemcpy
16572 eval $setvar
16573
16574 : can memcmp be trusted to compare relative magnitude?
16575 val="$undef"
16576 case "$d_memcmp" in
16577 "$define")
16578         echo " "
16579         echo "Checking if your memcmp() can compare relative magnitude..." >&4
16580         $cat >try.c <<EOCP
16581 #$i_memory I_MEMORY
16582 #$i_stdlib I_STDLIB
16583 #$i_string I_STRING
16584 #$i_unistd I_UNISTD
16585 EOCP
16586         $cat >>try.c <<'EOCP'
16587 #include <stdio.h>
16588 #ifdef I_MEMORY
16589 #  include <memory.h>
16590 #endif
16591 #ifdef I_STDLIB
16592 #  include <stdlib.h>
16593 #endif
16594 #ifdef I_STRING
16595 #  include <string.h>
16596 #else
16597 #  include <strings.h>
16598 #endif
16599 #ifdef I_UNISTD
16600 #  include <unistd.h>  /* Needed for NetBSD */
16601 #endif
16602 int main()
16603 {
16604 char a = -1;
16605 char b = 0;
16606 if ((a < b) && memcmp(&a, &b, 1) < 0)
16607         exit(1);
16608 exit(0);
16609 }
16610 EOCP
16611         set try
16612         if eval $compile_ok; then
16613                 if $run ./try 2>/dev/null; then
16614                         echo "Yes, it can."
16615                         val="$define"
16616                 else
16617                         echo "No, it can't (it uses signed chars)."
16618                 fi
16619         else
16620                 echo "(I can't compile the test program, so we'll assume not...)"
16621         fi
16622         ;;
16623 esac
16624 $rm_try
16625 set d_sanemcmp
16626 eval $setvar
16627
16628 : see if prototype for sbrk is available
16629 echo " "
16630 set d_sbrkproto sbrk $i_unistd unistd.h
16631 eval $hasproto
16632
16633 : see if select exists
16634 set select d_select
16635 eval $inlibc
16636
16637 : see if semctl exists
16638 set semctl d_semctl
16639 eval $inlibc
16640
16641 : see if semget exists
16642 set semget d_semget
16643 eval $inlibc
16644
16645 : see if semop exists
16646 set semop d_semop
16647 eval $inlibc
16648
16649 : see how much of the 'sem*(2)' library is present.
16650 h_sem=true
16651 echo " "
16652 case "$d_semctl$d_semget$d_semop" in
16653 *"$undef"*) h_sem=false;;
16654 esac
16655 case "$osname" in
16656 freebsd)
16657     case "`ipcs 2>&1`" in
16658     "SVID messages"*"not configured"*)
16659         echo "Your $osname does not have the sem*(2) configured." >&4
16660         h_sem=false
16661         val="$undef"
16662         set semctl d_semctl
16663         eval $setvar
16664         set semget d_semget
16665         eval $setvar
16666         set semop d_semop
16667         eval $setvar
16668         ;;
16669     esac
16670     ;;
16671 esac
16672 : we could also check for sys/ipc.h ...
16673 if $h_sem && $test `./findhdr sys/sem.h`; then
16674         echo "You have the full sem*(2) library." >&4
16675         val="$define"
16676 else
16677         echo "You don't have the full sem*(2) library." >&4
16678         val="$undef"
16679 fi
16680 set d_sem
16681 eval $setvar
16682
16683 : see whether sys/sem.h defines union semun
16684 echo " "
16685 $cat > try.c <<'END'
16686 #include <sys/types.h>
16687 #include <sys/ipc.h>
16688 #include <sys/sem.h>
16689 int main () { union semun semun; semun.buf = 0; }
16690 END
16691 set try
16692 if eval $compile; then
16693     echo "You have union semun in <sys/sem.h>." >&4
16694     val="$define"
16695 else
16696     echo "You do not have union semun in <sys/sem.h>." >&4
16697     val="$undef"
16698 fi
16699 $rm_try
16700 set d_union_semun
16701 eval $setvar
16702
16703 : see how to do semctl IPC_STAT
16704 case "$d_sem" in
16705 $define)
16706     echo " "
16707     $cat > tryh.h <<END
16708 #ifndef S_IRUSR
16709 #   ifdef S_IREAD
16710 #       define S_IRUSR S_IREAD
16711 #       define S_IWUSR S_IWRITE
16712 #       define S_IXUSR S_IEXEC
16713 #   else
16714 #       define S_IRUSR 0400
16715 #       define S_IWUSR 0200
16716 #       define S_IXUSR 0100
16717 #   endif
16718 #   define S_IRGRP (S_IRUSR>>3)
16719 #   define S_IWGRP (S_IWUSR>>3)
16720 #   define S_IXGRP (S_IXUSR>>3)
16721 #   define S_IROTH (S_IRUSR>>6)
16722 #   define S_IWOTH (S_IWUSR>>6)
16723 #   define S_IXOTH (S_IXUSR>>6)
16724 #endif
16725 #ifndef S_IRWXU
16726 #   define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
16727 #   define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
16728 #   define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
16729 #endif
16730 END
16731     : see whether semctl IPC_STAT can use union semun
16732     case "$d_semctl_semun" in
16733     '')
16734       val="$undef"
16735       $cat > try.c <<END
16736 #include <sys/types.h>
16737 #include <sys/ipc.h>
16738 #include <sys/sem.h>
16739 #include <sys/stat.h>
16740 #include <stdio.h>
16741 #include <errno.h>
16742 #include "tryh.h"
16743 #ifndef errno
16744 extern int errno;
16745 #endif
16746 #$d_union_semun HAS_UNION_SEMUN
16747 int main() {
16748     union semun
16749 #ifndef HAS_UNION_SEMUN
16750     {
16751         int val;
16752         struct semid_ds *buf;
16753         unsigned short *array;
16754     }
16755 #endif
16756     arg;
16757     int sem, st;
16758
16759 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) && defined(S_IRWXO) && defined(IPC_CREAT)
16760     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
16761     if (sem > -1) {
16762         struct semid_ds argbuf;
16763         arg.buf = &argbuf;
16764 #       ifdef IPC_STAT
16765         st = semctl(sem, 0, IPC_STAT, arg);
16766         if (st == 0)
16767             printf("semun\n");
16768         else
16769 #       endif /* IPC_STAT */
16770             printf("semctl IPC_STAT failed: errno = %d\n", errno);
16771 #       ifdef IPC_RMID
16772         if (semctl(sem, 0, IPC_RMID, arg) != 0)
16773 #       endif /* IPC_RMID */
16774             printf("semctl IPC_RMID failed: errno = %d\n", errno);
16775     } else
16776 #endif /* IPC_PRIVATE && ... */
16777         printf("semget failed: errno = %d\n", errno);
16778   return 0;
16779 }
16780 END
16781       set try
16782       if eval $compile; then
16783           xxx=`$run ./try`
16784           case "$xxx" in
16785           semun) val="$define" ;;
16786           esac
16787       fi
16788       $rm_try
16789       set d_semctl_semun
16790       eval $setvar
16791       ;;
16792     esac
16793     case "$d_semctl_semun" in
16794     $define)
16795         echo "You can use union semun for semctl IPC_STAT." >&4
16796         also='also'
16797         ;;
16798     *)  echo "You cannot use union semun for semctl IPC_STAT." >&4
16799         also=''
16800         ;;
16801     esac
16802
16803     : see whether semctl IPC_STAT can use struct semid_ds pointer
16804     case "$d_semctl_semid_ds" in
16805     '')
16806       val="$undef"
16807       $cat > try.c <<'END'
16808 #include <sys/types.h>
16809 #include <sys/ipc.h>
16810 #include <sys/sem.h>
16811 #include <sys/stat.h>
16812 #include "tryh.h"
16813 #include <stdio.h>
16814 #include <errno.h>
16815 #ifndef errno
16816 extern int errno;
16817 #endif
16818 int main() {
16819     struct semid_ds arg;
16820     int sem, st;
16821
16822 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) &&  defined(S_IRWXO) && defined(IPC_CREAT)
16823     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
16824     if (sem > -1) {
16825 #       ifdef IPC_STAT
16826         st = semctl(sem, 0, IPC_STAT, &arg);
16827         if (st == 0)
16828             printf("semid_ds\n");
16829         else
16830 #       endif /* IPC_STAT */
16831             printf("semctl IPC_STAT failed: errno = %d\n", errno);
16832 #       ifdef IPC_RMID
16833         if (semctl(sem, 0, IPC_RMID, &arg) != 0)
16834 #       endif /* IPC_RMID */
16835             printf("semctl IPC_RMID failed: errno = %d\n", errno);
16836     } else
16837 #endif /* IPC_PRIVATE && ... */
16838         printf("semget failed: errno = %d\n", errno);
16839
16840     return 0;
16841 }
16842 END
16843       set try
16844       if eval $compile; then
16845           xxx=`$run ./try`
16846           case "$xxx" in
16847           semid_ds) val="$define" ;;
16848           esac
16849       fi
16850       $rm_try
16851       set d_semctl_semid_ds
16852       eval $setvar
16853       ;;
16854     esac
16855     case "$d_semctl_semid_ds" in
16856     $define)
16857         echo "You can $also use struct semid_ds* for semctl IPC_STAT." >&4
16858         ;;
16859     *)  echo "You cannot use struct semid_ds* for semctl IPC_STAT." >&4
16860         ;;
16861     esac
16862     ;;
16863 *)  val="$undef"
16864
16865     # We do not have the full sem*(2) library, so assume we can not
16866     # use either.
16867
16868     set d_semctl_semun
16869     eval $setvar
16870
16871     set d_semctl_semid_ds
16872     eval $setvar
16873     ;;
16874 esac
16875 $rm_try tryh.h
16876
16877 : see if sendmsg exists
16878 set sendmsg d_sendmsg
16879 eval $inlibc
16880
16881 : see if setegid exists
16882 set setegid d_setegid
16883 eval $inlibc
16884
16885 : see if seteuid exists
16886 set seteuid d_seteuid
16887 eval $inlibc
16888
16889 : see if setgrent exists
16890 set setgrent d_setgrent
16891 eval $inlibc
16892
16893 : see if setgrent_r exists
16894 set setgrent_r d_setgrent_r
16895 eval $inlibc
16896 case "$d_setgrent_r" in
16897 "$define")
16898         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
16899         case "$d_setgrent_r_proto:$usethreads" in
16900         ":define")      d_setgrent_r_proto=define
16901                 set d_setgrent_r_proto setgrent_r $hdrs
16902                 eval $hasproto ;;
16903         *)      ;;
16904         esac
16905         case "$d_setgrent_r_proto" in
16906         define)
16907         case "$setgrent_r_proto" in
16908         ''|0) try='int setgrent_r(FILE**);'
16909         ./protochk "$extern_C $try" $hdrs && setgrent_r_proto=I_H ;;
16910         esac
16911         case "$setgrent_r_proto" in
16912         ''|0) try='void setgrent_r(FILE**);'
16913         ./protochk "$extern_C $try" $hdrs && setgrent_r_proto=V_H ;;
16914         esac
16915         case "$setgrent_r_proto" in
16916         ''|0)   d_setgrent_r=undef
16917                 setgrent_r_proto=0
16918                 echo "Disabling setgrent_r, cannot determine prototype." >&4 ;;
16919         * )     case "$setgrent_r_proto" in
16920                 REENTRANT_PROTO*) ;;
16921                 *) setgrent_r_proto="REENTRANT_PROTO_$setgrent_r_proto" ;;
16922                 esac
16923                 echo "Prototype: $try" ;;
16924         esac
16925         ;;
16926         *)      case "$usethreads" in
16927                 define) echo "setgrent_r has no prototype, not using it." >&4 ;;
16928                 esac
16929                 d_setgrent_r=undef
16930                 setgrent_r_proto=0
16931                 ;;
16932         esac
16933         ;;
16934 *)      setgrent_r_proto=0
16935         ;;
16936 esac
16937
16938 : see if sethostent exists
16939 set sethostent d_sethent
16940 eval $inlibc
16941
16942 : see if sethostent_r exists
16943 set sethostent_r d_sethostent_r
16944 eval $inlibc
16945 case "$d_sethostent_r" in
16946 "$define")
16947         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
16948         case "$d_sethostent_r_proto:$usethreads" in
16949         ":define")      d_sethostent_r_proto=define
16950                 set d_sethostent_r_proto sethostent_r $hdrs
16951                 eval $hasproto ;;
16952         *)      ;;
16953         esac
16954         case "$d_sethostent_r_proto" in
16955         define)
16956         case "$sethostent_r_proto" in
16957         ''|0) try='int sethostent_r(int, struct hostent_data*);'
16958         ./protochk "$extern_C $try" $hdrs && sethostent_r_proto=I_ID ;;
16959         esac
16960         case "$sethostent_r_proto" in
16961         ''|0) try='void sethostent_r(int, struct hostent_data*);'
16962         ./protochk "$extern_C $try" $hdrs && sethostent_r_proto=V_ID ;;
16963         esac
16964         case "$sethostent_r_proto" in
16965         ''|0)   d_sethostent_r=undef
16966                 sethostent_r_proto=0
16967                 echo "Disabling sethostent_r, cannot determine prototype." >&4 ;;
16968         * )     case "$sethostent_r_proto" in
16969                 REENTRANT_PROTO*) ;;
16970                 *) sethostent_r_proto="REENTRANT_PROTO_$sethostent_r_proto" ;;
16971                 esac
16972                 echo "Prototype: $try" ;;
16973         esac
16974         ;;
16975         *)      case "$usethreads" in
16976                 define) echo "sethostent_r has no prototype, not using it." >&4 ;;
16977                 esac
16978                 d_sethostent_r=undef
16979                 sethostent_r_proto=0
16980                 ;;
16981         esac
16982         ;;
16983 *)      sethostent_r_proto=0
16984         ;;
16985 esac
16986
16987 : see if setitimer exists
16988 set setitimer d_setitimer
16989 eval $inlibc
16990
16991 : see if setlinebuf exists
16992 set setlinebuf d_setlinebuf
16993 eval $inlibc
16994
16995 : see if setlocale exists
16996 set setlocale d_setlocale
16997 eval $inlibc
16998
16999 : see if locale.h is available
17000 set locale.h i_locale
17001 eval $inhdr
17002
17003 : see if setlocale_r exists
17004 set setlocale_r d_setlocale_r
17005 eval $inlibc
17006 case "$d_setlocale_r" in
17007 "$define")
17008         hdrs="$i_systypes sys/types.h define stdio.h $i_locale locale.h"
17009         case "$d_setlocale_r_proto:$usethreads" in
17010         ":define")      d_setlocale_r_proto=define
17011                 set d_setlocale_r_proto setlocale_r $hdrs
17012                 eval $hasproto ;;
17013         *)      ;;
17014         esac
17015         case "$d_setlocale_r_proto" in
17016         define)
17017         case "$setlocale_r_proto" in
17018         ''|0) try='int setlocale_r(int, const char*, char*, int);'
17019         ./protochk "$extern_C $try" $hdrs && setlocale_r_proto=I_ICBI ;;
17020         esac
17021         case "$setlocale_r_proto" in
17022         ''|0)   d_setlocale_r=undef
17023                 setlocale_r_proto=0
17024                 echo "Disabling setlocale_r, cannot determine prototype." >&4 ;;
17025         * )     case "$setlocale_r_proto" in
17026                 REENTRANT_PROTO*) ;;
17027                 *) setlocale_r_proto="REENTRANT_PROTO_$setlocale_r_proto" ;;
17028                 esac
17029                 echo "Prototype: $try" ;;
17030         esac
17031         ;;
17032         *)      case "$usethreads" in
17033                 define) echo "setlocale_r has no prototype, not using it." >&4 ;;
17034                 esac
17035                 d_setlocale_r=undef
17036                 setlocale_r_proto=0
17037                 ;;
17038         esac
17039         ;;
17040 *)      setlocale_r_proto=0
17041         ;;
17042 esac
17043
17044 : see if setnetent exists
17045 set setnetent d_setnent
17046 eval $inlibc
17047
17048 : see if setnetent_r exists
17049 set setnetent_r d_setnetent_r
17050 eval $inlibc
17051 case "$d_setnetent_r" in
17052 "$define")
17053         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
17054         case "$d_setnetent_r_proto:$usethreads" in
17055         ":define")      d_setnetent_r_proto=define
17056                 set d_setnetent_r_proto setnetent_r $hdrs
17057                 eval $hasproto ;;
17058         *)      ;;
17059         esac
17060         case "$d_setnetent_r_proto" in
17061         define)
17062         case "$setnetent_r_proto" in
17063         ''|0) try='int setnetent_r(int, struct netent_data*);'
17064         ./protochk "$extern_C $try" $hdrs && setnetent_r_proto=I_ID ;;
17065         esac
17066         case "$setnetent_r_proto" in
17067         ''|0) try='void setnetent_r(int, struct netent_data*);'
17068         ./protochk "$extern_C $try" $hdrs && setnetent_r_proto=V_ID ;;
17069         esac
17070         case "$setnetent_r_proto" in
17071         ''|0)   d_setnetent_r=undef
17072                 setnetent_r_proto=0
17073                 echo "Disabling setnetent_r, cannot determine prototype." >&4 ;;
17074         * )     case "$setnetent_r_proto" in
17075                 REENTRANT_PROTO*) ;;
17076                 *) setnetent_r_proto="REENTRANT_PROTO_$setnetent_r_proto" ;;
17077                 esac
17078                 echo "Prototype: $try" ;;
17079         esac
17080         ;;
17081         *)      case "$usethreads" in
17082                 define) echo "setnetent_r has no prototype, not using it." >&4 ;;
17083                 esac
17084                 d_setnetent_r=undef
17085                 setnetent_r_proto=0
17086                 ;;
17087         esac
17088         ;;
17089 *)      setnetent_r_proto=0
17090         ;;
17091 esac
17092
17093 : see if setprotoent exists
17094 set setprotoent d_setpent
17095 eval $inlibc
17096
17097 : see if setpgid exists
17098 set setpgid d_setpgid
17099 eval $inlibc
17100
17101 : see if setpgrp2 exists
17102 set setpgrp2 d_setpgrp2
17103 eval $inlibc
17104
17105 : see if setpriority exists
17106 set setpriority d_setprior
17107 eval $inlibc
17108
17109 : see if setproctitle exists
17110 set setproctitle d_setproctitle
17111 eval $inlibc
17112
17113 : see if setprotoent_r exists
17114 set setprotoent_r d_setprotoent_r
17115 eval $inlibc
17116 case "$d_setprotoent_r" in
17117 "$define")
17118         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
17119         case "$d_setprotoent_r_proto:$usethreads" in
17120         ":define")      d_setprotoent_r_proto=define
17121                 set d_setprotoent_r_proto setprotoent_r $hdrs
17122                 eval $hasproto ;;
17123         *)      ;;
17124         esac
17125         case "$d_setprotoent_r_proto" in
17126         define)
17127         case "$setprotoent_r_proto" in
17128         ''|0) try='int setprotoent_r(int, struct protoent_data*);'
17129         ./protochk "$extern_C $try" $hdrs && setprotoent_r_proto=I_ID ;;
17130         esac
17131         case "$setprotoent_r_proto" in
17132         ''|0) try='void setprotoent_r(int, struct protoent_data*);'
17133         ./protochk "$extern_C $try" $hdrs && setprotoent_r_proto=V_ID ;;
17134         esac
17135         case "$setprotoent_r_proto" in
17136         ''|0)   d_setprotoent_r=undef
17137                 setprotoent_r_proto=0
17138                 echo "Disabling setprotoent_r, cannot determine prototype." >&4 ;;
17139         * )     case "$setprotoent_r_proto" in
17140                 REENTRANT_PROTO*) ;;
17141                 *) setprotoent_r_proto="REENTRANT_PROTO_$setprotoent_r_proto" ;;
17142                 esac
17143                 echo "Prototype: $try" ;;
17144         esac
17145         ;;
17146         *)      case "$usethreads" in
17147                 define) echo "setprotoent_r has no prototype, not using it." >&4 ;;
17148                 esac
17149                 d_setprotoent_r=undef
17150                 setprotoent_r_proto=0
17151                 ;;
17152         esac
17153         ;;
17154 *)      setprotoent_r_proto=0
17155         ;;
17156 esac
17157
17158 : see if setpwent exists
17159 set setpwent d_setpwent
17160 eval $inlibc
17161
17162 : see if setpwent_r exists
17163 set setpwent_r d_setpwent_r
17164 eval $inlibc
17165 case "$d_setpwent_r" in
17166 "$define")
17167         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
17168         case "$d_setpwent_r_proto:$usethreads" in
17169         ":define")      d_setpwent_r_proto=define
17170                 set d_setpwent_r_proto setpwent_r $hdrs
17171                 eval $hasproto ;;
17172         *)      ;;
17173         esac
17174         case "$d_setpwent_r_proto" in
17175         define)
17176         case "$setpwent_r_proto" in
17177         ''|0) try='int setpwent_r(FILE**);'
17178         ./protochk "$extern_C $try" $hdrs && setpwent_r_proto=I_H ;;
17179         esac
17180         case "$setpwent_r_proto" in
17181         ''|0) try='void setpwent_r(FILE**);'
17182         ./protochk "$extern_C $try" $hdrs && setpwent_r_proto=V_H ;;
17183         esac
17184         case "$setpwent_r_proto" in
17185         ''|0)   d_setpwent_r=undef
17186                 setpwent_r_proto=0
17187                 echo "Disabling setpwent_r, cannot determine prototype." >&4 ;;
17188         * )     case "$setpwent_r_proto" in
17189                 REENTRANT_PROTO*) ;;
17190                 *) setpwent_r_proto="REENTRANT_PROTO_$setpwent_r_proto" ;;
17191                 esac
17192                 echo "Prototype: $try" ;;
17193         esac
17194         ;;
17195         *)      case "$usethreads" in
17196                 define) echo "setpwent_r has no prototype, not using it." >&4 ;;
17197                 esac
17198                 d_setpwent_r=undef
17199                 setpwent_r_proto=0
17200                 ;;
17201         esac
17202         ;;
17203 *)      setpwent_r_proto=0
17204         ;;
17205 esac
17206
17207 : see if setregid exists
17208 set setregid d_setregid
17209 eval $inlibc
17210 set setresgid d_setresgid
17211 eval $inlibc
17212
17213 : see if setreuid exists
17214 set setreuid d_setreuid
17215 eval $inlibc
17216 set setresuid d_setresuid
17217 eval $inlibc
17218
17219 : see if setrgid exists
17220 set setrgid d_setrgid
17221 eval $inlibc
17222
17223 : see if setruid exists
17224 set setruid d_setruid
17225 eval $inlibc
17226
17227 : see if setservent exists
17228 set setservent d_setsent
17229 eval $inlibc
17230
17231 : see if setservent_r exists
17232 set setservent_r d_setservent_r
17233 eval $inlibc
17234 case "$d_setservent_r" in
17235 "$define")
17236         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
17237         case "$d_setservent_r_proto:$usethreads" in
17238         ":define")      d_setservent_r_proto=define
17239                 set d_setservent_r_proto setservent_r $hdrs
17240                 eval $hasproto ;;
17241         *)      ;;
17242         esac
17243         case "$d_setservent_r_proto" in
17244         define)
17245         case "$setservent_r_proto" in
17246         ''|0) try='int setservent_r(int, struct servent_data*);'
17247         ./protochk "$extern_C $try" $hdrs && setservent_r_proto=I_ID ;;
17248         esac
17249         case "$setservent_r_proto" in
17250         ''|0) try='void setservent_r(int, struct servent_data*);'
17251         ./protochk "$extern_C $try" $hdrs && setservent_r_proto=V_ID ;;
17252         esac
17253         case "$setservent_r_proto" in
17254         ''|0)   d_setservent_r=undef
17255                 setservent_r_proto=0
17256                 echo "Disabling setservent_r, cannot determine prototype." >&4 ;;
17257         * )     case "$setservent_r_proto" in
17258                 REENTRANT_PROTO*) ;;
17259                 *) setservent_r_proto="REENTRANT_PROTO_$setservent_r_proto" ;;
17260                 esac
17261                 echo "Prototype: $try" ;;
17262         esac
17263         ;;
17264         *)      case "$usethreads" in
17265                 define) echo "setservent_r has no prototype, not using it." >&4 ;;
17266                 esac
17267                 d_setservent_r=undef
17268                 setservent_r_proto=0
17269                 ;;
17270         esac
17271         ;;
17272 *)      setservent_r_proto=0
17273         ;;
17274 esac
17275
17276 : see if setsid exists
17277 set setsid d_setsid
17278 eval $inlibc
17279
17280 : see if setvbuf exists
17281 set setvbuf d_setvbuf
17282 eval $inlibc
17283
17284 : see if sfio.h is available
17285 set sfio.h i_sfio
17286 eval $inhdr
17287
17288 : see if sfio library is available
17289 case "$i_sfio" in
17290 $define)
17291         val=''
17292         set sfreserve val
17293         eval $inlibc
17294         ;;
17295 *)
17296         val="$undef"
17297         ;;
17298 esac
17299 : Ok, but do we want to use it.
17300 case "$val" in
17301 $define)
17302         case "$usesfio" in
17303         true|$define|[yY]*) dflt='y';;
17304         *) dflt='n';;
17305         esac
17306         echo "$package can use the sfio library, but it is experimental."
17307         case "$useperlio" in
17308         "$undef")
17309             echo "For sfio also the PerlIO abstraction layer is needed."
17310             echo "Earlier you said you wouldn't want that."
17311             ;;
17312         esac
17313         rp="You seem to have sfio available, do you want to try using it?"
17314         . ./myread
17315         case "$ans" in
17316         y|Y)    echo "Ok, turning on both sfio and PerlIO, then."
17317                 useperlio="$define"
17318                 val="$define"
17319                 ;;
17320         *)      echo "Ok, avoiding sfio this time.  I'll use stdio instead."
17321                 val="$undef"
17322                 ;;
17323         esac
17324         ;;
17325 *)      case "$usesfio" in
17326         true|$define|[yY]*)
17327                 echo "Sorry, cannot find sfio on this machine." >&4
17328                 echo "Ignoring your setting of usesfio=$usesfio." >&4
17329                 val="$undef"
17330                 ;;
17331         esac
17332         ;;
17333 esac
17334 set d_sfio
17335 eval $setvar
17336 case "$d_sfio" in
17337 $define) usesfio='true';;
17338 *) usesfio='false';;
17339 esac
17340 case "$d_sfio" in
17341 $define) ;;
17342 *)      : Remove sfio from list of libraries to use
17343         case "$libs" in
17344         *-lsfio*)
17345                 echo "Removing unneeded -lsfio from library list" >&4
17346                 set `echo X $libs | $sed -e 's/-lsfio / /' -e 's/-lsfio$//'`
17347                 shift
17348                 libs="$*"
17349                 echo "libs = $libs" >&4
17350                 ;;
17351         esac
17352 ;;
17353 esac
17354
17355
17356 : see if shmctl exists
17357 set shmctl d_shmctl
17358 eval $inlibc
17359
17360 : see if shmget exists
17361 set shmget d_shmget
17362 eval $inlibc
17363
17364 : see if shmat exists
17365 set shmat d_shmat
17366 eval $inlibc
17367 : see what shmat returns
17368 case "$d_shmat" in
17369 "$define")
17370         $cat >shmat.c <<'END'
17371 #include <sys/shm.h>
17372 void *shmat();
17373 END
17374         if $cc $ccflags -c shmat.c >/dev/null 2>&1; then
17375                 shmattype='void *'
17376         else
17377                 shmattype='char *'
17378         fi
17379         echo "and it returns ($shmattype)." >&4
17380         : see if a prototype for shmat is available
17381         xxx=`./findhdr sys/shm.h`
17382         $cppstdin $cppflags $cppminus < $xxx > shmat.c 2>/dev/null
17383         if $contains 'shmat.*(' shmat.c >/dev/null 2>&1; then
17384                 val="$define"
17385         else
17386                 val="$undef"
17387         fi
17388         $rm -f shmat.[co]
17389         ;;
17390 *)
17391         val="$undef"
17392         ;;
17393 esac
17394 set d_shmatprototype
17395 eval $setvar
17396
17397 : see if shmdt exists
17398 set shmdt d_shmdt
17399 eval $inlibc
17400
17401 : see how much of the 'shm*(2)' library is present.
17402 h_shm=true
17403 echo " "
17404 case "$d_shmctl$d_shmget$d_shmat$d_shmdt" in
17405 *"$undef"*) h_shm=false;;
17406 esac
17407 case "$osname" in
17408 freebsd)
17409     case "`ipcs 2>&1`" in
17410     "SVID shared memory"*"not configured"*)
17411         echo "Your $osname does not have the shm*(2) configured." >&4
17412         h_shm=false
17413         val="$undef"
17414         set shmctl d_shmctl
17415         evat $setvar
17416         set shmget d_shmget
17417         evat $setvar
17418         set shmat d_shmat
17419         evat $setvar
17420         set shmdt d_shmdt
17421         evat $setvar
17422         ;;
17423     esac
17424     ;;
17425 esac
17426 : we could also check for sys/ipc.h ...
17427 if $h_shm && $test `./findhdr sys/shm.h`; then
17428         echo "You have the full shm*(2) library." >&4
17429         val="$define"
17430 else
17431         echo "You don't have the full shm*(2) library." >&4
17432         val="$undef"
17433 fi
17434 set d_shm
17435 eval $setvar
17436
17437 : see if we have sigaction
17438 echo " "
17439 if set sigaction val -f d_sigaction; eval $csym; $val; then
17440         echo 'sigaction() found.' >&4
17441         $cat > try.c <<EOP
17442 #include <stdio.h>
17443 #include <sys/types.h>
17444 #include <signal.h>
17445 #$i_stdlib I_STDLIB
17446 #ifdef I_STDLIB
17447 #include <stdlib.h>
17448 #endif
17449 int main()
17450 {
17451     struct sigaction act, oact;
17452     act.sa_flags = 0;
17453     oact.sa_handler = 0;
17454     /* so that act and oact are used */
17455     exit(act.sa_flags == 0 &&  oact.sa_handler == 0);
17456 }
17457 EOP
17458         set try
17459         if eval $compile_ok; then
17460                 val="$define"
17461         else
17462                 echo "But you don't seem to have a useable struct sigaction." >&4
17463                 val="$undef"
17464         fi
17465 else
17466         echo 'sigaction NOT found.' >&4
17467         val="$undef"
17468 fi
17469 set d_sigaction; eval $setvar
17470 $rm_try
17471
17472 : see if this is a sunmath.h system
17473 set sunmath.h i_sunmath
17474 eval $inhdr
17475
17476 : see if signbit exists
17477 $echo $n "Checking to see if you have signbit() available to work on $nvtype... $c" >&4
17478 $cat >try.c <<EOCP
17479 #$i_math I_MATH
17480 #$i_sunmath I_SUNMATH
17481 #ifdef I_MATH
17482 #  include <math.h>
17483 #endif
17484 #ifdef I_SUNMATH  /* Solaris special math library */
17485 #  include <sunmath.h>
17486 #endif
17487 #define NV $nvtype
17488 int main(int argc, char **argv)
17489 {
17490     NV x = 0.0;
17491     NV y = -0.0;
17492     if ((signbit(x) == 0) && (signbit(y) != 0))
17493         return 0;
17494     else
17495         return 1;
17496 }
17497 EOCP
17498 val="$undef"
17499 set try
17500 if eval $compile; then
17501     if $run ./try; then
17502         $echo "Yes." >&4
17503         val="$define"
17504     else
17505         $echo "Signbit seems to be available, but doesn't work as I expected."
17506         $echo "I won't use it." >&4
17507         val="$undef"
17508     fi
17509 else
17510     $echo "Nope." >&4
17511     dflt="$undef"
17512 fi
17513 set d_signbit
17514 eval $setvar
17515 $rm_try
17516
17517 : see if sigprocmask exists
17518 set sigprocmask d_sigprocmask
17519 eval $inlibc
17520
17521 : see if sigsetjmp exists
17522 echo " "
17523 case "$d_sigsetjmp" in
17524 '')
17525         $cat >try.c <<EOP
17526 #include <setjmp.h>
17527 #$i_stdlib I_STDLIB
17528 #ifdef I_STDLIB
17529 #include <stdlib.h>
17530 #endif
17531 sigjmp_buf env;
17532 int set = 1;
17533 int main()
17534 {
17535         if (sigsetjmp(env,1))
17536                 exit(set);
17537         set = 0;
17538         siglongjmp(env, 1);
17539         exit(1);
17540 }
17541 EOP
17542         set try
17543         if eval $compile; then
17544                 if $run ./try >/dev/null 2>&1; then
17545                         echo "POSIX sigsetjmp found." >&4
17546                         val="$define"
17547                 else
17548                         $cat >&4 <<EOM
17549 Uh-Oh! You have POSIX sigsetjmp and siglongjmp, but they do not work properly!!
17550 I'll ignore them.
17551 EOM
17552                         val="$undef"
17553                 fi
17554         else
17555                 echo "sigsetjmp not found." >&4
17556                 val="$undef"
17557         fi
17558         ;;
17559 *) val="$d_sigsetjmp"
17560         case "$d_sigsetjmp" in
17561         $define) echo "POSIX sigsetjmp found." >&4;;
17562         $undef) echo "sigsetjmp not found." >&4;;
17563         esac
17564         ;;
17565 esac
17566 set d_sigsetjmp
17567 eval $setvar
17568 $rm_try
17569
17570 : see if snprintf exists
17571 set snprintf d_snprintf
17572 eval $inlibc
17573
17574 : see if vsnprintf exists
17575 set vsnprintf d_vsnprintf
17576 eval $inlibc
17577
17578 case "$d_snprintf-$d_vsnprintf" in
17579 "$define-$define")
17580     $cat <<EOM
17581 Checking whether your snprintf() and vsnprintf() work okay...
17582 EOM
17583     $cat >try.c <<'EOCP'
17584 /* v?snprintf testing logic courtesy of Russ Allbery.
17585  * According to C99:
17586  * - if the buffer is too short it still must be \0-terminated
17587  * - if the buffer is too short the potentially required length
17588  *   must be returned and not -1
17589  * - if the buffer is NULL the potentially required length
17590  *   must be returned and not -1 or core dump
17591  */
17592 #include <stdio.h>
17593 #include <stdarg.h>
17594
17595 char buf[2];
17596
17597 int test (char *format, ...)
17598 {
17599     va_list args;
17600     int count;
17601
17602     va_start (args, format);
17603     count = vsnprintf (buf, sizeof buf, format, args);
17604     va_end (args);
17605     return count;
17606 }
17607
17608 int main ()
17609 {
17610     return ((test ("%s", "abcd") == 4 && buf[0] == 'a' && buf[1] == '\0'
17611              && snprintf (NULL, 0, "%s", "abcd") == 4) ? 0 : 1);
17612 }
17613 EOCP
17614     set try
17615     if eval $compile; then
17616         `$run ./try`
17617         case "$?" in
17618         0) echo "Your snprintf() and vsnprintf() seem to be working okay." ;;
17619         *) cat <<EOM >&4
17620 Your snprintf() and snprintf() don't seem to be working okay.
17621 EOM
17622            d_snprintf="$undef"
17623            d_vsnprintf="$undef"
17624            ;;
17625         esac
17626     else
17627         echo "(I can't seem to compile the test program--assuming they don't)"
17628         d_snprintf="$undef"
17629         d_vsnprintf="$undef"
17630     fi
17631     $rm_try
17632     ;;
17633 esac
17634
17635 : see if sockatmark exists
17636 set sockatmark d_sockatmark
17637 eval $inlibc
17638
17639 : see if prototype for sockatmark is available
17640 echo " "
17641 set d_sockatmarkproto sockatmark $d_socket sys/socket.h
17642 eval $hasproto
17643
17644 : see if socks5_init exists
17645 set socks5_init d_socks5_init
17646 eval $inlibc
17647
17648 : see if sprintf returns the length of the string in the buffer as per ANSI
17649 $echo "Checking whether sprintf returns the length of the string..." >&4
17650 $cat <<EOP >try.c
17651 #include <stdio.h>
17652 #$i_stdlib I_STDLIB
17653 #ifdef I_STDLIB
17654 #include <stdlib.h>
17655 #endif
17656 #$i_string I_STRING
17657 #ifdef I_STRING
17658 #  include <string.h>
17659 #else
17660 #  include <strings.h>
17661 #endif
17662 #$i_math I_MATH
17663 #ifdef I_MATH
17664 #include <math.h>
17665 #endif
17666
17667 char buffer[256];
17668
17669 int check (size_t expect, int test) {
17670   size_t got = strlen(buffer);
17671   if (expect == got)
17672     return 0;
17673
17674   printf("expected %ld, got %ld in test %d '%s'\n", (long) expect, (long) got,
17675        test, buffer);
17676   exit (test);
17677 }
17678
17679 int main(int argc, char **argv) {
17680   int test = 0;
17681
17682   check(sprintf(buffer, ""), ++test);
17683   check(sprintf(buffer, "%s %s", "perl", "rules"), ++test);
17684   check(sprintf(buffer, "I like %g", atan2(0,-1)), ++test);
17685
17686   return 0;
17687 }
17688 EOP
17689 set try
17690
17691 if eval $compile; then
17692     xxx="`$run ./try`"
17693     case "$?" in
17694         0) cat >&4 <<EOM
17695 sprintf returns the length of the string (as ANSI says it should)
17696 EOM
17697         d_sprintf_returns_strlen="$define"
17698         ;;
17699         *) cat >&4 <<EOM
17700 sprintf does not return the length of the string (how old is this system?)
17701 EOM
17702         d_sprintf_returns_strlen="$undef"
17703         ;;
17704     esac
17705 else
17706     echo "(I can't seem to compile the test program--assuming it doesn't)" >&4
17707     d_sprintf_returns_strlen="$undef"
17708 fi
17709 $rm_try
17710
17711 : see if srand48_r exists
17712 set srand48_r d_srand48_r
17713 eval $inlibc
17714 case "$d_srand48_r" in
17715 "$define")
17716         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
17717         case "$d_srand48_r_proto:$usethreads" in
17718         ":define")      d_srand48_r_proto=define
17719                 set d_srand48_r_proto srand48_r $hdrs
17720                 eval $hasproto ;;
17721         *)      ;;
17722         esac
17723         case "$d_srand48_r_proto" in
17724         define)
17725         case "$srand48_r_proto" in
17726         ''|0) try='int srand48_r(long, struct drand48_data*);'
17727         ./protochk "$extern_C $try" $hdrs && srand48_r_proto=I_LS ;;
17728         esac
17729         case "$srand48_r_proto" in
17730         ''|0)   d_srand48_r=undef
17731                 srand48_r_proto=0
17732                 echo "Disabling srand48_r, cannot determine prototype." >&4 ;;
17733         * )     case "$srand48_r_proto" in
17734                 REENTRANT_PROTO*) ;;
17735                 *) srand48_r_proto="REENTRANT_PROTO_$srand48_r_proto" ;;
17736                 esac
17737                 echo "Prototype: $try" ;;
17738         esac
17739         ;;
17740         *)      case "$usethreads" in
17741                 define) echo "srand48_r has no prototype, not using it." >&4 ;;
17742                 esac
17743                 d_srand48_r=undef
17744                 srand48_r_proto=0
17745                 ;;
17746         esac
17747         ;;
17748 *)      srand48_r_proto=0
17749         ;;
17750 esac
17751
17752 : see if srandom_r exists
17753 set srandom_r d_srandom_r
17754 eval $inlibc
17755 case "$d_srandom_r" in
17756 "$define")
17757         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
17758         case "$d_srandom_r_proto:$usethreads" in
17759         ":define")      d_srandom_r_proto=define
17760                 set d_srandom_r_proto srandom_r $hdrs
17761                 eval $hasproto ;;
17762         *)      ;;
17763         esac
17764         case "$d_srandom_r_proto" in
17765         define)
17766         case "$srandom_r_proto" in
17767         ''|0) try='int srandom_r(unsigned int, struct random_data*);'
17768         ./protochk "$extern_C $try" $hdrs && srandom_r_proto=I_TS ;;
17769         esac
17770         case "$srandom_r_proto" in
17771         ''|0)   d_srandom_r=undef
17772                 srandom_r_proto=0
17773                 echo "Disabling srandom_r, cannot determine prototype." >&4 ;;
17774         * )     case "$srandom_r_proto" in
17775                 REENTRANT_PROTO*) ;;
17776                 *) srandom_r_proto="REENTRANT_PROTO_$srandom_r_proto" ;;
17777                 esac
17778                 echo "Prototype: $try" ;;
17779         esac
17780         ;;
17781         *)      case "$usethreads" in
17782                 define) echo "srandom_r has no prototype, not using it." >&4 ;;
17783                 esac
17784                 d_srandom_r=undef
17785                 srandom_r_proto=0
17786                 ;;
17787         esac
17788         ;;
17789 *)      srandom_r_proto=0
17790         ;;
17791 esac
17792
17793 : see if prototype for setresgid is available
17794 echo " "
17795 set d_sresgproto setresgid $i_unistd unistd.h
17796 eval $hasproto
17797
17798 : see if prototype for setresuid is available
17799 echo " "
17800 set d_sresuproto setresuid $i_unistd unistd.h
17801 eval $hasproto
17802
17803 : see if sys/stat.h is available
17804 set sys/stat.h i_sysstat
17805 eval $inhdr
17806
17807 : see if stat knows about block sizes
17808 echo " "
17809 echo "Checking to see if your struct stat has st_blocks field..." >&4
17810 set d_statblks stat st_blocks $i_sysstat sys/stat.h
17811 eval $hasfield
17812
17813 : see if this is a sys/vfs.h system
17814 set sys/vfs.h i_sysvfs
17815 eval $inhdr
17816
17817 : see if this is a sys/statfs.h system
17818 set sys/statfs.h i_sysstatfs
17819 eval $inhdr
17820
17821 : Check for statfs_s
17822 echo " "
17823 echo "Checking to see if your system supports struct statfs..." >&4
17824 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
17825 eval $hasstruct
17826 case "$d_statfs_s" in
17827 "$define")      echo "Yes, it does."   ;;
17828 *)              echo "No, it doesn't." ;;
17829 esac
17830
17831
17832 : see if struct statfs knows about f_flags
17833 case "$d_statfs_s" in
17834 define)
17835         echo " "
17836         echo "Checking to see if your struct statfs has f_flags field..." >&4
17837         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
17838         eval $hasfield
17839         ;;
17840 *)      val="$undef"
17841         set d_statfs_f_flags
17842         eval $setvar
17843         ;;
17844 esac
17845 case "$d_statfs_f_flags" in
17846 "$define")      echo "Yes, it does."   ;;
17847 *)              echo "No, it doesn't." ;;
17848 esac
17849
17850 : Check stream access
17851 $cat >&4 <<EOM
17852 Checking how to access stdio streams by file descriptor number...
17853 EOM
17854 case "$stdio_stream_array" in
17855 '')     $cat >try.c <<EOCP
17856 #include <stdio.h>
17857 int main() {
17858   if (&STDIO_STREAM_ARRAY[fileno(stdin)] == stdin)
17859     printf("yes\n");
17860 }
17861 EOCP
17862         for s in _iob __iob __sF
17863         do
17864                 set try -DSTDIO_STREAM_ARRAY=$s
17865                 if eval $compile; then
17866                         case "`$run ./try`" in
17867                         yes)    stdio_stream_array=$s; break ;;
17868                         esac
17869                 fi
17870         done
17871         $rm_try
17872 esac
17873 case "$stdio_stream_array" in
17874 '')     $cat >&4 <<EOM
17875 I can't figure out how to access stdio streams by file descriptor number.
17876 EOM
17877         d_stdio_stream_array="$undef"
17878         ;;
17879 *)      $cat >&4 <<EOM
17880 You can access stdio streams by file descriptor number by the $stdio_stream_array array.
17881 EOM
17882         d_stdio_stream_array="$define"
17883         ;;
17884 esac
17885
17886 : see if strcoll exists
17887 set strcoll d_strcoll
17888 eval $inlibc
17889
17890 : check for structure copying
17891 echo " "
17892 echo "Checking to see if your C compiler can copy structs..." >&4
17893 $cat >try.c <<'EOCP'
17894 int main()
17895 {
17896         struct blurfl {
17897                 int dyick;
17898         } foo, bar;
17899
17900         foo = bar;
17901 }
17902 EOCP
17903 if $cc -c try.c >/dev/null 2>&1 ; then
17904         val="$define"
17905         echo "Yup, it can."
17906 else
17907         val="$undef"
17908         echo "Nope, it can't."
17909 fi
17910 set d_strctcpy
17911 eval $setvar
17912 $rm_try
17913
17914 : see if strerror and/or sys_errlist[] exist
17915 echo " "
17916 if test "X$d_strerror" = X -o "X$d_syserrlst" = X; then
17917     if set strerror val -f d_strerror; eval $csym; $val; then
17918                 echo 'strerror() found.' >&4
17919                 d_strerror="$define"
17920                 d_strerrm='strerror(e)'
17921                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
17922                         echo "(You also have sys_errlist[], so we could roll our own strerror.)" 
17923                         d_syserrlst="$define"
17924                 else
17925                         echo "(Since you don't have sys_errlist[], sterror() is welcome.)"
17926                         d_syserrlst="$undef"
17927                 fi
17928     elif xxx=`./findhdr string.h`; test "$xxx" || xxx=`./findhdr strings.h`; \
17929                         $contains '#[   ]*define.*strerror' "$xxx" >/dev/null 2>&1; then
17930                 echo 'strerror() found in string header.' >&4
17931                 d_strerror="$define"
17932                 d_strerrm='strerror(e)'
17933                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
17934                         echo "(Most probably, strerror() uses sys_errlist[] for descriptions.)"
17935                                 d_syserrlst="$define"
17936                 else
17937                         echo "(You don't appear to have any sys_errlist[], how can this be?)"
17938                         d_syserrlst="$undef"
17939                 fi
17940     elif set sys_errlist val -a d_syserrlst; eval $csym; $val; then
17941                 echo "strerror() not found, but you have sys_errlist[] so we'll use that." >&4
17942                 d_strerror="$undef"
17943                 d_syserrlst="$define"
17944                 d_strerrm='((e)<0||(e)>=sys_nerr?"unknown":sys_errlist[e])'
17945     else
17946                 echo 'strerror() and sys_errlist[] NOT found.' >&4
17947                 d_strerror="$undef"
17948                 d_syserrlst="$undef"
17949                 d_strerrm='"unknown"'
17950     fi
17951 fi
17952
17953 : see if strerror_r exists
17954 set strerror_r d_strerror_r
17955 eval $inlibc
17956 case "$d_strerror_r" in
17957 "$define")
17958         hdrs="$i_systypes sys/types.h define stdio.h $i_string string.h"
17959         case "$d_strerror_r_proto:$usethreads" in
17960         ":define")      d_strerror_r_proto=define
17961                 set d_strerror_r_proto strerror_r $hdrs
17962                 eval $hasproto ;;
17963         *)      ;;
17964         esac
17965         case "$d_strerror_r_proto" in
17966         define)
17967         case "$strerror_r_proto" in
17968         ''|0) try='int strerror_r(int, char*, size_t);'
17969         ./protochk "$extern_C $try" $hdrs && strerror_r_proto=I_IBW ;;
17970         esac
17971         case "$strerror_r_proto" in
17972         ''|0) try='int strerror_r(int, char*, int);'
17973         ./protochk "$extern_C $try" $hdrs && strerror_r_proto=I_IBI ;;
17974         esac
17975         case "$strerror_r_proto" in
17976         ''|0) try='char* strerror_r(int, char*, size_t);'
17977         ./protochk "$extern_C $try" $hdrs && strerror_r_proto=B_IBW ;;
17978         esac
17979         case "$strerror_r_proto" in
17980         ''|0)   d_strerror_r=undef
17981                 strerror_r_proto=0
17982                 echo "Disabling strerror_r, cannot determine prototype." >&4 ;;
17983         * )     case "$strerror_r_proto" in
17984                 REENTRANT_PROTO*) ;;
17985                 *) strerror_r_proto="REENTRANT_PROTO_$strerror_r_proto" ;;
17986                 esac
17987                 echo "Prototype: $try" ;;
17988         esac
17989         ;;
17990         *)      case "$usethreads" in
17991                 define) echo "strerror_r has no prototype, not using it." >&4 ;;
17992                 esac
17993                 d_strerror_r=undef
17994                 strerror_r_proto=0
17995                 ;;
17996         esac
17997         ;;
17998 *)      strerror_r_proto=0
17999         ;;
18000 esac
18001
18002 : see if strftime exists
18003 set strftime d_strftime
18004 eval $inlibc
18005
18006 : see if strlcat exists
18007 set strlcat d_strlcat
18008 eval $inlibc
18009
18010 : see if strlcpy exists
18011 set strlcpy d_strlcpy
18012 eval $inlibc
18013
18014 : see if strtod exists
18015 set strtod d_strtod
18016 eval $inlibc
18017
18018 : see if strtol exists
18019 set strtol d_strtol
18020 eval $inlibc
18021
18022 : see if strtold exists
18023 set strtold d_strtold
18024 eval $inlibc
18025
18026 : see if strtoll exists
18027 set strtoll d_strtoll
18028 eval $inlibc
18029
18030 case "$d_longlong-$d_strtoll" in
18031 "$define-$define")
18032         $cat <<EOM
18033 Checking whether your strtoll() works okay...
18034 EOM
18035         $cat >try.c <<'EOCP'
18036 #include <errno.h>
18037 #ifdef __hpux
18038 #define strtoll __strtoll
18039 #endif
18040 #ifdef __EMX__
18041 #define strtoll _strtoll
18042 #endif
18043 #include <stdio.h>
18044 extern long long int strtoll(char *s, char **, int);
18045 static int bad = 0;
18046 int check(char *s, long long ell, int een) {
18047         long long gll;
18048         errno = 0;
18049         gll = strtoll(s, 0, 10);
18050         if (!((gll == ell) && (errno == een)))
18051                 bad++;
18052 }
18053 int main() {
18054         check(" 1",                                      1LL, 0);
18055         check(" 0",                                      0LL, 0);
18056         check("-1",                                     -1LL, 0);
18057         check("-9223372036854775808", -9223372036854775808LL, 0);
18058         check("-9223372036854775808", -9223372036854775808LL, 0);
18059         check(" 9223372036854775807",  9223372036854775807LL, 0);
18060         check("-9223372036854775808", -9223372036854775808LL, 0);
18061         check(" 9223372036854775808",  9223372036854775807LL, ERANGE);
18062         check("-9223372036854775809", -9223372036854775808LL, ERANGE);
18063         if (!bad)
18064                 printf("ok\n");
18065 }
18066 EOCP
18067         set try
18068         if eval $compile; then
18069                 yyy=`$run ./try`
18070                 case "$yyy" in
18071                 ok) echo "Your strtoll() seems to be working okay." ;;
18072                 *) cat <<EOM >&4
18073 Your strtoll() doesn't seem to be working okay.
18074 EOM
18075                    d_strtoll="$undef"
18076                    ;;
18077                 esac
18078         else
18079                 echo "(I can't seem to compile the test program--assuming it doesn't)"
18080                 d_strtoll="$undef"
18081         fi
18082         ;;
18083 esac
18084
18085 : see if strtoq exists
18086 set strtoq d_strtoq
18087 eval $inlibc
18088
18089 : see if strtoul exists
18090 set strtoul d_strtoul
18091 eval $inlibc
18092
18093 case "$d_strtoul" in
18094 "$define")
18095         $cat <<EOM
18096 Checking whether your strtoul() works okay...
18097 EOM
18098         $cat >try.c <<'EOCP'
18099 #include <errno.h>
18100 #include <stdio.h>
18101 extern unsigned long int strtoul(char *s, char **, int);
18102 static int bad = 0;
18103 void check(char *s, unsigned long eul, int een) {
18104         unsigned long gul;
18105         errno = 0;
18106         gul = strtoul(s, 0, 10);
18107         if (!((gul == eul) && (errno == een)))
18108                 bad++;
18109 }
18110 int main() {
18111         check(" 1", 1L, 0);
18112         check(" 0", 0L, 0);
18113 EOCP
18114         case "$longsize" in
18115         8)
18116             $cat >>try.c <<'EOCP'
18117         check("18446744073709551615", 18446744073709551615UL, 0);
18118         check("18446744073709551616", 18446744073709551615UL, ERANGE);
18119 #if 0 /* strtoul() for /^-/ strings is undefined. */
18120         check("-1", 18446744073709551615UL, 0);
18121         check("-18446744073709551614", 2, 0);
18122         check("-18446744073709551615", 1, 0);
18123         check("-18446744073709551616", 18446744073709551615UL, ERANGE);
18124         check("-18446744073709551617", 18446744073709551615UL, ERANGE);
18125 #endif
18126 EOCP
18127                 ;;
18128         4)
18129                     $cat >>try.c <<'EOCP'
18130         check("4294967295", 4294967295UL, 0);
18131         check("4294967296", 4294967295UL, ERANGE);
18132 #if 0 /* strtoul() for /^-/ strings is undefined. */
18133         check("-1", 4294967295UL, 0);
18134         check("-4294967294", 2, 0);
18135         check("-4294967295", 1, 0);
18136         check("-4294967296", 4294967295UL, ERANGE);
18137         check("-4294967297", 4294967295UL, ERANGE);
18138 #endif
18139 EOCP
18140                 ;;
18141         *)
18142 : Should we write these tests to be more portable by sprintf-ing
18143 : ~0 and then manipulating that char string as input for strtol?
18144                 ;;
18145         esac
18146         $cat >>try.c <<'EOCP'
18147         if (!bad)
18148                 printf("ok\n");
18149         return 0;
18150 }
18151 EOCP
18152         set try
18153         if eval $compile; then
18154                 case "`$run ./try`" in
18155                 ok) echo "Your strtoul() seems to be working okay." ;;
18156                 *) cat <<EOM >&4
18157 Your strtoul() doesn't seem to be working okay.
18158 EOM
18159                    d_strtoul="$undef"
18160                    ;;
18161                 esac
18162         else
18163                 echo "(I can't seem to compile the test program--assuming it doesn't)"
18164                 d_strtoul="$undef"
18165         fi
18166         ;;
18167 esac
18168
18169 : see if strtoull exists
18170 set strtoull d_strtoull
18171 eval $inlibc
18172
18173 case "$d_longlong-$d_strtoull" in
18174 "$define-$define")
18175         $cat <<EOM
18176 Checking whether your strtoull() works okay...
18177 EOM
18178         $cat >try.c <<'EOCP'
18179 #include <errno.h>
18180 #ifdef __hpux
18181 #define strtoull __strtoull
18182 #endif
18183 #include <stdio.h>
18184 extern unsigned long long int strtoull(char *s, char **, int);
18185 static int bad = 0;
18186 int check(char *s, long long eull, int een) {
18187         long long gull;
18188         errno = 0;
18189         gull = strtoull(s, 0, 10);
18190         if (!((gull == eull) && (errno == een)))
18191                 bad++;
18192 }
18193 int main() {
18194         check(" 1",                                        1LL, 0);
18195         check(" 0",                                        0LL, 0);
18196         check("18446744073709551615",  18446744073709551615ULL, 0);
18197         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
18198 #if 0 /* strtoull() for /^-/ strings is undefined. */
18199         check("-1",                    18446744073709551615ULL, 0);
18200         check("-18446744073709551614",                     2LL, 0);
18201         check("-18446744073709551615",                     1LL, 0);
18202         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
18203         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
18204 #endif
18205         if (!bad)
18206                 printf("ok\n");
18207 }
18208 EOCP
18209         set try
18210         if eval $compile; then
18211                 case "`$run ./try`" in
18212                 ok) echo "Your strtoull() seems to be working okay." ;;
18213                 *) cat <<EOM >&4
18214 Your strtoull() doesn't seem to be working okay.
18215 EOM
18216                    d_strtoull="$undef"
18217                    ;;
18218                 esac
18219         else
18220                 echo "(I can't seem to compile the test program--assuming it doesn't)"
18221                 d_strtoull="$undef"
18222         fi
18223         ;;
18224 esac
18225
18226 : see if strtouq exists
18227 set strtouq d_strtouq
18228 eval $inlibc
18229
18230 case "$d_strtouq" in
18231 "$define")
18232         $cat <<EOM
18233 Checking whether your strtouq() works okay...
18234 EOM
18235         $cat >try.c <<'EOCP'
18236 #include <errno.h>
18237 #include <stdio.h>
18238 extern unsigned long long int strtouq(char *s, char **, int);
18239 static int bad = 0;
18240 void check(char *s, unsigned long long eull, int een) {
18241         unsigned long long gull;
18242         errno = 0;
18243         gull = strtouq(s, 0, 10);
18244         if (!((gull == eull) && (errno == een)))
18245                 bad++;
18246 }
18247 int main() {
18248         check(" 1",                                        1LL, 0);
18249         check(" 0",                                        0LL, 0);
18250         check("18446744073709551615",  18446744073709551615ULL, 0);
18251         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
18252 #if 0 /* strtouq() for /^-/ strings is undefined. */
18253         check("-1",                    18446744073709551615ULL, 0);
18254         check("-18446744073709551614",                     2LL, 0);
18255         check("-18446744073709551615",                     1LL, 0);
18256         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
18257         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
18258 #endif
18259         if (!bad)
18260                 printf("ok\n");
18261         return 0;
18262 }
18263 EOCP
18264         set try
18265         if eval $compile; then
18266                 case "`$run ./try`" in
18267                 ok) echo "Your strtouq() seems to be working okay." ;;
18268                 *) cat <<EOM >&4
18269 Your strtouq() doesn't seem to be working okay.
18270 EOM
18271                    d_strtouq="$undef"
18272                    ;;
18273                 esac
18274         else
18275                 echo "(I can't seem to compile the test program--assuming it doesn't)"
18276                 d_strtouq="$undef"
18277         fi
18278         ;;
18279 esac
18280
18281 : see if strxfrm exists
18282 set strxfrm d_strxfrm
18283 eval $inlibc
18284
18285 : see if symlink exists
18286 set symlink d_symlink
18287 eval $inlibc
18288
18289 : see if syscall exists
18290 set syscall d_syscall
18291 eval $inlibc
18292
18293 : see if prototype for syscall is available
18294 echo " "
18295 set d_syscallproto syscall $i_unistd unistd.h
18296 eval $hasproto
18297
18298 : see if sysconf exists
18299 set sysconf d_sysconf
18300 eval $inlibc
18301
18302 : see if system exists
18303 set system d_system
18304 eval $inlibc
18305
18306 : see if tcgetpgrp exists
18307 set tcgetpgrp d_tcgetpgrp
18308 eval $inlibc
18309
18310 : see if tcsetpgrp exists
18311 set tcsetpgrp d_tcsetpgrp
18312 eval $inlibc
18313
18314 : see if prototype for telldir is available
18315 echo " "
18316 set d_telldirproto telldir $i_systypes sys/types.h $i_dirent dirent.h
18317 eval $hasproto
18318
18319 : see if time exists
18320 echo " "
18321 if test "X$d_time" = X -o X"$timetype" = X; then
18322     if set time val -f d_time; eval $csym; $val; then
18323                 echo 'time() found.' >&4
18324                 val="$define"
18325                 rp="What is the type returned by time() on this system?"
18326                 set time_t timetype long stdio.h sys/types.h
18327                 eval $typedef_ask
18328     else
18329                 echo 'time() not found, hope that will do.' >&4
18330                 val="$undef"
18331                 timetype='int';
18332     fi
18333     set d_time
18334     eval $setvar
18335 fi
18336
18337 : see if timegm exists
18338 set timegm d_timegm
18339 eval $inlibc
18340
18341 : see if this is a sys/times.h system
18342 set sys/times.h i_systimes
18343 eval $inhdr
18344
18345 : see if times exists
18346 echo " "
18347 if set times val -f d_times; eval $csym; $val; then
18348         echo 'times() found.' >&4
18349         d_times="$define"
18350         inc=''
18351         case "$i_systimes" in
18352         "$define") inc='sys/times.h';;
18353         esac
18354         rp="What is the type returned by times() on this system?"
18355         set clock_t clocktype long stdio.h sys/types.h $inc
18356         eval $typedef_ask
18357 else
18358         echo 'times() NOT found, hope that will do.' >&4
18359         d_times="$undef"
18360         clocktype='int'
18361 fi
18362
18363 : see if tmpnam_r exists
18364 set tmpnam_r d_tmpnam_r
18365 eval $inlibc
18366 case "$d_tmpnam_r" in
18367 "$define")
18368         hdrs="$i_systypes sys/types.h define stdio.h "
18369         case "$d_tmpnam_r_proto:$usethreads" in
18370         ":define")      d_tmpnam_r_proto=define
18371                 set d_tmpnam_r_proto tmpnam_r $hdrs
18372                 eval $hasproto ;;
18373         *)      ;;
18374         esac
18375         case "$d_tmpnam_r_proto" in
18376         define)
18377         case "$tmpnam_r_proto" in
18378         ''|0) try='char* tmpnam_r(char*);'
18379         ./protochk "$extern_C $try" $hdrs && tmpnam_r_proto=B_B ;;
18380         esac
18381         case "$tmpnam_r_proto" in
18382         ''|0)   d_tmpnam_r=undef
18383                 tmpnam_r_proto=0
18384                 echo "Disabling tmpnam_r, cannot determine prototype." >&4 ;;
18385         * )     case "$tmpnam_r_proto" in
18386                 REENTRANT_PROTO*) ;;
18387                 *) tmpnam_r_proto="REENTRANT_PROTO_$tmpnam_r_proto" ;;
18388                 esac
18389                 echo "Prototype: $try" ;;
18390         esac
18391         ;;
18392         *)      case "$usethreads" in
18393                 define) echo "tmpnam_r has no prototype, not using it." >&4 ;;
18394                 esac
18395                 d_tmpnam_r=undef
18396                 tmpnam_r_proto=0
18397                 ;;
18398         esac
18399         ;;
18400 *)      tmpnam_r_proto=0
18401         ;;
18402 esac
18403
18404 : see if truncate exists
18405 set truncate d_truncate
18406 eval $inlibc
18407
18408 : see if ttyname_r exists
18409 set ttyname_r d_ttyname_r
18410 eval $inlibc
18411 case "$d_ttyname_r" in
18412 "$define")
18413         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
18414         case "$d_ttyname_r_proto:$usethreads" in
18415         ":define")      d_ttyname_r_proto=define
18416                 set d_ttyname_r_proto ttyname_r $hdrs
18417                 eval $hasproto ;;
18418         *)      ;;
18419         esac
18420         case "$d_ttyname_r_proto" in
18421         define)
18422         case "$ttyname_r_proto" in
18423         ''|0) try='int ttyname_r(int, char*, size_t);'
18424         ./protochk "$extern_C $try" $hdrs && ttyname_r_proto=I_IBW ;;
18425         esac
18426         case "$ttyname_r_proto" in
18427         ''|0) try='int ttyname_r(int, char*, int);'
18428         ./protochk "$extern_C $try" $hdrs && ttyname_r_proto=I_IBI ;;
18429         esac
18430         case "$ttyname_r_proto" in
18431         ''|0) try='char* ttyname_r(int, char*, int);'
18432         ./protochk "$extern_C $try" $hdrs && ttyname_r_proto=B_IBI ;;
18433         esac
18434         case "$ttyname_r_proto" in
18435         ''|0)   d_ttyname_r=undef
18436                 ttyname_r_proto=0
18437                 echo "Disabling ttyname_r, cannot determine prototype." >&4 ;;
18438         * )     case "$ttyname_r_proto" in
18439                 REENTRANT_PROTO*) ;;
18440                 *) ttyname_r_proto="REENTRANT_PROTO_$ttyname_r_proto" ;;
18441                 esac
18442                 echo "Prototype: $try" ;;
18443         esac
18444         ;;
18445         *)      case "$usethreads" in
18446                 define) echo "ttyname_r has no prototype, not using it." >&4 ;;
18447                 esac
18448                 d_ttyname_r=undef
18449                 ttyname_r_proto=0
18450                 ;;
18451         esac
18452         ;;
18453 *)      ttyname_r_proto=0
18454         ;;
18455 esac
18456
18457 : see if tzname[] exists
18458 echo " "
18459 if set tzname val -a d_tzname; eval $csym; $val; then
18460         val="$define"
18461         echo 'tzname[] found.' >&4
18462 else
18463         val="$undef"
18464         echo 'tzname[] NOT found.' >&4
18465 fi
18466 set d_tzname
18467 eval $setvar
18468
18469 : Check if is a multiplatform env
18470 case "$osname" in
18471 next|rhapsody|darwin) multiarch="$define" ;;
18472 esac
18473 case "$multiarch" in
18474 ''|[nN]*) multiarch="$undef" ;;
18475 esac
18476
18477 : check for ordering of bytes in a UV
18478 echo " "
18479 case "$usecrosscompile$multiarch" in
18480 *$define*)
18481         $cat <<EOM
18482 You seem to be either cross-compiling or doing a multiarchitecture build,
18483 skipping the byteorder check.
18484
18485 EOM
18486         byteorder='ffff'
18487         ;;
18488 *)
18489         case "$byteorder" in
18490         '')
18491                 $cat <<'EOM'
18492 In the following, larger digits indicate more significance.  A big-endian
18493 machine like a Pyramid or a Motorola 680?0 chip will come out to 4321. A
18494 little-endian machine like a Vax or an Intel 80?86 chip would be 1234. Other
18495 machines may have weird orders like 3412.  A Cray will report 87654321,
18496 an Alpha will report 12345678. If the test program works the default is
18497 probably right.
18498 I'm now running the test program...
18499 EOM
18500                 $cat >try.c <<EOCP
18501 #include <stdio.h>
18502 #$i_stdlib I_STDLIB
18503 #ifdef I_STDLIB
18504 #include <stdlib.h>
18505 #endif
18506 #include <sys/types.h>
18507 typedef $uvtype UV;
18508 int main()
18509 {
18510         int i;
18511         union {
18512                 UV l;
18513                 char c[$uvsize];
18514         } u;
18515
18516         if ($uvsize > 4)
18517                 u.l = (((UV)0x08070605) << 32) | (UV)0x04030201;
18518         else
18519                 u.l = (UV)0x04030201;
18520         for (i = 0; i < $uvsize; i++)
18521                 printf("%c", u.c[i]+'0');
18522         printf("\n");
18523         exit(0);
18524 }
18525 EOCP
18526                 xxx_prompt=y
18527                 set try
18528                 if eval $compile && $run ./try > /dev/null; then
18529                         dflt=`$run ./try`
18530                         case "$dflt" in
18531                         [1-4][1-4][1-4][1-4]|12345678|87654321)
18532                                 echo "(The test program ran ok.)"
18533                                 echo "byteorder=$dflt"
18534                                 xxx_prompt=n
18535                         ;;
18536                         ????|????????) echo "(The test program ran ok.)" ;;
18537                         *) echo "(The test program didn't run right for some reason.)" ;;
18538                         esac
18539                 else
18540                         dflt='4321'
18541                         cat <<'EOM'
18542 (I can't seem to compile the test program.  Guessing big-endian...)
18543 EOM
18544                 fi
18545                 case "$xxx_prompt" in
18546                 y)
18547                         rp="What is the order of bytes in $uvtype?"
18548                         . ./myread
18549                         byteorder="$ans"
18550                         ;;
18551                 *)      byteorder=$dflt
18552                         ;;
18553                 esac
18554                 ;;
18555         esac
18556         $rm_try
18557         ;;
18558 esac
18559
18560 : Checking 32bit aligndness
18561 $cat <<EOM
18562
18563 Checking to see whether you can access character data unalignedly...
18564 EOM
18565 case "$d_u32align" in
18566 '')   $cat >try.c <<EOCP
18567 #include <stdio.h>
18568 #$i_stdlib I_STDLIB
18569 #ifdef I_STDLIB
18570 #include <stdlib.h>
18571 #endif
18572 #define U32 $u32type
18573 #define BYTEORDER 0x$byteorder
18574 #define U8 $u8type
18575 #include <signal.h>
18576 #ifdef SIGBUS
18577 $signal_t bletch(int s) { exit(4); }
18578 #endif
18579 int main() {
18580 #if BYTEORDER == 0x1234 || BYTEORDER == 0x4321
18581     U8 buf[8];
18582     U32 *up;
18583     int i;
18584
18585     if (sizeof(U32) != 4) {
18586         printf("sizeof(U32) is not 4, but %d\n", sizeof(U32));
18587         exit(1);
18588     }
18589
18590     fflush(stdout);
18591
18592 #ifdef SIGBUS
18593     signal(SIGBUS, bletch);
18594 #endif
18595
18596     buf[0] = 0;
18597     buf[1] = 0;
18598     buf[2] = 0;
18599     buf[3] = 1;
18600     buf[4] = 0;
18601     buf[5] = 0;
18602     buf[6] = 0;
18603     buf[7] = 1;
18604
18605     for (i = 0; i < 4; i++) {
18606         up = (U32*)(buf + i);
18607         if (! ((*up == 1 << (8*i)) ||   /* big-endian */
18608                (*up == 1 << (8*(3-i)))  /* little-endian */
18609               )
18610            )
18611         {
18612             printf("read failed (%x)\n", *up);
18613             exit(2);
18614         }
18615     }
18616
18617     /* write test */
18618     for (i = 0; i < 4; i++) {
18619         up = (U32*)(buf + i);
18620         *up = 0xBeef;
18621         if (*up != 0xBeef) {
18622             printf("write failed (%x)\n", *up);
18623             exit(3);
18624         }
18625     }
18626
18627     exit(0);
18628 #else
18629     printf("1\n");
18630     exit(1);
18631 #endif
18632     return 0;
18633 }
18634 EOCP
18635 set try
18636 if eval $compile_ok; then
18637         echo "(Testing for character data alignment may crash the test.  That's okay.)" >&4
18638         $run ./try 2>&1 >/dev/null
18639         case "$?" in
18640         0)      cat >&4 <<EOM
18641 You can access character data pretty unalignedly.
18642 EOM
18643                 d_u32align="$undef"
18644                 ;;
18645         *)      cat >&4 <<EOM
18646 It seems that you must access character data in an aligned manner.
18647 EOM
18648                 d_u32align="$define"
18649                 ;;
18650         esac
18651 else
18652         rp='Can you access character data at unaligned addresses?'
18653         dflt='n'
18654         . ./myread
18655         case "$ans" in
18656         [yY]*)  d_u32align="$undef"  ;;
18657         *)      d_u32align="$define" ;;
18658         esac
18659 fi
18660 $rm_try
18661 ;;
18662 esac
18663
18664 : see if ualarm exists
18665 set ualarm d_ualarm
18666 eval $inlibc
18667
18668 : see if umask exists
18669 set umask d_umask
18670 eval $inlibc
18671
18672 : see if unordered exists
18673 set unordered d_unordered
18674 eval $inlibc
18675
18676 : see if unsetenv exists
18677 set unsetenv d_unsetenv
18678 eval $inlibc
18679
18680 : see if usleep exists
18681 set usleep d_usleep
18682 eval $inlibc
18683
18684 : see if prototype for usleep is available
18685 echo " "
18686 set d_usleepproto usleep $i_unistd unistd.h
18687 eval $hasproto
18688
18689 : see if ustat exists
18690 set ustat d_ustat
18691 eval $inlibc
18692
18693 : see if closedir exists
18694 set closedir d_closedir
18695 eval $inlibc
18696
18697 case "$d_closedir" in
18698 "$define")
18699         echo " "
18700         echo "Checking whether closedir() returns a status..." >&4
18701         cat > try.c <<EOM
18702 #$i_dirent I_DIRENT             /**/
18703 #$i_sysdir I_SYS_DIR            /**/
18704 #$i_sysndir I_SYS_NDIR          /**/
18705 #$i_systypes I_SYS_TYPES        /**/
18706
18707 #if defined(I_SYS_TYPES)
18708 #include <sys/types.h>
18709 #endif
18710 #if defined(I_DIRENT)
18711 #include <dirent.h>
18712 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
18713 #include <sys/dir.h>
18714 #endif
18715 #else
18716 #ifdef I_SYS_NDIR
18717 #include <sys/ndir.h>
18718 #else
18719 #ifdef I_SYS_DIR
18720 #ifdef hp9000s500
18721 #include <ndir.h>       /* may be wrong in the future */
18722 #else
18723 #include <sys/dir.h>
18724 #endif
18725 #endif
18726 #endif
18727 #endif
18728 int main() { return closedir(opendir(".")); }
18729 EOM
18730         set try
18731         if eval $compile_ok; then
18732                 if $run ./try > /dev/null 2>&1 ; then
18733                         echo "Yes, it does."
18734                         val="$undef"
18735                 else
18736                         echo "No, it doesn't."
18737                         val="$define"
18738                 fi
18739         else
18740                 echo "(I can't seem to compile the test program--assuming it doesn't)"
18741                 val="$define"
18742         fi
18743         ;;
18744 *)
18745         val="$undef";
18746         ;;
18747 esac
18748 set d_void_closedir
18749 eval $setvar
18750 $rm_try
18751
18752 : see if there is a wait4
18753 set wait4 d_wait4
18754 eval $inlibc
18755
18756 : see if waitpid exists
18757 set waitpid d_waitpid
18758 eval $inlibc
18759
18760 : see if wcstombs exists
18761 set wcstombs d_wcstombs
18762 eval $inlibc
18763
18764 : see if wctomb exists
18765 set wctomb d_wctomb
18766 eval $inlibc
18767
18768 : see if writev exists
18769 set writev d_writev
18770 eval $inlibc
18771
18772 : preserve RCS keywords in files with variable substitution, grrr
18773 Date='$Date'
18774 Id='$Id'
18775 Log='$Log'
18776 RCSfile='$RCSfile'
18777 Revision='$Revision'
18778
18779 : check for alignment requirements
18780 echo " "
18781 case "$usecrosscompile$multiarch" in
18782 *$define*)
18783         $cat <<EOM
18784 You seem to be either cross-compiling or doing a multiarchitecture build,
18785 skipping the memory alignment check.
18786
18787 EOM
18788         case "$alignbytes" in
18789         '') alignbytes=8 ;;
18790         esac
18791         ;;
18792 *)
18793         case "$alignbytes" in
18794         '') echo "Checking alignment constraints..." >&4
18795                 if $test "X$uselongdouble" = Xdefine -a "X$d_longdbl" = Xdefine; then
18796                         $cat >try.c <<'EOCP'
18797 typedef long double NV;
18798 EOCP
18799                 else
18800                         $cat >try.c <<'EOCP'
18801 typedef double NV;
18802 EOCP
18803                 fi
18804                 $cat >>try.c <<'EOCP'
18805 #include <stdio.h>
18806 struct foobar {
18807         char foo;
18808         NV bar;
18809 } try_algn;
18810 int main()
18811 {
18812     printf("%d\n", (int)((char *)&try_algn.bar - (char *)&try_algn.foo));
18813     return(0);
18814 }
18815 EOCP
18816                 set try
18817                 if eval $compile_ok; then
18818                         dflt=`$run ./try`
18819                 else
18820                         dflt='8'
18821                         echo "(I can't seem to compile the test program...)"
18822                 fi
18823                 ;;
18824         *) dflt="$alignbytes"
18825                 ;;
18826         esac
18827         rp="Doubles must be aligned on a how-many-byte boundary?"
18828         . ./myread
18829         alignbytes="$ans"
18830         $rm_try
18831         ;;
18832 esac
18833
18834
18835 : set the base revision
18836 baserev=5.0
18837
18838 : check for length of character
18839 echo " "
18840 case "$charsize" in
18841 '')
18842         echo "Checking to see how big your characters are (hey, you never know)..." >&4
18843         $cat >try.c <<EOCP
18844 #include <stdio.h>
18845 #$i_stdlib I_STDLIB
18846 #ifdef I_STDLIB
18847 #include <stdlib.h>
18848 #endif
18849 int main()
18850 {
18851     printf("%d\n", (int)sizeof(char));
18852     exit(0);
18853 }
18854 EOCP
18855         set try
18856         if eval $compile_ok; then
18857                 dflt=`$run ./try`
18858         else
18859                 dflt='1'
18860                 echo "(I can't seem to compile the test program.  Guessing...)"
18861         fi
18862         ;;
18863 *)
18864         dflt="$charsize"
18865         ;;
18866 esac
18867 rp="What is the size of a character (in bytes)?"
18868 . ./myread
18869 charsize="$ans"
18870 $rm_try
18871
18872 : Check for the number of bits in a character
18873 case "$charbits" in
18874 '')     echo "Checking how long a character is (in bits)..." >&4
18875         $cat >try.c <<EOCP
18876 #include <stdio.h>
18877 int main ()
18878 {
18879     int n;
18880     unsigned char c;
18881     for (c = 1, n = 0; c; c <<= 1, n++) ;
18882     printf ("%d\n", n);
18883     return (0);
18884     }
18885 EOCP
18886         set try
18887         if eval $compile_ok; then
18888                 dflt=`$run ./try`
18889         else
18890                 dflt='8'
18891                 echo "(I can't seem to compile the test program.  Guessing...)"
18892         fi
18893         ;;
18894 *)
18895         dflt="$charbits"
18896         ;;
18897 esac
18898 rp="What is the length of a character (in bits)?"
18899 . ./myread
18900 charbits="$ans"
18901 $rm_try
18902 case "$charbits" in
18903 8)      ;;
18904 *)      cat >&4 << EOM
18905 Your system has an unsigned character size of $charbits bits, which
18906 is rather unusual (normally it is 8 bits).  Perl likely will not work
18907 correctly on your system, with subtle bugs in various places.
18908 EOM
18909         rp='Do you really want to continue?'
18910         dflt='n'
18911         . ./myread
18912         case "$ans" in
18913                 [yY])   echo >&4 "Okay, continuing."    ;;
18914                 *)      exit 1                          ;;
18915         esac
18916 esac
18917
18918 : how do we concatenate cpp tokens here?
18919 echo " "
18920 echo "Checking to see how your cpp does stuff like concatenate tokens..." >&4
18921 $cat >cpp_stuff.c <<'EOCP'
18922 #define RCAT(a,b)a/**/b
18923 #define ACAT(a,b)a ## b
18924 RCAT(Rei,ser)
18925 ACAT(Cir,cus)
18926 EOCP
18927 $cppstdin $cppflags $cppminus <cpp_stuff.c >cpp_stuff.out 2>&1
18928 if $contains 'Circus' cpp_stuff.out >/dev/null 2>&1; then
18929         echo "Oh!  Smells like ANSI's been here." >&4
18930         echo "We can catify or stringify, separately or together!"
18931         cpp_stuff=42
18932 elif $contains 'Reiser' cpp_stuff.out >/dev/null 2>&1; then
18933         echo "Ah, yes!  The good old days!" >&4
18934         echo "However, in the good old days we don't know how to stringify and"
18935         echo "catify at the same time."
18936         cpp_stuff=1
18937 else
18938         $cat >&4 <<EOM
18939 Hmm, I don't seem to be able to concatenate tokens with your cpp.
18940 You're going to have to edit the values of CAT[2-5] in config.h...
18941 EOM
18942         cpp_stuff="/* Help! How do we handle cpp_stuff? */*/"
18943 fi
18944 $rm -f cpp_stuff.*
18945
18946 : see if this is a db.h system
18947 set db.h i_db
18948 eval $inhdr
18949
18950 case "$i_db" in
18951 $define)
18952         : Check db version.
18953         echo " "
18954         echo "Checking Berkeley DB version ..." >&4
18955         $cat >try.c <<EOCP
18956 #$d_const HASCONST
18957 #ifndef HASCONST
18958 #define const
18959 #endif
18960 #include <sys/types.h>
18961 #include <stdio.h>
18962 #$i_stdlib I_STDLIB
18963 #ifdef I_STDLIB
18964 #include <stdlib.h>
18965 #endif
18966 #include <db.h>
18967 int main(int argc, char *argv[])
18968 {
18969 #ifdef DB_VERSION_MAJOR /* DB version >= 2 */
18970     int Major, Minor, Patch ;
18971     unsigned long Version ;
18972     (void)db_version(&Major, &Minor, &Patch) ;
18973     if (argc == 2) {
18974         printf("%d %d %d %d %d %d\n",
18975                DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH,
18976                Major, Minor, Patch);
18977         exit(0);
18978     }
18979     printf("You have Berkeley DB Version 2 or greater.\n");
18980
18981     printf("db.h is from Berkeley DB Version %d.%d.%d\n",
18982                 DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH);
18983     printf("libdb is from Berkeley DB Version %d.%d.%d\n",
18984                 Major, Minor, Patch) ;
18985
18986     /* check that db.h & libdb are compatible */
18987     if (DB_VERSION_MAJOR != Major || DB_VERSION_MINOR != Minor || DB_VERSION_PATCH != Patch) {
18988         printf("db.h and libdb are incompatible.\n") ;
18989         exit(3);
18990     }
18991
18992     printf("db.h and libdb are compatible.\n") ;
18993
18994     Version = DB_VERSION_MAJOR * 1000000 + DB_VERSION_MINOR * 1000
18995                 + DB_VERSION_PATCH ;
18996
18997     /* needs to be >= 2.3.4 */
18998     if (Version < 2003004) {
18999     /* if (DB_VERSION_MAJOR == 2 && DB_VERSION_MINOR == 0 && DB_VERSION_PATCH < 5) { */
19000         printf("Perl needs Berkeley DB 2.3.4 or greater.\n") ;
19001         exit(2);
19002     }
19003
19004     exit(0);
19005 #else
19006 #if defined(_DB_H_) && defined(BTREEMAGIC) && defined(HASHMAGIC)
19007     if (argc == 2) {
19008         printf("1 0 0\n");
19009         exit(0);
19010     }
19011     printf("You have Berkeley DB Version 1.\n");
19012     exit(0);    /* DB version < 2: the coast is clear. */
19013 #else
19014     exit(1);    /* <db.h> not Berkeley DB? */
19015 #endif
19016 #endif
19017 }
19018 EOCP
19019         set try
19020         if eval $compile_ok && $run ./try; then
19021                 echo 'Looks OK.' >&4
19022                 set `$run ./try 1`
19023                 db_version_major=$1
19024                 db_version_minor=$2
19025                 db_version_patch=$3
19026         else
19027                 echo "I can't use Berkeley DB with your <db.h>.  I'll disable Berkeley DB." >&4
19028                 i_db=$undef
19029                 case " $libs " in
19030                 *"-ldb "*)
19031                         : Remove db from list of libraries to use
19032                         echo "Removing unusable -ldb from library list" >&4
19033                         set `echo X $libs | $sed -e 's/-ldb / /' -e 's/-ldb$//'`
19034                         shift
19035                         libs="$*"
19036                         echo "libs = $libs" >&4
19037                         ;;
19038                 esac
19039         fi
19040         $rm_try
19041         ;;
19042 esac
19043
19044 case "$i_db" in
19045 define)
19046         : Check the return type needed for hash
19047         echo " "
19048         echo "Checking return type needed for hash for Berkeley DB ..." >&4
19049         $cat >try.c <<EOCP
19050 #$d_const HASCONST
19051 #ifndef HASCONST
19052 #define const
19053 #endif
19054 #include <sys/types.h>
19055 #include <db.h>
19056
19057 #ifndef DB_VERSION_MAJOR
19058 u_int32_t hash_cb (ptr, size)
19059 const void *ptr;
19060 size_t size;
19061 {
19062 }
19063 HASHINFO info;
19064 int main()
19065 {
19066         info.hash = hash_cb;
19067 }
19068 #endif
19069 EOCP
19070         if $cc $ccflags -c try.c >try.out 2>&1 ; then
19071                 if $contains warning try.out >>/dev/null 2>&1 ; then
19072                         db_hashtype='int'
19073                 else
19074                         db_hashtype='u_int32_t'
19075                 fi
19076         else
19077                 : XXX Maybe we should just give up here.
19078                 db_hashtype=u_int32_t
19079                 $cat try.out >&4
19080                 echo "Help:  I can't seem to compile the db test program." >&4
19081                 echo "Something's wrong, but I'll assume you use $db_hashtype." >&4
19082         fi
19083         $rm_try
19084         echo "Your version of Berkeley DB uses $db_hashtype for hash."
19085         ;;
19086 *)      db_hashtype=u_int32_t
19087         ;;
19088 esac
19089 case "$i_db" in
19090 define)
19091         : Check the return type needed for prefix
19092         echo " "
19093         echo "Checking return type needed for prefix for Berkeley DB ..." >&4
19094         cat >try.c <<EOCP
19095 #$d_const HASCONST
19096 #ifndef HASCONST
19097 #define const
19098 #endif
19099 #include <sys/types.h>
19100 #include <db.h>
19101
19102 #ifndef DB_VERSION_MAJOR
19103 size_t prefix_cb (key1, key2)
19104 const DBT *key1;
19105 const DBT *key2;
19106 {
19107 }
19108 BTREEINFO info;
19109 int main()
19110 {
19111         info.prefix = prefix_cb;
19112 }
19113 #endif
19114 EOCP
19115         if $cc $ccflags -c try.c  >try.out 2>&1 ; then
19116                 if $contains warning try.out >>/dev/null 2>&1 ; then
19117                         db_prefixtype='int'
19118                 else
19119                         db_prefixtype='size_t'
19120                 fi
19121         else
19122                 db_prefixtype='size_t'
19123                 : XXX Maybe we should just give up here.
19124                 $cat try.out >&4
19125                 echo "Help:  I can't seem to compile the db test program." >&4
19126                 echo "Something's wrong, but I'll assume you use $db_prefixtype." >&4
19127         fi
19128         $rm_try
19129         echo "Your version of Berkeley DB uses $db_prefixtype for prefix."
19130         ;;
19131 *)      db_prefixtype='size_t'
19132         ;;
19133 esac
19134
19135 : How can we generate normalized random numbers ?
19136 echo " "
19137 echo "Looking for a random number function..." >&4
19138 case "$randfunc" in
19139 '')
19140         if set drand48 val -f; eval $csym; $val; then
19141                 dflt="drand48"
19142                 echo "Good, found drand48()." >&4
19143         elif set random val -f; eval $csym; $val; then
19144                 dflt="random"
19145                 echo "OK, found random()." >&4
19146         else
19147                 dflt="rand"
19148                 echo "Yick, looks like I have to use rand()." >&4
19149         fi
19150         echo " "
19151         ;;
19152 *)
19153         dflt="$randfunc"
19154         ;;
19155 esac
19156 cont=true
19157
19158 case "$ccflags" in
19159 *-Dmy_rand=*|*-Dmy_srand=*)
19160         echo "Removing obsolete -Dmy_rand, -Dmy_srand, and -Drandbits from ccflags." >&4
19161         ccflags="`echo $ccflags | sed -e 's/-Dmy_rand=random/ /'`"
19162         ccflags="`echo $ccflags | sed -e 's/-Dmy_srand=srandom/ /'`"
19163         ccflags="`echo $ccflags | sed -e 's/-Drandbits=[0-9][0-9]*/ /'`"
19164         ;;
19165 esac
19166
19167 while $test "$cont"; do
19168         rp="Use which function to generate random numbers?"
19169         . ./myread
19170         if $test "$ans" = "$dflt"; then
19171                 : null
19172         else
19173                 randbits=''
19174         fi
19175         randfunc="$ans"
19176         if set $ans val -f; eval $csym; $val; then
19177                 cont=''
19178         else
19179                 dflt=y
19180                 rp="I cannot find function $ans. Use that name anyway?"
19181                 . ./myread
19182                 dflt=rand
19183                 case "$ans" in
19184                         [yY]*) cont='';;
19185                 esac
19186         fi
19187         case "$cont" in
19188         '')
19189                 case "$randfunc" in
19190                 drand48)
19191                         drand01="drand48()"
19192                         seedfunc="srand48"
19193                         randbits=48
19194                         randseedtype=long
19195                         ;;
19196                 rand|random)
19197                         case "$randbits" in
19198                         '')
19199 echo "Checking to see how many bits your $randfunc() function produces..." >&4
19200                                 $cat >try.c <<EOCP
19201 #$i_unistd I_UNISTD
19202 #$i_stdlib I_STDLIB
19203 #include <stdio.h>
19204 #ifdef I_UNISTD
19205 #  include <unistd.h>
19206 #endif
19207 #ifdef I_STDLIB
19208 #  include <stdlib.h>
19209 #endif
19210 int main()
19211 {
19212         register int i;
19213         register unsigned long tmp;
19214         register unsigned long max = 0L;
19215
19216         for (i = 1000; i; i--) {
19217                 tmp = (unsigned long) $randfunc();
19218                 if (tmp > max) max = tmp;
19219         }
19220         for (i = 0; max; i++)
19221                 max /= 2;
19222         printf("%d\n",i);
19223 }
19224 EOCP
19225                                 set try
19226                                 if eval $compile_ok; then
19227                                         dflt=`try`
19228                                 else
19229                                         dflt='?'
19230                                         echo "(I can't seem to compile the test program...)"
19231                                 fi
19232                                 ;;
19233                         *)
19234                                 dflt="$randbits"
19235                                 ;;
19236                         esac
19237                         rp="How many bits does your $randfunc() function produce?"
19238                         . ./myread
19239                         randbits="$ans"
19240                         $rm_try
19241                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
19242                         seedfunc="s$randfunc"
19243                         randseedtype=unsigned
19244                         ;;
19245                 *)
19246                         dflt="31"
19247                         rp="How many bits does your $randfunc() function produce?"
19248                         . ./myread
19249                         randbits="$ans"
19250                         seedfunc="s$randfunc"
19251                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
19252                         if set $seedfunc val -f; eval $csym; $val; then
19253                                 echo "(Using $seedfunc() to seed random generator)"
19254                         else
19255                                 echo "(Warning: no $seedfunc() to seed random generator)"
19256                                 seedfunc=rand
19257                         fi
19258                         randseedtype=unsigned
19259                         ;;
19260                 esac
19261                 ;;
19262         esac
19263 done
19264
19265 : Determine if this is an EBCDIC system
19266 echo " "
19267 echo "Determining whether or not we are on an EBCDIC system..." >&4
19268 $cat >try.c <<'EOM'
19269 int main()
19270 {
19271   if ('M'==0xd4) return 0;
19272   return 1;
19273 }
19274 EOM
19275
19276 val=$undef
19277 set try
19278 if eval $compile_ok; then
19279         if $run ./try; then
19280                 echo "You seem to speak EBCDIC." >&4
19281                 val="$define"
19282         else
19283                 echo "Nope, no EBCDIC, probably ASCII or some ISO Latin. Or UTF-8." >&4
19284         fi
19285 else
19286         echo "I'm unable to compile the test program." >&4
19287         echo "I'll assume ASCII or some ISO Latin. Or UTF8." >&4
19288 fi
19289 $rm_try
19290 set ebcdic
19291 eval $setvar
19292
19293 : Check how to flush
19294 echo " "
19295 $cat >&4 <<EOM
19296 Checking how to flush all pending stdio output...
19297 EOM
19298 # I only know how to find the first 32 possibly open files on SunOS.
19299 # See also hints/sunos_4_1.sh and util.c  --AD
19300 case "$osname" in
19301 sunos) $echo '#define PERL_FFLUSH_ALL_FOPEN_MAX 32' > try.c ;;
19302 esac
19303 $cat >>try.c <<EOCP
19304 #include <stdio.h>
19305 #$i_stdlib I_STDLIB
19306 #ifdef I_STDLIB
19307 #include <stdlib.h>
19308 #endif
19309 #$i_unistd I_UNISTD
19310 #ifdef I_UNISTD
19311 # include <unistd.h>
19312 #endif
19313 #$d_sysconf HAS_SYSCONF
19314 #$d_stdio_stream_array HAS_STDIO_STREAM_ARRAY
19315 #ifdef HAS_STDIO_STREAM_ARRAY
19316 # define STDIO_STREAM_ARRAY $stdio_stream_array
19317 #endif
19318 int main() {
19319   FILE* p;
19320   unlink("try.out");
19321   p = fopen("try.out", "w");
19322 #ifdef TRY_FPUTC
19323   fputc('x', p);
19324 #else
19325 # ifdef TRY_FPRINTF
19326   fprintf(p, "x");
19327 # endif
19328 #endif
19329 #ifdef TRY_FFLUSH_NULL
19330   fflush(NULL);
19331 #endif
19332 #ifdef TRY_FFLUSH_ALL
19333   {
19334     long open_max = -1;
19335 # ifdef PERL_FFLUSH_ALL_FOPEN_MAX
19336     open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
19337 # else
19338 #  if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
19339     open_max = sysconf(_SC_OPEN_MAX);
19340 #  else
19341 #   ifdef FOPEN_MAX
19342     open_max = FOPEN_MAX;
19343 #   else
19344 #    ifdef OPEN_MAX
19345     open_max = OPEN_MAX;
19346 #    else
19347 #     ifdef _NFILE
19348     open_max = _NFILE;
19349 #     endif
19350 #    endif
19351 #   endif
19352 #  endif
19353 # endif
19354 # ifdef HAS_STDIO_STREAM_ARRAY
19355     if (open_max > 0) {
19356       long i;
19357       for (i = 0; i < open_max; i++)
19358             if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
19359                 STDIO_STREAM_ARRAY[i]._file < open_max &&
19360                 STDIO_STREAM_ARRAY[i]._flag)
19361                 fflush(&STDIO_STREAM_ARRAY[i]);
19362     }
19363   }
19364 # endif
19365 #endif
19366   _exit(42);
19367 }
19368 EOCP
19369 : first we have to find out how _not_ to flush
19370 $to try.c
19371 if $test "X$fflushNULL" = X -o "X$fflushall" = X; then
19372     output=''
19373     set try -DTRY_FPUTC
19374     if eval $compile; then
19375             $run ./try 2>/dev/null
19376             code="$?"
19377             $from try.out
19378             if $test ! -s try.out -a "X$code" = X42; then
19379                 output=-DTRY_FPUTC
19380             fi
19381     fi
19382     case "$output" in
19383     '')
19384             set try -DTRY_FPRINTF
19385             if eval $compile; then
19386                     $run ./try 2>/dev/null
19387                     code="$?"
19388                     $from try.out
19389                     if $test ! -s try.out -a "X$code" = X42; then
19390                         output=-DTRY_FPRINTF
19391                     fi
19392             fi
19393         ;;
19394     esac
19395 fi
19396 : check for fflush NULL behaviour
19397 case "$fflushNULL" in
19398 '')     set try -DTRY_FFLUSH_NULL $output
19399         if eval $compile; then
19400                 $run ./try 2>/dev/null
19401                 code="$?"
19402                 $from try.out
19403                 if $test -s try.out -a "X$code" = X42; then
19404                         fflushNULL="`$cat try.out`"
19405                 else
19406                         if $test "X$code" != X42; then
19407                                 $cat >&4 <<EOM
19408 (If this test failed, don't worry, we'll try another method shortly.)
19409 EOM
19410                         fi
19411                 fi
19412         fi
19413         $rm -f core try.core core.try.*
19414         case "$fflushNULL" in
19415         x)      $cat >&4 <<EOM
19416 Your fflush(NULL) works okay for output streams.
19417 Let's see if it clobbers input pipes...
19418 EOM
19419 # As of mid-March 2000 all versions of Solaris appear to have a stdio
19420 # bug that improperly flushes the input end of pipes.  So we avoid the
19421 # autoflush on fork/system/exec support for now. :-(
19422 $cat >tryp.c <<EOCP
19423 #include <stdio.h>
19424 int
19425 main(int argc, char **argv)
19426 {
19427     char buf[1024];
19428     int i;
19429     char *bp = buf;
19430     while (1) {
19431         while ((i = getc(stdin)) != -1
19432                && (*bp++ = i) != '\n'
19433                && bp < &buf[1024])
19434         /* DO NOTHING */ ;
19435         *bp = '\0';
19436         fprintf(stdout, "%s", buf);
19437         fflush(NULL);
19438         if (i == -1)
19439             return 0;
19440         bp = buf;
19441     }
19442 }
19443 EOCP
19444                 fflushNULL="$define"
19445                 set tryp
19446                 if eval $compile; then
19447                     $rm -f tryp.out
19448                     $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
19449                     if cmp tryp.c tryp.out >/dev/null 2>&1; then
19450                        $cat >&4 <<EOM
19451 fflush(NULL) seems to behave okay with input streams.
19452 EOM
19453                         fflushNULL="$define"
19454                     else
19455                         $cat >&4 <<EOM
19456 Ouch, fflush(NULL) clobbers input pipes!  We will not use it.
19457 EOM
19458                         fflushNULL="$undef"
19459                     fi
19460                 fi
19461                 $rm -f core tryp.c tryp.core core.tryp.*
19462                 ;;
19463         '')     $cat >&4 <<EOM
19464 Your fflush(NULL) isn't working (contrary to ANSI C).
19465 EOM
19466                 fflushNULL="$undef"
19467                 ;;
19468         *)      $cat >&4 <<EOM
19469 Cannot figure out whether your fflush(NULL) works or not.
19470 I'm assuming it doesn't (contrary to ANSI C).
19471 EOM
19472                 fflushNULL="$undef"
19473                 ;;
19474         esac
19475         ;;
19476 $define|true|[yY]*)
19477         fflushNULL="$define"
19478         ;;
19479 *)
19480         fflushNULL="$undef"
19481         ;;
19482 esac
19483 : check explicit looping only if NULL did not work, and if the pipe
19484 : bug does not show up on an explicit flush too
19485 case "$fflushNULL" in
19486 "$undef")
19487         $cat >tryp.c <<EOCP
19488 #include <stdio.h>
19489 int
19490 main(int argc, char **argv)
19491 {
19492     char buf[1024];
19493     int i;
19494     char *bp = buf;
19495     while (1) {
19496         while ((i = getc(stdin)) != -1
19497                && (*bp++ = i) != '\n'
19498                && bp < &buf[1024])
19499         /* DO NOTHING */ ;
19500         *bp = '\0';
19501         fprintf(stdout, "%s", buf);
19502         fflush(stdin);
19503         if (i == -1)
19504             return 0;
19505         bp = buf;
19506     }
19507 }
19508 EOCP
19509         set tryp
19510         if eval $compile; then
19511             $rm -f tryp.out
19512             $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
19513             if cmp tryp.c tryp.out >/dev/null 2>&1; then
19514                $cat >&4 <<EOM
19515 Good, at least fflush(stdin) seems to behave okay when stdin is a pipe.
19516 EOM
19517                 : now check for fflushall behaviour
19518                 case "$fflushall" in
19519                 '')     set try -DTRY_FFLUSH_ALL $output
19520                         if eval $compile; then
19521                                 $cat >&4 <<EOM
19522 (Now testing the other method--but note that this also may fail.)
19523 EOM
19524                                 $run ./try 2>/dev/null
19525                                 code=$?
19526                                 $from try.out
19527                                 if $test -s try.out -a "X$code" = X42; then
19528                                         fflushall="`$cat try.out`"
19529                                 fi
19530                         fi
19531                         $rm_try
19532                         case "$fflushall" in
19533                         x)      $cat >&4 <<EOM
19534 Whew. Flushing explicitly all the stdio streams works.
19535 EOM
19536                                 fflushall="$define"
19537                                 ;;
19538                         '')     $cat >&4 <<EOM
19539 Sigh. Flushing explicitly all the stdio streams doesn't work.
19540 EOM
19541                                 fflushall="$undef"
19542                                 ;;
19543                         *)      $cat >&4 <<EOM
19544 Cannot figure out whether flushing stdio streams explicitly works or not.
19545 I'm assuming it doesn't.
19546 EOM
19547                                 fflushall="$undef"
19548                                 ;;
19549                         esac
19550                         ;;
19551                 "$define"|true|[yY]*)
19552                         fflushall="$define"
19553                         ;;
19554                 *)
19555                         fflushall="$undef"
19556                         ;;
19557                 esac
19558             else
19559                 $cat >&4 <<EOM
19560 All is futile.  Even fflush(stdin) clobbers input pipes!
19561 EOM
19562                 fflushall="$undef"
19563             fi
19564         else
19565             fflushall="$undef"
19566         fi
19567         $rm -f core tryp.c tryp.core core.tryp.*
19568         ;;
19569 *)      fflushall="$undef"
19570         ;;
19571 esac
19572
19573 case "$fflushNULL$fflushall" in
19574 undefundef)
19575         $cat <<EOM
19576 OK, I give up.  I cannot figure out how to flush pending stdio output.
19577 We won't be flushing handles at all before fork/exec/popen.
19578 EOM
19579         ;;
19580 esac
19581 $rm_try tryp
19582
19583 : Store the full pathname to the ar program for use in the C program
19584 : Respect a hint or command line value for full_ar.
19585 case "$full_ar" in
19586 '') full_ar=$ar ;;
19587 esac
19588
19589 : Store the full pathname to the sed program for use in the C program
19590 full_sed=$sed
19591
19592 : see what type gids are declared as in the kernel
19593 echo " "
19594 echo "Looking for the type for group ids returned by getgid()."
19595 set gid_t gidtype xxx stdio.h sys/types.h
19596 eval $typedef
19597 case "$gidtype" in
19598 xxx)
19599         xxx=`./findhdr sys/user.h`
19600         set `grep 'groups\[NGROUPS\];' "$xxx" 2>/dev/null` unsigned short
19601         case $1 in
19602         unsigned) dflt="$1 $2" ;;
19603         *) dflt="$1" ;;
19604         esac
19605         ;;
19606 *) dflt="$gidtype";;
19607 esac
19608 case "$gidtype" in
19609 gid_t) echo "gid_t found." ;;
19610 *)      rp="What is the type for group ids returned by getgid()?"
19611         . ./myread
19612         gidtype="$ans"
19613         ;;
19614 esac
19615
19616 : Check the size of GID
19617 echo " "
19618 case "$gidtype" in
19619 *_t) zzz="$gidtype"     ;;
19620 *)   zzz="gid"          ;;
19621 esac
19622 echo "Checking the size of $zzz..." >&4
19623 cat > try.c <<EOCP
19624 #include <sys/types.h>
19625 #include <stdio.h>
19626 #$i_stdlib I_STDLIB
19627 #ifdef I_STDLIB
19628 #include <stdlib.h>
19629 #endif
19630 int main() {
19631     printf("%d\n", (int)sizeof($gidtype));
19632     exit(0);
19633 }
19634 EOCP
19635 set try
19636 if eval $compile_ok; then
19637         yyy=`$run ./try`
19638         case "$yyy" in
19639         '')     gidsize=4
19640                 echo "(I can't execute the test program--guessing $gidsize.)" >&4
19641                 ;;
19642         *)      gidsize=$yyy
19643                 echo "Your $zzz is $gidsize bytes long."
19644                 ;;
19645         esac
19646 else
19647         gidsize=4
19648         echo "(I can't compile the test program--guessing $gidsize.)" >&4
19649 fi
19650
19651
19652 : Check if GID is signed
19653 echo " "
19654 case "$gidtype" in
19655 *_t) zzz="$gidtype"     ;;
19656 *)   zzz="gid"          ;;
19657 esac
19658 echo "Checking the sign of $zzz..." >&4
19659 cat > try.c <<EOCP
19660 #include <sys/types.h>
19661 #include <stdio.h>
19662 int main() {
19663         $gidtype foo = -1;
19664         if (foo < 0)
19665                 printf("-1\n");
19666         else
19667                 printf("1\n");
19668 }
19669 EOCP
19670 set try
19671 if eval $compile; then
19672         yyy=`$run ./try`
19673         case "$yyy" in
19674         '')     gidsign=1
19675                 echo "(I can't execute the test program--guessing unsigned.)" >&4
19676                 ;;
19677         *)      gidsign=$yyy
19678                 case "$gidsign" in
19679                  1) echo "Your $zzz is unsigned." ;;
19680                 -1) echo "Your $zzz is signed."   ;;
19681                 esac
19682                 ;;
19683         esac
19684 else
19685         gidsign=1
19686         echo "(I can't compile the test program--guessing unsigned.)" >&4
19687 fi
19688
19689
19690 : Check 64bit sizes
19691 echo " "
19692
19693 if $test X"$quadtype" != X; then
19694
19695 echo "Checking how to print 64-bit integers..." >&4
19696
19697 if $test X"$sPRId64" = X -a X"$quadtype" = Xint; then
19698         $cat >try.c <<'EOCP'
19699 #include <sys/types.h>
19700 #include <stdio.h>
19701 int main() {
19702   int q = 12345678901;
19703   printf("%ld\n", q);
19704 }
19705 EOCP
19706         set try
19707         if eval $compile; then
19708                 yyy=`$run ./try`
19709                 case "$yyy" in
19710                 12345678901)
19711                         sPRId64='"d"'; sPRIi64='"i"'; sPRIu64='"u"';
19712                         sPRIo64='"o"'; sPRIx64='"x"'; sPRIXU64='"X"';
19713                         echo "We will use %d."
19714                         ;;
19715                 esac
19716         fi
19717 fi
19718
19719 if $test X"$sPRId64" = X -a X"$quadtype" = Xlong; then
19720         $cat >try.c <<'EOCP'
19721 #include <sys/types.h>
19722 #include <stdio.h>
19723 int main() {
19724   long q = 12345678901;
19725   printf("%ld\n", q);
19726 }
19727 EOCP
19728         set try
19729         if eval $compile; then
19730                 yyy=`$run ./try`
19731                 case "$yyy" in
19732                 12345678901)
19733                         sPRId64='"ld"'; sPRIi64='"li"'; sPRIu64='"lu"';
19734                         sPRIo64='"lo"'; sPRIx64='"lx"'; sPRIXU64='"lX"';
19735                         echo "We will use %ld."
19736                         ;;
19737                 esac
19738         fi
19739 fi
19740
19741 if $test X"$sPRId64" = X -a X"$i_inttypes" = X"$define" -a X"$quadtype" = Xint64_t; then
19742         $cat >try.c <<'EOCP'
19743 #include <sys/types.h>
19744 #include <inttypes.h>
19745 #include <stdio.h>
19746 int main() {
19747   int64_t q = 12345678901;
19748   printf("%" PRId64 "\n", q);
19749 }
19750 EOCP
19751         set try
19752         if eval $compile; then
19753                 yyy=`$run ./try`
19754                 case "$yyy" in
19755                 12345678901)
19756                         sPRId64=PRId64; sPRIi64=PRIi64; sPRIu64=PRIu64;
19757                         sPRIo64=PRIo64; sPRIx64=PRIx64; sPRIXU64=PRIXU64;
19758                         echo "We will use the C9X style."
19759                         ;;
19760                 esac
19761         fi
19762 fi
19763
19764 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
19765         $cat >try.c <<EOCP
19766 #include <sys/types.h>
19767 #include <stdio.h>
19768 int main() {
19769   $quadtype q = 12345678901;
19770   printf("%Ld\n", q);
19771 }
19772 EOCP
19773         set try
19774         if eval $compile; then
19775                 yyy=`$run ./try`
19776                 case "$yyy" in
19777                 12345678901)
19778                         sPRId64='"Ld"'; sPRIi64='"Li"'; sPRIu64='"Lu"';
19779                         sPRIo64='"Lo"'; sPRIx64='"Lx"'; sPRIXU64='"LX"';
19780                         echo "We will use %Ld."
19781                         ;;
19782                 esac
19783         fi
19784 fi
19785
19786 if $test X"$sPRId64" = X -a X"$quadtype" = X"long long"; then
19787         $cat >try.c <<'EOCP'
19788 #include <sys/types.h>
19789 #include <stdio.h>
19790 int main() {
19791   long long q = 12345678901LL; /* AIX cc requires the LL suffix. */
19792   printf("%lld\n", q);
19793 }
19794 EOCP
19795         set try
19796         if eval $compile; then
19797                 yyy=`$run ./try`
19798                 case "$yyy" in
19799                 12345678901)
19800                         sPRId64='"lld"'; sPRIi64='"lli"'; sPRIu64='"llu"';
19801                         sPRIo64='"llo"'; sPRIx64='"llx"'; sPRIXU64='"llX"';
19802                         echo "We will use the %lld style."
19803                         ;;
19804                 esac
19805         fi
19806 fi
19807
19808 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
19809         $cat >try.c <<EOCP
19810 #include <sys/types.h>
19811 #include <stdio.h>
19812 int main() {
19813   $quadtype q = 12345678901;
19814   printf("%qd\n", q);
19815 }
19816 EOCP
19817         set try
19818         if eval $compile; then
19819                 yyy=`$run ./try`
19820                 case "$yyy" in
19821                 12345678901)
19822                         sPRId64='"qd"'; sPRIi64='"qi"'; sPRIu64='"qu"';
19823                         sPRIo64='"qo"'; sPRIx64='"qx"'; sPRIXU64='"qX"';
19824                         echo "We will use %qd."
19825                         ;;
19826                 esac
19827         fi
19828 fi
19829
19830 if $test X"$sPRId64" = X; then
19831         echo "Cannot figure out how to print 64-bit integers." >&4
19832 fi
19833 $rm_try
19834
19835 fi
19836
19837 case "$sPRId64" in
19838 '')     d_PRId64="$undef"; d_PRIi64="$undef"; d_PRIu64="$undef";
19839         d_PRIo64="$undef"; d_PRIx64="$undef"; d_PRIXU64="$undef";
19840         ;;
19841 *)      d_PRId64="$define"; d_PRIi64="$define"; d_PRIu64="$define";
19842         d_PRIo64="$define"; d_PRIx64="$define"; d_PRIXU64="$define";
19843         ;;
19844 esac
19845
19846 : Check format strings for internal types
19847 echo " "
19848 $echo "Checking the format strings to be used for Perl's internal types..." >&4
19849
19850 if $test X"$ivsize" = X8; then
19851         ivdformat="$sPRId64"
19852         uvuformat="$sPRIu64"
19853         uvoformat="$sPRIo64"
19854         uvxformat="$sPRIx64"
19855         uvXUformat="$sPRIXU64"
19856 else
19857         if $test X"$ivsize" = X"$longsize"; then
19858                 ivdformat='"ld"'
19859                 uvuformat='"lu"'
19860                 uvoformat='"lo"'
19861                 uvxformat='"lx"'
19862                 uvXUformat='"lX"'
19863         else
19864                 if $test X"$ivsize" = X"$intsize"; then
19865                         ivdformat='"d"'
19866                         uvuformat='"u"'
19867                         uvoformat='"o"'
19868                         uvxformat='"x"'
19869                         uvXUformat='"X"'
19870                 else
19871                         : far out
19872                         if $test X"$ivsize" = X"$shortsize"; then
19873                                 ivdformat='"hd"'
19874                                 uvuformat='"hu"'
19875                                 uvoformat='"ho"'
19876                                 uvxformat='"hx"'
19877                                 uvXUformat='"hX"'
19878                         fi
19879                 fi
19880         fi
19881 fi
19882
19883 if $test X"$uselongdouble" = X"$define" -a X"$d_longdbl" = X"$define" -a X"$d_PRIgldbl" = X"$define"; then
19884         nveformat="$sPRIeldbl"
19885         nvfformat="$sPRIfldbl"
19886         nvgformat="$sPRIgldbl"
19887         nvEUformat="$sPRIEUldbl"
19888         nvFUformat="$sPRIFUldbl"
19889         nvGUformat="$sPRIGUldbl"
19890 else
19891         nveformat='"e"'
19892         nvfformat='"f"'
19893         nvgformat='"g"'
19894         nvEUformat='"E"'
19895         nvFUformat='"F"'
19896         nvGUformat='"G"'
19897 fi
19898
19899 case "$ivdformat" in
19900 '') echo "$0: Fatal: failed to find format strings, cannot continue." >&4
19901     exit 1
19902     ;;
19903 esac
19904
19905 : Check format string for GID
19906
19907 echo " "
19908 $echo "Checking the format string to be used for gids..." >&4
19909
19910 case "$gidsign" in
19911 -1)     if $test X"$gidsize" = X"$ivsize"; then
19912                 gidformat="$ivdformat"
19913         else
19914                 if $test X"$gidsize" = X"$longsize"; then
19915                         gidformat='"ld"'
19916                 else
19917                         if $test X"$gidsize" = X"$intsize"; then
19918                                 gidformat='"d"'
19919                         else
19920                                 if $test X"$gidsize" = X"$shortsize"; then
19921                                         gidformat='"hd"'
19922                                 fi
19923                         fi
19924                 fi
19925         fi
19926         ;;
19927 *)      if $test X"$gidsize" = X"$uvsize"; then
19928                 gidformat="$uvuformat"
19929         else
19930                 if $test X"$gidsize" = X"$longsize"; then
19931                         gidformat='"lu"'
19932                 else
19933                         if $test X"$gidsize" = X"$intsize"; then
19934                                 gidformat='"u"'
19935                         else
19936                                 if $test X"$gidsize" = X"$shortsize"; then
19937                                         gidformat='"hu"'
19938                                 fi
19939                         fi
19940                 fi
19941         fi
19942         ;;
19943 esac
19944
19945 : see if getgroups exists
19946 set getgroups d_getgrps
19947 eval $inlibc
19948
19949 : see if setgroups exists
19950 set setgroups d_setgrps
19951 eval $inlibc
19952
19953 : Find type of 2nd arg to 'getgroups()' and 'setgroups()'
19954 echo " "
19955 case "$d_getgrps$d_setgrps" in
19956 *define*)
19957         case "$groupstype" in
19958         '') dflt="$gidtype" ;;
19959         *)  dflt="$groupstype" ;;
19960         esac
19961         $cat <<EOM
19962 What type of pointer is the second argument to getgroups() and setgroups()?
19963 Usually this is the same as group ids, $gidtype, but not always.
19964
19965 EOM
19966         rp='What type pointer is the second argument to getgroups() and setgroups()?'
19967         . ./myread
19968         groupstype="$ans"
19969         ;;
19970 *)  groupstype="$gidtype";;
19971 esac
19972
19973 : MAD = Misc Attribute Definition
19974
19975 if $test $patchlevel -lt 9; then
19976 : MAD is not available in 5.8.x or earlier.
19977     ans=n;
19978 else
19979     case "$mad" in
19980     $define|true|[yY]*) dflt='y' ;;
19981     *)                  dflt='n' ;;
19982     esac
19983     cat <<EOM
19984
19985 Would you like to build with Misc Attribute Decoration? This is development
19986 work leading to a Perl 5 to Perl 6 convertor, which imposes a space and speed
19987 overhead on the interpreter.
19988
19989 If this doesn't make any sense to you, just accept the default '$dflt'.
19990 EOM
19991     rp='Build Perl with MAD?'
19992     . ./myread
19993 fi
19994 case "$ans" in
19995 y|Y)    val="$define"
19996         madlyh='madly.h madly.act madly.tab'
19997         madlysrc='madly.c'
19998         madlyobj="madly$_o" ;;
19999 *)      val="$undef"
20000         madlyh=''
20001         madlysrc=''
20002         madlyobj='' ;;
20003 esac
20004 set mad
20005 eval $setvar
20006
20007 : check whether make sets MAKE
20008 echo " "
20009 echo "Checking if your $make program sets \$(MAKE)..." >&4
20010 case "$make_set_make" in
20011 '')
20012         $sed 's/^X //' > testmake.mak << 'EOF'
20013 Xall:
20014 X       @echo 'maketemp="$(MAKE)"'
20015 EOF
20016         case "`$make -f testmake.mak 2>/dev/null`" in
20017         *maketemp=*) make_set_make='#' ;;
20018         *)      make_set_make="MAKE=$make" ;;
20019         esac
20020         $rm -f testmake.mak
20021         ;;
20022 esac
20023 case "$make_set_make" in
20024 '#') echo "Yup, it does.";;
20025 *) echo "Nope, it doesn't.";;
20026 esac
20027
20028 : see what type is used for mode_t
20029 rp="What is the type used for file modes for system calls (e.g. fchmod())?"
20030 set mode_t modetype int stdio.h sys/types.h
20031 eval $typedef_ask
20032
20033 : see if we need va_copy
20034 echo " "
20035 case "$i_stdarg" in
20036 "$define")
20037         $cat >try.c <<EOCP
20038 #include <stdarg.h>
20039 #include <stdio.h>
20040 #$i_stdlib I_STDLIB
20041 #ifdef I_STDLIB
20042 #include <stdlib.h>
20043 #endif
20044 #include <signal.h>
20045
20046 int
20047 ivfprintf(FILE *f, const char *fmt, va_list *valp)
20048 {
20049   return vfprintf(f, fmt, *valp);
20050 }
20051
20052 int
20053 myvfprintf(FILE *f, const  char *fmt, va_list val)
20054 {
20055   return ivfprintf(f, fmt, &val);
20056 }
20057
20058 int
20059 myprintf(char *fmt, ...)
20060 {
20061   va_list val;
20062   va_start(val, fmt);
20063   return myvfprintf(stdout, fmt, val);
20064 }
20065
20066 int
20067 main(int ac, char **av)
20068 {
20069   signal(SIGSEGV, exit);
20070
20071   myprintf("%s%cs all right, then\n", "that", '\'');
20072   exit(0);
20073 }
20074 EOCP
20075         set try
20076         if eval $compile && $run ./try 2>&1 >/dev/null; then
20077                 case "`$run ./try`" in
20078                 "that's all right, then")
20079                         okay=yes
20080                         ;;
20081                 esac
20082         fi
20083         case "$okay" in
20084         yes)    echo "It seems that you don't need va_copy()." >&4
20085                 need_va_copy="$undef"
20086                 ;;
20087         *)      echo "It seems that va_copy() or similar will be needed." >&4
20088                 need_va_copy="$define"
20089                 ;;
20090         esac
20091         $rm_try
20092         ;;
20093 *)      echo "You don't have <stdarg.h>, not checking for va_copy()." >&4
20094         ;;
20095 esac
20096
20097 : see what type is used for size_t
20098 rp="What is the type used for the length parameter for string functions?"
20099 set size_t sizetype 'unsigned int' stdio.h sys/types.h
20100 eval $typedef_ask
20101
20102 : check for type of arguments to gethostbyaddr. 
20103 if test "X$netdb_host_type" = X -o "X$netdb_hlen_type" = X; then
20104         case "$d_gethbyaddr" in
20105         $define)
20106                 $cat <<EOM
20107
20108 Checking to see what type of arguments are accepted by gethostbyaddr().
20109 EOM
20110                 hdrs="$define sys/types.h
20111                         $d_socket sys/socket.h 
20112                         $i_niin netinet/in.h 
20113                         $i_netdb netdb.h
20114                         $i_unistd unistd.h"
20115                 : The first arg can 'char *' or 'void *'
20116                 : The second arg is some of integral type
20117                 for xxx in in_addr_t 'const void *' 'const char *' 'void *' 'char *'; do
20118                         for yyy in size_t long int; do
20119                                 case "$netdb_host_type" in
20120                                 '')     try="$extern_C struct hostent *gethostbyaddr($xxx, $yyy, int);"
20121                                         if ./protochk "$try" $hdrs; then
20122                                                 echo "Your system accepts $xxx for the first arg."
20123                                                 echo "...and $yyy for the second arg."
20124                                                 netdb_host_type="$xxx"
20125                                                 netdb_hlen_type="$yyy"
20126                                         fi
20127                                         ;;
20128                                 esac
20129                         done
20130                 done
20131                 : In case none of those worked, prompt the user.
20132                 case "$netdb_host_type" in
20133                 '')     rp='What is the type for the 1st argument to gethostbyaddr?'
20134                         dflt='char *'
20135                         . ./myread
20136                         netdb_host_type=$ans
20137                         rp='What is the type for the 2nd argument to gethostbyaddr?'
20138                         dflt="$sizetype"
20139                         . ./myread
20140                         netdb_hlen_type=$ans
20141                         ;;
20142                 esac
20143                 ;;
20144         *)      : no gethostbyaddr, so pick harmless defaults
20145                 netdb_host_type='char *'
20146                 netdb_hlen_type="$sizetype"
20147                 ;;
20148         esac
20149         # Remove the "const" if needed. -- but then we'll have a 
20150         # prototype clash!
20151         # netdb_host_type=`echo "$netdb_host_type" | sed 's/^const //'`
20152 fi
20153
20154 : check for type of argument to gethostbyname. 
20155 if test "X$netdb_name_type" = X ; then
20156         case "$d_gethbyname" in
20157         $define)
20158                 $cat <<EOM
20159
20160 Checking to see what type of argument is accepted by gethostbyname().
20161 EOM
20162                 hdrs="$define sys/types.h
20163                         $d_socket sys/socket.h 
20164                         $i_niin netinet/in.h 
20165                         $i_netdb netdb.h
20166                         $i_unistd unistd.h"
20167                 for xxx in "const char *" "char *"; do
20168                         case "$netdb_name_type" in
20169                         '')     try="$extern_C struct hostent *gethostbyname($xxx);"
20170                                 if ./protochk "$try" $hdrs; then
20171                                         echo "Your system accepts $xxx."
20172                                         netdb_name_type="$xxx"
20173                                 fi
20174                                 ;;
20175                         esac
20176                 done
20177                 : In case none of those worked, prompt the user.
20178                 case "$netdb_name_type" in
20179                 '')     rp='What is the type for the 1st argument to gethostbyname?'
20180                         dflt='char *'
20181                         . ./myread
20182                         netdb_name_type=$ans
20183                         ;;
20184                 esac
20185                 ;;
20186         *)      : no gethostbyname, so pick harmless default
20187                 netdb_name_type='char *'
20188                 ;;
20189         esac
20190 fi
20191
20192 : check for type of 1st argument to getnetbyaddr. 
20193 if test "X$netdb_net_type" = X ; then
20194         case "$d_getnbyaddr" in
20195         $define)
20196                 $cat <<EOM
20197
20198 Checking to see what type of 1st argument is accepted by getnetbyaddr().
20199 EOM
20200                 hdrs="$define sys/types.h
20201                         $d_socket sys/socket.h 
20202                         $i_niin netinet/in.h 
20203                         $i_netdb netdb.h
20204                         $i_unistd unistd.h"
20205                 for xxx in in_addr_t "unsigned long" long "unsigned int" int; do
20206                         case "$netdb_net_type" in
20207                         '')     try="$extern_C struct netent *getnetbyaddr($xxx, int);"
20208                                 if ./protochk "$try" $hdrs; then
20209                                         echo "Your system accepts $xxx."
20210                                         netdb_net_type="$xxx"
20211                                 fi
20212                                 ;;
20213                         esac
20214                 done
20215                 : In case none of those worked, prompt the user.
20216                 case "$netdb_net_type" in
20217                 '')     rp='What is the type for the 1st argument to getnetbyaddr?'
20218                         dflt='long'
20219                         . ./myread
20220                         netdb_net_type=$ans
20221                         ;;
20222                 esac
20223                 ;;
20224         *)      : no getnetbyaddr, so pick harmless default
20225                 netdb_net_type='long'
20226                 ;;
20227         esac
20228 fi
20229 : locate the preferred pager for this system
20230 fn=f/
20231 case "$pager" in
20232 '')
20233         dflt=''
20234         case "$pg" in
20235         /*) dflt=$pg;;
20236         [a-zA-Z]:/*) dflt=$pg;;
20237         esac
20238         case "$more" in
20239         /*) dflt=$more;;
20240         [a-zA-Z]:/*) dflt=$more;;
20241         esac
20242         case "$less" in
20243         /*) dflt=$less;;
20244         [a-zA-Z]:/*) dflt=$less;;
20245         esac
20246         case "$dflt" in
20247         '') dflt=/usr/ucb/more;;
20248         esac
20249         ;;
20250 *)      dflt="$pager"
20251         fn="f/($pager)"
20252         ;;
20253 esac
20254 echo " "
20255 rp='What pager is used on your system?'
20256 . ./getfile
20257 pager="$ans"
20258
20259 : see what type pids are declared as in the kernel
20260 rp="What is the type of process ids on this system?"
20261 set pid_t pidtype int stdio.h sys/types.h
20262 eval $typedef_ask
20263
20264 : see if ar generates random libraries by itself
20265 echo " "
20266 echo "Checking how to generate random libraries on your machine..." >&4
20267 echo 'int bar1() { return bar2(); }' > bar1.c
20268 echo 'int bar2() { return 2; }' > bar2.c
20269 $cat > foo.c <<EOP
20270 #$i_stdlib I_STDLIB
20271 #ifdef I_STDLIB
20272 #include <stdlib.h>
20273 #endif
20274 int main() { printf("%d\n", bar1()); exit(0); }
20275 EOP
20276 $cc $ccflags -c bar1.c >/dev/null 2>&1
20277 $cc $ccflags -c bar2.c >/dev/null 2>&1
20278 $cc $ccflags -c foo.c >/dev/null 2>&1
20279 $ar rc bar$_a bar2$_o bar1$_o >/dev/null 2>&1
20280 if $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
20281         $run ./foobar >/dev/null 2>&1; then
20282         echo "$ar appears to generate random libraries itself."
20283         orderlib=false
20284         if [ "X$ranlib" = "X" ]; then
20285             ranlib=":"
20286         fi
20287 elif $ar s bar$_a >/dev/null 2>&1 &&
20288         $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
20289         $run ./foobar >/dev/null 2>&1; then
20290                 echo "a table of contents needs to be added with '$ar s'."
20291                 orderlib=false
20292                 ranlib="$ar s"
20293 elif $ar ts bar$_a >/dev/null 2>&1 &&
20294         $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
20295         $run ./foobar >/dev/null 2>&1; then
20296                 echo "a table of contents needs to be added with '$ar ts'."
20297                 orderlib=false
20298                 ranlib="$ar ts"
20299 else
20300         case "$ranlib" in
20301         :) ranlib='';;
20302         '')
20303                 ranlib=`./loc ranlib X /usr/bin /bin /usr/local/bin`
20304                 $test -f $ranlib || ranlib=''
20305                 ;;
20306         esac
20307         if $test -n "$ranlib"; then
20308                 echo "your system has '$ranlib'; we'll use that."
20309                 orderlib=false
20310         else
20311                 echo "your system doesn't seem to support random libraries"
20312                 echo "so we'll use lorder and tsort to order the libraries."
20313                 orderlib=true
20314                 ranlib=":"
20315         fi
20316 fi
20317 $rm -f foo* bar*
20318
20319 : see if this is a values.h system
20320 set values.h i_values
20321 eval $inhdr
20322
20323 : Check the max offset that gmtime and localtime accept
20324 echo "Checking max offsets that gmtime () accepts"
20325
20326 case $i_values in
20327     define) yyy="#include <values.h>" ;;
20328     *)      yyy="" ;;
20329     esac
20330
20331 case "$sGMTIME_min/$sGMTIME_max" in
20332     0/0|/)
20333         $cat >try.c <<EOCP
20334 #include <sys/types.h>
20335 #include <stdio.h>
20336 #include <time.h>
20337 $yyy
20338
20339 int i;
20340 struct tm *tmp;
20341 time_t pt;
20342
20343 void gm_check (time_t t, int min_year, int max_year)
20344 {
20345     tmp = gmtime (&t);
20346     if ( tmp == NULL ||
20347         /* Check tm_year overflow */
20348          tmp->tm_year < min_year || tmp->tm_year > max_year)
20349         tmp = NULL;
20350     else
20351         pt = t;
20352     } /* gm_check */
20353
20354 int check_max ()
20355 {
20356     tmp = NULL;
20357     pt  = 0;
20358 #ifdef MAXLONG
20359     gm_check (MAXLONG, 69, 0x7fffffff);
20360 #endif
20361     if (tmp == NULL || tmp->tm_year < 0) {
20362         for (i = 63; i >= 0; i--) {
20363             time_t x = pt | ((time_t)1 << i);
20364             if (x < 0 || x < pt) continue;
20365             gm_check (x, 69, 0x7fffffff);
20366             }
20367         }
20368     printf ("sGMTIME_max=%ld\n", pt);
20369     return (0);
20370     } /* check_max */
20371
20372 int check_min ()
20373 {
20374     tmp = NULL;
20375     pt  = 0;
20376 #ifdef MINLONG
20377     gm_check (MINLONG, -1900, 70);
20378 #endif
20379     if (tmp == NULL) {
20380         for (i = 36; i >= 0; i--) {
20381             time_t x = pt - ((time_t)1 << i);
20382             if (x > 0) continue;
20383             gm_check (x, -1900, 70);
20384             }
20385         }
20386     printf ("sGMTIME_min=%ld\n", pt);
20387     return (0);
20388     } /* check_min */
20389
20390 int main (int argc, char *argv[])
20391 {
20392     fprintf (stderr, "Sizeof time_t = %ld\n", sizeof (time_t));
20393     check_max ();
20394     check_min ();
20395     return (0);
20396     } /* main */
20397 EOCP
20398         set try
20399         if eval $compile; then
20400             eval `$run ./try`
20401         else
20402             echo "Cannot determine sGMTIME_max and sGMTIME_min." >&4
20403             fi
20404         $rm_try
20405         ;;
20406     esac
20407
20408 echo "Checking max offsets that localtime () accepts"
20409
20410 case "$sLOCALTIME_min/$sLOCALTIME_max" in
20411     0/0|/)
20412         $cat >try.c <<EOCP
20413 #include <sys/types.h>
20414 #include <stdio.h>
20415 #include <time.h>
20416 $yyy
20417
20418 int i;
20419 struct tm *tmp;
20420 time_t pt;
20421
20422 void local_check (time_t t, int min_year, int max_year)
20423 {
20424     if (sizeof (time_t) > 4 && t > 0x7ffffffffffff000LL)
20425         tmp = NULL;
20426     else
20427         tmp = localtime (&t);
20428     if ( tmp == NULL ||
20429         /* Check tm_year overflow */
20430          tmp->tm_year < min_year || tmp->tm_year > max_year)
20431         tmp = NULL;
20432     else
20433         pt = t;
20434     } /* local_check */
20435
20436 int check_max ()
20437 {
20438     tmp = NULL;
20439     pt  = 0;
20440 #ifdef MAXLONG
20441     local_check (MAXLONG, 69, 0x7fffffff);
20442 #endif
20443     if (tmp == NULL || tmp->tm_year < 0) {
20444         for (i = 63; i >= 0; i--) {
20445             time_t x = pt | ((time_t)1 << i);
20446             if (x < 0 || x < pt) continue;
20447             local_check (x, 69, 0x7fffffff);
20448             }
20449         }
20450     printf ("sLOCALTIME_max=%ld\n", pt);
20451     return (0);
20452    } /* check_max */
20453
20454 int check_min ()
20455 {
20456     tmp = NULL;
20457     pt  = 0;
20458 #ifdef MINLONG
20459     local_check (MINLONG, -1900, 70);
20460 #endif
20461     if (tmp == NULL) {
20462         for (i = 36; i >= 0; i--) {
20463             time_t x = pt - ((time_t)1 << i);
20464             if (x > 0) continue;
20465             local_check (x, -1900, 70);
20466             }
20467         }
20468     printf ("sLOCALTIME_min=%ld\n", pt);
20469     return (0);
20470     } /* check_min */
20471
20472 int main (int argc, char *argv[])
20473 {
20474     check_max ();
20475     check_min ();
20476     return (0);
20477     } /* main */
20478 EOCP
20479         set try
20480         if eval $compile; then
20481             eval `$run ./try`
20482         else
20483             echo "Cannot determine sLOCALTIME_max and sLOCALTIME_min." >&4
20484             fi
20485         $rm_try
20486         ;;
20487     esac
20488
20489 : check for type of arguments to select.
20490 case "$selecttype" in
20491 '') case "$d_select" in
20492         $define)
20493                 echo " "
20494                 $cat <<EOM
20495 Checking to see what type of arguments are accepted by select().
20496 EOM
20497                 hdrs="$define sys/types.h
20498                         $i_systime sys/time.h
20499                         $i_sysselct sys/select.h
20500                         $d_socket sys/socket.h"
20501                 : The first arg can be int, unsigned, or size_t
20502                 : The last arg may or may not be 'const'
20503                 val=''
20504                 : void pointer has been seen but using that
20505                 : breaks the selectminbits test
20506                 for xxx in 'fd_set *' 'int *'; do
20507                         for nfd in 'int' 'size_t' 'unsigned long' 'unsigned' ; do
20508                                 for tmo in 'struct timeval *' 'const struct timeval *'; do
20509                                         case "$val" in
20510                                         '')     try="$extern_C select _(($nfd, $xxx, $xxx, $xxx, $tmo));"
20511                                                 if ./protochk "$try" $hdrs; then
20512                                                         echo "Your system accepts $xxx."
20513                                                         val="$xxx"
20514                                                 fi
20515                                                 ;;
20516                                         esac
20517                                 done
20518                         done
20519                 done
20520                 case "$val" in
20521                 '')     rp='What is the type for the 2nd, 3rd, and 4th arguments to select?'
20522                         case "$d_fd_set" in
20523                                 $define) dflt="fd_set *" ;;
20524                                 *)              dflt="int *" ;;
20525                         esac
20526                         . ./myread
20527                         val=$ans
20528                         ;;
20529                 esac
20530                 selecttype="$val"
20531                 ;;
20532         *)      : no select, so pick a harmless default
20533                 selecttype='int *'
20534                 ;;
20535         esac
20536         ;;
20537 esac
20538
20539 : check for the select 'width'
20540 case "$selectminbits" in
20541 '') safebits=`expr $ptrsize \* 8`
20542     case "$d_select" in
20543         $define)
20544                 $cat <<EOM
20545
20546 Checking to see on how many bits at a time your select() operates...
20547 EOM
20548                 $cat >try.c <<EOCP
20549 #include <sys/types.h>
20550 #$i_time I_TIME
20551 #$i_systime I_SYS_TIME
20552 #$i_systimek I_SYS_TIME_KERNEL
20553 #ifdef I_TIME
20554 #   include <time.h>
20555 #endif
20556 #ifdef I_SYS_TIME
20557 #   ifdef I_SYS_TIME_KERNEL
20558 #       define KERNEL
20559 #   endif
20560 #   include <sys/time.h>
20561 #   ifdef I_SYS_TIME_KERNEL
20562 #       undef KERNEL
20563 #   endif
20564 #endif
20565 #$i_sysselct I_SYS_SELECT
20566 #ifdef I_SYS_SELECT
20567 #include <sys/select.h>
20568 #endif
20569 #$d_socket HAS_SOCKET
20570 #ifdef HAS_SOCKET
20571 #   include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
20572 #endif
20573 #include <stdio.h>
20574 #$i_stdlib I_STDLIB
20575 #ifdef I_STDLIB
20576 #include <stdlib.h>
20577 #endif
20578 $selecttype b;
20579 #define S sizeof(*(b))
20580 #define MINBITS 64
20581 #define NBYTES (S * 8 > MINBITS ? S : MINBITS/8)
20582 #define NBITS  (NBYTES * 8)
20583 int main() {
20584     char *s = (char *)malloc(NBYTES);
20585     struct timeval t;
20586     int i;
20587     FILE* fp;
20588     int fd;
20589
20590     if (!s)
20591         exit(1);
20592     fclose(stdin);
20593     fp = fopen("try.c", "r");
20594     if (fp == 0)
20595       exit(2);
20596     fd = fileno(fp);
20597     if (fd < 0)
20598       exit(3);
20599     b = ($selecttype)s;
20600     for (i = 0; i < NBITS; i++)
20601         FD_SET(i, b);
20602     t.tv_sec  = 0;
20603     t.tv_usec = 0;
20604     select(fd + 1, b, 0, 0, &t);
20605     for (i = NBITS - 1; i > fd && FD_ISSET(i, b); i--);
20606     free(s);
20607     printf("%d\n", i + 1);
20608     return 0;
20609 }
20610 EOCP
20611                 set try
20612                 if eval $compile_ok; then
20613                         selectminbits=`$run ./try`
20614                         case "$selectminbits" in
20615                         '')     cat >&4 <<EOM
20616 Cannot figure out on how many bits at a time your select() operates.
20617 I'll play safe and guess it is $safebits bits.
20618 EOM
20619                                 selectminbits=$safebits
20620                                 bits="$safebits bits"
20621                                 ;;
20622                         1)      bits="1 bit" ;;
20623                         *)      bits="$selectminbits bits" ;;
20624                         esac
20625                         echo "Your select() operates on $bits at a time." >&4
20626                 else
20627                         rp='What is the minimum number of bits your select() operates on?'
20628                         case "$byteorder" in
20629                         12345678)       dflt=64 ;;
20630                         1234)           dflt=32 ;;
20631                         *)              dflt=1  ;;
20632                         esac
20633                         . ./myread
20634                         val=$ans
20635                         selectminbits="$val"
20636                 fi
20637                 $rm_try
20638                 ;;
20639         *)      : no select, so pick a harmless default
20640                 selectminbits=$safebits
20641                 ;;
20642         esac
20643         ;;
20644 esac
20645
20646 : Trace out the files included by signal.h, then look for SIGxxx names.
20647 if [ "X$fieldn" = X ]; then
20648         : Just make some guesses.  We check them later.
20649         xxx='/usr/include/signal.h /usr/include/sys/signal.h'
20650 else
20651         xxx=`echo '#include <signal.h>' |
20652         $cppstdin $cppminus $cppflags 2>/dev/null |
20653         $grep '^[       ]*#.*include' |
20654         $awk "{print \\$$fieldn}" | $sed 's!"!!g' |\
20655                 $sed 's!\\\\\\\\!/!g' | $sort | $uniq`
20656 fi
20657 xxxfiles=''
20658 for xx in $xxx /dev/null ; do
20659         $test -f "$xx" && xxxfiles="$xxxfiles $xx"
20660 done
20661 case "$xxxfiles" in
20662 '')     xxxfiles=`./findhdr signal.h` ;;
20663 esac
20664 xxx=`awk '
20665 $1 ~ /^#define$/ && $2 ~ /^SIG[A-Z0-9]*$/ && $2 !~ /SIGARRAYSIZE/ && $2 !~ /SIGSTKSIZE/ && $2 !~ /SIGSTKSZ/ && $3 !~ /void/ {
20666         print substr($2, 4, 20)
20667 }
20668 $1 == "#" && $2 ~ /^define$/ && $3 ~ /^SIG[A-Z0-9]*$/ && $3 !~ /SIGARRAYSIZE/ && $4 !~ /void/ {
20669         print substr($3, 4, 20)
20670 }' $xxxfiles`
20671 : Append some common names just in case the awk scan failed.
20672 xxx="$xxx ABRT ALRM BUS CANCEL CHLD CLD CONT DIL EMT FPE"
20673 xxx="$xxx FREEZE HUP ILL INT IO IOT KILL LOST LWP PHONE"
20674 xxx="$xxx PIPE POLL PROF PWR QUIT RTMAX RTMIN SEGV STKFLT STOP"
20675 xxx="$xxx SYS TERM THAW TRAP TSTP TTIN TTOU URG USR1 USR2"
20676 xxx="$xxx USR3 USR4 VTALRM WAITING WINCH WIND WINDOW XCPU XFSZ"
20677
20678 : generate a few handy files for later
20679 $cat > signal.c <<EOCP
20680 #include <sys/types.h>
20681 #include <signal.h>
20682 #$i_stdlib I_STDLIB
20683 #ifdef I_STDLIB
20684 #include <stdlib.h>
20685 #endif
20686 #include <stdio.h>
20687 int main() {
20688
20689 /* Strange style to avoid deeply-nested #if/#else/#endif */
20690 #ifndef NSIG
20691 #  ifdef _NSIG
20692 #    define NSIG (_NSIG)
20693 #  endif
20694 #endif
20695
20696 #ifndef NSIG
20697 #  ifdef SIGMAX
20698 #    define NSIG (SIGMAX+1)
20699 #  endif
20700 #endif
20701
20702 #ifndef NSIG
20703 #  ifdef SIG_MAX
20704 #    define NSIG (SIG_MAX+1)
20705 #  endif
20706 #endif
20707
20708 #ifndef NSIG
20709 #  ifdef _SIG_MAX
20710 #    define NSIG (_SIG_MAX+1)
20711 #  endif
20712 #endif
20713
20714 #ifndef NSIG
20715 #  ifdef MAXSIG
20716 #    define NSIG (MAXSIG+1)
20717 #  endif
20718 #endif
20719
20720 #ifndef NSIG
20721 #  ifdef MAX_SIG
20722 #    define NSIG (MAX_SIG+1)
20723 #  endif
20724 #endif
20725
20726 #ifndef NSIG
20727 #  ifdef SIGARRAYSIZE
20728 #    define NSIG SIGARRAYSIZE /* Assume ary[SIGARRAYSIZE] */
20729 #  endif
20730 #endif
20731
20732 #ifndef NSIG
20733 #  ifdef _sys_nsig
20734 #    define NSIG (_sys_nsig) /* Solaris 2.5 */
20735 #  endif
20736 #endif
20737
20738 /* Default to some arbitrary number that's big enough to get most
20739    of the common signals.
20740 */
20741 #ifndef NSIG
20742 #    define NSIG 50
20743 #endif
20744
20745 printf("NSIG %d\n", NSIG);
20746
20747 #ifndef JUST_NSIG
20748
20749 EOCP
20750
20751 echo $xxx | $tr ' ' $trnl | $sort | $uniq | $awk '
20752 {
20753         printf "#ifdef SIG"; printf $1; printf "\n"
20754         printf "printf(\""; printf $1; printf " %%d\\n\",SIG";
20755         printf $1; printf ");\n"
20756         printf "#endif\n"
20757 }
20758 END {
20759         printf "#endif /* JUST_NSIG */\n";
20760         printf "exit(0);\n}\n";
20761 }
20762 ' >>signal.c
20763 $cat >signal.awk <<'EOP'
20764 BEGIN { ndups = 0 }
20765 $1 ~ /^NSIG$/ { nsig = $2 }
20766 ($1 !~ /^NSIG$/) && (NF == 2) && ($2 ~ /^[0-9][0-9]*$/) {
20767     if ($2 > maxsig) { maxsig = $2 }
20768     if (sig_name[$2]) {
20769         dup_name[ndups] = $1
20770         dup_num[ndups] = $2
20771         ndups++
20772     }
20773     else {
20774         sig_name[$2] = $1
20775         sig_num[$2] = $2
20776     }
20777 }
20778 END {
20779     if (nsig == 0) {
20780         nsig = maxsig + 1
20781     }
20782     printf("NSIG %d\n", nsig);
20783     for (n = 1; n < nsig; n++) {
20784         if (sig_name[n]) {
20785             printf("%s %d\n", sig_name[n], sig_num[n])
20786         }
20787         else {
20788             printf("NUM%d %d\n", n, n)
20789         }
20790     }
20791     for (n = 0; n < ndups; n++) {
20792         printf("%s %d\n", dup_name[n], dup_num[n])
20793     }
20794 }
20795 EOP
20796 $cat >signal_cmd <<EOS
20797 $startsh
20798 if $test -s signal.lst; then
20799     echo "Using your existing signal.lst file"
20800         exit 0
20801 fi
20802 xxx="$xxx"
20803 EOS
20804 $cat >>signal_cmd <<'EOS'
20805
20806 set signal
20807 if eval $compile_ok; then
20808         $run ./signal$_exe | ($sort -n -k 2 2>/dev/null || $sort -n +1) |\
20809                 $uniq | $awk -f signal.awk >signal.lst
20810 else
20811         echo "(I can't seem be able to compile the whole test program)" >&4
20812         echo "(I'll try it in little pieces.)" >&4
20813         set signal -DJUST_NSIG
20814         if eval $compile_ok; then
20815                 $run ./signal$_exe > signal.nsg
20816                 $cat signal.nsg
20817         else
20818                 echo "I can't seem to figure out how many signals you have." >&4
20819                 echo "Guessing 50." >&4
20820                 echo 'NSIG 50' > signal.nsg
20821         fi
20822         : Now look at all the signal names, one at a time.
20823         for xx in `echo $xxx | $tr ' ' $trnl | $sort | $uniq`; do
20824                 $cat > signal.c <<EOCP
20825 #include <sys/types.h>
20826 #include <signal.h>
20827 #include <stdio.h>
20828 int main() {
20829 printf("$xx %d\n", SIG${xx});
20830 return 0;
20831 }
20832 EOCP
20833                 set signal
20834                 if eval $compile; then
20835                         echo "SIG${xx} found."
20836                         $run ./signal$_exe  >> signal.ls1
20837                 else
20838                         echo "SIG${xx} NOT found."
20839                 fi
20840         done
20841         if $test -s signal.ls1; then
20842                 $cat signal.nsg signal.ls1 |
20843                         $sort -n | $uniq | $awk -f signal.awk >signal.lst
20844         fi
20845
20846 fi
20847 if $test -s signal.lst; then
20848         :
20849 else
20850         echo "(AAK! I can't compile the test programs -- Guessing)" >&4
20851         echo 'kill -l' >signal
20852         set X `csh -f <signal`
20853         $rm -f signal
20854         shift
20855         case $# in
20856         0) set HUP INT QUIT ILL TRAP ABRT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM;;
20857         esac
20858         echo $@ | $tr ' ' $trnl | \
20859             $awk '{ printf "%s %d\n", $1, ++s; }
20860                   END { printf "NSIG %d\n", ++s }' >signal.lst
20861 fi
20862 $rm -f signal.c signal$_exe signal$_o signal.nsg signal.ls1
20863 EOS
20864 chmod a+x signal_cmd
20865 $eunicefix signal_cmd
20866
20867 : generate list of signal names
20868 echo " "
20869 case "$sig_name_init" in
20870 '') doinit=yes ;;
20871 *)  case "$sig_num_init" in
20872     ''|*,*) doinit=yes ;;
20873     esac ;;
20874 esac
20875 case "$doinit" in
20876 yes)
20877         echo "Generating a list of signal names and numbers..." >&4
20878         . ./signal_cmd
20879         sig_count=`$awk '/^NSIG/ { printf "%d", $2 }' signal.lst`
20880         sig_name=`$awk 'BEGIN { printf "ZERO " }
20881                         !/^NSIG/ { printf "%s ", $1 }' signal.lst`
20882         sig_num=`$awk  'BEGIN { printf "0 " }
20883                         !/^NSIG/ { printf "%d ", $2 }' signal.lst`
20884         sig_name_init=`$awk 'BEGIN      { printf "\"ZERO\", " }
20885                              !/^NSIG/   { printf "\"%s\", ", $1 }
20886                              END        { printf "0\n" }' signal.lst`
20887         sig_num_init=`$awk  'BEGIN      { printf "0, " }
20888                              !/^NSIG/   { printf "%d, ", $2}
20889                              END        { printf "0\n"}' signal.lst`
20890         ;;
20891 esac
20892 echo "The following $sig_count signals are available:"
20893 echo " "
20894 echo $sig_name | $awk \
20895 'BEGIN { linelen = 0 }
20896 {
20897         for (i = 1; i <= NF; i++) {
20898                 name = "SIG" $i " "
20899                 linelen = linelen + length(name)
20900                 if (linelen > 70) {
20901                         printf "\n"
20902                         linelen = length(name)
20903                 }
20904                 printf "%s", name
20905         }
20906         printf "\n"
20907 }'
20908 sig_size=`echo $sig_name | awk '{print NF}'`
20909 $rm -f signal signal.c signal.awk signal.lst signal_cmd
20910
20911 : Check size of size
20912 echo " "
20913 case "$sizetype" in
20914 *_t) zzz="$sizetype"    ;;
20915 *)   zzz="filesize"     ;;
20916 esac
20917 echo "Checking the size of $zzz..." >&4
20918 cat > try.c <<EOCP
20919 #include <sys/types.h>
20920 #include <stdio.h>
20921 #$i_stdlib I_STDLIB
20922 #ifdef I_STDLIB
20923 #include <stdlib.h>
20924 #endif
20925 int main() {
20926     printf("%d\n", (int)sizeof($sizetype));
20927     exit(0);
20928 }
20929 EOCP
20930 set try
20931 if eval $compile_ok; then
20932         yyy=`$run ./try`
20933         case "$yyy" in
20934         '')     sizesize=4
20935                 echo "(I can't execute the test program--guessing $sizesize.)" >&4
20936                 ;;
20937         *)      sizesize=$yyy
20938                 echo "Your $zzz size is $sizesize bytes."
20939                 ;;
20940         esac
20941 else
20942         sizesize=4
20943         echo "(I can't compile the test program--guessing $sizesize.)" >&4
20944 fi
20945
20946
20947 : check for socklen_t
20948 echo " "
20949 echo "Checking to see if you have socklen_t..." >&4
20950 $cat >try.c <<EOCP
20951 #include <sys/types.h>
20952 #$d_socket HAS_SOCKET
20953 #ifdef HAS_SOCKET
20954 #include <sys/socket.h>
20955 #endif
20956 int main() { socklen_t x = 16; }
20957 EOCP
20958 set try
20959 if eval $compile; then
20960         val="$define"
20961         echo "You have socklen_t."
20962 else
20963         val="$undef"
20964         echo "You do not have socklen_t."
20965         case "$sizetype" in
20966         size_t) echo "(You do have size_t, that might work. Some people are happy with just an int.)" ;;
20967         esac
20968 fi
20969 $rm_try
20970 set d_socklen_t
20971 eval $setvar
20972
20973 : see if this is a socks.h system
20974 set socks.h i_socks
20975 eval $inhdr
20976
20977 : check for type of the size argument to socket calls
20978 case "$d_socket" in
20979 "$define")
20980         $cat <<EOM
20981
20982 Checking to see what type is the last argument of accept().
20983 EOM
20984         yyy=''
20985         case "$d_socklen_t" in
20986         "$define") yyy="$yyy socklen_t"
20987         esac
20988         yyy="$yyy $sizetype int long unsigned"
20989         for xxx in $yyy; do
20990                 case "$socksizetype" in
20991                 '')     try="$extern_C int accept(int, struct sockaddr *, $xxx *);"
20992                         case "$usesocks" in
20993                         "$define")
20994                                 if ./protochk "$try" $i_systypes sys/types.h $d_socket sys/socket.h literal '#define INCLUDE_PROTOTYPES' $i_socks socks.h.; then
20995                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
20996                                         socksizetype="$xxx"
20997                                 fi
20998                                 ;;
20999                         *)      if ./protochk "$try"  $i_systypes sys/types.h $d_socket sys/socket.h; then
21000                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
21001                                         socksizetype="$xxx"
21002                                 fi
21003                                 ;;
21004                         esac
21005                         ;;
21006                 esac
21007         done
21008 : In case none of those worked, prompt the user.
21009         case "$socksizetype" in
21010         '')     rp='What is the type for socket address structure sizes?'
21011                 dflt='int'
21012                 . ./myread
21013                 socksizetype=$ans
21014                 ;;
21015         esac
21016         ;;
21017 *)      : no sockets, so pick relatively harmless default
21018         socksizetype='int'
21019         ;;
21020 esac
21021
21022 : see what type is used for signed size_t
21023 set ssize_t ssizetype int stdio.h sys/types.h
21024 eval $typedef
21025 dflt="$ssizetype"
21026 $cat > try.c <<EOM
21027 #include <stdio.h>
21028 #$i_stdlib I_STDLIB
21029 #ifdef I_STDLIB
21030 #include <stdlib.h>
21031 #endif
21032 #include <sys/types.h>
21033 #define Size_t $sizetype
21034 #define SSize_t $dflt
21035 int main()
21036 {
21037         if (sizeof(Size_t) == sizeof(SSize_t))
21038                 printf("$dflt\n");
21039         else if (sizeof(Size_t) == sizeof(int))
21040                 printf("int\n");
21041         else
21042                 printf("long\n");
21043         exit(0);
21044 }
21045 EOM
21046 echo " "
21047 set try
21048 if eval $compile_ok && $run ./try > /dev/null; then
21049         ssizetype=`$run ./try`
21050         echo "I'll be using $ssizetype for functions returning a byte count." >&4
21051 else
21052         $cat >&4 <<EOM
21053 Help! I can't compile and run the ssize_t test program: please enlighten me!
21054 (This is probably a misconfiguration in your system or libraries, and
21055 you really ought to fix it.  Still, I'll try anyway.)
21056
21057 I need a type that is the same size as $sizetype, but is guaranteed to
21058 be signed.  Common values are ssize_t, int and long.
21059
21060 EOM
21061         rp="What signed type is the same size as $sizetype?"
21062         . ./myread
21063         ssizetype="$ans"
21064 fi
21065 $rm_try
21066
21067 : see what type of char stdio uses.
21068 echo " "
21069 echo '#include <stdio.h>' | $cppstdin $cppminus > stdioh
21070 if $contains 'unsigned.*char.*_ptr;' stdioh >/dev/null 2>&1 ; then
21071         echo "Your stdio uses unsigned chars." >&4
21072         stdchar="unsigned char"
21073 else
21074         echo "Your stdio uses signed chars." >&4
21075         stdchar="char"
21076 fi
21077 $rm -f stdioh
21078
21079 : see what type uids are declared as in the kernel
21080 echo " "
21081 echo "Looking for the type for user ids returned by getuid()."
21082 set uid_t uidtype xxx stdio.h sys/types.h
21083 eval $typedef
21084 case "$uidtype" in
21085 xxx)
21086         xxx=`./findhdr sys/user.h`
21087         set `grep '_ruid;' "$xxx" 2>/dev/null` unsigned short
21088         case $1 in
21089         unsigned) dflt="$1 $2" ;;
21090         *) dflt="$1" ;;
21091         esac
21092         ;;
21093 *) dflt="$uidtype";;
21094 esac
21095 case "$uidtype" in
21096 uid_t)  echo "uid_t found." ;;
21097 *)      rp="What is the type for user ids returned by getuid()?"
21098         . ./myread
21099         uidtype="$ans"
21100         ;;
21101 esac
21102
21103 : Check size of UID
21104 echo " "
21105 case "$uidtype" in
21106 *_t) zzz="$uidtype"     ;;
21107 *)   zzz="uid"          ;;
21108 esac
21109 echo "Checking the size of $zzz..." >&4
21110 cat > try.c <<EOCP
21111 #include <sys/types.h>
21112 #include <stdio.h>
21113 #$i_stdlib I_STDLIB
21114 #ifdef I_STDLIB
21115 #include <stdlib.h>
21116 #endif
21117 int main() {
21118     printf("%d\n", (int)sizeof($uidtype));
21119     exit(0);
21120 }
21121 EOCP
21122 set try
21123 if eval $compile_ok; then
21124         yyy=`$run ./try`
21125         case "$yyy" in
21126         '')     uidsize=4
21127                 echo "(I can't execute the test program--guessing $uidsize.)" >&4
21128                 ;;
21129         *)      uidsize=$yyy
21130                 echo "Your $zzz is $uidsize bytes long."
21131                 ;;
21132         esac
21133 else
21134         uidsize=4
21135         echo "(I can't compile the test program--guessing $uidsize.)" >&4
21136 fi
21137
21138 : Check if UID is signed
21139 echo " "
21140 case "$uidtype" in
21141 *_t) zzz="$uidtype"     ;;
21142 *)   zzz="uid"          ;;
21143 esac
21144 echo "Checking the sign of $zzz..." >&4
21145 cat > try.c <<EOCP
21146 #include <sys/types.h>
21147 #include <stdio.h>
21148 int main() {
21149         $uidtype foo = -1;
21150         if (foo < 0)
21151                 printf("-1\n");
21152         else
21153                 printf("1\n");
21154 }
21155 EOCP
21156 set try
21157 if eval $compile; then
21158         yyy=`$run ./try`
21159         case "$yyy" in
21160         '')     uidsign=1
21161                 echo "(I can't execute the test program--guessing unsigned.)" >&4
21162                 ;;
21163         *)      uidsign=$yyy
21164                 case "$uidsign" in
21165                  1) echo "Your $zzz is unsigned." ;;
21166                 -1) echo "Your $zzz is signed."   ;;
21167                 esac
21168                 ;;
21169         esac
21170 else
21171         uidsign=1
21172         echo "(I can't compile the test program--guessing unsigned.)" >&4
21173 fi
21174
21175
21176 : Check format string for UID
21177 echo " "
21178 $echo "Checking the format string to be used for uids..." >&4
21179
21180 case "$uidsign" in
21181 -1)     if $test X"$uidsize" = X"$ivsize"; then
21182                 uidformat="$ivdformat"
21183         else
21184                 if $test X"$uidsize" = X"$longsize"; then
21185                         uidformat='"ld"'
21186                 else
21187                         if $test X"$uidsize" = X"$intsize"; then
21188                                 uidformat='"d"'
21189                         else
21190                                 if $test X"$uidsize" = X"$shortsize"; then
21191                                         uidformat='"hd"'
21192                                 fi
21193                         fi
21194                 fi
21195         fi
21196         ;;
21197 *)      if $test X"$uidsize" = X"$uvsize"; then
21198                 uidformat="$uvuformat"
21199         else
21200                 if $test X"$uidsize" = X"$longsize"; then
21201                         uidformat='"lu"'
21202                 else
21203                         if $test X"$uidsize" = X"$intsize"; then
21204                                 uidformat='"u"'
21205                         else
21206                                 if $test X"$uidsize" = X"$shortsize"; then
21207                                         uidformat='"hu"'
21208                                 fi
21209                         fi
21210                 fi
21211         fi
21212         ;;
21213 esac
21214
21215 : Check if site customization support was requested
21216 case "$usesitecustomize" in
21217     $define|true|[Yy]*)
21218         usesitecustomize="$define"
21219         ;;
21220     *)
21221         usesitecustomize="$undef"
21222         ;;
21223     esac
21224
21225 : see if prototypes support variable argument declarations
21226 echo " "
21227 case "$prototype$i_stdarg" in
21228 $define$define)
21229         echo "It appears we'll be able to prototype varargs functions." >&4
21230         val="$define"
21231         ;;
21232 *)
21233         echo "Too bad... We won't be using prototyped varargs functions..." >&4
21234         val="$undef"
21235         ;;
21236 esac
21237 set vaproto
21238 eval $setvar
21239
21240 : determine compiler compiler
21241 case "$yacc" in
21242 '')
21243         dflt=yacc;;
21244 *)
21245         dflt="$yacc";;
21246 esac
21247 echo " "
21248 comp='yacc'
21249 if $test -f "$byacc$_exe"; then
21250         dflt="$byacc"
21251         comp="byacc or $comp"
21252 fi
21253 if $test -f "$bison$_exe"; then
21254         comp="$comp or bison -y"
21255 fi
21256 rp="Which compiler compiler ($comp) shall I use?"
21257 . ./myread
21258 yacc="$ans"
21259 case "$yacc" in
21260 *bis*)
21261         case "$yacc" in
21262         *-y*) ;;
21263         *)
21264                 yacc="$yacc -y"
21265                 echo "(Adding -y option to bison to get yacc-compatible behaviour.)"
21266                 ;;
21267         esac
21268         ;;
21269 esac
21270
21271 : see if this is a assert.h system
21272 set assert.h i_assert
21273 eval $inhdr
21274
21275 : see if this is a fp.h system
21276 set fp.h i_fp
21277 eval $inhdr
21278
21279 : see if this is a fp_class.h system
21280 set fp_class.h i_fp_class
21281 eval $inhdr
21282
21283 : see if gdbm.h is available
21284 set gdbm.h t_gdbm
21285 eval $inhdr
21286 case "$t_gdbm" in
21287 $define)
21288         : see if gdbm_open exists
21289         set gdbm_open d_gdbm_open
21290         eval $inlibc
21291         case "$d_gdbm_open" in
21292         $undef)
21293                 t_gdbm="$undef"
21294                 echo "We won't be including <gdbm.h>"
21295                 ;;
21296         esac
21297         ;;
21298 esac
21299 val="$t_gdbm"
21300 set i_gdbm
21301 eval $setvar
21302
21303 : see if this is a ieeefp.h system
21304 case "$i_ieeefp" in
21305 '' ) set ieeefp.h i_ieeefp
21306      eval $inhdr
21307      ;;
21308 esac
21309
21310 : see if this is a libutil.h system
21311 set libutil.h i_libutil
21312 eval $inhdr
21313
21314 : see if mach cthreads are available
21315 if test "X$usethreads" = "X$define"; then
21316         set mach/cthreads.h i_machcthr
21317         eval $inhdr
21318 else
21319         i_machcthr="$undef"
21320 fi
21321
21322 : see if this is a mntent.h system
21323 set mntent.h i_mntent
21324 eval $inhdr
21325
21326 : see if net/errno.h is available
21327 val=''
21328 set net/errno.h val
21329 eval $inhdr
21330
21331 : Unfortunately, it causes problems on some systems.  Arrgh.
21332 case "$val" in
21333 $define)
21334         cat > try.c <<'EOM'
21335 #include <stdio.h>
21336 #include <errno.h>
21337 #include <net/errno.h>
21338 int func()
21339 {
21340         return ENOTSOCK;
21341 }
21342 EOM
21343         if $cc $ccflags -c try.c >/dev/null 2>&1; then
21344                 echo "We'll be including <net/errno.h>." >&4
21345         else
21346                 echo "We won't be including <net/errno.h>." >&4
21347                 val="$undef"
21348         fi
21349         $rm_try
21350         ;;
21351 esac
21352 set i_neterrno
21353 eval $setvar
21354
21355 : see if netinet/tcp.h is available
21356 set netinet/tcp.h i_netinettcp
21357 eval $inhdr
21358
21359 : see if this is a poll.h system
21360 set poll.h i_poll
21361 eval $inhdr
21362
21363 : see if this is a prot.h system
21364 set prot.h i_prot
21365 eval $inhdr
21366
21367 : Preprocessor symbols
21368 echo " "
21369 $echo "Guessing which symbols your C compiler and preprocessor define..." >&4
21370 $cat <<'EOSH' > Cppsym.know
21371 a29k ABI64 aegis AES_SOURCE AIX AIX32 AIX370
21372 AIX41 AIX42 AIX43 AIX_SOURCE aixpc ALL_SOURCE
21373 alliant alpha am29000 AM29000 AMD64 amd64 amiga AMIGAOS AMIX
21374 ansi ANSI_C_SOURCE apollo ardent ARM32 atarist att386 att3b
21375 BeOS BIG_ENDIAN BIT_MSF bsd BSD bsd43 bsd4_2 bsd4_3 BSD4_3 bsd4_4
21376 BSD_4_3 BSD_4_4 BSD_NET2 BSD_TIME BSD_TYPES BSDCOMPAT bsdi
21377 bull c cadmus clipper CMU COFF COMPILER_VERSION
21378 concurrent convex cpu cray CRAY CRAYMPP ctix CX_UX
21379 CYGWIN DECC DGUX DGUX_SOURCE DJGPP dmert DOLPHIN DPX2 DSO
21380 Dynix DynixPTX ELF encore EPI EXTENSIONS FAVOR_BSD
21381 FILE_OFFSET_BITS FreeBSD GCC_NEW_VARARGS gcos gcx gimpel
21382 GLIBC GLIBC_MINOR
21383 GNU_SOURCE GNUC GNUC_MINOR GNU_LIBRARY GO32 gould GOULD_PN
21384 H3050R H3050RX hbullx20 hcx host_mips
21385 hp200 hp300 hp700 HP700 hp800 hp9000
21386 hp9000s200 hp9000s300 hp9000s400 hp9000s500
21387 hp9000s700 hp9000s800 hp9k8 hp_osf hppa hpux HPUX_SOURCE
21388 i186 i286 i386 i486 i586 i686 i8086 i80960 i860 I960
21389 IA64 iAPX286 ibm ibm032 ibmesa IBMR2 ibmrt ILP32 ILP64
21390 INLINE_INTRINSICS INTRINSICS INT64 interdata is68k ksr1
21391 LANGUAGE_C LARGE_FILE_API LARGEFILE64_SOURCE
21392 LARGEFILE_SOURCE LFS64_LARGEFILE LFS_LARGEFILE
21393 LIBCATAMOUNT Linux LITTLE_ENDIAN LONG64 LONG_DOUBLE LONG_LONG
21394 LONGDOUBLE LONGLONG LP64 luna luna88k Lynx
21395 M68000 m68k m88100 m88k M88KBCS_TARGET M_COFF
21396 M_I186 M_I286 M_I386 M_I8086 M_I86 M_I86SM M_SYS3
21397 M_SYS5 M_SYSIII M_SYSV M_UNIX M_XENIX MACH machine MachTen
21398 MATH_HAS_NO_SIDE_EFFECTS
21399 mc300 mc500 mc68000 mc68010 mc68020 mc68030 mc68040
21400 mc68060 mc68k mc68k32 mc700 mc88000 mc88100 merlin
21401 mert MiNT mips MIPS_FPSET MIPS_ISA MIPS_SIM MIPS_SZINT
21402 MIPS_SZLONG MIPS_SZPTR MIPSEB MIPSEL MODERN_C motorola
21403 mpeix MSDOS MTXINU MULTIMAX mvs MVS n16 ncl_el ncl_mr
21404 NetBSD news1500 news1700 news1800 news1900 news3700
21405 news700 news800 news900 NeXT NLS nonstopux ns16000 ns32000
21406 ns32016 ns32332 ns32k nsc32000
21407 OCS88 OEMVS OpenBSD os OS2 OS390 osf OSF1 OSF_SOURCE
21408 pa_risc PA_RISC1_1 PA_RISC2_0 PARAGON parisc
21409 pc532 pdp11 PGC PIC plexus PORTAR posix
21410 POSIX1B_SOURCE POSIX2_SOURCE POSIX4_SOURCE
21411 POSIX_C_SOURCE POSIX_SOURCE POWER
21412 PROTOTYPES PWB pyr QNX QK_USER R3000 REENTRANT RES Rhapsody RISC6000
21413 riscix riscos RT S390 SA110 scs SCO sequent sgi SGI_SOURCE SH3 sinix
21414 SIZE_INT SIZE_LONG SIZE_PTR SOCKET_SOURCE SOCKETS_SOURCE
21415 sony sony_news sonyrisc sparc sparclite spectrum
21416 stardent stdc STDC_EXT stratos sun sun3 sun386
21417 Sun386i svr3 svr4 SVR4_2 SVR4_SOURCE svr5
21418 SX system SYSTYPE_BSD SYSTYPE_BSD43 SYSTYPE_BSD44
21419 SYSTYPE_SVR4 SYSTYPE_SVR5 SYSTYPE_SYSV SYSV SYSV3 SYSV4 SYSV5
21420 sysV68 sysV88 Tek4132 Tek4300 titan
21421 TM3200 TM5400 TM5600
21422 tower tower32 tower32_200 tower32_600 tower32_700
21423 tower32_800 tower32_850 tss
21424 u370 u3b u3b2 u3b20 u3b200 u3b20d u3b5
21425 ultrix UMAXV UnicomPBB UnicomPBD UNICOS UNICOSMK
21426 unix UNIX95 UNIX99 unixpc unos
21427 USE_BSD USE_FILE_OFFSET64 USE_GNU USE_ISOC9X USE_LARGEFILE USE_LARGEFILE64
21428 USE_MISC USE_POSIX USE_POSIX199309 USE_POSIX199506 USE_POSIX2
21429 USE_REENTRANT USE_SVID USE_UNIX98 USE_XOPEN USE_XOPEN_EXTENDED
21430 USGr4 USGr4_2
21431 Utek UTek UTS UWIN uxpm uxps vax venix VMESA vms x86_64 xenix Xenix286
21432 XOPEN_SOURCE XOPEN_SOURCE_EXTENDED XPG2 XPG2_EXTENDED
21433 XPG3 XPG3_EXTENDED XPG4 XPG4_EXTENDED
21434 z8000
21435 EOSH
21436 # Maybe put other stuff here too.
21437 cat <<EOSH >>Cppsym.know
21438 $osname
21439 EOSH
21440 ./tr '[a-z]' '[A-Z]' < Cppsym.know > Cppsym.a
21441 ./tr '[A-Z]' '[a-z]' < Cppsym.know > Cppsym.b
21442 $cat Cppsym.know > Cppsym.c
21443 $cat Cppsym.a Cppsym.b Cppsym.c | $tr ' ' $trnl | $sort | $uniq > Cppsym.know
21444 $rm -f Cppsym.a Cppsym.b Cppsym.c
21445 cat <<EOSH > Cppsym
21446 $startsh
21447 if $test \$# -gt 0; then
21448     echo \$* | $tr " " "$trnl" | ./Cppsym.try > Cppsym.got
21449     if $test -s Cppsym.got; then
21450         $rm -f Cppsym.got
21451         exit 0
21452     fi
21453     $rm -f Cppsym.got
21454     exit 1
21455 else
21456     $tr " " "$trnl" | ./Cppsym.try
21457     exit 0
21458 fi
21459 EOSH
21460 chmod +x Cppsym
21461 $eunicefix Cppsym
21462 cat <<EOSH > Cppsym.try
21463 $startsh
21464 cat <<'EOCP' > try.c
21465 #include <stdio.h>
21466 #if cpp_stuff == 1
21467 #define STRINGIFY(a)    "a"
21468 #endif
21469 #if cpp_stuff == 42
21470 #define StGiFy(a)  #a
21471 #define STRINGIFY(a)    StGiFy(a)
21472 #endif
21473 #if $cpp_stuff != 1 && $cpp_stuff != 42
21474 #   include "Bletch: How does this C preprocessor stringify macros?"
21475 #endif
21476 int main() {
21477 EOCP
21478 $awk \\
21479 EOSH
21480 cat <<'EOSH' >> Cppsym.try
21481 'length($1) > 0 {
21482     printf "#ifdef %s\nprintf(\"%s=%%s\\n\", STRINGIFY(%s));\n#endif\n", $1, $1, $1
21483     printf "#ifdef _%s\nprintf(\"_%s=%%s\\n\", STRINGIFY(_%s));\n#endif\n", $1, $1, $1
21484     printf "#ifdef __%s\nprintf(\"__%s=%%s\\n\", STRINGIFY(__%s));\n#endif\n", $1, $1, $1
21485     printf "#ifdef __%s__\nprintf(\"__%s__=%%s\\n\", STRINGIFY(__%s__));\n#endif\n", $1, $1, $1
21486 }'       >> try.c
21487 echo 'return 0;}' >> try.c
21488 EOSH
21489 cat <<EOSH >> Cppsym.try
21490 ccflags="$ccflags"
21491 case "$osname-$gccversion" in
21492 irix-) ccflags="\$ccflags -woff 1178" ;;
21493 os2-*) ccflags="\$ccflags -Zlinker /PM:VIO" ;;
21494 esac
21495 $cc -o try -Dcpp_stuff=$cpp_stuff $optimize \$ccflags $ldflags try.c $libs && $run ./try | $sed 's/ /\\\\ /g'
21496 EOSH
21497 chmod +x Cppsym.try
21498 $eunicefix Cppsym.try
21499 ./Cppsym < Cppsym.know > Cppsym.true
21500 : Add in any linux cpp "predefined macros":
21501 case "$osname::$gccversion" in
21502   *linux*::*.*|*gnukfreebsd*::*.*|gnu::*.*)
21503     tHdrH=_tmpHdr
21504     rm -f $tHdrH'.h' $tHdrH
21505     touch $tHdrH'.h'
21506     if $cpp -dM $tHdrH'.h' > $tHdrH'_cppsym.h' && [ -s $tHdrH'_cppsym.h' ]; then
21507        sed 's/#define[\ \  ]*//;s/[\ \     ].*$//' <$tHdrH'_cppsym.h' >$tHdrH'_cppsym.real'
21508        if [ -s $tHdrH'_cppsym.real' ]; then
21509           cat $tHdrH'_cppsym.real' Cppsym.know | sort | uniq | ./Cppsym | sort | uniq > Cppsym.true
21510        fi
21511     fi
21512     rm -f $tHdrH'.h' $tHdrH'_cppsym.h' $tHdrH'_cppsym.real'
21513   ;;
21514 esac
21515 : now check the C compiler for additional symbols
21516 postprocess_cc_v=''
21517 case "$osname" in
21518 aix) postprocess_cc_v="|$tr , ' '" ;;
21519 esac
21520 $cat >ccsym <<EOS
21521 $startsh
21522 $cat >tmp.c <<EOF
21523 extern int foo;
21524 EOF
21525 for i in \`$cc -v -c tmp.c 2>&1 $postprocess_cc_v\`
21526 do
21527         case "\$i" in
21528         -D*) echo "\$i" | $sed 's/^-D//';;
21529         -A*) $test "$gccversion" && echo "\$i" | $sed 's/^-A//' | $sed 's/\(.*\)(\(.*\))/\1=\2/';;
21530         esac
21531 done
21532 $rm_try
21533 EOS
21534 postprocess_cc_v=''
21535 chmod +x ccsym
21536 $eunicefix ccsym
21537 ./ccsym > ccsym1.raw
21538 if $test -s ccsym1.raw; then
21539        $sort ccsym1.raw | $uniq >ccsym.raw
21540 else
21541        mv ccsym1.raw ccsym.raw
21542 fi
21543
21544 $awk '/\=/ { print $0; next }
21545         { print $0"=1" }' ccsym.raw >ccsym.list
21546 $comm -13 Cppsym.true ccsym.list >ccsym.own
21547 $comm -12 Cppsym.true ccsym.list >ccsym.com
21548 $comm -23 Cppsym.true ccsym.list >ccsym.cpp
21549 also=''
21550 if $test -z ccsym.raw; then
21551         echo "Your C compiler doesn't seem to define any symbols!" >&4
21552         echo " "
21553         echo "However, your C preprocessor defines the following symbols:"
21554         $cat Cppsym.true
21555         ccsymbols=''
21556         cppsymbols=`$cat Cppsym.true`
21557         cppsymbols=`echo $cppsymbols`
21558         cppccsymbols="$cppsymbols"
21559 else
21560         if $test -s ccsym.com; then
21561                 echo "Your C compiler and pre-processor define these symbols:"
21562                 $sed -e 's/\(..*\)=.*/\1/' ccsym.com
21563                 also='also '
21564                 symbols='ones'
21565                 cppccsymbols=`$cat ccsym.com`
21566                 cppccsymbols=`echo $cppccsymbols`
21567                 $test "$silent" || sleep 1
21568         fi
21569         if $test -s ccsym.cpp; then
21570                 $test "$also" && echo " "
21571                 echo "Your C pre-processor ${also}defines the following symbols:"
21572                 $sed -e 's/\(..*\)=.*/\1/' ccsym.cpp
21573                 also='further '
21574                 cppsymbols=`$cat ccsym.cpp`
21575                 cppsymbols=`echo $cppsymbols`
21576                 $test "$silent" || sleep 1
21577         fi
21578         if $test -s ccsym.own; then
21579                 $test "$also" && echo " "
21580                 echo "Your C compiler ${also}defines the following cpp symbols:"
21581                 $sed -e 's/\(..*\)=1/\1/' ccsym.own
21582                 $sed -e 's/\(..*\)=.*/\1/' ccsym.own | $uniq >>Cppsym.true
21583                 ccsymbols=`$cat ccsym.own`
21584                 ccsymbols=`echo $ccsymbols`
21585                 $test "$silent" || sleep 1
21586         fi
21587 fi
21588
21589 : see if this is a termio system
21590 val="$undef"
21591 val2="$undef"
21592 val3="$undef"
21593 if $test `./findhdr termios.h`; then
21594         set tcsetattr i_termios
21595         eval $inlibc
21596         val3="$i_termios"
21597 fi
21598 echo " "
21599 case "$val3" in
21600 "$define") echo "You have POSIX termios.h... good!" >&4;;
21601 *) if ./Cppsym pyr; then
21602                 case "`/bin/universe`" in
21603                 ucb) if $test `./findhdr sgtty.h`; then
21604                                 val2="$define"
21605                                 echo "<sgtty.h> found." >&4
21606                         else
21607                                 echo "System is pyramid with BSD universe."
21608                                 ./warn "<sgtty.h> not found--you could have problems."
21609                         fi;;
21610                 *) if $test `./findhdr termio.h`; then
21611                                 val="$define"
21612                                 echo "<termio.h> found." >&4
21613                         else
21614                                 echo "System is pyramid with USG universe."
21615                                 ./warn "<termio.h> not found--you could have problems."
21616                         fi;;
21617                 esac
21618         elif ./usg; then
21619                 if $test `./findhdr termio.h`; then
21620                         echo "<termio.h> found." >&4
21621                         val="$define"
21622                 elif $test `./findhdr sgtty.h`; then
21623                         echo "<sgtty.h> found." >&4
21624                         val2="$define"
21625                 else
21626                         ./warn "Neither <termio.h> nor <sgtty.h> found--cross fingers!"
21627                 fi
21628         else
21629                 if $test `./findhdr sgtty.h`; then
21630                         echo "<sgtty.h> found." >&4
21631                         val2="$define"
21632                 elif $test `./findhdr termio.h`; then
21633                         echo "<termio.h> found." >&4
21634                         val="$define"
21635                 else
21636                         ./warn "Neither <sgtty.h> nor <termio.h> found--cross fingers!"
21637                 fi
21638         fi;;
21639 esac
21640 set i_termio; eval $setvar
21641 val=$val2; set i_sgtty; eval $setvar
21642 val=$val3; set i_termios; eval $setvar
21643
21644 : see if stddef is available
21645 set stddef.h i_stddef
21646 eval $inhdr
21647
21648 : see if sys/access.h is available
21649 set sys/access.h i_sysaccess
21650 eval $inhdr
21651
21652 : see if ioctl defs are in sgtty, termio, sys/filio or sys/ioctl
21653 set sys/filio.h i_sysfilio
21654 eval $inhdr
21655 echo " "
21656 if $test `./findhdr sys/ioctl.h`; then
21657         val="$define"
21658         echo '<sys/ioctl.h> found.' >&4
21659 else
21660         val="$undef"
21661         if $test $i_sysfilio = "$define"; then
21662             echo '<sys/ioctl.h> NOT found.' >&4
21663         else
21664                 $test $i_sgtty = "$define" && xxx="sgtty.h"
21665                 $test $i_termio = "$define" && xxx="termio.h"
21666                 $test $i_termios = "$define" && xxx="termios.h"
21667 echo "No <sys/ioctl.h> found, assuming ioctl args are defined in <$xxx>." >&4
21668         fi
21669 fi
21670 set i_sysioctl
21671 eval $setvar
21672
21673 : see if socket ioctl defs are in sys/sockio.h
21674 echo " "
21675 xxx=`./findhdr sys/sockio.h`
21676 if $test "$xxx"; then
21677         if $contains SIOCATMARK $xxx >/dev/null 2>&1; then
21678                 val="$define"
21679                 echo "You have socket ioctls defined in <sys/sockio.h>." >&4
21680         else
21681                 val="$undef"
21682                 echo "No socket ioctls found in <sys/sockio.h>." >&4
21683         fi
21684 else
21685         val="$undef"
21686         $cat <<EOM
21687 <sys/sockio.h> not found, assuming socket ioctls are in <sys/ioctl.h>.
21688 EOM
21689 fi
21690 set i_syssockio
21691 eval $setvar
21692
21693 : see if this is a syslog.h system
21694 set syslog.h i_syslog
21695 eval $inhdr
21696
21697 : see if this is a sys/mode.h system
21698 set sys/mode.h i_sysmode
21699 eval $inhdr
21700
21701 : see if there is a sys/poll.h file
21702 set sys/poll.h i_syspoll
21703 eval $inhdr
21704
21705 : see if sys/resource.h has to be included
21706 set sys/resource.h i_sysresrc
21707 eval $inhdr
21708
21709 : see if sys/security.h is available
21710 set sys/security.h i_syssecrt
21711 eval $inhdr
21712
21713 : see if this is a sys/statvfs.h system
21714 set sys/statvfs.h i_sysstatvfs
21715 eval $inhdr
21716
21717 : see if this is a sys/un.h system
21718 set sys/un.h i_sysun
21719 eval $inhdr
21720
21721 : see if this is a sys/utsname.h system
21722 set sys/utsname.h i_sysutsname
21723 eval $inhdr
21724
21725 : see if this is a syswait system
21726 set sys/wait.h i_syswait
21727 eval $inhdr
21728
21729 : see if this is a ustat.h system
21730 set ustat.h i_ustat
21731 eval $inhdr
21732
21733 : see if this is an utime system
21734 set utime.h i_utime
21735 eval $inhdr
21736
21737 : see if this is a vfork system
21738 case "$d_vfork" in
21739 "$define")
21740         set vfork.h i_vfork
21741         eval $inhdr
21742         ;;
21743 *)
21744         i_vfork="$undef"
21745         ;;
21746 esac
21747
21748 : Check extensions
21749 echo " "
21750 echo "Looking for extensions..." >&4
21751 : If we are using the old config.sh, known_extensions may contain
21752 : old or inaccurate or duplicate values.
21753 known_extensions=''
21754 nonxs_extensions=''
21755 : We do not use find because it might not be available.
21756 : We do not just use MANIFEST because the user may have dropped
21757 : some additional extensions into the source tree and expect them
21758 : to be built.
21759
21760 : Function to recursively find available extensions, ignoring DynaLoader
21761 : NOTE: recursion limit of 10 to prevent runaway in case of symlink madness
21762 : In 5.10.1 and later, extensions are stored in directories
21763 : like File-Glob instead of the older File/Glob/.
21764 find_extensions='
21765     for xxx in *; do
21766         case "$xxx" in
21767             DynaLoader|dynaload) ;;
21768             *)
21769             this_ext=`echo $xxx | $sed -e s/-/\\\//g`;
21770             leaf=`echo $xxx | $sed -e s/.*-//`;
21771             if $test -d File; then
21772                 if $test -f $xxx/$leaf.xs -o -f $xxx/$leaf.c; then
21773                     known_extensions="$known_extensions $1$this_ext";
21774                 elif $test -f $xxx/Makefile.PL; then
21775                     nonxs_extensions="$nonxs_extensions $1$this_ext";
21776                 else
21777                     if $test -d $xxx -a $# -lt 10; then
21778                         set $1$xxx/ $*;
21779                         cd "$xxx";
21780                         eval $find_extensions;
21781                         cd ..;
21782                         shift;
21783                     fi;
21784                 fi;
21785             else
21786                 $ls -1 $xxx > $$.tmp;
21787                 if   $contains "\.xs$" $$.tmp > /dev/null 2>&1; then
21788                     known_extensions="$known_extensions $this_ext";
21789                 elif $contains "\.c$"  $$.tmp > /dev/null 2>&1; then
21790                     known_extensions="$known_extensions $this_ext";
21791                 elif $test -d $xxx; then
21792                     nonxs_extensions="$nonxs_extensions $this_ext";
21793                 fi;
21794                 $rm -f $$.tmp;
21795             fi
21796             ;;
21797         esac;
21798     done'
21799 tdir=`pwd`
21800 cd "$rsrc/cpan"
21801 set X
21802 shift
21803 eval $find_extensions
21804 cd "$rsrc/dist"
21805 set X
21806 shift
21807 eval $find_extensions
21808 cd "$rsrc/ext"
21809 set X
21810 shift
21811 eval $find_extensions
21812 if $test -d File-Glob; then
21813     : All ext/ flattened
21814 else
21815     # Special case:  Add in modules that nest beyond the first level.
21816     # Currently threads/shared and Hash/Util/FieldHash, since they are
21817     # not picked up by the recursive find above (and adding in general
21818     # recursive finding breaks SDBM_File/sdbm).
21819     # A.D. 20011025 (SDBM), ajgough 20071008 (FieldHash)
21820     known_extensions="$known_extensions threads/shared Hash/Util/FieldHash"
21821 fi
21822 set X $known_extensions
21823 shift
21824 known_extensions=`echo "$*" | tr ' ' $trnl | $sort | tr $trnl ' '`
21825 set X $nonxs_extensions
21826 shift
21827 nonxs_extensions=`echo "$*" | tr ' ' $trnl | $sort | tr $trnl ' '`
21828 cd "$tdir"
21829
21830 : Now see which are supported on this system.
21831 avail_ext=''
21832 for xxx in $known_extensions ; do
21833         case "$xxx" in
21834         DB_File|db_file)
21835                 case "$i_db" in
21836                 $define) avail_ext="$avail_ext $xxx" ;;
21837                 esac
21838                 ;;
21839         GDBM_File|gdbm_fil)
21840                 case "$i_gdbm" in
21841                 $define) avail_ext="$avail_ext $xxx" ;;
21842                 esac
21843                 ;;
21844         I18N/Langinfo|i18n_lan)
21845                 case "$i_langinfo$d_nl_langinfo" in
21846                 $define$define) avail_ext="$avail_ext $xxx" ;;
21847                 esac
21848                 ;;
21849         IPC/SysV|ipc/sysv)
21850                 : XXX Do we need a useipcsysv variable here
21851                 case "${d_msg}${d_sem}${d_shm}" in
21852                 *"${define}"*) avail_ext="$avail_ext $xxx" ;;
21853                 esac
21854                 ;;
21855         NDBM_File|ndbm_fil)
21856                 case "$d_ndbm" in
21857                 $define)
21858                     case "$osname-$use64bitint" in
21859                     hpux-define)
21860                         case "$libs" in
21861                         *-lndbm*) avail_ext="$avail_ext $xxx" ;;
21862                         esac
21863                         ;;
21864                     *) avail_ext="$avail_ext $xxx" ;;
21865                     esac
21866                     ;;
21867                 esac
21868                 ;;
21869         ODBM_File|odbm_fil)
21870                 case "${i_dbm}${i_rpcsvcdbm}" in
21871                 *"${define}"*)
21872                     case "$d_cplusplus" in
21873                     define) ;; # delete as a function name will not work
21874                     *)  case "$osname-$use64bitint" in
21875                         hpux-define)
21876                             case "$libs" in
21877                             *-ldbm*) avail_ext="$avail_ext $xxx" ;;
21878                             esac
21879                             ;;
21880                         *) avail_ext="$avail_ext $xxx" ;;
21881                         esac
21882                         ;;
21883                     esac
21884                     ;;
21885                 esac
21886                 ;;
21887         Opcode|opcode)
21888                 case "$useopcode" in
21889                 true|define|y) avail_ext="$avail_ext $xxx" ;;
21890                 esac
21891                 ;;
21892         POSIX|posix)
21893                 case "$useposix" in
21894                 true|define|y) avail_ext="$avail_ext $xxx" ;;
21895                 esac
21896                 ;;
21897         Socket|socket)
21898                 case "$d_socket" in
21899                 true|$define|y)
21900                     case "$osname" in
21901                     beos) ;; # not unless BONE
21902                     *) avail_ext="$avail_ext $xxx" ;;
21903                     esac
21904                     ;;
21905                 esac
21906                 ;;
21907         Sys/Syslog|sys/syslog)
21908                 : XXX syslog requires socket
21909                 case "$d_socket" in
21910                 true|$define|y) avail_ext="$avail_ext $xxx" ;;
21911                 esac
21912                 ;;
21913         Thread|thread)
21914                 case "$usethreads" in
21915                 true|$define|y)
21916                         case "$use5005threads" in
21917                         $define|true|[yY]*) avail_ext="$avail_ext $xxx" ;;
21918                         esac
21919                 esac
21920                 ;;
21921         threads|threads/shared)
21922                 # threads and threads::shared are special cases.
21923                 # To stop people from asking "Perl 5.8.0 was supposed
21924                 # to have this new fancy threads implementation but my
21925                 # perl doesn't have it" and from people trying to
21926                 # (re)install the threads module using CPAN.pm and
21927                 # CPAN.pm then offering to reinstall Perl 5.8.0,
21928                 # the threads.pm and threads/shared.pm will always be
21929                 # there, croaking informatively ("you need to rebuild
21930                 # all of Perl with threads, sorry") when threads haven't
21931                 # been compiled in.
21932                 # --jhi
21933                 avail_ext="$avail_ext $xxx"
21934                 ;;
21935         VMS*)
21936                 ;;
21937         Win32*)
21938                 case "$osname" in
21939                 cygwin) avail_ext="$avail_ext $xxx" ;;
21940                 esac
21941                 ;;
21942         XS/APItest|xs/apitest)
21943                 # This is just for testing.  Skip it unless we have dynamic loading.
21944
21945                 case "$usedl" in
21946                 $define) avail_ext="$avail_ext $xxx" ;;
21947                 esac
21948                 ;;
21949         XS/APItest/KeywordRPN|xs/apitest/keywordrpn)
21950                 # This is just for testing.  Skip it unless we have dynamic loading.
21951
21952                 case "$usedl" in
21953                 $define) avail_ext="$avail_ext $xxx" ;;
21954                 esac
21955                 ;;
21956         XS/Typemap|xs/typemap)
21957                 # This is just for testing.  Skip it unless we have dynamic loading.
21958                 case "$usedl" in
21959                 $define) avail_ext="$avail_ext $xxx" ;;
21960                 esac
21961                 ;;
21962         *)      avail_ext="$avail_ext $xxx"
21963                 ;;
21964         esac
21965 done
21966
21967 set X $avail_ext
21968 shift
21969 avail_ext="$*"
21970
21971 case "$onlyextensions" in
21972 '') ;;
21973 *)  keepextensions=''
21974     echo "You have requested that only certains extensions be included..." >&4
21975     for i in $onlyextensions; do
21976         case " $avail_ext " in
21977         *" $i "*)
21978             echo "Keeping extension $i."
21979             keepextensions="$keepextensions $i"
21980             ;;
21981         *) echo "Ignoring extension $i." ;;
21982         esac
21983     done
21984     avail_ext="$keepextensions"
21985     ;;
21986 esac
21987
21988 case "$noextensions" in
21989 '') ;;
21990 *)  keepextensions=''
21991     echo "You have requested that certain extensions be ignored..." >&4
21992     for i in $avail_ext; do
21993         case " $noextensions " in
21994         *" $i "*) echo "Ignoring extension $i." ;;
21995         *) echo "Keeping extension $i.";
21996            keepextensions="$keepextensions $i"
21997            ;;
21998         esac
21999     done
22000     avail_ext="$keepextensions"
22001     ;;
22002 esac
22003
22004 : Now see which nonxs extensions are supported on this system.
22005 : For now assume all are.
22006 nonxs_ext=''
22007 for xxx in $nonxs_extensions ; do
22008         case "$xxx" in
22009         *)      nonxs_ext="$nonxs_ext $xxx"
22010                 ;;
22011         esac
22012 done
22013
22014 set X $nonxs_ext
22015 shift
22016 nonxs_ext="$*"
22017
22018 case $usedl in
22019 $define)
22020         $cat <<EOM
22021 A number of extensions are supplied with $package.  You may choose to
22022 compile these extensions for dynamic loading (the default), compile
22023 them into the $package executable (static loading), or not include
22024 them at all.  Answer "none" to include no extensions.
22025 Note that DynaLoader is always built and need not be mentioned here.
22026
22027 EOM
22028         case "$dynamic_ext" in
22029         '')
22030                 : Exclude those listed in static_ext
22031                 dflt=''
22032                 for xxx in $avail_ext; do
22033                         case " $static_ext " in
22034                         *" $xxx "*) ;;
22035                         *) dflt="$dflt $xxx" ;;
22036                         esac
22037                 done
22038                 set X $dflt
22039                 shift
22040                 dflt="$*"
22041                 ;;
22042         *)      dflt="$dynamic_ext"
22043                 # Perhaps we are reusing an old out-of-date config.sh.
22044                 case "$hint" in
22045                 previous)
22046                         if test X"$dynamic_ext" != X"$avail_ext"; then
22047                                 $cat <<EOM
22048 NOTICE:  Your previous config.sh list may be incorrect.
22049 The extensions now available to you are
22050         ${avail_ext}
22051 but the default list from your previous config.sh is
22052         ${dynamic_ext}
22053
22054 EOM
22055                         fi
22056                         ;;
22057                 esac
22058                 ;;
22059         esac
22060         case "$dflt" in
22061         '')     dflt=none;;
22062         esac
22063         rp="What extensions do you wish to load dynamically?"
22064         . ./myread
22065         case "$ans" in
22066         none) dynamic_ext=' ' ;;
22067         *) dynamic_ext="$ans" ;;
22068         esac
22069
22070         case "$static_ext" in
22071         '')
22072                 : Exclude those already listed in dynamic linking
22073                 dflt=''
22074                 for xxx in $avail_ext; do
22075                         case " $dynamic_ext " in
22076                         *" $xxx "*) ;;
22077                         *) dflt="$dflt $xxx" ;;
22078                         esac
22079                 done
22080                 set X $dflt
22081                 shift
22082                 dflt="$*"
22083                 ;;
22084         *)  dflt="$static_ext"
22085                 ;;
22086         esac
22087
22088         case "$dflt" in
22089         '')     dflt=none;;
22090         esac
22091         rp="What extensions do you wish to load statically?"
22092         . ./myread
22093         case "$ans" in
22094         none) static_ext=' ' ;;
22095         *) static_ext="$ans" ;;
22096         esac
22097         ;;
22098 *)
22099         $cat <<EOM
22100 A number of extensions are supplied with $package.  Answer "none"
22101 to include no extensions.
22102 Note that DynaLoader is always built and need not be mentioned here.
22103
22104 EOM
22105         case "$static_ext" in
22106         '') dflt="$avail_ext" ;;
22107         *)      dflt="$static_ext"
22108                 # Perhaps we are reusing an old out-of-date config.sh.
22109                 case "$hint" in
22110                 previous)
22111                         if test X"$static_ext" != X"$avail_ext"; then
22112                                 $cat <<EOM
22113 NOTICE:  Your previous config.sh list may be incorrect.
22114 The extensions now available to you are
22115         ${avail_ext}
22116 but the default list from your previous config.sh is
22117         ${static_ext}
22118
22119 EOM
22120                         fi
22121                         ;;
22122                 esac
22123                 ;;
22124         esac
22125         : Exclude those that are not xs extensions
22126         case "$dflt" in
22127         '')     dflt=none;;
22128         esac
22129         rp="What extensions do you wish to include?"
22130         . ./myread
22131         case "$ans" in
22132         none) static_ext=' ' ;;
22133         *) static_ext="$ans" ;;
22134         esac
22135         ;;
22136 esac
22137 #
22138 # Encode is a special case.  If we are building Encode as a static
22139 # extension, we need to explicitly list its subextensions as well.
22140 # For other nested extensions, this is handled automatically by
22141 # the appropriate Makefile.PL.
22142 case " $static_ext " in
22143         *" Encode "*) # Add the subextensions of Encode
22144         cd "$rsrc/ext"
22145         for xxx in `ls Encode/*/Makefile.PL|awk -F/ '{print $2}'`; do
22146                 static_ext="$static_ext Encode/$xxx"
22147         done
22148         cd "$tdir"
22149         ;;
22150 esac
22151
22152 set X $dynamic_ext $static_ext $nonxs_ext
22153 shift
22154 extensions="$*"
22155
22156 # Sanity check:  We require an extension suitable for use with
22157 # AnyDBM_File, as well as Fcntl and IO.  (Failure to have these
22158 # should show up as failures in the test suite, but it's helpful to
22159 # catch them now.) The 'extensions' list is normally sorted
22160 # alphabetically, so we need to accept either
22161 #    DB_File ... Fcntl ... IO  ....
22162 # or something like
22163 #    Fcntl ... NDBM_File ... IO  ....
22164 case " $extensions"  in
22165 *"_File "*" Fcntl "*" IO "*) ;; # DB_File
22166 *" Fcntl "*"_File "*" IO "*) ;; # GDBM_File
22167 *" Fcntl "*" IO "*"_File "*) ;; # NDBM_File
22168 *) echo "WARNING: Extensions DB_File or *DBM_File, Fcntl, and IO not configured." >&4
22169    echo "WARNING: The Perl you are building will be quite crippled." >& 4
22170    ;;
22171 esac
22172
22173 : Remove libraries needed only for extensions
22174 : The appropriate ext/Foo/Makefile.PL will add them back in, if necessary.
22175 : The exception is SunOS 4.x, which needs them.
22176 case "${osname}X${osvers}" in
22177 sunos*X4*)
22178     perllibs="$libs"
22179     ;;
22180 *) case "$usedl" in
22181     $define|true|[yY]*)
22182             set X `echo " $libs " | sed -e 's@ -lndbm @ @' -e 's@ -lgdbm @ @' -e 's@ -lgdbm_compat @ @' -e 's@ -ldbm @ @' -e 's@ -ldb @ @'` 
22183             shift
22184             perllibs="$*"
22185             ;;
22186     *)  perllibs="$libs"
22187             ;;
22188     esac
22189     ;;
22190 esac
22191
22192 : Remove build directory name from cppstdin so it can be used from
22193 : either the present location or the final installed location.
22194 echo " "
22195 : Get out of the UU directory to get correct path name.
22196 cd ..
22197 case "$cppstdin" in
22198 `pwd`/cppstdin)
22199         echo "Stripping down cppstdin path name"
22200         cppstdin=cppstdin
22201         ;;
22202 esac
22203 cd UU
22204
22205 : end of configuration questions
22206 echo " "
22207 echo "End of configuration questions."
22208 echo " "
22209
22210 : back to where it started
22211 if test -d ../UU; then
22212         cd ..
22213 fi
22214
22215 : configuration may be unconditionally patched via a 'config.arch' file
22216 if $test -f config.arch; then
22217         echo "I see a config.arch file, loading it." >&4
22218         . ./config.arch
22219 fi
22220
22221 : configuration may be patched via a 'config.over' file
22222 if $test -f config.over; then
22223         echo " "
22224         dflt=y
22225         rp='I see a config.over file.  Do you wish to load it?'
22226         . UU/myread
22227         case "$ans" in
22228         n*) echo "OK, I'll ignore it.";;
22229         *)      . ./config.over
22230                 echo "Configuration override changes have been loaded."
22231                 ;;
22232         esac
22233 fi
22234
22235 : in case they want portability, strip down executable paths
22236 case "$d_portable" in
22237 "$define")
22238         echo " "
22239         echo "Stripping down executable paths..." >&4
22240         for file in $loclist $trylist; do
22241                 eval temp=\$$file
22242                 eval $file=`basename $temp`
22243         done
22244         ;;
22245 esac
22246
22247 : create config.sh file
22248 echo " "
22249 echo "Creating config.sh..." >&4
22250 $spitshell <<EOT >config.sh
22251 $startsh
22252 #
22253 # This file was produced by running the Configure script. It holds all the
22254 # definitions figured out by Configure. Should you modify one of these values,
22255 # do not forget to propagate your changes by running "Configure -der". You may
22256 # instead choose to run each of the .SH files by yourself, or "Configure -S".
22257 #
22258
22259 # Package name      : $package
22260 # Source directory  : $src
22261 # Configuration time: $cf_time
22262 # Configured by     : $cf_by
22263 # Target system     : $myuname
22264
22265 EOT
22266 : Add in command line options if available
22267 $test -f UU/cmdline.opt && $cat UU/cmdline.opt >> config.sh
22268
22269 $spitshell <<EOT >>config.sh
22270
22271 Author='$Author'
22272 Date='$Date'
22273 Header='$Header'
22274 Id='$Id'
22275 Locker='$Locker'
22276 Log='$Log'
22277 RCSfile='$RCSfile'
22278 Revision='$Revision'
22279 Source='$Source'
22280 State='$State'
22281 _a='$_a'
22282 _exe='$_exe'
22283 _o='$_o'
22284 afs='$afs'
22285 afsroot='$afsroot'
22286 alignbytes='$alignbytes'
22287 ansi2knr='$ansi2knr'
22288 aphostname='$aphostname'
22289 api_revision='$api_revision'
22290 api_subversion='$api_subversion'
22291 api_version='$api_version'
22292 api_versionstring='$api_versionstring'
22293 ar='$ar'
22294 archlib='$archlib'
22295 archlibexp='$archlibexp'
22296 archname64='$archname64'
22297 archname='$archname'
22298 archobjs='$archobjs'
22299 asctime_r_proto='$asctime_r_proto'
22300 awk='$awk'
22301 baserev='$baserev'
22302 bash='$bash'
22303 bin='$bin'
22304 bin_ELF='$bin_ELF'
22305 binexp='$binexp'
22306 bison='$bison'
22307 byacc='$byacc'
22308 byteorder='$byteorder'
22309 c='$c'
22310 castflags='$castflags'
22311 cat='$cat'
22312 cc='$cc'
22313 cccdlflags='$cccdlflags'
22314 ccdlflags='$ccdlflags'
22315 ccflags='$ccflags'
22316 ccflags_uselargefiles='$ccflags_uselargefiles'
22317 ccname='$ccname'
22318 ccsymbols='$ccsymbols'
22319 ccversion='$ccversion'
22320 cf_by='$cf_by'
22321 cf_email='$cf_email'
22322 cf_time='$cf_time'
22323 charbits='$charbits'
22324 charsize='$charsize'
22325 chgrp='$chgrp'
22326 chmod='$chmod'
22327 chown='$chown'
22328 clocktype='$clocktype'
22329 comm='$comm'
22330 compress='$compress'
22331 contains='$contains'
22332 cp='$cp'
22333 cpio='$cpio'
22334 cpp='$cpp'
22335 cpp_stuff='$cpp_stuff'
22336 cppccsymbols='$cppccsymbols'
22337 cppflags='$cppflags'
22338 cpplast='$cpplast'
22339 cppminus='$cppminus'
22340 cpprun='$cpprun'
22341 cppstdin='$cppstdin'
22342 cppsymbols='$cppsymbols'
22343 crypt_r_proto='$crypt_r_proto'
22344 cryptlib='$cryptlib'
22345 csh='$csh'
22346 ctermid_r_proto='$ctermid_r_proto'
22347 ctime_r_proto='$ctime_r_proto'
22348 d_Gconvert='$d_Gconvert'
22349 d_PRIEUldbl='$d_PRIEUldbl'
22350 d_PRIFUldbl='$d_PRIFUldbl'
22351 d_PRIGUldbl='$d_PRIGUldbl'
22352 d_PRIXU64='$d_PRIXU64'
22353 d_PRId64='$d_PRId64'
22354 d_PRIeldbl='$d_PRIeldbl'
22355 d_PRIfldbl='$d_PRIfldbl'
22356 d_PRIgldbl='$d_PRIgldbl'
22357 d_PRIi64='$d_PRIi64'
22358 d_PRIo64='$d_PRIo64'
22359 d_PRIu64='$d_PRIu64'
22360 d_PRIx64='$d_PRIx64'
22361 d_SCNfldbl='$d_SCNfldbl'
22362 d__fwalk='$d__fwalk'
22363 d_access='$d_access'
22364 d_accessx='$d_accessx'
22365 d_aintl='$d_aintl'
22366 d_alarm='$d_alarm'
22367 d_archlib='$d_archlib'
22368 d_asctime64='$d_asctime64'
22369 d_asctime_r='$d_asctime_r'
22370 d_atolf='$d_atolf'
22371 d_atoll='$d_atoll'
22372 d_attribute_deprecated='$d_attribute_deprecated'
22373 d_attribute_format='$d_attribute_format'
22374 d_attribute_malloc='$d_attribute_malloc'
22375 d_attribute_nonnull='$d_attribute_nonnull'
22376 d_attribute_noreturn='$d_attribute_noreturn'
22377 d_attribute_pure='$d_attribute_pure'
22378 d_attribute_unused='$d_attribute_unused'
22379 d_attribute_warn_unused_result='$d_attribute_warn_unused_result'
22380 d_bcmp='$d_bcmp'
22381 d_bcopy='$d_bcopy'
22382 d_bsd='$d_bsd'
22383 d_bsdgetpgrp='$d_bsdgetpgrp'
22384 d_bsdsetpgrp='$d_bsdsetpgrp'
22385 d_builtin_choose_expr='$d_builtin_choose_expr'
22386 d_builtin_expect='$d_builtin_expect'
22387 d_bzero='$d_bzero'
22388 d_c99_variadic_macros='$d_c99_variadic_macros'
22389 d_casti32='$d_casti32'
22390 d_castneg='$d_castneg'
22391 d_charvspr='$d_charvspr'
22392 d_chown='$d_chown'
22393 d_chroot='$d_chroot'
22394 d_chsize='$d_chsize'
22395 d_class='$d_class'
22396 d_clearenv='$d_clearenv'
22397 d_closedir='$d_closedir'
22398 d_cmsghdr_s='$d_cmsghdr_s'
22399 d_const='$d_const'
22400 d_copysignl='$d_copysignl'
22401 d_cplusplus='$d_cplusplus'
22402 d_crypt='$d_crypt'
22403 d_crypt_r='$d_crypt_r'
22404 d_csh='$d_csh'
22405 d_ctermid='$d_ctermid'
22406 d_ctermid_r='$d_ctermid_r'
22407 d_ctime64='$d_ctime64'
22408 d_ctime_r='$d_ctime_r'
22409 d_cuserid='$d_cuserid'
22410 d_dbl_dig='$d_dbl_dig'
22411 d_dbminitproto='$d_dbminitproto'
22412 d_difftime64='$d_difftime64'
22413 d_difftime='$d_difftime'
22414 d_dir_dd_fd='$d_dir_dd_fd'
22415 d_dirfd='$d_dirfd'
22416 d_dirnamlen='$d_dirnamlen'
22417 d_dlerror='$d_dlerror'
22418 d_dlopen='$d_dlopen'
22419 d_dlsymun='$d_dlsymun'
22420 d_dosuid='$d_dosuid'
22421 d_drand48_r='$d_drand48_r'
22422 d_drand48proto='$d_drand48proto'
22423 d_dup2='$d_dup2'
22424 d_eaccess='$d_eaccess'
22425 d_endgrent='$d_endgrent'
22426 d_endgrent_r='$d_endgrent_r'
22427 d_endhent='$d_endhent'
22428 d_endhostent_r='$d_endhostent_r'
22429 d_endnent='$d_endnent'
22430 d_endnetent_r='$d_endnetent_r'
22431 d_endpent='$d_endpent'
22432 d_endprotoent_r='$d_endprotoent_r'
22433 d_endpwent='$d_endpwent'
22434 d_endpwent_r='$d_endpwent_r'
22435 d_endsent='$d_endsent'
22436 d_endservent_r='$d_endservent_r'
22437 d_eofnblk='$d_eofnblk'
22438 d_eunice='$d_eunice'
22439 d_faststdio='$d_faststdio'
22440 d_fchdir='$d_fchdir'
22441 d_fchmod='$d_fchmod'
22442 d_fchown='$d_fchown'
22443 d_fcntl='$d_fcntl'
22444 d_fcntl_can_lock='$d_fcntl_can_lock'
22445 d_fd_macros='$d_fd_macros'
22446 d_fd_set='$d_fd_set'
22447 d_fds_bits='$d_fds_bits'
22448 d_fgetpos='$d_fgetpos'
22449 d_finite='$d_finite'
22450 d_finitel='$d_finitel'
22451 d_flexfnam='$d_flexfnam'
22452 d_flock='$d_flock'
22453 d_flockproto='$d_flockproto'
22454 d_fork='$d_fork'
22455 d_fp_class='$d_fp_class'
22456 d_fpathconf='$d_fpathconf'
22457 d_fpclass='$d_fpclass'
22458 d_fpclassify='$d_fpclassify'
22459 d_fpclassl='$d_fpclassl'
22460 d_fpos64_t='$d_fpos64_t'
22461 d_frexpl='$d_frexpl'
22462 d_fs_data_s='$d_fs_data_s'
22463 d_fseeko='$d_fseeko'
22464 d_fsetpos='$d_fsetpos'
22465 d_fstatfs='$d_fstatfs'
22466 d_fstatvfs='$d_fstatvfs'
22467 d_fsync='$d_fsync'
22468 d_ftello='$d_ftello'
22469 d_ftime='$d_ftime'
22470 d_futimes='$d_futimes'
22471 d_gdbm_ndbm_h_uses_prototypes='$d_gdbm_ndbm_h_uses_prototypes'
22472 d_gdbmndbm_h_uses_prototypes='$d_gdbmndbm_h_uses_prototypes'
22473 d_getaddrinfo='$d_getaddrinfo'
22474 d_getcwd='$d_getcwd'
22475 d_getespwnam='$d_getespwnam'
22476 d_getfsstat='$d_getfsstat'
22477 d_getgrent='$d_getgrent'
22478 d_getgrent_r='$d_getgrent_r'
22479 d_getgrgid_r='$d_getgrgid_r'
22480 d_getgrnam_r='$d_getgrnam_r'
22481 d_getgrps='$d_getgrps'
22482 d_gethbyaddr='$d_gethbyaddr'
22483 d_gethbyname='$d_gethbyname'
22484 d_gethent='$d_gethent'
22485 d_gethname='$d_gethname'
22486 d_gethostbyaddr_r='$d_gethostbyaddr_r'
22487 d_gethostbyname_r='$d_gethostbyname_r'
22488 d_gethostent_r='$d_gethostent_r'
22489 d_gethostprotos='$d_gethostprotos'
22490 d_getitimer='$d_getitimer'
22491 d_getlogin='$d_getlogin'
22492 d_getlogin_r='$d_getlogin_r'
22493 d_getmnt='$d_getmnt'
22494 d_getmntent='$d_getmntent'
22495 d_getnameinfo='$d_getnameinfo'
22496 d_getnbyaddr='$d_getnbyaddr'
22497 d_getnbyname='$d_getnbyname'
22498 d_getnent='$d_getnent'
22499 d_getnetbyaddr_r='$d_getnetbyaddr_r'
22500 d_getnetbyname_r='$d_getnetbyname_r'
22501 d_getnetent_r='$d_getnetent_r'
22502 d_getnetprotos='$d_getnetprotos'
22503 d_getpagsz='$d_getpagsz'
22504 d_getpbyname='$d_getpbyname'
22505 d_getpbynumber='$d_getpbynumber'
22506 d_getpent='$d_getpent'
22507 d_getpgid='$d_getpgid'
22508 d_getpgrp2='$d_getpgrp2'
22509 d_getpgrp='$d_getpgrp'
22510 d_getppid='$d_getppid'
22511 d_getprior='$d_getprior'
22512 d_getprotobyname_r='$d_getprotobyname_r'
22513 d_getprotobynumber_r='$d_getprotobynumber_r'
22514 d_getprotoent_r='$d_getprotoent_r'
22515 d_getprotoprotos='$d_getprotoprotos'
22516 d_getprpwnam='$d_getprpwnam'
22517 d_getpwent='$d_getpwent'
22518 d_getpwent_r='$d_getpwent_r'
22519 d_getpwnam_r='$d_getpwnam_r'
22520 d_getpwuid_r='$d_getpwuid_r'
22521 d_getsbyname='$d_getsbyname'
22522 d_getsbyport='$d_getsbyport'
22523 d_getsent='$d_getsent'
22524 d_getservbyname_r='$d_getservbyname_r'
22525 d_getservbyport_r='$d_getservbyport_r'
22526 d_getservent_r='$d_getservent_r'
22527 d_getservprotos='$d_getservprotos'
22528 d_getspnam='$d_getspnam'
22529 d_getspnam_r='$d_getspnam_r'
22530 d_gettimeod='$d_gettimeod'
22531 d_gmtime64='$d_gmtime64'
22532 d_gmtime_r='$d_gmtime_r'
22533 d_gnulibc='$d_gnulibc'
22534 d_grpasswd='$d_grpasswd'
22535 d_hasmntopt='$d_hasmntopt'
22536 d_htonl='$d_htonl'
22537 d_ilogbl='$d_ilogbl'
22538 d_inc_version_list='$d_inc_version_list'
22539 d_index='$d_index'
22540 d_inetaton='$d_inetaton'
22541 d_inetntop='$d_inetntop'
22542 d_inetpton='$d_inetpton'
22543 d_int64_t='$d_int64_t'
22544 d_isascii='$d_isascii'
22545 d_isfinite='$d_isfinite'
22546 d_isinf='$d_isinf'
22547 d_isnan='$d_isnan'
22548 d_isnanl='$d_isnanl'
22549 d_killpg='$d_killpg'
22550 d_lchown='$d_lchown'
22551 d_ldbl_dig='$d_ldbl_dig'
22552 d_libm_lib_version='$d_libm_lib_version'
22553 d_link='$d_link'
22554 d_localtime64='$d_localtime64'
22555 d_localtime_r='$d_localtime_r'
22556 d_localtime_r_needs_tzset='$d_localtime_r_needs_tzset'
22557 d_locconv='$d_locconv'
22558 d_lockf='$d_lockf'
22559 d_longdbl='$d_longdbl'
22560 d_longlong='$d_longlong'
22561 d_lseekproto='$d_lseekproto'
22562 d_lstat='$d_lstat'
22563 d_madvise='$d_madvise'
22564 d_malloc_good_size='$d_malloc_good_size'
22565 d_malloc_size='$d_malloc_size'
22566 d_mblen='$d_mblen'
22567 d_mbstowcs='$d_mbstowcs'
22568 d_mbtowc='$d_mbtowc'
22569 d_memchr='$d_memchr'
22570 d_memcmp='$d_memcmp'
22571 d_memcpy='$d_memcpy'
22572 d_memmove='$d_memmove'
22573 d_memset='$d_memset'
22574 d_mkdir='$d_mkdir'
22575 d_mkdtemp='$d_mkdtemp'
22576 d_mkfifo='$d_mkfifo'
22577 d_mkstemp='$d_mkstemp'
22578 d_mkstemps='$d_mkstemps'
22579 d_mktime64='$d_mktime64'
22580 d_mktime='$d_mktime'
22581 d_mmap='$d_mmap'
22582 d_modfl='$d_modfl'
22583 d_modfl_pow32_bug='$d_modfl_pow32_bug'
22584 d_modflproto='$d_modflproto'
22585 d_mprotect='$d_mprotect'
22586 d_msg='$d_msg'
22587 d_msg_ctrunc='$d_msg_ctrunc'
22588 d_msg_dontroute='$d_msg_dontroute'
22589 d_msg_oob='$d_msg_oob'
22590 d_msg_peek='$d_msg_peek'
22591 d_msg_proxy='$d_msg_proxy'
22592 d_msgctl='$d_msgctl'
22593 d_msgget='$d_msgget'
22594 d_msghdr_s='$d_msghdr_s'
22595 d_msgrcv='$d_msgrcv'
22596 d_msgsnd='$d_msgsnd'
22597 d_msync='$d_msync'
22598 d_munmap='$d_munmap'
22599 d_mymalloc='$d_mymalloc'
22600 d_ndbm='$d_ndbm'
22601 d_ndbm_h_uses_prototypes='$d_ndbm_h_uses_prototypes'
22602 d_nice='$d_nice'
22603 d_nl_langinfo='$d_nl_langinfo'
22604 d_nv_preserves_uv='$d_nv_preserves_uv'
22605 d_nv_zero_is_allbits_zero='$d_nv_zero_is_allbits_zero'
22606 d_off64_t='$d_off64_t'
22607 d_old_pthread_create_joinable='$d_old_pthread_create_joinable'
22608 d_oldpthreads='$d_oldpthreads'
22609 d_oldsock='$d_oldsock'
22610 d_open3='$d_open3'
22611 d_pathconf='$d_pathconf'
22612 d_pause='$d_pause'
22613 d_perl_otherlibdirs='$d_perl_otherlibdirs'
22614 d_phostname='$d_phostname'
22615 d_pipe='$d_pipe'
22616 d_poll='$d_poll'
22617 d_portable='$d_portable'
22618 d_printf_format_null='$d_printf_format_null'
22619 d_procselfexe='$d_procselfexe'
22620 d_pseudofork='$d_pseudofork'
22621 d_pthread_atfork='$d_pthread_atfork'
22622 d_pthread_attr_setscope='$d_pthread_attr_setscope'
22623 d_pthread_yield='$d_pthread_yield'
22624 d_pwage='$d_pwage'
22625 d_pwchange='$d_pwchange'
22626 d_pwclass='$d_pwclass'
22627 d_pwcomment='$d_pwcomment'
22628 d_pwexpire='$d_pwexpire'
22629 d_pwgecos='$d_pwgecos'
22630 d_pwpasswd='$d_pwpasswd'
22631 d_pwquota='$d_pwquota'
22632 d_qgcvt='$d_qgcvt'
22633 d_quad='$d_quad'
22634 d_random_r='$d_random_r'
22635 d_readdir64_r='$d_readdir64_r'
22636 d_readdir='$d_readdir'
22637 d_readdir_r='$d_readdir_r'
22638 d_readlink='$d_readlink'
22639 d_readv='$d_readv'
22640 d_recvmsg='$d_recvmsg'
22641 d_rename='$d_rename'
22642 d_rewinddir='$d_rewinddir'
22643 d_rmdir='$d_rmdir'
22644 d_safebcpy='$d_safebcpy'
22645 d_safemcpy='$d_safemcpy'
22646 d_sanemcmp='$d_sanemcmp'
22647 d_sbrkproto='$d_sbrkproto'
22648 d_scalbnl='$d_scalbnl'
22649 d_sched_yield='$d_sched_yield'
22650 d_scm_rights='$d_scm_rights'
22651 d_seekdir='$d_seekdir'
22652 d_select='$d_select'
22653 d_sem='$d_sem'
22654 d_semctl='$d_semctl'
22655 d_semctl_semid_ds='$d_semctl_semid_ds'
22656 d_semctl_semun='$d_semctl_semun'
22657 d_semget='$d_semget'
22658 d_semop='$d_semop'
22659 d_sendmsg='$d_sendmsg'
22660 d_setegid='$d_setegid'
22661 d_seteuid='$d_seteuid'
22662 d_setgrent='$d_setgrent'
22663 d_setgrent_r='$d_setgrent_r'
22664 d_setgrps='$d_setgrps'
22665 d_sethent='$d_sethent'
22666 d_sethostent_r='$d_sethostent_r'
22667 d_setitimer='$d_setitimer'
22668 d_setlinebuf='$d_setlinebuf'
22669 d_setlocale='$d_setlocale'
22670 d_setlocale_r='$d_setlocale_r'
22671 d_setnent='$d_setnent'
22672 d_setnetent_r='$d_setnetent_r'
22673 d_setpent='$d_setpent'
22674 d_setpgid='$d_setpgid'
22675 d_setpgrp2='$d_setpgrp2'
22676 d_setpgrp='$d_setpgrp'
22677 d_setprior='$d_setprior'
22678 d_setproctitle='$d_setproctitle'
22679 d_setprotoent_r='$d_setprotoent_r'
22680 d_setpwent='$d_setpwent'
22681 d_setpwent_r='$d_setpwent_r'
22682 d_setregid='$d_setregid'
22683 d_setresgid='$d_setresgid'
22684 d_setresuid='$d_setresuid'
22685 d_setreuid='$d_setreuid'
22686 d_setrgid='$d_setrgid'
22687 d_setruid='$d_setruid'
22688 d_setsent='$d_setsent'
22689 d_setservent_r='$d_setservent_r'
22690 d_setsid='$d_setsid'
22691 d_setvbuf='$d_setvbuf'
22692 d_sfio='$d_sfio'
22693 d_shm='$d_shm'
22694 d_shmat='$d_shmat'
22695 d_shmatprototype='$d_shmatprototype'
22696 d_shmctl='$d_shmctl'
22697 d_shmdt='$d_shmdt'
22698 d_shmget='$d_shmget'
22699 d_sigaction='$d_sigaction'
22700 d_signbit='$d_signbit'
22701 d_sigprocmask='$d_sigprocmask'
22702 d_sigsetjmp='$d_sigsetjmp'
22703 d_sitearch='$d_sitearch'
22704 d_snprintf='$d_snprintf'
22705 d_sockatmark='$d_sockatmark'
22706 d_sockatmarkproto='$d_sockatmarkproto'
22707 d_socket='$d_socket'
22708 d_socklen_t='$d_socklen_t'
22709 d_sockpair='$d_sockpair'
22710 d_socks5_init='$d_socks5_init'
22711 d_sprintf_returns_strlen='$d_sprintf_returns_strlen'
22712 d_sqrtl='$d_sqrtl'
22713 d_srand48_r='$d_srand48_r'
22714 d_srandom_r='$d_srandom_r'
22715 d_sresgproto='$d_sresgproto'
22716 d_sresuproto='$d_sresuproto'
22717 d_statblks='$d_statblks'
22718 d_statfs_f_flags='$d_statfs_f_flags'
22719 d_statfs_s='$d_statfs_s'
22720 d_statvfs='$d_statvfs'
22721 d_stdio_cnt_lval='$d_stdio_cnt_lval'
22722 d_stdio_ptr_lval='$d_stdio_ptr_lval'
22723 d_stdio_ptr_lval_nochange_cnt='$d_stdio_ptr_lval_nochange_cnt'
22724 d_stdio_ptr_lval_sets_cnt='$d_stdio_ptr_lval_sets_cnt'
22725 d_stdio_stream_array='$d_stdio_stream_array'
22726 d_stdiobase='$d_stdiobase'
22727 d_stdstdio='$d_stdstdio'
22728 d_strchr='$d_strchr'
22729 d_strcoll='$d_strcoll'
22730 d_strctcpy='$d_strctcpy'
22731 d_strerrm='$d_strerrm'
22732 d_strerror='$d_strerror'
22733 d_strerror_r='$d_strerror_r'
22734 d_strftime='$d_strftime'
22735 d_strlcat='$d_strlcat'
22736 d_strlcpy='$d_strlcpy'
22737 d_strtod='$d_strtod'
22738 d_strtol='$d_strtol'
22739 d_strtold='$d_strtold'
22740 d_strtoll='$d_strtoll'
22741 d_strtoq='$d_strtoq'
22742 d_strtoul='$d_strtoul'
22743 d_strtoull='$d_strtoull'
22744 d_strtouq='$d_strtouq'
22745 d_strxfrm='$d_strxfrm'
22746 d_suidsafe='$d_suidsafe'
22747 d_symlink='$d_symlink'
22748 d_syscall='$d_syscall'
22749 d_syscallproto='$d_syscallproto'
22750 d_sysconf='$d_sysconf'
22751 d_sysernlst='$d_sysernlst'
22752 d_syserrlst='$d_syserrlst'
22753 d_system='$d_system'
22754 d_tcgetpgrp='$d_tcgetpgrp'
22755 d_tcsetpgrp='$d_tcsetpgrp'
22756 d_telldir='$d_telldir'
22757 d_telldirproto='$d_telldirproto'
22758 d_time='$d_time'
22759 d_timegm='$d_timegm'
22760 d_times='$d_times'
22761 d_tm_tm_gmtoff='$d_tm_tm_gmtoff'
22762 d_tm_tm_zone='$d_tm_tm_zone'
22763 d_tmpnam_r='$d_tmpnam_r'
22764 d_truncate='$d_truncate'
22765 d_ttyname_r='$d_ttyname_r'
22766 d_tzname='$d_tzname'
22767 d_u32align='$d_u32align'
22768 d_ualarm='$d_ualarm'
22769 d_umask='$d_umask'
22770 d_uname='$d_uname'
22771 d_union_semun='$d_union_semun'
22772 d_unordered='$d_unordered'
22773 d_unsetenv='$d_unsetenv'
22774 d_usleep='$d_usleep'
22775 d_usleepproto='$d_usleepproto'
22776 d_ustat='$d_ustat'
22777 d_vendorarch='$d_vendorarch'
22778 d_vendorbin='$d_vendorbin'
22779 d_vendorlib='$d_vendorlib'
22780 d_vendorscript='$d_vendorscript'
22781 d_vfork='$d_vfork'
22782 d_void_closedir='$d_void_closedir'
22783 d_voidsig='$d_voidsig'
22784 d_voidtty='$d_voidtty'
22785 d_volatile='$d_volatile'
22786 d_vprintf='$d_vprintf'
22787 d_vsnprintf='$d_vsnprintf'
22788 d_wait4='$d_wait4'
22789 d_waitpid='$d_waitpid'
22790 d_wcstombs='$d_wcstombs'
22791 d_wctomb='$d_wctomb'
22792 d_writev='$d_writev'
22793 d_xenix='$d_xenix'
22794 date='$date'
22795 db_hashtype='$db_hashtype'
22796 db_prefixtype='$db_prefixtype'
22797 db_version_major='$db_version_major'
22798 db_version_minor='$db_version_minor'
22799 db_version_patch='$db_version_patch'
22800 defvoidused='$defvoidused'
22801 direntrytype='$direntrytype'
22802 dlext='$dlext'
22803 dlsrc='$dlsrc'
22804 doublesize='$doublesize'
22805 drand01='$drand01'
22806 drand48_r_proto='$drand48_r_proto'
22807 dtrace='$dtrace'
22808 dynamic_ext='$dynamic_ext'
22809 eagain='$eagain'
22810 ebcdic='$ebcdic'
22811 echo='$echo'
22812 egrep='$egrep'
22813 emacs='$emacs'
22814 endgrent_r_proto='$endgrent_r_proto'
22815 endhostent_r_proto='$endhostent_r_proto'
22816 endnetent_r_proto='$endnetent_r_proto'
22817 endprotoent_r_proto='$endprotoent_r_proto'
22818 endpwent_r_proto='$endpwent_r_proto'
22819 endservent_r_proto='$endservent_r_proto'
22820 eunicefix='$eunicefix'
22821 exe_ext='$exe_ext'
22822 expr='$expr'
22823 extensions='$extensions'
22824 extern_C='$extern_C'
22825 extras='$extras'
22826 fflushNULL='$fflushNULL'
22827 fflushall='$fflushall'
22828 find='$find'
22829 firstmakefile='$firstmakefile'
22830 flex='$flex'
22831 fpossize='$fpossize'
22832 fpostype='$fpostype'
22833 freetype='$freetype'
22834 from='$from'
22835 full_ar='$full_ar'
22836 full_csh='$full_csh'
22837 full_sed='$full_sed'
22838 gccansipedantic='$gccansipedantic'
22839 gccosandvers='$gccosandvers'
22840 gccversion='$gccversion'
22841 getgrent_r_proto='$getgrent_r_proto'
22842 getgrgid_r_proto='$getgrgid_r_proto'
22843 getgrnam_r_proto='$getgrnam_r_proto'
22844 gethostbyaddr_r_proto='$gethostbyaddr_r_proto'
22845 gethostbyname_r_proto='$gethostbyname_r_proto'
22846 gethostent_r_proto='$gethostent_r_proto'
22847 getlogin_r_proto='$getlogin_r_proto'
22848 getnetbyaddr_r_proto='$getnetbyaddr_r_proto'
22849 getnetbyname_r_proto='$getnetbyname_r_proto'
22850 getnetent_r_proto='$getnetent_r_proto'
22851 getprotobyname_r_proto='$getprotobyname_r_proto'
22852 getprotobynumber_r_proto='$getprotobynumber_r_proto'
22853 getprotoent_r_proto='$getprotoent_r_proto'
22854 getpwent_r_proto='$getpwent_r_proto'
22855 getpwnam_r_proto='$getpwnam_r_proto'
22856 getpwuid_r_proto='$getpwuid_r_proto'
22857 getservbyname_r_proto='$getservbyname_r_proto'
22858 getservbyport_r_proto='$getservbyport_r_proto'
22859 getservent_r_proto='$getservent_r_proto'
22860 getspnam_r_proto='$getspnam_r_proto'
22861 gidformat='$gidformat'
22862 gidsign='$gidsign'
22863 gidsize='$gidsize'
22864 gidtype='$gidtype'
22865 glibpth='$glibpth'
22866 gmake='$gmake'
22867 gmtime_r_proto='$gmtime_r_proto'
22868 gnulibc_version='$gnulibc_version'
22869 grep='$grep'
22870 groupcat='$groupcat'
22871 groupstype='$groupstype'
22872 gzip='$gzip'
22873 h_fcntl='$h_fcntl'
22874 h_sysfile='$h_sysfile'
22875 hint='$hint'
22876 hostcat='$hostcat'
22877 html1dir='$html1dir'
22878 html1direxp='$html1direxp'
22879 html3dir='$html3dir'
22880 html3direxp='$html3direxp'
22881 i16size='$i16size'
22882 i16type='$i16type'
22883 i32size='$i32size'
22884 i32type='$i32type'
22885 i64size='$i64size'
22886 i64type='$i64type'
22887 i8size='$i8size'
22888 i8type='$i8type'
22889 i_arpainet='$i_arpainet'
22890 i_assert='$i_assert'
22891 i_bsdioctl='$i_bsdioctl'
22892 i_crypt='$i_crypt'
22893 i_db='$i_db'
22894 i_dbm='$i_dbm'
22895 i_dirent='$i_dirent'
22896 i_dld='$i_dld'
22897 i_dlfcn='$i_dlfcn'
22898 i_fcntl='$i_fcntl'
22899 i_float='$i_float'
22900 i_fp='$i_fp'
22901 i_fp_class='$i_fp_class'
22902 i_gdbm='$i_gdbm'
22903 i_gdbm_ndbm='$i_gdbm_ndbm'
22904 i_gdbmndbm='$i_gdbmndbm'
22905 i_grp='$i_grp'
22906 i_ieeefp='$i_ieeefp'
22907 i_inttypes='$i_inttypes'
22908 i_langinfo='$i_langinfo'
22909 i_libutil='$i_libutil'
22910 i_limits='$i_limits'
22911 i_locale='$i_locale'
22912 i_machcthr='$i_machcthr'
22913 i_malloc='$i_malloc'
22914 i_mallocmalloc='$i_mallocmalloc'
22915 i_math='$i_math'
22916 i_memory='$i_memory'
22917 i_mntent='$i_mntent'
22918 i_ndbm='$i_ndbm'
22919 i_netdb='$i_netdb'
22920 i_neterrno='$i_neterrno'
22921 i_netinettcp='$i_netinettcp'
22922 i_niin='$i_niin'
22923 i_poll='$i_poll'
22924 i_prot='$i_prot'
22925 i_pthread='$i_pthread'
22926 i_pwd='$i_pwd'
22927 i_rpcsvcdbm='$i_rpcsvcdbm'
22928 i_sfio='$i_sfio'
22929 i_sgtty='$i_sgtty'
22930 i_shadow='$i_shadow'
22931 i_socks='$i_socks'
22932 i_stdarg='$i_stdarg'
22933 i_stddef='$i_stddef'
22934 i_stdlib='$i_stdlib'
22935 i_string='$i_string'
22936 i_sunmath='$i_sunmath'
22937 i_sysaccess='$i_sysaccess'
22938 i_sysdir='$i_sysdir'
22939 i_sysfile='$i_sysfile'
22940 i_sysfilio='$i_sysfilio'
22941 i_sysin='$i_sysin'
22942 i_sysioctl='$i_sysioctl'
22943 i_syslog='$i_syslog'
22944 i_sysmman='$i_sysmman'
22945 i_sysmode='$i_sysmode'
22946 i_sysmount='$i_sysmount'
22947 i_sysndir='$i_sysndir'
22948 i_sysparam='$i_sysparam'
22949 i_syspoll='$i_syspoll'
22950 i_sysresrc='$i_sysresrc'
22951 i_syssecrt='$i_syssecrt'
22952 i_sysselct='$i_sysselct'
22953 i_syssockio='$i_syssockio'
22954 i_sysstat='$i_sysstat'
22955 i_sysstatfs='$i_sysstatfs'
22956 i_sysstatvfs='$i_sysstatvfs'
22957 i_systime='$i_systime'
22958 i_systimek='$i_systimek'
22959 i_systimes='$i_systimes'
22960 i_systypes='$i_systypes'
22961 i_sysuio='$i_sysuio'
22962 i_sysun='$i_sysun'
22963 i_sysutsname='$i_sysutsname'
22964 i_sysvfs='$i_sysvfs'
22965 i_syswait='$i_syswait'
22966 i_termio='$i_termio'
22967 i_termios='$i_termios'
22968 i_time='$i_time'
22969 i_unistd='$i_unistd'
22970 i_ustat='$i_ustat'
22971 i_utime='$i_utime'
22972 i_values='$i_values'
22973 i_varargs='$i_varargs'
22974 i_varhdr='$i_varhdr'
22975 i_vfork='$i_vfork'
22976 ignore_versioned_solibs='$ignore_versioned_solibs'
22977 inc_version_list='$inc_version_list'
22978 inc_version_list_init='$inc_version_list_init'
22979 incpath='$incpath'
22980 inews='$inews'
22981 initialinstalllocation='$initialinstalllocation'
22982 installarchlib='$installarchlib'
22983 installbin='$installbin'
22984 installhtml1dir='$installhtml1dir'
22985 installhtml3dir='$installhtml3dir'
22986 installman1dir='$installman1dir'
22987 installman3dir='$installman3dir'
22988 installprefix='$installprefix'
22989 installprefixexp='$installprefixexp'
22990 installprivlib='$installprivlib'
22991 installscript='$installscript'
22992 installsitearch='$installsitearch'
22993 installsitebin='$installsitebin'
22994 installsitehtml1dir='$installsitehtml1dir'
22995 installsitehtml3dir='$installsitehtml3dir'
22996 installsitelib='$installsitelib'
22997 installsiteman1dir='$installsiteman1dir'
22998 installsiteman3dir='$installsiteman3dir'
22999 installsitescript='$installsitescript'
23000 installstyle='$installstyle'
23001 installusrbinperl='$installusrbinperl'
23002 installvendorarch='$installvendorarch'
23003 installvendorbin='$installvendorbin'
23004 installvendorhtml1dir='$installvendorhtml1dir'
23005 installvendorhtml3dir='$installvendorhtml3dir'
23006 installvendorlib='$installvendorlib'
23007 installvendorman1dir='$installvendorman1dir'
23008 installvendorman3dir='$installvendorman3dir'
23009 installvendorscript='$installvendorscript'
23010 intsize='$intsize'
23011 issymlink='$issymlink'
23012 ivdformat='$ivdformat'
23013 ivsize='$ivsize'
23014 ivtype='$ivtype'
23015 known_extensions='$known_extensions'
23016 ksh='$ksh'
23017 ld='$ld'
23018 lddlflags='$lddlflags'
23019 ldflags='$ldflags'
23020 ldflags_uselargefiles='$ldflags_uselargefiles'
23021 ldlibpthname='$ldlibpthname'
23022 less='$less'
23023 lib_ext='$lib_ext'
23024 libc='$libc'
23025 libperl='$libperl'
23026 libpth='$libpth'
23027 libs='$libs'
23028 libsdirs='$libsdirs'
23029 libsfiles='$libsfiles'
23030 libsfound='$libsfound'
23031 libspath='$libspath'
23032 libswanted='$libswanted'
23033 libswanted_uselargefiles='$libswanted_uselargefiles'
23034 line='$line'
23035 lint='$lint'
23036 lkflags='$lkflags'
23037 ln='$ln'
23038 lns='$lns'
23039 localtime_r_proto='$localtime_r_proto'
23040 locincpth='$locincpth'
23041 loclibpth='$loclibpth'
23042 longdblsize='$longdblsize'
23043 longlongsize='$longlongsize'
23044 longsize='$longsize'
23045 lp='$lp'
23046 lpr='$lpr'
23047 ls='$ls'
23048 lseeksize='$lseeksize'
23049 lseektype='$lseektype'
23050 mad='$mad'
23051 madlyh='$madlyh'
23052 madlyobj='$madlyobj'
23053 madlysrc='$madlysrc'
23054 mail='$mail'
23055 mailx='$mailx'
23056 make='$make'
23057 make_set_make='$make_set_make'
23058 mallocobj='$mallocobj'
23059 mallocsrc='$mallocsrc'
23060 malloctype='$malloctype'
23061 man1dir='$man1dir'
23062 man1direxp='$man1direxp'
23063 man1ext='$man1ext'
23064 man3dir='$man3dir'
23065 man3direxp='$man3direxp'
23066 man3ext='$man3ext'
23067 mips_type='$mips_type'
23068 mistrustnm='$mistrustnm'
23069 mkdir='$mkdir'
23070 mmaptype='$mmaptype'
23071 modetype='$modetype'
23072 more='$more'
23073 multiarch='$multiarch'
23074 mv='$mv'
23075 myarchname='$myarchname'
23076 mydomain='$mydomain'
23077 myhostname='$myhostname'
23078 myuname='$myuname'
23079 n='$n'
23080 need_va_copy='$need_va_copy'
23081 netdb_hlen_type='$netdb_hlen_type'
23082 netdb_host_type='$netdb_host_type'
23083 netdb_name_type='$netdb_name_type'
23084 netdb_net_type='$netdb_net_type'
23085 nm='$nm'
23086 nm_opt='$nm_opt'
23087 nm_so_opt='$nm_so_opt'
23088 nonxs_ext='$nonxs_ext'
23089 nroff='$nroff'
23090 nvEUformat='$nvEUformat'
23091 nvFUformat='$nvFUformat'
23092 nvGUformat='$nvGUformat'
23093 nv_overflows_integers_at='$nv_overflows_integers_at'
23094 nv_preserves_uv_bits='$nv_preserves_uv_bits'
23095 nveformat='$nveformat'
23096 nvfformat='$nvfformat'
23097 nvgformat='$nvgformat'
23098 nvsize='$nvsize'
23099 nvtype='$nvtype'
23100 o_nonblock='$o_nonblock'
23101 obj_ext='$obj_ext'
23102 old_pthread_create_joinable='$old_pthread_create_joinable'
23103 optimize='$optimize'
23104 orderlib='$orderlib'
23105 osname='$osname'
23106 osvers='$osvers'
23107 otherlibdirs='$otherlibdirs'
23108 package='$package'
23109 pager='$pager'
23110 passcat='$passcat'
23111 patchlevel='$patchlevel'
23112 path_sep='$path_sep'
23113 perl5='$perl5'
23114 perl='$perl'
23115 perl_patchlevel='$perl_patchlevel'
23116 perladmin='$perladmin'
23117 perllibs='$perllibs'
23118 perlpath='$perlpath'
23119 pg='$pg'
23120 phostname='$phostname'
23121 pidtype='$pidtype'
23122 plibpth='$plibpth'
23123 pmake='$pmake'
23124 pr='$pr'
23125 prefix='$prefix'
23126 prefixexp='$prefixexp'
23127 privlib='$privlib'
23128 privlibexp='$privlibexp'
23129 procselfexe='$procselfexe'
23130 prototype='$prototype'
23131 ptrsize='$ptrsize'
23132 quadkind='$quadkind'
23133 quadtype='$quadtype'
23134 randbits='$randbits'
23135 randfunc='$randfunc'
23136 random_r_proto='$random_r_proto'
23137 randseedtype='$randseedtype'
23138 ranlib='$ranlib'
23139 rd_nodata='$rd_nodata'
23140 readdir64_r_proto='$readdir64_r_proto'
23141 readdir_r_proto='$readdir_r_proto'
23142 revision='$revision'
23143 rm='$rm'
23144 rm_try='$rm_try'
23145 rmail='$rmail'
23146 run='$run'
23147 runnm='$runnm'
23148 sGMTIME_max='$sGMTIME_max'
23149 sGMTIME_min='$sGMTIME_min'
23150 sLOCALTIME_max='$sLOCALTIME_max'
23151 sLOCALTIME_min='$sLOCALTIME_min'
23152 sPRIEUldbl='$sPRIEUldbl'
23153 sPRIFUldbl='$sPRIFUldbl'
23154 sPRIGUldbl='$sPRIGUldbl'
23155 sPRIXU64='$sPRIXU64'
23156 sPRId64='$sPRId64'
23157 sPRIeldbl='$sPRIeldbl'
23158 sPRIfldbl='$sPRIfldbl'
23159 sPRIgldbl='$sPRIgldbl'
23160 sPRIi64='$sPRIi64'
23161 sPRIo64='$sPRIo64'
23162 sPRIu64='$sPRIu64'
23163 sPRIx64='$sPRIx64'
23164 sSCNfldbl='$sSCNfldbl'
23165 sched_yield='$sched_yield'
23166 scriptdir='$scriptdir'
23167 scriptdirexp='$scriptdirexp'
23168 sed='$sed'
23169 seedfunc='$seedfunc'
23170 selectminbits='$selectminbits'
23171 selecttype='$selecttype'
23172 sendmail='$sendmail'
23173 setgrent_r_proto='$setgrent_r_proto'
23174 sethostent_r_proto='$sethostent_r_proto'
23175 setlocale_r_proto='$setlocale_r_proto'
23176 setnetent_r_proto='$setnetent_r_proto'
23177 setprotoent_r_proto='$setprotoent_r_proto'
23178 setpwent_r_proto='$setpwent_r_proto'
23179 setservent_r_proto='$setservent_r_proto'
23180 sh='$sh'
23181 shar='$shar'
23182 sharpbang='$sharpbang'
23183 shmattype='$shmattype'
23184 shortsize='$shortsize'
23185 shrpenv='$shrpenv'
23186 shsharp='$shsharp'
23187 sig_count='$sig_count'
23188 sig_name='$sig_name'
23189 sig_name_init='$sig_name_init'
23190 sig_num='$sig_num'
23191 sig_num_init='$sig_num_init'
23192 sig_size='$sig_size'
23193 signal_t='$signal_t'
23194 sitearch='$sitearch'
23195 sitearchexp='$sitearchexp'
23196 sitebin='$sitebin'
23197 sitebinexp='$sitebinexp'
23198 sitehtml1dir='$sitehtml1dir'
23199 sitehtml1direxp='$sitehtml1direxp'
23200 sitehtml3dir='$sitehtml3dir'
23201 sitehtml3direxp='$sitehtml3direxp'
23202 sitelib='$sitelib'
23203 sitelib_stem='$sitelib_stem'
23204 sitelibexp='$sitelibexp'
23205 siteman1dir='$siteman1dir'
23206 siteman1direxp='$siteman1direxp'
23207 siteman3dir='$siteman3dir'
23208 siteman3direxp='$siteman3direxp'
23209 siteprefix='$siteprefix'
23210 siteprefixexp='$siteprefixexp'
23211 sitescript='$sitescript'
23212 sitescriptexp='$sitescriptexp'
23213 sizesize='$sizesize'
23214 sizetype='$sizetype'
23215 sleep='$sleep'
23216 smail='$smail'
23217 so='$so'
23218 sockethdr='$sockethdr'
23219 socketlib='$socketlib'
23220 socksizetype='$socksizetype'
23221 sort='$sort'
23222 spackage='$spackage'
23223 spitshell='$spitshell'
23224 srand48_r_proto='$srand48_r_proto'
23225 srandom_r_proto='$srandom_r_proto'
23226 src='$src'
23227 ssizetype='$ssizetype'
23228 startperl='$startperl'
23229 startsh='$startsh'
23230 static_ext='$static_ext'
23231 stdchar='$stdchar'
23232 stdio_base='$stdio_base'
23233 stdio_bufsiz='$stdio_bufsiz'
23234 stdio_cnt='$stdio_cnt'
23235 stdio_filbuf='$stdio_filbuf'
23236 stdio_ptr='$stdio_ptr'
23237 stdio_stream_array='$stdio_stream_array'
23238 strerror_r_proto='$strerror_r_proto'
23239 strings='$strings'
23240 submit='$submit'
23241 subversion='$subversion'
23242 sysman='$sysman'
23243 tail='$tail'
23244 tar='$tar'
23245 targetarch='$targetarch'
23246 tbl='$tbl'
23247 tee='$tee'
23248 test='$test'
23249 timeincl='$timeincl'
23250 timetype='$timetype'
23251 tmpnam_r_proto='$tmpnam_r_proto'
23252 to='$to'
23253 touch='$touch'
23254 tr='$tr'
23255 trnl='$trnl'
23256 troff='$troff'
23257 ttyname_r_proto='$ttyname_r_proto'
23258 u16size='$u16size'
23259 u16type='$u16type'
23260 u32size='$u32size'
23261 u32type='$u32type'
23262 u64size='$u64size'
23263 u64type='$u64type'
23264 u8size='$u8size'
23265 u8type='$u8type'
23266 uidformat='$uidformat'
23267 uidsign='$uidsign'
23268 uidsize='$uidsize'
23269 uidtype='$uidtype'
23270 uname='$uname'
23271 uniq='$uniq'
23272 uquadtype='$uquadtype'
23273 use5005threads='$use5005threads'
23274 use64bitall='$use64bitall'
23275 use64bitint='$use64bitint'
23276 usecrosscompile='$usecrosscompile'
23277 usedevel='$usedevel'
23278 usedl='$usedl'
23279 usedtrace='$usedtrace'
23280 usefaststdio='$usefaststdio'
23281 useithreads='$useithreads'
23282 uselargefiles='$uselargefiles'
23283 uselongdouble='$uselongdouble'
23284 usemallocwrap='$usemallocwrap'
23285 usemorebits='$usemorebits'
23286 usemultiplicity='$usemultiplicity'
23287 usemymalloc='$usemymalloc'
23288 usenm='$usenm'
23289 useopcode='$useopcode'
23290 useperlio='$useperlio'
23291 useposix='$useposix'
23292 usereentrant='$usereentrant'
23293 userelocatableinc='$userelocatableinc'
23294 usesfio='$usesfio'
23295 useshrplib='$useshrplib'
23296 usesitecustomize='$usesitecustomize'
23297 usesocks='$usesocks'
23298 usethreads='$usethreads'
23299 usevendorprefix='$usevendorprefix'
23300 usevfork='$usevfork'
23301 usrinc='$usrinc'
23302 uuname='$uuname'
23303 uvXUformat='$uvXUformat'
23304 uvoformat='$uvoformat'
23305 uvsize='$uvsize'
23306 uvtype='$uvtype'
23307 uvuformat='$uvuformat'
23308 uvxformat='$uvxformat'
23309 vaproto='$vaproto'
23310 vendorarch='$vendorarch'
23311 vendorarchexp='$vendorarchexp'
23312 vendorbin='$vendorbin'
23313 vendorbinexp='$vendorbinexp'
23314 vendorhtml1dir='$vendorhtml1dir'
23315 vendorhtml1direxp='$vendorhtml1direxp'
23316 vendorhtml3dir='$vendorhtml3dir'
23317 vendorhtml3direxp='$vendorhtml3direxp'
23318 vendorlib='$vendorlib'
23319 vendorlib_stem='$vendorlib_stem'
23320 vendorlibexp='$vendorlibexp'
23321 vendorman1dir='$vendorman1dir'
23322 vendorman1direxp='$vendorman1direxp'
23323 vendorman3dir='$vendorman3dir'
23324 vendorman3direxp='$vendorman3direxp'
23325 vendorprefix='$vendorprefix'
23326 vendorprefixexp='$vendorprefixexp'
23327 vendorscript='$vendorscript'
23328 vendorscriptexp='$vendorscriptexp'
23329 version='$version'
23330 version_patchlevel_string='$version_patchlevel_string'
23331 versiononly='$versiononly'
23332 vi='$vi'
23333 voidflags='$voidflags'
23334 xlibpth='$xlibpth'
23335 yacc='$yacc'
23336 yaccflags='$yaccflags'
23337 zcat='$zcat'
23338 zip='$zip'
23339 EOT
23340
23341 : add special variables
23342 $test -f $src/patchlevel.h && \
23343 awk '/^#define[         ]+PERL_/ {printf "%s=%s\n",$2,$3}' $src/patchlevel.h >>config.sh
23344 echo "PERL_PATCHLEVEL='$perl_patchlevel'" >>config.sh
23345 echo "PERL_CONFIG_SH=true" >>config.sh
23346
23347 : propagate old symbols
23348 if $test -f UU/config.sh; then
23349         <UU/config.sh $sort | $uniq >UU/oldconfig.sh
23350         $sed -n 's/^\([a-zA-Z_0-9]*\)=.*/\1/p' \
23351                 config.sh config.sh UU/oldconfig.sh |\
23352                 $sort | $uniq -u >UU/oldsyms
23353         set X `cat UU/oldsyms`
23354         shift
23355         case $# in
23356         0) ;;
23357         *)
23358                 cat <<EOM
23359 Hmm...You had some extra variables I don't know about...I'll try to keep 'em...
23360 EOM
23361                 echo ": Variables propagated from previous config.sh file." >>config.sh
23362                 for sym in `cat UU/oldsyms`; do
23363                         echo "    Propagating $hint variable "'$'"$sym..."
23364                         eval 'tmp="$'"${sym}"'"'
23365                         echo "$tmp" | \
23366                                 sed -e "s/'/'\"'\"'/g" -e "s/^/$sym='/" -e "s/$/'/" >>config.sh
23367                 done
23368                 ;;
23369         esac
23370 fi
23371
23372 : Finish up by extracting the .SH files
23373 case "$alldone" in
23374 exit)
23375         $rm -rf UU
23376         echo "Extraction done."
23377         exit 0
23378         ;;
23379 cont)
23380         ;;
23381 '')
23382         dflt=''
23383         nostick=true
23384         $cat <<EOM
23385
23386 If you'd like to make any changes to the config.sh file before I begin
23387 to configure things, do it as a shell escape now (e.g. !vi config.sh).
23388
23389 EOM
23390         rp="Press return or use a shell escape to edit config.sh:"
23391         . UU/myread
23392         nostick=''
23393         case "$ans" in
23394         '') ;;
23395         *) : in case they cannot read
23396                 sh 1>&4 -c "$ans";;
23397         esac
23398         ;;
23399 esac
23400
23401 : if this fails, just run all the .SH files by hand
23402 . ./config.sh
23403
23404 echo " "
23405 exec 1>&4
23406 pwd=`pwd`
23407 . ./UU/extract
23408 cd "$pwd"
23409
23410 if $contains '^depend:' [Mm]akefile >/dev/null 2>&1; then
23411         dflt=y
23412         case "$silent" in
23413         true) ;;
23414         *)
23415                 $cat <<EOM
23416
23417 Now you need to generate make dependencies by running "$make depend".
23418 You might prefer to run it in background: "$make depend > makedepend.out &"
23419 It can take a while, so you might not want to run it right now.
23420
23421 EOM
23422                 ;;
23423         esac
23424         rp="Run $make depend now?"
23425         . UU/myread
23426         case "$ans" in
23427         y*)
23428                 $make depend && echo "Now you must run '$make'."
23429                 ;;
23430         *)
23431                 echo "You must run '$make depend' then '$make'."
23432                 ;;
23433         esac
23434 elif test -f [Mm]akefile; then
23435         echo " "
23436         echo "Now you must run a $make."
23437 else
23438         echo "Configure done."
23439 fi
23440
23441 if $test -f Policy.sh; then
23442     $cat <<EOM
23443
23444 If you compile $package on a different machine or from a different object
23445 directory, copy the Policy.sh file from this object directory to the
23446 new one before you run Configure -- this will help you with most of
23447 the policy defaults.
23448
23449 EOM
23450 fi
23451 if $test -f config.msg; then
23452     echo "Hmm.  I also noted the following information while running:"
23453     echo " "
23454     $cat config.msg >&4
23455     $rm -f config.msg
23456 fi
23457 $rm -f kit*isdone ark*isdone
23458 $rm -rf UU
23459
23460 : End of Configure
23461