This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
The PERLIO environment variable, when unset, doesn't default to :stdio.
[perl5.git] / Configure
1 #! /bin/sh
2 #
3 # If these # comments don't work, trim them. Don't worry about any other
4 # shell scripts, Configure will trim # comments from them for you.
5 #
6 # (If you are trying to port this package to a machine without sh,
7 # I would suggest you have a look at the prototypical config_h.SH file
8 # and edit it to reflect your system. Some packages may include samples
9 # of config.h for certain machines, so you might look for one of those.)
10 #
11 # Yes, you may rip this off to use in other distribution packages. This
12 # script belongs to the public domain and cannot be copyrighted.
13 #
14 # (Note: this Configure script was generated automatically. Rather than
15 # working with this copy of Configure, you may wish to get metaconfig.
16 # The dist-3.0 package (which contains metaconfig) was posted in
17 # comp.sources.misc and is available on CPAN under authors/id/RAM so
18 # you may fetch it yourself from your nearest archive site.)
19 #
20 #
21 # Though this script was generated by metaconfig, it is OK to send
22 # patches against it. It's up to the Configure pumpkin to backport
23 # the patch to the metaunits if it is accepted.
24 # See Porting/pumpkin.pod for more information on metaconfig.
25 #
26
27 # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $
28 #
29 # Generated on Wed Dec 20 13:56:55 CET 2006 [metaconfig 3.0 PL70]
30 # (with additional metaconfig patches by perlbug@perl.org)
31
32 cat >c1$$ <<EOF
33 ARGGGHHHH!!!!!
34
35 SCO csh still thinks true is false.  Write to SCO today and tell them that next
36 year Configure ought to "rm /bin/csh" unless they fix their blasted shell. :-)
37
38 (Actually, Configure ought to just patch csh in place.  Hmm.  Hmmmmm.  All
39 we'd have to do is go in and swap the && and || tokens, wherever they are.)
40
41 [End of diatribe. We now return you to your regularly scheduled programming...]
42 EOF
43 cat >c2$$ <<EOF
44
45 OOPS!  You naughty creature!  You didn't run Configure with sh!
46 I will attempt to remedy the situation by running sh for you...
47 EOF
48
49 true || cat c1$$ c2$$
50 true || exec sh $0 $argv:q
51
52 (exit $?0) || cat c2$$
53 (exit $?0) || exec sh $0 $argv:q
54 rm -f c1$$ c2$$
55
56 if test -f /dev/cputype -a -f /dev/drivers -a -f /dev/osversion; then
57         cat >&4 <<EOF
58 ***
59 *** I'm sorry but this system looks like Plan 9 and Plan 9 doesn't do
60 *** Configure that well.  (Plan 9 is close to UNIX but not close enough.)
61 *** Please read the README.plan9 for further instructions.
62 *** Cannot continue, aborting.
63 ***
64 EOF
65         exit 1
66 fi
67
68 if test ! -c /dev/null ; then
69         cat >&4 <<EOF
70 ***
71 *** I'm sorry, but /dev/null appears to be a file rather than a device.
72 *** Please consult your operating sytem's notes for making a device
73 *** in /dev.
74 *** Cannot continue, aborting.
75 ***
76 EOF
77         exit 1
78 fi
79
80 : compute my invocation name
81 me=$0
82 case "$0" in
83 */*)
84         me=`echo $0 | sed -e 's!.*/\(.*\)!\1!' 2>/dev/null`
85         test "$me" || me=$0
86         ;;
87 esac
88
89 : Proper separator for the PATH environment variable
90 p_=:
91 : On OS/2 this directory should exist if this is not floppy only system :-]
92 if test -d c:/. || ( uname -a | grep -i 'os\(/\|\)2' ) 2>&1 >/dev/null ; then
93     if test -n "$OS2_SHELL"; then
94                 p_=\;
95                 PATH=`cmd /c "echo %PATH%" | tr '\\\\' / `
96                 OS2_SHELL=`cmd /c "echo %OS2_SHELL%" | tr '\\\\' / | tr '[A-Z]' '[a-z]'`
97                 is_os2=yes
98         elif test -n "$DJGPP"; then
99                 case "X${MACHTYPE:-nonesuchmach}" in
100                 *cygwin) ;;
101                 *) p_=\; ;;
102                 esac
103         fi
104 fi
105
106 : Proper PATH setting
107 paths='/bin /usr/bin /usr/local/bin /usr/ucb /usr/local /usr/lbin'
108 paths="$paths /opt/bin /opt/local/bin /opt/local /opt/lbin"
109 paths="$paths /usr/5bin /etc /usr/gnu/bin /usr/new /usr/new/bin /usr/nbin"
110 paths="$paths /opt/gnu/bin /opt/new /opt/new/bin /opt/nbin"
111 paths="$paths /sys5.3/bin /sys5.3/usr/bin /bsd4.3/bin /bsd4.3/usr/ucb"
112 paths="$paths /bsd4.3/usr/bin /usr/bsd /bsd43/bin /opt/ansic/bin /usr/ccs/bin"
113 paths="$paths /etc /usr/lib /usr/ucblib /lib /usr/ccs/lib"
114 paths="$paths /sbin /usr/sbin /usr/libexec"
115 paths="$paths /system/gnu_library/bin"
116
117 for p in $paths
118 do
119         case "$p_$PATH$p_" in
120         *$p_$p$p_*) ;;
121         *) test -d $p && PATH=$PATH$p_$p ;;
122         esac
123 done
124
125 PATH=.$p_$PATH
126 export PATH
127
128 : shall we be using ksh?
129 inksh=''
130 needksh=''
131 avoidksh=''
132 newsh=/bin/ksh
133 changesh=''
134 if (PATH=.; alias -x) >/dev/null 2>&1; then
135                 inksh=true
136 fi
137 if test -f /hp-ux -a -f /bin/ksh; then
138         needksh='to avoid sh bug in "here document" expansion'
139 fi
140 if test -d /usr/lpp -a -f /usr/bin/bsh -a -f /usr/bin/uname; then
141         if test X`/usr/bin/uname -v` = X4; then
142                 avoidksh="to avoid AIX 4's /bin/sh"
143                 newsh=/usr/bin/bsh
144         fi
145 fi
146 if test -f /osf_boot -a -f /usr/sbin/setld; then
147         if test X`/usr/bin/uname -s` = XOSF1; then
148                 avoidksh="to avoid Digital UNIX' ksh"
149                 newsh=/bin/sh
150                 unset BIN_SH # if this is 'xpg4' sh will start up ksh
151         fi
152 fi
153 case "$inksh/$needksh" in
154 /[a-z]*)
155                 ENV=''
156                 changesh=true
157                 reason="$needksh"
158         ;;
159 esac
160 case "$inksh/$avoidksh" in
161 true/[a-z]*)
162         changesh=true
163         reason="$avoidksh"
164         ;;
165 esac
166 case "$inksh/$needksh-$avoidksh-" in
167 true/--)
168                 cat <<EOM
169 (I see you are using the Korn shell.  Some ksh's blow up on $me,
170 mainly on older exotic systems.  If yours does, try the Bourne shell instead.)
171 EOM
172         ;;
173 esac
174 case "$changesh" in
175 true)
176         export newsh
177         echo "(Feeding myself to $newsh $reason.)"
178         case "$0" in
179         Configure|*/Configure) exec $newsh $0 "$@";;
180         *) exec $newsh Configure "$@";;
181         esac
182         ;;
183 esac
184
185 : if needed set CDPATH to a harmless value that is not chatty
186 : avoid bash 2.02 problems with empty CDPATH.
187 case "$CDPATH" in
188 '')     ;;
189 *)      case "$SHELL" in
190         *bash*) CDPATH='.' ;;
191         *)              CDPATH='' ;;
192         esac
193         ;;
194 esac
195 : Configure runs within the UU subdirectory
196 test -d UU || mkdir UU
197 cd UU && rm -f ./*
198
199 ccname=''
200 ccversion=''
201 ccsymbols=''
202 cppccsymbols=''
203 cppsymbols=''
204 from=''
205 run=''
206 targetarch=''
207 to=''
208 usecrosscompile=''
209 mistrustnm=''
210 perllibs=''
211 dynamic_ext=''
212 extensions=''
213 known_extensions=''
214 nonxs_ext=''
215 static_ext=''
216 useopcode=''
217 useposix=''
218 extras=''
219 d_bsd=''
220 d_eunice=''
221 d_xenix=''
222 eunicefix=''
223 Mcc=''
224 ar=''
225 awk=''
226 bash=''
227 bison=''
228 byacc=''
229 cat=''
230 chgrp=''
231 chmod=''
232 chown=''
233 comm=''
234 compress=''
235 cp=''
236 cpio=''
237 cpp=''
238 csh=''
239 date=''
240 echo=''
241 egrep=''
242 emacs=''
243 expr=''
244 find=''
245 flex=''
246 gmake=''
247 grep=''
248 gzip=''
249 inews=''
250 ksh=''
251 less=''
252 line=''
253 lint=''
254 ln=''
255 lp=''
256 lpr=''
257 ls=''
258 mail=''
259 mailx=''
260 make=''
261 mkdir=''
262 more=''
263 mv=''
264 nm=''
265 nroff=''
266 perl=''
267 pg=''
268 pmake=''
269 pr=''
270 rm=''
271 rmail=''
272 sed=''
273 sendmail=''
274 shar=''
275 sleep=''
276 smail=''
277 sort=''
278 submit=''
279 tail=''
280 tar=''
281 tbl=''
282 tee=''
283 test=''
284 touch=''
285 tr=''
286 troff=''
287 uname=''
288 uniq=''
289 uuname=''
290 vi=''
291 zcat=''
292 zip=''
293 full_ar=''
294 full_sed=''
295 libswanted=''
296 hint=''
297 myuname=''
298 osname=''
299 osvers=''
300 Author=''
301 Date=''
302 Header=''
303 Id=''
304 Locker=''
305 Log=''
306 RCSfile=''
307 Revision=''
308 Source=''
309 State=''
310 _a=''
311 _exe=''
312 _o=''
313 archobjs=''
314 exe_ext=''
315 firstmakefile=''
316 lib_ext=''
317 obj_ext=''
318 path_sep=''
319 afs=''
320 afsroot=''
321 alignbytes=''
322 ansi2knr=''
323 archlib=''
324 archlibexp=''
325 d_archlib=''
326 installarchlib=''
327 archname=''
328 myarchname=''
329 d_atolf=''
330 d_atoll=''
331 baserev=''
332 bin=''
333 binexp=''
334 initialinstalllocation=''
335 installbin=''
336 userelocatableinc=''
337 byteorder=''
338 cc=''
339 ccflags=''
340 cppflags=''
341 ldflags=''
342 lkflags=''
343 locincpth=''
344 optimize=''
345 cf_email=''
346 cf_by=''
347 cf_time=''
348 charsize=''
349 contains=''
350 cpp_stuff=''
351 cpplast=''
352 cppminus=''
353 cpprun=''
354 cppstdin=''
355 d__fwalk=''
356 d_access=''
357 d_accessx=''
358 d_aintl=''
359 d_alarm=''
360 asctime_r_proto=''
361 d_asctime_r=''
362 d_attribute_format=''
363 d_attribute_malloc=''
364 d_attribute_nonnull=''
365 d_attribute_noreturn=''
366 d_attribute_pure=''
367 d_attribute_unused=''
368 d_attribute_warn_unused_result=''
369 d_printf_format_null=''
370 d_bcmp=''
371 d_bcopy=''
372 d_builtin_choose_expr=''
373 d_builtin_expect=''
374 d_bzero=''
375 d_c99_variadic_macros=''
376 d_casti32=''
377 castflags=''
378 d_castneg=''
379 d_chown=''
380 d_chroot=''
381 d_chsize=''
382 d_class=''
383 d_clearenv=''
384 d_closedir=''
385 d_void_closedir=''
386 d_cmsghdr_s=''
387 d_const=''
388 d_copysignl=''
389 d_cplusplus=''
390 cryptlib=''
391 d_crypt=''
392 crypt_r_proto=''
393 d_crypt_r=''
394 d_csh=''
395 full_csh=''
396 d_ctermid=''
397 ctermid_r_proto=''
398 d_ctermid_r=''
399 ctime_r_proto=''
400 d_ctime_r=''
401 d_cuserid=''
402 d_dbl_dig=''
403 d_dbminitproto=''
404 d_difftime=''
405 d_dir_dd_fd=''
406 d_dirfd=''
407 d_dlerror=''
408 d_dlopen=''
409 d_dlsymun=''
410 d_dosuid=''
411 d_suidsafe=''
412 d_drand48_r=''
413 drand48_r_proto=''
414 d_drand48proto=''
415 d_dup2=''
416 d_eaccess=''
417 d_endgrent=''
418 d_endgrent_r=''
419 endgrent_r_proto=''
420 d_endhent=''
421 d_endhostent_r=''
422 endhostent_r_proto=''
423 d_endnent=''
424 d_endnetent_r=''
425 endnetent_r_proto=''
426 d_endpent=''
427 d_endprotoent_r=''
428 endprotoent_r_proto=''
429 d_endpwent=''
430 d_endpwent_r=''
431 endpwent_r_proto=''
432 d_endsent=''
433 d_endservent_r=''
434 endservent_r_proto=''
435 d_faststdio=''
436 d_fchdir=''
437 d_fchmod=''
438 d_fchown=''
439 d_fcntl=''
440 d_fcntl_can_lock=''
441 d_fd_macros=''
442 d_fd_set=''
443 d_fds_bits=''
444 d_fgetpos=''
445 d_finite=''
446 d_finitel=''
447 d_flexfnam=''
448 d_flock=''
449 d_flockproto=''
450 d_fork=''
451 d_fp_class=''
452 d_fpclass=''
453 d_fpclassify=''
454 d_fpclassl=''
455 d_fpos64_t=''
456 d_frexpl=''
457 d_fs_data_s=''
458 d_fseeko=''
459 d_fsetpos=''
460 d_fstatfs=''
461 d_fsync=''
462 d_ftello=''
463 d_ftime=''
464 d_gettimeod=''
465 d_futimes=''
466 d_Gconvert=''
467 d_getcwd=''
468 d_getespwnam=''
469 d_getfsstat=''
470 d_getgrent=''
471 d_getgrent_r=''
472 getgrent_r_proto=''
473 d_getgrgid_r=''
474 getgrgid_r_proto=''
475 d_getgrnam_r=''
476 getgrnam_r_proto=''
477 d_getgrps=''
478 d_gethbyaddr=''
479 d_gethbyname=''
480 d_gethent=''
481 aphostname=''
482 d_gethname=''
483 d_phostname=''
484 d_uname=''
485 d_gethostbyaddr_r=''
486 gethostbyaddr_r_proto=''
487 d_gethostbyname_r=''
488 gethostbyname_r_proto=''
489 d_gethostent_r=''
490 gethostent_r_proto=''
491 d_gethostprotos=''
492 d_getitimer=''
493 d_getlogin=''
494 d_getlogin_r=''
495 getlogin_r_proto=''
496 d_getmnt=''
497 d_getmntent=''
498 d_getnbyaddr=''
499 d_getnbyname=''
500 d_getnent=''
501 d_getnetbyaddr_r=''
502 getnetbyaddr_r_proto=''
503 d_getnetbyname_r=''
504 getnetbyname_r_proto=''
505 d_getnetent_r=''
506 getnetent_r_proto=''
507 d_getnetprotos=''
508 d_getpagsz=''
509 d_getpent=''
510 d_getpgid=''
511 d_getpgrp2=''
512 d_bsdgetpgrp=''
513 d_getpgrp=''
514 d_getppid=''
515 d_getprior=''
516 d_getpbyname=''
517 d_getpbynumber=''
518 d_getprotobyname_r=''
519 getprotobyname_r_proto=''
520 d_getprotobynumber_r=''
521 getprotobynumber_r_proto=''
522 d_getprotoent_r=''
523 getprotoent_r_proto=''
524 d_getprotoprotos=''
525 d_getprpwnam=''
526 d_getpwent=''
527 d_getpwent_r=''
528 getpwent_r_proto=''
529 d_getpwnam_r=''
530 getpwnam_r_proto=''
531 d_getpwuid_r=''
532 getpwuid_r_proto=''
533 d_getsent=''
534 d_getservbyname_r=''
535 getservbyname_r_proto=''
536 d_getservbyport_r=''
537 getservbyport_r_proto=''
538 d_getservent_r=''
539 getservent_r_proto=''
540 d_getservprotos=''
541 d_getspnam=''
542 d_getspnam_r=''
543 getspnam_r_proto=''
544 d_getsbyname=''
545 d_getsbyport=''
546 d_gmtime_r=''
547 gmtime_r_proto=''
548 d_gnulibc=''
549 gnulibc_version=''
550 d_hasmntopt=''
551 d_htonl=''
552 d_ilogbl=''
553 d_inetaton=''
554 d_int64_t=''
555 d_isascii=''
556 d_isfinite=''
557 d_isinf=''
558 d_isnan=''
559 d_isnanl=''
560 d_killpg=''
561 d_lchown=''
562 d_ldbl_dig=''
563 d_libm_lib_version=''
564 d_link=''
565 d_localtime_r=''
566 d_localtime_r_needs_tzset=''
567 localtime_r_proto=''
568 d_locconv=''
569 d_lockf=''
570 d_longdbl=''
571 longdblsize=''
572 d_longlong=''
573 longlongsize=''
574 d_lseekproto=''
575 d_lstat=''
576 d_madvise=''
577 d_malloc_good_size=''
578 d_malloc_size=''
579 d_mblen=''
580 d_mbstowcs=''
581 d_mbtowc=''
582 d_memchr=''
583 d_memcmp=''
584 d_memcpy=''
585 d_memmove=''
586 d_memset=''
587 d_mkdir=''
588 d_mkdtemp=''
589 d_mkfifo=''
590 d_mkstemp=''
591 d_mkstemps=''
592 d_mktime=''
593 d_mmap=''
594 mmaptype=''
595 d_modfl=''
596 d_modfl_pow32_bug=''
597 d_modflproto=''
598 d_mprotect=''
599 d_msg=''
600 d_msgctl=''
601 d_msgget=''
602 d_msghdr_s=''
603 d_msgrcv=''
604 d_msgsnd=''
605 d_msync=''
606 d_munmap=''
607 d_nice=''
608 d_nl_langinfo=''
609 d_off64_t=''
610 d_open3=''
611 d_fpathconf=''
612 d_pathconf=''
613 d_pause=''
614 d_pipe=''
615 d_poll=''
616 d_portable=''
617 d_procselfexe=''
618 procselfexe=''
619 d_old_pthread_create_joinable=''
620 old_pthread_create_joinable=''
621 d_pthread_atfork=''
622 d_pthread_attr_setscope=''
623 d_pthread_yield=''
624 d_sched_yield=''
625 sched_yield=''
626 d_qgcvt=''
627 d_random_r=''
628 random_r_proto=''
629 d_readdir64_r=''
630 readdir64_r_proto=''
631 d_readdir=''
632 d_rewinddir=''
633 d_seekdir=''
634 d_telldir=''
635 d_readdir_r=''
636 readdir_r_proto=''
637 d_readlink=''
638 d_readv=''
639 d_recvmsg=''
640 d_rename=''
641 d_rmdir=''
642 d_safebcpy=''
643 d_safemcpy=''
644 d_sanemcmp=''
645 d_sbrkproto=''
646 d_scalbnl=''
647 d_select=''
648 d_sem=''
649 d_semctl=''
650 d_semget=''
651 d_semop=''
652 d_sendmsg=''
653 d_setegid=''
654 d_seteuid=''
655 d_setgrent=''
656 d_setgrent_r=''
657 setgrent_r_proto=''
658 d_setgrps=''
659 d_sethent=''
660 d_sethostent_r=''
661 sethostent_r_proto=''
662 d_setitimer=''
663 d_setlinebuf=''
664 d_setlocale=''
665 d_setlocale_r=''
666 setlocale_r_proto=''
667 d_setnent=''
668 d_setnetent_r=''
669 setnetent_r_proto=''
670 d_setpent=''
671 d_setpgid=''
672 d_setpgrp2=''
673 d_bsdsetpgrp=''
674 d_setpgrp=''
675 d_setprior=''
676 d_setproctitle=''
677 d_setprotoent_r=''
678 setprotoent_r_proto=''
679 d_setpwent=''
680 d_setpwent_r=''
681 setpwent_r_proto=''
682 d_setregid=''
683 d_setresgid=''
684 d_setresuid=''
685 d_setreuid=''
686 d_setrgid=''
687 d_setruid=''
688 d_setsent=''
689 d_setservent_r=''
690 setservent_r_proto=''
691 d_setsid=''
692 d_setvbuf=''
693 d_sfio=''
694 usesfio=''
695 d_shm=''
696 d_shmat=''
697 d_shmatprototype=''
698 shmattype=''
699 d_shmctl=''
700 d_shmdt=''
701 d_shmget=''
702 d_sigaction=''
703 d_sigprocmask=''
704 d_sigsetjmp=''
705 usesitecustomize=''
706 d_snprintf=''
707 d_vsnprintf=''
708 d_sockatmark=''
709 d_sockatmarkproto=''
710 d_msg_ctrunc=''
711 d_msg_dontroute=''
712 d_msg_oob=''
713 d_msg_peek=''
714 d_msg_proxy=''
715 d_oldsock=''
716 d_scm_rights=''
717 d_socket=''
718 d_sockpair=''
719 sockethdr=''
720 socketlib=''
721 d_socklen_t=''
722 d_socks5_init=''
723 d_sprintf_returns_strlen=''
724 d_sqrtl=''
725 d_srand48_r=''
726 srand48_r_proto=''
727 d_srandom_r=''
728 srandom_r_proto=''
729 d_sresgproto=''
730 d_sresuproto=''
731 d_statblks=''
732 d_statfs_f_flags=''
733 d_statfs_s=''
734 d_fstatvfs=''
735 d_statvfs=''
736 d_stdio_cnt_lval=''
737 d_stdio_ptr_lval=''
738 d_stdio_ptr_lval_nochange_cnt=''
739 d_stdio_ptr_lval_sets_cnt=''
740 d_stdiobase=''
741 d_stdstdio=''
742 stdio_base=''
743 stdio_bufsiz=''
744 stdio_cnt=''
745 stdio_filbuf=''
746 stdio_ptr=''
747 d_index=''
748 d_strchr=''
749 d_strcoll=''
750 d_strctcpy=''
751 d_strerrm=''
752 d_strerror=''
753 d_sysernlst=''
754 d_syserrlst=''
755 d_strerror_r=''
756 strerror_r_proto=''
757 d_strftime=''
758 d_strlcat=''
759 d_strlcpy=''
760 d_strtod=''
761 d_strtol=''
762 d_strtold=''
763 d_strtoll=''
764 d_strtoq=''
765 d_strtoul=''
766 d_strtoull=''
767 d_strtouq=''
768 d_strxfrm=''
769 d_symlink=''
770 d_syscall=''
771 d_syscallproto=''
772 d_sysconf=''
773 d_system=''
774 d_tcgetpgrp=''
775 d_tcsetpgrp=''
776 d_telldirproto=''
777 d_time=''
778 timetype=''
779 clocktype=''
780 d_times=''
781 d_tmpnam_r=''
782 tmpnam_r_proto=''
783 d_truncate=''
784 d_ttyname_r=''
785 ttyname_r_proto=''
786 d_tzname=''
787 d_u32align=''
788 d_ualarm=''
789 d_umask=''
790 d_semctl_semid_ds=''
791 d_semctl_semun=''
792 d_union_semun=''
793 d_unordered=''
794 d_unsetenv=''
795 d_usleep=''
796 d_usleepproto=''
797 d_ustat=''
798 d_pseudofork=''
799 d_vfork=''
800 usevfork=''
801 d_voidsig=''
802 signal_t=''
803 d_volatile=''
804 d_charvspr=''
805 d_vprintf=''
806 d_wait4=''
807 d_waitpid=''
808 d_wcstombs=''
809 d_wctomb=''
810 d_writev=''
811 dlext=''
812 cccdlflags=''
813 ccdlflags=''
814 dlsrc=''
815 ld=''
816 lddlflags=''
817 usedl=''
818 doublesize=''
819 ebcdic=''
820 fflushNULL=''
821 fflushall=''
822 fpossize=''
823 fpostype=''
824 gccansipedantic=''
825 gccosandvers=''
826 gccversion=''
827 gidformat=''
828 gidsign=''
829 gidsize=''
830 gidtype=''
831 groupstype=''
832 h_fcntl=''
833 h_sysfile=''
834 html1dir=''
835 html1direxp=''
836 installhtml1dir=''
837 html3dir=''
838 html3direxp=''
839 installhtml3dir=''
840 i_arpainet=''
841 i_crypt=''
842 db_hashtype=''
843 db_prefixtype=''
844 db_version_major=''
845 db_version_minor=''
846 db_version_patch=''
847 i_db=''
848 i_dbm=''
849 i_rpcsvcdbm=''
850 d_dirnamlen=''
851 direntrytype=''
852 i_dirent=''
853 i_dld=''
854 i_dlfcn=''
855 i_fcntl=''
856 i_float=''
857 i_fp=''
858 i_fp_class=''
859 i_gdbm=''
860 d_grpasswd=''
861 i_grp=''
862 i_ieeefp=''
863 i_inttypes=''
864 i_langinfo=''
865 i_libutil=''
866 i_limits=''
867 i_locale=''
868 i_machcthr=''
869 i_malloc=''
870 i_math=''
871 i_memory=''
872 i_mntent=''
873 i_ndbm=''
874 i_netdb=''
875 i_neterrno=''
876 i_netinettcp=''
877 i_niin=''
878 i_sysin=''
879 i_poll=''
880 i_prot=''
881 i_pthread=''
882 d_pwage=''
883 d_pwchange=''
884 d_pwclass=''
885 d_pwcomment=''
886 d_pwexpire=''
887 d_pwgecos=''
888 d_pwpasswd=''
889 d_pwquota=''
890 i_pwd=''
891 i_sfio=''
892 i_shadow=''
893 i_socks=''
894 i_stddef=''
895 i_stdlib=''
896 i_string=''
897 strings=''
898 i_sunmath=''
899 i_sysaccess=''
900 i_sysdir=''
901 i_sysfile=''
902 d_voidtty=''
903 i_bsdioctl=''
904 i_sysfilio=''
905 i_sysioctl=''
906 i_syssockio=''
907 i_syslog=''
908 i_sysmman=''
909 i_sysmode=''
910 i_sysmount=''
911 i_sysndir=''
912 i_sysparam=''
913 i_sysresrc=''
914 i_syssecrt=''
915 i_sysselct=''
916 i_sysstat=''
917 i_sysstatfs=''
918 i_sysstatvfs=''
919 i_systimes=''
920 i_systypes=''
921 i_sysuio=''
922 i_sysun=''
923 i_sysutsname=''
924 i_sysvfs=''
925 i_syswait=''
926 i_sgtty=''
927 i_termio=''
928 i_termios=''
929 d_tm_tm_gmtoff=''
930 d_tm_tm_zone=''
931 i_systime=''
932 i_systimek=''
933 i_time=''
934 timeincl=''
935 i_unistd=''
936 i_ustat=''
937 i_utime=''
938 i_values=''
939 i_stdarg=''
940 i_varargs=''
941 i_varhdr=''
942 i_vfork=''
943 d_inc_version_list=''
944 inc_version_list=''
945 inc_version_list_init=''
946 installprefix=''
947 installprefixexp=''
948 installstyle=''
949 installusrbinperl=''
950 intsize=''
951 longsize=''
952 shortsize=''
953 issymlink=''
954 libc=''
955 ldlibpthname=''
956 libperl=''
957 shrpenv=''
958 useshrplib=''
959 glibpth=''
960 libpth=''
961 loclibpth=''
962 plibpth=''
963 xlibpth=''
964 ignore_versioned_solibs=''
965 libs=''
966 libsdirs=''
967 libsfiles=''
968 libsfound=''
969 libspath=''
970 lns=''
971 d_PRIEUldbl=''
972 d_PRIFUldbl=''
973 d_PRIGUldbl=''
974 d_PRIeldbl=''
975 d_PRIfldbl=''
976 d_PRIgldbl=''
977 d_SCNfldbl=''
978 sPRIEUldbl=''
979 sPRIFUldbl=''
980 sPRIGUldbl=''
981 sPRIeldbl=''
982 sPRIfldbl=''
983 sPRIgldbl=''
984 sSCNfldbl=''
985 lseeksize=''
986 lseektype=''
987 mad=''
988 madlyh=''
989 madlyobj=''
990 madlysrc=''
991 make_set_make=''
992 d_mymalloc=''
993 freetype=''
994 mallocobj=''
995 mallocsrc=''
996 malloctype=''
997 usemallocwrap=''
998 usemymalloc=''
999 installman1dir=''
1000 man1dir=''
1001 man1direxp=''
1002 man1ext=''
1003 installman3dir=''
1004 man3dir=''
1005 man3direxp=''
1006 man3ext=''
1007 modetype=''
1008 multiarch=''
1009 mydomain=''
1010 myhostname=''
1011 phostname=''
1012 c=''
1013 n=''
1014 d_eofnblk=''
1015 eagain=''
1016 o_nonblock=''
1017 rd_nodata=''
1018 need_va_copy=''
1019 netdb_hlen_type=''
1020 netdb_host_type=''
1021 netdb_name_type=''
1022 netdb_net_type=''
1023 groupcat=''
1024 hostcat=''
1025 passcat=''
1026 orderlib=''
1027 ranlib=''
1028 d_perl_otherlibdirs=''
1029 otherlibdirs=''
1030 package=''
1031 spackage=''
1032 pager=''
1033 api_revision=''
1034 api_subversion=''
1035 api_version=''
1036 api_versionstring=''
1037 patchlevel=''
1038 perl_patchlevel=''
1039 revision=''
1040 subversion=''
1041 version=''
1042 version_patchlevel_string=''
1043 perl5=''
1044 perladmin=''
1045 perlpath=''
1046 d_nv_preserves_uv=''
1047 d_nv_zero_is_allbits_zero=''
1048 i16size=''
1049 i16type=''
1050 i32size=''
1051 i32type=''
1052 i64size=''
1053 i64type=''
1054 i8size=''
1055 i8type=''
1056 ivsize=''
1057 ivtype=''
1058 nv_preserves_uv_bits=''
1059 nvsize=''
1060 nvtype=''
1061 u16size=''
1062 u16type=''
1063 u32size=''
1064 u32type=''
1065 u64size=''
1066 u64type=''
1067 u8size=''
1068 u8type=''
1069 uvsize=''
1070 uvtype=''
1071 ivdformat=''
1072 nvEUformat=''
1073 nvFUformat=''
1074 nvGUformat=''
1075 nveformat=''
1076 nvfformat=''
1077 nvgformat=''
1078 uvXUformat=''
1079 uvoformat=''
1080 uvuformat=''
1081 uvxformat=''
1082 pidtype=''
1083 prefix=''
1084 prefixexp=''
1085 installprivlib=''
1086 privlib=''
1087 privlibexp=''
1088 prototype=''
1089 ptrsize=''
1090 d_PRIXU64=''
1091 d_PRId64=''
1092 d_PRIi64=''
1093 d_PRIo64=''
1094 d_PRIu64=''
1095 d_PRIx64=''
1096 sPRIXU64=''
1097 sPRId64=''
1098 sPRIi64=''
1099 sPRIo64=''
1100 sPRIu64=''
1101 sPRIx64=''
1102 d_quad=''
1103 quadkind=''
1104 quadtype=''
1105 uquadtype=''
1106 drand01=''
1107 randbits=''
1108 randfunc=''
1109 randseedtype=''
1110 seedfunc=''
1111 installscript=''
1112 scriptdir=''
1113 scriptdirexp=''
1114 selectminbits=''
1115 selecttype=''
1116 sh=''
1117 sig_count=''
1118 sig_name=''
1119 sig_name_init=''
1120 sig_num=''
1121 sig_num_init=''
1122 sig_size=''
1123 d_sitearch=''
1124 installsitearch=''
1125 sitearch=''
1126 sitearchexp=''
1127 installsitebin=''
1128 sitebin=''
1129 sitebinexp=''
1130 installsitehtml1dir=''
1131 sitehtml1dir=''
1132 sitehtml1direxp=''
1133 installsitehtml3dir=''
1134 sitehtml3dir=''
1135 sitehtml3direxp=''
1136 installsitelib=''
1137 sitelib=''
1138 sitelib_stem=''
1139 sitelibexp=''
1140 installsiteman1dir=''
1141 siteman1dir=''
1142 siteman1direxp=''
1143 installsiteman3dir=''
1144 siteman3dir=''
1145 siteman3direxp=''
1146 siteprefix=''
1147 siteprefixexp=''
1148 installsitescript=''
1149 sitescript=''
1150 sitescriptexp=''
1151 sizesize=''
1152 sizetype=''
1153 so=''
1154 socksizetype=''
1155 sharpbang=''
1156 shsharp=''
1157 spitshell=''
1158 src=''
1159 ssizetype=''
1160 startperl=''
1161 startsh=''
1162 stdchar=''
1163 d_stdio_stream_array=''
1164 stdio_stream_array=''
1165 sysman=''
1166 trnl=''
1167 uidformat=''
1168 uidsign=''
1169 uidsize=''
1170 uidtype=''
1171 archname64=''
1172 use64bitall=''
1173 use64bitint=''
1174 usefaststdio=''
1175 ccflags_uselargefiles=''
1176 ldflags_uselargefiles=''
1177 libswanted_uselargefiles=''
1178 uselargefiles=''
1179 uselongdouble=''
1180 usemorebits=''
1181 usemultiplicity=''
1182 nm_opt=''
1183 nm_so_opt=''
1184 runnm=''
1185 usenm=''
1186 useperlio=''
1187 usesocks=''
1188 d_oldpthreads=''
1189 use5005threads=''
1190 useithreads=''
1191 usereentrant=''
1192 usethreads=''
1193 incpath=''
1194 mips_type=''
1195 usrinc=''
1196 d_vendorarch=''
1197 installvendorarch=''
1198 vendorarch=''
1199 vendorarchexp=''
1200 d_vendorbin=''
1201 installvendorbin=''
1202 vendorbin=''
1203 vendorbinexp=''
1204 installvendorhtml1dir=''
1205 vendorhtml1dir=''
1206 vendorhtml1direxp=''
1207 installvendorhtml3dir=''
1208 vendorhtml3dir=''
1209 vendorhtml3direxp=''
1210 d_vendorlib=''
1211 installvendorlib=''
1212 vendorlib=''
1213 vendorlib_stem=''
1214 vendorlibexp=''
1215 installvendorman1dir=''
1216 vendorman1dir=''
1217 vendorman1direxp=''
1218 installvendorman3dir=''
1219 vendorman3dir=''
1220 vendorman3direxp=''
1221 usevendorprefix=''
1222 vendorprefix=''
1223 vendorprefixexp=''
1224 d_vendorscript=''
1225 installvendorscript=''
1226 vendorscript=''
1227 vendorscriptexp=''
1228 versiononly=''
1229 defvoidused=''
1230 voidflags=''
1231 yacc=''
1232 yaccflags=''
1233 CONFIG=''
1234
1235 define='define'
1236 undef='undef'
1237 smallmach='pdp11 i8086 z8000 i80286 iAPX286'
1238 rmlist=''
1239
1240 : We must find out about Eunice early
1241 eunicefix=':'
1242 if test -f /etc/unixtovms; then
1243         eunicefix=/etc/unixtovms
1244 fi
1245 if test -f /etc/unixtovms.exe; then
1246         eunicefix=/etc/unixtovms.exe
1247 fi
1248
1249 : Set executable suffix now -- needed before hints available
1250 if test -f "/libs/version.library"; then
1251 : Amiga OS
1252     _exe=""
1253 elif test -f "/system/gnu_library/bin/ar.pm"; then
1254 : Stratus VOS
1255     _exe=".pm"
1256 elif test -n "$DJGPP"; then
1257 : DOS DJGPP
1258     _exe=".exe"
1259 elif test -d c:/. -o -n "$is_os2" ; then
1260 : OS/2 or cygwin
1261     _exe=".exe"
1262 fi
1263
1264 i_whoami=''
1265 ccname=''
1266 ccversion=''
1267 perllibs=''
1268 : set useposix=false in your hint file to disable the POSIX extension.
1269 useposix=true
1270 : set useopcode=false in your hint file to disable the Opcode extension.
1271 useopcode=true
1272 : Trailing extension.  Override this in a hint file, if needed.
1273 : Extra object files, if any, needed on this platform.
1274 archobjs=''
1275 archname=''
1276 : Possible local include directories to search.
1277 : Set locincpth to "" in a hint file to defeat local include searches.
1278 locincpth="/usr/local/include /opt/local/include /usr/gnu/include"
1279 locincpth="$locincpth /opt/gnu/include /usr/GNU/include /opt/GNU/include"
1280 :
1281 : no include file wanted by default
1282 inclwanted=''
1283
1284 : Enable -DEBUGGING and -DDEBUGGING from the command line
1285 EBUGGING=''
1286 DEBUGGING=old
1287
1288 groupstype=''
1289 libnames=''
1290 : change the next line if compiling for Xenix/286 on Xenix/386
1291 xlibpth='/usr/lib/386 /lib/386'
1292 : Possible local library directories to search.
1293 loclibpth="/usr/local/lib /opt/local/lib /usr/gnu/lib"
1294 loclibpth="$loclibpth /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib"
1295
1296 : general looking path for locating libraries
1297 glibpth="/lib /usr/lib $xlibpth"
1298 glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/local/lib"
1299 test -f /usr/shlib/libc.so && glibpth="/usr/shlib $glibpth"
1300 test -f /shlib/libc.so     && glibpth="/shlib $glibpth"
1301 test -d /usr/lib64         && glibpth="$glibpth /lib64 /usr/lib64 /usr/local/lib64"
1302
1303 : Private path used by Configure to find libraries.  Its value
1304 : is prepended to libpth. This variable takes care of special
1305 : machines, like the mips.  Usually, it should be empty.
1306 plibpth=''
1307
1308 : default library list
1309 libswanted=''
1310 : some systems want to use only the non-versioned libso:s
1311 ignore_versioned_solibs=''
1312 siteman1dir=''
1313 siteman3dir=''
1314 sitescript=''
1315 archname64=''
1316 ccflags_uselargefiles=''
1317 ldflags_uselargefiles=''
1318 libswanted_uselargefiles=''
1319 : set usemultiplicity on the Configure command line to enable multiplicity.
1320 : set usesocks on the Configure command line to enable socks.
1321 : set usethreads on the Configure command line to enable threads.
1322 usereentrant='undef'
1323 : full support for void wanted by default
1324 defvoidused=15
1325
1326 : List of libraries we want.
1327 : If anyone needs extra -lxxx, put those in a hint file.
1328 libswanted="sfio socket bind inet nsl nm ndbm gdbm dbm db malloc dl dld ld sun"
1329 libswanted="$libswanted m crypt sec util c cposix posix ucb bsd BSD"
1330 : We probably want to search /usr/shlib before most other libraries.
1331 : This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist.
1332 glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'`
1333 glibpth="/usr/shlib $glibpth"
1334 : Do not use vfork unless overridden by a hint file.
1335 usevfork=false
1336
1337 : Find the basic shell for Bourne shell scripts
1338 case "$sh" in
1339 '')
1340         case "$SYSTYPE" in
1341         *bsd*|sys5*) xxx="/$SYSTYPE/bin/sh";;
1342         *) xxx='/bin/sh';;
1343         esac
1344         if test -f "$xxx"; then
1345                 sh="$xxx"
1346         else
1347                 : Build up a list and do a single loop so we can 'break' out.
1348                 pth=`echo $PATH | sed -e "s/$p_/ /g"`
1349                 for xxx in sh bash ksh pdksh ash; do
1350                         for p in $pth; do
1351                                 try="$try ${p}/${xxx}"
1352                         done
1353                 done
1354                 for xxx in $try; do
1355                         if test -f "$xxx"; then
1356                                 sh="$xxx";
1357                                 break
1358                         elif test "X$_exe" != X -a -f "$xxx$_exe"; then
1359                                 sh="$xxx";
1360                                 break
1361                         elif test -f "$xxx.exe"; then
1362                                 sh="$xxx";
1363                                 break
1364                         fi
1365                 done
1366         fi
1367         ;;
1368 esac
1369
1370 case "$sh" in
1371 '')     cat >&2 <<EOM
1372 $me:  Fatal Error:  I can't find a Bourne Shell anywhere.  
1373
1374 Usually it's in /bin/sh.  How did you even get this far?
1375 Please contact me (Perl Maintainers) at perlbug@perl.org and 
1376 we'll try to straighten this all out.
1377 EOM
1378         exit 1
1379         ;;
1380 esac
1381
1382 : see if sh knows # comments
1383 if `$sh -c '#' >/dev/null 2>&1`; then
1384         shsharp=true
1385         spitshell=cat
1386         xcat=/bin/cat
1387         test -f $xcat$_exe || xcat=/usr/bin/cat
1388         if test ! -f $xcat$_exe; then
1389                 for p in `echo $PATH | sed -e "s/$p_/ /g"` $paths; do
1390                         if test -f $p/cat$_exe; then
1391                                 xcat=$p/cat
1392                                 break
1393                         fi
1394                 done
1395                 if test ! -f $xcat$_exe; then
1396                         echo "Can't find cat anywhere!"
1397                         exit 1
1398                 fi
1399         fi
1400         echo "#!$xcat" >sharp
1401         $eunicefix sharp
1402         chmod +x sharp
1403         ./sharp > today
1404         if test -s today; then
1405                 sharpbang='#!'
1406         else
1407                 echo "#! $xcat" > sharp
1408                 $eunicefix sharp
1409                 chmod +x sharp
1410                 ./sharp > today
1411                 if test -s today; then
1412                         sharpbang='#! '
1413                 else
1414                         sharpbang=': use '
1415                 fi
1416         fi
1417 else
1418         echo " "
1419         echo "Your $sh doesn't grok # comments--I will strip them later on."
1420         shsharp=false
1421         cd ..
1422         echo "exec grep -v '^[  ]*#'" >spitshell
1423         chmod +x spitshell
1424         $eunicefix spitshell
1425         spitshell=`pwd`/spitshell
1426         cd UU
1427         echo "I presume that if # doesn't work, #! won't work either!"
1428         sharpbang=': use '
1429 fi
1430 rm -f sharp today
1431
1432 : figure out how to guarantee sh startup
1433 case "$startsh" in
1434 '') startsh=${sharpbang}${sh} ;;
1435 *)
1436 esac
1437 cat >sharp <<EOSS
1438 $startsh
1439 set abc
1440 test "$?abc" != 1
1441 EOSS
1442
1443 chmod +x sharp
1444 $eunicefix sharp
1445 if ./sharp; then
1446         : echo "Yup, it does."
1447 else
1448         echo "Hmm... '$startsh' does not guarantee sh startup..."
1449         echo "You may have to fix up the shell scripts to make sure $sh runs them."
1450 fi
1451 rm -f sharp
1452
1453
1454 : Save command line options in file UU/cmdline.opt for later use in
1455 : generating config.sh.
1456 cat > cmdline.opt <<EOSH
1457 # Configure command line arguments.
1458 config_arg0='$0'
1459 config_args='$*'
1460 config_argc=$#
1461 EOSH
1462 argn=1
1463 args_exp=''
1464 args_sep=''
1465 for arg in "$@"; do
1466         cat >>cmdline.opt <<EOSH
1467 config_arg$argn='$arg'
1468 EOSH
1469         # Extreme backslashitis: replace each ' by '"'"'
1470         cat <<EOC | sed -e "s/'/'"'"'"'"'"'"'/g" > cmdl.opt
1471 $arg
1472 EOC
1473         arg_exp=`cat cmdl.opt`
1474         args_exp="$args_exp$args_sep'$arg_exp'"
1475         argn=`expr $argn + 1`
1476         args_sep=' '
1477 done
1478 # args_exp is good for restarting self: eval "set X $args_exp"; shift; $0 "$@"
1479 # used by ./hints/os2.sh
1480 rm -f cmdl.opt
1481
1482 : produce awk script to parse command line options
1483 cat >options.awk <<'EOF'
1484 BEGIN {
1485         optstr = "A:dD:eEf:hKOrsSU:V";  # getopt-style specification
1486
1487         len = length(optstr);
1488         for (i = 1; i <= len; i++) {
1489                 c = substr(optstr, i, 1);
1490                 if (i < len) a = substr(optstr, i + 1, 1); else a = "";
1491                 if (a == ":") {
1492                         arg[c] = 1;
1493                         i++;
1494                 }
1495                 opt[c] = 1;
1496         }
1497 }
1498 {
1499         expect = 0;
1500         str = $0;
1501         if (substr(str, 1, 1) != "-") {
1502                 printf("'%s'\n", str);
1503                 next;
1504         }
1505         len = length($0);
1506         for (i = 2; i <= len; i++) {
1507                 c = substr(str, i, 1);
1508                 if (!opt[c]) {
1509                         printf("-%s\n", substr(str, i));
1510                         next;
1511                 }
1512                 printf("-%s\n", c);
1513                 if (arg[c]) {
1514                         if (i < len)
1515                                 printf("'%s'\n", substr(str, i + 1));
1516                         else
1517                                 expect = 1;
1518                         next;
1519                 }
1520         }
1521 }
1522 END {
1523         if (expect)
1524                 print "?";
1525 }
1526 EOF
1527
1528 : process the command line options
1529 set X `for arg in "$@"; do echo "X$arg"; done |
1530         sed -e s/X// | awk -f options.awk`
1531 eval "set $*"
1532 shift
1533 rm -f options.awk
1534
1535 : set up default values
1536 fastread=''
1537 reuseval=false
1538 config_sh=''
1539 alldone=''
1540 error=''
1541 silent=''
1542 extractsh=''
1543 override=''
1544 knowitall=''
1545 rm -f optdef.sh posthint.sh
1546 cat >optdef.sh <<EOS
1547 $startsh
1548 EOS
1549
1550
1551 : option parsing
1552 while test $# -gt 0; do
1553         case "$1" in
1554         -d) shift; fastread=yes;;
1555         -e) shift; alldone=cont;;
1556         -f)
1557                 shift
1558                 cd ..
1559                 if test -r "$1"; then
1560                         config_sh="$1"
1561                 else
1562                         echo "$me: cannot read config file $1." >&2
1563                         error=true
1564                 fi
1565                 cd UU
1566                 shift;;
1567         -h) shift; error=true;;
1568         -r) shift; reuseval=true;;
1569         -s) shift; silent=true; realsilent=true;;
1570         -E) shift; alldone=exit;;
1571         -K) shift; knowitall=true;;
1572         -O) shift; override=true;;
1573         -S) shift; silent=true; extractsh=true;;
1574         -D)
1575                 shift
1576                 case "$1" in
1577                 *=)
1578                         echo "$me: use '-U symbol=', not '-D symbol='." >&2
1579                         echo "$me: ignoring -D $1" >&2
1580                         ;;
1581                 *=*) echo "$1" | \
1582                                 sed -e "s/'/'\"'\"'/g" -e "s/=\(.*\)/='\1'/" >> optdef.sh;;
1583                 *) echo "$1='define'" >> optdef.sh;;
1584                 esac
1585                 shift
1586                 ;;
1587         -U)
1588                 shift
1589                 case "$1" in
1590                 *=) echo "$1" >> optdef.sh;;
1591                 *=*)
1592                         echo "$me: use '-D symbol=val', not '-U symbol=val'." >&2
1593                         echo "$me: ignoring -U $1" >&2
1594                         ;;
1595                 *) echo "$1='undef'" >> optdef.sh;;
1596                 esac
1597                 shift
1598                 ;;
1599         -A)
1600             shift
1601             xxx=''
1602             yyy="$1"
1603             zzz=''
1604             uuu=undef
1605             case "$yyy" in
1606             *=*) zzz=`echo "$yyy"|sed 's!=.*!!'`
1607                  case "$zzz" in
1608                  *:*) zzz='' ;;
1609                  *)   xxx=append
1610                       zzz=" "`echo "$yyy"|sed 's!^[^=]*=!!'` 
1611                       yyy=`echo "$yyy"|sed 's!=.*!!'` ;;
1612                  esac
1613                  ;;
1614             esac
1615             case "$xxx" in
1616             '')  case "$yyy" in
1617                  *:*) xxx=`echo "$yyy"|sed 's!:.*!!'`
1618                       yyy=`echo "$yyy"|sed 's!^[^:]*:!!'`
1619                       zzz=`echo "$yyy"|sed 's!^[^=]*=!!'`
1620                       yyy=`echo "$yyy"|sed 's!=.*!!'` ;;
1621                  *)   xxx=`echo "$yyy"|sed 's!:.*!!'`
1622                       yyy=`echo "$yyy"|sed 's!^[^:]*:!!'` ;;
1623                  esac
1624                  ;;       
1625             esac
1626             case "$xxx" in
1627             append)
1628                 echo "$yyy=\"\${$yyy}$zzz\""    >> posthint.sh ;;
1629             clear)
1630                 echo "$yyy=''"                  >> posthint.sh ;;
1631             define)
1632                 case "$zzz" in
1633                 '') zzz=define ;;
1634                 esac
1635                 echo "$yyy='$zzz'"              >> posthint.sh ;;
1636             eval)
1637                 echo "eval \"$yyy=$zzz\""       >> posthint.sh ;;
1638             prepend)
1639                 echo "$yyy=\"$zzz\${$yyy}\""    >> posthint.sh ;;
1640             undef)
1641                 case "$zzz" in
1642                 '') zzz="$uuu" ;;
1643                 esac
1644                 echo "$yyy=$zzz"                >> posthint.sh ;;
1645             *)  echo "$me: unknown -A command '$xxx', ignoring -A $1" >&2 ;;
1646             esac
1647             shift
1648             ;;
1649         -V) echo "$me generated by metaconfig 3.0 PL70." >&2
1650             exit 0;;
1651         --) break;;
1652         -*) echo "$me: unknown option $1" >&2; shift; error=true;;
1653         *) break;;
1654         esac
1655 done
1656
1657 case "$error" in
1658 true)
1659         cat >&2 <<EOM
1660 Usage: $me [-dehrsEKOSV] [-f config.sh] [-D symbol] [-D symbol=value]
1661                  [-U symbol] [-U symbol=] [-A command:symbol...]
1662   -d : use defaults for all answers.
1663   -e : go on without questioning past the production of config.sh.
1664   -f : specify an alternate default configuration file.
1665   -h : print this help message and exit (with an error status).
1666   -r : reuse C symbols value if possible (skips costly nm extraction).
1667   -s : silent mode, only echoes questions and essential information.
1668   -D : define symbol to have some value:
1669          -D symbol         symbol gets the value 'define'
1670          -D symbol=value   symbol gets the value 'value'
1671   -E : stop at the end of questions, after having produced config.sh.
1672   -K : do not use unless you know what you are doing.
1673   -O : let -D and -U override definitions from loaded configuration file.
1674   -S : perform variable substitutions on all .SH files (can mix with -f)
1675   -U : undefine symbol:
1676          -U symbol    symbol gets the value 'undef'
1677          -U symbol=   symbol gets completely empty
1678   -A : manipulate symbol after the platform specific hints have been applied:
1679          -A symbol=value                append " "value to symbol
1680          -A append:symbol=value         append value to symbol
1681          -A define:symbol=value         define symbol to have value
1682          -A clear:symbol                define symbol to be ''
1683          -A define:symbol               define symbol to be 'define'
1684          -A eval:symbol=value           define symbol to be eval of value
1685          -A prepend:symbol=value        prepend value to symbol
1686          -A undef:symbol                define symbol to be 'undef'
1687          -A undef:symbol=               define symbol to be ''
1688   -V : print version number and exit (with a zero status).
1689 EOM
1690         exit 1
1691         ;;
1692 esac
1693
1694 : Sanity checks
1695 case "$fastread$alldone" in
1696 yescont|yesexit) ;;
1697 *)
1698         case "$extractsh" in
1699         true) ;;
1700         *)
1701                 if test ! -t 0; then
1702                         echo "Say 'sh Configure', not 'sh <Configure'"
1703                         exit 1
1704                 fi
1705                 ;;
1706         esac
1707         ;;
1708 esac
1709
1710 exec 4>&1
1711 case "$silent" in
1712 true) exec 1>/dev/null;;
1713 esac
1714
1715 : run the defines and the undefines, if any, but leave the file out there...
1716 touch optdef.sh
1717 . ./optdef.sh
1718 : create the posthint manipulation script and leave the file out there...
1719 touch posthint.sh
1720
1721 : set package name
1722 package=perl5
1723 first=`echo $package | sed -e 's/^\(.\).*/\1/'`
1724 last=`echo $package | sed -e 's/^.\(.*\)/\1/'`
1725 case "`echo AbyZ | tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
1726 ABYZ) spackage=`echo $first | tr '[:lower:]' '[:upper:]'`$last;;
1727 *) spackage=`echo $first | tr '[a-z]' '[A-Z]'`$last;;
1728 esac
1729
1730 : Some greps do not return status, grrr.
1731 echo "grimblepritz" >grimble
1732 if grep blurfldyick grimble >/dev/null 2>&1 ; then
1733         contains=contains
1734 elif grep grimblepritz grimble >/dev/null 2>&1 ; then
1735         contains=grep
1736 else
1737         contains=contains
1738 fi
1739 rm -f grimble
1740 : the following should work in any shell
1741 case "$contains" in
1742 contains*)
1743         echo " "
1744         echo "AGH!  Grep doesn't return a status.  Attempting remedial action."
1745         cat >contains <<'EOSS'
1746 grep "$1" "$2" >.greptmp && cat .greptmp && test -s .greptmp
1747 EOSS
1748 chmod +x contains
1749 esac
1750
1751 : Find the path to the source tree
1752 case "$src" in
1753 '') case "$0" in
1754     */*) src=`echo $0 | sed -e 's%/[^/][^/]*$%%'`
1755          case "$src" in
1756          /*)    ;;
1757          .)     ;;
1758          *)     src=`cd ../$src && pwd` ;;
1759          esac
1760          ;;
1761     *)   src='.';;
1762     esac;;
1763 esac
1764 case "$src" in
1765 '')     src=/
1766         rsrc=/
1767         ;;
1768 /*) rsrc="$src";;
1769 *) rsrc="../$src";;
1770 esac
1771 if test -f $rsrc/Configure && \
1772         $contains "^package=$package$" $rsrc/Configure >/dev/null 2>&1
1773 then
1774    : found it, so we are ok.
1775 else
1776         rsrc=''
1777         for src in . .. ../.. ../../.. ../../../..; do
1778                 if test -f ../$src/Configure && \
1779                         $contains "^package=$package$" ../$src/Configure >/dev/null 2>&1
1780                 then
1781                         rsrc=../$src
1782                         break
1783                 fi
1784         done
1785 fi
1786 case "$rsrc" in
1787 '')
1788         cat <<EOM >&4
1789
1790 Sorry, I can't seem to locate the source dir for $package.  Please start
1791 Configure with an explicit path -- i.e. /some/path/Configure.
1792
1793 EOM
1794         exit 1
1795         ;;
1796 ../.)   rsrc='..';;
1797 *)
1798         echo " "
1799         echo "Sources for $package found in \"$src\"." >&4
1800         ;;
1801 esac
1802
1803 : script used to extract .SH files with variable substitutions
1804 cat >extract <<'EOS'
1805 PERL_CONFIG_SH=true
1806 echo "Doing variable substitutions on .SH files..."
1807 if test -f MANIFEST; then
1808         set x `awk '{print $1}' < MANIFEST | grep '\.SH$'`
1809 else
1810         echo "(Looking for .SH files under the source directory.)"
1811         set x `(cd "$src"; find . -name "*.SH" -print)`
1812 fi
1813 shift
1814 case $# in
1815 0) set x `(cd "$src"; echo *.SH)`; shift;;
1816 esac
1817 if test ! -f "$src/$1"; then
1818         shift
1819 fi
1820 mkdir_p='
1821 name=$1;
1822 create="";
1823 while test $name; do
1824         if test ! -d "$name"; then
1825                 create="$name $create";
1826                 name=`echo $name | sed -e "s|^[^/]*$||"`;
1827                 name=`echo $name | sed -e "s|\(.*\)/.*|\1|"`;
1828         else
1829                 name="";
1830         fi;
1831 done;
1832 for file in $create; do
1833         mkdir $file;
1834 done
1835 '
1836 for file in $*; do
1837         case "$src" in
1838         ".")
1839                 case "$file" in
1840                 */*)
1841                         dir=`expr X$file : 'X\(.*\)/'`
1842                         file=`expr X$file : 'X.*/\(.*\)'`
1843                         (cd "$dir" && . ./$file)
1844                         ;;
1845                 *)
1846                         . ./$file
1847                         ;;
1848                 esac
1849                 ;;
1850         *)
1851                 case "$file" in
1852                 */*)
1853                         dir=`expr X$file : 'X\(.*\)/'`
1854                         file=`expr X$file : 'X.*/\(.*\)'`
1855                         (set x $dir; shift; eval $mkdir_p)
1856                         sh <"$src/$dir/$file"
1857                         ;;
1858                 *)
1859                         sh <"$src/$file"
1860                         ;;
1861                 esac
1862                 ;;
1863         esac
1864 done
1865 if test -f "$src/config_h.SH"; then
1866         if test ! -f config.h; then
1867         : oops, they left it out of MANIFEST, probably, so do it anyway.
1868         . "$src/config_h.SH"
1869         fi
1870 fi
1871 EOS
1872
1873 : extract files and exit if asked to do so
1874 case "$extractsh" in
1875 true)
1876         case "$realsilent" in
1877         true) ;;
1878         *) exec 1>&4;;
1879         esac
1880         case "$config_sh" in
1881         '') config_sh='config.sh';;
1882         esac
1883         echo " "
1884         echo "Fetching answers from $config_sh..."
1885         cd ..
1886         . $config_sh
1887         test "$override" && . ./optdef.sh
1888         echo " "
1889         . UU/extract
1890         rm -rf UU
1891         echo "Extraction done."
1892         exit 0
1893         ;;
1894 esac
1895
1896 : Eunice requires " " instead of "", can you believe it
1897 echo " "
1898 : Here we go...
1899 echo "Beginning of configuration questions for $package."
1900
1901 trap 'echo " "; test -d ../UU && rm -rf X $rmlist; exit 1' 1 2 3 15
1902
1903 : first determine how to suppress newline on echo command
1904 echo " "
1905 echo "Checking echo to see how to suppress newlines..."
1906 (echo "hi there\c" ; echo " ") >.echotmp
1907 if $contains c .echotmp >/dev/null 2>&1 ; then
1908         echo "...using -n."
1909         n='-n'
1910         c=''
1911 else
1912         cat <<'EOM'
1913 ...using \c
1914 EOM
1915         n=''
1916         c='\c'
1917 fi
1918 echo $n "The star should be here-->$c"
1919 echo '*'
1920 rm -f .echotmp
1921
1922 : Now test for existence of everything in MANIFEST
1923 echo " "
1924 if test -f "$rsrc/MANIFEST"; then
1925         echo "First let's make sure your kit is complete.  Checking..." >&4
1926         awk '$1 !~ /PACK[A-Z]+/ {print $1}' "$rsrc/MANIFEST" | (split -l 50 2>/dev/null || split -50)
1927         rm -f missing
1928         tmppwd=`pwd`
1929         for filelist in x??; do
1930                 (cd "$rsrc"; ls `cat "$tmppwd/$filelist"` >/dev/null 2>>"$tmppwd/missing")
1931         done
1932         if test -s missing; then
1933                 cat missing >&4
1934                 cat >&4 <<'EOM'
1935
1936 THIS PACKAGE SEEMS TO BE INCOMPLETE.
1937
1938 You have the option of continuing the configuration process, despite the
1939 distinct possibility that your kit is damaged, by typing 'y'es.  If you
1940 do, don't blame me if something goes wrong.  I advise you to type 'n'o
1941 and contact the author (perlbug@perl.org).
1942
1943 EOM
1944                 echo $n "Continue? [n] $c" >&4
1945                 read ans
1946                 case "$ans" in
1947                 y*)
1948                         echo "Continuing..." >&4
1949                         rm -f missing
1950                         ;;
1951                 *)
1952                         echo "ABORTING..." >&4
1953                         kill $$
1954                         ;;
1955                 esac
1956         else
1957                 echo "Looks good..."
1958         fi
1959 else
1960         echo "There is no MANIFEST file.  I hope your kit is complete !"
1961 fi
1962 rm -f missing x??
1963
1964 echo " "
1965 : Find the appropriate value for a newline for tr
1966 if test -n "$DJGPP"; then
1967        trnl='\012'
1968 fi
1969 if test X"$trnl" = X; then
1970         case "`echo foo|tr '\n' x 2>/dev/null`" in
1971         foox) trnl='\n' ;;
1972         esac
1973 fi
1974 if test X"$trnl" = X; then
1975         case "`echo foo|tr '\012' x 2>/dev/null`" in
1976         foox) trnl='\012' ;;
1977         esac
1978 fi
1979 if test X"$trnl" = X; then
1980        case "`echo foo|tr '\r\n' xy 2>/dev/null`" in
1981        fooxy) trnl='\n\r' ;;
1982        esac
1983 fi
1984 if test X"$trnl" = X; then
1985         cat <<EOM >&2
1986
1987 $me: Fatal Error: cannot figure out how to translate newlines with 'tr'.
1988
1989 EOM
1990         exit 1
1991 fi
1992
1993 : compute the number of columns on the terminal for proper question formatting
1994 case "$COLUMNS" in
1995 '') COLUMNS='80';;
1996 esac
1997
1998 : set up the echo used in my read
1999 myecho="case \"\$xxxm\" in
2000 '') echo $n \"\$rp $c\" >&4;;
2001 *) case \"\$rp\" in
2002         '') echo $n \"[\$xxxm] $c\";;
2003         *)
2004                 if test \`echo \"\$rp [\$xxxm]  \" | wc -c\` -ge $COLUMNS; then
2005                         echo \"\$rp\" >&4
2006                         echo $n \"[\$xxxm] $c\" >&4
2007                 else
2008                         echo $n \"\$rp [\$xxxm] $c\" >&4
2009                 fi
2010                 ;;
2011         esac;;
2012 esac"
2013
2014 : now set up to do reads with possible shell escape and default assignment
2015 cat <<EOSC >myread
2016 $startsh
2017 xxxm=\$dflt
2018 $myecho
2019 ans='!'
2020 case "\$fastread" in
2021 yes) case "\$dflt" in
2022         '') ;;
2023         *) ans='';
2024                 case "\$silent-\$rp" in
2025                 true-) ;;
2026                 *) echo " " >&4;;
2027                 esac;;
2028         esac;;
2029 *) case "\$silent" in
2030         true) case "\$rp" in
2031                 '') ans='';;
2032                 esac;;
2033         esac;;
2034 esac
2035 while expr "X\$ans" : "X!" >/dev/null; do
2036         read answ
2037         set x \$xxxm
2038         shift
2039         aok=''; eval "ans=\\"\$answ\\"" && aok=y
2040         case  "\$answ" in
2041         "!")
2042                 sh 1>&4
2043                 echo " "
2044                 $myecho
2045                 ;;
2046         !*)
2047                 set x \`expr "X\$ans" : "X!\(.*\)\$"\`
2048                 shift
2049                 sh 1>&4 -c "\$*"
2050                 echo " "
2051                 $myecho
2052                 ;;
2053         "\$ans")
2054                 case "\$ans" in
2055                 \\&*)
2056                         set x \`expr "X\$ans" : "X&\(.*\)\$"\`
2057                         shift
2058                         case "\$1" in
2059                         -d)
2060                                 fastread=yes
2061                                 echo "(OK, I'll run with -d after this question.)" >&4
2062                                 ;;
2063                         -*)
2064                                 echo "*** Sorry, \$1 not supported yet." >&4
2065                                 ;;
2066                         esac
2067                         $myecho
2068                         ans=!
2069                         ;;
2070                 esac;;
2071         *)
2072                 case "\$aok" in
2073                 y)
2074                         echo "*** Substitution done -- please confirm."
2075                         xxxm="\$ans"
2076                         ans=\`echo $n "\$ans$c" | tr '$trnl' ' '\`
2077                         xxxm="\$ans"
2078                         ans=!
2079                         ;;
2080                 *)
2081                         echo "*** Error -- try again."
2082                         ans=!
2083                         ;;
2084                 esac
2085                 $myecho
2086                 ;;
2087         esac
2088         case "\$ans\$xxxm\$nostick" in
2089         '')
2090                 ans=!
2091                 $myecho
2092                 ;;
2093         esac
2094 done
2095 case "\$ans" in
2096 '') ans="\$xxxm";;
2097 esac
2098 EOSC
2099
2100 : create .config dir to save info across Configure sessions
2101 test -d ../.config || mkdir ../.config
2102 cat >../.config/README <<EOF
2103 This directory created by Configure to save information that should
2104 persist across sessions for $package.
2105
2106 You may safely delete it if you wish.
2107 EOF
2108
2109 xversion=`awk '/define[         ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
2110 case "$usedevel" in
2111 $define|true|[yY]*) ;;
2112 *) case "$xversion" in
2113    *[13579])
2114         cat >&4 <<EOH
2115 *** WHOA THERE!!! ***
2116
2117     This is an UNSTABLE DEVELOPMENT release.
2118     The version of this $package distribution is $xversion, that is, odd,
2119     (as opposed to even) and that signifies a development release.
2120     If you want a maintenance release, you want an even-numbered version.
2121
2122     Do ***NOT*** install this into production use.
2123     Data corruption and crashes are possible.
2124
2125     It is most seriously suggested that you do not continue any further
2126     unless you want to help in developing and debugging Perl.
2127
2128     If you *still* want to build perl, you can answer 'y' now,
2129     or pass -Dusedevel to Configure.
2130
2131 EOH
2132         rp='Do you really want to continue?'
2133         dflt='n'
2134         . ./myread
2135         case "$ans" in
2136         [yY]) echo >&4 "Okay, continuing."
2137               usedevel="$define" ;;
2138         *) echo >&4 "Okay, bye."
2139            exit 1
2140            ;;
2141         esac
2142         ;;
2143     esac
2144     ;;
2145 esac
2146 case "$usedevel" in
2147 $define|true|[yY]*)
2148         case "$versiononly" in
2149         '') versiononly="$define" ;;
2150         esac
2151         case "$installusrbinperl" in
2152         '') installusrbinperl="$undef" ;;
2153         esac
2154         ;;
2155 esac
2156
2157 : general instructions
2158 needman=true
2159 firsttime=true
2160 user=`(logname) 2>/dev/null`
2161 case "$user" in
2162 '') user=`whoami 2>&1`;;
2163 esac
2164 if $contains "^$user\$" ../.config/instruct >/dev/null 2>&1; then
2165         firsttime=false
2166         echo " "
2167         rp='Would you like to see the instructions?'
2168         dflt=n
2169         . ./myread
2170         case "$ans" in
2171         [yY]*) ;;
2172         *) needman=false;;
2173         esac
2174 fi
2175 if $needman; then
2176         cat <<EOH
2177
2178 This installation shell script will examine your system and ask you questions
2179 to determine how the perl5 package should be installed. If you get
2180 stuck on a question, you may use a ! shell escape to start a subshell or
2181 execute a command.  Many of the questions will have default answers in square
2182 brackets; typing carriage return will give you the default.
2183
2184 On some of the questions which ask for file or directory names you are allowed
2185 to use the ~name construct to specify the login directory belonging to "name",
2186 even if you don't have a shell which knows about that.  Questions where this is
2187 allowed will be marked "(~name ok)".
2188
2189 EOH
2190         rp=''
2191         dflt='Type carriage return to continue'
2192         . ./myread
2193         cat <<'EOH'
2194
2195 The prompter used in this script allows you to use shell variables and
2196 backticks in your answers.  You may use $1, $2, etc...  to refer to the words
2197 in the default answer, as if the default line was a set of arguments given to a
2198 script shell.  This means you may also use $* to repeat the whole default line,
2199 so you do not have to re-type everything to add something to the default.
2200
2201 Everytime there is a substitution, you will have to confirm.  If there is an
2202 error (e.g. an unmatched backtick), the default answer will remain unchanged
2203 and you will be prompted again.
2204
2205 If you are in a hurry, you may run 'Configure -d'.  This will bypass nearly all
2206 the questions and use the computed defaults (or the previous answers if there
2207 was already a config.sh file). Type 'Configure -h' for a list of options.
2208 You may also start interactively and then answer '& -d' at any prompt to turn
2209 on the non-interactive behaviour for the remainder of the execution.
2210
2211 EOH
2212         . ./myread
2213         cat <<EOH
2214
2215 Much effort has been expended to ensure that this shell script will run on any
2216 Unix system.  If despite that it blows up on yours, your best bet is to edit
2217 Configure and run it again.  If you can't run Configure for some reason,
2218 you'll have to generate a config.sh file by hand.  Whatever problems you
2219 have, let me (perlbug@perl.org) know how I blew it.
2220
2221 This installation script affects things in two ways:
2222
2223 1) it may do direct variable substitutions on some of the files included
2224    in this kit.
2225 2) it builds a config.h file for inclusion in C programs.  You may edit
2226    any of these files as the need arises after running this script.
2227
2228 If you make a mistake on a question, there is no easy way to back up to it
2229 currently.  The easiest thing to do is to edit config.sh and rerun all the SH
2230 files.  Configure will offer to let you do this before it runs the SH files.
2231
2232 EOH
2233         dflt='Type carriage return to continue'
2234         . ./myread
2235         case "$firsttime" in
2236         true) echo $user >>../.config/instruct;;
2237         esac
2238 fi
2239
2240 : find out where common programs are
2241 echo " "
2242 echo "Locating common programs..." >&4
2243 cat <<EOSC >loc
2244 $startsh
2245 case \$# in
2246 0) exit 1;;
2247 esac
2248 thing=\$1
2249 shift
2250 dflt=\$1
2251 shift
2252 for dir in \$*; do
2253         case "\$thing" in
2254         .)
2255         if test -d \$dir/\$thing; then
2256                 echo \$dir
2257                 exit 0
2258         fi
2259         ;;
2260         *)
2261         for thisthing in \$dir/\$thing; do
2262                 : just loop through to pick last item
2263         done
2264         if test -f \$thisthing; then
2265                 echo \$thisthing
2266                 exit 0
2267         elif test "X$_exe" != X -a -f \$thisthing$_exe; then
2268                 echo \$thisthing
2269                 exit 0
2270         elif test -f \$dir/\$thing.exe; then
2271                 if test -n "$DJGPP"; then
2272                         echo \$dir/\$thing.exe
2273                 elif test "$eunicefix" != ":"; then
2274                         : on Eunice apparently
2275                         echo \$dir/\$thing
2276                         exit 0
2277                 fi
2278                 exit 0
2279         fi
2280         ;;
2281         esac
2282 done
2283 echo \$dflt
2284 exit 1
2285 EOSC
2286 chmod +x loc
2287 $eunicefix loc
2288 loclist="
2289 awk
2290 cat
2291 chmod
2292 comm
2293 cp
2294 echo
2295 expr
2296 grep
2297 ls
2298 mkdir
2299 rm
2300 sed
2301 sort
2302 touch
2303 tr
2304 uniq
2305 "
2306 trylist="
2307 Mcc
2308 ar
2309 bison
2310 byacc
2311 cpp
2312 csh
2313 date
2314 egrep
2315 gmake
2316 gzip
2317 less
2318 ln
2319 make
2320 more
2321 nm
2322 nroff
2323 pg
2324 test
2325 uname
2326 zip
2327 "
2328 pth=`echo $PATH | sed -e "s/$p_/ /g"`
2329 pth="$pth /lib /usr/lib"
2330 for file in $loclist; do
2331         eval xxx=\$$file
2332         case "$xxx" in
2333         /*|?:[\\/]*)
2334                 if test -f "$xxx"; then
2335                         : ok
2336                 else
2337                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
2338                         xxx=`./loc $file $file $pth`
2339                 fi
2340                 ;;
2341         '') xxx=`./loc $file $file $pth`;;
2342         *) xxx=`./loc $xxx $xxx $pth`;;
2343         esac
2344         eval $file=$xxx$_exe
2345         eval _$file=$xxx
2346         case "$xxx" in
2347         /*)
2348                 echo $file is in $xxx.
2349                 ;;
2350         ?:[\\/]*)
2351                 echo $file is in $xxx.
2352                 ;;
2353         *)
2354                 echo "I don't know where '$file' is, and my life depends on it." >&4
2355                 echo "Go find a public domain implementation or fix your PATH setting!" >&4
2356                 exit 1
2357                 ;;
2358         esac
2359 done
2360 echo " "
2361 echo "Don't worry if any of the following aren't found..."
2362 say=offhand
2363 for file in $trylist; do
2364         eval xxx=\$$file
2365         case "$xxx" in
2366         /*|?:[\\/]*)
2367                 if test -f "$xxx"; then
2368                         : ok
2369                 else
2370                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
2371                         xxx=`./loc $file $file $pth`
2372                 fi
2373                 ;;
2374         '') xxx=`./loc $file $file $pth`;;
2375         *) xxx=`./loc $xxx $xxx $pth`;;
2376         esac
2377         eval $file=$xxx$_exe
2378         eval _$file=$xxx
2379         case "$xxx" in
2380         /*)
2381                 echo $file is in $xxx.
2382                 ;;
2383         ?:[\\/]*)
2384                 echo $file is in $xxx.
2385                 ;;
2386         *)
2387                 echo "I don't see $file out there, $say."
2388                 say=either
2389                 ;;
2390         esac
2391 done
2392 case "$egrep" in
2393 egrep)
2394         echo "Substituting grep for egrep."
2395         egrep=$grep
2396         _egrep=$grep
2397         ;;
2398 esac
2399 case "$ln" in
2400 ln)
2401         echo "Substituting cp for ln."
2402         ln=$cp
2403         _ln=$cp
2404         ;;
2405 esac
2406 case "$make" in
2407 make)   
2408         case "$gmake" in
2409         gmake)
2410         echo "I can't find make or gmake, and my life depends on it." >&4
2411         echo "Go find a public domain implementation or fix your PATH setting!" >&4
2412         exit 1
2413         ;;
2414         esac
2415         ;;
2416 esac    
2417 case "$gmake" in
2418 gmake)  ;;
2419 *)      # We can't have osname yet.
2420         if test -f "/system/gnu_library/bin/ar.pm"; then # Stratus VOS
2421                 # Assume that gmake, if found, is definitely GNU make
2422                 # and prefer it over the system make.
2423                 echo "Substituting gmake for make."
2424                 make=$gmake
2425                 _make=$gmake
2426         fi
2427         ;;
2428 esac
2429 case "$test" in
2430 test)
2431         echo "Hopefully test is built into your sh."
2432         ;;
2433 *)
2434         if `sh -c "PATH= test true" >/dev/null 2>&1`; then
2435                 echo "Using the test built into your sh."
2436                 test=test
2437                 _test=test
2438         fi
2439         ;;
2440 esac
2441 case "$echo" in
2442 echo)
2443         echo "Hopefully echo is built into your sh."
2444         ;;
2445 '') ;;
2446 *)
2447         echo " "
2448 echo "Checking compatibility between $echo and builtin echo (if any)..." >&4
2449         $echo $n "hi there$c" >foo1
2450         echo $n "hi there$c" >foo2
2451         if cmp foo1 foo2 >/dev/null 2>&1; then
2452                 echo "They are compatible.  In fact, they may be identical."
2453         else
2454                 case "$n" in
2455                 '-n') n='' c='\c';;
2456                 *) n='-n' c='';;
2457                 esac
2458                 cat <<FOO
2459 They are not compatible!  You are probably running ksh on a non-USG system.
2460 I'll have to use $echo instead of the builtin, since Bourne shell doesn't
2461 have echo built in and we may have to run some Bourne shell scripts.  That
2462 means I'll have to use '$n$c' to suppress newlines now.  Life is ridiculous.
2463
2464 FOO
2465                 $echo $n "The star should be here-->$c"
2466                 $echo "*"
2467         fi
2468         $rm -f foo1 foo2
2469         ;;
2470 esac
2471
2472 cat <<EOS >trygcc
2473 $startsh
2474 EOS
2475 cat <<'EOSC' >>trygcc
2476 case "$cc" in
2477 '') ;;
2478 *)  $rm -f try try.*
2479     $cat >try.c <<EOM
2480 int main(int argc, char *argv[]) {
2481   return 0;
2482 }
2483 EOM
2484     if $cc -o try $ccflags $ldflags try.c; then
2485        :
2486     else
2487         echo "Uh-oh, the C compiler '$cc' doesn't seem to be working." >&4
2488         despair=yes
2489         trygcc=yes
2490         case "$cc" in
2491         *gcc*) trygcc=no ;;
2492         esac
2493         case "`$cc -v -c try.c 2>&1`" in
2494         *gcc*) trygcc=no ;;
2495         esac
2496         if $test X"$trygcc" = Xyes; then
2497             if gcc -o try -c try.c; then
2498                 echo " "
2499                 echo "You seem to have a working gcc, though." >&4
2500                 rp="Would you like to use it?"
2501                 dflt=y
2502                 if $test -f myread; then
2503                     . ./myread
2504                 else
2505                     if $test -f UU/myread; then
2506                         . ./UU/myread
2507                     else
2508                         echo "Cannot find myread, sorry.  Aborting." >&2
2509                         exit 1
2510                     fi
2511                 fi  
2512                 case "$ans" in
2513                 [yY]*) cc=gcc; ccname=gcc; ccflags=''; despair=no;
2514                        if $test -f usethreads.cbu; then
2515                            $cat >&4 <<EOM 
2516
2517 *** However, any setting of the C compiler flags (e.g. for thread support)
2518 *** has been lost.  It may be necessary to pass -Dcc=gcc to Configure
2519 *** (together with e.g. -Dusethreads).
2520
2521 EOM
2522                        fi;;
2523                 esac
2524             fi
2525         fi
2526     fi
2527     $rm -f try try.*
2528     ;;
2529 esac
2530 EOSC
2531
2532 cat <<EOS >checkcc
2533 $startsh
2534 EOS
2535 cat <<'EOSC' >>checkcc
2536 case "$cc" in        
2537 '') ;;
2538 *)  $rm -f try try.*              
2539     $cat >try.c <<EOM
2540 int main(int argc, char *argv[]) {
2541   return 0;
2542 }
2543 EOM
2544     if $cc -o try $ccflags $ldflags try.c; then
2545        :
2546     else
2547         if $test X"$despair" = Xyes; then
2548            echo "Uh-oh, the C compiler '$cc' doesn't seem to be working." >&4
2549         fi
2550         $cat >&4 <<EOM         
2551 You need to find a working C compiler.
2552 Either (purchase and) install the C compiler supplied by your OS vendor,
2553 or for a free C compiler try http://gcc.gnu.org/
2554 I cannot continue any further, aborting.
2555 EOM
2556         exit 1
2557     fi
2558     $rm -f try try.*
2559     ;;
2560 esac
2561 EOSC
2562
2563 : determine whether symbolic links are supported
2564 echo " "
2565 $touch blurfl
2566 if $ln -s blurfl sym > /dev/null 2>&1 ; then
2567         echo "Symbolic links are supported." >&4
2568         lns="$ln -s"
2569 else
2570         echo "Symbolic links are NOT supported." >&4
2571         lns="$ln"
2572 fi
2573 $rm -f blurfl sym
2574
2575 : determine whether symbolic links are supported
2576 echo " "
2577 case "$lns" in
2578 *"ln"*" -s")
2579         echo "Checking how to test for symbolic links..." >&4
2580         $lns blurfl sym
2581         if $test "X$issymlink" = X; then
2582                 case "$newsh" in
2583                 '') sh     -c "PATH= test -h sym" >/dev/null 2>&1 ;;
2584                 *)  $newsh -c "PATH= test -h sym" >/dev/null 2>&1 ;;
2585                 esac
2586                 if test $? = 0; then
2587                         issymlink="test -h"
2588                 else
2589                         echo "Your builtin 'test -h' may be broken." >&4
2590                         case "$test" in
2591                         /*)     ;;
2592                         *)      pth=`echo $PATH | sed -e "s/$p_/ /g"`
2593                                 for p in $pth
2594                                 do
2595                                         if test -f "$p/$test"; then
2596                                                 test="$p/$test"
2597                                                 break
2598                                         fi
2599                                 done
2600                                 ;;
2601                         esac
2602                         case "$test" in
2603                         /*)
2604                                 echo "Trying external '$test -h'." >&4
2605                                 issymlink="$test -h"
2606                                 if $test ! -h sym >/dev/null 2>&1; then
2607                                         echo "External '$test -h' is broken, too." >&4
2608                                         issymlink=''
2609                                 fi
2610                                 ;;
2611                         *)      issymlink='' ;;
2612                         esac
2613                 fi              
2614         fi
2615         if $test "X$issymlink" = X; then
2616                 if $test -L sym 2>/dev/null; then
2617                         issymlink="$test -L"
2618                         echo "The builtin '$test -L' worked." >&4
2619                 fi
2620         fi
2621         if $test "X$issymlink" != X; then
2622                 echo "You can test for symbolic links with '$issymlink'." >&4
2623         else
2624                 echo "I do not know how you can test for symbolic links." >&4
2625         fi
2626         $rm -f blurfl sym
2627         ;;
2628 *)      echo "No symbolic links, so not testing for their testing..." >&4
2629         ;;
2630 esac
2631 echo " "
2632
2633
2634 case "$mksymlinks" in
2635 $define|true|[yY]*)
2636         case "$src" in
2637         ''|'.') echo "Cannot create symlinks in the original directory." >&4
2638                 exit 1
2639                 ;;
2640         *)      case "$lns:$issymlink" in
2641                 *"ln"*" -s:"*"test -"?)
2642                         echo "Creating the symbolic links..." >&4
2643                         echo "(First creating the subdirectories...)" >&4
2644                         cd ..
2645                         awk '{print $1}' $src/MANIFEST | grep / | sed 's:/[^/]*$::' | sort -u | while true; do
2646                                 read directory
2647                                 test -z "$directory" && break
2648                                 mkdir -p $directory
2649                         done
2650                         # Sanity check 1.
2651                         if test ! -d t/base; then
2652                                 echo "Failed to create the subdirectories.  Aborting." >&4
2653                                 exit 1
2654                         fi
2655                         echo "(Then creating the symlinks...)" >&4
2656                         awk '{print $1}' $src/MANIFEST | while true; do
2657                                 read filename
2658                                 test -z "$filename" && break
2659                                 if test -f $filename; then
2660                                         if $issymlink $filename; then
2661                                                 rm -f $filename
2662                                         fi
2663                                 fi
2664                                 if test -f $filename; then
2665                                         echo "$filename already exists, not symlinking."
2666                                 else
2667                                         ln -s $src/$filename $filename
2668                                 fi
2669                         done
2670                         # Sanity check 2.
2671                         if test ! -f t/base/lex.t; then
2672                                 echo "Failed to create the symlinks (t/base/lex.t missing).  Aborting." >&4
2673                                 exit 1
2674                         fi
2675                         cd UU
2676                         ;;
2677                 *)      echo "(I cannot figure out how to do symbolic links, ignoring mksymlinks)." >&4
2678                         ;;
2679                 esac
2680                 ;;
2681         esac
2682         ;;
2683 esac
2684
2685
2686 case "$usecrosscompile" in
2687 $define|true|[yY]*)
2688         $echo "Cross-compiling..."
2689         croak=''
2690         case "$cc" in
2691         *-*-gcc) # A cross-compiling gcc, probably.
2692             targetarch=`$echo $cc|$sed 's/-gcc$//'`
2693             ar=$targetarch-ar
2694             # leave out ld, choosing it is more complex
2695             nm=$targetarch-nm
2696             ranlib=$targetarch-ranlib
2697             $echo 'extern int foo;' > try.c
2698             set X `$cc -v -E try.c 2>&1 | $awk '/^#include </,/^End of search /'|$grep '/include'`
2699             shift
2700             if $test $# -gt 0; then
2701                 incpth="$incpth $*"
2702                 incpth="`$echo $incpth|$sed 's/^ //'`"
2703                 echo "Guessing incpth '$incpth'." >&4
2704                 for i in $*; do
2705                     j="`$echo $i|$sed 's,/include$,/lib,'`"
2706                     if $test -d $j; then
2707                         libpth="$libpth $j"
2708                     fi
2709                 done   
2710                 libpth="`$echo $libpth|$sed 's/^ //'`"
2711                 echo "Guessing libpth '$libpth'." >&4
2712             fi
2713             $rm -f try.c
2714             ;;
2715         esac
2716         case "$targetarch" in
2717         '') echo "Targetarch not defined." >&4; croak=y ;;
2718         *)  echo "Using targetarch $targetarch." >&4 ;;
2719         esac
2720         case "$incpth" in
2721         '') echo "Incpth not defined." >&4; croak=y ;;
2722         *)  echo "Using incpth '$incpth'." >&4 ;;
2723         esac
2724         case "$libpth" in
2725         '') echo "Libpth not defined." >&4; croak=y ;;
2726         *)  echo "Using libpth '$libpth'." >&4 ;;
2727         esac
2728         case "$usrinc" in
2729         '') for i in $incpth; do
2730                 if $test -f $i/errno.h -a -f $i/stdio.h -a -f $i/time.h; then
2731                     usrinc=$i
2732                     echo "Guessing usrinc $usrinc." >&4
2733                     break
2734                 fi
2735             done
2736             case "$usrinc" in
2737             '') echo "Usrinc not defined." >&4; croak=y ;;
2738             esac
2739             ;;
2740         *)  echo "Using usrinc $usrinc." >&4 ;;
2741         esac
2742         case "$targethost" in
2743         '') echo "Targethost not defined." >&4; croak=y ;;
2744         *)  echo "Using targethost $targethost." >&4
2745         esac
2746         locincpth=' '
2747         loclibpth=' '
2748         case "$croak" in
2749         y) echo "Cannot continue, aborting." >&4; exit 1 ;;
2750         esac
2751         case "$src" in
2752         /*) run=$src/Cross/run
2753             targetmkdir=$src/Cross/mkdir
2754             to=$src/Cross/to
2755             from=$src/Cross/from
2756             ;;
2757         *)  pwd=`$test -f ../Configure & cd ..; pwd`
2758             run=$pwd/Cross/run
2759             targetmkdir=$pwd/Cross/mkdir
2760             to=$pwd/Cross/to
2761             from=$pwd/Cross/from
2762             ;;
2763         esac
2764         case "$targetrun" in
2765         '') targetrun=ssh ;;
2766         esac
2767         case "$targetto" in
2768         '') targetto=scp ;;
2769         esac
2770         case "$targetfrom" in
2771         '') targetfrom=scp ;;
2772         esac
2773         run=$run-$targetrun
2774         to=$to-$targetto
2775         from=$from-$targetfrom
2776         case "$targetdir" in
2777         '')  targetdir=/tmp
2778              echo "Guessing targetdir $targetdir." >&4
2779              ;;
2780         esac
2781         case "$targetuser" in
2782         '')  targetuser=root
2783              echo "Guessing targetuser $targetuser." >&4
2784              ;;
2785         esac
2786         case "$targetfrom" in
2787         scp)    q=-q ;;
2788         *)      q='' ;;
2789         esac
2790         case "$targetrun" in
2791         ssh|rsh)
2792             cat >$run <<EOF
2793 #!/bin/sh
2794 case "\$1" in
2795 -cwd)
2796   shift
2797   cwd=\$1
2798   shift
2799   ;;
2800 esac
2801 case "\$cwd" in
2802 '') cwd=$targetdir ;;
2803 esac
2804 exe=\$1
2805 shift
2806 if $test ! -f \$exe.xok; then
2807   $to \$exe
2808   $touch \$exe.xok
2809 fi
2810 $targetrun -l $targetuser $targethost "cd \$cwd && ./\$exe \$@"
2811 EOF
2812             ;;
2813         *)  echo "Unknown targetrun '$targetrun'" >&4
2814             exit 1
2815             ;;
2816         esac
2817         case "$targetmkdir" in
2818         */Cross/mkdir)
2819             cat >$targetmkdir <<EOF
2820 #!/bin/sh
2821 $targetrun -l $targetuser $targethost "mkdir -p \$@"
2822 EOF
2823             $chmod a+rx $targetmkdir
2824             ;;
2825         *)  echo "Unknown targetmkdir '$targetmkdir'" >&4
2826             exit 1
2827             ;;
2828         esac
2829         case "$targetto" in
2830         scp|rcp)
2831             cat >$to <<EOF
2832 #!/bin/sh
2833 for f in \$@
2834 do
2835   case "\$f" in
2836   /*)
2837     $targetmkdir \`dirname \$f\`
2838     $targetto $q \$f $targetuser@$targethost:\$f            || exit 1
2839     ;;
2840   *)
2841     $targetmkdir $targetdir/\`dirname \$f\`
2842     $targetto $q \$f $targetuser@$targethost:$targetdir/\$f || exit 1
2843     ;;
2844   esac
2845 done
2846 exit 0
2847 EOF
2848             ;;
2849         cp) cat >$to <<EOF
2850 #!/bin/sh
2851 for f in \$@
2852 do
2853   case "\$f" in
2854   /*)
2855     $mkdir -p $targetdir/\`dirname \$f\`
2856     $cp \$f $targetdir/\$f || exit 1
2857     ;;
2858   *)
2859     $targetmkdir $targetdir/\`dirname \$f\`
2860     $cp \$f $targetdir/\$f || exit 1
2861     ;;
2862   esac
2863 done
2864 exit 0
2865 EOF
2866             ;;
2867         *)  echo "Unknown targetto '$targetto'" >&4
2868             exit 1
2869             ;;
2870         esac
2871         case "$targetfrom" in
2872         scp|rcp)
2873           cat >$from <<EOF
2874 #!/bin/sh
2875 for f in \$@
2876 do
2877   $rm -f \$f
2878   $targetfrom $q $targetuser@$targethost:$targetdir/\$f . || exit 1
2879 done
2880 exit 0
2881 EOF
2882             ;;
2883         cp) cat >$from <<EOF
2884 #!/bin/sh
2885 for f in \$@
2886 do
2887   $rm -f \$f
2888   cp $targetdir/\$f . || exit 1
2889 done
2890 exit 0
2891 EOF
2892             ;;
2893         *)  echo "Unknown targetfrom '$targetfrom'" >&4
2894             exit 1
2895             ;;
2896         esac
2897         if $test ! -f $run; then
2898             echo "Target 'run' script '$run' not found." >&4
2899         else
2900             $chmod a+rx $run
2901         fi
2902         if $test ! -f $to; then
2903             echo "Target 'to' script '$to' not found." >&4
2904         else
2905             $chmod a+rx $to
2906         fi
2907         if $test ! -f $from; then
2908             echo "Target 'from' script '$from' not found." >&4
2909         else
2910             $chmod a+rx $from
2911         fi
2912         if $test ! -f $run -o ! -f $to -o ! -f $from; then
2913             exit 1
2914         fi
2915         cat >&4 <<EOF
2916 Using '$run' for remote execution,
2917 and '$from' and '$to'
2918 for remote file transfer.
2919 EOF
2920         ;;
2921 *)      run=''
2922         to=:
2923         from=:
2924         usecrosscompile='undef'
2925         targetarch=''
2926         ;;
2927 esac
2928
2929 : see whether [:lower:] and [:upper:] are supported character classes
2930 echo " "
2931 case "`echo AbyZ | $tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
2932 ABYZ)
2933         echo "Good, your tr supports [:lower:] and [:upper:] to convert case." >&4
2934         up='[:upper:]'
2935         low='[:lower:]'
2936         ;;
2937 *)      # There is a discontinuity in EBCDIC between 'R' and 'S'
2938         # (0xd9 and 0xe2), therefore that is a nice testing point.
2939         if test "X$up" = X -o "X$low" = X; then
2940             case "`echo RS | $tr '[R-S]' '[r-s]' 2>/dev/null`" in
2941             rs) up='[A-Z]'
2942                 low='[a-z]'
2943                 ;;
2944             esac
2945         fi
2946         if test "X$up" = X -o "X$low" = X; then
2947             case "`echo RS | $tr R-S r-s 2>/dev/null`" in
2948             rs) up='A-Z'
2949                 low='a-z'
2950                 ;;
2951             esac
2952         fi
2953         if test "X$up" = X -o "X$low" = X; then
2954             case "`echo RS | od -x 2>/dev/null`" in
2955             *D9E2*|*d9e2*)
2956                 echo "Hey, this might be EBCDIC." >&4
2957                 if test "X$up" = X -o "X$low" = X; then
2958                     case "`echo RS | $tr '[A-IJ-RS-Z]' '[a-ij-rs-z]' 2>/dev/null`" in
2959                     rs) up='[A-IJ-RS-Z]'
2960                         low='[a-ij-rs-z]'
2961                         ;;
2962                     esac
2963                 fi
2964                 if test "X$up" = X -o "X$low" = X; then
2965                     case "`echo RS | $tr A-IJ-RS-Z a-ij-rs-z 2>/dev/null`" in
2966                     rs) up='A-IJ-RS-Z'
2967                         low='a-ij-rs-z'
2968                         ;;
2969                     esac
2970                 fi
2971                 ;;
2972             esac
2973         fi
2974 esac
2975 case "`echo RS | $tr \"$up\" \"$low\" 2>/dev/null`" in
2976 rs)
2977     echo "Using $up and $low to convert case." >&4
2978     ;;
2979 *)
2980     echo "I don't know how to translate letters from upper to lower case." >&4
2981     echo "Your tr is not acting any way I know of." >&4
2982     exit 1
2983     ;;
2984 esac
2985 : set up the translation script tr, must be called with ./tr of course
2986 cat >tr <<EOSC
2987 $startsh
2988 case "\$1\$2" in
2989 '[A-Z][a-z]') exec $tr '$up' '$low';;
2990 '[a-z][A-Z]') exec $tr '$low' '$up';;
2991 esac
2992 exec $tr "\$@"
2993 EOSC
2994 chmod +x tr
2995 $eunicefix tr
2996
2997 : Try to determine whether config.sh was made on this system
2998 case "$config_sh" in
2999 '')
3000 myuname=`$uname -a 2>/dev/null`
3001 $test -z "$myuname" && myuname=`hostname 2>/dev/null`
3002 # tr '[A-Z]' '[a-z]' would not work in EBCDIC
3003 # because the A-Z/a-z are not consecutive.
3004 myuname=`echo $myuname | $sed -e 's/^[^=]*=//' -e 's/\///g' | \
3005         ./tr '[A-Z]' '[a-z]' | $tr $trnl ' '`
3006 newmyuname="$myuname"
3007 dflt=n
3008 case "$knowitall" in
3009 '')
3010         if test -f ../config.sh; then
3011                 if $contains myuname= ../config.sh >/dev/null 2>&1; then
3012                         eval "`grep myuname= ../config.sh`"
3013                 fi
3014                 if test "X$myuname" = "X$newmyuname"; then
3015                         dflt=y
3016                 fi
3017         fi
3018         ;;
3019 *) dflt=y;;
3020 esac
3021
3022 : Get old answers from old config file if Configure was run on the
3023 : same system, otherwise use the hints.
3024 hint=default
3025 cd ..
3026 if test -f config.sh; then
3027         echo " "
3028         rp="I see a config.sh file.  Shall I use it to set the defaults?"
3029         . UU/myread
3030         case "$ans" in
3031         n*|N*) echo "OK, I'll ignore it."
3032                 mv config.sh config.sh.old
3033                 myuname="$newmyuname"
3034                 ;;
3035         *)  echo "Fetching default answers from your old config.sh file..." >&4
3036                 tmp_n="$n"
3037                 tmp_c="$c"
3038                 tmp_sh="$sh"
3039                 . ./config.sh
3040                 cp config.sh UU
3041                 n="$tmp_n"
3042                 c="$tmp_c"
3043                 : Older versions did not always set $sh.  Catch re-use of such
3044                 : an old config.sh.
3045                 case "$sh" in
3046                 '') sh="$tmp_sh" ;;
3047                 esac
3048                 hint=previous
3049                 ;;
3050         esac
3051 fi
3052 . ./UU/checkcc
3053 if test ! -f config.sh; then
3054         $cat <<EOM
3055
3056 First time through, eh?  I have some defaults handy for some systems
3057 that need some extra help getting the Configure answers right:
3058
3059 EOM
3060         (cd $src/hints; ls -C *.sh) | $sed 's/\.sh/   /g' >&4
3061         dflt=''
3062         : Half the following guesses are probably wrong... If you have better
3063         : tests or hints, please send them to perlbug@perl.org
3064         : The metaconfig authors would also appreciate a copy...
3065         $test -f /irix && osname=irix
3066         $test -f /xenix && osname=sco_xenix
3067         $test -f /dynix && osname=dynix
3068         $test -f /dnix && osname=dnix
3069         $test -f /lynx.os && osname=lynxos
3070         $test -f /unicos && osname=unicos && osvers=`$uname -r`
3071         $test -f /unicosmk && osname=unicosmk && osvers=`$uname -r`
3072         $test -f /unicosmk.ar && osname=unicosmk && osvers=`$uname -r`
3073         $test -f /bin/mips && /bin/mips && osname=mips
3074         $test -d /NextApps && set X `hostinfo | grep 'NeXT Mach.*:' | \
3075                 $sed -e 's/://' -e 's/\./_/'` && osname=next && osvers=$4
3076         $test -d /usr/apollo/bin && osname=apollo
3077         $test -f /etc/saf/_sactab && osname=svr4
3078         $test -d /usr/include/minix && osname=minix
3079         $test -f /system/gnu_library/bin/ar.pm && osname=vos
3080         if $test -d /MachTen -o -d /MachTen_Folder; then
3081                 osname=machten
3082                 if $test -x /sbin/version; then
3083                         osvers=`/sbin/version | $awk '{print $2}' |
3084                         $sed -e 's/[A-Za-z]$//'`
3085                 elif $test -x /usr/etc/version; then
3086                         osvers=`/usr/etc/version | $awk '{print $2}' |
3087                         $sed -e 's/[A-Za-z]$//'`
3088                 else
3089                         osvers="$2.$3"
3090                 fi
3091         fi
3092
3093         $test -f /sys/posix.dll &&
3094                 $test -f /usr/bin/what &&
3095                 set X `/usr/bin/what /sys/posix.dll` &&
3096                 $test "$3" = UWIN &&
3097                 osname=uwin &&
3098                 osvers="$5"
3099
3100         if $test -f $uname; then
3101                 set X $myuname
3102                 shift
3103
3104                 case "$5" in
3105                 fps*) osname=fps ;;
3106                 mips*)
3107                         case "$4" in
3108                         umips) osname=umips ;;
3109                         *) osname=mips ;;
3110                         esac;;
3111                 [23]100) osname=mips ;;
3112                 next*) osname=next ;;
3113                 i386*)
3114                         tmp=`/bin/uname -X 2>/dev/null|awk '/3\.2v[45]/{ print $(NF) }'`
3115                         if $test "$tmp" != "" -a "$3" = "3.2" -a -f '/etc/systemid'; then
3116                                 osname='sco'
3117                                 osvers=$tmp
3118                         elif $test -f /etc/kconfig; then
3119                                 osname=isc
3120                                 if test "$lns" = "$ln -s"; then
3121                                         osvers=4
3122                                 elif $contains _SYSV3 /usr/include/stdio.h > /dev/null 2>&1 ; then
3123                                         osvers=3
3124                                 elif $contains _POSIX_SOURCE /usr/include/stdio.h > /dev/null 2>&1 ; then
3125                                         osvers=2
3126                                 fi
3127                         fi
3128                         tmp=''
3129                         ;;
3130                 pc*)
3131                         if test -n "$DJGPP"; then
3132                                 osname=dos
3133                                 osvers=djgpp
3134                         fi
3135                         ;;
3136                 esac
3137
3138                 case "$1" in
3139                 aix) osname=aix
3140                         tmp=`( (oslevel) 2>/dev/null || echo "not found") 2>&1`
3141                         case "$tmp" in
3142                         # oslevel can fail with:
3143                         # oslevel: Unable to acquire lock.
3144                         *not\ found) osvers="$4"."$3" ;;
3145                         '<3240'|'<>3240') osvers=3.2.0 ;;
3146                         '=3240'|'>3240'|'<3250'|'<>3250') osvers=3.2.4 ;;
3147                         '=3250'|'>3250') osvers=3.2.5 ;;
3148                         *) osvers=$tmp;;
3149                         esac
3150                         ;;
3151                 bsd386) osname=bsd386
3152                         osvers=`$uname -r`
3153                         ;;
3154                 cygwin*) osname=cygwin
3155                         osvers="$3"
3156                         ;;
3157                 *dc.osx) osname=dcosx
3158                         osvers="$3"
3159                         ;;
3160                 dnix) osname=dnix
3161                         osvers="$3"
3162                         ;;
3163                 domainos) osname=apollo
3164                         osvers="$3"
3165                         ;;
3166                 dgux)   osname=dgux
3167                         osvers="$3"
3168                         ;;
3169                 dragonfly) osname=dragonfly
3170                         osvers="$3"
3171                         ;;
3172                 dynixptx*) osname=dynixptx
3173                         osvers=`echo "$4"|sed 's/^v//'`
3174                         ;;
3175                 freebsd) osname=freebsd
3176                         osvers="$3" ;;
3177                 genix)  osname=genix ;;
3178                 gnu)    osname=gnu
3179                         osvers="$3" ;;
3180                 hp*)    osname=hpux
3181                         osvers=`echo "$3" | $sed 's,.*\.\([0-9]*\.[0-9]*\),\1,'`
3182                         ;;
3183                 irix*)  osname=irix
3184                         case "$3" in
3185                         4*) osvers=4 ;;
3186                         5*) osvers=5 ;;
3187                         *)      osvers="$3" ;;
3188                         esac
3189                         ;;
3190                 linux)  osname=linux
3191                         case "$3" in
3192                         *)      osvers="$3" ;;
3193                         esac
3194                         ;;
3195                 MiNT)   osname=mint
3196                         ;;
3197                 netbsd*) osname=netbsd
3198                         osvers="$3"
3199                         ;;
3200                 news-os) osvers="$3"
3201                         case "$3" in
3202                         4*) osname=newsos4 ;;
3203                         *) osname=newsos ;;
3204                         esac
3205                         ;;
3206                 next*) osname=next ;;
3207                 nonstop-ux) osname=nonstopux ;;
3208                 openbsd) osname=openbsd
3209                         osvers="$3"
3210                         ;;
3211                 os2)    osname=os2
3212                         osvers="$4"
3213                         ;;
3214                 POSIX-BC | posix-bc ) osname=posix-bc
3215                         osvers="$3"
3216                         ;;
3217                 powerux | power_ux | powermax_os | powermaxos | \
3218                 powerunix | power_unix) osname=powerux
3219                         osvers="$3"
3220                         ;;
3221                 qnx) osname=qnx
3222                         osvers="$4"
3223                         ;;
3224                 solaris) osname=solaris
3225                         case "$3" in
3226                         5*) osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3227                         *)      osvers="$3" ;;
3228                         esac
3229                         ;;
3230                 sunos) osname=sunos
3231                         case "$3" in
3232                         5*) osname=solaris
3233                                 osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3234                         *)      osvers="$3" ;;
3235                         esac
3236                         ;;
3237                 titanos) osname=titanos
3238                         case "$3" in
3239                         1*) osvers=1 ;;
3240                         2*) osvers=2 ;;
3241                         3*) osvers=3 ;;
3242                         4*) osvers=4 ;;
3243                         *)      osvers="$3" ;;
3244                         esac
3245                         ;;
3246                 ultrix) osname=ultrix
3247                         osvers="$3"
3248                         ;;
3249                 osf1|mls+)      case "$5" in
3250                                 alpha)
3251                                         osname=dec_osf
3252                                         osvers=`sizer -v | awk -FUNIX '{print $2}' | awk '{print $1}' |  tr '[A-Z]' '[a-z]' | sed 's/^[xvt]//'`
3253                                         case "$osvers" in
3254                                         [1-9].[0-9]*) ;;
3255                                         *) osvers=`echo "$3" | sed 's/^[xvt]//'` ;;
3256                                         esac
3257                                         ;;
3258                         hp*)    osname=hp_osf1  ;;
3259                         mips)   osname=mips_osf1 ;;
3260                         esac
3261                         ;;
3262                 # UnixWare 7.1.2 is known as Open UNIX 8
3263                 openunix|unixware) osname=svr5
3264                         osvers="$4"
3265                         ;;
3266                 uts)    osname=uts
3267                         osvers="$3"
3268                         ;;
3269                 vos) osvers="$3"
3270                         ;;
3271                 $2) case "$osname" in
3272                         *isc*) ;;
3273                         *freebsd*) ;;
3274                         svr*)
3275                                 : svr4.x or possibly later
3276                                 case "svr$3" in
3277                                 ${osname}*)
3278                                         osname=svr$3
3279                                         osvers=$4
3280                                         ;;
3281                                 esac
3282                                 case "$osname" in
3283                                 svr4.0)
3284                                         : Check for ESIX
3285                                         if test -f /stand/boot ; then
3286                                                 eval `grep '^INITPROG=[a-z/0-9]*$' /stand/boot`
3287                                                 if test -n "$INITPROG" -a -f "$INITPROG"; then
3288                         isesix=`strings -a $INITPROG|grep 'ESIX SYSTEM V/386 Release 4.0'`
3289                                                         if test -n "$isesix"; then
3290                                                                 osname=esix4
3291                                                         fi
3292                                                 fi
3293                                         fi
3294                                         ;;
3295                                 esac
3296                                 ;;
3297                         *)      if test -f /etc/systemid; then
3298                                         osname=sco
3299                                         set `echo $3 | $sed 's/\./ /g'` $4
3300                                         if $test -f $src/hints/sco_$1_$2_$3.sh; then
3301                                                 osvers=$1.$2.$3
3302                                         elif $test -f $src/hints/sco_$1_$2.sh; then
3303                                                 osvers=$1.$2
3304                                         elif $test -f $src/hints/sco_$1.sh; then
3305                                                 osvers=$1
3306                                         fi
3307                                 else
3308                                         case "$osname" in
3309                                         '') : Still unknown.  Probably a generic Sys V.
3310                                                 osname="sysv"
3311                                                 osvers="$3"
3312                                                 ;;
3313                                         esac
3314                                 fi
3315                                 ;;
3316                         esac
3317                         ;;
3318                 *)      case "$osname" in
3319                         '') : Still unknown.  Probably a generic BSD.
3320                                 osname="$1"
3321                                 osvers="$3"
3322                                 ;;
3323                         esac
3324                         ;;
3325                 esac
3326         else
3327                 if test -f /vmunix -a -f $src/hints/news_os.sh; then
3328                         (what /vmunix | UU/tr '[A-Z]' '[a-z]') > UU/kernel.what 2>&1
3329                         if $contains news-os UU/kernel.what >/dev/null 2>&1; then
3330                                 osname=news_os
3331                         fi
3332                         $rm -f UU/kernel.what
3333                 elif test -d c:/. -o -n "$is_os2" ; then
3334                         set X $myuname
3335                         osname=os2
3336                         osvers="$5"
3337                 fi
3338         fi
3339
3340         case "$targetarch" in
3341         '') ;;
3342         *)  hostarch=$osname
3343             osname=`echo $targetarch|sed 's,^[^-]*-,,'`
3344             osvers=''
3345             ;;
3346         esac
3347
3348         : Now look for a hint file osname_osvers, unless one has been
3349         : specified already.
3350         case "$hintfile" in
3351         ''|' ')
3352                 file=`echo "${osname}_${osvers}" | $sed -e 's%\.%_%g' -e 's%_$%%'`
3353                 : Also try without trailing minor version numbers.
3354                 xfile=`echo $file | $sed -e 's%_[^_]*$%%'`
3355                 xxfile=`echo $xfile | $sed -e 's%_[^_]*$%%'`
3356                 xxxfile=`echo $xxfile | $sed -e 's%_[^_]*$%%'`
3357                 xxxxfile=`echo $xxxfile | $sed -e 's%_[^_]*$%%'`
3358                 case "$file" in
3359                 '') dflt=none ;;
3360                 *)  case "$osvers" in
3361                         '') dflt=$file
3362                                 ;;
3363                         *)  if $test -f $src/hints/$file.sh ; then
3364                                         dflt=$file
3365                                 elif $test -f $src/hints/$xfile.sh ; then
3366                                         dflt=$xfile
3367                                 elif $test -f $src/hints/$xxfile.sh ; then
3368                                         dflt=$xxfile
3369                                 elif $test -f $src/hints/$xxxfile.sh ; then
3370                                         dflt=$xxxfile
3371                                 elif $test -f $src/hints/$xxxxfile.sh ; then
3372                                         dflt=$xxxxfile
3373                                 elif $test -f "$src/hints/${osname}.sh" ; then
3374                                         dflt="${osname}"
3375                                 else
3376                                         dflt=none
3377                                 fi
3378                                 ;;
3379                         esac
3380                         ;;
3381                 esac
3382                 if $test -f Policy.sh ; then
3383                         case "$dflt" in
3384                         *Policy*) ;;
3385                         none) dflt="Policy" ;;
3386                         *) dflt="Policy $dflt" ;;
3387                         esac
3388                 fi
3389                 ;;
3390         *)
3391                 dflt=`echo $hintfile | $sed 's/\.sh$//'`
3392                 ;;
3393         esac
3394
3395         if $test -f Policy.sh ; then
3396                 $cat <<EOM
3397
3398 There's also a Policy hint file available, which should make the
3399 site-specific (policy) questions easier to answer.
3400 EOM
3401
3402         fi
3403
3404         $cat <<EOM
3405
3406 You may give one or more space-separated answers, or "none" if appropriate.
3407 If you have a handcrafted Policy.sh file or a Policy.sh file generated by a
3408 previous run of Configure, you may specify it as well as or instead of
3409 OS-specific hints.  If hints are provided for your OS, you should use them:
3410 although Perl can probably be built without hints on many platforms, using
3411 hints often improve performance and may enable features that Configure can't
3412 set up on its own. If there are no hints that match your OS, specify "none";
3413 DO NOT give a wrong version or a wrong OS.
3414
3415 EOM
3416
3417         rp="Which of these apply, if any?"
3418         . UU/myread
3419         tans=$ans
3420         for file in $tans; do
3421                 if $test X$file = XPolicy -a -f Policy.sh; then
3422                         . Policy.sh
3423                         $cat Policy.sh >> UU/config.sh
3424                 elif $test -f $src/hints/$file.sh; then
3425                         . $src/hints/$file.sh
3426                         $cat $src/hints/$file.sh >> UU/config.sh
3427                 elif $test X"$tans" = X -o X"$tans" = Xnone ; then
3428                         : nothing
3429                 else
3430                         : Give one chance to correct a possible typo.
3431                         echo "$file.sh does not exist"
3432                         dflt=$file
3433                         rp="hint to use instead?"
3434                         . UU/myread
3435                         for file in $ans; do
3436                                 if $test -f "$src/hints/$file.sh"; then
3437                                         . $src/hints/$file.sh
3438                                         $cat $src/hints/$file.sh >> UU/config.sh
3439                                 elif $test X$ans = X -o X$ans = Xnone ; then
3440                                         : nothing
3441                                 else
3442                                         echo "$file.sh does not exist -- ignored."
3443                                 fi
3444                         done
3445                 fi
3446         done
3447
3448         hint=recommended
3449         : Remember our hint file for later.
3450         if $test -f "$src/hints/$file.sh" ; then
3451                 hintfile="$file"
3452         else
3453                 hintfile=''
3454         fi
3455 fi
3456 cd UU
3457 ;;
3458 *)
3459         echo " "
3460         echo "Fetching default answers from $config_sh..." >&4
3461         tmp_n="$n"
3462         tmp_c="$c"
3463         cd ..
3464         cp $config_sh config.sh 2>/dev/null
3465         chmod +w config.sh
3466         . ./config.sh
3467         cd UU
3468         cp ../config.sh .
3469         n="$tmp_n"
3470         c="$tmp_c"
3471         hint=previous
3472         ;;
3473 esac
3474 test "$override" && . ./optdef.sh
3475
3476 : Restore computed paths
3477 for file in $loclist $trylist; do
3478         eval $file="\$_$file"
3479 done
3480
3481 cat << EOM
3482
3483 Configure uses the operating system name and version to set some defaults.
3484 The default value is probably right if the name rings a bell. Otherwise,
3485 since spelling matters for me, either accept the default or answer "none"
3486 to leave it blank.
3487
3488 EOM
3489 case "$osname" in
3490         ''|' ')
3491                 case "$hintfile" in
3492                 ''|' '|none) dflt=none ;;
3493                 *)  dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/_.*$//'` ;;
3494                 esac
3495                 ;;
3496         *) dflt="$osname" ;;
3497 esac
3498 rp="Operating system name?"
3499 . ./myread
3500 case "$ans" in
3501 none)  osname='' ;;
3502 *) osname=`echo "$ans" | $sed -e 's/[   ][      ]*/_/g' | ./tr '[A-Z]' '[a-z]'`;;
3503 esac
3504 echo " "
3505 case "$osvers" in
3506         ''|' ')
3507                 case "$hintfile" in
3508                 ''|' '|none) dflt=none ;;
3509                 *)      dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/^[^_]*//'`
3510                         dflt=`echo $dflt | $sed -e 's/^_//' -e 's/_/./g'`
3511                         case "$dflt" in
3512                         ''|' ') dflt=none ;;
3513                         esac
3514                         ;;
3515                 esac
3516                 ;;
3517         *) dflt="$osvers" ;;
3518 esac
3519 rp="Operating system version?"
3520 . ./myread
3521 case "$ans" in
3522 none)  osvers='' ;;
3523 *) osvers="$ans" ;;
3524 esac
3525
3526
3527 . ./posthint.sh
3528
3529 : who configured the system
3530 cf_time=`LC_ALL=C; LANGUAGE=C; export LC_ALL; export LANGUAGE; $date 2>&1`
3531 case "$cf_by" in
3532 "")
3533         cf_by=`(logname) 2>/dev/null`
3534         case "$cf_by" in
3535         "")
3536                 cf_by=`(whoami) 2>/dev/null`
3537                 case "$cf_by" in
3538                 "") cf_by=unknown ;;
3539                 esac ;;
3540         esac ;;
3541 esac
3542
3543 : decide how portable to be.  Allow command line overrides.
3544 case "$d_portable" in
3545 "$undef") ;;
3546 *)      d_portable="$define" ;;
3547 esac
3548
3549 : set up shell script to do ~ expansion
3550 cat >filexp <<EOSS
3551 $startsh
3552 : expand filename
3553 case "\$1" in
3554  ~/*|~)
3555         echo \$1 | $sed "s|~|\${HOME-\$LOGDIR}|"
3556         ;;
3557  ~*)
3558         if $test -f /bin/csh; then
3559                 /bin/csh -f -c "glob \$1"
3560                 failed=\$?
3561                 echo ""
3562                 exit \$failed
3563         else
3564                 name=\`$expr x\$1 : '..\([^/]*\)'\`
3565                 dir=\`$sed -n -e "/^\${name}:/{s/^[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:\([^:]*\).*"'\$'"/\1/" -e p -e q -e '}' </etc/passwd\`
3566                 if $test ! -d "\$dir"; then
3567                         me=\`basename \$0\`
3568                         echo "\$me: can't locate home directory for: \$name" >&2
3569                         exit 1
3570                 fi
3571                 case "\$1" in
3572                 */*)
3573                         echo \$dir/\`$expr x\$1 : '..[^/]*/\(.*\)'\`
3574                         ;;
3575                 *)
3576                         echo \$dir
3577                         ;;
3578                 esac
3579         fi
3580         ;;
3581 *)
3582         echo \$1
3583         ;;
3584 esac
3585 EOSS
3586 chmod +x filexp
3587 $eunicefix filexp
3588
3589 : now set up to get a file name
3590 cat <<EOS >getfile
3591 $startsh
3592 EOS
3593 cat <<'EOSC' >>getfile
3594 tilde=''
3595 fullpath=''
3596 already=''
3597 skip=''
3598 none_ok=''
3599 exp_file=''
3600 nopath_ok=''
3601 orig_rp="$rp"
3602 orig_dflt="$dflt"
3603 case "$gfpth" in
3604 '') gfpth='.' ;;
3605 esac
3606
3607 case "$fn" in
3608 *\(*)
3609         : getfile will accept an answer from the comma-separated list
3610         : enclosed in parentheses even if it does not meet other criteria.
3611         expr "$fn" : '.*(\(.*\)).*' | $tr ',' $trnl >getfile.ok
3612         fn=`echo $fn | sed 's/(.*)//'`
3613         ;;
3614 esac
3615
3616 case "$fn" in
3617 *:*)
3618         loc_file=`expr $fn : '.*:\(.*\)'`
3619         fn=`expr $fn : '\(.*\):.*'`
3620         ;;
3621 esac
3622
3623 case "$fn" in
3624 *~*) tilde=true;;
3625 esac
3626 case "$fn" in
3627 */*) fullpath=true;;
3628 esac
3629 case "$fn" in
3630 *+*) skip=true;;
3631 esac
3632 case "$fn" in
3633 *n*) none_ok=true;;
3634 esac
3635 case "$fn" in
3636 *e*) exp_file=true;;
3637 esac
3638 case "$fn" in
3639 *p*) nopath_ok=true;;
3640 esac
3641
3642 case "$fn" in
3643 *f*) type='File';;
3644 *d*) type='Directory';;
3645 *l*) type='Locate';;
3646 esac
3647
3648 what="$type"
3649 case "$what" in
3650 Locate) what='File';;
3651 esac
3652
3653 case "$exp_file" in
3654 '')
3655         case "$d_portable" in
3656         "$define") ;;
3657         *) exp_file=true;;
3658         esac
3659         ;;
3660 esac
3661
3662 cd ..
3663 while test "$type"; do
3664         redo=''
3665         rp="$orig_rp"
3666         dflt="$orig_dflt"
3667         case "$tilde" in
3668         true) rp="$rp (~name ok)";;
3669         esac
3670         . UU/myread
3671         if test -f UU/getfile.ok && \
3672                 $contains "^$ans\$" UU/getfile.ok >/dev/null 2>&1
3673         then
3674                 value="$ans"
3675                 ansexp="$ans"
3676                 break
3677         fi
3678         case "$ans" in
3679         none)
3680                 value=''
3681                 ansexp=''
3682                 case "$none_ok" in
3683                 true) type='';;
3684                 esac
3685                 ;;
3686         *)
3687                 case "$tilde" in
3688                 '') value="$ans"
3689                         ansexp="$ans";;
3690                 *)
3691                         value=`UU/filexp $ans`
3692                         case $? in
3693                         0)
3694                                 if test "$ans" != "$value"; then
3695                                         echo "(That expands to $value on this system.)"
3696                                 fi
3697                                 ;;
3698                         *) value="$ans";;
3699                         esac
3700                         ansexp="$value"
3701                         case "$exp_file" in
3702                         '') value="$ans";;
3703                         esac
3704                         ;;
3705                 esac
3706                 case "$fullpath" in
3707                 true)
3708                         case "$ansexp" in
3709                         /*) value="$ansexp" ;;
3710                         [a-zA-Z]:/*) value="$ansexp" ;;
3711                         *)
3712                                 redo=true
3713                                 case "$already" in
3714                                 true)
3715                                 echo "I shall only accept a full path name, as in /bin/ls." >&4
3716                                 echo "Use a ! shell escape if you wish to check pathnames." >&4
3717                                         ;;
3718                                 *)
3719                                 echo "Please give a full path name, starting with slash." >&4
3720                                         case "$tilde" in
3721                                         true)
3722                                 echo "Note that using ~name is ok provided it expands well." >&4
3723                                                 already=true
3724                                                 ;;
3725                                         esac
3726                                 esac
3727                                 ;;
3728                         esac
3729                         ;;
3730                 esac
3731                 case "$redo" in
3732                 '')
3733                         case "$type" in
3734                         File)
3735                                 for fp in $gfpth; do
3736                                         if test "X$fp" = X.; then
3737                                             pf="$ansexp"
3738                                         else    
3739                                             pf="$fp/$ansexp"
3740                                         fi
3741                                         if test -f "$pf"; then
3742                                                 type=''
3743                                         elif test -r "$pf" || (test -h "$pf") >/dev/null 2>&1
3744                                         then
3745                                                 echo "($value is not a plain file, but that's ok.)"
3746                                                 type=''
3747                                         fi
3748                                         if test X"$type" = X; then
3749                                             value="$pf"
3750                                             break
3751                                         fi
3752                                 done
3753                                 ;;
3754                         Directory)
3755                                 for fp in $gfpth; do
3756                                         if test "X$fp" = X.; then
3757                                             dir="$ans"
3758                                             direxp="$ansexp"
3759                                         else    
3760                                             dir="$fp/$ansexp"
3761                                             direxp="$fp/$ansexp"
3762                                         fi
3763                                         if test -d "$direxp"; then
3764                                                 type=''
3765                                                 value="$dir"
3766                                                 break
3767                                         fi
3768                                 done
3769                                 ;;
3770                         Locate)
3771                                 if test -d "$ansexp"; then
3772                                         echo "(Looking for $loc_file in directory $value.)"
3773                                         value="$value/$loc_file"
3774                                         ansexp="$ansexp/$loc_file"
3775                                 fi
3776                                 if test -f "$ansexp"; then
3777                                         type=''
3778                                 fi
3779                                 case "$nopath_ok" in
3780                                 true)   case "$value" in
3781                                         */*) ;;
3782                                         *)      echo "Assuming $value will be in people's path."
3783                                                 type=''
3784                                                 ;;
3785                                         esac
3786                                         ;;
3787                                 esac
3788                                 ;;
3789                         esac
3790
3791                         case "$skip" in
3792                         true) type='';
3793                         esac
3794
3795                         case "$type" in
3796                         '') ;;
3797                         *)
3798                                 if test "$fastread" = yes; then
3799                                         dflt=y
3800                                 else
3801                                         dflt=n
3802                                 fi
3803                                 rp="$what $value doesn't exist.  Use that name anyway?"
3804                                 . UU/myread
3805                                 dflt=''
3806                                 case "$ans" in
3807                                 y*) type='';;
3808                                 *) echo " ";;
3809                                 esac
3810                                 ;;
3811                         esac
3812                         ;;
3813                 esac
3814                 ;;
3815         esac
3816 done
3817 cd UU
3818 ans="$value"
3819 rp="$orig_rp"
3820 dflt="$orig_dflt"
3821 rm -f getfile.ok
3822 test "X$gfpthkeep" != Xy && gfpth=""
3823 EOSC
3824
3825 : determine root of directory hierarchy where package will be installed.
3826 case "$prefix" in
3827 '')
3828         dflt=`./loc . /usr/local /usr/local /local /opt /usr`
3829         ;;
3830 *?/)
3831         dflt=`echo "$prefix" | sed 's/.$//'`
3832         ;;
3833 *)
3834         dflt="$prefix"
3835         ;;
3836 esac
3837 $cat <<EOM
3838
3839 By default, $package will be installed in $dflt/bin, manual pages
3840 under $dflt/man, etc..., i.e. with $dflt as prefix for all
3841 installation directories. Typically this is something like /usr/local.
3842 If you wish to have binaries under /usr/bin but other parts of the
3843 installation under /usr/local, that's ok: you will be prompted
3844 separately for each of the installation directories, the prefix being
3845 only used to set the defaults.
3846
3847 EOM
3848 fn=d~
3849 rp='Installation prefix to use?'
3850 . ./getfile
3851 oldprefix=''
3852 case "$prefix" in
3853 '') ;;
3854 *)
3855         case "$ans" in
3856         "$prefix") ;;
3857         *) oldprefix="$prefix";;
3858         esac
3859         ;;
3860 esac
3861 prefix="$ans"
3862 prefixexp="$ansexp"
3863
3864 case "$afsroot" in
3865 '')     afsroot=/afs ;;
3866 *)      afsroot=$afsroot ;;
3867 esac
3868
3869 : is AFS running?
3870 echo " "
3871 case "$afs" in
3872 $define|true)   afs=true ;;
3873 $undef|false)   afs=false ;;
3874 *)      if test -d $afsroot; then
3875                 afs=true
3876         else
3877                 afs=false
3878         fi
3879         ;;
3880 esac
3881 if $afs; then
3882         echo "AFS may be running... I'll be extra cautious then..." >&4
3883 else
3884         echo "AFS does not seem to be running..." >&4
3885 fi
3886
3887 : determine installation prefix for where package is to be installed.
3888 if $afs; then 
3889 $cat <<EOM
3890
3891 Since you are running AFS, I need to distinguish the directory in which
3892 files will reside from the directory in which they are installed (and from
3893 which they are presumably copied to the former directory by occult means).
3894
3895 EOM
3896         case "$installprefix" in
3897         '') dflt=`echo $prefix | sed 's#^/afs/#/afs/.#'`;;
3898         *) dflt="$installprefix";;
3899         esac
3900 else
3901 $cat <<EOM
3902
3903 In some special cases, particularly when building $package for distribution,
3904 it is convenient to distinguish the directory in which files should be
3905 installed from the directory ($prefix) in which they will
3906 eventually reside.  For most users, these two directories are the same.
3907
3908 EOM
3909         case "$installprefix" in
3910         '') dflt=$prefix ;;
3911         *) dflt=$installprefix;;
3912         esac
3913 fi
3914 fn=d~
3915 rp='What installation prefix should I use for installing files?'
3916 . ./getfile
3917 installprefix="$ans"
3918 installprefixexp="$ansexp"
3919
3920 : Perform the prefixexp/installprefixexp correction if necessary
3921 cat <<EOS >installprefix
3922 $startsh
3923 EOS
3924 cat <<'EOSC' >>installprefix
3925 : Change installation prefix, if necessary.
3926 if $test X"$prefix" != X"$installprefix"; then
3927     eval "install${prefixvar}=\`echo \$${prefixvar}exp | sed \"s#^\$prefixexp#\$installprefixexp#\"\`"
3928 else
3929     eval "install${prefixvar}=\"\$${prefixvar}exp\""
3930 fi
3931 EOSC
3932 chmod +x installprefix
3933 $eunicefix installprefix
3934
3935 : Set variables such as privlib and privlibexp from the output of ./getfile
3936 : performing the prefixexp/installprefixexp correction if necessary.
3937 cat <<EOS >setprefixvar
3938 $startsh
3939 EOS
3940 cat <<'EOSC' >>setprefixvar
3941 eval "${prefixvar}=\"\$ans\""
3942 eval "${prefixvar}exp=\"\$ansexp\""
3943 . ./installprefix
3944 EOSC
3945 chmod +x setprefixvar
3946 $eunicefix setprefixvar
3947
3948 : set up the script used to warn in case of inconsistency
3949 cat <<EOS >whoa
3950 $startsh
3951 EOS
3952 cat <<'EOSC' >>whoa
3953 dflt=y
3954 case "$hint" in
3955     recommended)
3956         case "$hintfile" in
3957         '')     echo "The $hint value for \$$var on this machine was \"$was\"!" >&4
3958                 ;;
3959         *)      echo "Hmm.  Based on the hints in hints/$hintfile.sh, " >&4
3960                 echo "the $hint value for \$$var on this machine was \"$was\"!" >&4
3961                 ;;
3962         esac
3963         ;;
3964     *)  echo " "
3965         echo "*** WHOA THERE!!! ***" >&4
3966         echo "    The $hint value for \$$var on this machine was \"$was\"!" >&4
3967         ;;
3968 esac
3969 rp="    Keep the $hint value?"
3970 . ./myread
3971 case "$ans" in
3972 y) td=$was; tu=$was;;
3973 esac
3974 EOSC
3975
3976 : function used to set $1 to $val
3977 setvar='var=$1; eval "was=\$$1"; td=$define; tu=$undef;
3978 case "$val$was" in
3979 $define$undef) . ./whoa; eval "$var=\$td";;
3980 $undef$define) . ./whoa; eval "$var=\$tu";;
3981 *) eval "$var=$val";;
3982 esac'
3983
3984 case "$usesocks" in
3985 $define|true|[yY]*)     dflt='y';;
3986 *) dflt='n';;
3987 esac
3988 cat <<EOM
3989
3990 Perl can be built to use the SOCKS proxy protocol library.  To do so,
3991 Configure must be run with -Dusesocks.  If you use SOCKS you also need
3992 to use the PerlIO abstraction layer, this will be implicitly selected.
3993
3994 If this doesn't make any sense to you, just accept the default '$dflt'.
3995 EOM
3996 rp='Build Perl for SOCKS?'
3997 . ./myread
3998 case "$ans" in
3999 y|Y)    val="$define" ;;     
4000 *)      val="$undef" ;;
4001 esac
4002 set usesocks
4003 eval $setvar
4004
4005 case "$usesocks" in
4006 $define|true|[yY]*) useperlio="$define";;
4007 esac
4008
4009 case "$useperlio" in
4010 $define|true|[yY]*|'')  dflt='y';;
4011 *) dflt='n';;
4012 esac
4013 cat <<EOM
4014
4015 Previous version of $package used the standard IO mechanisms as
4016 defined in <stdio.h>.  Versions 5.003_02 and later of $package allow
4017 alternate IO mechanisms via the PerlIO abstraction layer, but the
4018 stdio mechanism is still available if needed.  The abstraction layer
4019 can use AT&T's sfio (if you already have sfio installed) or regular stdio.
4020 Using PerlIO with sfio may cause problems with some extension modules.
4021
4022 If this doesn't make any sense to you, just accept the default '$dflt'.
4023 EOM
4024 rp='Use the PerlIO abstraction layer?'
4025 . ./myread
4026 case "$ans" in
4027 y|Y) 
4028         val="$define"
4029         ;;
4030 *)      
4031         echo "Ok, doing things the stdio way."
4032         val="$undef"
4033         ;;
4034 esac
4035 set useperlio
4036 eval $setvar 
4037
4038 case "$usesocks" in
4039 $define|true|[yY]*)
4040         case "$useperlio" in
4041         $define|true|[yY]*) ;;
4042         *)      cat >&4 <<EOM
4043
4044 You are using the SOCKS proxy protocol library which means that you
4045 should also use the PerlIO layer.  You may be headed for trouble.
4046
4047 EOM
4048                 ;;
4049         esac
4050         ;;
4051 esac
4052
4053         
4054 : get the patchlevel
4055 echo " "
4056 echo "Getting the current patchlevel..." >&4
4057 if $test -r $rsrc/patchlevel.h;then
4058         revision=`awk '/define[         ]+PERL_REVISION/ {print $3}' $rsrc/patchlevel.h`
4059         patchlevel=`awk '/define[       ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
4060         subversion=`awk '/define[       ]+PERL_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
4061         api_revision=`awk '/define[     ]+PERL_API_REVISION/ {print $3}' $rsrc/patchlevel.h`
4062         api_version=`awk '/define[      ]+PERL_API_VERSION/ {print $3}' $rsrc/patchlevel.h`
4063         api_subversion=`awk '/define[   ]+PERL_API_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
4064         perl_patchlevel=`egrep 'define PERL_PATCHNUM [0-9][0-9]|,"MAINT[0-9][0-9]*"' $rsrc/patchlevel.h|sed 's/[^0-9]//g'`
4065 else
4066         revision=0
4067         patchlevel=0
4068         subversion=0
4069         api_revision=0
4070         api_version=0
4071         api_subversion=0
4072         perl_patchlevel=0
4073         $echo "(You do not have patchlevel.h.  Eek.)"
4074 fi
4075 if $test -r $rsrc/.patch ; then
4076         if $test "X$perl_patchlevel" = "X" || $test "`cat $rsrc/.patch`" -gt "$perl_patchlevel" ; then
4077                 perl_patchlevel=`cat $rsrc/.patch`
4078         fi
4079 fi
4080 : Define a handy string here to avoid duplication in myconfig.SH and configpm.
4081 version_patchlevel_string="version $patchlevel subversion $subversion"
4082 case "$perl_patchlevel" in
4083 0|'') ;;
4084 *) version_patchlevel_string="$version_patchlevel_string patch $perl_patchlevel" ;;
4085 esac
4086
4087 $echo "(You have $package $version_patchlevel_string.)"
4088
4089 case "$osname" in
4090 dos|vms)
4091         : XXX Should be a Configure test for double-dots in filenames.
4092         version=`echo $revision $patchlevel $subversion | \
4093                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
4094         api_versionstring=`echo $api_revision $api_version $api_subversion | \
4095                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
4096         ;;
4097 *)
4098         version=`echo $revision $patchlevel $subversion | \
4099                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
4100         api_versionstring=`echo $api_revision $api_version $api_subversion | \
4101                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
4102         ;;
4103 esac
4104 : Special case the 5.005_xx maintenance series, which used 5.005
4105 : without any subversion label as a subdirectory in $sitelib
4106 if test "${api_revision}${api_version}${api_subversion}" = "550"; then
4107         api_versionstring='5.005'
4108 fi
4109
4110 case "$usethreads" in
4111 $define|true|[yY]*)     dflt='y';;
4112 *)     # Catch case where user specified ithreads or 5005threads but
4113        # forgot -Dusethreads (A.D. 4/2002)
4114        case "$useithreads$use5005threads" in
4115        *$define*)      
4116                 case "$useperlio" in
4117                 "$define")      dflt='y' ;;
4118                 *)              dflt='n' ;;
4119                 esac
4120                 ;;
4121        *)       dflt='n';;
4122        esac
4123        ;;
4124 esac
4125 cat <<EOM
4126
4127 Perl can be built to take advantage of threads on some systems.
4128 To do so, Configure can be run with -Dusethreads.
4129
4130 Note that Perl built with threading support runs slightly slower
4131 and uses more memory than plain Perl. The current implementation
4132 is believed to be stable, but it is fairly new, and so should be
4133 treated with caution.
4134
4135 If this doesn't make any sense to you, just accept the default '$dflt'.
4136 EOM
4137 rp='Build a threading Perl?'
4138 . ./myread
4139 case "$ans" in
4140 y|Y)    val="$define" ;;
4141 *)      val="$undef" ;;
4142 esac
4143 set usethreads
4144 eval $setvar
4145
4146 if $test $patchlevel -lt 9; then
4147     case "$usethreads" in
4148     $define)
4149         $cat <<EOM
4150
4151 Since release 5.6, Perl has had two different threading implementations,
4152 the newer interpreter-based version (ithreads) with one interpreter per
4153 thread, and the older 5.005 version (5005threads).
4154 The 5005threads version is effectively unmaintained and will probably be
4155 removed in Perl 5.10, so there should be no need to build a Perl using it
4156 unless needed for backwards compatibility with some existing 5.005threads
4157 code.
4158
4159 EOM
4160         : Default to ithreads unless overridden on command line or with
4161         : old config.sh
4162         dflt='y'
4163         case "$use5005threads" in
4164                 $define|true|[yY]*) dflt='n';;
4165         esac
4166         case "$useithreads" in
4167                 $undef|false|[nN]*) dflt='n';;
4168         esac
4169         rp='Use the newer interpreter-based ithreads?'
4170         . ./myread
4171         case "$ans" in
4172         y|Y)    val="$define" ;;
4173         *)      val="$undef" ;;
4174         esac
4175         set useithreads
4176         eval $setvar
4177         : Now set use5005threads to the opposite value.
4178         case "$useithreads" in
4179         $define) val="$undef" ;;
4180         *) val="$define" ;;
4181         esac
4182         set use5005threads
4183         eval $setvar
4184         ;;
4185     *)
4186         useithreads="$undef"
4187         use5005threads="$undef"
4188         ;;
4189     esac
4190
4191     case "$useithreads$use5005threads" in
4192     "$define$define")
4193         $cat >&4 <<EOM
4194
4195 You cannot have both the ithreads and the 5.005 threads enabled
4196 at the same time.  Disabling the 5.005 threads since they are
4197 much less stable than the ithreads.
4198
4199 EOM
4200         use5005threads="$undef"
4201         ;;
4202     esac
4203
4204 else
4205 : perl-5.9.x and later
4206
4207     use5005threads="$undef"
4208     case "$usethreads" in
4209     $define)
4210         : Default to ithreads unless overridden on command line or with
4211         : old config.sh
4212         dflt='y'
4213         case "$useithreads" in
4214                 $undef|false|[nN]*) dflt='n';;
4215         esac
4216         rp='Use the newer interpreter-based ithreads?'
4217         . ./myread
4218         case "$ans" in
4219         y|Y)    val="$define" ;;
4220         *)      val="$undef" ;;
4221         esac
4222         set useithreads
4223         eval $setvar
4224         ;;
4225     *)
4226         useithreads="$undef"
4227         ;;
4228     esac
4229
4230 fi
4231
4232 if test X"$usethreads" = "X$define" -a "X$useperlio" = "Xundef"; then
4233         cat >&4 <<EOF
4234 ***
4235 *** To build with ithreads you must also use the PerlIO layer.
4236 *** Cannot continue, aborting.
4237 ***
4238 EOF
4239         exit 1
4240 fi
4241
4242 case "$d_oldpthreads" in
4243 '')     : Configure tests would be welcome here.  For now, assume undef.
4244         val="$undef" ;;
4245 *)      val="$d_oldpthreads" ;;
4246 esac
4247 set d_oldpthreads
4248 eval $setvar
4249
4250
4251 : Look for a hint-file generated 'call-back-unit'.  If the
4252 : user has specified that a threading perl is to be built,
4253 : we may need to set or change some other defaults.
4254 if $test -f usethreads.cbu; then
4255     echo "Your platform has some specific hints regarding threaded builds, using them..."
4256     . ./usethreads.cbu
4257 else
4258     case "$usethreads" in
4259         "$define"|true|[yY]*)
4260                 $cat <<EOM
4261 (Your platform does not have any specific hints for threaded builds.
4262  Assuming POSIX threads, then.)
4263 EOM
4264         ;;
4265     esac
4266 fi
4267
4268 cat <<EOM
4269
4270 Perl can be built so that multiple Perl interpreters can coexist
4271 within the same Perl executable.
4272 EOM
4273
4274 case "$useithreads" in
4275 $define)
4276         cat <<EOM
4277 This multiple interpreter support is required for interpreter-based threads.
4278 EOM
4279         val="$define"
4280         ;;
4281 *)      case "$usemultiplicity" in
4282         $define|true|[yY]*)     dflt='y';;
4283         *) dflt='n';;
4284         esac
4285         echo " "
4286         echo "If this doesn't make any sense to you, just accept the default '$dflt'."
4287         rp='Build Perl for multiplicity?'
4288         . ./myread
4289         case "$ans" in
4290         y|Y)    val="$define" ;;
4291         *)      val="$undef" ;;
4292         esac
4293         ;;
4294 esac
4295 set usemultiplicity
4296 eval $setvar
4297
4298
4299 case "$usemorebits" in
4300 "$define"|true|[yY]*)
4301         use64bitint="$define"
4302         uselongdouble="$define"
4303         usemorebits="$define"
4304         ;;
4305 *)      usemorebits="$undef"
4306         ;;
4307 esac
4308
4309 : make some quick guesses about what we are up against
4310 echo " "
4311 $echo $n "Hmm...  $c"
4312 echo exit 1 >bsd
4313 echo exit 1 >usg
4314 echo exit 1 >v7
4315 echo exit 1 >osf1
4316 echo exit 1 >eunice
4317 echo exit 1 >xenix
4318 echo exit 1 >venix
4319 echo exit 1 >os2
4320 d_bsd="$undef"
4321 $cat /usr/include/signal.h /usr/include/sys/signal.h >foo 2>/dev/null
4322 if test -f /osf_boot || $contains 'OSF/1' /usr/include/ctype.h >/dev/null 2>&1
4323 then
4324         echo "Looks kind of like an OSF/1 system, but we'll see..."
4325         echo exit 0 >osf1
4326 elif test `echo abc | $tr a-z A-Z` = Abc ; then
4327         xxx=`./loc addbib blurfl $pth`
4328         if $test -f $xxx; then
4329         echo "Looks kind of like a USG system with BSD features, but we'll see..."
4330                 echo exit 0 >bsd
4331                 echo exit 0 >usg
4332         else
4333                 if $contains SIGTSTP foo >/dev/null 2>&1 ; then
4334                         echo "Looks kind of like an extended USG system, but we'll see..."
4335                 else
4336                         echo "Looks kind of like a USG system, but we'll see..."
4337                 fi
4338                 echo exit 0 >usg
4339         fi
4340 elif $contains SIGTSTP foo >/dev/null 2>&1 ; then
4341         echo "Looks kind of like a BSD system, but we'll see..."
4342         d_bsd="$define"
4343         echo exit 0 >bsd
4344 else
4345         echo "Looks kind of like a Version 7 system, but we'll see..."
4346         echo exit 0 >v7
4347 fi
4348 case "$eunicefix" in
4349 *unixtovms*)
4350         $cat <<'EOI'
4351 There is, however, a strange, musty smell in the air that reminds me of
4352 something...hmm...yes...I've got it...there's a VMS nearby, or I'm a Blit.
4353 EOI
4354         echo exit 0 >eunice
4355         d_eunice="$define"
4356 : it so happens the Eunice I know will not run shell scripts in Unix format
4357         ;;
4358 *)
4359         echo " "
4360         echo "Congratulations.  You aren't running Eunice."
4361         d_eunice="$undef"
4362         ;;
4363 esac
4364 : Detect OS2.  The p_ variable is set above in the Head.U unit.
4365 : Note that this also -- wrongly -- detects e.g. dos-djgpp, which also uses
4366 : semicolon as a patch separator
4367 case "$p_" in
4368 :) ;;
4369 *)
4370         $cat <<'EOI'
4371 I have the feeling something is not exactly right, however...don't tell me...
4372 lemme think...does HAL ring a bell?...no, of course, you're only running OS/2!
4373 (Or you may be running DOS with DJGPP.)
4374 EOI
4375         echo exit 0 >os2
4376         ;;
4377 esac
4378 if test -f /xenix; then
4379         echo "Actually, this looks more like a XENIX system..."
4380         echo exit 0 >xenix
4381         d_xenix="$define"
4382 else
4383         echo " "
4384         echo "It's not Xenix..."
4385         d_xenix="$undef"
4386 fi
4387 chmod +x xenix
4388 $eunicefix xenix
4389 if test -f /venix; then
4390         echo "Actually, this looks more like a VENIX system..."
4391         echo exit 0 >venix
4392 else
4393         echo " "
4394         if ./xenix; then
4395                 : null
4396         else
4397                 echo "Nor is it Venix..."
4398         fi
4399 fi
4400 chmod +x bsd usg v7 osf1 eunice xenix venix os2
4401 $eunicefix bsd usg v7 osf1 eunice xenix venix os2
4402 $rm -f foo
4403
4404 case "$cc" in
4405 '') dflt=cc;;
4406 *) dflt="$cc";;
4407 esac
4408 rp="Use which C compiler?"
4409 . ./myread
4410 cc="$ans"
4411
4412 : See if they have not cc but they do have gcc
4413 . ./trygcc
4414 : Look for a hint-file generated 'call-back-unit'.  Now that the
4415 : user has specified the compiler, we may need to set or change some
4416 : other defaults.
4417 if $test -f cc.cbu; then
4418     . ./cc.cbu
4419 fi
4420 . ./checkcc
4421
4422 echo " "
4423 echo "Checking for GNU cc in disguise and/or its version number..." >&4
4424 $cat >try.c <<EOM
4425 #include <stdio.h>
4426 int main() {
4427 #if defined(__GNUC__) && !defined(__INTEL_COMPILER)
4428 #ifdef __VERSION__
4429         printf("%s\n", __VERSION__);
4430 #else
4431         printf("%s\n", "1");
4432 #endif
4433 #endif
4434         return(0);
4435 }
4436 EOM
4437 if $cc -o try $ccflags $ldflags try.c; then
4438         gccversion=`$run ./try`
4439         case "$gccversion" in
4440         '') echo "You are not using GNU cc." ;;
4441         *)  echo "You are using GNU cc $gccversion."
4442             ccname=gcc
4443             ;;
4444         esac
4445 else
4446         echo " "
4447         echo "*** WHOA THERE!!! ***" >&4
4448         echo "    Your C compiler \"$cc\" doesn't seem to be working!" >&4
4449         case "$knowitall" in
4450         '')
4451         echo "    You'd better start hunting for one and let me know about it." >&4
4452                 exit 1
4453                 ;;
4454         esac
4455 fi
4456 $rm -f try try.*
4457 case "$gccversion" in
4458 1*) cpp=`./loc gcc-cpp $cpp $pth` ;;
4459 esac
4460 case "$gccversion" in
4461 '') gccosandvers='' ;;
4462 *) gccshortvers=`echo "$gccversion"|sed 's/ .*//'`
4463    gccosandvers=`$cc -v 2>&1|grep '/specs$'|sed "s!.*/[^-/]*-[^-/]*-\([^-/]*\)/$gccshortvers/specs!\1!"`
4464    gccshortvers=''
4465    case "$gccosandvers" in
4466    $osname) gccosandvers='' ;; # linux gccs seem to have no linux osvers, grr
4467    $osname$osvers) ;; # looking good
4468    $osname*) cat <<EOM >&4
4469
4470 *** WHOA THERE!!! ***
4471
4472     Your gcc has not been compiled for the exact release of
4473     your operating system ($gccosandvers versus $osname$osvers).
4474
4475     In general it is a good idea to keep gcc synchronized with
4476     the operating system because otherwise serious problems
4477     may ensue when trying to compile software, like Perl.
4478
4479     I'm trying to be optimistic here, though, and will continue.
4480     If later during the configuration and build icky compilation
4481     problems appear (headerfile conflicts being the most common
4482     manifestation), I suggest reinstalling the gcc to match
4483     your operating system release.
4484
4485 EOM
4486       ;;
4487    *) gccosandvers='' ;; # failed to parse, better be silent
4488    esac
4489    ;;
4490 esac
4491 case "$ccname" in
4492 '') ccname="$cc" ;;
4493 esac
4494
4495 # gcc 3.* complain about adding -Idirectories that they already know about,
4496 # so we will take those off from locincpth.
4497 case "$gccversion" in
4498 3*)
4499     echo "main(){}">try.c
4500     for incdir in $locincpth; do
4501        warn=`$cc $ccflags -I$incdir -c try.c 2>&1 | \
4502              grep '^c[cp]p*[01]: warning: changing search order '`
4503        if test "X$warn" != X; then
4504            locincpth=`echo " $locincpth " | sed "s! $incdir ! !"`
4505        fi
4506     done
4507     $rm -f try try.*
4508 esac
4509
4510 : What should the include directory be ?
4511 echo " "
4512 $echo $n "Hmm...  $c"
4513 dflt='/usr/include'
4514 incpath=''
4515 mips_type=''
4516 if $test -f /bin/mips && /bin/mips; then
4517         echo "Looks like a MIPS system..."
4518         $cat >usr.c <<'EOCP'
4519 #ifdef SYSTYPE_BSD43
4520 /bsd43
4521 #endif
4522 EOCP
4523         if cc -E usr.c > usr.out && $contains / usr.out >/dev/null 2>&1; then
4524                 dflt='/bsd43/usr/include'
4525                 incpath='/bsd43'
4526                 mips_type='BSD 4.3'
4527         else
4528                 mips_type='System V'
4529         fi
4530         $rm -f usr.c usr.out
4531         echo "and you're compiling with the $mips_type compiler and libraries."
4532         xxx_prompt=y
4533         echo "exit 0" >mips
4534 else
4535         echo "Doesn't look like a MIPS system."
4536         xxx_prompt=n
4537         echo "exit 1" >mips
4538 fi
4539 chmod +x mips
4540 $eunicefix mips
4541 case "$usrinc" in
4542 '') ;;
4543 *) dflt="$usrinc";;
4544 esac
4545 case "$xxx_prompt" in
4546 y)      fn=d/
4547         echo " "
4548         rp='Where are the include files you want to use?'
4549         . ./getfile
4550         usrinc="$ans"
4551         ;;
4552 *)      usrinc="$dflt"
4553         ;;
4554 esac
4555
4556 : see how we invoke the C preprocessor
4557 echo " "
4558 echo "Now, how can we feed standard input to your C preprocessor..." >&4
4559 cat <<'EOT' >testcpp.c
4560 #define ABC abc
4561 #define XYZ xyz
4562 ABC.XYZ
4563 EOT
4564 cd ..
4565 if test ! -f cppstdin; then
4566         if test "X$osname" = "Xaix" -a "X$gccversion" = X; then
4567                 # AIX cc -E doesn't show the absolute headerfile
4568                 # locations but we'll cheat by using the -M flag.
4569                 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
4570         else
4571                 echo 'cat >.$$.c; '"$cc"' -E ${1+"$@"} .$$.c; rm .$$.c' >cppstdin
4572         fi
4573 else
4574         echo "Keeping your $hint cppstdin wrapper."
4575 fi
4576 chmod 755 cppstdin
4577 wrapper=`pwd`/cppstdin
4578 ok='false'
4579 cd UU
4580
4581 if $test "X$cppstdin" != "X" && \
4582         $cppstdin $cppminus <testcpp.c >testcpp.out 2>&1 && \
4583         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4584 then
4585         echo "You used to use $cppstdin $cppminus so we'll use that again."
4586         case "$cpprun" in
4587         '') echo "But let's see if we can live without a wrapper..." ;;
4588         *)
4589                 if $cpprun $cpplast <testcpp.c >testcpp.out 2>&1 && \
4590                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4591                 then
4592                         echo "(And we'll use $cpprun $cpplast to preprocess directly.)"
4593                         ok='true'
4594                 else
4595                         echo "(However, $cpprun $cpplast does not work, let's see...)"
4596                 fi
4597                 ;;
4598         esac
4599 else
4600         case "$cppstdin" in
4601         '') ;;
4602         *)
4603                 echo "Good old $cppstdin $cppminus does not seem to be of any help..."
4604                 ;;
4605         esac
4606 fi
4607
4608 if $ok; then
4609         : nothing
4610 elif echo 'Maybe "'"$cc"' -E" will work...'; \
4611         $cc -E <testcpp.c >testcpp.out 2>&1; \
4612         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4613         echo "Yup, it does."
4614         x_cpp="$cc -E"
4615         x_minus='';
4616 elif echo 'Nope...maybe "'"$cc"' -E -" will work...'; \
4617         $cc -E - <testcpp.c >testcpp.out 2>&1; \
4618         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4619         echo "Yup, it does."
4620         x_cpp="$cc -E"
4621         x_minus='-';
4622 elif echo 'Nope...maybe "'"$cc"' -P" will work...'; \
4623         $cc -P <testcpp.c >testcpp.out 2>&1; \
4624         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4625         echo "Yipee, that works!"
4626         x_cpp="$cc -P"
4627         x_minus='';
4628 elif echo 'Nope...maybe "'"$cc"' -P -" will work...'; \
4629         $cc -P - <testcpp.c >testcpp.out 2>&1; \
4630         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4631         echo "At long last!"
4632         x_cpp="$cc -P"
4633         x_minus='-';
4634 elif echo 'No such luck, maybe "'$cpp'" will work...'; \
4635         $cpp <testcpp.c >testcpp.out 2>&1; \
4636         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4637         echo "It works!"
4638         x_cpp="$cpp"
4639         x_minus='';
4640 elif echo 'Nixed again...maybe "'$cpp' -" will work...'; \
4641         $cpp - <testcpp.c >testcpp.out 2>&1; \
4642         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4643         echo "Hooray, it works!  I was beginning to wonder."
4644         x_cpp="$cpp"
4645         x_minus='-';
4646 elif echo 'Uh-uh.  Time to get fancy.  Trying a wrapper...'; \
4647         $wrapper <testcpp.c >testcpp.out 2>&1; \
4648         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4649         x_cpp="$wrapper"
4650         x_minus=''
4651         echo "Eureka!"
4652 else
4653         dflt=''
4654         rp="No dice.  I can't find a C preprocessor.  Name one:"
4655         . ./myread
4656         x_cpp="$ans"
4657         x_minus=''
4658         $x_cpp <testcpp.c >testcpp.out 2>&1
4659         if $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4660                 echo "OK, that will do." >&4
4661         else
4662 echo "Sorry, I can't get that to work.  Go find one and rerun Configure." >&4
4663                 exit 1
4664         fi
4665 fi
4666
4667 case "$ok" in
4668 false)
4669         cppstdin="$x_cpp"
4670         cppminus="$x_minus"
4671         cpprun="$x_cpp"
4672         cpplast="$x_minus"
4673         set X $x_cpp
4674         shift
4675         case "$1" in
4676         "$cpp")
4677                 echo "Perhaps can we force $cc -E using a wrapper..."
4678                 if $wrapper <testcpp.c >testcpp.out 2>&1; \
4679                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4680                 then
4681                         echo "Yup, we can."
4682                         cppstdin="$wrapper"
4683                         cppminus='';
4684                 else
4685                         echo "Nope, we'll have to live without it..."
4686                 fi
4687                 ;;
4688         esac
4689         case "$cpprun" in
4690         "$wrapper")
4691                 cpprun=''
4692                 cpplast=''
4693                 ;;
4694         esac
4695         ;;
4696 esac
4697
4698 case "$cppstdin" in
4699 "$wrapper"|'cppstdin') ;;
4700 *) $rm -f $wrapper;;
4701 esac
4702 $rm -f testcpp.c testcpp.out
4703
4704 : Set private lib path
4705 case "$plibpth" in
4706 '') if ./mips; then
4707                 plibpth="$incpath/usr/lib /usr/local/lib /usr/ccs/lib"
4708         fi;;
4709 esac
4710 case "$libpth" in
4711 ' ') dlist='';;
4712 '') dlist="$loclibpth $plibpth $glibpth";;
4713 *) dlist="$libpth";;
4714 esac
4715
4716 : Now check and see which directories actually exist, avoiding duplicates
4717 libpth=''
4718 for xxx in $dlist
4719 do
4720     if $test -d $xxx; then
4721                 case " $libpth " in
4722                 *" $xxx "*) ;;
4723                 *) libpth="$libpth $xxx";;
4724                 esac
4725     fi
4726 done
4727 $cat <<'EOM'
4728
4729 Some systems have incompatible or broken versions of libraries.  Among
4730 the directories listed in the question below, please remove any you
4731 know not to be holding relevant libraries, and add any that are needed.
4732 Say "none" for none.
4733
4734 EOM
4735 case "$libpth" in
4736 '') dflt='none';;
4737 *)
4738         set X $libpth
4739         shift
4740         dflt=${1+"$@"}
4741         ;;
4742 esac
4743 rp="Directories to use for library searches?"
4744 . ./myread
4745 case "$ans" in
4746 none) libpth=' ';;
4747 *) libpth="$ans";;
4748 esac
4749
4750 : compute shared library extension
4751 case "$so" in
4752 '')
4753         if xxx=`./loc libc.sl X $libpth`; $test -f "$xxx"; then
4754                 dflt='sl'
4755         else
4756                 dflt='so'
4757         fi
4758         ;;
4759 *) dflt="$so";;
4760 esac
4761 $cat <<EOM
4762
4763 On some systems, shared libraries may be available.  Answer 'none' if
4764 you want to suppress searching of shared libraries for the remainder
4765 of this configuration.
4766
4767 EOM
4768 rp='What is the file extension used for shared libraries?'
4769 . ./myread
4770 so="$ans"
4771
4772 : Define several unixisms.
4773 : Hints files or command line option can be used to override them.
4774 : The convoluted testing is in case hints files set either the old
4775 : or the new name.
4776 case "$_exe" in
4777 '')     case "$exe_ext" in
4778         '')     ;;
4779         *)      _exe="$exe_ext" ;;
4780         esac
4781         ;;
4782 esac
4783 case "$_a" in
4784 '')     case "$lib_ext" in
4785     '') _a='.a';;
4786         *)      _a="$lib_ext" ;;
4787         esac
4788         ;;
4789 esac
4790 case "$_o" in
4791 '') case "$obj_ext" in
4792         '')     _o='.o';;
4793         *)      _o="$obj_ext";;
4794         esac
4795         ;;
4796 esac
4797 case "$p_" in
4798 '') case "$path_sep" in
4799         '')     p_=':';;
4800         *)      p_="$path_sep";;
4801         esac
4802         ;;
4803 esac
4804 exe_ext=$_exe
4805 lib_ext=$_a
4806 obj_ext=$_o
4807 path_sep=$p_
4808
4809 : Which makefile gets called first.  This is used by make depend.
4810 case "$firstmakefile" in
4811 '') firstmakefile='makefile';;
4812 esac
4813
4814 case "$ccflags" in
4815 *-DUSE_LONG_DOUBLE*|*-DUSE_MORE_BITS*) uselongdouble="$define" ;;
4816 esac
4817
4818 case "$uselongdouble" in
4819 $define|true|[yY]*)     dflt='y';;
4820 *) dflt='n';;
4821 esac
4822 cat <<EOM
4823
4824 Perl can be built to take advantage of long doubles which
4825 (if available) may give more accuracy and range for floating point numbers.
4826
4827 If this doesn't make any sense to you, just accept the default '$dflt'.
4828 EOM
4829 rp='Try to use long doubles if available?'
4830 . ./myread
4831 case "$ans" in
4832 y|Y)    val="$define"   ;;
4833 *)      val="$undef"    ;;
4834 esac
4835 set uselongdouble
4836 eval $setvar
4837
4838 case "$uselongdouble" in
4839 true|[yY]*) uselongdouble="$define" ;;
4840 esac
4841
4842 : Look for a hint-file generated 'call-back-unit'.  If the
4843 : user has specified that long doubles should be used,
4844 : we may need to set or change some other defaults.
4845 if $test -f uselongdouble.cbu; then
4846     echo "Your platform has some specific hints regarding long doubles, using them..."
4847     . ./uselongdouble.cbu
4848 else
4849     case "$uselongdouble" in
4850         $define)
4851                 $cat <<EOM
4852 (Your platform does not have any specific hints for long doubles.)
4853 EOM
4854         ;;
4855     esac
4856 fi
4857
4858 : Looking for optional libraries
4859 echo " "
4860 echo "Checking for optional libraries..." >&4
4861 case "$libs" in
4862 ' '|'') dflt='';;
4863 *) dflt="$libs";;
4864 esac
4865 case "$libswanted" in
4866 '') libswanted='c_s';;
4867 esac
4868 case "$usesocks" in
4869 "$define") libswanted="$libswanted socks5 socks5_sh" ;;
4870 esac
4871 libsfound=''
4872 libsfiles=''
4873 libsdirs=''
4874 libspath=''
4875 for thisdir in $libpth $xlibpth; do
4876   test -d $thisdir && libspath="$libspath $thisdir"
4877 done
4878 for thislib in $libswanted; do
4879         for thisdir in $libspath; do
4880             xxx=''
4881             if $test ! -f "$xxx" -a "X$ignore_versioned_solibs" = "X"; then
4882                 xxx=`ls $thisdir/lib$thislib.$so.[0-9] 2>/dev/null|sed -n '$p'`
4883                 $test -f "$xxx" && eval $libscheck
4884                 $test -f "$xxx" && libstyle=shared
4885             fi
4886             if test ! -f "$xxx"; then
4887                 xxx=$thisdir/lib$thislib.$so
4888                 $test -f "$xxx" && eval $libscheck
4889                 $test -f "$xxx" && libstyle=shared
4890             fi  
4891             if test ! -f "$xxx"; then
4892                 xxx=$thisdir/lib$thislib$_a
4893                 $test -f "$xxx" && eval $libscheck
4894                 $test -f "$xxx" && libstyle=static
4895             fi
4896             if test ! -f "$xxx"; then
4897                 xxx=$thisdir/$thislib$_a
4898                 $test -f "$xxx" && eval $libscheck
4899                 $test -f "$xxx" && libstyle=static
4900             fi
4901             if test ! -f "$xxx"; then
4902                 xxx=$thisdir/lib${thislib}_s$_a
4903                 $test -f "$xxx" && eval $libscheck
4904                 $test -f "$xxx" && libstyle=static
4905                 $test -f "$xxx" && thislib=${thislib}_s
4906             fi
4907             if test ! -f "$xxx"; then
4908                 xxx=$thisdir/Slib$thislib$_a
4909                 $test -f "$xxx" && eval $libscheck
4910                 $test -f "$xxx" && libstyle=static
4911             fi
4912             if $test -f "$xxx"; then
4913                 case "$libstyle" in
4914                 shared) echo "Found -l$thislib (shared)." ;;
4915                 static) echo "Found -l$thislib." ;;
4916                 *)      echo "Found -l$thislib ($libstyle)." ;;
4917                 esac
4918                 case " $dflt " in
4919                 *"-l$thislib "*);;
4920                 *) dflt="$dflt -l$thislib"
4921                    libsfound="$libsfound $xxx"
4922                    yyy=`basename $xxx`
4923                    libsfiles="$libsfiles $yyy"
4924                    yyy=`echo $xxx|$sed -e "s%/$yyy\\$%%"`
4925                    case " $libsdirs " in
4926                    *" $yyy "*) ;;
4927                    *) libsdirs="$libsdirs $yyy" ;;
4928                    esac
4929                    ;;
4930                 esac
4931                 break
4932             fi  
4933         done
4934         if $test ! -f "$xxx"; then
4935             echo "No -l$thislib."
4936         fi
4937 done
4938 set X $dflt
4939 shift
4940 dflt="$*"
4941 case "$libs" in
4942 '') dflt="$dflt";;
4943 *) dflt="$libs";;
4944 esac
4945 case "$dflt" in
4946 ' '|'') dflt='none';;
4947 esac
4948
4949 $cat <<EOM
4950
4951 In order to compile $package on your machine, a number of libraries
4952 are usually needed.  Include any other special libraries here as well.
4953 Say "none" for none.  The default list is almost always right.
4954 EOM
4955
4956 echo " "
4957 rp="What libraries to use?"
4958 . ./myread
4959 case "$ans" in
4960 none) libs=' ';;
4961 *) libs="$ans";;
4962 esac
4963
4964 : determine optimization, if desired, or use for debug flag also
4965 case "$optimize" in
4966 ' '|$undef) dflt='none';;
4967 '') dflt='-O';;
4968 *) dflt="$optimize";;
4969 esac
4970 $cat <<EOH
4971
4972 By default, $package compiles with the -O flag to use the optimizer.
4973 Alternately, you might want to use the symbolic debugger, which uses
4974 the -g flag (on traditional Unix systems).  Either flag can be
4975 specified here.  To use neither flag, specify the word "none".
4976
4977 EOH
4978 rp="What optimizer/debugger flag should be used?"
4979 . ./myread
4980 optimize="$ans"
4981 case "$optimize" in
4982 'none') optimize=" ";;
4983 esac
4984
4985 : Check what DEBUGGING is required from the command line
4986 : -DEBUGGING      or -DDEBUGGING or
4987 : -DEBUGGING=both                       = -g + -DDEBUGGING
4988 : -DEBUGGING=-g   or -Doptimize=-g      = -g
4989 : -DEBUGGING=none or -UDEBUGGING        =
4990 : -DEBUGGING=old  or -DEBUGGING=default = ? $optimize
4991 case "$EBUGGING" in
4992 '')     ;;
4993 *)      DEBUGGING=$EBUGGING ;;
4994 esac
4995
4996 case "$DEBUGGING" in
4997 -g|both|$define)
4998     case "$optimize" in
4999         *-g*) ;;
5000         *)    optimize="$optimize -g" ;;
5001     esac ;;
5002 none|$undef)
5003     case "$optimize" in
5004         *-g*)   set `echo "X $optimize " | sed 's/ -g / /'`
5005                 shift
5006                 optimize="$*"
5007                 ;;
5008     esac ;;
5009 esac
5010
5011 dflt=''
5012 case "$DEBUGGING" in
5013 both|$define) dflt='-DDEBUGGING'
5014 esac
5015
5016 : We will not override a previous value, but we might want to
5017 : augment a hint file
5018 case "$hint" in
5019 default|recommended)
5020         case "$gccversion" in
5021         1*) dflt="$dflt -fpcc-struct-return" ;;
5022         esac
5023         case "$optimize:$DEBUGGING" in
5024         *-g*:old) dflt="$dflt -DDEBUGGING";;
5025         esac
5026         case "$gccversion" in
5027         2*) if test -d /etc/conf/kconfig.d &&
5028                         $contains _POSIX_VERSION $usrinc/sys/unistd.h >/dev/null 2>&1
5029                 then
5030                         # Interactive Systems (ISC) POSIX mode.
5031                         dflt="$dflt -posix"
5032                 fi
5033                 ;;
5034         esac
5035         case "$gccversion" in
5036         1*) ;;
5037         2.[0-8]*) ;;
5038         ?*)     echo " "
5039                 echo "Checking if your compiler accepts -fno-strict-aliasing" 2>&1
5040                 echo 'int main(void) { return 0; }' > gcctest.c
5041                 if $cc -O2 -fno-strict-aliasing -o gcctest gcctest.c; then
5042                         echo "Yes, it does." 2>&1
5043                         case "$ccflags" in
5044                         *strict-aliasing*)
5045                                 echo "Leaving current flags $ccflags alone." 2>&1
5046                                 ;;
5047                         *) dflt="$dflt -fno-strict-aliasing" ;;
5048                         esac
5049                 else
5050                         echo "Nope, it doesn't, but that's ok." 2>&1
5051                 fi
5052                 ;;
5053         esac
5054         # For gcc, adding -pipe speeds up compilations for some, but apparently
5055         # some assemblers can't read from stdin.  (It also slows down compilations
5056         # in other cases, but those are apparently rarer these days.)  AD 5/2004.
5057         case "$gccversion" in
5058         ?*)     echo " "
5059                 echo "Checking if your compiler accepts -pipe" 2>&1
5060                 echo 'int main(void) { return 0; }' > gcctest.c
5061                 if $cc -pipe -o gcctest gcctest.c; then
5062                         echo "Yes, it does." 2>&1
5063                         case "$ccflags" in
5064                         *-pipe*)
5065                                 echo "Leaving current flags $ccflags alone." 2>&1
5066                                 ;;
5067                         *) dflt="$dflt -pipe" ;;
5068                         esac
5069                 else
5070                         echo "Nope, it doesn't, but that's ok." 2>&1
5071                 fi
5072                 ;;
5073         esac
5074         ;;
5075 esac
5076
5077 case "$mips_type" in
5078 *BSD*|'') inclwanted="$locincpth $usrinc";;
5079 *) inclwanted="$locincpth $inclwanted $usrinc/bsd";;
5080 esac
5081 for thisincl in $inclwanted; do
5082         if $test -d $thisincl; then
5083                 if $test x$thisincl != x$usrinc; then
5084                         case "$dflt" in
5085                         *" -I$thisincl "*);;
5086                         *) dflt="$dflt -I$thisincl ";;
5087                         esac
5088                 fi
5089         fi
5090 done
5091
5092 inctest='if $contains $2 $usrinc/$1 >/dev/null 2>&1; then
5093         xxx=true;
5094 elif $contains $2 $usrinc/sys/$1 >/dev/null 2>&1; then
5095         xxx=true;
5096 else
5097         xxx=false;
5098 fi;
5099 if $xxx; then
5100         case "$dflt" in
5101         *$2*);;
5102         *) dflt="$dflt -D$2";;
5103         esac;
5104 fi'
5105
5106 set signal.h LANGUAGE_C; eval $inctest
5107
5108 case "$usesocks" in
5109 $define)
5110         ccflags="$ccflags -DSOCKS"
5111         ;;
5112 esac
5113
5114 case "$hint" in
5115 default|recommended) dflt="$ccflags $dflt" ;;
5116 *) dflt="$ccflags";;
5117 esac
5118
5119 case "$dflt" in
5120 ''|' ') dflt=none;;
5121 esac
5122
5123 $cat <<EOH
5124
5125 Your C compiler may want other flags.  For this question you should include
5126 -I/whatever and -DWHATEVER flags and any other flags used by the C compiler,
5127 but you should NOT include libraries or ld flags like -lwhatever.  If you
5128 want $package to honor its debug switch, you should include -DDEBUGGING here.
5129 Your C compiler might also need additional flags, such as -D_POSIX_SOURCE.
5130
5131 To use no flags, specify the word "none".
5132
5133 EOH
5134 set X $dflt
5135 shift
5136 dflt=${1+"$@"}
5137 rp="Any additional cc flags?"
5138 . ./myread
5139 case "$ans" in
5140 none) ccflags='';;
5141 *) ccflags="$ans";;
5142 esac
5143
5144 : the following weeds options from ccflags that are of no interest to cpp
5145 case "$cppflags" in
5146 '') cppflags="$ccflags" ;;
5147 *)  cppflags="$cppflags $ccflags" ;;
5148 esac
5149 case "$gccversion" in
5150 1*) cppflags="$cppflags -D__GNUC__"
5151 esac
5152 case "$mips_type" in
5153 '');;
5154 *BSD*) cppflags="$cppflags -DSYSTYPE_BSD43";;
5155 esac
5156 case "$cppflags" in
5157 '');;
5158 *)
5159         echo " "
5160         echo "Let me guess what the preprocessor flags are..." >&4
5161         set X $cppflags
5162         shift
5163         cppflags=''
5164         $cat >cpp.c <<'EOM'
5165 #define BLURFL foo
5166
5167 BLURFL xx LFRULB
5168 EOM
5169         previous=''
5170         for flag in $*
5171         do
5172                 case "$flag" in
5173                 -*) ftry="$flag";;
5174                 *) ftry="$previous $flag";;
5175                 esac
5176                 if $cppstdin -DLFRULB=bar $cppflags $ftry $cppminus <cpp.c \
5177                         >cpp1.out 2>/dev/null && \
5178                         $cpprun -DLFRULB=bar $cppflags $ftry $cpplast <cpp.c \
5179                         >cpp2.out 2>/dev/null && \
5180                         $contains 'foo.*xx.*bar' cpp1.out >/dev/null 2>&1 && \
5181                         $contains 'foo.*xx.*bar' cpp2.out >/dev/null 2>&1
5182                 then
5183                         cppflags="$cppflags $ftry"
5184                         previous=''
5185                 else
5186                         previous="$flag"
5187                 fi
5188         done
5189         set X $cppflags
5190         shift
5191         cppflags=${1+"$@"}
5192         case "$cppflags" in
5193         *-*)  echo "They appear to be: $cppflags";;
5194         esac
5195         $rm -f cpp.c cpp?.out
5196         ;;
5197 esac
5198
5199 : flags used in final linking phase
5200 case "$ldflags" in
5201 '') if ./venix; then
5202                 dflt='-i -z'
5203         else
5204                 dflt=''
5205         fi
5206         case "$ccflags" in
5207         *-posix*) dflt="$dflt -posix" ;;
5208         esac
5209         ;;
5210 *) dflt="$ldflags";;
5211 esac
5212
5213 : Try to guess additional flags to pick up local libraries.
5214 for thislibdir in $libpth; do
5215         case " $loclibpth " in
5216         *" $thislibdir "*)
5217                 case "$dflt " in
5218                 *"-L$thislibdir "*) ;;
5219                 *)  dflt="$dflt -L$thislibdir" ;;
5220                 esac
5221                 ;;
5222         esac
5223 done
5224
5225 case "$dflt" in
5226 '') dflt='none' ;;
5227 esac
5228
5229 $cat <<EOH
5230
5231 Your C linker may need flags.  For this question you should
5232 include -L/whatever and any other flags used by the C linker, but you
5233 should NOT include libraries like -lwhatever.
5234
5235 Make sure you include the appropriate -L/path flags if your C linker
5236 does not normally search all of the directories you specified above,
5237 namely
5238         $libpth
5239 To use no flags, specify the word "none".
5240
5241 EOH
5242
5243 rp="Any additional ld flags (NOT including libraries)?"
5244 . ./myread
5245 case "$ans" in
5246 none) ldflags='';;
5247 *) ldflags="$ans";;
5248 esac
5249 rmlist="$rmlist pdp11"
5250
5251 : coherency check
5252 echo " "
5253 echo "Checking your choice of C compiler and flags for coherency..." >&4
5254 $cat > try.c <<'EOF'
5255 #include <stdio.h>
5256 int main() { printf("Ok\n"); return(0); }
5257 EOF
5258 set X $cc -o try $optimize $ccflags $ldflags try.c $libs
5259 shift
5260 $cat >try.msg <<'EOM'
5261 I've tried to compile and run the following simple program:
5262
5263 EOM
5264 $cat try.c >> try.msg
5265
5266 $cat >> try.msg <<EOM
5267
5268 I used the command:
5269
5270         $*
5271         $run ./try
5272
5273 and I got the following output:
5274
5275 EOM
5276 dflt=y
5277 if $sh -c "$cc -o try $optimize $ccflags $ldflags try.c $libs" >>try.msg 2>&1; then
5278         if $sh -c "$run ./try" >>try.msg 2>&1; then
5279                 xxx=`$run ./try`
5280                 case "$xxx" in
5281                 "Ok") dflt=n ;;
5282                 *)      echo 'The program compiled OK, but produced no output.' >> try.msg
5283                         case " $libs " in
5284                         *" -lsfio "*)
5285                                 cat >> try.msg <<'EOQS'
5286 If $libs contains -lsfio, and sfio is mis-configured, then it
5287 sometimes (apparently) runs and exits with a 0 status, but with no
5288 output!  It may have to do with sfio's use of _exit vs. exit.
5289
5290 EOQS
5291                                 rp="You have a big problem.  Shall I abort Configure"
5292                                 dflt=y
5293                                 ;;
5294                         esac
5295                         ;;
5296                 esac
5297         else
5298                 echo "The program compiled OK, but exited with status $?." >>try.msg
5299                 rp="You have a problem.  Shall I abort Configure"
5300                 dflt=y
5301         fi
5302 else
5303         echo "I can't compile the test program." >>try.msg
5304         rp="You have a BIG problem.  Shall I abort Configure"
5305         dflt=y
5306 fi
5307 case "$dflt" in
5308 y)
5309         $cat try.msg >&4
5310         case "$knowitall" in
5311         '')
5312                 echo "(The supplied flags or libraries might be incorrect.)"
5313                 ;;
5314         *) dflt=n;;
5315         esac
5316         echo " "
5317         . ./myread
5318         case "$ans" in
5319         n*|N*) ;;
5320         *)      echo "Ok.  Stopping Configure." >&4
5321                 exit 1
5322                 ;;
5323         esac
5324         ;;
5325 n) echo "OK, that should do.";;
5326 esac
5327 $rm -f try try.* core
5328
5329 : define a shorthand compile call
5330 compile='
5331 mc_file=$1;
5332 shift;
5333 $cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs > /dev/null 2>&1;'
5334 : define a shorthand compile call for compilations that should be ok.
5335 compile_ok='
5336 mc_file=$1;
5337 shift;
5338 $cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs;'
5339
5340 : determine filename position in cpp output
5341 echo " "
5342 echo "Computing filename position in cpp output for #include directives..." >&4
5343 case "$osname" in
5344 vos) testaccess=-e ;;
5345 *)   testaccess=-r ;;
5346 esac
5347 echo '#include <stdio.h>' > foo.c
5348 $cat >fieldn <<EOF
5349 $startsh
5350 $cppstdin $cppflags $cppminus <foo.c 2>/dev/null | \
5351 $grep '^[       ]*#.*stdio\.h' | \
5352 while read cline; do
5353         pos=1
5354         set \$cline
5355         while $test \$# -gt 0; do
5356                 if $test $testaccess \`echo \$1 | $tr -d '"'\`; then
5357                         echo "\$pos"
5358                         exit 0
5359                 fi
5360                 shift
5361                 pos=\`expr \$pos + 1\`
5362         done
5363 done
5364 EOF
5365 chmod +x fieldn
5366 fieldn=`./fieldn`
5367 $rm -f foo.c fieldn
5368 case $fieldn in
5369 '') pos='???';;
5370 1) pos=first;;
5371 2) pos=second;;
5372 3) pos=third;;
5373 *) pos="${fieldn}th";;
5374 esac
5375 echo "Your cpp writes the filename in the $pos field of the line."
5376
5377 case "$osname" in
5378 vos) cppfilter="tr '\\\\>' '/' |" ;; # path component separator is >
5379 os2) cppfilter="sed -e 's|\\\\\\\\|/|g' |" ;; # path component separator is \
5380 *)   cppfilter='' ;;
5381 esac
5382 : locate header file
5383 $cat >findhdr <<EOF
5384 $startsh
5385 wanted=\$1
5386 name=''
5387 for usrincdir in $usrinc
5388 do
5389         if test -f \$usrincdir/\$wanted; then
5390                 echo "\$usrincdir/\$wanted"
5391                 exit 0
5392         fi
5393 done
5394 awkprg='{ print \$$fieldn }'
5395 echo "#include <\$wanted>" > foo\$\$.c
5396 $cppstdin $cppminus $cppflags < foo\$\$.c 2>/dev/null | \
5397 $cppfilter $grep "^[    ]*#.*\$wanted" | \
5398 while read cline; do
5399         name=\`echo \$cline | $awk "\$awkprg" | $tr -d '"'\`
5400         case "\$name" in
5401         *[/\\\\]\$wanted) echo "\$name"; exit 1;;
5402         *[\\\\/]\$wanted) echo "\$name"; exit 1;;
5403         *) exit 2;;
5404         esac;
5405 done;
5406 #
5407 # status = 0: grep returned 0 lines, case statement not executed
5408 # status = 1: headerfile found
5409 # status = 2: while loop executed, no headerfile found
5410 #
5411 status=\$?
5412 $rm -f foo\$\$.c;
5413 if test \$status -eq 1; then
5414         exit 0;
5415 fi
5416 exit 1
5417 EOF
5418 chmod +x findhdr
5419
5420 : define an alternate in-header-list? function
5421 inhdr='echo " "; td=$define; tu=$undef; yyy=$@;
5422 cont=true; xxf="echo \"<\$1> found.\" >&4";
5423 case $# in 2) xxnf="echo \"<\$1> NOT found.\" >&4";;
5424 *) xxnf="echo \"<\$1> NOT found, ...\" >&4";;
5425 esac;
5426 case $# in 4) instead=instead;; *) instead="at last";; esac;
5427 while $test "$cont"; do
5428         xxx=`./findhdr $1`
5429         var=$2; eval "was=\$$2";
5430         if $test "$xxx" && $test -r "$xxx";
5431         then eval $xxf;
5432         eval "case \"\$$var\" in $undef) . ./whoa; esac"; eval "$var=\$td";
5433                 cont="";
5434         else eval $xxnf;
5435         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu"; fi;
5436         set $yyy; shift; shift; yyy=$@;
5437         case $# in 0) cont="";;
5438         2) xxf="echo \"but I found <\$1> $instead.\" >&4";
5439                 xxnf="echo \"and I did not find <\$1> either.\" >&4";;
5440         *) xxf="echo \"but I found <\$1\> instead.\" >&4";
5441                 xxnf="echo \"there is no <\$1>, ...\" >&4";;
5442         esac;
5443 done;
5444 while $test "$yyy";
5445 do set $yyy; var=$2; eval "was=\$$2";
5446         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu";
5447         set $yyy; shift; shift; yyy=$@;
5448 done'
5449
5450 : see if stdlib is available
5451 set stdlib.h i_stdlib
5452 eval $inhdr
5453
5454 : check for lengths of integral types
5455 echo " "
5456 case "$intsize" in
5457 '')
5458         echo "Checking to see how big your integers are..." >&4
5459         $cat >try.c <<EOCP
5460 #include <stdio.h>
5461 #$i_stdlib I_STDLIB
5462 #ifdef I_STDLIB
5463 #include <stdlib.h>
5464 #endif
5465 int main()
5466 {
5467         printf("intsize=%d;\n", (int)sizeof(int));
5468         printf("longsize=%d;\n", (int)sizeof(long));
5469         printf("shortsize=%d;\n", (int)sizeof(short));
5470         exit(0);
5471 }
5472 EOCP
5473         set try
5474         if eval $compile_ok && $run ./try > /dev/null; then
5475                 eval `$run ./try`
5476                 echo "Your integers are $intsize bytes long."
5477                 echo "Your long integers are $longsize bytes long."
5478                 echo "Your short integers are $shortsize bytes long."
5479         else
5480                 $cat >&4 <<EOM
5481 !
5482 Help! I can't compile and run the intsize test program: please enlighten me!
5483 (This is probably a misconfiguration in your system or libraries, and
5484 you really ought to fix it.  Still, I'll try anyway.)
5485 !
5486 EOM
5487                 dflt=4
5488                 rp="What is the size of an integer (in bytes)?"
5489                 . ./myread
5490                 intsize="$ans"
5491                 dflt=$intsize
5492                 rp="What is the size of a long integer (in bytes)?"
5493                 . ./myread
5494                 longsize="$ans"
5495                 dflt=2
5496                 rp="What is the size of a short integer (in bytes)?"
5497                 . ./myread
5498                 shortsize="$ans"
5499         fi
5500         ;;
5501 esac
5502 $rm -f try try.*
5503
5504 : check for long long
5505 echo " "
5506 echo "Checking to see if you have long long..." >&4
5507 echo 'int main() { long long x = 7; return 0; }' > try.c
5508 set try
5509 if eval $compile; then
5510         val="$define"
5511         echo "You have long long."
5512 else
5513         val="$undef"
5514         echo "You do not have long long."
5515 fi
5516 $rm try.*
5517 set d_longlong
5518 eval $setvar
5519
5520 : check for length of long long
5521 case "${d_longlong}${longlongsize}" in
5522 $define)
5523         echo " "
5524         echo "Checking to see how big your long longs are..." >&4
5525         $cat >try.c <<'EOCP'
5526 #include <stdio.h>
5527 int main()
5528 {
5529     printf("%d\n", (int)sizeof(long long));
5530     return(0);
5531 }
5532 EOCP
5533         set try
5534         if eval $compile_ok; then
5535                 longlongsize=`$run ./try`
5536                 echo "Your long longs are $longlongsize bytes long."
5537         else
5538                 dflt='8'
5539                 echo " "
5540                 echo "(I can't seem to compile the test program.  Guessing...)"
5541                 rp="What is the size of a long long (in bytes)?"
5542                 . ./myread
5543                 longlongsize="$ans"
5544         fi
5545         if $test "X$longsize" = "X$longlongsize"; then
5546                 echo "(That isn't any different from an ordinary long.)"
5547         fi      
5548         ;;
5549 esac
5550 $rm -f try.* try
5551
5552 : see if inttypes.h is available
5553 : we want a real compile instead of Inhdr because some systems
5554 : have an inttypes.h which includes non-existent headers
5555 echo " "
5556 $cat >try.c <<EOCP
5557 #include <inttypes.h>
5558 int main() {
5559         static int32_t foo32 = 0x12345678;
5560 }
5561 EOCP
5562 set try
5563 if eval $compile; then
5564         echo "<inttypes.h> found." >&4
5565         val="$define"
5566 else
5567         echo "<inttypes.h> NOT found." >&4
5568         val="$undef"
5569 fi
5570 $rm -f try.c try
5571 set i_inttypes
5572 eval $setvar
5573
5574 : check for int64_t
5575 echo " "
5576 echo "Checking to see if you have int64_t..." >&4
5577 $cat >try.c <<EOCP
5578 #include <sys/types.h>
5579 #$i_inttypes I_INTTYPES
5580 #ifdef I_INTTYPES
5581 #include <inttypes.h>
5582 #endif
5583 int main() { int64_t x = 7; }
5584 EOCP
5585 set try
5586 if eval $compile; then
5587         val="$define"
5588         echo "You have int64_t."
5589 else
5590         val="$undef"
5591         echo "You do not have int64_t."
5592 fi
5593 $rm -f try try.*
5594 set d_int64_t
5595 eval $setvar
5596
5597
5598 echo " "
5599 echo "Checking which 64-bit integer type we could use..." >&4
5600
5601 case "$intsize" in
5602 8) val=int
5603    set quadtype
5604    eval $setvar
5605    val='"unsigned int"'
5606    set uquadtype
5607    eval $setvar
5608    quadkind=1
5609    ;;
5610 *) case "$longsize" in
5611    8) val=long
5612       set quadtype
5613       eval $setvar
5614       val='"unsigned long"'
5615       set uquadtype
5616       eval $setvar
5617       quadkind=2
5618       ;;
5619    *) case "$d_longlong:$longlongsize" in
5620       define:8)
5621         val='"long long"'
5622         set quadtype
5623         eval $setvar
5624         val='"unsigned long long"'
5625         set uquadtype
5626         eval $setvar
5627         quadkind=3
5628         ;;
5629       *) case "$d_int64_t" in
5630          define)
5631            val=int64_t
5632            set quadtype
5633            eval $setvar
5634            val=uint64_t
5635            set uquadtype
5636            eval $setvar
5637            quadkind=4
5638            ;;
5639          esac
5640          ;;
5641       esac
5642       ;;
5643    esac
5644    ;;
5645 esac
5646
5647 case "$quadtype" in
5648 '')     echo "Alas, no 64-bit integer types in sight." >&4
5649         d_quad="$undef"
5650         ;;
5651 *)      echo "We could use '$quadtype' for 64-bit integers." >&4
5652         d_quad="$define"
5653         ;;
5654 esac
5655
5656
5657 case "$uselonglong" in
5658 "$define"|true|[yY]*)
5659         cat <<EOM >&4
5660
5661 *** Configure -Duselonglong is deprecated, using -Duse64bitint instead.
5662 EOM
5663         use64bitint="$define"
5664         ;;
5665 esac                          
5666 case "$use64bits" in
5667 "$define"|true|[yY]*)
5668         cat <<EOM >&4
5669
5670 *** Configure -Duse64bits is deprecated, using -Duse64bitint instead.
5671 EOM
5672         use64bitint="$define"
5673         ;;
5674 esac                          
5675 case "$use64bitints" in
5676 "$define"|true|[yY]*)
5677         cat <<EOM >&4
5678
5679 *** There is no Configure -Duse64bitints, using -Duse64bitint instead.
5680 EOM
5681         use64bitint="$define"
5682         ;;
5683 esac                          
5684 case "$use64bitsint" in
5685 "$define"|true|[yY]*)
5686         cat <<EOM >&4
5687
5688 *** There is no Configure -Duse64bitsint, using -Duse64bitint instead.
5689 EOM
5690         use64bitint="$define"
5691         ;;
5692 esac                          
5693 case "$uselonglongs" in
5694 "$define"|true|[yY]*)
5695         cat <<EOM >&4
5696
5697 *** There is no Configure -Duselonglongs, using -Duse64bitint instead.
5698 EOM
5699         use64bitint="$define"
5700         ;;
5701 esac                          
5702 case "$use64bitsall" in
5703 "$define"|true|[yY]*)
5704         cat <<EOM >&4
5705
5706 *** There is no Configure -Duse64bitsall, using -Duse64bitall instead.
5707 EOM
5708         use64bitall="$define"
5709         ;;
5710 esac                          
5711
5712 case "$ccflags" in
5713 *-DUSE_LONG_LONG*|*-DUSE_64_BIT_INT*|*-DUSE_64_BIT_ALL*) use64bitint="$define";;
5714 esac
5715 case "$use64bitall" in
5716 "$define"|true|[yY]*) use64bitint="$define" ;;
5717 esac
5718
5719 case "$longsize" in
5720 8) cat <<EOM
5721
5722 You have natively 64-bit long integers.
5723 EOM
5724    val="$define"
5725    ;;
5726 *) case "$use64bitint" in
5727    "$define"|true|[yY]*) dflt='y';;
5728    *) dflt='n';;
5729    esac
5730    case "$d_quad" in
5731    "$define") ;;
5732    *) dflt='n' ;;
5733    esac
5734    cat <<EOM
5735
5736 Perl can be built to take advantage of 64-bit integer types
5737 on some systems.  To do so, Configure can be run with -Duse64bitint.
5738 Choosing this option will most probably introduce binary incompatibilities.
5739
5740 If this doesn't make any sense to you, just accept the default '$dflt'.
5741 (The default has been chosen based on your configuration.)
5742 EOM
5743    rp='Try to use 64-bit integers, if available?'
5744    . ./myread
5745    case "$ans" in
5746    [yY]*) val="$define" ;;
5747    *)     val="$undef"  ;;
5748    esac
5749    ;;
5750 esac
5751 set use64bitint
5752 eval $setvar
5753
5754 case "$use64bitall" in
5755 "$define"|true|[yY]*) dflt='y' ;;
5756 *) case "$longsize" in
5757    8) dflt='y' ;;
5758    *) dflt='n' ;;
5759    esac
5760    ;;
5761 esac    
5762 cat <<EOM
5763
5764 You may also choose to try maximal 64-bitness.  It means using as much
5765 64-bitness as possible on the platform.  This in turn means even more
5766 binary incompatibilities.  On the other hand, your platform may not
5767 have any more 64-bitness available than what you already have chosen.
5768
5769 If this doesn't make any sense to you, just accept the default '$dflt'.
5770 (The default has been chosen based on your configuration.)
5771 EOM
5772 rp='Try to use maximal 64-bit support, if available?'
5773 . ./myread
5774 case "$ans" in
5775 [yY]*) val="$define" ;;
5776 *)     val="$undef"  ;;
5777 esac
5778 set use64bitall
5779 eval $setvar
5780 case "$use64bitall" in
5781 "$define")
5782         case "$use64bitint" in
5783         "$undef")
5784                 cat <<EOM
5785
5786 Since you have chosen a maximally 64-bit build, I'm also turning on
5787 the use of 64-bit integers.
5788 EOM
5789                 use64bitint="$define" ;;
5790         esac
5791         ;;
5792 esac
5793
5794 : Look for a hint-file generated 'call-back-unit'.  If the
5795 : user has specified that a 64-bit perl is to be built,
5796 : we may need to set or change some other defaults.
5797 if $test -f use64bitint.cbu; then
5798         echo "Your platform has some specific hints regarding 64-bit integers, using them..."
5799         . ./use64bitint.cbu
5800 fi
5801 case "$use64bitint" in
5802 "$define"|true|[yY]*)
5803         case "$longsize" in
5804         4) case "$archname64" in
5805            '') archname64=64int ;;
5806            esac
5807            ;;
5808         esac
5809         ;;
5810 esac
5811
5812 : Look for a hint-file generated 'call-back-unit'.  If the
5813 : user has specified that a maximally 64-bit perl is to be built,
5814 : we may need to set or change some other defaults.
5815 if $test -f use64bitall.cbu; then
5816         echo "Your platform has some specific hints regarding 64-bit builds, using them..."
5817         . ./use64bitall.cbu
5818 fi
5819 case "$use64bitall" in
5820 "$define"|true|[yY]*)
5821         case "$longsize" in
5822         4) case "$archname64" in
5823            ''|64int) archname64=64all ;;
5824            esac
5825            ;;
5826         esac
5827         ;;
5828 esac
5829
5830 case "$d_quad:$use64bitint" in
5831 $undef:$define)
5832         cat >&4 <<EOF
5833
5834 *** You have chosen to use 64-bit integers,
5835 *** but none can be found.
5836 *** Please rerun Configure without -Duse64bitint and/or -Dusemorebits.
5837 *** Cannot continue, aborting.
5838
5839 EOF
5840         exit 1
5841         ;;
5842 esac
5843
5844 : check for length of double
5845 echo " "
5846 case "$doublesize" in
5847 '')
5848         echo "Checking to see how big your double precision numbers are..." >&4
5849         $cat >try.c <<EOCP
5850 #include <stdio.h>
5851 #$i_stdlib I_STDLIB
5852 #ifdef I_STDLIB
5853 #include <stdlib.h>
5854 #endif
5855 int main()
5856 {
5857     printf("%d\n", (int)sizeof(double));
5858     exit(0);
5859 }
5860 EOCP
5861         set try
5862         if eval $compile_ok; then
5863                 doublesize=`$run ./try`
5864                 echo "Your double is $doublesize bytes long."
5865         else
5866                 dflt='8'
5867                 echo "(I can't seem to compile the test program.  Guessing...)"
5868                 rp="What is the size of a double precision number (in bytes)?"
5869                 . ./myread
5870                 doublesize="$ans"
5871         fi
5872         ;;
5873 esac
5874 $rm -f try.c try
5875
5876 : check for long doubles
5877 echo " "
5878 echo "Checking to see if you have long double..." >&4
5879 echo 'int main() { long double x = 7.0; }' > try.c
5880 set try
5881 if eval $compile; then
5882         val="$define"
5883         echo "You have long double."
5884 else
5885         val="$undef"
5886         echo "You do not have long double."
5887 fi
5888 $rm try.*
5889 set d_longdbl
5890 eval $setvar
5891
5892 : check for length of long double
5893 case "${d_longdbl}${longdblsize}" in
5894 $define)
5895         echo " "
5896         echo "Checking to see how big your long doubles are..." >&4
5897         $cat >try.c <<'EOCP'
5898 #include <stdio.h>
5899 int main()
5900 {
5901         printf("%d\n", sizeof(long double));
5902 }
5903 EOCP
5904         set try
5905         set try
5906         if eval $compile; then
5907                 longdblsize=`$run ./try`
5908                 echo "Your long doubles are $longdblsize bytes long."
5909         else
5910                 dflt='8'
5911                 echo " "
5912                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
5913                 rp="What is the size of a long double (in bytes)?"
5914                 . ./myread
5915                 longdblsize="$ans"
5916         fi
5917         if $test "X$doublesize" = "X$longdblsize"; then
5918                 echo "That isn't any different from an ordinary double."
5919                 echo "I'll keep your setting anyway, but you may see some"
5920                 echo "harmless compilation warnings."
5921         fi      
5922         ;;
5923 esac
5924 $rm -f try.* try
5925
5926 : determine the architecture name
5927 echo " "
5928 if xxx=`./loc arch blurfl $pth`; $test -f "$xxx"; then
5929         tarch=`arch`"-$osname"
5930 elif xxx=`./loc uname blurfl $pth`; $test -f "$xxx" ; then
5931         if uname -m > tmparch 2>&1 ; then
5932                 tarch=`$sed -e 's/ *$//' -e 's/ /_/g' \
5933                         -e 's/$/'"-$osname/" tmparch`
5934         else
5935                 tarch="$osname"
5936         fi
5937         $rm -f tmparch
5938 else
5939         tarch="$osname"
5940 fi
5941 case "$myarchname" in
5942 ''|"$tarch") ;;
5943 *)
5944         echo "(Your architecture name used to be $myarchname.)"
5945         archname=''
5946         ;;
5947 esac
5948 case "$targetarch" in
5949 '') ;;
5950 *)  archname=`echo $targetarch|sed 's,^[^-]*-,,'` ;;
5951 esac
5952 myarchname="$tarch"
5953 case "$archname" in
5954 '') dflt="$tarch";;
5955 *) dflt="$archname";;
5956 esac
5957 rp='What is your architecture name'
5958 . ./myread
5959 archname="$ans"
5960 case "$usethreads" in
5961 $define)
5962         echo "Threads selected." >&4
5963         case "$archname" in
5964         *-thread*) echo "...and architecture name already has -thread." >&4
5965                 ;;
5966         *)      archname="$archname-thread"
5967                 echo "...setting architecture name to $archname." >&4
5968                 ;;
5969         esac
5970         ;;
5971 esac
5972 case "$usemultiplicity" in
5973 $define)
5974         echo "Multiplicity selected." >&4
5975         case "$archname" in
5976         *-multi*) echo "...and architecture name already has -multi." >&4
5977                 ;;
5978         *)      archname="$archname-multi"
5979                 echo "...setting architecture name to $archname." >&4
5980                 ;;
5981         esac
5982         ;;
5983 esac
5984 case "$use64bitint$use64bitall" in
5985 *"$define"*)
5986         case "$archname64" in
5987         '')
5988                 echo "This architecture is naturally 64-bit, not changing architecture name." >&4
5989                 ;;
5990         *)
5991                 case "$use64bitint" in
5992                 "$define") echo "64 bit integers selected." >&4 ;;
5993                 esac
5994                 case "$use64bitall" in
5995                 "$define") echo "Maximal 64 bitness selected." >&4 ;;
5996                 esac
5997                 case "$archname" in
5998                 *-$archname64*) echo "...and architecture name already has $archname64." >&4
5999                         ;;
6000                 *)      archname="$archname-$archname64"
6001                         echo "...setting architecture name to $archname." >&4
6002                         ;;
6003                 esac
6004                 ;;
6005         esac
6006 esac
6007 case "$uselongdouble" in
6008 $define)
6009         echo "Long doubles selected." >&4
6010         case "$longdblsize" in
6011         $doublesize)
6012                 echo "...but long doubles are equal to doubles, not changing architecture name." >&4
6013                 ;;
6014         *)
6015                 case "$archname" in
6016                 *-ld*) echo "...and architecture name already has -ld." >&4
6017                         ;;
6018                 *)      archname="$archname-ld"
6019                         echo "...setting architecture name to $archname." >&4
6020                         ;;
6021                 esac
6022                 ;;
6023         esac
6024         ;;
6025 esac
6026 case "$useperlio" in
6027 $define)
6028         echo "Perlio selected." >&4
6029         ;;
6030 *)
6031         echo "Perlio not selected, using stdio." >&4
6032         case "$archname" in
6033         *-stdio*) echo "...and architecture name already has -stdio." >&4
6034                 ;;
6035         *)      archname="$archname-stdio"
6036                 echo "...setting architecture name to $archname." >&4
6037                 ;;
6038         esac
6039         ;;
6040 esac
6041 if $test -f archname.cbu; then
6042         echo "Your platform has some specific hints for architecture name, using them..."
6043         . ./archname.cbu
6044 fi
6045
6046 : set the prefixit variable, to compute a suitable default value
6047 prefixit='case "$3" in
6048 ""|none)
6049         case "$oldprefix" in
6050         "") eval "$1=\"\$$2\"";;
6051         *)
6052                 case "$3" in
6053                 "") eval "$1=";;
6054                 none)
6055                         eval "tp=\"\$$2\"";
6056                         case "$tp" in
6057                         ""|" ") eval "$1=\"\$$2\"";;
6058                         *) eval "$1=";;
6059                         esac;;
6060                 esac;;
6061         esac;;
6062 *)
6063         eval "tp=\"$oldprefix-\$$2-\""; eval "tp=\"$tp\"";
6064         case "$tp" in
6065         --|/*--|\~*--) eval "$1=\"$prefix/$3\"";;
6066         /*-$oldprefix/*|\~*-$oldprefix/*)
6067                 eval "$1=\`echo \$$2 | sed \"s,^$oldprefix,$prefix,\"\`";;
6068         *) eval "$1=\"\$$2\"";;
6069         esac;;
6070 esac'
6071
6072 : determine installation style
6073 : For now, try to deduce it from prefix unless it is already set.
6074 : Reproduce behavior of 5.005 and earlier, maybe drop that in 5.7.
6075 case "$installstyle" in
6076 '')     case "$prefix" in
6077                 *perl*) dflt='lib';;
6078                 *) dflt='lib/perl5' ;;
6079         esac
6080         ;;
6081 *)      dflt="$installstyle" ;;
6082 esac
6083 : Probably not worth prompting for this since we prompt for all
6084 : the directories individually, and the prompt would be too long and
6085 : confusing anyway.
6086 installstyle=$dflt
6087
6088 : determine where public executables go
6089 echo " "
6090 set dflt bin bin
6091 eval $prefixit
6092 fn=d~
6093 rp='Pathname where the public executables will reside?'
6094 . ./getfile
6095 if $test "X$ansexp" != "X$binexp"; then
6096         installbin=''
6097 fi
6098 prefixvar=bin
6099 : XXX Bug? -- ignores Configure -Dinstallprefix setting.
6100 : XXX If this is fixed, also fix the "start perl" hunk below, which relies on
6101 :     this via initialinstalllocation
6102 . ./setprefixvar
6103
6104 case "$userelocatableinc" in
6105 $define|true|[yY]*)     dflt='y' ;;
6106 *)                      dflt='n' ;;
6107 esac
6108 cat <<EOM
6109
6110 Would you like to build Perl so that the installation is relocatable, so that
6111 library paths in @INC are determined relative to the path of the perl binary?
6112 This is not advised for system Perl installs, or if you need to run setid
6113 scripts or scripts under taint mode.
6114
6115 If this doesn't make any sense to you, just accept the default '$dflt'.
6116 EOM
6117 rp='Use relocatable @INC?'
6118 . ./myread
6119 case "$ans" in
6120 y|Y)    val="$define" ;;
6121 *)      val="$undef"  ;;
6122 esac
6123 set userelocatableinc
6124 eval $setvar
6125
6126 initialinstalllocation="$binexp"
6127 : Default prefix is now "up one level from where the binaries are"
6128 case "$userelocatableinc" in
6129 $define|true|[yY]*)
6130     bin=".../"
6131     binexp=".../"
6132     prefix=".../.."
6133     prefixexp=".../.."
6134     installprefixexp=".../.."
6135     ;;
6136 esac
6137
6138 : determine where private library files go
6139 : Usual default is /usr/local/lib/perl5/$version.
6140 : Also allow things like /opt/perl/lib/$version, since
6141 : /opt/perl/lib/perl5... would be redundant.
6142 : The default "style" setting is made in installstyle.U
6143 case "$installstyle" in
6144 *lib/perl5*) set dflt privlib lib/$package/$version ;;
6145 *)       set dflt privlib lib/$version ;;
6146 esac
6147 eval $prefixit
6148 $cat <<EOM
6149
6150 There are some auxiliary files for $package that need to be put into a
6151 private library directory that is accessible by everyone.
6152
6153 EOM
6154 fn=$binexp
6155 fn=d~+
6156 rp='Pathname where the private library files will reside?'
6157 . ./getfile
6158 prefixvar=privlib
6159 . ./setprefixvar
6160
6161 : set the prefixup variable, to restore leading tilda escape
6162 prefixup='case "$prefixexp" in
6163 "$prefix") ;;
6164 *) eval "$1=\`echo \$$1 | sed \"s,^$prefixexp,$prefix,\"\`";;
6165 esac'
6166
6167 : determine where public architecture dependent libraries go
6168 set archlib archlib
6169 eval $prefixit
6170 : privlib default is /usr/local/lib/$package/$version
6171 : archlib default is /usr/local/lib/$package/$version/$archname
6172 : privlib may have an optional trailing /share.
6173 tdflt=`echo $privlib | $sed 's,/share$,,'`
6174 tdflt=$tdflt/$archname
6175 case "$archlib" in
6176 '')     dflt=$tdflt
6177         ;;
6178 *)      dflt="$archlib"
6179     ;;
6180 esac
6181 $cat <<EOM
6182
6183 $spackage contains architecture-dependent library files.  If you are
6184 sharing libraries in a heterogeneous environment, you might store
6185 these files in a separate location.  Otherwise, you can just include
6186 them with the rest of the public library files.
6187
6188 EOM
6189 fn=$binexp
6190 fn=d+~
6191 rp='Where do you want to put the public architecture-dependent libraries?'
6192 . ./getfile
6193 prefixvar=archlib
6194 . ./setprefixvar
6195 if $test X"$archlib" = X"$privlib"; then
6196         d_archlib="$undef"
6197 else
6198         d_archlib="$define"
6199 fi
6200
6201 : see if setuid scripts can be secure
6202 $cat <<EOM
6203
6204 Some kernels have a bug that prevents setuid #! scripts from being
6205 secure.  Some sites have disabled setuid #! scripts because of this.
6206
6207 First let's decide if your kernel supports secure setuid #! scripts.
6208 (If setuid #! scripts would be secure but have been disabled anyway,
6209 don't say that they are secure if asked.)
6210
6211 EOM
6212
6213 val="$undef"
6214 if $test -d /dev/fd; then
6215         echo "#!$ls" >reflect
6216         chmod +x,u+s reflect
6217         ./reflect >flect 2>&1
6218         if $contains "/dev/fd" flect >/dev/null; then
6219                 echo "Congratulations, your kernel has secure setuid scripts!" >&4
6220                 val="$define"
6221         else
6222                 $cat <<EOM
6223 If you are not sure if they are secure, I can check but I'll need a
6224 username and password different from the one you are using right now.
6225 If you don't have such a username or don't want me to test, simply
6226 enter 'none'.
6227
6228 EOM
6229                 rp='Other username to test security of setuid scripts with?'
6230                 dflt='none'
6231                 . ./myread
6232                 case "$ans" in
6233                 n|none)
6234                         case "$d_suidsafe" in
6235                         '')     echo "I'll assume setuid scripts are *not* secure." >&4
6236                                 dflt=n;;
6237                         "$undef")
6238                                 echo "Well, the $hint value is *not* secure." >&4
6239                                 dflt=n;;
6240                         *)      echo "Well, the $hint value *is* secure." >&4
6241                                 dflt=y;;
6242                         esac
6243                         ;;
6244                 *)
6245                         $rm -f reflect flect
6246                         echo "#!$ls" >reflect
6247                         chmod +x,u+s reflect
6248                         echo >flect
6249                         chmod a+w flect
6250                         echo '"su" will (probably) prompt you for '"$ans's password."
6251                         su $ans -c './reflect >flect'
6252                         if $contains "/dev/fd" flect >/dev/null; then
6253                                 echo "Okay, it looks like setuid scripts are secure." >&4
6254                                 dflt=y
6255                         else
6256                                 echo "I don't think setuid scripts are secure." >&4
6257                                 dflt=n
6258                         fi
6259                         ;;
6260                 esac
6261                 rp='Does your kernel have *secure* setuid scripts?'
6262                 . ./myread
6263                 case "$ans" in
6264                 [yY]*)  val="$define";;
6265                 *)      val="$undef";;
6266                 esac
6267         fi
6268 else
6269         echo "I don't think setuid scripts are secure (no /dev/fd directory)." >&4
6270         echo "(That's for file descriptors, not floppy disks.)"
6271         val="$undef"
6272 fi
6273 set d_suidsafe
6274 eval $setvar
6275
6276 $rm -f reflect flect
6277
6278 : now see if they want to do setuid emulation
6279 echo " "
6280 val="$undef"
6281 case "$d_suidsafe" in
6282 "$define")
6283         val="$undef"
6284         echo "No need to emulate SUID scripts since they are secure here." >&4
6285         ;;
6286 *)
6287         $cat <<EOM
6288 Some systems have disabled setuid scripts, especially systems where
6289 setuid scripts cannot be secure.  On systems where setuid scripts have
6290 been disabled, the setuid/setgid bits on scripts are currently
6291 useless.  It is possible for $package to detect those bits and emulate
6292 setuid/setgid in a secure fashion.  This emulation will only work if
6293 setuid scripts have been disabled in your kernel.
6294
6295 EOM
6296         case "$d_dosuid" in
6297         "$define") dflt=y ;;
6298         *) dflt=n ;;
6299         esac
6300         rp="Do you want to do setuid/setgid emulation?"
6301         . ./myread
6302         case "$ans" in
6303         [yY]*)  val="$define";;
6304         *)      val="$undef";;
6305         esac
6306         ;;
6307 esac
6308 set d_dosuid
6309 eval $setvar
6310
6311 : Find perl5.005 or later.
6312 echo "Looking for a previously installed perl5.005 or later... "
6313 case "$perl5" in
6314 '')     for tdir in `echo "$binexp$path_sep$PATH" | $sed "s/$path_sep/ /g"`; do
6315                 : Check if this perl is recent and can load a simple module
6316                 if $test -x $tdir/perl$exe_ext && $tdir/perl -Mless -e 'use 5.005;' >/dev/null 2>&1; then
6317                         perl5=$tdir/perl
6318                         break;
6319                 elif $test -x $tdir/perl5$exe_ext && $tdir/perl5 -Mless -e 'use 5.005;' >/dev/null 2>&1; then
6320                         perl5=$tdir/perl5
6321                         break;
6322                 fi
6323         done
6324         ;;
6325 *)      perl5="$perl5"
6326         ;;
6327 esac
6328 case "$perl5" in
6329 '')     echo "None found.  That's ok.";;
6330 *)      echo "Using $perl5." ;;
6331 esac
6332
6333 $cat <<EOM
6334
6335 After $package is installed, you may wish to install various
6336 add-on modules and utilities.  Typically, these add-ons will
6337 be installed under $prefix with the rest
6338 of this package.  However, you may wish to install such add-ons
6339 elsewhere under a different prefix.
6340
6341 If you do not wish to put everything under a single prefix, that's
6342 ok.  You will be prompted for the individual locations; this siteprefix
6343 is only used to suggest the defaults.
6344
6345 The default should be fine for most people.
6346
6347 EOM
6348 fn=d~+
6349 rp='Installation prefix to use for add-on modules and utilities?'
6350 : XXX Here might be another good place for an installstyle setting.
6351 case "$siteprefix" in
6352 '') dflt=$prefix ;;
6353 *)  dflt=$siteprefix ;;
6354 esac
6355 . ./getfile
6356 : XXX Prefixit unit does not yet support siteprefix and vendorprefix
6357 oldsiteprefix=''
6358 case "$siteprefix" in
6359 '') ;;
6360 *)      case "$ans" in
6361         "$prefix") ;;
6362         *) oldsiteprefix="$prefix";;
6363         esac
6364         ;;
6365 esac
6366 siteprefix="$ans"
6367 siteprefixexp="$ansexp"
6368
6369 : determine where site specific libraries go.
6370 : Usual default is /usr/local/lib/perl5/site_perl/$version
6371 : The default "style" setting is made in installstyle.U
6372 : XXX No longer works with Prefixit stuff.
6373 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6374 case "$sitelib" in
6375 '') case "$installstyle" in
6376         *lib/perl5*) dflt=$siteprefix/lib/$package/site_$prog/$version ;;
6377         *)       dflt=$siteprefix/lib/site_$prog/$version ;;
6378         esac
6379         ;;
6380 *)      dflt="$sitelib"
6381         ;;
6382 esac
6383 $cat <<EOM
6384
6385 The installation process will create a directory for
6386 site-specific extensions and modules.  Most users find it convenient
6387 to place all site-specific files in this directory rather than in the
6388 main distribution directory.
6389
6390 EOM
6391 fn=d~+
6392 rp='Pathname for the site-specific library files?'
6393 . ./getfile
6394 prefixvar=sitelib
6395 . ./setprefixvar
6396 sitelib_stem=`echo "$sitelibexp" | sed "s,/$version$,,"`
6397
6398 : Determine list of previous versions to include in @INC
6399 $cat > getverlist <<EOPL
6400 #!$perl5 -w
6401 use File::Basename;
6402 \$api_versionstring = "$api_versionstring";
6403 \$version = "$version";
6404 \$stem = "$sitelib_stem";
6405 \$archname = "$archname";
6406 EOPL
6407         $cat >> getverlist <<'EOPL'
6408 # The list found is store twice for each entry: the original name, and
6409 # the binary broken down version as pack "sss", so sorting is easy and
6410 # unambiguous. This will work for all versions that have a maximum of
6411 # three digit groups, separate by '.'s or '_'s. Names are extended with
6412 # ".0.0" to ensure at least three elements for the pack.
6413 #                                       -- H.Merijn Brand (m)'06 23-10-2006
6414
6415 # Can't have leading @ because metaconfig interprets it as a command!
6416 ;@inc_version_list=();
6417 # XXX Redo to do opendir/readdir?
6418 if (-d $stem) {
6419     chdir($stem);
6420     ;@candidates = map {
6421         [ $_, pack "sss", split m/[._]/, "$_.0.0" ] } glob("5.*");
6422 }
6423 else {
6424     ;@candidates = ();
6425 }
6426
6427 ($pversion, $aversion, $vsn5005) = map {
6428     pack "sss", split m/[._]/, "$_.0.0" } $version, $api_versionstring, "5.005";
6429 foreach $d (@candidates) {
6430     if ($d->[1] lt $pversion) {
6431         if ($d->[1] ge $aversion) {
6432             unshift(@inc_version_list, grep { -d } $d->[0]."/$archname", $d->[0]);
6433         }
6434         elsif ($d->[1] ge $vsn5005) {
6435             unshift(@inc_version_list, grep { -d } $d->[0]);
6436         }
6437     }
6438     else {
6439         # Skip newer version.  I.e. don't look in
6440         # 5.7.0 if we're installing 5.6.1.
6441     }
6442 }
6443
6444 if (@inc_version_list) {
6445     print join(' ', @inc_version_list);
6446 }
6447 else {
6448     # Blank space to preserve value for next Configure run.
6449     print " ";
6450 }
6451 EOPL
6452 chmod +x getverlist
6453 case "$inc_version_list" in
6454 '')     if test -x "$perl5$exe_ext"; then
6455                 dflt=`$perl5 getverlist`
6456         else
6457                 dflt='none'
6458         fi
6459         ;;
6460 $undef) dflt='none' ;;
6461 *)  eval dflt=\"$inc_version_list\" ;;
6462 esac
6463 case "$dflt" in
6464 ''|' ') dflt=none ;;
6465 esac
6466 case "$dflt" in
6467 5.005) dflt=none ;;
6468 esac
6469 $cat <<EOM
6470
6471 In order to ease the process of upgrading, this version of perl
6472 can be configured to use modules built and installed with earlier
6473 versions of perl that were installed under $prefix.  Specify here
6474 the list of earlier versions that this version of perl should check.
6475 If Configure detected no earlier versions of perl installed under
6476 $prefix, then the list will be empty.  Answer 'none' to tell perl
6477 to not search earlier versions.
6478
6479 The default should almost always be sensible, so if you're not sure,
6480 just accept the default.
6481 EOM
6482
6483 rp='List of earlier versions to include in @INC?'
6484 . ./myread
6485 case "$ans" in
6486 [Nn]one|''|' '|$undef) inc_version_list=' ' ;;
6487 *) inc_version_list="$ans" ;;
6488 esac
6489 case "$inc_version_list" in
6490 ''|' ')
6491         inc_version_list_init='0'
6492         d_inc_version_list="$undef"
6493         ;;
6494 *)      inc_version_list_init=`echo $inc_version_list |
6495                 $sed -e 's/^/"/' -e 's/ /","/g' -e 's/$/",0/'`
6496         d_inc_version_list="$define"
6497         ;;
6498 esac
6499 $rm -f getverlist
6500
6501 : see if this is a malloc.h system
6502 : we want a real compile instead of Inhdr because some systems have a
6503 : malloc.h that just gives a compile error saying to use stdlib.h instead
6504 echo " "
6505 $cat >try.c <<EOCP
6506 #include <stdlib.h>
6507 #include <malloc.h>
6508 int main () { return 0; }
6509 EOCP
6510 set try
6511 if eval $compile; then
6512     echo "<malloc.h> found." >&4
6513     val="$define"
6514 else
6515     echo "<malloc.h> NOT found." >&4
6516     val="$undef"
6517 fi
6518 $rm -f try.c try
6519 set i_malloc
6520 eval $setvar
6521
6522 : check for void type
6523 echo " "
6524 echo "Checking to see how well your C compiler groks the void type..." >&4
6525 case "$voidflags" in
6526 '')
6527         $cat >try.c <<EOCP
6528 #$i_stdlib I_STDLIB
6529 #ifdef I_STDLIB
6530 #include <stdlib.h>
6531 #endif
6532 #if TRY & 1
6533 void sub() {
6534 #else
6535 sub() {
6536 #endif
6537         extern void moo();      /* function returning void */
6538         void (*goo)();          /* ptr to func returning void */
6539 #if TRY & 8
6540         void *hue;              /* generic ptr */
6541 #endif
6542 #if TRY & 2
6543         void (*foo[10])();
6544 #endif
6545
6546 #if TRY & 4
6547         if(goo == moo) {
6548                 exit(0);
6549         }
6550 #endif
6551         exit(0);
6552 }
6553 int main() { sub(); }
6554 EOCP
6555         if $cc $ccflags -c -DTRY=$defvoidused try.c >.out 2>&1 ; then
6556                 voidflags=$defvoidused
6557         echo "Good.  It appears to support void to the level $package wants.">&4
6558                 if $contains warning .out >/dev/null 2>&1; then
6559                         echo "However, you might get some warnings that look like this:"
6560                         $cat .out
6561                 fi
6562         else
6563 echo "Hmm, your compiler has some difficulty with void. Checking further..." >&4
6564                 if $cc $ccflags -c -DTRY=1 try.c >/dev/null 2>&1; then
6565                         echo "It supports 1..."
6566                         if $cc $ccflags -c -DTRY=3 try.c >/dev/null 2>&1; then
6567                                 echo "It also supports 2..."
6568                                 if $cc $ccflags -c -DTRY=7 try.c >/dev/null 2>&1; then
6569                                         voidflags=7
6570                                         echo "And it supports 4 but not 8 definitely."
6571                                 else
6572                                         echo "It doesn't support 4..."
6573                                         if $cc $ccflags -c -DTRY=11 try.c >/dev/null 2>&1; then
6574                                                 voidflags=11
6575                                                 echo "But it supports 8."
6576                                         else
6577                                                 voidflags=3
6578                                                 echo "Neither does it support 8."
6579                                         fi
6580                                 fi
6581                         else
6582                                 echo "It does not support 2..."
6583                                 if $cc $ccflags -c -DTRY=13 try.c >/dev/null 2>&1; then
6584                                         voidflags=13
6585                                         echo "But it supports 4 and 8."
6586                                 else
6587                                         if $cc $ccflags -c -DTRY=5 try.c >/dev/null 2>&1; then
6588                                                 voidflags=5
6589                                                 echo "And it supports 4 but has not heard about 8."
6590                                         else
6591                                                 echo "However it supports 8 but not 4."
6592                                         fi
6593                                 fi
6594                         fi
6595                 else
6596                         echo "There is no support at all for void."
6597                         voidflags=0
6598                 fi
6599         fi
6600 esac
6601 case "$voidflags" in
6602 "$defvoidused") ;;
6603 *)      $cat >&4 <<'EOM'
6604   Support flag bits are:
6605     1: basic void declarations.
6606     2: arrays of pointers to functions returning void.
6607     4: operations between pointers to and addresses of void functions.
6608     8: generic void pointers.
6609 EOM
6610         dflt="$voidflags";
6611         rp="Your void support flags add up to what?"
6612         . ./myread
6613         voidflags="$ans"
6614         ;;
6615 esac
6616 $rm -f try.* .out
6617
6618 : check for length of pointer
6619 echo " "
6620 case "$ptrsize" in
6621 '')
6622         echo "Checking to see how big your pointers are..." >&4
6623         if test "$voidflags" -gt 7; then
6624                 echo '#define VOID_PTR char *' > try.c
6625         else
6626                 echo '#define VOID_PTR void *' > try.c
6627         fi
6628         $cat >>try.c <<EOCP
6629 #include <stdio.h>
6630 #$i_stdlib I_STDLIB
6631 #ifdef I_STDLIB
6632 #include <stdlib.h>
6633 #endif
6634 int main()
6635 {
6636     printf("%d\n", (int)sizeof(VOID_PTR));
6637     exit(0);
6638 }
6639 EOCP
6640         set try
6641         if eval $compile_ok; then
6642                 ptrsize=`$run ./try`
6643                 echo "Your pointers are $ptrsize bytes long."
6644         else
6645                 dflt='4'
6646                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
6647                 rp="What is the size of a pointer (in bytes)?"
6648                 . ./myread
6649                 ptrsize="$ans"
6650         fi
6651         ;;
6652 esac
6653 $rm -f try.c try
6654 case "$use64bitall" in
6655 "$define"|true|[yY]*)
6656         case "$ptrsize" in
6657         4)      cat <<EOM >&4
6658
6659 *** You have chosen a maximally 64-bit build,
6660 *** but your pointers are only 4 bytes wide.
6661 *** Please rerun Configure without -Duse64bitall.
6662 EOM
6663                 case "$d_quad" in
6664                 define)
6665                         cat <<EOM >&4
6666 *** Since you have quads, you could possibly try with -Duse64bitint.
6667 EOM
6668                         ;;
6669                 esac
6670                 cat <<EOM >&4
6671 *** Cannot continue, aborting.
6672
6673 EOM
6674
6675                 exit 1
6676                 ;;
6677         esac
6678         ;;
6679 esac
6680
6681
6682 : determine whether to use malloc wrapping
6683 echo " "
6684 case "$usemallocwrap" in
6685 [yY]*|true|$define)     dflt='y' ;;
6686 [nN]*|false|$undef)     dflt='n' ;;
6687 *)      case "$usedevel" in
6688         [yY]*|true|$define)     dflt='y' ;;
6689         *) dflt='n' ;;
6690         esac
6691         ;;
6692 esac
6693 rp="Do you wish to wrap malloc calls to protect against potential overflows?"
6694 . ./myread
6695 usemallocwrap="$ans"
6696 case "$ans" in
6697 y*|true)
6698         usemallocwrap="$define" ;;
6699 *)
6700         usemallocwrap="$undef" ;;
6701 esac
6702
6703 : determine which malloc to compile in
6704 echo " "
6705 case "$usemymalloc" in
6706 [yY]*|true|$define)     dflt='y' ;;
6707 [nN]*|false|$undef)     dflt='n' ;;
6708 *)      case "$ptrsize" in
6709         4) dflt='y' ;;
6710         *) dflt='n' ;;
6711         esac
6712         ;;
6713 esac
6714 rp="Do you wish to attempt to use the malloc that comes with $package?"
6715 . ./myread
6716 usemymalloc="$ans"
6717 case "$ans" in
6718 y*|true)
6719         usemymalloc='y'
6720         mallocsrc='malloc.c'
6721         mallocobj="malloc$_o"
6722         d_mymalloc="$define"
6723         case "$libs" in
6724         *-lmalloc*)
6725                 : Remove malloc from list of libraries to use
6726                 echo "Removing unneeded -lmalloc from library list" >&4
6727                 set `echo X $libs | $sed -e 's/-lmalloc / /' -e 's/-lmalloc$//'`
6728                 shift
6729                 libs="$*"
6730                 echo "libs = $libs" >&4
6731                 ;;
6732         esac
6733         ;;
6734 *)
6735         usemymalloc='n'
6736         mallocsrc=''
6737         mallocobj=''
6738         d_mymalloc="$undef"
6739         ;;
6740 esac
6741
6742 : compute the return types of malloc and free
6743 echo " "
6744 $cat >malloc.c <<END
6745 #$i_malloc I_MALLOC
6746 #$i_stdlib I_STDLIB
6747 #include <stdio.h>
6748 #include <sys/types.h>
6749 #ifdef I_MALLOC
6750 #include <malloc.h>
6751 #endif
6752 #ifdef I_STDLIB
6753 #include <stdlib.h>
6754 #endif
6755 #ifdef TRY_MALLOC
6756 void *malloc();
6757 #endif
6758 #ifdef TRY_FREE
6759 void free();
6760 #endif
6761 END
6762 case "$malloctype" in
6763 '')
6764         if $cc $ccflags -c -DTRY_MALLOC malloc.c >/dev/null 2>&1; then
6765                 malloctype='void *'
6766         else
6767                 malloctype='char *'
6768         fi
6769         ;;
6770 esac
6771 echo "Your system wants malloc to return '$malloctype', it would seem." >&4
6772
6773 case "$freetype" in
6774 '')
6775         if $cc $ccflags -c -DTRY_FREE malloc.c >/dev/null 2>&1; then
6776                 freetype='void'
6777         else
6778                 freetype='int'
6779         fi
6780         ;;
6781 esac
6782 echo "Your system uses $freetype free(), it would seem." >&4
6783 $rm -f malloc.[co]
6784 : determine where site specific architecture-dependent libraries go.
6785 : sitelib  default is /usr/local/lib/perl5/site_perl/$version
6786 : sitearch default is /usr/local/lib/perl5/site_perl/$version/$archname
6787 : sitelib may have an optional trailing /share.
6788 case "$sitearch" in
6789 '')     dflt=`echo $sitelib | $sed 's,/share$,,'`
6790         dflt="$dflt/$archname"
6791         ;;
6792 *)      dflt="$sitearch"
6793         ;;
6794 esac
6795 set sitearch sitearch none
6796 eval $prefixit
6797 $cat <<EOM
6798
6799 The installation process will also create a directory for
6800 architecture-dependent site-specific extensions and modules.
6801
6802 EOM
6803 fn=d~+
6804 rp='Pathname for the site-specific architecture-dependent library files?'
6805 . ./getfile
6806 prefixvar=sitearch
6807 . ./setprefixvar
6808 if $test X"$sitearch" = X"$sitelib"; then
6809         d_sitearch="$undef"
6810 else
6811         d_sitearch="$define"
6812 fi
6813
6814 $cat <<EOM
6815
6816 The installation process will also create a directory for
6817 vendor-supplied add-ons.  Vendors who supply perl with their system
6818 may find it convenient to place all vendor-supplied files in this
6819 directory rather than in the main distribution directory.  This will
6820 ease upgrades between binary-compatible maintenance versions of perl.
6821
6822 Of course you may also use these directories in whatever way you see
6823 fit.  For example, you might use them to access modules shared over a
6824 company-wide network.
6825
6826 The default answer should be fine for most people.
6827 This causes further questions about vendor add-ons to be skipped
6828 and no vendor-specific directories will be configured for perl.
6829
6830 EOM
6831 rp='Do you want to configure vendor-specific add-on directories?'
6832 case "$usevendorprefix" in
6833 define|true|[yY]*) dflt=y ;;
6834 *)      : User may have set vendorprefix directly on Configure command line.
6835         case "$vendorprefix" in
6836         ''|' ') dflt=n ;;
6837         *)      dflt=y ;;
6838         esac
6839         ;;
6840 esac
6841 . ./myread
6842 case "$ans" in
6843 [yY]*)  fn=d~+
6844         rp='Installation prefix to use for vendor-supplied add-ons?'
6845         case "$vendorprefix" in
6846         '') dflt='' ;;
6847         *)  dflt=$vendorprefix ;;
6848         esac
6849         . ./getfile
6850         : XXX Prefixit unit does not yet support siteprefix and vendorprefix
6851         oldvendorprefix=''
6852         case "$vendorprefix" in
6853         '') ;;
6854         *)      case "$ans" in
6855                 "$prefix") ;;
6856                 *) oldvendorprefix="$prefix";;
6857                 esac
6858                 ;;
6859         esac
6860         usevendorprefix="$define"
6861         vendorprefix="$ans"
6862         vendorprefixexp="$ansexp"
6863         ;;
6864 *)      usevendorprefix="$undef"
6865         vendorprefix=''
6866         vendorprefixexp=''
6867         ;;
6868 esac
6869
6870 case "$vendorprefix" in
6871 '')     d_vendorlib="$undef"
6872         vendorlib=''
6873         vendorlibexp=''
6874         ;;
6875 *)      d_vendorlib="$define"
6876         : determine where vendor-supplied modules go.
6877         : Usual default is /usr/local/lib/perl5/vendor_perl/$version
6878         case "$vendorlib" in
6879         '')
6880                 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6881                 case "$installstyle" in
6882                 *lib/perl5*) dflt=$vendorprefix/lib/$package/vendor_$prog/$version ;;
6883                 *)           dflt=$vendorprefix/lib/vendor_$prog/$version ;;
6884                 esac
6885                 ;;
6886         *)      dflt="$vendorlib"
6887                 ;;
6888         esac
6889         fn=d~+
6890         rp='Pathname for the vendor-supplied library files?'
6891         . ./getfile
6892         vendorlib="$ans"
6893         vendorlibexp="$ansexp"
6894         ;;
6895 esac
6896 vendorlib_stem=`echo "$vendorlibexp" | sed "s,/$version$,,"`
6897 prefixvar=vendorlib
6898 . ./installprefix
6899
6900 case "$vendorprefix" in
6901 '')     d_vendorarch="$undef"
6902         vendorarch=''
6903         vendorarchexp=''
6904         ;;
6905 *)      d_vendorarch="$define"
6906         : determine where vendor-supplied architecture-dependent libraries go.
6907         : vendorlib  default is /usr/local/lib/perl5/vendor_perl/$version
6908         : vendorarch default is /usr/local/lib/perl5/vendor_perl/$version/$archname
6909         : vendorlib may have an optional trailing /share.
6910         case "$vendorarch" in
6911         '')     dflt=`echo $vendorlib | $sed 's,/share$,,'`
6912                 dflt="$dflt/$archname"
6913                 ;;
6914         *)      dflt="$vendorarch" ;;
6915         esac
6916         fn=d~+
6917         rp='Pathname for vendor-supplied architecture-dependent files?'
6918         . ./getfile
6919         vendorarch="$ans"
6920         vendorarchexp="$ansexp"
6921         ;;
6922 esac
6923 prefixvar=vendorarch
6924 . ./installprefix
6925
6926 : Final catch-all directories to search
6927 $cat <<EOM
6928
6929 Lastly, you can have perl look in other directories for extensions and
6930 modules in addition to those already specified.
6931 These directories will be searched after 
6932         $sitearch 
6933         $sitelib 
6934 EOM
6935 test X"$vendorlib" != "X" && echo '     ' $vendorlib
6936 test X"$vendorarch" != "X" && echo '    ' $vendorarch
6937 echo ' '
6938 case "$otherlibdirs" in
6939 ''|' ') dflt='none' ;;
6940 *)      dflt="$otherlibdirs" ;;
6941 esac
6942 $cat <<EOM
6943 Enter a colon-separated set of extra paths to include in perl's @INC
6944 search path, or enter 'none' for no extra paths.
6945
6946 EOM
6947
6948 rp='Colon-separated list of additional directories for perl to search?'
6949 . ./myread
6950 case "$ans" in
6951 ' '|''|none)    otherlibdirs=' ' ;;     
6952 *)      otherlibdirs="$ans" ;;
6953 esac
6954 case "$otherlibdirs" in
6955 ' ') val=$undef ;;
6956 *)      val=$define ;;
6957 esac
6958 set d_perl_otherlibdirs
6959 eval $setvar
6960
6961 : Cruising for prototypes
6962 echo " "
6963 echo "Checking out function prototypes..." >&4
6964 $cat >prototype.c <<EOCP
6965 #$i_stdlib I_STDLIB
6966 #ifdef I_STDLIB
6967 #include <stdlib.h>
6968 #endif
6969 int main(int argc, char *argv[]) {
6970         exit(0);}
6971 EOCP
6972 if $cc $ccflags -c prototype.c >prototype.out 2>&1 ; then
6973         echo "Your C compiler appears to support function prototypes."
6974         val="$define"
6975 else
6976         echo "Your C compiler doesn't seem to understand function prototypes."
6977         val="$undef"
6978 fi
6979 set prototype
6980 eval $setvar
6981 $rm -f prototype*
6982
6983 case "$prototype" in
6984 "$define") ;;
6985 *)      ansi2knr='ansi2knr'
6986         echo " "
6987         cat <<EOM >&4
6988
6989 $me:  FATAL ERROR:
6990 This version of $package can only be compiled by a compiler that 
6991 understands function prototypes.  Unfortunately, your C compiler 
6992         $cc $ccflags
6993 doesn't seem to understand them.  Sorry about that.
6994
6995 If GNU cc is available for your system, perhaps you could try that instead.  
6996
6997 Eventually, we hope to support building Perl with pre-ANSI compilers.
6998 If you would like to help in that effort, please contact <perlbug@perl.org>.
6999
7000 Aborting Configure now.
7001 EOM
7002         exit 2
7003         ;;
7004 esac
7005
7006 echo " "
7007 case "$extras" in
7008 '') dflt='n';;
7009 *) dflt='y';;
7010 esac
7011 cat <<EOM
7012 Perl can be built with extra modules or bundles of modules which
7013 will be fetched from the CPAN and installed alongside Perl.
7014
7015 Notice that you will need access to the CPAN; either via the Internet,
7016 or a local copy, for example a CD-ROM or a local CPAN mirror.  (You will
7017 be asked later to configure the CPAN.pm module which will in turn do
7018 the installation of the rest of the extra modules or bundles.)
7019
7020 Notice also that if the modules require any external software such as
7021 libraries and headers (the libz library and the zlib.h header for the
7022 Compress::Zlib module, for example) you MUST have any such software
7023 already installed, this configuration process will NOT install such
7024 things for you.
7025
7026 If this doesn't make any sense to you, just accept the default '$dflt'.
7027 EOM
7028 rp='Install any extra modules (y or n)?'
7029 . ./myread
7030 case "$ans" in
7031 y|Y)
7032         cat <<EOM
7033
7034 Please list any extra modules or bundles to be installed from CPAN,
7035 with spaces between the names.  The names can be in any format the
7036 'install' command of CPAN.pm will understand.  (Answer 'none',
7037 without the quotes, to install no extra modules or bundles.)
7038 EOM
7039         rp='Extras?'
7040         dflt="$extras"
7041         . ./myread
7042         extras="$ans"
7043 esac
7044 case "$extras" in
7045 ''|'none')
7046         val=''
7047         $rm -f ../extras.lst
7048         ;;
7049 *)      echo "(Saving the list of extras for later...)"
7050         echo "$extras" > ../extras.lst
7051         val="'$extras'"
7052         ;;
7053 esac
7054 set extras
7055 eval $setvar
7056 echo " "
7057
7058 : determine where html pages for programs go
7059 set html1dir html1dir none
7060 eval $prefixit
7061 $cat <<EOM
7062
7063 If you wish to install html files for programs in $spackage, indicate
7064 the appropriate directory here.  To skip installing html files,
7065 answer "none".
7066 EOM
7067 case "$html1dir" in
7068 ''|none|$undef|' ') dflt=none ;;
7069 *) dflt=$html1dir ;;
7070 esac
7071 fn=dn+~
7072 rp="Directory for the main $spackage html pages?"
7073 . ./getfile
7074 prefixvar=html1dir
7075 . ./setprefixvar
7076 : Use ' ' for none so value is preserved next time through Configure
7077 $test X"$html1dir" = "X" && html1dir=' '
7078
7079 : determine where html pages for libraries and modules go
7080 set html3dir html3dir none
7081 eval $prefixit
7082 $cat <<EOM
7083
7084 If you wish to install html files for modules associated with $spackage,
7085 indicate the appropriate directory here.  To skip installing html files,
7086 answer "none".
7087 EOM
7088 : There is no obvious default.  If they have specified html1dir, then
7089 : try to key off that, possibly changing .../html1 into .../html3.
7090 case "$html3dir" in
7091 '') html3dir=`echo "$html1dir" | $sed 's/1$/3$/'` ;;
7092 *) dflt=$html3dir ;;
7093 esac
7094 fn=dn+~
7095 rp="Directory for the $spackage module html pages?"
7096 . ./getfile
7097 prefixvar=html3dir
7098 . ./setprefixvar
7099 : Use ' ' for none so value is preserved next time through Configure
7100 $test X"$html3dir" = "X" && html3dir=' '
7101
7102 : determine whether to install perl also as /usr/bin/perl
7103
7104 echo " "
7105 if $test -d /usr/bin -a "X$installbin" != X/usr/bin; then
7106         $cat <<EOM
7107 Many scripts expect perl to be installed as /usr/bin/perl.
7108
7109 If you want to, I can install the perl you are about to compile
7110 as /usr/bin/perl (in addition to $bin/perl).
7111 EOM
7112         if test -f /usr/bin/perl; then
7113             $cat <<EOM
7114
7115 However, please note that because you already have a /usr/bin/perl,
7116 overwriting that with a new Perl would very probably cause problems.
7117 Therefore I'm assuming you don't want to do that (unless you insist).
7118
7119 EOM
7120             case "$installusrbinperl" in
7121             "$define"|[yY]*)    dflt='y';;
7122             *)                  dflt='n';;
7123             esac
7124         else
7125             $cat <<EOM
7126
7127 Since you don't have a /usr/bin/perl I'm assuming creating one is okay.
7128
7129 EOM
7130             case "$installusrbinperl" in
7131             "$undef"|[nN]*)     dflt='n';;
7132             *)                  dflt='y';;
7133             esac
7134         fi
7135         rp="Do you want to install perl as /usr/bin/perl?"
7136         . ./myread
7137         case "$ans" in
7138         [yY]*)  val="$define";;
7139         *)      val="$undef" ;;
7140         esac
7141 else
7142         val="$undef"
7143 fi
7144 set installusrbinperl
7145 eval $setvar
7146
7147 echo " "
7148 echo "Checking for GNU C Library..." >&4
7149 cat >try.c <<'EOCP'
7150 /* Find out version of GNU C library.  __GLIBC__ and __GLIBC_MINOR__
7151    alone are insufficient to distinguish different versions, such as
7152    2.0.6 and 2.0.7.  The function gnu_get_libc_version() appeared in
7153    libc version 2.1.0.      A. Dougherty,  June 3, 2002.
7154 */
7155 #include <stdio.h>
7156 int main(void)
7157 {
7158 #ifdef __GLIBC__
7159 #   ifdef __GLIBC_MINOR__
7160 #       if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1 && !defined(__cplusplus)
7161 #           include <gnu/libc-version.h>
7162             printf("%s\n",  gnu_get_libc_version());
7163 #       else
7164             printf("%d.%d\n",  __GLIBC__, __GLIBC_MINOR__);
7165 #       endif
7166 #   else
7167         printf("%d\n",  __GLIBC__);
7168 #   endif
7169     return 0;
7170 #else
7171     return 1;
7172 #endif
7173 }
7174 EOCP
7175 set try
7176 if eval $compile_ok && $run ./try > glibc.ver; then
7177         val="$define"
7178         gnulibc_version=`$cat glibc.ver`
7179         echo "You are using the GNU C Library version $gnulibc_version"
7180 else
7181         val="$undef"
7182         gnulibc_version=''
7183         echo "You are not using the GNU C Library"
7184 fi
7185 $rm -f try try.* glibc.ver
7186 set d_gnulibc
7187 eval $setvar
7188
7189 : see if nm is to be used to determine whether a symbol is defined or not
7190 case "$usenm" in
7191 '')
7192         dflt=''
7193         case "$d_gnulibc" in
7194         "$define")
7195                 echo " "
7196                 echo "nm probably won't work on the GNU C Library." >&4
7197                 dflt=n
7198                 ;;
7199         esac
7200         case "$dflt" in
7201         '') 
7202                 if $test "$osname" = aix -a "X$PASE" != "Xdefine" -a ! -f /lib/syscalls.exp; then
7203                         echo " "
7204                         echo "Whoops!  This is an AIX system without /lib/syscalls.exp!" >&4
7205                         echo "'nm' won't be sufficient on this sytem." >&4
7206                         dflt=n
7207                 fi
7208                 ;;
7209         esac
7210         case "$dflt" in
7211         '') dflt=`$egrep 'inlibc|csym' $rsrc/Configure | wc -l 2>/dev/null`
7212                 if $test $dflt -gt 20; then
7213                         dflt=y
7214                 else
7215                         dflt=n
7216                 fi
7217                 ;;
7218         esac
7219         ;;
7220 *)
7221         case "$usenm" in
7222         true|$define) dflt=y;;
7223         *) dflt=n;;
7224         esac
7225         ;;
7226 esac
7227 $cat <<EOM
7228
7229 I can use $nm to extract the symbols from your C libraries. This
7230 is a time consuming task which may generate huge output on the disk (up
7231 to 3 megabytes) but that should make the symbols extraction faster. The
7232 alternative is to skip the 'nm' extraction part and to compile a small
7233 test program instead to determine whether each symbol is present. If
7234 you have a fast C compiler and/or if your 'nm' output cannot be parsed,
7235 this may be the best solution.
7236
7237 You probably shouldn't let me use 'nm' if you are using the GNU C Library.
7238
7239 EOM
7240 rp="Shall I use $nm to extract C symbols from the libraries?"
7241 . ./myread
7242 case "$ans" in
7243 [Nn]*) usenm=false;;
7244 *) usenm=true;;
7245 esac
7246
7247 runnm=$usenm
7248 case "$reuseval" in
7249 true) runnm=false;;
7250 esac
7251
7252 : nm options which may be necessary
7253 case "$nm_opt" in
7254 '') if $test -f /mach_boot; then
7255                 nm_opt=''       # Mach
7256         elif $test -d /usr/ccs/lib; then
7257                 nm_opt='-p'     # Solaris (and SunOS?)
7258         elif $test -f /dgux; then
7259                 nm_opt='-p'     # DG-UX
7260         elif $test -f /lib64/rld; then
7261                 nm_opt='-p'     # 64-bit Irix
7262         else
7263                 nm_opt=''
7264         fi;;
7265 esac
7266
7267 : nm options which may be necessary for shared libraries but illegal
7268 : for archive libraries.  Thank you, Linux.
7269 case "$nm_so_opt" in
7270 '')     case "$myuname" in
7271         *linux*|gnu*)
7272                 if $nm --help | $grep 'dynamic' > /dev/null 2>&1; then
7273                         nm_so_opt='--dynamic'
7274                 fi
7275                 ;;
7276         esac
7277         ;;
7278 esac
7279
7280 case "$runnm" in
7281 true)
7282 : get list of predefined functions in a handy place
7283 echo " "
7284 case "$libc" in
7285 '') libc=unknown
7286         case "$libs" in
7287         *-lc_s*) libc=`./loc libc_s$_a $libc $libpth`
7288         esac
7289         ;;
7290 esac
7291 case "$libs" in
7292 '') ;;
7293 *)  for thislib in $libs; do
7294         case "$thislib" in
7295         -lc|-lc_s)
7296                 : Handle C library specially below.
7297                 ;;
7298         -l*)
7299                 thislib=`echo $thislib | $sed -e 's/^-l//'`
7300                 if try=`./loc lib$thislib.$so.'*' X $libpth`; $test -f "$try"; then
7301                         :
7302                 elif try=`./loc lib$thislib.$so X $libpth`; $test -f "$try"; then
7303                         :
7304                 elif try=`./loc lib$thislib$_a X $libpth`; $test -f "$try"; then
7305                         :
7306                 elif try=`./loc $thislib$_a X $libpth`; $test -f "$try"; then
7307                         :
7308                 elif try=`./loc lib$thislib X $libpth`; $test -f "$try"; then
7309                         :
7310                 elif try=`./loc $thislib X $libpth`; $test -f "$try"; then
7311                         :
7312                 elif try=`./loc Slib$thislib$_a X $xlibpth`; $test -f "$try"; then
7313                         :
7314                 else
7315                         try=''
7316                 fi
7317                 libnames="$libnames $try"
7318                 ;;
7319         *) libnames="$libnames $thislib" ;;
7320         esac
7321         done
7322         ;;
7323 esac
7324 xxx=normal
7325 case "$libc" in
7326 unknown)
7327         set /lib/libc.$so
7328         for xxx in $libpth; do
7329                 $test -r $1 || set $xxx/libc.$so
7330                 : The messy sed command sorts on library version numbers.
7331                 $test -r $1 || \
7332                         set `echo blurfl; echo $xxx/libc.$so.[0-9]* | \
7333                         tr ' ' $trnl | egrep -v '\.[A-Za-z]*$' | $sed -e '
7334                                 h
7335                                 s/[0-9][0-9]*/0000&/g
7336                                 s/0*\([0-9][0-9][0-9][0-9][0-9]\)/\1/g
7337                                 G
7338                                 s/\n/ /' | \
7339                          $sort | $sed -e 's/^.* //'`
7340                 eval set \$$#
7341         done
7342         $test -r $1 || set /usr/ccs/lib/libc.$so
7343         $test -r $1 || set /lib/libsys_s$_a
7344         ;;
7345 *)
7346         set blurfl
7347         ;;
7348 esac
7349 if $test -r "$1"; then
7350         echo "Your (shared) C library seems to be in $1."
7351         libc="$1"
7352 elif $test -r /lib/libc && $test -r /lib/clib; then
7353         echo "Your C library seems to be in both /lib/clib and /lib/libc."
7354         xxx=apollo
7355         libc='/lib/clib /lib/libc'
7356         if $test -r /lib/syslib; then
7357                 echo "(Your math library is in /lib/syslib.)"
7358                 libc="$libc /lib/syslib"
7359         fi
7360 elif $test -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
7361         echo "Your C library seems to be in $libc, as you said before."
7362 elif $test -r $incpath/usr/lib/libc$_a; then
7363         libc=$incpath/usr/lib/libc$_a;
7364         echo "Your C library seems to be in $libc.  That's fine."
7365 elif $test -r /lib/libc$_a; then
7366         libc=/lib/libc$_a;
7367         echo "Your C library seems to be in $libc.  You're normal."
7368 else
7369         if tans=`./loc libc$_a blurfl/dyick $libpth`; $test -r "$tans"; then
7370                 :
7371         elif tans=`./loc libc blurfl/dyick $libpth`; $test -r "$tans"; then
7372                 libnames="$libnames "`./loc clib blurfl/dyick $libpth`
7373         elif tans=`./loc clib blurfl/dyick $libpth`; $test -r "$tans"; then
7374                 :
7375         elif tans=`./loc Slibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
7376                 :
7377         elif tans=`./loc Mlibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
7378                 :
7379         else
7380                 tans=`./loc Llibc$_a blurfl/dyick $xlibpth`
7381         fi
7382         if $test -r "$tans"; then
7383                 echo "Your C library seems to be in $tans, of all places."
7384                 libc=$tans
7385         else
7386                 libc='blurfl'
7387         fi
7388 fi
7389 if $test $xxx = apollo -o -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
7390         dflt="$libc"
7391         cat <<EOM
7392
7393 If the guess above is wrong (which it might be if you're using a strange
7394 compiler, or your machine supports multiple models), you can override it here.
7395
7396 EOM
7397 else
7398         dflt=''
7399         echo $libpth | $tr ' ' $trnl | $sort | $uniq > libpath
7400         cat >&4 <<EOM
7401 I can't seem to find your C library.  I've looked in the following places:
7402
7403 EOM
7404         $sed 's/^/      /' libpath
7405         cat <<EOM
7406
7407 None of these seems to contain your C library. I need to get its name...
7408
7409 EOM
7410 fi
7411 fn=f
7412 rp='Where is your C library?'
7413 . ./getfile
7414 libc="$ans"
7415
7416 echo " "
7417 echo $libc $libnames | $tr ' ' $trnl | $sort | $uniq > libnames
7418 set X `cat libnames`
7419 shift
7420 xxx=files
7421 case $# in 1) xxx=file; esac
7422 echo "Extracting names from the following $xxx for later perusal:" >&4
7423 echo " "
7424 $sed 's/^/      /' libnames >&4
7425 echo " "
7426 $echo $n "This may take a while...$c" >&4
7427
7428 for file in $*; do
7429         case $file in
7430         *$so*) $nm $nm_so_opt $nm_opt $file 2>/dev/null;;
7431         *) $nm $nm_opt $file 2>/dev/null;;
7432         esac
7433 done >libc.tmp
7434
7435 $echo $n ".$c"
7436 $grep fprintf libc.tmp > libc.ptf
7437 xscan='eval "<libc.ptf $com >libc.list"; $echo $n ".$c" >&4'
7438 xrun='eval "<libc.tmp $com >libc.list"; echo "done." >&4'
7439 xxx='[ADTSIW]'
7440 if com="$sed -n -e 's/__IO//' -e 's/^.* $xxx  *//p'";\
7441         eval $xscan;\
7442         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7443                 eval $xrun
7444 elif com="$sed -n -e 's/^__*//' -e 's/^\([a-zA-Z_0-9$]*\).*xtern.*/\1/p'";\
7445         eval $xscan;\
7446         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7447                 eval $xrun
7448 elif com="$sed -n -e '/|UNDEF/d' -e '/FUNC..GL/s/^.*|__*//p'";\
7449         eval $xscan;\
7450         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7451                 eval $xrun
7452 elif com="$sed -n -e 's/^.* D __*//p' -e 's/^.* D //p'";\
7453         eval $xscan;\
7454         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7455                 eval $xrun
7456 elif com="$sed -n -e 's/^_//' -e 's/^\([a-zA-Z_0-9]*\).*xtern.*text.*/\1/p'";\
7457         eval $xscan;\
7458         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7459                 eval $xrun
7460 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p'";\
7461         eval $xscan;\
7462         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7463                 eval $xrun
7464 elif com="$grep '|' | $sed -n -e '/|COMMON/d' -e '/|DATA/d' \
7465                                 -e '/ file/d' -e 's/^\([^       ]*\).*/\1/p'";\
7466         eval $xscan;\
7467         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7468                 eval $xrun
7469 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p' -e 's/^.*|FUNC |WEAK .*|//p'";\
7470         eval $xscan;\
7471         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7472                 eval $xrun
7473 elif com="$sed -n -e 's/^__//' -e '/|Undef/d' -e '/|Proc/s/ .*//p'";\
7474         eval $xscan;\
7475         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7476                 eval $xrun
7477 elif com="$sed -n -e 's/^.*|Proc .*|Text *| *//p'";\
7478         eval $xscan;\
7479         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7480                 eval $xrun
7481 elif com="$sed -n -e '/Def. Text/s/.* \([^ ]*\)\$/\1/p'";\
7482         eval $xscan;\
7483         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7484                 eval $xrun
7485 elif com="$sed -n -e 's/^[-0-9a-f ]*_\(.*\)=.*/\1/p'";\
7486         eval $xscan;\
7487         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7488                 eval $xrun
7489 elif com="$sed -n -e 's/.*\.text n\ \ \ \.//p'";\
7490         eval $xscan;\
7491         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7492                 eval $xrun
7493 elif com="sed -n -e 's/^__.*//' -e 's/[       ]*D[    ]*[0-9]*.*//p'";\
7494         eval $xscan;\
7495         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7496                 eval $xrun
7497 else
7498         $nm -p $* 2>/dev/null >libc.tmp
7499         $grep fprintf libc.tmp > libc.ptf
7500         if com="$sed -n -e 's/^.* [ADTSIW]  *_[_.]*//p' -e 's/^.* [ADTSIW] //p'";\
7501                 eval $xscan; $contains '^fprintf$' libc.list >/dev/null 2>&1
7502         then
7503                 nm_opt='-p'
7504                 eval $xrun
7505         else
7506                 echo " "
7507                 echo "$nm didn't seem to work right. Trying $ar instead..." >&4
7508                 com=''
7509                 if $ar t $libc > libc.tmp && $contains '^fprintf$' libc.tmp >/dev/null 2>&1; then
7510                         for thisname in $libnames $libc; do
7511                                 $ar t $thisname >>libc.tmp
7512                         done
7513                         $sed -e "s/\\$_o\$//" < libc.tmp > libc.list
7514                         echo "Ok." >&4
7515                 elif test "X$osname" = "Xos2" && $ar tv $libc > libc.tmp; then
7516                         # Repeat libc to extract forwarders to DLL entries too
7517                         for thisname in $libnames $libc; do
7518                                 $ar tv $thisname >>libc.tmp
7519                                 # Revision 50 of EMX has bug in $ar.
7520                                 # it will not extract forwarders to DLL entries
7521                                 # Use emximp which will extract exactly them.
7522                                 emximp -o tmp.imp $thisname \
7523                                     2>/dev/null && \
7524                                     $sed -e 's/^\([_a-zA-Z0-9]*\) .*$/\1/p' \
7525                                     < tmp.imp >>libc.tmp
7526                                 $rm tmp.imp
7527                         done
7528                         $sed -e "s/\\$_o\$//" -e 's/^ \+//' < libc.tmp > libc.list
7529                         echo "Ok." >&4
7530                 else
7531                         echo "$ar didn't seem to work right." >&4
7532                         echo "Maybe this is a Cray...trying bld instead..." >&4
7533                         if bld t $libc | $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" > libc.list
7534                         then
7535                                 for thisname in $libnames; do
7536                                         bld t $libnames | \
7537                                         $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" >>libc.list
7538                                         $ar t $thisname >>libc.tmp
7539                                 done
7540                                 echo "Ok." >&4
7541                         else
7542                                 echo "That didn't work either.  Giving up." >&4
7543                                 exit 1
7544                         fi
7545                 fi
7546         fi
7547 fi
7548 nm_extract="$com"
7549 case "$PASE" in
7550 define)
7551     echo " "
7552     echo "Since you are compiling for PASE, extracting more symbols from libc.a ...">&4
7553     dump -Tv /lib/libc.a | awk '$7 == "/unix" {print $5 " " $8}' | grep "^SV" | awk '{print $2}' >> libc.list
7554     ;;
7555 *)  if $test -f /lib/syscalls.exp; then
7556         echo " "
7557         echo "Also extracting names from /lib/syscalls.exp for good ole AIX..." >&4
7558         $sed -n 's/^\([^        ]*\)[   ]*syscall[0-9]*[        ]*$/\1/p' /lib/syscalls.exp >>libc.list
7559     fi
7560     ;;
7561 esac
7562 ;;
7563 esac
7564 $rm -f libnames libpath
7565
7566 : see if dld is available
7567 set dld.h i_dld
7568 eval $inhdr
7569
7570 : is a C symbol defined?
7571 csym='tlook=$1;
7572 case "$3" in
7573 -v) tf=libc.tmp; tdc="";;
7574 -a) tf=libc.tmp; tdc="[]";;
7575 *) tlook="^$1\$"; tf=libc.list; tdc="()";;
7576 esac;
7577 tx=yes;
7578 case "$reuseval-$4" in
7579 true-) ;;
7580 true-*) tx=no; eval "tval=\$$4"; case "$tval" in "") tx=yes;; esac;;
7581 esac;
7582 case "$tx" in
7583 yes)
7584         tval=false;
7585         if $test "$runnm" = true; then
7586                 if $contains $tlook $tf >/dev/null 2>&1; then
7587                         tval=true;
7588                 elif $test "$mistrustnm" = compile -o "$mistrustnm" = run; then
7589                         echo "void *(*(p()))$tdc { extern void *$1$tdc; return &$1; } int main() { if(p()) return(0); else return(1); }"> try.c;
7590                         $cc -o try $optimize $ccflags $ldflags try.c >/dev/null 2>&1 $libs && tval=true;
7591                         $test "$mistrustnm" = run -a -x try && { $run ./try$_exe >/dev/null 2>&1 || tval=false; };
7592                         $rm -f try$_exe try.c core core.* try.core;
7593                 fi;
7594         else
7595                 echo "void *(*(p()))$tdc { extern void *$1$tdc; return &$1; } int main() { if(p()) return(0); else return(1); }"> try.c;
7596                 $cc -o try $optimize $ccflags $ldflags try.c $libs >/dev/null 2>&1 && tval=true;
7597                 $rm -f try$_exe try.c;
7598         fi;
7599         ;;
7600 *)
7601         case "$tval" in
7602         $define) tval=true;;
7603         *) tval=false;;
7604         esac;
7605         ;;
7606 esac;
7607 eval "$2=$tval"'
7608
7609 : define an is-in-libc? function
7610 inlibc='echo " "; td=$define; tu=$undef;
7611 sym=$1; var=$2; eval "was=\$$2";
7612 tx=yes;
7613 case "$reuseval$was" in
7614 true) ;;
7615 true*) tx=no;;
7616 esac;
7617 case "$tx" in
7618 yes)
7619         set $sym tres -f;
7620         eval $csym;
7621         case "$tres" in
7622         true)
7623                 echo "$sym() found." >&4;
7624                 case "$was" in $undef) . ./whoa; esac; eval "$var=\$td";;
7625         *)
7626                 echo "$sym() NOT found." >&4;
7627                 case "$was" in $define) . ./whoa; esac; eval "$var=\$tu";;
7628         esac;;
7629 *)
7630         case "$was" in
7631         $define) echo "$sym() found." >&4;;
7632         *) echo "$sym() NOT found." >&4;;
7633         esac;;
7634 esac'
7635
7636
7637 echo " "
7638 echo "Checking for C++..." >&4
7639 cat >try.c <<'EOCP'
7640 #include <stdio.h>
7641 int main(void)
7642 {
7643 #ifdef __cplusplus
7644     printf("define\n");
7645 #else
7646     printf("undef\n");
7647 #endif
7648     return 0;
7649 }
7650 EOCP
7651 set try
7652 if eval $compile_ok && $run ./try >cplusplus$$; then
7653         val=`$cat cplusplus$$`
7654         echo "You are using a C++ compiler."
7655 else
7656         val="$undef"
7657         echo "You are not using a C++ compiler."
7658 fi
7659 $rm -f try try.* cplusplus$$
7660 set d_cplusplus
7661 eval $setvar
7662
7663 : see if dlopen exists
7664 xxx_runnm="$runnm"
7665 xxx_ccflags="$ccflags"
7666 runnm=false
7667 : with g++ one needs -shared to get is-in-libc to work for dlopen
7668 case "$gccversion" in
7669 '')     ;;
7670 *)      case "$d_cplusplus" in
7671         "$define") ccflags="$ccflags -shared" ;;
7672         esac
7673         ;;
7674 esac
7675 set dlopen d_dlopen
7676 eval $inlibc
7677 runnm="$xxx_runnm"
7678 ccflags="$xxx_ccflags"
7679
7680 : see if this is a unistd.h system
7681 set unistd.h i_unistd
7682 eval $inhdr
7683
7684 : determine which dynamic loading, if any, to compile in
7685 echo " "
7686 dldir="ext/DynaLoader"
7687 case "$usedl" in
7688 $define|y|true)
7689         dflt='y'
7690         usedl="$define"
7691         ;;
7692 $undef|n|false)
7693         dflt='n'
7694         usedl="$undef"
7695         ;;
7696 *) 
7697         dflt='n'
7698         case "$d_dlopen" in
7699             $define) dflt='y' ;;
7700         esac
7701         case "$i_dld" in
7702             $define) dflt='y' ;;
7703         esac
7704         : Does a dl_xxx.xs file exist for this operating system
7705         $test -f $rsrc/$dldir/dl_${osname}.xs && dflt='y'
7706         ;;
7707 esac
7708 rp="Do you wish to use dynamic loading?"
7709 . ./myread
7710 usedl="$ans"
7711 case "$ans" in
7712 y*) usedl="$define"
7713         case "$dlsrc" in
7714         '')
7715                 if $test -f $rsrc/$dldir/dl_${osname}.xs ; then
7716                         dflt="$dldir/dl_${osname}.xs"
7717                 elif $test "$d_dlopen" = "$define" ; then
7718                         dflt="$dldir/dl_dlopen.xs"
7719                 elif $test "$i_dld" = "$define" ; then
7720                         dflt="$dldir/dl_dld.xs"
7721                 else
7722                         dflt=''
7723                 fi
7724                 ;;
7725         *)      dflt="$dldir/$dlsrc"
7726                 ;;
7727         esac
7728     echo "The following dynamic loading files are available:"
7729         : Can not go over to $dldir because getfile has path hard-coded in.
7730         tdir=`pwd`; cd "$rsrc"; $ls -C $dldir/dl*.xs; cd "$tdir"
7731         rp="Source file to use for dynamic loading"
7732         fn="fne"
7733         gfpth="$src"
7734         . ./getfile
7735         usedl="$define"
7736         : emulate basename
7737         dlsrc=`echo $ans | $sed -e 's%.*/\([^/]*\)$%\1%'`
7738
7739         $cat << EOM
7740
7741 Some systems may require passing special flags to $cc -c to
7742 compile modules that will be used to create a shared library.
7743 To use no flags, say "none".
7744
7745 EOM
7746     case "$cccdlflags" in
7747     '') case "$gccversion" in
7748                 '') case "$osname" in
7749                         hpux)   dflt='+z' ;;
7750                         next)   dflt='none' ;;
7751                         irix*)  dflt='-KPIC' ;;
7752                         svr4*|esix*|solaris|nonstopux) dflt='-KPIC' ;;
7753                         sunos)  dflt='-pic' ;;
7754                         *)      dflt='none' ;;
7755                     esac
7756                         ;;
7757                 *)  case "$osname" in
7758                         darwin) dflt='none' ;;
7759                         svr4*|esix*|solaris|nonstopux) dflt='-fPIC' ;;
7760                         *)      dflt='-fpic' ;;
7761                     esac ;;
7762             esac ;;
7763         ' ') dflt='none' ;;
7764     *)  dflt="$cccdlflags" ;;
7765     esac
7766     rp="Any special flags to pass to $cc -c to compile shared library modules?"
7767     . ./myread
7768     case "$ans" in
7769     none) cccdlflags=' ' ;;
7770     *) cccdlflags="$ans" ;;
7771     esac
7772
7773     cat << EOM
7774
7775 Some systems use ld to create libraries that can be dynamically loaded,
7776 while other systems (such as those using ELF) use $cc.
7777
7778 EOM
7779         case "$ld" in
7780         '')     $cat >try.c <<EOM
7781 /* Test for whether ELF binaries are produced */
7782 #include <fcntl.h>
7783 #$i_stdlib I_STDLIB
7784 #ifdef I_STDLIB
7785 #include <stdlib.h>
7786 #endif
7787 #$i_unistd I_UNISTD
7788 #ifdef I_UNISTD
7789 #include <unistd.h>
7790 #endif
7791 int main() {
7792         char b[4];
7793         int i = open("a.out",O_RDONLY);
7794         if(i == -1) 
7795                 exit(1); /* fail */
7796         if(read(i,b,4)==4 && b[0]==127 && b[1]=='E' && b[2]=='L' && b[3]=='F')
7797                 exit(0); /* succeed (yes, it's ELF) */
7798         else
7799                 exit(1); /* fail */
7800 }
7801 EOM
7802                 if $cc $ccflags $ldflags try.c >/dev/null 2>&1 && $run ./a.out; then
7803                         cat <<EOM
7804 You appear to have ELF support.  I'll use $cc to build dynamic libraries.
7805 EOM
7806                         dflt="$cc"
7807                 else
7808                         echo "I'll use ld to build dynamic libraries."
7809                         dflt='ld'
7810                 fi
7811                 rm -f try.c a.out
7812                 ;;
7813         *)      dflt="$ld"
7814                 ;;
7815         esac
7816
7817     rp="What command should be used to create dynamic libraries?"
7818     . ./myread
7819         ld="$ans"
7820
7821     cat << EOM
7822
7823 Some systems may require passing special flags to $ld to create a
7824 library that can be dynamically loaded.  If your ld flags include
7825 -L/other/path options to locate libraries outside your loader's normal
7826 search path, you may need to specify those -L options here as well.  To
7827 use no flags, say "none".
7828
7829 EOM
7830     case "$lddlflags" in
7831     '') case "$osname" in
7832                         beos) dflt='-nostart' ;;
7833                         hpux) dflt='-b';
7834                               case "$gccversion" in
7835                               '') dflt="$dflt +vnocompatwarnings" ;;
7836                               esac
7837                               ;;        
7838                         linux|irix*|gnu*)       dflt='-shared' ;;
7839                         next)  dflt='none' ;;
7840                         solaris) dflt='-G' ;;
7841                         sunos) dflt='-assert nodefinitions' ;;
7842                         svr4*|esix*|nonstopux) dflt="-G $ldflags" ;;
7843                 *)     dflt='none' ;;
7844                         esac
7845                         ;;
7846     *) dflt="$lddlflags" ;;
7847     esac
7848
7849         : Try to guess additional flags to pick up local libraries.
7850         : Be careful not to append to a plain 'none'
7851         case "$dflt" in
7852         none) dflt='' ;;
7853         esac
7854         for thisflag in $ldflags; do
7855                 case "$thisflag" in
7856                 -L*|-R*|-Wl,-R*)
7857                         case " $dflt " in
7858                         *" $thisflag "*) ;;
7859                         *) dflt="$dflt $thisflag" ;;
7860                         esac
7861                         ;;
7862                 esac
7863         done
7864
7865         case "$dflt" in
7866         ''|' ') dflt='none' ;;
7867         esac
7868
7869     rp="Any special flags to pass to $ld to create a dynamically loaded library?"
7870     . ./myread
7871     case "$ans" in
7872     none) lddlflags=' ' ;;
7873     *) lddlflags="$ans" ;;
7874     esac
7875
7876         cat <<EOM
7877
7878 Some systems may require passing special flags to $cc to indicate that
7879 the resulting executable will use dynamic linking.  To use no flags,
7880 say "none".
7881
7882 EOM
7883     case "$ccdlflags" in
7884     '') case "$osname" in
7885             linux|hpux|gnu*)    dflt='-Wl,-E' ;;
7886             next|sunos) dflt='none' ;;
7887             *)          dflt='none' ;;
7888             esac ;;
7889     ' ')  dflt='none' ;;
7890     *)  dflt="$ccdlflags" ;;
7891     esac
7892     rp="Any special flags to pass to $cc to use dynamic linking?"
7893     . ./myread
7894     case "$ans" in
7895     none) ccdlflags=' ' ;;
7896     *) ccdlflags="$ans" ;;
7897     esac
7898     ;;
7899 *)  usedl="$undef"
7900         ld='ld'
7901     dlsrc='dl_none.xs'
7902     lddlflags=''
7903     ccdlflags=''
7904     ;;
7905 esac
7906
7907 also=''
7908 case "$usedl" in
7909 $undef)
7910         # No dynamic loading being used, so don't bother even to prompt.
7911         useshrplib='false'
7912         ;;
7913 *)      case "$useshrplib" in
7914         '')     case "$osname" in
7915                 svr4*|nonstopux|dgux|dynixptx|esix|powerux|beos|cygwin*)
7916                         dflt=y
7917                         also='Building a shared libperl is required for dynamic loading to work on your system.'
7918                         ;;
7919                 next*)
7920                         case "$osvers" in
7921                         4*)     dflt=y
7922                                 also='Building a shared libperl is needed for MAB support.'
7923                                 ;;
7924                         *)      dflt=n
7925                                 ;;
7926                         esac
7927                         ;;
7928                 *)      dflt=n
7929                         ;;
7930                 esac
7931                 ;;
7932         $define|true|[Yy]*)
7933                 dflt=y
7934                 ;;
7935         *)      dflt=n
7936                 ;;
7937         esac
7938         $cat << EOM
7939
7940 The perl executable is normally obtained by linking perlmain.c with
7941 libperl${_a}, any static extensions (usually just DynaLoader), and
7942 any other libraries needed on this system (such as -lm, etc.).  Since
7943 your system supports dynamic loading, it is probably possible to build
7944 a shared libperl.$so.  If you will have more than one executable linked
7945 to libperl.$so, this will significantly reduce the size of each
7946 executable, but it may have a noticeable effect on performance.  The
7947 default is probably sensible for your system.
7948 $also
7949
7950 EOM
7951         rp="Build a shared libperl.$so (y/n)"
7952         . ./myread
7953         case "$ans" in
7954         true|$define|[Yy]*)
7955                 useshrplib='true'  ;;
7956         *)      useshrplib='false' ;;
7957         esac
7958         ;;
7959 esac
7960
7961 case "$useshrplib" in
7962 true)
7963         case "$libperl" in
7964         '')
7965                 # Figure out a good name for libperl.so.  Since it gets stored in
7966                 # a version-specific architecture-dependent library, the version
7967                 # number isn't really that important, except for making cc/ld happy.
7968                 #
7969                 # A name such as libperl.so.3.1
7970                 majmin="libperl.$so.$patchlevel.$subversion"
7971                 # A name such as libperl.so.301
7972                 majonly=`echo $patchlevel $subversion |
7973                         $awk '{printf "%d%02d", $1, $2}'`
7974                 majonly=libperl.$so.$majonly
7975                 # I'd prefer to keep the os-specific stuff here to a minimum, and
7976                 # rely on figuring it out from the naming of libc.
7977                 case "${osname}${osvers}" in
7978                 next4*)
7979                         dflt=libperl.5.$so
7980                         # XXX How handle the --version stuff for MAB?
7981                         ;;
7982                 linux*|gnu*)  # ld won't link with a bare -lperl otherwise.
7983                         dflt=libperl.$so
7984                         ;;
7985                 cygwin*) # ld links against an importlib
7986                         dflt=libperl$lib_ext
7987                         ;;
7988                 *)      # Try to guess based on whether libc has major.minor.
7989                         case "$libc" in
7990                         *libc.$so.[0-9]*.[0-9]*) dflt=$majmin ;;
7991                         *libc.$so.[0-9]*) dflt=$majonly ;;
7992                         *)      dflt=libperl.$so ;;
7993                         esac
7994                         ;;
7995                 esac
7996                 ;;
7997         *)      dflt=$libperl
7998                 ;;
7999         esac
8000         cat << EOM
8001
8002 I need to select a good name for the shared libperl.  If your system uses
8003 library names with major and minor numbers, then you might want something
8004 like $majmin.  Alternatively, if your system uses a single version
8005 number for shared libraries, then you might want to use $majonly.
8006 Or, your system might be quite happy with a simple libperl.$so.
8007
8008 Since the shared libperl will get installed into a version-specific
8009 architecture-dependent directory, the version number of the shared perl
8010 library probably isn't important, so the default should be o.k.
8011
8012 EOM
8013         rp='What name do you want to give to the shared libperl?'
8014         . ./myread
8015         libperl=$ans
8016         echo "Ok, I'll use $libperl"
8017         ;;
8018 *)
8019         libperl="libperl${_a}"
8020         ;;
8021 esac
8022
8023 # Detect old use of shrpdir via undocumented Configure -Dshrpdir
8024 case "$shrpdir" in
8025 '') ;;
8026 *)      $cat >&4 <<EOM
8027 WARNING:  Use of the shrpdir variable for the installation location of
8028 the shared $libperl is not supported.  It was never documented and
8029 will not work in this version.  Let me (perlbug@perl.org)
8030 know of any problems this may cause.
8031
8032 EOM
8033         case "$shrpdir" in
8034         "$archlibexp/CORE")
8035                 $cat >&4 <<EOM
8036 But your current setting of $shrpdir is
8037 the default anyway, so it's harmless.
8038 EOM
8039                 ;;
8040         *)
8041                 $cat >&4 <<EOM
8042 Further, your current attempted setting of $shrpdir
8043 conflicts with the value of $archlibexp/CORE
8044 that installperl will use.
8045 EOM
8046                 ;;
8047         esac
8048         ;;
8049 esac
8050
8051 # How will the perl executable find the installed shared $libperl?
8052 # Add $xxx to ccdlflags.
8053 # If we can't figure out a command-line option, use $shrpenv to
8054 # set env LD_RUN_PATH.  The main perl makefile uses this.
8055 shrpdir=$archlibexp/CORE
8056 xxx=''
8057 tmp_shrpenv=''
8058 if "$useshrplib"; then
8059     case "$osname" in 
8060         aix)
8061                 # We'll set it in Makefile.SH...
8062                 ;;
8063         solaris)
8064                 xxx="-R $shrpdir"
8065                 ;;
8066         freebsd|netbsd|openbsd|interix|dragonfly)
8067                 xxx="-Wl,-R$shrpdir"
8068                 ;;
8069         bsdos|linux|irix*|dec_osf|gnu*)
8070                 xxx="-Wl,-rpath,$shrpdir"
8071                 ;;
8072         next)
8073                 # next doesn't like the default...
8074                 ;;
8075         beos)
8076                 # beos doesn't like the default, either.
8077                 ;;
8078         hpux*)
8079                 # hpux doesn't like the default, either.
8080                 tmp_shrpenv="env LDOPTS=\"+s +b${shrpdir}\""
8081                 ;;
8082         *)
8083                 tmp_shrpenv="env LD_RUN_PATH=$shrpdir"
8084                 ;;
8085         esac
8086         case "$xxx" in
8087         '') ;;
8088         *)      
8089                 # Only add $xxx if it isn't already in ccdlflags.
8090                 case " $ccdlflags " in
8091                 *" $xxx "*)     ;;
8092                 *)      ccdlflags="$ccdlflags $xxx"
8093                         cat <<EOM >&4
8094
8095 Adding $xxx to the flags
8096 passed to $ld so that the perl executable will find the 
8097 installed shared $libperl.
8098
8099 EOM
8100                         ;;
8101                 esac
8102                 ;;
8103         esac
8104 fi
8105 # Fix ccdlflags in AIX for building external extensions.
8106 # (For building Perl itself bare -bE:perl.exp is needed,
8107 #  Makefile.SH takes care of this.)
8108 case "$osname" in
8109 aix) ccdlflags="$ccdlflags -bE:$installarchlib/CORE/perl.exp" ;;
8110 esac
8111 # Respect a hint or command-line value.
8112 case "$shrpenv" in
8113 '') shrpenv="$tmp_shrpenv" ;;
8114 esac
8115 case "$ldlibpthname" in
8116 '')     ldlibpthname=LD_LIBRARY_PATH ;;
8117 none)   ldlibpthname='' ;;
8118 esac
8119
8120 : determine where manual pages are on this system
8121 echo " "
8122 case "$sysman" in
8123 '') 
8124         syspath='/usr/share/man/man1 /usr/man/man1'
8125         syspath="$syspath /usr/man/mann /usr/man/manl /usr/man/local/man1"
8126         syspath="$syspath /usr/man/u_man/man1"
8127         syspath="$syspath /usr/catman/u_man/man1 /usr/man/l_man/man1"
8128         syspath="$syspath /usr/local/man/u_man/man1 /usr/local/man/l_man/man1"
8129         syspath="$syspath /usr/man/man.L /local/man/man1 /usr/local/man/man1"
8130         sysman=`./loc . /usr/man/man1 $syspath`
8131         ;;
8132 esac
8133 if $test -d "$sysman"; then
8134         echo "System manual is in $sysman." >&4
8135 else
8136         echo "Could not find manual pages in source form." >&4
8137 fi
8138
8139 : determine where manual pages go
8140 set man1dir man1dir none
8141 eval $prefixit
8142 $cat <<EOM
8143
8144 $spackage has manual pages available in source form.
8145 EOM
8146 case "$nroff" in
8147 nroff)
8148         echo "However, you don't have nroff, so they're probably useless to you."
8149         case "$man1dir" in
8150         '') man1dir="none";;
8151         esac;;
8152 esac
8153 echo "If you don't want the manual sources installed, answer 'none'."
8154 case "$man1dir" in
8155 ' ') dflt=none
8156         ;;
8157 '')
8158         lookpath="$prefixexp/share/man/man1"
8159         lookpath="$lookpath $prefixexp/man/man1 $prefixexp/man/l_man/man1"
8160         lookpath="$lookpath $prefixexp/man/p_man/man1"
8161         lookpath="$lookpath $prefixexp/man/u_man/man1"
8162         lookpath="$lookpath $prefixexp/man/man.1"
8163         case "$sysman" in
8164         */?_man*)       dflt=`./loc . $prefixexp/l_man/man1 $lookpath` ;;
8165         *)      dflt=`./loc . $prefixexp/man/man1 $lookpath` ;;
8166         esac
8167         set dflt
8168         eval $prefixup
8169         ;;
8170 *)  dflt="$man1dir"
8171         ;;
8172 esac
8173 echo " "
8174 fn=dn+~
8175 rp="Where do the main $spackage manual pages (source) go?"
8176 . ./getfile
8177 if $test "X$man1direxp" != "X$ansexp"; then
8178         installman1dir=''
8179 fi
8180 prefixvar=man1dir
8181 . ./setprefixvar
8182
8183 case "$man1dir" in
8184 '')     man1dir=' '
8185         installman1dir='';;
8186 esac
8187
8188 : What suffix to use on installed man pages
8189
8190 case "$man1dir" in
8191 ' ')
8192         man1ext='0'
8193         ;;
8194 *)
8195         rp="What suffix should be used for the main $spackage man pages?"
8196         case "$man1ext" in
8197         '')     case "$man1dir" in
8198                 *1)  dflt=1 ;;
8199                 *1p) dflt=1p ;;
8200                 *1pm) dflt=1pm ;;
8201                 *l) dflt=l;;
8202                 *n) dflt=n;;
8203                 *o) dflt=o;;
8204                 *p) dflt=p;;
8205                 *C) dflt=C;;
8206                 *L) dflt=L;;
8207                 *L1) dflt=L1;;
8208                 *) dflt=1;;
8209                 esac
8210                 ;;
8211         *)      dflt="$man1ext";;
8212         esac
8213         . ./myread
8214         man1ext="$ans"
8215         ;;
8216 esac
8217
8218 : see if we can have long filenames
8219 echo " "
8220 first=123456789abcdef
8221 $rm -f $first
8222 if (echo hi >$first) 2>/dev/null; then
8223         if $test -f 123456789abcde; then
8224                 echo 'You cannot have filenames longer than 14 characters.  Sigh.' >&4
8225                 val="$undef"
8226         else
8227                 echo 'You can have filenames longer than 14 characters.'>&4
8228                 val="$define"
8229         fi
8230 else
8231         $cat <<'EOM'
8232 You can't have filenames longer than 14 chars.
8233 You can't even think about them!
8234 EOM
8235         val="$undef"
8236 fi 
8237 set d_flexfnam
8238 eval $setvar
8239 $rm -rf 123456789abcde*
8240
8241 : determine where library module manual pages go
8242 set man3dir man3dir none
8243 eval $prefixit
8244 $cat <<EOM
8245
8246 $spackage has manual pages for many of the library modules.
8247 EOM
8248
8249 case "$nroff" in
8250 nroff)
8251         $cat <<'EOM'
8252 However, you don't have nroff, so they're probably useless to you.
8253 EOM
8254         case "$man3dir" in
8255         '') man3dir="none";;
8256         esac;;
8257 esac
8258
8259 case "$d_flexfnam" in
8260 undef)
8261         $cat <<'EOM'
8262 However, your system can't handle the long file names like File::Basename.3.
8263 EOM
8264         case "$man3dir" in
8265         '') man3dir="none";;
8266         esac;;
8267 esac
8268
8269 echo "If you don't want the manual sources installed, answer 'none'."
8270 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
8271 case "$man3dir" in
8272 '')     dflt=`echo "$man1dir" | $sed -e 's/man1/man3/g' -e 's/man\.1/man\.3/g'`
8273         if $test -d "$privlib/man/man3"; then
8274                 cat <<EOM >&4
8275
8276 WARNING:  Previous versions of perl installed man3 pages into
8277 $privlib/man/man3.  This version will suggest a
8278 new default of $dflt.
8279 EOM
8280                 tdflt=$dflt
8281                 dflt='n'
8282                 rp='Do you wish to preserve the old behavior?(y/n)'
8283                 . ./myread
8284                 case "$ans" in
8285                 y*) dflt="$privlib/man/man3" ;;
8286                 *)  dflt=$tdflt ;;
8287                 esac
8288     fi
8289         ;;
8290 *)      dflt="$man3dir" ;;
8291 esac
8292 case "$dflt" in
8293 ' ') dflt=none ;;
8294 esac
8295 echo " "
8296 fn=dn+~
8297 rp="Where do the $package library man pages (source) go?"
8298 . ./getfile
8299 prefixvar=man3dir
8300 . ./setprefixvar
8301
8302 case "$man3dir" in
8303 '')     man3dir=' '
8304         installman3dir='';;
8305 esac
8306
8307 : What suffix to use on installed man pages
8308 case "$man3dir" in
8309 ' ')
8310         man3ext='0'
8311         ;;
8312 *)
8313         rp="What suffix should be used for the $package library man pages?"
8314         case "$man3ext" in
8315         '')     case "$man3dir" in
8316                 *3)  dflt=3 ;;
8317                 *3p) dflt=3p ;;
8318                 *3pm) dflt=3pm ;;
8319                 *l) dflt=l;;
8320                 *n) dflt=n;;
8321                 *o) dflt=o;;
8322                 *p) dflt=p;;
8323                 *C) dflt=C;;
8324                 *L) dflt=L;;
8325                 *L3) dflt=L3;;
8326                 *) dflt=3;;
8327                 esac
8328                 ;;
8329         *)      dflt="$man3ext";;
8330         esac
8331         . ./myread
8332         man3ext="$ans"
8333         ;;
8334 esac
8335
8336 : see if we have to deal with yellow pages, now NIS.
8337 if $test -d /usr/etc/yp || $test -d /etc/yp || $test -d /usr/lib/yp; then
8338         if $test -f /usr/etc/nibindd; then
8339                 echo " "
8340                 echo "I'm fairly confident you're on a NeXT."
8341                 echo " "
8342                 rp='Do you get the hosts file via NetInfo?'
8343                 dflt=y
8344                 case "$hostcat" in
8345                 nidump*) ;;
8346                 '') ;;
8347                 *) dflt=n;;
8348                 esac
8349                 . ./myread
8350                 case "$ans" in
8351                 y*) hostcat='nidump hosts .';;
8352                 *)      case "$hostcat" in
8353                         nidump*) hostcat='';;
8354                         esac
8355                         ;;
8356                 esac
8357         fi
8358         case "$hostcat" in
8359         nidump*) ;;
8360         *)
8361                 case "$hostcat" in
8362                 *ypcat*) dflt=y;;
8363                 '') if $contains '^\+' /etc/passwd >/dev/null 2>&1; then
8364                                 dflt=y
8365                         else
8366                                 dflt=n
8367                         fi;;
8368                 *) dflt=n;;
8369                 esac
8370                 echo " "
8371                 rp='Are you getting the hosts file via yellow pages?'
8372                 . ./myread
8373                 case "$ans" in
8374                 y*) hostcat='ypcat hosts';;
8375                 *) hostcat='cat /etc/hosts';;
8376                 esac
8377                 ;;
8378         esac
8379 fi
8380 case "$hostcat" in
8381 '') test -f /etc/hosts && hostcat='cat /etc/hosts';;
8382 esac
8383 case "$groupcat" in
8384 '') test -f /etc/group && groupcat='cat /etc/group';;
8385 esac
8386 case "$passcat" in
8387 '') test -f /etc/passwd && passcat='cat /etc/passwd';;
8388 esac
8389
8390 : now get the host name
8391 echo " "
8392 echo "Figuring out host name..." >&4
8393 case "$myhostname" in
8394 '') cont=true
8395         echo 'Maybe "hostname" will work...'
8396         if tans=`sh -c hostname 2>&1` ; then
8397                 myhostname=$tans
8398                 phostname=hostname
8399                 cont=''
8400         fi
8401         ;;
8402 *) cont='';;
8403 esac
8404 if $test "$cont"; then
8405         if ./xenix; then
8406                 echo 'Oh, dear.  Maybe "/etc/systemid" is the key...'
8407                 if tans=`cat /etc/systemid 2>&1` ; then
8408                         myhostname=$tans
8409                         phostname='cat /etc/systemid'
8410                         echo "Whadyaknow.  Xenix always was a bit strange..."
8411                         cont=''
8412                 fi
8413         elif $test -r /etc/systemid; then
8414                 echo "(What is a non-Xenix system doing with /etc/systemid?)"
8415         fi
8416 fi
8417 if $test "$cont"; then
8418         echo 'No, maybe "uuname -l" will work...'
8419         if tans=`sh -c 'uuname -l' 2>&1` ; then
8420                 myhostname=$tans
8421                 phostname='uuname -l'
8422         else
8423                 echo 'Strange.  Maybe "uname -n" will work...'
8424                 if tans=`sh -c 'uname -n' 2>&1` ; then
8425                         myhostname=$tans
8426                         phostname='uname -n'
8427                 else
8428                         echo 'Oh well, maybe I can mine it out of whoami.h...'
8429                         if tans=`sh -c $contains' sysname $usrinc/whoami.h' 2>&1` ; then
8430                                 myhostname=`echo "$tans" | $sed 's/^.*"\(.*\)"/\1/'`
8431                                 phostname="sed -n -e '"'/sysname/s/^.*\"\\(.*\\)\"/\1/{'"' -e p -e q -e '}' <$usrinc/whoami.h"
8432                         else
8433                                 case "$myhostname" in
8434                                 '') echo "Does this machine have an identity crisis or something?"
8435                                         phostname='';;
8436                                 *)
8437                                         echo "Well, you said $myhostname before..."
8438                                         phostname='echo $myhostname';;
8439                                 esac
8440                         fi
8441                 fi
8442         fi
8443 fi
8444 case "$myhostname" in
8445 '') myhostname=noname ;;
8446 esac
8447 : you do not want to know about this
8448 set $myhostname
8449 myhostname=$1
8450
8451 : verify guess
8452 if $test "$myhostname" ; then
8453         dflt=y
8454         rp='Your host name appears to be "'$myhostname'".'" Right?"
8455         . ./myread
8456         case "$ans" in
8457         y*) ;;
8458         *) myhostname='';;
8459         esac
8460 fi
8461
8462 : bad guess or no guess
8463 while $test "X$myhostname" = X ; do
8464         dflt=''
8465         rp="Please type the (one word) name of your host:"
8466         . ./myread
8467         myhostname="$ans"
8468 done
8469
8470 : translate upper to lower if necessary
8471 case "$myhostname" in
8472 *[A-Z]*)
8473         echo "(Normalizing case in your host name)"
8474         myhostname=`echo $myhostname | ./tr '[A-Z]' '[a-z]'`
8475         ;;
8476 esac
8477
8478 case "$myhostname" in
8479 *.*)
8480         dflt=`expr "X$myhostname" : "X[^.]*\(\..*\)"`
8481         myhostname=`expr "X$myhostname" : "X\([^.]*\)\."`
8482         echo "(Trimming domain name from host name--host name is now $myhostname)"
8483         ;;
8484 *) case "$mydomain" in
8485         '')
8486                 {
8487                         test "X$hostcat" = "Xypcat hosts" &&
8488                         ypmatch "$myhostname" hosts 2>/dev/null |\
8489                                 $sed -e 's/[     ]*#.*//; s/$/ /' > hosts && \
8490                         $test -s hosts
8491                 } || {
8492                         test "X$hostcat" != "X" &&
8493                         $hostcat | $sed -n -e "s/[       ]*#.*//; s/\$/ /
8494                                         /[       ]$myhostname[  . ]/p" > hosts
8495                 }
8496                 tmp_re="[       . ]"
8497                 if $test -f hosts; then
8498                         $test x`$awk "/[0-9].*[  ]$myhostname$tmp_re/ { sum++ }
8499                              END { print sum }" hosts` = x1 || tmp_re="[         ]"
8500                         dflt=.`$awk "/[0-9].*[   ]$myhostname$tmp_re/ {for(i=2; i<=NF;i++) print \\\$i}" \
8501                                 hosts | $sort | $uniq | \
8502                                 $sed -n -e "s/$myhostname\.\([-a-zA-Z0-9_.]\)/\1/p"`
8503                         case `$echo X$dflt` in
8504                         X*\ *)  echo "(Several hosts in the database matched hostname)"
8505                                 dflt=.
8506                                 ;;
8507                         X.) echo "(You do not have fully-qualified names in the hosts database)"
8508                                 ;;
8509                         esac
8510                 else
8511                         echo "(I cannot locate a hosts database anywhere)"
8512                         dflt=.
8513                 fi
8514                 case "$dflt" in
8515                 .)
8516                         tans=`./loc resolv.conf X /etc /usr/etc`
8517                         if $test -f "$tans"; then
8518                                 echo "(Attempting domain name extraction from $tans)"
8519                                 dflt=.`$sed -n -e 's/   / /g' \
8520                                   -e 's/^search  *\([^ ]*\).*/\1/p' $tans \
8521                                   | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8522                                 case "$dflt" in
8523                                 .) dflt=.`$sed -n -e 's/        / /g' \
8524                                      -e 's/^domain  *\([^ ]*\).*/\1/p' $tans \
8525                                      | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8526                                         ;;
8527                                 esac
8528                         fi
8529                         ;;
8530                 esac
8531                 case "$dflt" in
8532                 .) echo "(No help from resolv.conf either -- attempting clever guess)"
8533                         dflt=.`sh -c domainname 2>/dev/null`
8534                         case "$dflt" in
8535                         '') dflt='.';;
8536                         .nis.*|.yp.*|.main.*) dflt=`echo $dflt | $sed -e 's/^\.[^.]*//'`;;
8537                         esac
8538                         ;;
8539                 esac
8540                 case "$dflt$osname" in
8541                 .os390) echo "(Attempting domain name extraction from //'SYS1.TCPPARMS(TCPDATA)')"
8542                         dflt=.`awk '/^DOMAINORIGIN/ {print $2}' "//'SYS1.TCPPARMS(TCPDATA)'" 2>/dev/null`
8543                         ;;
8544                 esac
8545                 case "$dflt" in
8546                 .) echo "(Lost all hope -- silly guess then)"
8547                         dflt='.nonet'
8548                         ;;
8549                 esac
8550                 $rm -f hosts
8551                 ;;
8552         *) dflt="$mydomain";;
8553         esac;;
8554 esac
8555 echo " "
8556 rp="What is your domain name?"
8557 . ./myread
8558 tans="$ans"
8559 case "$ans" in
8560 '') ;;
8561 .*) ;;
8562 *) tans=".$tans";;
8563 esac
8564 mydomain="$tans"
8565
8566 : translate upper to lower if necessary
8567 case "$mydomain" in
8568 *[A-Z]*)
8569         echo "(Normalizing case in your domain name)"
8570         mydomain=`echo $mydomain | ./tr '[A-Z]' '[a-z]'`
8571         ;;
8572 esac
8573
8574 : a little sanity check here
8575 case "$phostname" in
8576 '') ;;
8577 *)
8578         case `$phostname | ./tr '[A-Z]' '[a-z]'` in
8579         $myhostname$mydomain|$myhostname) ;;
8580         *)
8581                 case "$phostname" in
8582                 sed*)
8583                         echo "(That doesn't agree with your whoami.h file, by the way.)"
8584                         ;;
8585                 *)
8586                         echo "(That doesn't agree with your $phostname command, by the way.)"
8587                         ;;
8588                 esac
8589         ;;
8590         esac
8591         ;;
8592 esac
8593
8594 $cat <<EOM
8595
8596 I need to get your e-mail address in Internet format if possible, i.e.
8597 something like user@host.domain. Please answer accurately since I have
8598 no easy means to double check it. The default value provided below
8599 is most probably close to reality but may not be valid from outside
8600 your organization...
8601
8602 EOM
8603 cont=x
8604 while test "$cont"; do
8605         case "$cf_email" in
8606         '') dflt="$cf_by@$myhostname$mydomain";;
8607         *) dflt="$cf_email";;
8608         esac
8609         rp='What is your e-mail address?'
8610         . ./myread
8611         cf_email="$ans"
8612         case "$cf_email" in
8613         *@*.*) cont='' ;;
8614         *)
8615                 rp='Address does not look like an Internet one.  Use it anyway?'
8616                 case "$fastread" in
8617                 yes) dflt=y ;;
8618                 *) dflt=n ;;
8619                 esac
8620                 . ./myread
8621                 case "$ans" in
8622                 y*) cont='' ;;
8623                 *) echo " " ;;
8624                 esac
8625                 ;;
8626         esac
8627 done
8628
8629 $cat <<EOM
8630
8631 If you or somebody else will be maintaining perl at your site, please
8632 fill in the correct e-mail address here so that they may be contacted
8633 if necessary. Currently, the "perlbug" program included with perl
8634 will send mail to this address in addition to perlbug@perl.org. You may
8635 enter "none" for no administrator.
8636
8637 EOM
8638 case "$perladmin" in
8639 '') dflt="$cf_email";;
8640 *) dflt="$perladmin";;
8641 esac
8642 rp='Perl administrator e-mail address'
8643 . ./myread
8644 perladmin="$ans"
8645
8646 : determine whether to only install version-specific parts.
8647 echo " "
8648 $cat <<EOM
8649 Do you want to install only the version-specific parts of the perl
8650 distribution?  Usually you do *not* want to do this.
8651 EOM
8652 case "$versiononly" in
8653 "$define"|[Yy]*|true) dflt='y' ;;
8654 *) dflt='n';
8655 esac
8656 rp="Do you want to install only the version-specific parts of perl?"
8657 . ./myread
8658 case "$ans" in
8659 [yY]*)  val="$define";;
8660 *)      val="$undef" ;;
8661 esac
8662 set versiononly
8663 eval $setvar
8664
8665 case "$versiononly" in
8666 "$define") inc_version_list=''
8667            inc_version_list_init=0
8668            ;;
8669 esac
8670
8671 : figure out how to guarantee perl startup
8672 : XXX Note that this currently takes advantage of the bug that binexp ignores
8673 :     the Configure -Dinstallprefix setting, which in turn means that under
8674 :     relocatable @INC, initialinstalllocation is what binexp started as.
8675 case "$startperl" in
8676 '')
8677         case "$sharpbang" in
8678         *!)
8679                 $cat <<EOH
8680
8681 I can use the #! construct to start perl on your system. This will
8682 make startup of perl scripts faster, but may cause problems if you
8683 want to share those scripts and perl is not in a standard place
8684 ($initialinstalllocation/perl) on all your platforms. The alternative
8685 is to force a shell by starting the script with a single ':' character.
8686
8687 EOH
8688                 case "$versiononly" in
8689                 "$define")      dflt="$initialinstalllocation/perl$version";;
8690                 *)              dflt="$initialinstalllocation/perl";;
8691                 esac
8692                 rp='What shall I put after the #! to start up perl ("none" to not use #!)?'
8693                 . ./myread
8694                 case "$ans" in
8695                 none)   startperl=": # use perl";;
8696                 *)      startperl="#!$ans"
8697                         if $test 30 -lt `echo "$ans" | wc -c`; then
8698                                 $cat >&4 <<EOM
8699
8700 WARNING:  Some systems limit the #! command to 32 characters.
8701 If you experience difficulty running Perl scripts with #!, try
8702 installing Perl in a directory with a shorter pathname.
8703
8704 EOM
8705                         fi ;;
8706                 esac
8707                 ;;
8708         *) startperl=": # use perl"
8709                 ;;
8710         esac
8711         ;;
8712 esac
8713 echo "I'll use $startperl to start perl scripts."
8714
8715 : figure best path for perl in scripts
8716 case "$perlpath" in
8717 '')
8718         case "$versiononly" in
8719         "$define")      perlpath="$initialinstalllocation/perl$version";;
8720         *)              perlpath="$initialinstalllocation/perl";;
8721         esac
8722         case "$startperl" in
8723         *!*) ;;
8724         *)
8725                 $cat <<EOH
8726
8727 I will use the "eval 'exec'" idiom to start Perl on your system.
8728 I can use the full path of your Perl binary for this purpose, but
8729 doing so may cause problems if you want to share those scripts and
8730 Perl is not always in a standard place ($initialinstalllocation/perl).
8731
8732 EOH
8733                 dflt="$initialinstalllocation/perl"
8734                 rp="What path shall I use in \"eval 'exec'\"?"
8735                 . ./myread
8736                 perlpath="$ans"
8737                 ;;
8738         esac
8739         ;;
8740 esac
8741 case "$startperl" in
8742 *!*)    ;;
8743 *)      echo "I'll use $perlpath in \"eval 'exec'\"" ;;
8744 esac
8745
8746 : determine where public executable scripts go
8747 set scriptdir scriptdir
8748 eval $prefixit
8749 case "$scriptdir" in
8750 '')
8751         dflt="$bin"
8752         : guess some guesses
8753         $test -d /usr/share/scripts && dflt=/usr/share/scripts
8754         $test -d /usr/share/bin     && dflt=/usr/share/bin
8755         $test -d /usr/local/script  && dflt=/usr/local/script
8756         $test -d /usr/local/scripts && dflt=/usr/local/scripts
8757         $test -d $prefixexp/script  && dflt=$prefixexp/script
8758         set dflt
8759         eval $prefixup
8760         ;;
8761 *)  dflt="$scriptdir"
8762         ;;
8763 esac
8764 $cat <<EOM
8765
8766 Some installations have a separate directory just for executable scripts so
8767 that they can mount it across multiple architectures but keep the scripts in
8768 one spot.  You might, for example, have a subdirectory of /usr/share for this.
8769 Or you might just lump your scripts in with all your other executables.
8770
8771 EOM
8772 fn=d~
8773 rp='Where do you keep publicly executable scripts?'
8774 . ./getfile
8775 if $test "X$ansexp" != "X$scriptdirexp"; then
8776         installscript=''
8777 fi
8778 installscriptdir=''
8779 prefixvar=scriptdir
8780 . ./setprefixvar
8781 : A little fix up for an irregularly named variable.
8782 installscript="$installscriptdir"
8783
8784 : determine where add-on public executables go
8785 case "$sitebin" in
8786 '')     dflt=$siteprefix/bin ;;
8787 *)      dflt=$sitebin ;;
8788 esac
8789 fn=d~
8790 rp='Pathname where the add-on public executables should be installed?'
8791 . ./getfile
8792 prefixvar=sitebin
8793 . ./setprefixvar
8794
8795 : determine where add-on html pages go
8796 : There is no standard location, so try to copy the previously-selected
8797 : directory structure for the core html pages.
8798 case "$sitehtml1dir" in
8799 '')    dflt=`echo "$html1dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8800 *)     dflt=$sitehtml1dir ;;
8801 esac
8802 case "$dflt" in
8803 ''|' ') dflt=none ;;
8804 esac
8805 fn=dn+~
8806 rp='Pathname where the site-specific html pages should be installed?'
8807 . ./getfile
8808 prefixvar=sitehtml1dir
8809 . ./setprefixvar
8810
8811 : determine where add-on library html pages go
8812 : There is no standard location, so try to copy the previously-selected
8813 : directory structure for the core html pages.
8814 case "$sitehtml3dir" in
8815 '')    dflt=`echo "$html3dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8816 *)     dflt=$sitehtml3dir ;;
8817 esac
8818 case "$dflt" in
8819 ''|' ') dflt=none ;;
8820 esac
8821 fn=dn+~
8822 rp='Pathname where the site-specific library html pages should be installed?'
8823 . ./getfile
8824 prefixvar=sitehtml3dir
8825 . ./setprefixvar
8826
8827 : determine where add-on manual pages go
8828 case "$siteman1dir" in
8829 '')     dflt=`echo $man1dir | $sed "s#^$prefix#$siteprefix#"` ;;
8830 *)      dflt=$siteman1dir ;;
8831 esac
8832 case "$dflt" in
8833 ''|' ') dflt=none ;;
8834 esac
8835 fn=dn+~
8836 rp='Pathname where the site-specific manual pages should be installed?'
8837 . ./getfile
8838 prefixvar=siteman1dir
8839 . ./setprefixvar
8840
8841 : determine where add-on library man pages go
8842 case "$siteman3dir" in
8843 '')     dflt=`echo $man3dir | $sed "s#^$prefix#$siteprefix#"` ;;
8844 *)      dflt=$siteman3dir ;;
8845 esac
8846 case "$dflt" in
8847 ''|' ') dflt=none ;;
8848 esac
8849 fn=dn+~
8850 rp='Pathname where the site-specific library manual pages should be installed?'
8851 . ./getfile
8852 prefixvar=siteman3dir
8853 . ./setprefixvar
8854
8855 : determine where add-on public executable scripts go
8856 case "$sitescript" in
8857 '')     dflt=$siteprefix/script
8858         $test -d $dflt || dflt=$sitebin ;;
8859 *)  dflt="$sitescript" ;;
8860 esac
8861 fn=d~+
8862 rp='Pathname where add-on public executable scripts should be installed?'
8863 . ./getfile
8864 prefixvar=sitescript
8865 . ./setprefixvar
8866
8867 case "$usefaststdio" in
8868 $define|true|[yY]*|'')
8869         xversion=`awk '/define[         ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
8870         case "$xversion" in
8871         [68])   dflt='y' ;;
8872         *)      dflt='n' ;;
8873         esac
8874         ;;
8875 *) dflt='n';;
8876 esac
8877 cat <<EOM
8878
8879 Perl can be built to use 'fast stdio', which means using the stdio
8880 library but also directly manipulating the stdio buffers to enable
8881 faster I/O.  Using stdio is better for backward compatibility (especially
8882 for Perl extensions), but on the other hand since Perl 5.8 the 'perlio'
8883 interface has been preferred instead of stdio.
8884
8885 If this doesn't make any sense to you, just accept the default '$dflt'.
8886 EOM
8887 rp='Use the "fast stdio" if available?'
8888 . ./myread
8889 case "$ans" in
8890 y|Y)    val="$define" ;;     
8891 *)      val="$undef" ;;
8892 esac
8893 set usefaststdio
8894 eval $setvar
8895
8896
8897 : define an is-a-typedef? function
8898 typedef='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
8899 case "$inclist" in
8900 "") inclist="sys/types.h";;
8901 esac;
8902 eval "varval=\$$var";
8903 case "$varval" in
8904 "")
8905         $rm -f temp.c;
8906         for inc in $inclist; do
8907                 echo "#include <$inc>" >>temp.c;
8908         done;
8909         echo "#ifdef $type" >> temp.c;
8910         echo "printf(\"We have $type\");" >> temp.c;
8911         echo "#endif" >> temp.c;
8912         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
8913         if $contains $type temp.E >/dev/null 2>&1; then
8914                 eval "$var=\$type";
8915         else
8916                 eval "$var=\$def";
8917         fi;
8918         $rm -f temp.?;;
8919 *) eval "$var=\$varval";;
8920 esac'
8921
8922 : define an is-a-typedef? function that prompts if the type is not available.
8923 typedef_ask='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
8924 case "$inclist" in
8925 "") inclist="sys/types.h";;
8926 esac;
8927 eval "varval=\$$var";
8928 case "$varval" in
8929 "")
8930         $rm -f temp.c;
8931         for inc in $inclist; do
8932                 echo "#include <$inc>" >>temp.c;
8933         done;
8934         echo "#ifdef $type" >> temp.c;
8935         echo "printf(\"We have $type\");" >> temp.c;
8936         echo "#endif" >> temp.c;
8937         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
8938         echo " " ;
8939         echo "$rp" | $sed -e "s/What is/Looking for/" -e "s/?/./";
8940         if $contains $type temp.E >/dev/null 2>&1; then
8941                 echo "$type found." >&4;
8942                 eval "$var=\$type";
8943         else
8944                 echo "$type NOT found." >&4;
8945                 dflt="$def";
8946                 . ./myread ;
8947                 eval "$var=\$ans";
8948         fi;
8949         $rm -f temp.?;;
8950 *) eval "$var=\$varval";;
8951 esac'
8952
8953 : see what type lseek is declared as in the kernel
8954 rp="What is the type used for lseek's offset on this system?"
8955 set off_t lseektype long stdio.h sys/types.h
8956 eval $typedef_ask
8957
8958 echo " "
8959 echo "Checking to see how big your file offsets are..." >&4
8960 $cat >try.c <<EOCP
8961 #include <sys/types.h>
8962 #include <stdio.h>
8963 int main()
8964 {
8965     printf("%d\n", (int)sizeof($lseektype));
8966     return(0); 
8967 }
8968 EOCP
8969 set try
8970 if eval $compile_ok; then
8971         lseeksize=`$run ./try`
8972         echo "Your file offsets are $lseeksize bytes long."
8973 else
8974         dflt=$longsize
8975         echo " "
8976         echo "(I can't seem to compile the test program.  Guessing...)"
8977         rp="What is the size of your file offsets (in bytes)?"
8978         . ./myread
8979         lseeksize="$ans"
8980 fi
8981 $rm -f try.c try
8982
8983 : see what type file positions are declared as in the library
8984 rp="What is the type for file position used by fsetpos()?"
8985 set fpos_t fpostype long stdio.h sys/types.h
8986 eval $typedef_ask
8987
8988 echo " "
8989 case "$fpostype" in
8990 *_t) zzz="$fpostype"    ;;
8991 *)   zzz="fpos_t"       ;;
8992 esac
8993 echo "Checking the size of $zzz..." >&4 
8994 cat > try.c <<EOCP
8995 #include <sys/types.h>
8996 #include <stdio.h>
8997 #$i_stdlib I_STDLIB
8998 #ifdef I_STDLIB
8999 #include <stdlib.h>
9000 #endif
9001 int main() {
9002     printf("%d\n", (int)sizeof($fpostype));
9003     exit(0);
9004 }
9005 EOCP
9006 set try
9007 if eval $compile_ok; then
9008         yyy=`$run ./try`
9009         case "$yyy" in
9010         '')     fpossize=4
9011                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
9012                 ;;
9013         *)      fpossize=$yyy
9014                 echo "Your $zzz is $fpossize bytes long."
9015                 ;;
9016         esac
9017 else
9018         dflt="$longsize"
9019         echo " " >&4
9020         echo "(I can't compile the test program.  Guessing...)" >&4
9021         rp="What is the size of your file positions (in bytes)?"
9022         . ./myread
9023         fpossize="$ans"
9024 fi
9025
9026 # Backward compatibility (uselfs is deprecated).
9027 case "$uselfs" in
9028 "$define"|true|[yY]*)
9029         cat <<EOM >&4
9030
9031 *** Configure -Duselfs is deprecated, using -Duselargefiles instead.
9032 EOM
9033         uselargefiles="$define"
9034         ;;
9035 esac                          
9036
9037 case "$lseeksize:$fpossize" in
9038 8:8) cat <<EOM
9039
9040 You can have files larger than 2 gigabytes.
9041 EOM
9042    val="$define" ;;
9043 *)    case "$uselargefiles" in
9044    "$undef"|false|[nN]*) dflt='n' ;;
9045    *)   dflt='y' ;;
9046    esac
9047    cat <<EOM
9048
9049 Perl can be built to understand large files (files larger than 2 gigabytes)
9050 on some systems.  To do so, Configure can be run with -Duselargefiles.
9051
9052 If this doesn't make any sense to you, just accept the default '$dflt'.
9053 EOM
9054    rp='Try to understand large files, if available?'
9055    . ./myread
9056    case "$ans" in
9057    y|Y)         val="$define" ;;
9058    *)           val="$undef"  ;;
9059    esac
9060    ;;
9061 esac
9062 set uselargefiles
9063 eval $setvar
9064 : Look for a hint-file generated 'call-back-unit'.  If the
9065 : user has specified that a large files perl is to be built,
9066 : we may need to set or change some other defaults.
9067 if $test -f uselargefiles.cbu; then
9068         echo "Your platform has some specific hints regarding large file builds, using them..."
9069         . ./uselargefiles.cbu
9070 fi
9071 case "$uselargefiles" in
9072 "$define")
9073         if $test -f uselargefiles.cbu; then
9074                 echo " "
9075                 echo "Rechecking to see how big your file offsets are..." >&4
9076                 $cat >try.c <<EOCP
9077 #include <sys/types.h>
9078 #include <stdio.h>
9079 int main()
9080 {
9081     printf("%d\n", (int)sizeof($lseektype));
9082     return(0); 
9083 }
9084 EOCP
9085                 set try
9086                 if eval $compile_ok; then
9087                         lseeksize=`$run ./try`
9088                         $echo "Your file offsets are now $lseeksize bytes long."
9089                 else
9090                         dflt="$lseeksize"
9091                         echo " "
9092                         echo "(I can't seem to compile the test program.  Guessing...)"
9093                         rp="What is the size of your file offsets (in bytes)?"
9094                         . ./myread
9095                         lseeksize="$ans"
9096                 fi
9097                 case "$fpostype" in
9098                 *_t) zzz="$fpostype"    ;;
9099                 *)   zzz="fpos_t"       ;;
9100                 esac
9101                 $echo $n "Rechecking the size of $zzz...$c" >&4 
9102                 $cat > try.c <<EOCP
9103 #include <sys/types.h>
9104 #include <stdio.h>
9105 #$i_stdlib I_STDLIB
9106 #ifdef I_STDLIB
9107 #include <stdlib.h>
9108 #endif
9109 int main() {
9110     printf("%d\n", (int)sizeof($fpostype));
9111     return(0);
9112 }
9113 EOCP
9114                 set try
9115                 if eval $compile_ok; then
9116                         yyy=`$run ./try`
9117                         dflt="$lseeksize"
9118                         case "$yyy" in
9119                         '')     echo " "
9120                                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
9121                                 ;;
9122                         *)      fpossize=$yyy
9123                                 echo " $fpossize bytes." >&4
9124                                 ;;
9125                         esac
9126                 else
9127                         dflt="$fpossize"
9128                         echo " "
9129                         echo "(I can't compile the test program.  Guessing...)" >&4
9130                         rp="What is the size of your file positions (in bytes)?"
9131                         . ./myread
9132                         fpossize="$ans"
9133                 fi
9134                 $rm -f try.c try
9135         fi
9136         ;;
9137 esac
9138
9139 case "$vendorprefix" in
9140 '')     d_vendorbin="$undef"
9141         vendorbin=''
9142         vendorbinexp=''
9143         ;;
9144 *)      d_vendorbin="$define"
9145         : determine where vendor-supplied executables go.
9146         case "$vendorbin" in
9147         '') dflt=$vendorprefix/bin ;;
9148         *)      dflt="$vendorbin" ;;
9149         esac
9150         fn=d~+
9151         rp='Pathname for the vendor-supplied executables directory?'
9152         . ./getfile
9153         vendorbin="$ans"
9154         vendorbinexp="$ansexp"
9155         ;;
9156 esac
9157 prefixvar=vendorbin
9158 . ./installprefix
9159
9160 case "$vendorprefix" in
9161 '')     vendorhtml1dir=''
9162         vendorhtml1direxp=''
9163         ;;
9164 *)      : determine where vendor-supplied html pages go.
9165         : There is no standard location, so try to copy the previously-selected
9166         : directory structure for the core html pages.
9167         : XXX Better default suggestions would be welcome.
9168         case "$vendorhtml1dir" in
9169         '')     dflt=`echo "$html1dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9170         *)      dflt=$vendorhtml1dir ;;
9171         esac
9172         case "$dflt" in
9173         ''|' ') dflt=none ;;
9174         esac
9175         fn=dn+~
9176         rp='Pathname for the vendor-supplied html pages?'
9177         . ./getfile
9178         vendorhtml1dir="$ans"
9179         vendorhtml1direxp="$ansexp"
9180         ;;
9181 esac
9182 : Use ' ' for none so value is preserved next time through Configure
9183 $test X"$vendorhtml1dir" = "X" && vendorhtml1dir=' '
9184 prefixvar=vendorhtml1dir
9185 . ./installprefix
9186
9187 case "$vendorprefix" in
9188 '')     vendorhtml3dir=''
9189         vendorhtml3direxp=''
9190         ;;
9191 *)      : determine where vendor-supplied module html pages go.
9192         : There is no standard location, so try to copy the previously-selected
9193         : directory structure for the core html pages.
9194         : XXX Better default suggestions would be welcome.
9195         case "$vendorhtml3dir" in
9196         '')     dflt=`echo "$html3dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9197         *)      dflt=$vendorhtml3dir ;;
9198         esac
9199         case "$dflt" in
9200         ''|' ') dflt=none ;;
9201         esac
9202         fn=dn+~
9203         rp='Pathname for the vendor-supplied html pages?'
9204         . ./getfile
9205         vendorhtml3dir="$ans"
9206         vendorhtml3direxp="$ansexp"
9207         ;;
9208 esac
9209 : Use ' ' for none so value is preserved next time through Configure
9210 $test X"$vendorhtml3dir" = "X" && vendorhtml3dir=' '
9211 prefixvar=vendorhtml3dir
9212 . ./installprefix
9213
9214 case "$vendorprefix" in
9215 '')     vendorman1dir=''
9216         vendorman1direxp=''
9217         ;;
9218 *)      : determine where vendor-supplied manual pages go.
9219         case "$vendorman1dir" in
9220         '') dflt=`echo "$man1dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9221         *)      dflt=$vendorman1dir ;;
9222         esac
9223         case "$dflt" in
9224         ''|' ') dflt=none ;;
9225         esac
9226         fn=nd~+
9227         rp='Pathname for the vendor-supplied manual section 1 pages?'
9228         . ./getfile
9229         vendorman1dir="$ans"
9230         vendorman1direxp="$ansexp"
9231         ;;
9232 esac
9233 : Use ' ' for none so value is preserved next time through Configure
9234 $test X"$vendorman1dir" = "X" && vendorman1dir=' '
9235 prefixvar=vendorman1dir
9236 . ./installprefix
9237
9238 case "$vendorprefix" in
9239 '')     vendorman3dir=''
9240         vendorman3direxp=''
9241         ;;
9242 *)      : determine where vendor-supplied module manual pages go.
9243         case "$vendorman3dir" in
9244         '') dflt=`echo "$man3dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9245         *)      dflt=$vendorman3dir ;;
9246         esac
9247         case "$dflt" in
9248         ''|' ') dflt=none ;;
9249         esac
9250         fn=nd~+
9251         rp='Pathname for the vendor-supplied manual section 3 pages?'
9252         . ./getfile
9253         vendorman3dir="$ans"
9254         vendorman3direxp="$ansexp"
9255         ;;
9256 esac
9257 : Use ' ' for none so value is preserved next time through Configure
9258 $test X"$vendorman3dir" = "X" && vendorman3dir=' '
9259 prefixvar=vendorman3dir
9260 . ./installprefix
9261
9262 case "$vendorprefix" in
9263 '')     d_vendorscript="$undef"
9264         vendorscript=''
9265         vendorscriptexp=''
9266         ;;
9267 *)      d_vendorscript="$define"
9268         : determine where vendor-supplied scripts go.
9269         case "$vendorscript" in
9270         '')     dflt=$vendorprefix/script
9271                 $test -d $dflt || dflt=$vendorbin ;;
9272         *)  dflt="$vendorscript" ;;
9273         esac
9274         $cat <<EOM
9275
9276 The installation process will create a directory for
9277 vendor-supplied scripts.
9278
9279 EOM
9280         fn=d~+
9281         rp='Pathname for the vendor-supplied scripts directory?'
9282         . ./getfile
9283         vendorscript="$ans"
9284         vendorscriptexp="$ansexp"
9285         ;;
9286 esac
9287 prefixvar=vendorscript
9288 . ./installprefix
9289
9290 : see if qgcvt exists
9291 set qgcvt d_qgcvt
9292 eval $inlibc
9293
9294 echo " "
9295
9296 if $test X"$d_longdbl" = X"$define"; then
9297
9298 echo "Checking how to print long doubles..." >&4
9299
9300 if $test X"$sPRIfldbl" = X -a X"$doublesize" = X"$longdblsize"; then
9301         $cat >try.c <<'EOCP'
9302 #include <sys/types.h>
9303 #include <stdio.h>
9304 int main() {
9305   double d = 123.456;
9306   printf("%.3f\n", d);
9307 }
9308 EOCP
9309         set try
9310         if eval $compile; then
9311                 yyy=`$run ./try`
9312                 case "$yyy" in
9313                 123.456)
9314                         sPRIfldbl='"f"'; sPRIgldbl='"g"'; sPRIeldbl='"e"';
9315                         sPRIFUldbl='"F"'; sPRIGUldbl='"G"'; sPRIEUldbl='"E"';
9316                         echo "We will use %f."
9317                         ;;
9318                 esac
9319         fi
9320 fi
9321
9322 if $test X"$sPRIfldbl" = X; then
9323         $cat >try.c <<'EOCP'
9324 #include <sys/types.h>
9325 #include <stdio.h>
9326 int main() {
9327   long double d = 123.456;
9328   printf("%.3Lf\n", d);
9329 }
9330 EOCP
9331         set try
9332         if eval $compile; then
9333                 yyy=`$run ./try`
9334                 case "$yyy" in
9335                 123.456)
9336                         sPRIfldbl='"Lf"'; sPRIgldbl='"Lg"'; sPRIeldbl='"Le"';
9337                         sPRIFUldbl='"LF"'; sPRIGUldbl='"LG"'; sPRIEUldbl='"LE"';
9338                         echo "We will use %Lf."
9339                         ;;
9340                 esac
9341         fi
9342 fi
9343
9344 if $test X"$sPRIfldbl" = X; then
9345         $cat >try.c <<'EOCP'
9346 #include <sys/types.h>
9347 #include <stdio.h>
9348 int main() {
9349   long double d = 123.456;
9350   printf("%.3llf\n", d);
9351 }
9352 EOCP
9353         set try
9354         if eval $compile; then
9355                 yyy=`$run ./try`
9356                 case "$yyy" in
9357                 123.456)
9358                         sPRIfldbl='"llf"'; sPRIgldbl='"llg"'; sPRIeldbl='"lle"';
9359                         sPRIFUldbl='"llF"'; sPRIGUldbl='"llG"'; sPRIEUldbl='"llE"';
9360                         echo "We will use %llf."
9361                         ;;
9362                 esac
9363         fi
9364 fi
9365
9366 if $test X"$sPRIfldbl" = X; then
9367         $cat >try.c <<'EOCP'
9368 #include <sys/types.h>
9369 #include <stdio.h>
9370 int main() {
9371   long double d = 123.456;
9372   printf("%.3lf\n", d);
9373 }
9374 EOCP
9375         set try
9376         if eval $compile; then
9377                 yyy=`$run ./try`
9378                 case "$yyy" in
9379                 123.456)
9380                         sPRIfldbl='"lf"'; sPRIgldbl='"lg"'; sPRIeldbl='"le"';
9381                         sPRIFUldbl='"lF"'; sPRIGUldbl='"lG"'; sPRIEUldbl='"lE"';
9382                         echo "We will use %lf."
9383                         ;;
9384                 esac
9385         fi
9386 fi
9387
9388 if $test X"$sPRIfldbl" = X; then
9389         echo "Cannot figure out how to print long doubles." >&4
9390 else
9391         sSCNfldbl=$sPRIfldbl    # expect consistency
9392 fi
9393
9394 $rm -f try try.*
9395
9396 fi # d_longdbl
9397
9398 case "$sPRIfldbl" in
9399 '')     d_PRIfldbl="$undef"; d_PRIgldbl="$undef"; d_PRIeldbl="$undef"; 
9400         d_PRIFUldbl="$undef"; d_PRIGUldbl="$undef"; d_PRIEUldbl="$undef"; 
9401         d_SCNfldbl="$undef";
9402         ;;
9403 *)      d_PRIfldbl="$define"; d_PRIgldbl="$define"; d_PRIeldbl="$define"; 
9404         d_PRIFUldbl="$define"; d_PRIGUldbl="$define"; d_PRIEUldbl="$define"; 
9405         d_SCNfldbl="$define";
9406         ;;
9407 esac
9408
9409 : Check how to convert floats to strings.
9410
9411 if test "X$d_Gconvert" = X; then
9412
9413 echo " "
9414 echo "Checking for an efficient way to convert floats to strings."
9415 echo " " > try.c
9416 case "$uselongdouble" in
9417 "$define") echo "#define USE_LONG_DOUBLE" >>try.c ;;
9418 esac
9419 case "$d_longdbl" in
9420 "$define") echo "#define HAS_LONG_DOUBLE" >>try.c ;;
9421 esac
9422 case "$d_PRIgldbl" in
9423 "$define") echo "#define HAS_PRIgldbl"    >>try.c ;;
9424 esac
9425 $cat >>try.c <<EOP
9426 #ifdef TRY_gconvert
9427 #define Gconvert(x,n,t,b) gconvert((x),(n),(t),(b))
9428 char *myname = "gconvert";
9429 #endif
9430 #ifdef TRY_gcvt
9431 #define Gconvert(x,n,t,b) gcvt((x),(n),(b))
9432 char *myname = "gcvt";
9433 #endif
9434 #ifdef TRY_qgcvt
9435 #define Gconvert(x,n,t,b) qgcvt((x),(n),(b))
9436 char *myname = "qgcvt";
9437 #define DOUBLETYPE long double
9438 #endif
9439 #ifdef TRY_sprintf
9440 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
9441 #ifdef HAS_PRIgldbl
9442 #define Gconvert(x,n,t,b) sprintf((b),"%.*"$sPRIgldbl,(n),(x))
9443 #else
9444 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(double)(x))
9445 #endif
9446 #else
9447 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))
9448 #endif
9449 char *myname = "sprintf";
9450 #endif
9451
9452 #ifndef DOUBLETYPE
9453 #if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
9454 #define DOUBLETYPE long double
9455 #else
9456 #define DOUBLETYPE double
9457 #endif
9458 #endif
9459
9460 #include <stdio.h>
9461
9462 #define I_STDLIB $i_stdlib
9463 #ifdef I_STDLIB
9464 #include <stdlib.h>
9465 #endif
9466
9467 int
9468 checkit(expect, got)
9469 char *expect;
9470 char *got;
9471 {
9472     if (strcmp(expect, got)) {
9473                 printf("%s oddity:  Expected %s, got %s\n",
9474                         myname, expect, got);
9475                 exit(1);
9476         }
9477 }
9478
9479 int main()
9480
9481         char buf[64]; 
9482         buf[63] = '\0';
9483
9484         /* This must be 1st test on (which?) platform */
9485         /* Alan Burlison <AlanBurlsin@unn.unisys.com> */
9486         Gconvert((DOUBLETYPE)0.1, 8, 0, buf);
9487         checkit("0.1", buf);
9488
9489         Gconvert((DOUBLETYPE)0.01, 8, 0, buf); 
9490         checkit("0.01", buf);
9491
9492         Gconvert((DOUBLETYPE)0.001, 8, 0, buf); 
9493         checkit("0.001", buf);
9494
9495         Gconvert((DOUBLETYPE)0.0001, 8, 0, buf); 
9496         checkit("0.0001", buf);
9497
9498         Gconvert((DOUBLETYPE)0.00009, 8, 0, buf);
9499         if (strlen(buf) > 5)
9500             checkit("9e-005", buf); /* for Microsoft ?? */
9501         else
9502             checkit("9e-05", buf);
9503
9504         Gconvert((DOUBLETYPE)1.0, 8, 0, buf); 
9505         checkit("1", buf);
9506
9507         Gconvert((DOUBLETYPE)1.1, 8, 0, buf); 
9508         checkit("1.1", buf);
9509
9510         Gconvert((DOUBLETYPE)1.01, 8, 0, buf); 
9511         checkit("1.01", buf);
9512
9513         Gconvert((DOUBLETYPE)1.001, 8, 0, buf); 
9514         checkit("1.001", buf);
9515
9516         Gconvert((DOUBLETYPE)1.0001, 8, 0, buf); 
9517         checkit("1.0001", buf);
9518
9519         Gconvert((DOUBLETYPE)1.00001, 8, 0, buf); 
9520         checkit("1.00001", buf);
9521
9522         Gconvert((DOUBLETYPE)1.000001, 8, 0, buf); 
9523         checkit("1.000001", buf);
9524
9525         Gconvert((DOUBLETYPE)0.0, 8, 0, buf); 
9526         checkit("0", buf);
9527
9528         Gconvert((DOUBLETYPE)-1.0, 8, 0, buf); 
9529         checkit("-1", buf);
9530
9531         /* Some Linux gcvt's give 1.e+5 here. */
9532         Gconvert((DOUBLETYPE)100000.0, 8, 0, buf); 
9533         checkit("100000", buf);
9534         
9535         /* Some Linux gcvt's give -1.e+5 here. */
9536         Gconvert((DOUBLETYPE)-100000.0, 8, 0, buf); 
9537         checkit("-100000", buf);
9538
9539         Gconvert((DOUBLETYPE)123.456, 8, 0, buf); 
9540         checkit("123.456", buf);
9541
9542         /* Testing of 1e+129 in bigintpm.t must not get extra '.' here. */
9543         Gconvert((DOUBLETYPE)1e34, 8, 0, buf);
9544         /* 34 should be enough to scare even long double
9545          * places into using the e notation. */
9546         if (strlen(buf) > 5)
9547             checkit("1e+034", buf); /* for Microsoft */
9548         else
9549             checkit("1e+34", buf);
9550
9551         /* For Perl, if you add additional tests here, also add them to
9552          * t/base/num.t for benefit of platforms not using Configure or
9553          * overriding d_Gconvert */
9554
9555         exit(0);
9556 }
9557 EOP
9558 : first add preferred functions to our list
9559 xxx_list=""
9560 for xxx_convert in $gconvert_preference; do
9561     case $xxx_convert in
9562     gcvt|gconvert|sprintf) xxx_list="$xxx_list $xxx_convert" ;;
9563     *) echo "Discarding unrecognized gconvert_preference $xxx_convert" >&4 ;;
9564     esac 
9565 done
9566 : then add any others
9567 for xxx_convert in gconvert gcvt sprintf; do
9568     case "$xxx_list" in
9569     *$xxx_convert*) ;;
9570     *) xxx_list="$xxx_list $xxx_convert" ;;
9571     esac 
9572 done
9573
9574 case "$d_longdbl$uselongdouble" in
9575 "$define$define")
9576     : again, add prefered functions to our list first
9577     xxx_ld_list=""
9578     for xxx_convert in $gconvert_ld_preference; do
9579         case $xxx_convert in
9580         qgcvt|gcvt|gconvert|sprintf) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
9581         *) echo "Discarding unrecognized gconvert_ld_preference $xxx_convert" ;;
9582         esac
9583     done
9584     : then add qgcvt, sprintf--then, in xxx_list order, gconvert and gcvt
9585     for xxx_convert in qgcvt sprintf $xxx_list; do
9586         case "$xxx_ld_list" in
9587         $xxx_convert*|*" $xxx_convert"*) ;;
9588         *) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
9589         esac
9590     done
9591     : if sprintf cannot do long doubles, move it to the end
9592     if test "$d_PRIgldbl" != "$define"; then
9593         xxx_ld_list="`echo $xxx_ld_list|sed s/sprintf//` sprintf"
9594     fi
9595     : if no qgcvt, remove it
9596     if test "$d_qgcvt" != "$define"; then
9597         xxx_ld_list="`echo $xxx_ld_list|sed s/qgcvt//`"
9598     fi
9599     : use the ld_list
9600     xxx_list="$xxx_ld_list"
9601     ;;
9602 esac
9603
9604 for xxx_convert in $xxx_list; do
9605         echo "Trying $xxx_convert..."
9606         $rm -f try try$_o
9607         set try -DTRY_$xxx_convert
9608         if eval $compile; then
9609                 echo "$xxx_convert() found." >&4
9610                 if $run ./try; then
9611                         echo "I'll use $xxx_convert to convert floats into a string." >&4
9612                         break;
9613                 else
9614                         echo "...But $xxx_convert didn't work as I expected."
9615                         xxx_convert=''
9616                 fi
9617         else
9618                 echo "$xxx_convert NOT found." >&4
9619         fi
9620 done
9621
9622 if test X$xxx_convert = X; then
9623     echo "*** WHOA THERE!!! ***" >&4
9624     echo "None of ($xxx_list)  seemed to work properly.  I'll use sprintf." >&4
9625     xxx_convert=sprintf
9626 fi
9627
9628 case "$xxx_convert" in
9629 gconvert) d_Gconvert='gconvert((x),(n),(t),(b))' ;;
9630 gcvt) d_Gconvert='gcvt((x),(n),(b))' ;;
9631 qgcvt) d_Gconvert='qgcvt((x),(n),(b))' ;;
9632 *) case "$uselongdouble$d_longdbl$d_PRIgldbl" in
9633    "$define$define$define")
9634       d_Gconvert="sprintf((b),\"%.*\"$sPRIgldbl,(n),(x))" ;;
9635    "$define$define$undef")
9636       d_Gconvert='sprintf((b),"%.*g",(n),(double)(x))' ;;
9637    *) d_Gconvert='sprintf((b),"%.*g",(n),(x))' ;;
9638    esac
9639    ;;  
9640 esac
9641
9642 fi
9643
9644 : see if _fwalk exists
9645 set fwalk d__fwalk
9646 eval $inlibc
9647
9648 : Initialize h_fcntl
9649 h_fcntl=false
9650
9651 : Initialize h_sysfile
9652 h_sysfile=false
9653
9654 : access call always available on UNIX
9655 set access d_access
9656 eval $inlibc
9657
9658 : locate the flags for 'access()'
9659 case "$d_access" in
9660 "$define")
9661         echo " "
9662         $cat >access.c <<EOCP
9663 #include <sys/types.h>
9664 #ifdef I_FCNTL
9665 #include <fcntl.h>
9666 #endif
9667 #ifdef I_SYS_FILE
9668 #include <sys/file.h>
9669 #endif
9670 #ifdef I_UNISTD
9671 #include <unistd.h>
9672 #endif
9673 #$i_stdlib I_STDLIB
9674 #ifdef I_STDLIB
9675 #include <stdlib.h>
9676 #endif
9677 int main() {
9678         exit(R_OK);
9679 }
9680 EOCP
9681         : check sys/file.h first, no particular reason here
9682         if $test `./findhdr sys/file.h` && \
9683                 $cc -o access $cppflags -DI_SYS_FILE access.c >/dev/null 2>&1 ; then
9684                 h_sysfile=true;
9685                 echo "<sys/file.h> defines the *_OK access constants." >&4
9686         elif $test `./findhdr fcntl.h` && \
9687                 $cc -o access $cppflags -DI_FCNTL access.c >/dev/null 2>&1 ; then
9688                 h_fcntl=true;
9689                 echo "<fcntl.h> defines the *_OK access constants." >&4
9690         elif $test `./findhdr unistd.h` && \
9691                 $cc -o access $cppflags -DI_UNISTD access.c >/dev/null 2>&1 ; then
9692                 echo "<unistd.h> defines the *_OK access constants." >&4
9693         else
9694                 echo "I can't find the four *_OK access constants--I'll use mine." >&4
9695         fi
9696         ;;
9697 esac
9698 $rm -f access*
9699
9700 : see if accessx exists
9701 set accessx d_accessx
9702 eval $inlibc
9703
9704 : see if aintl exists
9705 set aintl d_aintl
9706 eval $inlibc
9707
9708 : see if alarm exists
9709 set alarm d_alarm
9710 eval $inlibc
9711
9712 : see if POSIX threads are available
9713 set pthread.h i_pthread
9714 eval $inhdr
9715
9716 : define a fucntion to check prototypes
9717 $cat > protochk <<EOSH
9718 $startsh
9719 cc="$cc"
9720 optimize="$optimize"
9721 ccflags="$ccflags"
9722 prototype="$prototype"
9723 define="$define"
9724 rm=$rm
9725 usethreads=$usethreads
9726 i_pthread=$i_pthread
9727 pthread_h_first=$pthread_h_first
9728 EOSH
9729
9730 $cat >> protochk <<'EOSH'
9731
9732 $rm -f try.c
9733 foo="$1"
9734 shift
9735 while test $# -ge 2; do
9736         case "$1" in
9737                 $define) echo "#include <$2>" >> try.c ;;
9738                 literal) echo "$2" >> try.c ;;
9739         esac
9740     # Extra magic for the benefit of systems that need pthread.h
9741     # to be included early to correctly detect threadsafe functions.
9742     # Such functions must guarantee themselves, though, that the usethreads
9743     # and i_pthread have been defined, before calling protochk.
9744     if test "$usethreads" = "$define" -a "$i_pthread" = "$define" -a "$pthread_h_first" = "$define" -a "$pthread_h_done" = ""; then
9745         echo "#include <pthread.h>" >> try.c
9746         pthread_h_done=yes
9747     fi
9748     shift 2
9749 done
9750 test "$prototype" = "$define"  && echo '#define CAN_PROTOTYPE' >> try.c
9751 cat >> try.c <<'EOCP'
9752 #ifdef CAN_PROTOTYPE
9753 #define _(args) args
9754 #else
9755 #define _(args) ()
9756 #endif
9757 EOCP
9758 echo "$foo" >> try.c
9759 echo 'int no_real_function_has_this_name _((void)) { return 0; }' >> try.c
9760 $cc $optimize $ccflags -c try.c > /dev/null 2>&1
9761 status=$?
9762 $rm -f try.[co]
9763 exit $status
9764 EOSH
9765 chmod +x protochk
9766 $eunicefix protochk
9767
9768 hasproto='varname=$1; func=$2; shift; shift;
9769 while $test $# -ge 2; do
9770         case "$1" in
9771         $define) echo "#include <$2>";;
9772         esac ;
9773     shift 2;
9774 done > try.c;
9775 $cppstdin $cppflags $cppminus < try.c > tryout.c 2>/dev/null;
9776 if $contains "$func.*(" tryout.c >/dev/null 2>&1; then
9777         echo "$func() prototype found.";
9778         val="$define";
9779 else
9780         echo "$func() prototype NOT found.";
9781         val="$undef";
9782 fi;
9783 set $varname;
9784 eval $setvar;
9785 $rm -f try.c tryout.c'
9786
9787 : see if sys/types.h has to be included
9788 set sys/types.h i_systypes
9789 eval $inhdr
9790
9791 : see if sys/select.h has to be included
9792 set sys/select.h i_sysselct
9793 eval $inhdr
9794
9795 hasfield='varname=$1; struct=$2; field=$3; shift; shift; shift;
9796 while $test $# -ge 2; do
9797         case "$1" in
9798         $define) echo "#include <$2>";;
9799         esac ;
9800     shift 2;
9801 done > try.c;
9802 echo "int main () { struct $struct foo; char* bar; bar = (char*)foo.$field; }" >> try.c;
9803 set try;
9804 if eval $compile; then
9805         val="$define";
9806 else
9807         val="$undef";
9808 fi;
9809 set $varname;
9810 eval $setvar;
9811 $rm -f try.c try.o'
9812
9813 : see if we should include time.h, sys/time.h, or both
9814 echo " "
9815 if test "X$timeincl" = X; then
9816         echo "Testing to see if we should include <time.h>, <sys/time.h> or both." >&4
9817         $echo $n "I'm now running the test program...$c"
9818         $cat >try.c <<EOCP
9819 #include <sys/types.h>
9820 #ifdef I_TIME
9821 #include <time.h>
9822 #endif
9823 #ifdef I_SYSTIME
9824 #ifdef SYSTIMEKERNEL
9825 #define KERNEL
9826 #endif
9827 #include <sys/time.h>
9828 #endif
9829 #ifdef I_SYSSELECT
9830 #include <sys/select.h>
9831 #endif
9832 #$i_stdlib I_STDLIB
9833 #ifdef I_STDLIB
9834 #include <stdlib.h>
9835 #endif
9836 int main()
9837 {
9838         struct tm foo;
9839 #ifdef S_TIMEVAL
9840         struct timeval bar;
9841 #endif
9842 #ifdef S_TIMEZONE
9843         struct timezone tzp;
9844 #endif
9845         if (foo.tm_sec == foo.tm_sec)
9846                 exit(0);
9847 #ifdef S_TIMEVAL
9848         if (bar.tv_sec == bar.tv_sec)
9849                 exit(0);
9850 #endif
9851         exit(1);
9852 }
9853 EOCP
9854         flags=''
9855         for s_timezone in '-DS_TIMEZONE' ''; do
9856         sysselect=''
9857         for s_timeval in '-DS_TIMEVAL' ''; do
9858         for i_systimek in '' '-DSYSTIMEKERNEL'; do
9859         for i_time in '' '-DI_TIME'; do
9860         for i_systime in '-DI_SYSTIME' ''; do
9861                 case "$flags" in
9862                 '') $echo $n ".$c"
9863                         set try $i_time $i_systime $i_systimek $sysselect $s_timeval $s_timezone
9864                         if eval $compile; then
9865                                 set X $i_time $i_systime $i_systimek $sysselect $s_timeval
9866                                 shift
9867                                 flags="$*"
9868                                 echo " "
9869                                 $echo $n "Succeeded with $flags$c"
9870                         fi
9871                         ;;
9872                 esac
9873         done
9874         done
9875         done
9876         done
9877         done
9878         timeincl=''
9879         echo " "
9880         case "$flags" in
9881         *SYSTIMEKERNEL*) i_systimek="$define"
9882                 timeincl=`./findhdr sys/time.h`
9883                 echo "We'll include <sys/time.h> with KERNEL defined." >&4;;
9884         *) i_systimek="$undef";;
9885         esac
9886         case "$flags" in
9887         *I_TIME*) i_time="$define"
9888                 timeincl=`./findhdr time.h`" $timeincl"
9889                 echo "We'll include <time.h>." >&4;;
9890         *) i_time="$undef";;
9891         esac
9892         case "$flags" in
9893         *I_SYSTIME*) i_systime="$define"
9894                 timeincl=`./findhdr sys/time.h`" $timeincl"
9895                 echo "We'll include <sys/time.h>." >&4;;
9896         *) i_systime="$undef";;
9897         esac
9898         $rm -f try.c try
9899 fi
9900 : see if struct tm knows about tm_zone
9901 case "$i_systime$i_time" in
9902 *$define*) 
9903         echo " "
9904         echo "Checking to see if your struct tm has tm_zone field..." >&4
9905         set d_tm_tm_zone tm tm_zone $i_systime sys/time.h $i_time time.h
9906         eval $hasfield
9907         ;;
9908 *)      val="$undef"
9909         set d_tm_tm_zone
9910         eval $setvar
9911         ;;
9912 esac
9913 case "$d_tm_tm_zone" in
9914 "$define")      echo "Yes, it does."   ;;
9915 *)              echo "No, it doesn't." ;;
9916 esac
9917 : see if struct tm knows about tm_gmtoff
9918 case "$i_systime$i_time" in
9919 *$define*) 
9920         echo " "
9921         echo "Checking to see if your struct tm has tm_gmtoff field..." >&4
9922         set d_tm_tm_gmtoff tm tm_gmtoff $i_systime sys/time.h $i_time time.h
9923         eval $hasfield
9924         ;;
9925 *)      val="$undef"
9926         set d_tm_tm_gmtoff
9927         eval $setvar
9928         ;;
9929 esac
9930 case "$d_tm_tm_gmtoff" in
9931 "$define")      echo "Yes, it does."   ;;
9932 *)              echo "No, it doesn't." ;;
9933 esac
9934
9935 : see if asctime_r exists
9936 set asctime_r d_asctime_r
9937 eval $inlibc
9938 case "$d_asctime_r" in
9939 "$define")
9940         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
9941         case "$d_asctime_r_proto:$usethreads" in
9942         ":define")      d_asctime_r_proto=define
9943                 set d_asctime_r_proto asctime_r $hdrs
9944                 eval $hasproto ;;
9945         *)      ;;
9946         esac
9947         case "$d_asctime_r_proto" in
9948         define)
9949         case "$asctime_r_proto" in
9950         ''|0) try='char* asctime_r(const struct tm*, char*);'
9951         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SB ;;
9952         esac
9953         case "$asctime_r_proto" in
9954         ''|0) try='char* asctime_r(const struct tm*, char*, int);'
9955         ./protochk "extern $try" $hdrs && asctime_r_proto=B_SBI ;;
9956         esac
9957         case "$asctime_r_proto" in
9958         ''|0) try='int asctime_r(const struct tm*, char*);'
9959         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SB ;;
9960         esac
9961         case "$asctime_r_proto" in
9962         ''|0) try='int asctime_r(const struct tm*, char*, int);'
9963         ./protochk "extern $try" $hdrs && asctime_r_proto=I_SBI ;;
9964         esac
9965         case "$asctime_r_proto" in
9966         ''|0)   d_asctime_r=undef
9967                 asctime_r_proto=0
9968                 echo "Disabling asctime_r, cannot determine prototype." >&4 ;;
9969         * )     case "$asctime_r_proto" in
9970                 REENTRANT_PROTO*) ;;
9971                 *) asctime_r_proto="REENTRANT_PROTO_$asctime_r_proto" ;;
9972                 esac
9973                 echo "Prototype: $try" ;;
9974         esac
9975         ;;
9976         *)      case "$usethreads" in
9977                 define) echo "asctime_r has no prototype, not using it." >&4 ;;
9978                 esac
9979                 d_asctime_r=undef
9980                 asctime_r_proto=0
9981                 ;;
9982         esac
9983         ;;
9984 *)      asctime_r_proto=0
9985         ;;
9986 esac
9987
9988 : see if atolf exists
9989 set atolf d_atolf
9990 eval $inlibc
9991
9992 : see if atoll exists
9993 set atoll d_atoll
9994 eval $inlibc
9995
9996 : Look for GCC-style attribute format
9997 case "$d_attribute_format" in
9998 '')
9999 echo " "
10000 echo "Checking whether your compiler can handle __attribute__((format)) ..." >&4
10001 $cat >attrib.c <<'EOCP'
10002 #include <stdio.h>
10003 void my_special_printf(char* pat,...) __attribute__((__format__(__printf__,1,2)));
10004 EOCP
10005 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
10006         if $contains 'warning' attrib.out >/dev/null 2>&1; then
10007                 echo "Your C compiler doesn't support __attribute__((format))."
10008                 val="$undef"
10009         else
10010                 echo "Your C compiler supports __attribute__((format))."
10011                 val="$define"
10012         fi
10013 else
10014         echo "Your C compiler doesn't seem to understand __attribute__ at all."
10015         val="$undef"
10016 fi
10017 ;;
10018 *) val="$d_attribute_format" ;;
10019 esac
10020 set d_attribute_format
10021 eval $setvar
10022 $rm -f attrib*
10023
10024 : Look for GCC-style attribute format with null format allowed
10025 case "$d_printf_format_null" in
10026 '') case "$d_attribute_format" in
10027     $define)
10028         echo " "
10029         echo "Checking whether your compiler allows __printf__ format to be null ..." >&4
10030 $cat >attrib.c <<EOCP
10031 #include <stdio.h>
10032 #$i_stdlib I_STDLIB
10033 #ifdef I_STDLIB
10034 #include <stdlib.h>
10035 #endif
10036 int null_printf (char* pat,...) __attribute__((__format__(__printf__,1,2)));
10037 int null_printf (char* pat,...) { return (int)pat; }
10038 int main () { exit(null_printf(NULL)); }
10039 EOCP
10040         if $cc $ccflags -o attrib attrib.c >attrib.out 2>&1 ; then
10041             : run the executable in case it produces a run-time warning
10042             if $run ./attrib >>attrib.out 2>&1; then
10043                 if $contains 'warning' attrib.out >/dev/null 2>&1; then
10044                     echo "Your C compiler doesn't allow __printf__ format to be null."
10045                     val="$undef"
10046                 else
10047                     echo "Your C compiler allows __printf__ format to be null."
10048                     val="$define"
10049                 fi
10050             else
10051             echo "Your C compiler executable failed with __printf__ format null."
10052             val="$undef"
10053         fi
10054     else
10055         echo "Your C compiler fails with __printf__ format null."
10056         val="$undef"
10057     fi
10058     ;;
10059     *)  val="$undef" ;;
10060     esac
10061 ;;
10062 *)  val="$d_printf_format_null" ;;
10063 esac
10064 set d_printf_format_null
10065 eval $setvar
10066 $rm -f attrib*
10067
10068 : Look for GCC-style attribute malloc
10069 case "$d_attribute_malloc" in
10070 '')
10071 echo " "
10072 echo "Checking whether your compiler can handle __attribute__((malloc)) ..." >&4
10073 $cat >attrib.c <<'EOCP'
10074 #include <stdio.h>
10075 char *go_get_some_memory( int how_many_bytes ) __attribute__((malloc));
10076 EOCP
10077 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
10078         if $contains 'warning' attrib.out >/dev/null 2>&1; then
10079                 echo "Your C compiler doesn't support __attribute__((malloc))."
10080                 val="$undef"
10081         else
10082                 echo "Your C compiler supports __attribute__((malloc))."
10083                 val="$define"
10084         fi
10085 else
10086         echo "Your C compiler doesn't seem to understand __attribute__ at all."
10087         val="$undef"
10088 fi
10089 ;;
10090 *) val="$d_attribute_malloc" ;;
10091 esac
10092 set d_attribute_malloc
10093 eval $setvar
10094 $rm -f attrib*
10095
10096 : Look for GCC-style attribute nonnull
10097 case "$d_attribute_nonnull" in
10098 '')
10099 echo " "
10100 echo "Checking whether your compiler can handle __attribute__((nonnull(1))) ..." >&4
10101 $cat >attrib.c <<'EOCP'
10102 #include <stdio.h>
10103 void do_something (char *some_pointer,...) __attribute__((nonnull(1)));
10104 EOCP
10105 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
10106         if $contains 'warning' attrib.out >/dev/null 2>&1; then
10107                 echo "Your C compiler doesn't support __attribute__((nonnull))."
10108                 val="$undef"
10109         else
10110                 echo "Your C compiler supports __attribute__((nonnull))."
10111                 val="$define"
10112         fi
10113 else
10114         echo "Your C compiler doesn't seem to understand __attribute__ at all."
10115         val="$undef"
10116 fi
10117 ;;
10118 *) val="$d_attribute_nonnull" ;;
10119 esac
10120 set d_attribute_nonnull
10121 eval $setvar
10122 $rm -f attrib*
10123
10124 : Look for GCC-style attribute noreturn
10125 case "$d_attribute_noreturn" in
10126 '')
10127 echo " "
10128 echo "Checking whether your compiler can handle __attribute__((noreturn)) ..." >&4
10129 $cat >attrib.c <<'EOCP'
10130 #include <stdio.h>
10131 void fall_over_dead( void ) __attribute__((noreturn));
10132 EOCP
10133 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
10134         if $contains 'warning' attrib.out >/dev/null 2>&1; then
10135                 echo "Your C compiler doesn't support __attribute__((noreturn))."
10136                 val="$undef"
10137         else
10138                 echo "Your C compiler supports __attribute__((noreturn))."
10139                 val="$define"
10140         fi
10141 else
10142         echo "Your C compiler doesn't seem to understand __attribute__ at all."
10143         val="$undef"
10144 fi
10145 ;;
10146 *) val="$d_attribute_noreturn" ;;
10147 esac
10148 set d_attribute_noreturn
10149 eval $setvar
10150 $rm -f attrib*
10151
10152 : Look for GCC-style attribute pure
10153 case "$d_attribute_pure" in
10154 '')
10155 echo " "
10156 echo "Checking whether your compiler can handle __attribute__((pure)) ..." >&4
10157 $cat >attrib.c <<'EOCP'
10158 #include <stdio.h>
10159 int square( int n ) __attribute__((pure));
10160 EOCP
10161 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
10162         if $contains 'warning' attrib.out >/dev/null 2>&1; then
10163                 echo "Your C compiler doesn't support __attribute__((pure))."
10164                 val="$undef"
10165         else
10166                 echo "Your C compiler supports __attribute__((pure))."
10167                 val="$define"
10168         fi
10169 else
10170         echo "Your C compiler doesn't seem to understand __attribute__ at all."
10171         val="$undef"
10172 fi
10173 ;;
10174 *) val="$d_attribute_pure" ;;
10175 esac
10176 set d_attribute_pure
10177 eval $setvar
10178 $rm -f attrib*
10179
10180 : Look for GCC-style attribute unused
10181 case "$d_attribute_unused" in
10182 '')
10183 echo " "
10184 echo "Checking whether your compiler can handle __attribute__((unused)) ..." >&4
10185 $cat >attrib.c <<'EOCP'
10186 #include <stdio.h>
10187 int do_something( int dummy __attribute__((unused)), int n );
10188 EOCP
10189 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
10190         if $contains 'warning' attrib.out >/dev/null 2>&1; then
10191                 echo "Your C compiler doesn't support __attribute__((unused))."
10192                 val="$undef"
10193         else
10194                 echo "Your C compiler supports __attribute__((unused))."
10195                 val="$define"
10196         fi
10197 else
10198         echo "Your C compiler doesn't seem to understand __attribute__ at all."
10199         val="$undef"
10200 fi
10201 ;;
10202 *) val="$d_attribute_unused" ;;
10203 esac
10204 set d_attribute_unused
10205 eval $setvar
10206 $rm -f attrib*
10207
10208 : Look for GCC-style attribute warn_unused_result
10209 case "$d_attribute_warn_unused_result" in
10210 '')
10211 echo " "
10212 echo "Checking whether your compiler can handle __attribute__((warn_unused_result)) ..." >&4
10213 $cat >attrib.c <<'EOCP'
10214 #include <stdio.h>
10215 int I_will_not_be_ignored(void) __attribute__((warn_unused_result));
10216 EOCP
10217 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
10218         if $contains 'warning' attrib.out >/dev/null 2>&1; then
10219                 echo "Your C compiler doesn't support __attribute__((warn_unused_result))."
10220                 val="$undef"
10221         else
10222                 echo "Your C compiler supports __attribute__((warn_unused_result))."
10223                 val="$define"
10224         fi
10225 else
10226         echo "Your C compiler doesn't seem to understand __attribute__ at all."
10227         val="$undef"
10228 fi
10229 ;;
10230 *) val="$d_attribute_warn_unused_result" ;;
10231 esac
10232 set d_attribute_warn_unused_result
10233 eval $setvar
10234 $rm -f attrib*
10235
10236 : see if bcmp exists
10237 set bcmp d_bcmp
10238 eval $inlibc
10239
10240 : see if bcopy exists
10241 set bcopy d_bcopy
10242 eval $inlibc
10243
10244 : see if getpgrp exists
10245 set getpgrp d_getpgrp
10246 eval $inlibc
10247
10248 case "$d_getpgrp" in
10249 "$define")
10250         echo " "
10251         echo "Checking to see which flavor of getpgrp is in use..."
10252         $cat >try.c <<EOP
10253 #$i_unistd I_UNISTD
10254 #include <sys/types.h>
10255 #ifdef I_UNISTD
10256 #  include <unistd.h>
10257 #endif
10258 #$i_stdlib I_STDLIB
10259 #ifdef I_STDLIB
10260 #include <stdlib.h>
10261 #endif
10262 int main()
10263 {
10264         if (getuid() == 0) {
10265                 printf("(I see you are running Configure as super-user...)\n");
10266                 setuid(1);
10267         }
10268 #ifdef TRY_BSD_PGRP
10269         if (getpgrp(1) == 0)
10270                 exit(0);
10271 #else
10272         if (getpgrp() > 0)
10273                 exit(0);
10274 #endif
10275         exit(1);
10276 }
10277 EOP
10278         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
10279                 echo "You have to use getpgrp(pid) instead of getpgrp()." >&4
10280                 val="$define"
10281         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
10282                 echo "You have to use getpgrp() instead of getpgrp(pid)." >&4
10283                 val="$undef"
10284         else
10285                 echo "I can't seem to compile and run the test program."
10286                 if ./usg; then
10287                         xxx="a USG one, i.e. you use getpgrp()."
10288                 else
10289                         # SVR4 systems can appear rather BSD-ish.
10290                         case "$i_unistd" in
10291                         $undef)
10292                                 xxx="a BSD one, i.e. you use getpgrp(pid)."
10293                                 val="$define"
10294                                 ;;
10295                         $define)
10296                                 xxx="probably a USG one, i.e. you use getpgrp()."
10297                                 val="$undef"
10298                                 ;;
10299                         esac
10300                 fi
10301                 echo "Assuming your getpgrp is $xxx" >&4
10302         fi
10303         ;;
10304 *) val="$undef";;
10305 esac
10306 set d_bsdgetpgrp
10307 eval $setvar
10308 $rm -f try try.*
10309
10310 : see if setpgrp exists
10311 set setpgrp d_setpgrp
10312 eval $inlibc
10313
10314 case "$d_setpgrp" in
10315 "$define")
10316         echo " "
10317         echo "Checking to see which flavor of setpgrp is in use..."
10318         $cat >try.c <<EOP
10319 #$i_unistd I_UNISTD
10320 #include <sys/types.h>
10321 #ifdef I_UNISTD
10322 #  include <unistd.h>
10323 #endif
10324 #$i_stdlib I_STDLIB
10325 #ifdef I_STDLIB
10326 #include <stdlib.h>
10327 #endif
10328 int main()
10329 {
10330         if (getuid() == 0) {
10331                 printf("(I see you are running Configure as super-user...)\n");
10332                 setuid(1);
10333         }
10334 #ifdef TRY_BSD_PGRP
10335         if (-1 == setpgrp(1, 1))
10336                 exit(0);
10337 #else
10338         if (setpgrp() != -1)
10339                 exit(0);
10340 #endif
10341         exit(1);
10342 }
10343 EOP
10344         if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
10345                 echo 'You have to use setpgrp(pid,pgrp) instead of setpgrp().' >&4
10346                 val="$define"
10347         elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
10348                 echo 'You have to use setpgrp() instead of setpgrp(pid,pgrp).' >&4
10349                 val="$undef"
10350         else
10351                 echo "(I can't seem to compile and run the test program.)"
10352                 if ./usg; then
10353                         xxx="a USG one, i.e. you use setpgrp()."
10354                 else
10355                         # SVR4 systems can appear rather BSD-ish.
10356                         case "$i_unistd" in
10357                         $undef)
10358                                 xxx="a BSD one, i.e. you use setpgrp(pid,pgrp)."
10359                                 val="$define"
10360                                 ;;
10361                         $define)
10362                                 xxx="probably a USG one, i.e. you use setpgrp()."
10363                                 val="$undef"
10364                                 ;;
10365                         esac
10366                 fi
10367                 echo "Assuming your setpgrp is $xxx" >&4
10368         fi
10369         ;;
10370 *) val="$undef";;
10371 esac
10372 set d_bsdsetpgrp
10373 eval $setvar
10374 $rm -f try try.*
10375 : Look for GCC-style __builtin_choose_expr
10376 case "$d_builtin_choose_expr" in
10377 '')
10378     echo " "
10379     echo "Checking whether your compiler can handle __builtin_choose_expr ..." >&4
10380     $cat >try.c <<'EOCP'
10381 #include <assert.h>
10382 #include <stdlib.h>
10383 #include <stdio.h>
10384
10385 #define SYRINX(x) __builtin_choose_expr( x, (1056*2), (103*50) )
10386
10387 int main(void) {
10388     assert( SYRINX(1) == 2112 );
10389     assert( SYRINX(1) != 5150 );
10390     assert( SYRINX(0) == 5150 );
10391     assert( SYRINX(0) != 2112 );
10392     puts( "All good!" );
10393     exit(0);
10394 }
10395
10396 EOCP
10397     set try
10398     if eval $compile; then
10399         echo "Your C compiler supports __builtin_choose_expr."
10400         val="$define"
10401     else
10402         echo "Your C compiler doesn't seem to understand __builtin_choose_expr."
10403         val="$undef"
10404     fi
10405 ;;
10406 *) val="$d_builtin_choose_expr" ;;
10407 esac
10408
10409 set d_builtin_choose_expr
10410 eval $setvar
10411 $rm -f try.* try core core.try.*
10412
10413 : Look for GCC-style __builtin_expect
10414 case "$d_builtin_expect" in
10415 '')
10416     echo " "
10417     echo "Checking whether your compiler can handle __builtin_expect ..." >&4
10418     $cat >builtin.c <<'EOCP'
10419 int main(void) {
10420     int n = 50;
10421     if ( __builtin_expect(n, 0) ) n = 1;
10422 }
10423 EOCP
10424     set try
10425     if eval $compile; then
10426         echo "Your C compiler supports __builtin_choose_expr."
10427         val="$define"
10428     else
10429         echo "Your C compiler doesn't seem to understand __builtin_choose_expr."
10430         val="$undef"
10431     fi
10432     ;;
10433 *) val="$d_builtin_expect" ;;
10434 esac
10435
10436 set d_builtin_expect
10437 eval $setvar
10438 $rm -f try.* try core core.try.*
10439
10440 : see if bzero exists
10441 set bzero d_bzero
10442 eval $inlibc
10443
10444 : see if stdarg is available
10445 echo " "
10446 if $test `./findhdr stdarg.h`; then
10447         echo "<stdarg.h> found." >&4
10448         valstd="$define"
10449 else
10450         echo "<stdarg.h> NOT found." >&4
10451         valstd="$undef"
10452 fi
10453
10454 : see if varags is available
10455 echo " "
10456 if $test `./findhdr varargs.h`; then
10457         echo "<varargs.h> found." >&4
10458 else
10459         echo "<varargs.h> NOT found, but that's ok (I hope)." >&4
10460 fi
10461
10462 : set up the varargs testing programs
10463 $cat > varargs.c <<EOP
10464 #ifdef I_STDARG
10465 #include <stdarg.h>
10466 #endif
10467 #ifdef I_VARARGS
10468 #include <varargs.h>
10469 #endif
10470
10471 #ifdef I_STDARG
10472 int f(char *p, ...)
10473 #else
10474 int f(va_alist)
10475 va_dcl
10476 #endif
10477 {
10478         va_list ap;
10479 #ifndef I_STDARG
10480         char *p;
10481 #endif
10482 #ifdef I_STDARG
10483         va_start(ap,p);
10484 #else
10485         va_start(ap);
10486         p = va_arg(ap, char *);
10487 #endif
10488         va_end(ap);
10489         return 0;
10490 }
10491 EOP
10492 $cat > varargs <<EOP
10493 $startsh
10494 if $cc -c $ccflags -D\$1 varargs.c >/dev/null 2>&1; then
10495         echo "true"
10496 else
10497         echo "false"
10498 fi
10499 $rm -f varargs$_o
10500 EOP
10501 chmod +x varargs
10502
10503 : now check which varargs header should be included
10504 echo " "
10505 i_varhdr=''
10506 case "$valstd" in
10507 "$define")
10508         if `./varargs I_STDARG`; then
10509                 val='stdarg.h'
10510         elif `./varargs I_VARARGS`; then
10511                 val='varargs.h'
10512         fi
10513         ;;
10514 *)
10515         if `./varargs I_VARARGS`; then
10516                 val='varargs.h'
10517         fi
10518         ;;
10519 esac
10520 case "$val" in
10521 '')
10522 echo "I could not find the definition for va_dcl... You have problems..." >&4
10523         val="$undef"; set i_stdarg; eval $setvar
10524         val="$undef"; set i_varargs; eval $setvar
10525         ;;
10526 *) 
10527         set i_varhdr
10528         eval $setvar
10529         case "$i_varhdr" in
10530         stdarg.h)
10531                 val="$define"; set i_stdarg; eval $setvar
10532                 val="$undef"; set i_varargs; eval $setvar
10533                 ;;
10534         varargs.h)
10535                 val="$undef"; set i_stdarg; eval $setvar
10536                 val="$define"; set i_varargs; eval $setvar
10537                 ;;
10538         esac
10539         echo "We'll include <$i_varhdr> to get va_dcl definition." >&4;;
10540 esac
10541 $rm -f varargs*
10542
10543 : see if the Compiler supports C99 variadic macros
10544 case "$i_stdarg$i_stdlib" in
10545     "$define$define")
10546     echo "You have <stdarg.h> and <stdlib.h>, so checking for C99 variadic macros." >&4
10547     $cat >try.c <<EOCP
10548 #include <stdio.h>
10549 #include <stdarg.h>
10550
10551 #define foo(buffer, format, ...) sprintf(buffer, format, __VA_ARGS__)
10552
10553 int main() {
10554   char buf[20];
10555   foo(buf, "%d %g %.*s", 123, 456.0, (int)3, "789fail");
10556   puts(buf);
10557   return 0;
10558 }
10559 EOCP
10560     set try
10561     if eval $compile && $run ./try 2>&1 >/dev/null; then
10562         case "`$run ./try`" in
10563             "123 456 789")
10564             echo "You have C99 variadic macros." >&4
10565             d_c99_variadic_macros="$define"
10566             ;;
10567             *)
10568             echo "You don't have functional C99 variadic macros." >&4
10569             d_c99_variadic_macros="$undef"
10570             ;;
10571         esac
10572     else
10573         echo "I couldn't compile and run the test program, so I assume that you don't have functional C99 variadic macros." >&4
10574         d_c99_variadic_macros="$undef"
10575     fi
10576     $rm -f try.* try core core.try.*
10577     ;;
10578     *)
10579     echo "You don't have <stdarg.h> and <stdlib.h>, so not checking for C99 variadic macros." >&4
10580     d_c99_variadic_macros="$undef"
10581     ;;
10582 esac
10583
10584 : see if signal is declared as pointer to function returning int or void
10585 echo " "
10586 xxx=`./findhdr signal.h`
10587 $test "$xxx" && $cppstdin $cppminus $cppflags < $xxx >$$.tmp 2>/dev/null
10588 if $contains 'int.*\*[  ]*signal' $$.tmp >/dev/null 2>&1 ; then
10589         echo "You have int (*signal())() instead of void." >&4
10590         val="$undef"
10591 elif $contains 'void.*\*[       ]*signal' $$.tmp >/dev/null 2>&1 ; then
10592         echo "You have void (*signal())()." >&4
10593         val="$define"
10594 elif $contains 'extern[         ]*[(\*]*signal' $$.tmp >/dev/null 2>&1 ; then
10595         echo "You have int (*signal())() instead of void." >&4
10596         val="$undef"
10597 elif $contains 'void.*\*.*sig' $$.tmp >/dev/null 2>&1 ; then
10598         echo "You have void (*signal())()." >&4
10599         val="$define"
10600 else
10601         case "$d_voidsig" in
10602         '')
10603         echo "I can't determine whether signal handler returns void or int..." >&4
10604                 dflt=void
10605                 rp="What type does your signal handler return?"
10606                 . ./myread
10607                 case "$ans" in
10608                 v*) val="$define";;
10609                 *) val="$undef";;
10610                 esac;;
10611         "$define")
10612                 echo "As you already told me, signal handler returns void." >&4
10613                 val="$define"
10614                 ;;
10615         *)      echo "As you already told me, signal handler returns int." >&4
10616                 val="$undef"
10617                 ;;
10618         esac
10619 fi
10620 set d_voidsig
10621 eval $setvar
10622 case "$d_voidsig" in
10623 "$define") signal_t="void";;
10624 *) signal_t="int";;
10625 esac
10626 $rm -f $$.tmp
10627
10628 : check for ability to cast large floats to 32-bit ints.
10629 echo " "
10630 echo 'Checking whether your C compiler can cast large floats to int32.' >&4
10631 if $test "$intsize" -ge 4; then
10632         xxx=int
10633 else
10634         xxx=long
10635 fi
10636 $cat >try.c <<EOCP
10637 #include <stdio.h>
10638 #$i_stdlib I_STDLIB
10639 #ifdef I_STDLIB
10640 #include <stdlib.h>
10641 #endif
10642 #include <sys/types.h>
10643 #include <signal.h>
10644 $signal_t blech(int s) { exit(3); }
10645 int main()
10646 {
10647         $xxx i32;
10648         double f, g;
10649         int result = 0;
10650         char str[16];
10651         signal(SIGFPE, blech);
10652
10653         /* Don't let compiler optimize the test away.  Store the number 
10654            in a writable string for gcc to pass to sscanf under HP/UX.
10655         */
10656         sprintf(str, "2147483647");
10657         sscanf(str, "%lf", &f); /* f = (double) 0x7fffffff; */
10658         g = 10 * f;
10659         i32  = ($xxx) g;
10660
10661         /* x86 processors will probably give 0x8000 0000, which is a
10662            sign change.  We don't want that.  We want to mimic SPARC
10663            behavior here, which is to preserve the sign and give
10664            back 0x7fff ffff.
10665         */
10666         if (i32 != ($xxx) f)
10667                 result |= 1;
10668         exit(result);
10669 }
10670 EOCP
10671 set try
10672 if eval $compile_ok; then
10673         $run ./try
10674         yyy=$?
10675 else
10676         echo "(I can't seem to compile the test program--assuming it can't)"
10677         yyy=1
10678 fi
10679 case "$yyy" in
10680 0)      val="$define"
10681         echo "Yup, it can."
10682         ;;
10683 *)      val="$undef"
10684         echo "Nope, it can't."
10685         ;;
10686 esac
10687 set d_casti32
10688 eval $setvar
10689 $rm -f try try.*
10690
10691 : check for ability to cast negative floats to unsigned
10692 echo " "
10693 echo 'Checking whether your C compiler can cast negative float to unsigned.' >&4
10694 $cat >try.c <<EOCP
10695 #include <stdio.h>
10696 #$i_stdlib I_STDLIB
10697 #ifdef I_STDLIB
10698 #include <stdlib.h>
10699 #endif
10700 #include <sys/types.h>
10701 #include <signal.h>
10702 $signal_t blech(int s) { exit(7); }
10703 $signal_t blech_in_list(int s) { exit(4); }
10704 unsigned long dummy_long(unsigned long p) { return p; }
10705 unsigned int dummy_int(unsigned int p) { return p; }
10706 unsigned short dummy_short(unsigned short p) { return p; }
10707 int main()
10708 {
10709         double f;
10710         unsigned long along;
10711         unsigned int aint;
10712         unsigned short ashort;
10713         int result = 0;
10714         char str[16];
10715         
10716         /* Frustrate gcc-2.7.2's optimizer which failed this test with
10717            a direct f = -123. assignment.  gcc-2.8.0 reportedly
10718            optimized the whole file away
10719         */
10720         /* Store the number in a writable string for gcc to pass to 
10721            sscanf under HP/UX.
10722         */
10723         sprintf(str, "-123");
10724         sscanf(str, "%lf", &f);  /* f = -123.; */
10725
10726         signal(SIGFPE, blech);
10727         along = (unsigned long)f;
10728         aint = (unsigned int)f;
10729         ashort = (unsigned short)f;
10730         if (along != (unsigned long)-123)
10731                 result |= 1;
10732         if (aint != (unsigned int)-123)
10733                 result |= 1;
10734         if (ashort != (unsigned short)-123)
10735                 result |= 1;
10736         sprintf(str, "1073741824.");
10737         sscanf(str, "%lf", &f); /* f = (double)0x40000000; */
10738         f = f + f;
10739         along = 0;
10740         along = (unsigned long)f;
10741         if (along != 0x80000000)
10742                 result |= 2;
10743         f -= 1.;
10744         along = 0;
10745         along = (unsigned long)f;
10746         if (along != 0x7fffffff)
10747                 result |= 1;
10748         f += 2.;
10749         along = 0;
10750         along = (unsigned long)f;
10751         if (along != 0x80000001)
10752                 result |= 2;
10753         if (result)
10754                 exit(result);
10755         signal(SIGFPE, blech_in_list);
10756         sprintf(str, "123.");
10757         sscanf(str, "%lf", &f);  /* f = 123.; */
10758         along = dummy_long((unsigned long)f);
10759         aint = dummy_int((unsigned int)f);
10760         ashort = dummy_short((unsigned short)f);
10761         if (along != (unsigned long)123)
10762                 result |= 4;
10763         if (aint != (unsigned int)123)
10764                 result |= 4;
10765         if (ashort != (unsigned short)123)
10766                 result |= 4;
10767         exit(result);
10768
10769 }
10770 EOCP
10771 set try
10772 if eval $compile_ok; then
10773         $run ./try
10774         castflags=$?
10775 else
10776         echo "(I can't seem to compile the test program--assuming it can't)"
10777         castflags=7
10778 fi
10779 case "$castflags" in
10780 0)      val="$define"
10781         echo "Yup, it can."
10782         ;;
10783 *)      val="$undef"
10784         echo "Nope, it can't."
10785         ;;
10786 esac
10787 set d_castneg
10788 eval $setvar
10789 $rm -f try.*
10790
10791 : see if vprintf exists
10792 echo " "
10793 if set vprintf val -f d_vprintf; eval $csym; $val; then
10794         echo 'vprintf() found.' >&4
10795         val="$define"
10796         $cat >try.c <<EOF
10797 #include <varargs.h>
10798 #$i_stdlib I_STDLIB
10799 #ifdef I_STDLIB
10800 #include <stdlib.h>
10801 #endif
10802
10803 int main() { xxx("foo"); }
10804
10805 xxx(va_alist)
10806 va_dcl
10807 {
10808         va_list args;
10809         char buf[10];
10810
10811         va_start(args);
10812         exit((unsigned long)vsprintf(buf,"%s",args) > 10L);
10813 }
10814 EOF
10815         set try
10816         if eval $compile && $run ./try; then
10817                 echo "Your vsprintf() returns (int)." >&4
10818                 val2="$undef"
10819         else
10820                 echo "Your vsprintf() returns (char*)." >&4
10821                 val2="$define"
10822         fi
10823 else
10824         echo 'vprintf() NOT found.' >&4
10825                 val="$undef"
10826                 val2="$undef"
10827 fi
10828 $rm -f try try.*
10829 set d_vprintf
10830 eval $setvar
10831 val=$val2
10832 set d_charvspr
10833 eval $setvar
10834
10835 : see if chown exists
10836 set chown d_chown
10837 eval $inlibc
10838
10839 : see if chroot exists
10840 set chroot d_chroot
10841 eval $inlibc
10842
10843 : see if chsize exists
10844 set chsize d_chsize
10845 eval $inlibc
10846
10847 : see if class exists
10848 set class d_class
10849 eval $inlibc
10850
10851 : see if clearenv exists
10852 set clearenv d_clearenv
10853 eval $inlibc
10854
10855 hasstruct='varname=$1; struct=$2; shift; shift;
10856 while $test $# -ge 2; do
10857         case "$1" in
10858         $define) echo "#include <$2>";;
10859         esac ;
10860     shift 2;
10861 done > try.c;
10862 echo "int main () { struct $struct foo; }" >> try.c;
10863 set try;
10864 if eval $compile; then
10865         val="$define";
10866 else
10867         val="$undef";
10868 fi;
10869 set $varname;
10870 eval $setvar;
10871 $rm -f try.c try.o'
10872
10873 socketlib=''
10874 sockethdr=''
10875 : see whether socket exists
10876 echo " "
10877 $echo $n "Hmm... $c" >&4
10878 if set socket val -f d_socket; eval $csym; $val; then
10879         echo "Looks like you have Berkeley networking support." >&4
10880         d_socket="$define"
10881         if set setsockopt val -f; eval $csym; $val; then
10882                 d_oldsock="$undef"
10883         else
10884                 echo "...but it uses the old BSD 4.1c interface, rather than 4.2." >&4
10885                 d_oldsock="$define"
10886         fi
10887 else
10888         if $contains socklib libc.list >/dev/null 2>&1; then
10889                 echo "Looks like you have Berkeley networking support." >&4
10890                 d_socket="$define"
10891                 : we will have to assume that it supports the 4.2 BSD interface
10892                 d_oldsock="$undef"
10893         else
10894                 echo "You don't have Berkeley networking in libc$_a..." >&4
10895                 if test "X$d_socket" = "X$define"; then
10896                    echo "...but you seem to believe that you have sockets." >&4
10897                 else
10898                         for net in net socket
10899                         do
10900                                 if test -f /usr/lib/lib$net$_a; then
10901                                         ( ($nm $nm_opt /usr/lib/lib$net$_a | eval $nm_extract) ||  \
10902                                         $ar t /usr/lib/lib$net$_a) 2>/dev/null >> libc.list
10903                                         if $contains socket libc.list >/dev/null 2>&1; then
10904                                                 d_socket="$define"
10905                                                 socketlib="-l$net"
10906                                                 case "$net" in
10907                                                 net)
10908                                                         echo "...but the Wollongong group seems to have hacked it in." >&4
10909                                                         sockethdr="-I/usr/netinclude"
10910                                                         ;;
10911                                                 esac
10912                                                 echo "Found Berkeley sockets interface in lib$net." >&4 
10913                                                 if $contains setsockopt libc.list >/dev/null 2>&1; then
10914                                                         d_oldsock="$undef"
10915                                                 else
10916                                                         echo "...using the old BSD 4.1c interface, rather than 4.2." >&4
10917                                                         d_oldsock="$define"
10918                                                 fi
10919                                                 break
10920                                         fi
10921                                 fi
10922                         done
10923                         if test "X$d_socket" != "X$define"; then
10924                            echo "or anywhere else I see." >&4
10925                            d_socket="$undef"
10926                            d_oldsock="$undef"
10927                         fi
10928                 fi
10929         fi
10930 fi
10931
10932 : see if socketpair exists
10933 set socketpair d_sockpair
10934 eval $inlibc
10935
10936
10937 echo " "
10938 echo "Checking the availability of certain socket constants..." >&4
10939 for ENUM in MSG_CTRUNC MSG_DONTROUTE MSG_OOB MSG_PEEK MSG_PROXY SCM_RIGHTS; do
10940         enum=`$echo $ENUM|./tr '[A-Z]' '[a-z]'`
10941         $cat >try.c <<EOF
10942 #include <sys/types.h>
10943 #include <sys/socket.h>
10944 int main() {
10945     int i = $ENUM;
10946 }
10947 EOF
10948         val="$undef"
10949         set try; if eval $compile; then
10950                 val="$define"
10951         fi
10952         set d_${enum}; eval $setvar
10953         $rm -f try.c try
10954 done
10955
10956 : see if this is a sys/uio.h system
10957 set sys/uio.h i_sysuio
10958 eval $inhdr
10959
10960
10961 echo " "
10962 echo "Checking to see if your system supports struct cmsghdr..." >&4
10963 set d_cmsghdr_s cmsghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
10964 eval $hasstruct
10965 case "$d_cmsghdr_s" in
10966 "$define")      echo "Yes, it does."   ;;
10967 *)              echo "No, it doesn't." ;;
10968 esac
10969
10970
10971 : check for const keyword
10972 echo " "
10973 echo 'Checking to see if your C compiler knows about "const"...' >&4
10974 $cat >const.c <<'EOCP'
10975 typedef struct spug { int drokk; } spug;
10976 int main()
10977 {
10978         const char *foo;
10979         const spug y = { 0 };
10980 }
10981 EOCP
10982 if $cc -c $ccflags const.c >/dev/null 2>&1 ; then
10983         val="$define"
10984         echo "Yup, it does."
10985 else
10986         val="$undef"
10987         echo "Nope, it doesn't."
10988 fi
10989 set d_const
10990 eval $setvar
10991
10992 : see if copysignl exists
10993 set copysignl d_copysignl
10994 eval $inlibc
10995
10996 : see if crypt exists
10997 echo " "
10998 set crypt d_crypt
10999 eval $inlibc
11000 case "$d_crypt" in
11001 $define) cryptlib='' ;;
11002 *)      if set crypt val -f d_crypt; eval $csym; $val; then
11003                 echo 'crypt() found.' >&4
11004                 val="$define"
11005                 cryptlib=''
11006         else
11007                 cryptlib=`./loc Slibcrypt$_a "" $xlibpth`
11008                 if $test -z "$cryptlib"; then
11009                         cryptlib=`./loc Mlibcrypt$_a "" $xlibpth`
11010                 else
11011                         cryptlib=-lcrypt
11012                 fi
11013                 if $test -z "$cryptlib"; then
11014                         cryptlib=`./loc Llibcrypt$_a "" $xlibpth`
11015                 else
11016                         cryptlib=-lcrypt
11017                 fi
11018                 if $test -z "$cryptlib"; then
11019                         cryptlib=`./loc libcrypt$_a "" $libpth`
11020                 else
11021                         cryptlib=-lcrypt
11022                 fi
11023                 if $test -z "$cryptlib"; then
11024                         echo 'crypt() NOT found.' >&4
11025                         val="$undef"
11026                 else
11027                         val="$define"
11028                 fi
11029         fi
11030         set d_crypt
11031         eval $setvar
11032         ;;
11033 esac
11034
11035 : see if this is a crypt.h system
11036 set crypt.h i_crypt
11037 eval $inhdr
11038
11039 : see if crypt_r exists
11040 set crypt_r d_crypt_r
11041 eval $inlibc
11042 case "$d_crypt_r" in
11043 "$define")
11044         hdrs="$i_systypes sys/types.h define stdio.h $i_crypt crypt.h"
11045         case "$d_crypt_r_proto:$usethreads" in
11046         ":define")      d_crypt_r_proto=define
11047                 set d_crypt_r_proto crypt_r $hdrs
11048                 eval $hasproto ;;
11049         *)      ;;
11050         esac
11051         case "$d_crypt_r_proto" in
11052         define)
11053         case "$crypt_r_proto" in
11054         ''|0) try='char* crypt_r(const char*, const char*, struct crypt_data*);'
11055         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCS ;;
11056         esac
11057         case "$crypt_r_proto" in
11058         ''|0) try='char* crypt_r(const char*, const char*, CRYPTD*);'
11059         ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCD ;;
11060         esac
11061         case "$crypt_r_proto" in
11062         ''|0)   d_crypt_r=undef
11063                 crypt_r_proto=0
11064                 echo "Disabling crypt_r, cannot determine prototype." >&4 ;;
11065         * )     case "$crypt_r_proto" in
11066                 REENTRANT_PROTO*) ;;
11067                 *) crypt_r_proto="REENTRANT_PROTO_$crypt_r_proto" ;;
11068                 esac
11069                 echo "Prototype: $try" ;;
11070         esac
11071         ;;
11072         *)      case "$usethreads" in
11073                 define) echo "crypt_r has no prototype, not using it." >&4 ;;
11074                 esac
11075                 d_crypt_r=undef
11076                 crypt_r_proto=0
11077                 ;;
11078         esac
11079         ;;
11080 *)      crypt_r_proto=0
11081         ;;
11082 esac
11083
11084 : get csh whereabouts
11085 case "$csh" in
11086 'csh') val="$undef" ;;
11087 *) val="$define" ;;
11088 esac
11089 set d_csh
11090 eval $setvar
11091 : Respect a hint or command line value for full_csh.
11092 case "$full_csh" in
11093 '') full_csh=$csh ;;
11094 esac
11095
11096 : see if ctermid exists
11097 set ctermid d_ctermid
11098 eval $inlibc
11099
11100 : see if ctermid_r exists
11101 set ctermid_r d_ctermid_r
11102 eval $inlibc
11103 case "$d_ctermid_r" in
11104 "$define")
11105         hdrs="$i_systypes sys/types.h define stdio.h "
11106         case "$d_ctermid_r_proto:$usethreads" in
11107         ":define")      d_ctermid_r_proto=define
11108                 set d_ctermid_r_proto ctermid_r $hdrs
11109                 eval $hasproto ;;
11110         *)      ;;
11111         esac
11112         case "$d_ctermid_r_proto" in
11113         define)
11114         case "$ctermid_r_proto" in
11115         ''|0) try='char* ctermid_r(char*);'
11116         ./protochk "extern $try" $hdrs && ctermid_r_proto=B_B ;;
11117         esac
11118         case "$ctermid_r_proto" in
11119         ''|0)   d_ctermid_r=undef
11120                 ctermid_r_proto=0
11121                 echo "Disabling ctermid_r, cannot determine prototype." >&4 ;;
11122         * )     case "$ctermid_r_proto" in
11123                 REENTRANT_PROTO*) ;;
11124                 *) ctermid_r_proto="REENTRANT_PROTO_$ctermid_r_proto" ;;
11125                 esac
11126                 echo "Prototype: $try" ;;
11127         esac
11128         ;;
11129         *)      case "$usethreads" in
11130                 define) echo "ctermid_r has no prototype, not using it." >&4 ;;
11131                 esac
11132                 d_ctermid_r=undef
11133                 ctermid_r_proto=0
11134                 ;;
11135         esac
11136         ;;
11137 *)      ctermid_r_proto=0
11138         ;;
11139 esac
11140
11141 : see if ctime_r exists
11142 set ctime_r d_ctime_r
11143 eval $inlibc
11144 case "$d_ctime_r" in
11145 "$define")
11146         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
11147         case "$d_ctime_r_proto:$usethreads" in
11148         ":define")      d_ctime_r_proto=define
11149                 set d_ctime_r_proto ctime_r $hdrs
11150                 eval $hasproto ;;
11151         *)      ;;
11152         esac
11153         case "$d_ctime_r_proto" in
11154         define)
11155         case "$ctime_r_proto" in
11156         ''|0) try='char* ctime_r(const time_t*, char*);'
11157         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SB ;;
11158         esac
11159         case "$ctime_r_proto" in
11160         ''|0) try='char* ctime_r(const time_t*, char*, int);'
11161         ./protochk "extern $try" $hdrs && ctime_r_proto=B_SBI ;;
11162         esac
11163         case "$ctime_r_proto" in
11164         ''|0) try='int ctime_r(const time_t*, char*);'
11165         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SB ;;
11166         esac
11167         case "$ctime_r_proto" in
11168         ''|0) try='int ctime_r(const time_t*, char*, int);'
11169         ./protochk "extern $try" $hdrs && ctime_r_proto=I_SBI ;;
11170         esac
11171         case "$ctime_r_proto" in
11172         ''|0)   d_ctime_r=undef
11173                 ctime_r_proto=0
11174                 echo "Disabling ctime_r, cannot determine prototype." >&4 ;;
11175         * )     case "$ctime_r_proto" in
11176                 REENTRANT_PROTO*) ;;
11177                 *) ctime_r_proto="REENTRANT_PROTO_$ctime_r_proto" ;;
11178                 esac
11179                 echo "Prototype: $try" ;;
11180         esac
11181         ;;
11182         *)      case "$usethreads" in
11183                 define) echo "ctime_r has no prototype, not using it." >&4 ;;
11184                 esac
11185                 d_ctime_r=undef
11186                 ctime_r_proto=0
11187                 ;;
11188         esac
11189         ;;
11190 *)      ctime_r_proto=0
11191         ;;
11192 esac
11193
11194 : see if cuserid exists
11195 set cuserid d_cuserid
11196 eval $inlibc
11197
11198 : see if this is a limits.h system
11199 set limits.h i_limits
11200 eval $inhdr
11201
11202 : see if this is a float.h system
11203 set float.h i_float
11204 eval $inhdr
11205
11206 : See if number of significant digits in a double precision number is known
11207 echo " "
11208 $cat >dbl_dig.c <<EOM
11209 #$i_limits I_LIMITS
11210 #$i_float I_FLOAT
11211 #ifdef I_LIMITS
11212 #include <limits.h>
11213 #endif
11214 #ifdef I_FLOAT
11215 #include <float.h>
11216 #endif
11217 #ifdef DBL_DIG
11218 printf("Contains DBL_DIG");
11219 #endif
11220 EOM
11221 $cppstdin $cppflags $cppminus < dbl_dig.c >dbl_dig.E 2>/dev/null
11222 if $contains 'DBL_DIG' dbl_dig.E >/dev/null 2>&1; then
11223         echo "DBL_DIG found." >&4
11224         val="$define"
11225 else
11226         echo "DBL_DIG NOT found." >&4
11227         val="$undef"
11228 fi
11229 $rm -f dbl_dig.?
11230 set d_dbl_dig
11231 eval $setvar
11232
11233 : see if dbm.h is available
11234 : see if dbmclose exists
11235 set dbmclose d_dbmclose
11236 eval $inlibc
11237
11238 case "$d_dbmclose" in
11239 $define)
11240         set dbm.h i_dbm
11241         eval $inhdr
11242         case "$i_dbm" in
11243         $define)
11244                 val="$undef"
11245                 set i_rpcsvcdbm
11246                 eval $setvar
11247                 ;;
11248         *)      set rpcsvc/dbm.h i_rpcsvcdbm
11249                 eval $inhdr
11250                 ;;
11251         esac
11252         ;;
11253 *)      echo "We won't be including <dbm.h>"
11254         val="$undef"
11255         set i_dbm
11256         eval $setvar
11257         val="$undef"
11258         set i_rpcsvcdbm
11259         eval $setvar
11260         ;;
11261 esac
11262
11263 : see if prototype for dbminit is available
11264 echo " "
11265 set d_dbminitproto dbminit $i_dbm dbm.h
11266 eval $hasproto
11267
11268 : see if difftime exists
11269 set difftime d_difftime
11270 eval $inlibc
11271
11272 : see if this is a dirent system
11273 echo " "
11274 if xinc=`./findhdr dirent.h`; $test "$xinc"; then
11275         val="$define"
11276         echo "<dirent.h> found." >&4
11277 else
11278         val="$undef"
11279         if xinc=`./findhdr sys/dir.h`; $test "$xinc"; then
11280                 echo "<sys/dir.h> found." >&4
11281                 echo " "
11282         else
11283                 xinc=`./findhdr sys/ndir.h`
11284         fi
11285         echo "<dirent.h> NOT found." >&4
11286 fi
11287 set i_dirent
11288 eval $setvar
11289
11290 : Look for type of directory structure.
11291 echo " "
11292 $cppstdin $cppflags $cppminus < "$xinc" > try.c
11293
11294 case "$direntrytype" in
11295 ''|' ')
11296         case "$i_dirent" in
11297         $define) guess1='struct dirent' ;;
11298         *) guess1='struct direct'  ;;
11299         esac
11300         ;;
11301 *)      guess1="$direntrytype"
11302         ;;
11303 esac
11304
11305 case "$guess1" in
11306 'struct dirent') guess2='struct direct' ;;
11307 *) guess2='struct dirent' ;;
11308 esac
11309                 
11310 if $contains "$guess1" try.c >/dev/null 2>&1; then
11311         direntrytype="$guess1"
11312         echo "Your directory entries are $direntrytype." >&4
11313 elif $contains "$guess2" try.c >/dev/null 2>&1; then
11314         direntrytype="$guess2"
11315         echo "Your directory entries seem to be $direntrytype." >&4
11316 else
11317         echo "I don't recognize your system's directory entries." >&4
11318         rp="What type is used for directory entries on this system?"
11319         dflt="$guess1"
11320         . ./myread
11321         direntrytype="$ans"
11322 fi
11323 $rm -f try.c
11324
11325
11326 : see if the directory entry stores field length
11327 echo " "
11328 $cppstdin $cppflags $cppminus < "$xinc" > try.c
11329 if $contains 'd_namlen' try.c >/dev/null 2>&1; then
11330         echo "Good, your directory entry keeps length information in d_namlen." >&4
11331         val="$define"
11332 else
11333         echo "Your directory entry does not know about the d_namlen field." >&4
11334         val="$undef"
11335 fi
11336 set d_dirnamlen
11337 eval $setvar
11338 $rm -f try.c
11339
11340 : Look for DIR.dd_fd
11341 case "$i_dirent" in
11342 "$define")
11343     echo "Checking to see if DIR has a dd_fd member variable" >&4
11344     $cat >try.c <<EOCP
11345 #$i_stdlib I_STDLIB
11346 #ifdef I_STDLIB
11347 #include <stdlib.h>
11348 #endif
11349 #include <dirent.h>
11350
11351 int main() {
11352     DIR dir;
11353     dir.dd_fd = 1;
11354     return 0;
11355 }
11356 EOCP
11357     val=$undef
11358     set try
11359     if eval $compile; then
11360         echo "Yes, it does."
11361         val="$define"
11362     else
11363         echo "No, it does not."
11364         val="$undef"
11365     fi
11366     ;;
11367 *)
11368     echo "You don't have a <dirent.h>, so not checking for dd_fd." >&4
11369     val="$undef"
11370     ;;
11371 esac
11372 set d_dir_dd_fd
11373 eval $setvar
11374 $rm -f try try.*
11375
11376 : see if this is an sysdir system
11377 set sys/dir.h i_sysdir
11378 eval $inhdr
11379
11380 : see if this is an sysndir system
11381 set sys/ndir.h i_sysndir
11382 eval $inhdr
11383
11384 : Look for dirfd
11385 echo " "
11386 $cat >dirfd.c <<EOM
11387 #include <stdio.h>
11388 #$i_stdlib I_STDLIB
11389 #ifdef I_STDLIB
11390 #include <stdlib.h>
11391 #endif
11392 #$i_dirent I_DIRENT             /**/
11393 #$i_sysdir I_SYS_DIR            /**/
11394 #$i_sysndir I_SYS_NDIR          /**/
11395 #$i_systypes I_SYS_TYPES        /**/
11396 #if defined(I_SYS_TYPES)
11397 #include <sys/types.h>
11398 #endif
11399 #if defined(I_DIRENT)
11400 #include <dirent.h>
11401 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
11402 #include <sys/dir.h>
11403 #endif
11404 #else
11405 #ifdef I_SYS_NDIR
11406 #include <sys/ndir.h>
11407 #else
11408 #ifdef I_SYS_DIR
11409 #ifdef hp9000s500
11410 #include <ndir.h>       /* may be wrong in the future */
11411 #else
11412 #include <sys/dir.h>
11413 #endif
11414 #endif
11415 #endif
11416 #endif 
11417 int main() {
11418         DIR *dirp = opendir(".");
11419         if (dirfd(dirp) >= 0)
11420                 exit(0);
11421         else
11422                 exit(1);
11423 }
11424 EOM
11425 val=$undef
11426 set dirfd
11427 if eval $compile; then
11428         val="$define"
11429 fi
11430 case "$val" in
11431 $define)        echo "dirfd() found." >&4       ;;
11432 *)              echo "dirfd() NOT found." >&4   ;;
11433 esac
11434 set d_dirfd
11435 eval $setvar
11436 $rm -f dirfd*
11437
11438 : see if dlerror exists
11439 xxx_runnm="$runnm"
11440 runnm=false
11441 set dlerror d_dlerror
11442 eval $inlibc
11443 runnm="$xxx_runnm"
11444
11445 : see if dlfcn is available
11446 set dlfcn.h i_dlfcn
11447 eval $inhdr
11448
11449 case "$usedl" in
11450 $define|y|true)
11451         $cat << EOM
11452
11453 On a few systems, the dynamically loaded modules that perl generates and uses
11454 will need a different extension than shared libs. The default will probably
11455 be appropriate.
11456
11457 EOM
11458         case "$dlext" in
11459         '')     dflt="$so" ;;
11460         *)      dflt="$dlext" ;;
11461         esac
11462         rp='What is the extension of dynamically loaded modules'
11463         . ./myread
11464         dlext="$ans"
11465         ;;
11466 *)
11467         dlext="none"
11468         ;;
11469 esac
11470
11471 : Check if dlsym need a leading underscore
11472 echo " "
11473 val="$undef"
11474
11475 case "$dlsrc" in
11476 dl_dlopen.xs)
11477         echo "Checking whether your dlsym() needs a leading underscore ..." >&4
11478         $cat >dyna.c <<'EOM'
11479 fred () { }
11480 EOM
11481
11482 $cat >fred.c<<EOM
11483
11484 #include <stdio.h>
11485 #$i_stdlib I_STDLIB
11486 #ifdef I_STDLIB
11487 #include <stdlib.h>
11488 #endif
11489 #$i_dlfcn I_DLFCN
11490 #ifdef I_DLFCN
11491 #include <dlfcn.h>      /* the dynamic linker include file for SunOS/Solaris */
11492 #else
11493 #include <sys/types.h>
11494 #include <nlist.h>
11495 #include <link.h>
11496 #endif
11497
11498 extern int fred() ;
11499
11500 int main()
11501 {
11502     void * handle ;
11503     void * symbol ;
11504 #ifndef RTLD_LAZY
11505     int mode = 1 ;
11506 #else
11507     int mode = RTLD_LAZY ;
11508 #endif
11509     handle = dlopen("./dyna.$dlext", mode) ;
11510     if (handle == NULL) {
11511         printf ("1\n") ;
11512         fflush (stdout) ;
11513         exit(0);
11514     }
11515     symbol = dlsym(handle, "fred") ;
11516     if (symbol == NULL) {
11517         /* try putting a leading underscore */
11518         symbol = dlsym(handle, "_fred") ;
11519         if (symbol == NULL) {
11520             printf ("2\n") ;
11521             fflush (stdout) ;
11522             exit(0);
11523         }
11524         printf ("3\n") ;
11525     }
11526     else
11527         printf ("4\n") ;
11528     fflush (stdout) ;
11529     exit(0);
11530 }
11531 EOM
11532         : Call the object file tmp-dyna.o in case dlext=o.
11533         if $cc $ccflags $cccdlflags -c dyna.c > /dev/null 2>&1 && 
11534                 mv dyna${_o} tmp-dyna${_o} > /dev/null 2>&1 && 
11535                 $ld -o dyna.$dlext $ldflags $lddlflags tmp-dyna${_o} > /dev/null 2>&1 && 
11536                 $cc -o fred $ccflags $ldflags $cccdlflags $ccdlflags fred.c $libs > /dev/null 2>&1 && $to dyna.$dlext; then
11537                 xxx=`$run ./fred`
11538                 case $xxx in
11539                 1)      echo "Test program failed using dlopen." >&4
11540                         echo "Perhaps you should not use dynamic loading." >&4;;
11541                 2)      echo "Test program failed using dlsym." >&4
11542                         echo "Perhaps you should not use dynamic loading." >&4;;
11543                 3)      echo "dlsym needs a leading underscore" >&4
11544                         val="$define" ;;
11545                 4)      echo "dlsym doesn't need a leading underscore." >&4;;
11546                 esac
11547         else
11548                 echo "I can't compile and run the test program." >&4
11549                 echo "I'm guessing that dlsym doesn't need a leading underscore." >&4
11550         fi
11551         ;;
11552 esac
11553                 
11554 $rm -f fred fred.* dyna.$dlext dyna.* tmp-dyna.*
11555
11556 set d_dlsymun
11557 eval $setvar
11558
11559 : see if drand48_r exists
11560 set drand48_r d_drand48_r
11561 eval $inlibc
11562 case "$d_drand48_r" in
11563 "$define")
11564         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
11565         case "$d_drand48_r_proto:$usethreads" in
11566         ":define")      d_drand48_r_proto=define
11567                 set d_drand48_r_proto drand48_r $hdrs
11568                 eval $hasproto ;;
11569         *)      ;;
11570         esac
11571         case "$d_drand48_r_proto" in
11572         define)
11573         case "$drand48_r_proto" in
11574         ''|0) try='int drand48_r(struct drand48_data*, double*);'
11575         ./protochk "extern $try" $hdrs && drand48_r_proto=I_ST ;;
11576         esac
11577         case "$drand48_r_proto" in
11578         ''|0)   d_drand48_r=undef
11579                 drand48_r_proto=0
11580                 echo "Disabling drand48_r, cannot determine prototype." >&4 ;;
11581         * )     case "$drand48_r_proto" in
11582                 REENTRANT_PROTO*) ;;
11583                 *) drand48_r_proto="REENTRANT_PROTO_$drand48_r_proto" ;;
11584                 esac
11585                 echo "Prototype: $try" ;;
11586         esac
11587         ;;
11588         *)      case "$usethreads" in
11589                 define) echo "drand48_r has no prototype, not using it." >&4 ;;
11590                 esac
11591                 d_drand48_r=undef
11592                 drand48_r_proto=0
11593                 ;;
11594         esac
11595         ;;
11596 *)      drand48_r_proto=0
11597         ;;
11598 esac
11599
11600 : see if prototype for drand48 is available
11601 echo " "
11602 set d_drand48proto drand48 $i_stdlib stdlib.h $i_unistd unistd.h
11603 eval $hasproto
11604
11605 : see if dup2 exists
11606 set dup2 d_dup2
11607 eval $inlibc
11608
11609 : see if eaccess exists
11610 set eaccess d_eaccess
11611 eval $inlibc
11612
11613 : see if endgrent exists
11614 set endgrent d_endgrent
11615 eval $inlibc
11616
11617 : see if this is an grp system
11618 set grp.h i_grp
11619 eval $inhdr
11620
11621 case "$i_grp" in
11622 $define)
11623         xxx=`./findhdr grp.h`
11624         $cppstdin $cppflags $cppminus < $xxx >$$.h
11625
11626         if $contains 'gr_passwd' $$.h >/dev/null 2>&1; then
11627                 val="$define"
11628         else
11629                 val="$undef"
11630         fi
11631         set d_grpasswd
11632         eval $setvar
11633
11634         $rm -f $$.h
11635         ;;
11636 *)
11637         val="$undef";
11638         set d_grpasswd; eval $setvar
11639         ;;
11640 esac
11641
11642 : see if endgrent_r exists
11643 set endgrent_r d_endgrent_r
11644 eval $inlibc
11645 case "$d_endgrent_r" in
11646 "$define")
11647         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
11648         case "$d_endgrent_r_proto:$usethreads" in
11649         ":define")      d_endgrent_r_proto=define
11650                 set d_endgrent_r_proto endgrent_r $hdrs
11651                 eval $hasproto ;;
11652         *)      ;;
11653         esac
11654         case "$d_endgrent_r_proto" in
11655         define)
11656         case "$endgrent_r_proto" in
11657         ''|0) try='int endgrent_r(FILE**);'
11658         ./protochk "extern $try" $hdrs && endgrent_r_proto=I_H ;;
11659         esac
11660         case "$endgrent_r_proto" in
11661         ''|0) try='void endgrent_r(FILE**);'
11662         ./protochk "extern $try" $hdrs && endgrent_r_proto=V_H ;;
11663         esac
11664         case "$endgrent_r_proto" in
11665         ''|0)   d_endgrent_r=undef
11666                 endgrent_r_proto=0
11667                 echo "Disabling endgrent_r, cannot determine prototype." >&4 ;;
11668         * )     case "$endgrent_r_proto" in
11669                 REENTRANT_PROTO*) ;;
11670                 *) endgrent_r_proto="REENTRANT_PROTO_$endgrent_r_proto" ;;
11671                 esac
11672                 echo "Prototype: $try" ;;
11673         esac
11674         ;;
11675         *)      case "$usethreads" in
11676                 define) echo "endgrent_r has no prototype, not using it." >&4 ;;
11677                 esac
11678                 d_endgrent_r=undef
11679                 endgrent_r_proto=0
11680                 ;;
11681         esac
11682         ;;
11683 *)      endgrent_r_proto=0
11684         ;;
11685 esac
11686
11687 : see if endhostent exists
11688 set endhostent d_endhent
11689 eval $inlibc
11690
11691 : see if this is a netdb.h system
11692 set netdb.h i_netdb
11693 eval $inhdr
11694
11695 : see if endhostent_r exists
11696 set endhostent_r d_endhostent_r
11697 eval $inlibc
11698 case "$d_endhostent_r" in
11699 "$define")
11700         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11701         case "$d_endhostent_r_proto:$usethreads" in
11702         ":define")      d_endhostent_r_proto=define
11703                 set d_endhostent_r_proto endhostent_r $hdrs
11704                 eval $hasproto ;;
11705         *)      ;;
11706         esac
11707         case "$d_endhostent_r_proto" in
11708         define)
11709         case "$endhostent_r_proto" in
11710         ''|0) try='int endhostent_r(struct hostent_data*);'
11711         ./protochk "extern $try" $hdrs && endhostent_r_proto=I_D ;;
11712         esac
11713         case "$endhostent_r_proto" in
11714         ''|0) try='void endhostent_r(struct hostent_data*);'
11715         ./protochk "extern $try" $hdrs && endhostent_r_proto=V_D ;;
11716         esac
11717         case "$endhostent_r_proto" in
11718         ''|0)   d_endhostent_r=undef
11719                 endhostent_r_proto=0
11720                 echo "Disabling endhostent_r, cannot determine prototype." >&4 ;;
11721         * )     case "$endhostent_r_proto" in
11722                 REENTRANT_PROTO*) ;;
11723                 *) endhostent_r_proto="REENTRANT_PROTO_$endhostent_r_proto" ;;
11724                 esac
11725                 echo "Prototype: $try" ;;
11726         esac
11727         ;;
11728         *)      case "$usethreads" in
11729                 define) echo "endhostent_r has no prototype, not using it." >&4 ;;
11730                 esac
11731                 d_endhostent_r=undef
11732                 endhostent_r_proto=0
11733                 ;;
11734         esac
11735         ;;
11736 *)      endhostent_r_proto=0
11737         ;;
11738 esac
11739
11740 : see if endnetent exists
11741 set endnetent d_endnent
11742 eval $inlibc
11743
11744 : see if endnetent_r exists
11745 set endnetent_r d_endnetent_r
11746 eval $inlibc
11747 case "$d_endnetent_r" in
11748 "$define")
11749         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11750         case "$d_endnetent_r_proto:$usethreads" in
11751         ":define")      d_endnetent_r_proto=define
11752                 set d_endnetent_r_proto endnetent_r $hdrs
11753                 eval $hasproto ;;
11754         *)      ;;
11755         esac
11756         case "$d_endnetent_r_proto" in
11757         define)
11758         case "$endnetent_r_proto" in
11759         ''|0) try='int endnetent_r(struct netent_data*);'
11760         ./protochk "extern $try" $hdrs && endnetent_r_proto=I_D ;;
11761         esac
11762         case "$endnetent_r_proto" in
11763         ''|0) try='void endnetent_r(struct netent_data*);'
11764         ./protochk "extern $try" $hdrs && endnetent_r_proto=V_D ;;
11765         esac
11766         case "$endnetent_r_proto" in
11767         ''|0)   d_endnetent_r=undef
11768                 endnetent_r_proto=0
11769                 echo "Disabling endnetent_r, cannot determine prototype." >&4 ;;
11770         * )     case "$endnetent_r_proto" in
11771                 REENTRANT_PROTO*) ;;
11772                 *) endnetent_r_proto="REENTRANT_PROTO_$endnetent_r_proto" ;;
11773                 esac
11774                 echo "Prototype: $try" ;;
11775         esac
11776         ;;
11777         *)      case "$usethreads" in
11778                 define) echo "endnetent_r has no prototype, not using it." >&4 ;;
11779                 esac
11780                 d_endnetent_r=undef
11781                 endnetent_r_proto=0
11782                 ;;
11783         esac
11784         ;;
11785 *)      endnetent_r_proto=0
11786         ;;
11787 esac
11788
11789 : see if endprotoent exists
11790 set endprotoent d_endpent
11791 eval $inlibc
11792
11793 : see if endprotoent_r exists
11794 set endprotoent_r d_endprotoent_r
11795 eval $inlibc
11796 case "$d_endprotoent_r" in
11797 "$define")
11798         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11799         case "$d_endprotoent_r_proto:$usethreads" in
11800         ":define")      d_endprotoent_r_proto=define
11801                 set d_endprotoent_r_proto endprotoent_r $hdrs
11802                 eval $hasproto ;;
11803         *)      ;;
11804         esac
11805         case "$d_endprotoent_r_proto" in
11806         define)
11807         case "$endprotoent_r_proto" in
11808         ''|0) try='int endprotoent_r(struct protoent_data*);'
11809         ./protochk "extern $try" $hdrs && endprotoent_r_proto=I_D ;;
11810         esac
11811         case "$endprotoent_r_proto" in
11812         ''|0) try='void endprotoent_r(struct protoent_data*);'
11813         ./protochk "extern $try" $hdrs && endprotoent_r_proto=V_D ;;
11814         esac
11815         case "$endprotoent_r_proto" in
11816         ''|0)   d_endprotoent_r=undef
11817                 endprotoent_r_proto=0
11818                 echo "Disabling endprotoent_r, cannot determine prototype." >&4 ;;
11819         * )     case "$endprotoent_r_proto" in
11820                 REENTRANT_PROTO*) ;;
11821                 *) endprotoent_r_proto="REENTRANT_PROTO_$endprotoent_r_proto" ;;
11822                 esac
11823                 echo "Prototype: $try" ;;
11824         esac
11825         ;;
11826         *)      case "$usethreads" in
11827                 define) echo "endprotoent_r has no prototype, not using it." >&4 ;;
11828                 esac
11829                 d_endprotoent_r=undef
11830                 endprotoent_r_proto=0
11831                 ;;
11832         esac
11833         ;;
11834 *)      endprotoent_r_proto=0
11835         ;;
11836 esac
11837
11838 : see if endpwent exists
11839 set endpwent d_endpwent
11840 eval $inlibc
11841
11842 : see if this is a pwd.h system
11843 set pwd.h i_pwd
11844 eval $inhdr
11845
11846 case "$i_pwd" in
11847 $define)
11848         xxx=`./findhdr pwd.h`
11849         $cppstdin $cppflags $cppminus < $xxx >$$.h
11850
11851         if $contains 'pw_quota' $$.h >/dev/null 2>&1; then
11852                 val="$define"
11853         else
11854                 val="$undef"
11855         fi
11856         set d_pwquota
11857         eval $setvar
11858
11859         if $contains 'pw_age' $$.h >/dev/null 2>&1; then
11860                 val="$define"
11861         else
11862                 val="$undef"
11863         fi
11864         set d_pwage
11865         eval $setvar
11866
11867         if $contains 'pw_change' $$.h >/dev/null 2>&1; then
11868                 val="$define"
11869         else
11870                 val="$undef"
11871         fi
11872         set d_pwchange
11873         eval $setvar
11874
11875         if $contains 'pw_class' $$.h >/dev/null 2>&1; then
11876                 val="$define"
11877         else
11878                 val="$undef"
11879         fi
11880         set d_pwclass
11881         eval $setvar
11882
11883         if $contains 'pw_expire' $$.h >/dev/null 2>&1; then
11884                 val="$define"
11885         else
11886                 val="$undef"
11887         fi
11888         set d_pwexpire
11889         eval $setvar
11890
11891         if $contains 'pw_comment' $$.h >/dev/null 2>&1; then
11892                 val="$define"
11893         else
11894                 val="$undef"
11895         fi
11896         set d_pwcomment
11897         eval $setvar
11898
11899         if $contains 'pw_gecos' $$.h >/dev/null 2>&1; then
11900                 val="$define"
11901         else
11902                 val="$undef"
11903         fi
11904         set d_pwgecos
11905         eval $setvar
11906
11907         if $contains 'pw_passwd' $$.h >/dev/null 2>&1; then
11908                 val="$define"
11909         else
11910                 val="$undef"
11911         fi
11912         set d_pwpasswd
11913         eval $setvar
11914
11915         $rm -f $$.h
11916         ;;
11917 *)
11918         val="$undef"; 
11919         set d_pwquota; eval $setvar
11920         set d_pwage; eval $setvar
11921         set d_pwchange; eval $setvar
11922         set d_pwclass; eval $setvar
11923         set d_pwexpire; eval $setvar
11924         set d_pwcomment; eval $setvar
11925         set d_pwgecos; eval $setvar
11926         set d_pwpasswd; eval $setvar
11927         ;;
11928 esac
11929
11930 : see if endpwent_r exists
11931 set endpwent_r d_endpwent_r
11932 eval $inlibc
11933 case "$d_endpwent_r" in
11934 "$define")
11935         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
11936         case "$d_endpwent_r_proto:$usethreads" in
11937         ":define")      d_endpwent_r_proto=define
11938                 set d_endpwent_r_proto endpwent_r $hdrs
11939                 eval $hasproto ;;
11940         *)      ;;
11941         esac
11942         case "$d_endpwent_r_proto" in
11943         define)
11944         case "$endpwent_r_proto" in
11945         ''|0) try='int endpwent_r(FILE**);'
11946         ./protochk "extern $try" $hdrs && endpwent_r_proto=I_H ;;
11947         esac
11948         case "$endpwent_r_proto" in
11949         ''|0) try='void endpwent_r(FILE**);'
11950         ./protochk "extern $try" $hdrs && endpwent_r_proto=V_H ;;
11951         esac
11952         case "$endpwent_r_proto" in
11953         ''|0)   d_endpwent_r=undef
11954                 endpwent_r_proto=0
11955                 echo "Disabling endpwent_r, cannot determine prototype." >&4 ;;
11956         * )     case "$endpwent_r_proto" in
11957                 REENTRANT_PROTO*) ;;
11958                 *) endpwent_r_proto="REENTRANT_PROTO_$endpwent_r_proto" ;;
11959                 esac
11960                 echo "Prototype: $try" ;;
11961         esac
11962         ;;
11963         *)      case "$usethreads" in
11964                 define) echo "endpwent_r has no prototype, not using it." >&4 ;;
11965                 esac
11966                 d_endpwent_r=undef
11967                 endpwent_r_proto=0
11968                 ;;
11969         esac
11970         ;;
11971 *)      endpwent_r_proto=0
11972         ;;
11973 esac
11974
11975 : see if endservent exists
11976 set endservent d_endsent
11977 eval $inlibc
11978
11979 : see if endservent_r exists
11980 set endservent_r d_endservent_r
11981 eval $inlibc
11982 case "$d_endservent_r" in
11983 "$define")
11984         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11985         case "$d_endservent_r_proto:$usethreads" in
11986         ":define")      d_endservent_r_proto=define
11987                 set d_endservent_r_proto endservent_r $hdrs
11988                 eval $hasproto ;;
11989         *)      ;;
11990         esac
11991         case "$d_endservent_r_proto" in
11992         define)
11993         case "$endservent_r_proto" in
11994         ''|0) try='int endservent_r(struct servent_data*);'
11995         ./protochk "extern $try" $hdrs && endservent_r_proto=I_D ;;
11996         esac
11997         case "$endservent_r_proto" in
11998         ''|0) try='void endservent_r(struct servent_data*);'
11999         ./protochk "extern $try" $hdrs && endservent_r_proto=V_D ;;
12000         esac
12001         case "$endservent_r_proto" in
12002         ''|0)   d_endservent_r=undef
12003                 endservent_r_proto=0
12004                 echo "Disabling endservent_r, cannot determine prototype." >&4 ;;
12005         * )     case "$endservent_r_proto" in
12006                 REENTRANT_PROTO*) ;;
12007                 *) endservent_r_proto="REENTRANT_PROTO_$endservent_r_proto" ;;
12008                 esac
12009                 echo "Prototype: $try" ;;
12010         esac
12011         ;;
12012         *)      case "$usethreads" in
12013                 define) echo "endservent_r has no prototype, not using it." >&4 ;;
12014                 esac
12015                 d_endservent_r=undef
12016                 endservent_r_proto=0
12017                 ;;
12018         esac
12019         ;;
12020 *)      endservent_r_proto=0
12021         ;;
12022 esac
12023
12024 : Locate the flags for 'open()'
12025 echo " "
12026 $cat >try.c <<EOCP
12027 #include <sys/types.h>
12028 #ifdef I_FCNTL
12029 #include <fcntl.h>
12030 #endif
12031 #ifdef I_SYS_FILE
12032 #include <sys/file.h>
12033 #endif
12034 #$i_stdlib I_STDLIB
12035 #ifdef I_STDLIB
12036 #include <stdlib.h>
12037 #endif
12038 int main() {
12039         if(O_RDONLY);
12040 #ifdef O_TRUNC
12041         exit(0);
12042 #else
12043         exit(1);
12044 #endif
12045 }
12046 EOCP
12047 : check sys/file.h first to get FREAD on Sun
12048 if $test `./findhdr sys/file.h` && \
12049                 set try -DI_SYS_FILE && eval $compile; then
12050         h_sysfile=true;
12051         echo "<sys/file.h> defines the O_* constants..." >&4
12052         if $run ./try; then
12053                 echo "and you have the 3 argument form of open()." >&4
12054                 val="$define"
12055         else
12056                 echo "but not the 3 argument form of open().  Oh, well." >&4
12057                 val="$undef"
12058         fi
12059 elif $test `./findhdr fcntl.h` && \
12060                 set try -DI_FCNTL && eval $compile; then
12061         h_fcntl=true;
12062         echo "<fcntl.h> defines the O_* constants..." >&4
12063         if $run ./try; then
12064                 echo "and you have the 3 argument form of open()." >&4
12065                 val="$define"
12066         else
12067                 echo "but not the 3 argument form of open().  Oh, well." >&4
12068                 val="$undef"
12069         fi
12070 else
12071         val="$undef"
12072         echo "I can't find the O_* constant definitions!  You got problems." >&4
12073 fi
12074 set d_open3
12075 eval $setvar
12076 $rm -f try try.*
12077
12078 : see which of string.h or strings.h is needed
12079 echo " "
12080 strings=`./findhdr string.h`
12081 if $test "$strings" && $test -r "$strings"; then
12082         echo "Using <string.h> instead of <strings.h>." >&4
12083         val="$define"
12084 else
12085         val="$undef"
12086         strings=`./findhdr strings.h`
12087         if $test "$strings" && $test -r "$strings"; then
12088                 echo "Using <strings.h> instead of <string.h>." >&4
12089         else
12090                 echo "No string header found -- You'll surely have problems." >&4
12091         fi
12092 fi
12093 set i_string
12094 eval $setvar
12095 case "$i_string" in
12096 "$undef") strings=`./findhdr strings.h`;;
12097 *)        strings=`./findhdr string.h`;;
12098 esac
12099
12100 : see if this is a sys/file.h system
12101 val=''
12102 set sys/file.h val
12103 eval $inhdr
12104
12105 : do we need to include sys/file.h ?
12106 case "$val" in
12107 "$define")
12108         echo " "
12109         if $h_sysfile; then
12110                 val="$define"
12111                 echo "We'll be including <sys/file.h>." >&4
12112         else
12113                 val="$undef"
12114                 echo "We won't be including <sys/file.h>." >&4
12115         fi
12116         ;;
12117 *)
12118         h_sysfile=false
12119         ;;
12120 esac
12121 set i_sysfile
12122 eval $setvar
12123
12124 : see if fcntl.h is there
12125 val=''
12126 set fcntl.h val
12127 eval $inhdr
12128
12129 : see if we can include fcntl.h
12130 case "$val" in
12131 "$define")
12132         echo " "
12133         if $h_fcntl; then
12134                 val="$define"
12135                 echo "We'll be including <fcntl.h>." >&4
12136         else
12137                 val="$undef"
12138                 if $h_sysfile; then
12139         echo "We don't need to include <fcntl.h> if we include <sys/file.h>." >&4
12140                 else
12141                         echo "We won't be including <fcntl.h>." >&4
12142                 fi
12143         fi
12144         ;;
12145 *)
12146         h_fcntl=false
12147         val="$undef"
12148         ;;
12149 esac
12150 set i_fcntl
12151 eval $setvar
12152
12153 : check for non-blocking I/O stuff
12154 case "$h_sysfile" in
12155 true) echo "#include <sys/file.h>" > head.c;;
12156 *)
12157        case "$h_fcntl" in
12158        true) echo "#include <fcntl.h>" > head.c;;
12159        *) echo "#include <sys/fcntl.h>" > head.c;;
12160        esac
12161        ;;
12162 esac
12163 echo " "
12164 echo "Figuring out the flag used by open() for non-blocking I/O..." >&4
12165 case "$o_nonblock" in
12166 '')
12167         $cat head.c > try.c
12168         $cat >>try.c <<EOCP
12169 #include <stdio.h>
12170 #$i_stdlib I_STDLIB
12171 #ifdef I_STDLIB
12172 #include <stdlib.h>
12173 #endif
12174 #$i_fcntl I_FCNTL
12175 #ifdef I_FCNTL
12176 #include <fcntl.h>
12177 #endif
12178 int main() {
12179 #ifdef O_NONBLOCK
12180         printf("O_NONBLOCK\n");
12181         exit(0);
12182 #endif
12183 #ifdef O_NDELAY
12184         printf("O_NDELAY\n");
12185         exit(0);
12186 #endif
12187 #ifdef FNDELAY
12188         printf("FNDELAY\n");
12189         exit(0);
12190 #endif
12191         exit(0);
12192 }
12193 EOCP
12194         set try
12195         if eval $compile_ok; then
12196                 o_nonblock=`$run ./try`
12197                 case "$o_nonblock" in
12198                 '') echo "I can't figure it out, assuming O_NONBLOCK will do.";;
12199                 *) echo "Seems like we can use $o_nonblock.";;
12200                 esac
12201         else
12202                 echo "(I can't compile the test program; pray O_NONBLOCK is right!)"
12203         fi
12204         ;;
12205 *) echo "Using $hint value $o_nonblock.";;
12206 esac
12207 $rm -f try try.* .out core
12208
12209 echo " "
12210 echo "Let's see what value errno gets from read() on a $o_nonblock file..." >&4
12211 case "$eagain" in
12212 '')
12213         $cat head.c > try.c
12214         $cat >>try.c <<EOCP
12215 #include <errno.h>
12216 #include <sys/types.h>
12217 #include <signal.h>
12218 #include <stdio.h> 
12219 #$i_stdlib I_STDLIB
12220 #ifdef I_STDLIB
12221 #include <stdlib.h>
12222 #endif
12223 #$i_fcntl I_FCNTL
12224 #ifdef I_FCNTL
12225 #include <fcntl.h>
12226 #endif
12227 #define MY_O_NONBLOCK $o_nonblock
12228 #ifndef errno  /* XXX need better Configure test */
12229 extern int errno;
12230 #endif
12231 #$i_unistd I_UNISTD
12232 #ifdef I_UNISTD
12233 #include <unistd.h>
12234 #endif
12235 #$i_string I_STRING
12236 #ifdef I_STRING
12237 #include <string.h>
12238 #else
12239 #include <strings.h>
12240 #endif
12241 $signal_t blech(int x) { exit(3); }
12242 EOCP
12243         $cat >> try.c <<'EOCP'
12244 int main()
12245 {
12246         int pd[2];
12247         int pu[2];
12248         char buf[1];
12249         char string[100];
12250
12251         pipe(pd);       /* Down: child -> parent */
12252         pipe(pu);       /* Up: parent -> child */
12253         if (0 != fork()) {
12254                 int ret;
12255                 close(pd[1]);   /* Parent reads from pd[0] */
12256                 close(pu[0]);   /* Parent writes (blocking) to pu[1] */
12257 #ifdef F_SETFL
12258                 if (-1 == fcntl(pd[0], F_SETFL, MY_O_NONBLOCK))
12259                         exit(1);
12260 #else
12261                 exit(4);
12262 #endif
12263                 signal(SIGALRM, blech);
12264                 alarm(5);
12265                 if ((ret = read(pd[0], buf, 1)) > 0)    /* Nothing to read! */
12266                         exit(2);
12267                 sprintf(string, "%d\n", ret);
12268                 write(2, string, strlen(string));
12269                 alarm(0);
12270 #ifdef EAGAIN
12271                 if (errno == EAGAIN) {
12272                         printf("EAGAIN\n");
12273                         goto ok;
12274                 }
12275 #endif
12276 #ifdef EWOULDBLOCK
12277                 if (errno == EWOULDBLOCK)
12278                         printf("EWOULDBLOCK\n");
12279 #endif
12280         ok:
12281                 write(pu[1], buf, 1);   /* Unblocks child, tell it to close our pipe */
12282                 sleep(2);                               /* Give it time to close our pipe */
12283                 alarm(5);
12284                 ret = read(pd[0], buf, 1);      /* Should read EOF */
12285                 alarm(0);
12286                 sprintf(string, "%d\n", ret);
12287                 write(4, string, strlen(string));
12288                 exit(0);
12289         }
12290
12291         close(pd[0]);                   /* We write to pd[1] */
12292         close(pu[1]);                   /* We read from pu[0] */
12293         read(pu[0], buf, 1);    /* Wait for parent to signal us we may continue */
12294         close(pd[1]);                   /* Pipe pd is now fully closed! */
12295         exit(0);                                /* Bye bye, thank you for playing! */
12296 }
12297 EOCP
12298         set try
12299         if eval $compile_ok; then
12300                 echo "$startsh" >mtry
12301                 echo "$run ./try >try.out 2>try.ret 4>try.err || exit 4" >>mtry
12302                 chmod +x mtry
12303                 ./mtry >/dev/null 2>&1
12304                 case $? in
12305                 0) eagain=`$cat try.out`;;
12306                 1) echo "Could not perform non-blocking setting!";;
12307                 2) echo "I did a successful read() for something that was not there!";;
12308                 3) echo "Hmm... non-blocking I/O does not seem to be working!";;
12309                 4) echo "Could not find F_SETFL!";;
12310                 *) echo "Something terribly wrong happened during testing.";;
12311                 esac
12312                 rd_nodata=`$cat try.ret`
12313                 echo "A read() system call with no data present returns $rd_nodata."
12314                 case "$rd_nodata" in
12315                 0|-1) ;;
12316                 *)
12317                         echo "(That's peculiar, fixing that to be -1.)"
12318                         rd_nodata=-1
12319                         ;;
12320                 esac
12321                 case "$eagain" in
12322                 '')
12323                         echo "Forcing errno EAGAIN on read() with no data available."
12324                         eagain=EAGAIN
12325                         ;;
12326                 *)
12327                         echo "Your read() sets errno to $eagain when no data is available."
12328                         ;;
12329                 esac
12330                 status=`$cat try.err`
12331                 case "$status" in
12332                 0) echo "And it correctly returns 0 to signal EOF.";;
12333                 -1) echo "But it also returns -1 to signal EOF, so be careful!";;
12334                 *) echo "However, your read() returns '$status' on EOF??";;
12335                 esac
12336                 val="$define"
12337                 if test "$status" = "$rd_nodata"; then
12338                         echo "WARNING: you can't distinguish between EOF and no data!"
12339                         val="$undef"
12340                 fi
12341         else
12342                 echo "I can't compile the test program--assuming errno EAGAIN will do."
12343                 eagain=EAGAIN
12344         fi
12345         set d_eofnblk
12346         eval $setvar
12347         ;;
12348 *)
12349         echo "Using $hint value $eagain."
12350         echo "Your read() returns $rd_nodata when no data is present."
12351         case "$d_eofnblk" in
12352         "$define") echo "And you can see EOF because read() returns 0.";;
12353         "$undef") echo "But you can't see EOF status from read() returned value.";;
12354         *)
12355                 echo "(Assuming you can't see EOF status from read anyway.)"
12356                 d_eofnblk=$undef
12357                 ;;
12358         esac
12359         ;;
12360 esac
12361 $rm -f try try.* .out core head.c mtry
12362
12363 : see if _ptr and _cnt from stdio act std
12364 echo " "
12365
12366 if $contains '_lbfsize' `./findhdr stdio.h` >/dev/null 2>&1 ; then
12367         echo "(Looks like you have stdio.h from BSD.)"
12368         case "$stdio_ptr" in
12369         '') stdio_ptr='((fp)->_p)'
12370                 ptr_lval=$define
12371                 ;;
12372         *)      ptr_lval=$d_stdio_ptr_lval;;
12373         esac
12374         case "$stdio_cnt" in
12375         '') stdio_cnt='((fp)->_r)'
12376                 cnt_lval=$define
12377                 ;;
12378         *)      cnt_lval=$d_stdio_cnt_lval;;
12379         esac
12380         case "$stdio_base" in
12381         '') stdio_base='((fp)->_ub._base ? (fp)->_ub._base : (fp)->_bf._base)';;
12382         esac
12383         case "$stdio_bufsiz" in
12384         '') stdio_bufsiz='((fp)->_ub._base ? (fp)->_ub._size : (fp)->_bf._size)';;
12385         esac
12386 elif $contains '_IO_fpos_t' `./findhdr stdio.h` `./findhdr libio.h` >/dev/null 2>&1 ; then
12387         echo "(Looks like you have stdio.h from Linux.)"
12388         case "$stdio_ptr" in
12389         '') stdio_ptr='((fp)->_IO_read_ptr)'
12390                 ptr_lval=$define
12391                 ;;
12392         *)      ptr_lval=$d_stdio_ptr_lval;;
12393         esac
12394         case "$stdio_cnt" in
12395         '') stdio_cnt='((fp)->_IO_read_end - (fp)->_IO_read_ptr)'
12396                 cnt_lval=$undef
12397                 ;;
12398         *)      cnt_lval=$d_stdio_cnt_lval;;
12399         esac
12400         case "$stdio_base" in
12401         '') stdio_base='((fp)->_IO_read_base)';;
12402         esac
12403         case "$stdio_bufsiz" in
12404         '') stdio_bufsiz='((fp)->_IO_read_end - (fp)->_IO_read_base)';;
12405         esac
12406 else
12407         case "$stdio_ptr" in
12408         '') stdio_ptr='((fp)->_ptr)'
12409                 ptr_lval=$define
12410                 ;;
12411         *)      ptr_lval=$d_stdio_ptr_lval;;
12412         esac
12413         case "$stdio_cnt" in
12414         '') stdio_cnt='((fp)->_cnt)'
12415                 cnt_lval=$define
12416                 ;;
12417         *)      cnt_lval=$d_stdio_cnt_lval;;
12418         esac
12419         case "$stdio_base" in
12420         '') stdio_base='((fp)->_base)';;
12421         esac
12422         case "$stdio_bufsiz" in
12423         '') stdio_bufsiz='((fp)->_cnt + (fp)->_ptr - (fp)->_base)';;
12424         esac
12425 fi
12426
12427 : test whether _ptr and _cnt really work
12428 echo "Checking how std your stdio is..." >&4
12429 $cat >try.c <<EOP
12430 #include <stdio.h>
12431 #$i_stdlib I_STDLIB
12432 #ifdef I_STDLIB
12433 #include <stdlib.h>
12434 #endif
12435 #define FILE_ptr(fp)    $stdio_ptr
12436 #define FILE_cnt(fp)    $stdio_cnt
12437 int main() {
12438         FILE *fp = fopen("try.c", "r");
12439         char c = getc(fp);
12440         if (
12441                 18 <= FILE_cnt(fp) &&
12442                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
12443         )
12444                 exit(0);
12445         exit(1);
12446 }
12447 EOP
12448 val="$undef"
12449 set try
12450 if eval $compile && $to try.c; then
12451         if $run ./try; then
12452                 echo "Your stdio acts pretty std."
12453                 val="$define"
12454         else
12455                 echo "Your stdio isn't very std."
12456         fi
12457 else
12458         echo "Your stdio doesn't appear very std."
12459 fi
12460 $rm -f try.c try
12461
12462 # glibc 2.2.90 and above apparently change stdio streams so Perl's
12463 # direct buffer manipulation no longer works.  The Configure tests
12464 # should be changed to correctly detect this, but until then,
12465 # the following check should at least let perl compile and run.
12466 # (This quick fix should be updated before 5.8.1.)
12467 # To be defensive, reject all unknown versions, and all versions  > 2.2.9.
12468 # A. Dougherty, June 3, 2002.
12469 case "$d_gnulibc" in
12470 $define)
12471         case "$gnulibc_version" in
12472         2.[01]*)  ;;
12473         2.2) ;;
12474         2.2.[0-9]) ;;
12475         *)  echo "But I will not snoop inside glibc $gnulibc_version stdio buffers."
12476                 val="$undef"
12477                 ;;
12478         esac
12479         ;;
12480 esac
12481 set d_stdstdio
12482 eval $setvar
12483
12484 : Can _ptr be used as an lvalue?
12485 case "$d_stdstdio$ptr_lval" in
12486 $define$define) val=$define ;;
12487 *) val=$undef ;;
12488 esac
12489 set d_stdio_ptr_lval
12490 eval $setvar
12491
12492 : Can _cnt be used as an lvalue?
12493 case "$d_stdstdio$cnt_lval" in
12494 $define$define) val=$define ;;
12495 *) val=$undef ;;
12496 esac
12497 set d_stdio_cnt_lval
12498 eval $setvar
12499
12500
12501 : test whether setting _ptr sets _cnt as a side effect
12502 d_stdio_ptr_lval_sets_cnt="$undef"
12503 d_stdio_ptr_lval_nochange_cnt="$undef"
12504 case "$d_stdio_ptr_lval$d_stdstdio" in
12505 $define$define)
12506         echo "Checking to see what happens if we set the stdio ptr..." >&4
12507 $cat >try.c <<EOP
12508 #include <stdio.h>
12509 /* Can we scream? */
12510 /* Eat dust sed :-) */
12511 /* In the buffer space, no one can hear you scream. */
12512 #$i_stdlib I_STDLIB
12513 #ifdef I_STDLIB
12514 #include <stdlib.h>
12515 #endif
12516 #define FILE_ptr(fp)    $stdio_ptr
12517 #define FILE_cnt(fp)    $stdio_cnt
12518 #include <sys/types.h>
12519 int main() {
12520         FILE *fp = fopen("try.c", "r");
12521         int c;
12522         char *ptr;
12523         size_t cnt;
12524         if (!fp) {
12525             puts("Fail even to read");
12526             exit(1);
12527         }
12528         c = getc(fp); /* Read away the first # */
12529         if (c == EOF) {
12530             puts("Fail even to read");
12531             exit(1);
12532         }
12533         if (!(
12534                 18 <= FILE_cnt(fp) &&
12535                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
12536         )) {
12537                 puts("Fail even to read");
12538                 exit (1);
12539         }
12540         ptr = (char*) FILE_ptr(fp);
12541         cnt = (size_t)FILE_cnt(fp);
12542
12543         FILE_ptr(fp) += 42;
12544
12545         if ((char*)FILE_ptr(fp) != (ptr + 42)) {
12546                 printf("Fail ptr check %p != %p", FILE_ptr(fp), (ptr + 42));
12547                 exit (1);
12548         }
12549         if (FILE_cnt(fp) <= 20) {
12550                 printf ("Fail (<20 chars to test)");
12551                 exit (1);
12552         }
12553         if (strncmp(FILE_ptr(fp), "Eat dust sed :-) */\n", 20) != 0) {
12554                 puts("Fail compare");
12555                 exit (1);
12556         }
12557         if (cnt == FILE_cnt(fp)) {
12558                 puts("Pass_unchanged");
12559                 exit (0);
12560         }       
12561         if (FILE_cnt(fp) == (cnt - 42)) {
12562                 puts("Pass_changed");
12563                 exit (0);
12564         }
12565         printf("Fail count was %d now %d\n", cnt, FILE_cnt(fp));
12566         return 1;
12567
12568 }
12569 EOP
12570         set try
12571         if eval $compile && $to try.c; then
12572                 case `$run ./try` in
12573                 Pass_changed)
12574                         echo "Increasing ptr in your stdio decreases cnt by the same amount.  Good." >&4
12575                         d_stdio_ptr_lval_sets_cnt="$define" ;;
12576                 Pass_unchanged)
12577                         echo "Increasing ptr in your stdio leaves cnt unchanged.  Good." >&4
12578                         d_stdio_ptr_lval_nochange_cnt="$define" ;;
12579                 Fail*)
12580                         echo "Increasing ptr in your stdio didn't do exactly what I expected.  We'll not be doing that then." >&4 ;;
12581                 *)
12582                         echo "It appears attempting to set ptr in your stdio is a bad plan." >&4 ;;
12583         esac
12584         else
12585                 echo "It seems we can't set ptr in your stdio.  Nevermind." >&4
12586         fi
12587         $rm -f try.c try
12588         ;;
12589 esac
12590
12591 : see if _base is also standard
12592 val="$undef"
12593 case "$d_stdstdio" in
12594 $define)
12595         $cat >try.c <<EOP
12596 #include <stdio.h>
12597 #$i_stdlib I_STDLIB
12598 #ifdef I_STDLIB
12599 #include <stdlib.h>
12600 #endif
12601 #define FILE_base(fp)   $stdio_base
12602 #define FILE_bufsiz(fp) $stdio_bufsiz
12603 int main() {
12604         FILE *fp = fopen("try.c", "r");
12605         char c = getc(fp);
12606         if (
12607                 19 <= FILE_bufsiz(fp) &&
12608                 strncmp(FILE_base(fp), "#include <stdio.h>\n", 19) == 0
12609         )
12610                 exit(0);
12611         exit(1);
12612 }
12613 EOP
12614         set try
12615         if eval $compile && $to try.c; then
12616                 if $run ./try; then
12617                         echo "And its _base field acts std."
12618                         val="$define"
12619                 else
12620                         echo "But its _base field isn't std."
12621                 fi
12622         else
12623                 echo "However, it seems to be lacking the _base field."
12624         fi
12625         $rm -f try.c try
12626         ;;
12627 esac
12628 set d_stdiobase
12629 eval $setvar
12630
12631 : see if fast_stdio exists
12632 val="$undef"
12633 case "$d_stdstdio:$d_stdio_ptr_lval" in
12634 "$define:$define")
12635         case "$d_stdio_cnt_lval$d_stdio_ptr_lval_sets_cnt" in
12636         *$define*)
12637                 echo "You seem to have 'fast stdio' to directly manipulate the stdio buffers." >& 4
12638                 val="$define"
12639                 ;;
12640         esac
12641         ;;
12642 esac
12643 set d_faststdio
12644 eval $setvar
12645
12646
12647
12648 : see if fchdir exists
12649 set fchdir d_fchdir
12650 eval $inlibc
12651
12652 : see if fchmod exists
12653 set fchmod d_fchmod
12654 eval $inlibc
12655
12656 : see if fchown exists
12657 set fchown d_fchown
12658 eval $inlibc
12659
12660 : see if this is an fcntl system
12661 set fcntl d_fcntl
12662 eval $inlibc
12663
12664 echo " "
12665 : See if fcntl-based locking works.
12666 $cat >try.c <<EOCP
12667 #$i_stdlib I_STDLIB
12668 #ifdef I_STDLIB
12669 #include <stdlib.h>
12670 #endif
12671 #include <unistd.h>
12672 #include <fcntl.h>
12673 #include <signal.h>
12674 $signal_t blech(int x) { exit(3); }
12675 int main() {
12676 #if defined(F_SETLK) && defined(F_SETLKW)
12677      struct flock flock;
12678      int retval, fd;
12679      fd = open("try.c", O_RDONLY);
12680      flock.l_type = F_RDLCK;
12681      flock.l_whence = SEEK_SET;
12682      flock.l_start = flock.l_len = 0;
12683      signal(SIGALRM, blech);
12684      alarm(10);
12685      retval = fcntl(fd, F_SETLK, &flock);
12686      close(fd);
12687      (retval < 0 ? exit(2) : exit(0));
12688 #else
12689      exit(2);
12690 #endif
12691 }
12692 EOCP
12693 echo "Checking if fcntl-based file locking works... "
12694 case "$d_fcntl" in
12695 "$define")
12696         set try
12697         if eval $compile_ok; then
12698                 if $run ./try; then
12699                         echo "Yes, it seems to work."
12700                         val="$define"
12701                 else
12702                         echo "Nope, it didn't work."
12703                         val="$undef"
12704                         case "$?" in
12705                         3) $cat >&4 <<EOM
12706 ***
12707 *** I had to forcibly timeout from fcntl(..., F_SETLK, ...).
12708 *** This is (almost) impossible.
12709 *** If your NFS lock daemons are not feeling well, something like
12710 *** this may happen, please investigate.  Cannot continue, aborting.
12711 ***
12712 EOM
12713                                 exit 1
12714                                 ;;
12715                         esac
12716                 fi
12717         else
12718                 echo "I'm unable to compile the test program, so I'll assume not."
12719                 val="$undef"
12720         fi
12721         ;;
12722 *) val="$undef";
12723         echo "Nope, since you don't even have fcntl()."
12724         ;;
12725 esac
12726 set d_fcntl_can_lock
12727 eval $setvar
12728 $rm -f try*
12729
12730
12731 : check for fd_set items
12732 $cat <<EOM
12733
12734 Checking to see how well your C compiler handles fd_set and friends ...
12735 EOM
12736 $cat >try.c <<EOCP
12737 #$i_stdlib I_STDLIB
12738 #ifdef I_STDLIB
12739 #include <stdlib.h>
12740 #endif
12741 #$i_systime I_SYS_TIME
12742 #$i_sysselct I_SYS_SELECT
12743 #$d_socket HAS_SOCKET
12744 #include <sys/types.h>
12745 #ifdef HAS_SOCKET
12746 #include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
12747 #endif
12748 #ifdef I_SYS_TIME
12749 #include <sys/time.h>
12750 #endif
12751 #ifdef I_SYS_SELECT
12752 #include <sys/select.h>
12753 #endif
12754 int main() {
12755         fd_set fds;
12756
12757 #ifdef TRYBITS
12758         if(fds.fds_bits);
12759 #endif
12760
12761 #if defined(FD_SET) && defined(FD_CLR) && defined(FD_ISSET) && defined(FD_ZERO)
12762         exit(0);
12763 #else
12764         exit(1);
12765 #endif
12766 }
12767 EOCP
12768 set try -DTRYBITS
12769 if eval $compile; then
12770         d_fds_bits="$define"
12771         d_fd_set="$define"
12772         echo "Well, your system knows about the normal fd_set typedef..." >&4
12773         if $run ./try; then
12774                 echo "and you have the normal fd_set macros (just as I'd expect)." >&4
12775                 d_fd_macros="$define"
12776         else
12777                 $cat >&4 <<'EOM'
12778 but not the normal fd_set macros!  Gaaack!  I'll have to cover for you.
12779 EOM
12780                 d_fd_macros="$undef"
12781         fi
12782 else
12783         $cat <<'EOM'
12784 Hmm, your compiler has some difficulty with fd_set.  Checking further...
12785 EOM
12786         set try
12787         if eval $compile; then
12788                 d_fds_bits="$undef"
12789                 d_fd_set="$define"
12790                 echo "Well, your system has some sort of fd_set available..." >&4
12791                 if $run ./try; then
12792                         echo "and you have the normal fd_set macros." >&4
12793                         d_fd_macros="$define"
12794                 else
12795                         $cat <<'EOM'
12796 but not the normal fd_set macros!  Gross!  More work for me...
12797 EOM
12798                         d_fd_macros="$undef"
12799                 fi
12800         else
12801         echo "Well, you got zip.  That's OK, I can roll my own fd_set stuff." >&4
12802                 d_fd_set="$undef"
12803                 d_fds_bits="$undef"
12804                 d_fd_macros="$undef"
12805         fi
12806 fi
12807 $rm -f try try.*
12808
12809 : see if fgetpos exists
12810 set fgetpos d_fgetpos
12811 eval $inlibc
12812
12813 : see if finite exists
12814 set finite d_finite
12815 eval $inlibc
12816
12817 : see if finitel exists
12818 set finitel d_finitel
12819 eval $inlibc
12820
12821 : see if flock exists
12822 set flock d_flock
12823 eval $inlibc
12824
12825 : see if prototype for flock is available
12826 echo " "
12827 set d_flockproto flock $i_sysfile sys/file.h
12828 eval $hasproto
12829
12830 : see if fork exists
12831 set fork d_fork
12832 eval $inlibc
12833
12834 : see if fp_class exists
12835 set fp_class d_fp_class
12836 eval $inlibc
12837
12838 : see if pathconf exists
12839 set pathconf d_pathconf
12840 eval $inlibc
12841
12842 : see if fpathconf exists
12843 set fpathconf d_fpathconf
12844 eval $inlibc
12845
12846 : see if fpclass exists
12847 set fpclass d_fpclass
12848 eval $inlibc
12849
12850 : see if fpclassify exists
12851 set fpclassify d_fpclassify
12852 eval $inlibc
12853
12854 : see if fpclassl exists
12855 set fpclassl d_fpclassl
12856 eval $inlibc
12857
12858
12859 : check for fpos64_t
12860 echo " "
12861 echo "Checking to see if you have fpos64_t..." >&4
12862 $cat >try.c <<EOCP
12863 #include <stdio.h>
12864 int main() { fpos64_t x = 7; }
12865 EOCP
12866 set try
12867 if eval $compile; then
12868         val="$define"
12869         echo "You have fpos64_t."
12870 else
12871         val="$undef"
12872         echo "You do not have fpos64_t."
12873         case "$fpossize" in
12874         8) echo "(Your fpos_t is 64 bits, so you could use that.)" ;;
12875         esac
12876 fi
12877 $rm -f try.* try
12878 set d_fpos64_t
12879 eval $setvar
12880
12881 : see if frexpl exists
12882 set frexpl d_frexpl
12883 eval $inlibc
12884
12885 : see if this is a sys/param system
12886 set sys/param.h i_sysparam
12887 eval $inhdr
12888
12889 : see if this is a sys/mount.h system
12890 set sys/mount.h i_sysmount
12891 eval $inhdr
12892
12893
12894 echo " "
12895 echo "Checking to see if your system supports struct fs_data..." >&4
12896 set d_fs_data_s fs_data $i_systypes sys/types.h $i_sysparam sys/param.h $i_sysmount sys/mount.h
12897 eval $hasstruct
12898 case "$d_fs_data_s" in
12899 "$define")      echo "Yes, it does."   ;;
12900 *)              echo "No, it doesn't." ;;
12901 esac
12902
12903 : see if fseeko exists
12904 set fseeko d_fseeko
12905 eval $inlibc
12906 case "$longsize" in
12907 8) echo "(Your long is 64 bits, so you could use fseek.)" ;;
12908 esac
12909
12910 : see if fsetpos exists
12911 set fsetpos d_fsetpos
12912 eval $inlibc
12913
12914
12915 : see if fstatfs exists
12916 set fstatfs d_fstatfs
12917 eval $inlibc
12918
12919
12920 : see if statvfs exists
12921 set statvfs d_statvfs
12922 eval $inlibc
12923
12924 : see if fstatvfs exists
12925 set fstatvfs d_fstatvfs
12926 eval $inlibc
12927
12928
12929 : see if fsync exists
12930 set fsync d_fsync
12931 eval $inlibc
12932
12933 : see if ftello exists
12934 set ftello d_ftello
12935 eval $inlibc
12936 case "$longsize" in
12937 8) echo "(Your long is 64 bits, so you could use ftell.)" ;;
12938 esac
12939
12940 d_futimes="$undef"
12941 : check for a working futimes
12942 echo " "
12943 echo "Checking for a working futimes()" >&4
12944 $cat >try.c <<EOCP
12945 #include <stdio.h>
12946 #include <sys/time.h>
12947 #include <errno.h>
12948 #include <fcntl.h>
12949
12950 int main ()
12951 {
12952     int fd, rv;
12953     fd = open ("try.c", O_RDWR);
12954     if (-1 == fd) exit (1);
12955     rv = futimes (fd, NULL);
12956     exit (rv == -1 ? errno : 0);
12957 }
12958 EOCP
12959 set try
12960 if eval $compile; then
12961     `$run ./try`
12962     rc=$?
12963     case "$rc" in
12964         0)  echo "Yes, it does" >&4
12965             d_futimes="$define"
12966             ;;
12967         *)  echo "No, it has futimes, but it isn't working ($rc) (probably harmless)\n" >&4
12968             ;;
12969     esac
12970 else
12971     echo "No, it does not (probably harmless)\n" >&4
12972 fi
12973 $rm -f try.* try core core.try.*
12974
12975 : see if getcwd exists
12976 set getcwd d_getcwd
12977 eval $inlibc
12978
12979 : see if getespwnam exists
12980 set getespwnam d_getespwnam
12981 eval $inlibc
12982
12983
12984 : see if getfsstat exists
12985 set getfsstat d_getfsstat
12986 eval $inlibc
12987
12988 : see if getgrent exists
12989 set getgrent d_getgrent
12990 eval $inlibc
12991
12992 : see if getgrent_r exists
12993 set getgrent_r d_getgrent_r
12994 eval $inlibc
12995 case "$d_getgrent_r" in
12996 "$define")
12997         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12998         case "$d_getgrent_r_proto:$usethreads" in
12999         ":define")      d_getgrent_r_proto=define
13000                 set d_getgrent_r_proto getgrent_r $hdrs
13001                 eval $hasproto ;;
13002         *)      ;;
13003         esac
13004         case "$d_getgrent_r_proto" in
13005         define)
13006         case "$getgrent_r_proto" in
13007         ''|0) try='int getgrent_r(struct group*, char*, size_t, struct group**);'
13008         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBWR ;;
13009         esac
13010         case "$getgrent_r_proto" in
13011         ''|0) try='int getgrent_r(struct group*, char*, int, struct group**);'
13012         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIR ;;
13013         esac
13014         case "$getgrent_r_proto" in
13015         ''|0) try='struct group* getgrent_r(struct group*, char*, size_t);'
13016         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBW ;;
13017         esac
13018         case "$getgrent_r_proto" in
13019         ''|0) try='struct group* getgrent_r(struct group*, char*, int);'
13020         ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBI ;;
13021         esac
13022         case "$getgrent_r_proto" in
13023         ''|0) try='int getgrent_r(struct group*, char*, int);'
13024         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBI ;;
13025         esac
13026         case "$getgrent_r_proto" in
13027         ''|0) try='int getgrent_r(struct group*, char*, int, FILE**);'
13028         ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIH ;;
13029         esac
13030         case "$getgrent_r_proto" in
13031         ''|0)   d_getgrent_r=undef
13032                 getgrent_r_proto=0
13033                 echo "Disabling getgrent_r, cannot determine prototype." >&4 ;;
13034         * )     case "$getgrent_r_proto" in
13035                 REENTRANT_PROTO*) ;;
13036                 *) getgrent_r_proto="REENTRANT_PROTO_$getgrent_r_proto" ;;
13037                 esac
13038                 echo "Prototype: $try" ;;
13039         esac
13040         ;;
13041         *)      case "$usethreads" in
13042                 define) echo "getgrent_r has no prototype, not using it." >&4 ;;
13043                 esac
13044                 d_getgrent_r=undef
13045                 getgrent_r_proto=0
13046                 ;;
13047         esac
13048         ;;
13049 *)      getgrent_r_proto=0
13050         ;;
13051 esac
13052
13053 : see if getgrgid_r exists
13054 set getgrgid_r d_getgrgid_r
13055 eval $inlibc
13056 case "$d_getgrgid_r" in
13057 "$define")
13058         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
13059         case "$d_getgrgid_r_proto:$usethreads" in
13060         ":define")      d_getgrgid_r_proto=define
13061                 set d_getgrgid_r_proto getgrgid_r $hdrs
13062                 eval $hasproto ;;
13063         *)      ;;
13064         esac
13065         case "$d_getgrgid_r_proto" in
13066         define)
13067         case "$getgrgid_r_proto" in
13068         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, size_t, struct group**);'
13069         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBWR ;;
13070         esac
13071         case "$getgrgid_r_proto" in
13072         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int, struct group**);'
13073         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBIR ;;
13074         esac
13075         case "$getgrgid_r_proto" in
13076         ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int);'
13077         ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBI ;;
13078         esac
13079         case "$getgrgid_r_proto" in
13080         ''|0) try='struct group* getgrgid_r(gid_t, struct group*, char*, int);'
13081         ./protochk "extern $try" $hdrs && getgrgid_r_proto=S_TSBI ;;
13082         esac
13083         case "$getgrgid_r_proto" in
13084         ''|0)   d_getgrgid_r=undef
13085                 getgrgid_r_proto=0
13086                 echo "Disabling getgrgid_r, cannot determine prototype." >&4 ;;
13087         * )     case "$getgrgid_r_proto" in
13088                 REENTRANT_PROTO*) ;;
13089                 *) getgrgid_r_proto="REENTRANT_PROTO_$getgrgid_r_proto" ;;
13090                 esac
13091                 echo "Prototype: $try" ;;
13092         esac
13093         ;;
13094         *)      case "$usethreads" in
13095                 define) echo "getgrgid_r has no prototype, not using it." >&4 ;;
13096                 esac
13097                 d_getgrgid_r=undef
13098                 getgrgid_r_proto=0
13099                 ;;
13100         esac
13101         ;;
13102 *)      getgrgid_r_proto=0
13103         ;;
13104 esac
13105
13106 : see if getgrnam_r exists
13107 set getgrnam_r d_getgrnam_r
13108 eval $inlibc
13109 case "$d_getgrnam_r" in
13110 "$define")
13111         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
13112         case "$d_getgrnam_r_proto:$usethreads" in
13113         ":define")      d_getgrnam_r_proto=define
13114                 set d_getgrnam_r_proto getgrnam_r $hdrs
13115                 eval $hasproto ;;
13116         *)      ;;
13117         esac
13118         case "$d_getgrnam_r_proto" in
13119         define)
13120         case "$getgrnam_r_proto" in
13121         ''|0) try='int getgrnam_r(const char*, struct group*, char*, size_t, struct group**);'
13122         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBWR ;;
13123         esac
13124         case "$getgrnam_r_proto" in
13125         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int, struct group**);'
13126         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBIR ;;
13127         esac
13128         case "$getgrnam_r_proto" in
13129         ''|0) try='struct group* getgrnam_r(const char*, char*, int);'
13130         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CBI ;;
13131         esac
13132         case "$getgrnam_r_proto" in
13133         ''|0) try='int getgrnam_r(const char*, struct group*, char*, int);'
13134         ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBI ;;
13135         esac
13136         case "$getgrnam_r_proto" in
13137         ''|0) try='struct group* getgrnam_r(const char*, struct group*, char*, int);'
13138         ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CSBI ;;
13139         esac
13140         case "$getgrnam_r_proto" in
13141         ''|0)   d_getgrnam_r=undef
13142                 getgrnam_r_proto=0
13143                 echo "Disabling getgrnam_r, cannot determine prototype." >&4 ;;
13144         * )     case "$getgrnam_r_proto" in
13145                 REENTRANT_PROTO*) ;;
13146                 *) getgrnam_r_proto="REENTRANT_PROTO_$getgrnam_r_proto" ;;
13147                 esac
13148                 echo "Prototype: $try" ;;
13149         esac
13150         ;;
13151         *)      case "$usethreads" in
13152                 define) echo "getgrnam_r has no prototype, not using it." >&4 ;;
13153                 esac
13154                 d_getgrnam_r=undef
13155                 getgrnam_r_proto=0
13156                 ;;
13157         esac
13158         ;;
13159 *)      getgrnam_r_proto=0
13160         ;;
13161 esac
13162
13163 : see if gethostbyaddr exists
13164 set gethostbyaddr d_gethbyaddr
13165 eval $inlibc
13166
13167 : see if gethostbyname exists
13168 set gethostbyname d_gethbyname
13169 eval $inlibc
13170
13171 : see if gethostent exists
13172 set gethostent d_gethent
13173 eval $inlibc
13174
13175 : see how we will look up host name
13176 echo " "
13177 call=''
13178 if set gethostname val -f d_gethname; eval $csym; $val; then
13179         echo 'gethostname() found.' >&4
13180         d_gethname="$define"
13181         call=gethostname
13182 fi
13183 if set uname val -f d_uname; eval $csym; $val; then
13184         if ./xenix; then
13185                 $cat <<'EOM'
13186 uname() was found, but you're running xenix, and older versions of xenix
13187 have a broken uname(). If you don't really know whether your xenix is old
13188 enough to have a broken system call, use the default answer.
13189
13190 EOM
13191                 dflt=y
13192                 case "$d_uname" in
13193                 "$define") dflt=n;;
13194                 esac
13195                 rp='Is your uname() broken?'
13196                 . ./myread
13197                 case "$ans" in
13198                 n*) d_uname="$define"; call=uname;;
13199                 esac
13200         else
13201                 echo 'uname() found.' >&4
13202                 d_uname="$define"
13203                 case "$call" in
13204                 '') call=uname ;;
13205                 esac
13206         fi
13207 fi
13208 case "$d_gethname" in
13209 '') d_gethname="$undef";;
13210 esac
13211 case "$d_uname" in
13212 '') d_uname="$undef";;
13213 esac
13214 case "$d_uname$d_gethname" in
13215 *define*)
13216         dflt=n
13217         cat <<EOM
13218  
13219 Every now and then someone has a $call() that lies about the hostname
13220 but can't be fixed for political or economic reasons.  If you wish, I can
13221 pretend $call() isn't there and maybe compute hostname at run-time
13222 thanks to the '$phostname' command.
13223
13224 EOM
13225         rp="Shall I ignore $call() from now on?"
13226         . ./myread
13227         case "$ans" in
13228         y*) d_uname="$undef" d_gethname="$undef"; $echo $n "Okay...$c";;
13229         esac;;
13230 esac
13231 case "$phostname" in
13232 '') aphostname='';;
13233 *) case "$aphostname" in
13234         /*) ;;
13235         *) set X $phostname
13236                 shift
13237                 file=$1
13238                 shift
13239                 file=`./loc $file $file $pth`
13240                 aphostname=`echo $file $*`
13241                 ;;
13242         esac
13243         ;;
13244 esac
13245 case "$d_uname$d_gethname" in
13246 *define*) ;;
13247 *)
13248         case "$phostname" in
13249         '')
13250                 echo "There will be no way for $package to get your hostname." >&4;;
13251         *)
13252         echo "I'll use 'popen("'"'$aphostname'", "r")'"' to get your hostname." >&4
13253                 ;;
13254         esac;;
13255 esac
13256 case "$d_phostname" in
13257 '') d_phostname="$undef";;
13258 esac
13259
13260 : see if gethostbyaddr_r exists
13261 set gethostbyaddr_r d_gethostbyaddr_r
13262 eval $inlibc
13263 case "$d_gethostbyaddr_r" in
13264 "$define")
13265         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13266         case "$d_gethostbyaddr_r_proto:$usethreads" in
13267         ":define")      d_gethostbyaddr_r_proto=define
13268                 set d_gethostbyaddr_r_proto gethostbyaddr_r $hdrs
13269                 eval $hasproto ;;
13270         *)      ;;
13271         esac
13272         case "$d_gethostbyaddr_r_proto" in
13273         define)
13274         case "$gethostbyaddr_r_proto" in
13275         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
13276         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISBWRE ;;
13277         esac
13278         case "$gethostbyaddr_r_proto" in
13279         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, int, int*);'
13280         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBWIE ;;
13281         esac
13282         case "$gethostbyaddr_r_proto" in
13283         ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, int, int*);'
13284         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBIE ;;
13285         esac
13286         case "$gethostbyaddr_r_proto" in
13287         ''|0) try='struct hostent* gethostbyaddr_r(const void*, size_t, int, struct hostent*, char*, int, int*);'
13288         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TWISBIE ;;
13289         esac
13290         case "$gethostbyaddr_r_proto" in
13291         ''|0) try='struct hostent* gethostbyaddr_r(const char*, int, int, struct hostent*, char*, int, int*);'
13292         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CIISBIE ;;
13293         esac
13294         case "$gethostbyaddr_r_proto" in
13295         ''|0) try='struct hostent* gethostbyaddr_r(const char*, struct hostent*, char*, int, int*);'
13296         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CSBIE ;;
13297         esac
13298         case "$gethostbyaddr_r_proto" in
13299         ''|0) try='struct hostent* gethostbyaddr_r(const void*, struct hostent*, char*, int, int*);'
13300         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TSBIE ;;
13301         esac
13302         case "$gethostbyaddr_r_proto" in
13303         ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, struct hostent_data*);'
13304         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISD ;;
13305         esac
13306         case "$gethostbyaddr_r_proto" in
13307         ''|0) try='int gethostbyaddr_r(const char*, int, int, struct hostent*, struct hostent_data*);'
13308         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CIISD ;;
13309         esac
13310         case "$gethostbyaddr_r_proto" in
13311         ''|0) try='int gethostbyaddr_r(const char*, int, int);'
13312         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CII ;;
13313         esac
13314         case "$gethostbyaddr_r_proto" in
13315         ''|0) try='int gethostbyaddr_r(const void*, socklen_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
13316         ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_TsISBWRE ;;
13317         esac
13318         case "$gethostbyaddr_r_proto" in
13319         ''|0)   d_gethostbyaddr_r=undef
13320                 gethostbyaddr_r_proto=0
13321                 echo "Disabling gethostbyaddr_r, cannot determine prototype." >&4 ;;
13322         * )     case "$gethostbyaddr_r_proto" in
13323                 REENTRANT_PROTO*) ;;
13324                 *) gethostbyaddr_r_proto="REENTRANT_PROTO_$gethostbyaddr_r_proto" ;;
13325                 esac
13326                 echo "Prototype: $try" ;;
13327         esac
13328         ;;
13329         *)      case "$usethreads" in
13330                 define) echo "gethostbyaddr_r has no prototype, not using it." >&4 ;;
13331                 esac
13332                 d_gethostbyaddr_r=undef
13333                 gethostbyaddr_r_proto=0
13334                 ;;
13335         esac
13336         ;;
13337 *)      gethostbyaddr_r_proto=0
13338         ;;
13339 esac
13340
13341 : see if gethostbyname_r exists
13342 set gethostbyname_r d_gethostbyname_r
13343 eval $inlibc
13344 case "$d_gethostbyname_r" in
13345 "$define")
13346         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13347         case "$d_gethostbyname_r_proto:$usethreads" in
13348         ":define")      d_gethostbyname_r_proto=define
13349                 set d_gethostbyname_r_proto gethostbyname_r $hdrs
13350                 eval $hasproto ;;
13351         *)      ;;
13352         esac
13353         case "$d_gethostbyname_r_proto" in
13354         define)
13355         case "$gethostbyname_r_proto" in
13356         ''|0) try='int gethostbyname_r(const char*, struct hostent*, char*, size_t, struct hostent**, int*);'
13357         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSBWRE ;;
13358         esac
13359         case "$gethostbyname_r_proto" in
13360         ''|0) try='struct hostent* gethostbyname_r(const char*, struct hostent*, char*, int, int*);'
13361         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=S_CSBIE ;;
13362         esac
13363         case "$gethostbyname_r_proto" in
13364         ''|0) try='int gethostbyname_r(const char*, struct hostent*, struct hostent_data*);'
13365         ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSD ;;
13366         esac
13367         case "$gethostbyname_r_proto" in
13368         ''|0)   d_gethostbyname_r=undef
13369                 gethostbyname_r_proto=0
13370                 echo "Disabling gethostbyname_r, cannot determine prototype." >&4 ;;
13371         * )     case "$gethostbyname_r_proto" in
13372                 REENTRANT_PROTO*) ;;
13373                 *) gethostbyname_r_proto="REENTRANT_PROTO_$gethostbyname_r_proto" ;;
13374                 esac
13375                 echo "Prototype: $try" ;;
13376         esac
13377         ;;
13378         *)      case "$usethreads" in
13379                 define) echo "gethostbyname_r has no prototype, not using it." >&4 ;;
13380                 esac
13381                 d_gethostbyname_r=undef
13382                 gethostbyname_r_proto=0
13383                 ;;
13384         esac
13385         ;;
13386 *)      gethostbyname_r_proto=0
13387         ;;
13388 esac
13389
13390 : see if gethostent_r exists
13391 set gethostent_r d_gethostent_r
13392 eval $inlibc
13393 case "$d_gethostent_r" in
13394 "$define")
13395         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13396         case "$d_gethostent_r_proto:$usethreads" in
13397         ":define")      d_gethostent_r_proto=define
13398                 set d_gethostent_r_proto gethostent_r $hdrs
13399                 eval $hasproto ;;
13400         *)      ;;
13401         esac
13402         case "$d_gethostent_r_proto" in
13403         define)
13404         case "$gethostent_r_proto" in
13405         ''|0) try='int gethostent_r(struct hostent*, char*, size_t, struct hostent**, int*);'
13406         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBWRE ;;
13407         esac
13408         case "$gethostent_r_proto" in
13409         ''|0) try='int gethostent_r(struct hostent*, char*, int, int*);'
13410         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBIE ;;
13411         esac
13412         case "$gethostent_r_proto" in
13413         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int, int*);'
13414         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBIE ;;
13415         esac
13416         case "$gethostent_r_proto" in
13417         ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int);'
13418         ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBI ;;
13419         esac
13420         case "$gethostent_r_proto" in
13421         ''|0) try='int gethostent_r(struct hostent*, char*, int);'
13422         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBI ;;
13423         esac
13424         case "$gethostent_r_proto" in
13425         ''|0) try='int gethostent_r(struct hostent*, struct hostent_data*);'
13426         ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SD ;;
13427         esac
13428         case "$gethostent_r_proto" in
13429         ''|0)   d_gethostent_r=undef
13430                 gethostent_r_proto=0
13431                 echo "Disabling gethostent_r, cannot determine prototype." >&4 ;;
13432         * )     case "$gethostent_r_proto" in
13433                 REENTRANT_PROTO*) ;;
13434                 *) gethostent_r_proto="REENTRANT_PROTO_$gethostent_r_proto" ;;
13435                 esac
13436                 echo "Prototype: $try" ;;
13437         esac
13438         ;;
13439         *)      case "$usethreads" in
13440                 define) echo "gethostent_r has no prototype, not using it." >&4 ;;
13441                 esac
13442                 d_gethostent_r=undef
13443                 gethostent_r_proto=0
13444                 ;;
13445         esac
13446         ;;
13447 *)      gethostent_r_proto=0
13448         ;;
13449 esac
13450
13451 : see if prototypes for various gethostxxx netdb.h functions are available
13452 echo " "
13453 set d_gethostprotos gethostent $i_netdb netdb.h
13454 eval $hasproto
13455
13456 : see if getitimer exists
13457 set getitimer d_getitimer
13458 eval $inlibc
13459
13460 : see if getlogin exists
13461 set getlogin d_getlogin
13462 eval $inlibc
13463
13464 : see if getlogin_r exists
13465 set getlogin_r d_getlogin_r
13466 eval $inlibc
13467 case "$d_getlogin_r" in
13468 "$define")
13469         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
13470         case "$d_getlogin_r_proto:$usethreads" in
13471         ":define")      d_getlogin_r_proto=define
13472                 set d_getlogin_r_proto getlogin_r $hdrs
13473                 eval $hasproto ;;
13474         *)      ;;
13475         esac
13476         case "$d_getlogin_r_proto" in
13477         define)
13478         case "$getlogin_r_proto" in
13479         ''|0) try='int getlogin_r(char*, size_t);'
13480         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BW ;;
13481         esac
13482         case "$getlogin_r_proto" in
13483         ''|0) try='int getlogin_r(char*, int);'
13484         ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BI ;;
13485         esac
13486         case "$getlogin_r_proto" in
13487         ''|0) try='char* getlogin_r(char*, size_t);'
13488         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BW ;;
13489         esac
13490         case "$getlogin_r_proto" in
13491         ''|0) try='char* getlogin_r(char*, int);'
13492         ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BI ;;
13493         esac
13494         case "$getlogin_r_proto" in
13495         ''|0)   d_getlogin_r=undef
13496                 getlogin_r_proto=0
13497                 echo "Disabling getlogin_r, cannot determine prototype." >&4 ;;
13498         * )     case "$getlogin_r_proto" in
13499                 REENTRANT_PROTO*) ;;
13500                 *) getlogin_r_proto="REENTRANT_PROTO_$getlogin_r_proto" ;;
13501                 esac
13502                 echo "Prototype: $try" ;;
13503         esac
13504         ;;
13505         *)      case "$usethreads" in
13506                 define) echo "getlogin_r has no prototype, not using it." >&4 ;;
13507                 esac
13508                 d_getlogin_r=undef
13509                 getlogin_r_proto=0
13510                 ;;
13511         esac
13512         ;;
13513 *)      getlogin_r_proto=0
13514         ;;
13515 esac
13516
13517 : see if getmnt exists
13518 set getmnt d_getmnt
13519 eval $inlibc
13520
13521 : see if getmntent exists
13522 set getmntent d_getmntent
13523 eval $inlibc
13524
13525 : see if getnetbyaddr exists
13526 set getnetbyaddr d_getnbyaddr
13527 eval $inlibc
13528
13529 : see if getnetbyname exists
13530 set getnetbyname d_getnbyname
13531 eval $inlibc
13532
13533 : see if getnetent exists
13534 set getnetent d_getnent
13535 eval $inlibc
13536
13537 : see if getnetbyaddr_r exists
13538 set getnetbyaddr_r d_getnetbyaddr_r
13539 eval $inlibc
13540 case "$d_getnetbyaddr_r" in
13541 "$define")
13542         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13543         case "$d_getnetbyaddr_r_proto:$usethreads" in
13544         ":define")      d_getnetbyaddr_r_proto=define
13545                 set d_getnetbyaddr_r_proto getnetbyaddr_r $hdrs
13546                 eval $hasproto ;;
13547         *)      ;;
13548         esac
13549         case "$d_getnetbyaddr_r_proto" in
13550         define)
13551         case "$getnetbyaddr_r_proto" in
13552         ''|0) try='int getnetbyaddr_r(unsigned long, int, struct netent*, char*, size_t, struct netent**, int*);'
13553         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_UISBWRE ;;
13554         esac
13555         case "$getnetbyaddr_r_proto" in
13556         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, char*, int);'
13557         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISBI ;;
13558         esac
13559         case "$getnetbyaddr_r_proto" in
13560         ''|0) try='struct netent* getnetbyaddr_r(in_addr_t, int, struct netent*, char*, int);'
13561         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_TISBI ;;
13562         esac
13563         case "$getnetbyaddr_r_proto" in
13564         ''|0) try='struct netent* getnetbyaddr_r(long, int, struct netent*, char*, int);'
13565         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_LISBI ;;
13566         esac
13567         case "$getnetbyaddr_r_proto" in
13568         ''|0) try='int getnetbyaddr_r(in_addr_t, int, struct netent*, struct netent_data*);'
13569         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_TISD ;;
13570         esac
13571         case "$getnetbyaddr_r_proto" in
13572         ''|0) try='int getnetbyaddr_r(long, int, struct netent*, struct netent_data*);'
13573         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISD ;;
13574         esac
13575         case "$getnetbyaddr_r_proto" in
13576         ''|0) try='int getnetbyaddr_r(int, int, struct netent*, struct netent_data*);'
13577         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_IISD ;;
13578         esac
13579         case "$getnetbyaddr_r_proto" in
13580         ''|0) try='int getnetbyaddr_r(uint32_t, int, struct netent*, char*, size_t, struct netent**, int*);'
13581         ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_uISBWRE ;;
13582         esac
13583         case "$getnetbyaddr_r_proto" in
13584         ''|0)   d_getnetbyaddr_r=undef
13585                 getnetbyaddr_r_proto=0
13586                 echo "Disabling getnetbyaddr_r, cannot determine prototype." >&4 ;;
13587         * )     case "$getnetbyaddr_r_proto" in
13588                 REENTRANT_PROTO*) ;;
13589                 *) getnetbyaddr_r_proto="REENTRANT_PROTO_$getnetbyaddr_r_proto" ;;
13590                 esac
13591                 echo "Prototype: $try" ;;
13592         esac
13593         ;;
13594         *)      case "$usethreads" in
13595                 define) echo "getnetbyaddr_r has no prototype, not using it." >&4 ;;
13596                 esac
13597                 d_getnetbyaddr_r=undef
13598                 getnetbyaddr_r_proto=0
13599                 ;;
13600         esac
13601         ;;
13602 *)      getnetbyaddr_r_proto=0
13603         ;;
13604 esac
13605
13606 : see if getnetbyname_r exists
13607 set getnetbyname_r d_getnetbyname_r
13608 eval $inlibc
13609 case "$d_getnetbyname_r" in
13610 "$define")
13611         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13612         case "$d_getnetbyname_r_proto:$usethreads" in
13613         ":define")      d_getnetbyname_r_proto=define
13614                 set d_getnetbyname_r_proto getnetbyname_r $hdrs
13615                 eval $hasproto ;;
13616         *)      ;;
13617         esac
13618         case "$d_getnetbyname_r_proto" in
13619         define)
13620         case "$getnetbyname_r_proto" in
13621         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, size_t, struct netent**, int*);'
13622         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBWRE ;;
13623         esac
13624         case "$getnetbyname_r_proto" in
13625         ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, int);'
13626         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBI ;;
13627         esac
13628         case "$getnetbyname_r_proto" in
13629         ''|0) try='struct netent* getnetbyname_r(const char*, struct netent*, char*, int);'
13630         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=S_CSBI ;;
13631         esac
13632         case "$getnetbyname_r_proto" in
13633         ''|0) try='int getnetbyname_r(const char*, struct netent*, struct netent_data*);'
13634         ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSD ;;
13635         esac
13636         case "$getnetbyname_r_proto" in
13637         ''|0)   d_getnetbyname_r=undef
13638                 getnetbyname_r_proto=0
13639                 echo "Disabling getnetbyname_r, cannot determine prototype." >&4 ;;
13640         * )     case "$getnetbyname_r_proto" in
13641                 REENTRANT_PROTO*) ;;
13642                 *) getnetbyname_r_proto="REENTRANT_PROTO_$getnetbyname_r_proto" ;;
13643                 esac
13644                 echo "Prototype: $try" ;;
13645         esac
13646         ;;
13647         *)      case "$usethreads" in
13648                 define) echo "getnetbyname_r has no prototype, not using it." >&4 ;;
13649                 esac
13650                 d_getnetbyname_r=undef
13651                 getnetbyname_r_proto=0
13652                 ;;
13653         esac
13654         ;;
13655 *)      getnetbyname_r_proto=0
13656         ;;
13657 esac
13658
13659 : see if getnetent_r exists
13660 set getnetent_r d_getnetent_r
13661 eval $inlibc
13662 case "$d_getnetent_r" in
13663 "$define")
13664         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13665         case "$d_getnetent_r_proto:$usethreads" in
13666         ":define")      d_getnetent_r_proto=define
13667                 set d_getnetent_r_proto getnetent_r $hdrs
13668                 eval $hasproto ;;
13669         *)      ;;
13670         esac
13671         case "$d_getnetent_r_proto" in
13672         define)
13673         case "$getnetent_r_proto" in
13674         ''|0) try='int getnetent_r(struct netent*, char*, size_t, struct netent**, int*);'
13675         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBWRE ;;
13676         esac
13677         case "$getnetent_r_proto" in
13678         ''|0) try='int getnetent_r(struct netent*, char*, int, int*);'
13679         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBIE ;;
13680         esac
13681         case "$getnetent_r_proto" in
13682         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int, int*);'
13683         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBIE ;;
13684         esac
13685         case "$getnetent_r_proto" in
13686         ''|0) try='struct netent* getnetent_r(struct netent*, char*, int);'
13687         ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBI ;;
13688         esac
13689         case "$getnetent_r_proto" in
13690         ''|0) try='int getnetent_r(struct netent*, char*, int);'
13691         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBI ;;
13692         esac
13693         case "$getnetent_r_proto" in
13694         ''|0) try='int getnetent_r(struct netent*, struct netent_data*);'
13695         ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SD ;;
13696         esac
13697         case "$getnetent_r_proto" in
13698         ''|0)   d_getnetent_r=undef
13699                 getnetent_r_proto=0
13700                 echo "Disabling getnetent_r, cannot determine prototype." >&4 ;;
13701         * )     case "$getnetent_r_proto" in
13702                 REENTRANT_PROTO*) ;;
13703                 *) getnetent_r_proto="REENTRANT_PROTO_$getnetent_r_proto" ;;
13704                 esac
13705                 echo "Prototype: $try" ;;
13706         esac
13707         ;;
13708         *)      case "$usethreads" in
13709                 define) echo "getnetent_r has no prototype, not using it." >&4 ;;
13710                 esac
13711                 d_getnetent_r=undef
13712                 getnetent_r_proto=0
13713                 ;;
13714         esac
13715         ;;
13716 *)      getnetent_r_proto=0
13717         ;;
13718 esac
13719
13720 : see if prototypes for various getnetxxx netdb.h functions are available
13721 echo " "
13722 set d_getnetprotos getnetent $i_netdb netdb.h
13723 eval $hasproto
13724
13725 : see if getpagesize exists
13726 set getpagesize d_getpagsz
13727 eval $inlibc
13728
13729
13730 : see if getprotobyname exists
13731 set getprotobyname d_getpbyname
13732 eval $inlibc
13733
13734 : see if getprotobynumber exists
13735 set getprotobynumber d_getpbynumber
13736 eval $inlibc
13737
13738 : see if getprotoent exists
13739 set getprotoent d_getpent
13740 eval $inlibc
13741
13742 : see if getpgid exists
13743 set getpgid d_getpgid
13744 eval $inlibc
13745
13746 : see if getpgrp2 exists
13747 set getpgrp2 d_getpgrp2
13748 eval $inlibc
13749
13750 : see if getppid exists
13751 set getppid d_getppid
13752 eval $inlibc
13753
13754 : see if getpriority exists
13755 set getpriority d_getprior
13756 eval $inlibc
13757
13758 : see if getprotobyname_r exists
13759 set getprotobyname_r d_getprotobyname_r
13760 eval $inlibc
13761 case "$d_getprotobyname_r" in
13762 "$define")
13763         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13764         case "$d_getprotobyname_r_proto:$usethreads" in
13765         ":define")      d_getprotobyname_r_proto=define
13766                 set d_getprotobyname_r_proto getprotobyname_r $hdrs
13767                 eval $hasproto ;;
13768         *)      ;;
13769         esac
13770         case "$d_getprotobyname_r_proto" in
13771         define)
13772         case "$getprotobyname_r_proto" in
13773         ''|0) try='int getprotobyname_r(const char*, struct protoent*, char*, size_t, struct protoent**);'
13774         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSBWR ;;
13775         esac
13776         case "$getprotobyname_r_proto" in
13777         ''|0) try='struct protoent* getprotobyname_r(const char*, struct protoent*, char*, int);'
13778         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=S_CSBI ;;
13779         esac
13780         case "$getprotobyname_r_proto" in
13781         ''|0) try='int getprotobyname_r(const char*, struct protoent*, struct protoent_data*);'
13782         ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSD ;;
13783         esac
13784         case "$getprotobyname_r_proto" in
13785         ''|0)   d_getprotobyname_r=undef
13786                 getprotobyname_r_proto=0
13787                 echo "Disabling getprotobyname_r, cannot determine prototype." >&4 ;;
13788         * )     case "$getprotobyname_r_proto" in
13789                 REENTRANT_PROTO*) ;;
13790                 *) getprotobyname_r_proto="REENTRANT_PROTO_$getprotobyname_r_proto" ;;
13791                 esac
13792                 echo "Prototype: $try" ;;
13793         esac
13794         ;;
13795         *)      case "$usethreads" in
13796                 define) echo "getprotobyname_r has no prototype, not using it." >&4 ;;
13797                 esac
13798                 d_getprotobyname_r=undef
13799                 getprotobyname_r_proto=0
13800                 ;;
13801         esac
13802         ;;
13803 *)      getprotobyname_r_proto=0
13804         ;;
13805 esac
13806
13807 : see if getprotobynumber_r exists
13808 set getprotobynumber_r d_getprotobynumber_r
13809 eval $inlibc
13810 case "$d_getprotobynumber_r" in
13811 "$define")
13812         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13813         case "$d_getprotobynumber_r_proto:$usethreads" in
13814         ":define")      d_getprotobynumber_r_proto=define
13815                 set d_getprotobynumber_r_proto getprotobynumber_r $hdrs
13816                 eval $hasproto ;;
13817         *)      ;;
13818         esac
13819         case "$d_getprotobynumber_r_proto" in
13820         define)
13821         case "$getprotobynumber_r_proto" in
13822         ''|0) try='int getprotobynumber_r(int, struct protoent*, char*, size_t, struct protoent**);'
13823         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISBWR ;;
13824         esac
13825         case "$getprotobynumber_r_proto" in
13826         ''|0) try='struct protoent* getprotobynumber_r(int, struct protoent*, char*, int);'
13827         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=S_ISBI ;;
13828         esac
13829         case "$getprotobynumber_r_proto" in
13830         ''|0) try='int getprotobynumber_r(int, struct protoent*, struct protoent_data*);'
13831         ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISD ;;
13832         esac
13833         case "$getprotobynumber_r_proto" in
13834         ''|0)   d_getprotobynumber_r=undef
13835                 getprotobynumber_r_proto=0
13836                 echo "Disabling getprotobynumber_r, cannot determine prototype." >&4 ;;
13837         * )     case "$getprotobynumber_r_proto" in
13838                 REENTRANT_PROTO*) ;;
13839                 *) getprotobynumber_r_proto="REENTRANT_PROTO_$getprotobynumber_r_proto" ;;
13840                 esac
13841                 echo "Prototype: $try" ;;
13842         esac
13843         ;;
13844         *)      case "$usethreads" in
13845                 define) echo "getprotobynumber_r has no prototype, not using it." >&4 ;;
13846                 esac
13847                 d_getprotobynumber_r=undef
13848                 getprotobynumber_r_proto=0
13849                 ;;
13850         esac
13851         ;;
13852 *)      getprotobynumber_r_proto=0
13853         ;;
13854 esac
13855
13856 : see if getprotoent_r exists
13857 set getprotoent_r d_getprotoent_r
13858 eval $inlibc
13859 case "$d_getprotoent_r" in
13860 "$define")
13861         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13862         case "$d_getprotoent_r_proto:$usethreads" in
13863         ":define")      d_getprotoent_r_proto=define
13864                 set d_getprotoent_r_proto getprotoent_r $hdrs
13865                 eval $hasproto ;;
13866         *)      ;;
13867         esac
13868         case "$d_getprotoent_r_proto" in
13869         define)
13870         case "$getprotoent_r_proto" in
13871         ''|0) try='int getprotoent_r(struct protoent*, char*, size_t, struct protoent**);'
13872         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBWR ;;
13873         esac
13874         case "$getprotoent_r_proto" in
13875         ''|0) try='int getprotoent_r(struct protoent*, char*, int);'
13876         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBI ;;
13877         esac
13878         case "$getprotoent_r_proto" in
13879         ''|0) try='struct protoent* getprotoent_r(struct protoent*, char*, int);'
13880         ./protochk "extern $try" $hdrs && getprotoent_r_proto=S_SBI ;;
13881         esac
13882         case "$getprotoent_r_proto" in
13883         ''|0) try='int getprotoent_r(struct protoent*, struct protoent_data*);'
13884         ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SD ;;
13885         esac
13886         case "$getprotoent_r_proto" in
13887         ''|0)   d_getprotoent_r=undef
13888                 getprotoent_r_proto=0
13889                 echo "Disabling getprotoent_r, cannot determine prototype." >&4 ;;
13890         * )     case "$getprotoent_r_proto" in
13891                 REENTRANT_PROTO*) ;;
13892                 *) getprotoent_r_proto="REENTRANT_PROTO_$getprotoent_r_proto" ;;
13893                 esac
13894                 echo "Prototype: $try" ;;
13895         esac
13896         ;;
13897         *)      case "$usethreads" in
13898                 define) echo "getprotoent_r has no prototype, not using it." >&4 ;;
13899                 esac
13900                 d_getprotoent_r=undef
13901                 getprotoent_r_proto=0
13902                 ;;
13903         esac
13904         ;;
13905 *)      getprotoent_r_proto=0
13906         ;;
13907 esac
13908
13909 : see if prototypes for various getprotoxxx netdb.h functions are available
13910 echo " "
13911 set d_getprotoprotos getprotoent $i_netdb netdb.h
13912 eval $hasproto
13913
13914 : see if getprpwnam exists
13915 set getprpwnam d_getprpwnam
13916 eval $inlibc
13917
13918 : see if getpwent exists
13919 set getpwent d_getpwent
13920 eval $inlibc
13921
13922 : see if getpwent_r exists
13923 set getpwent_r d_getpwent_r
13924 eval $inlibc
13925 case "$d_getpwent_r" in
13926 "$define")
13927         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13928         case "$d_getpwent_r_proto:$usethreads" in
13929         ":define")      d_getpwent_r_proto=define
13930                 set d_getpwent_r_proto getpwent_r $hdrs
13931                 eval $hasproto ;;
13932         *)      ;;
13933         esac
13934         case "$d_getpwent_r_proto" in
13935         define)
13936         case "$getpwent_r_proto" in
13937         ''|0) try='int getpwent_r(struct passwd*, char*, size_t, struct passwd**);'
13938         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBWR ;;
13939         esac
13940         case "$getpwent_r_proto" in
13941         ''|0) try='int getpwent_r(struct passwd*, char*, int, struct passwd**);'
13942         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIR ;;
13943         esac
13944         case "$getpwent_r_proto" in
13945         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, size_t);'
13946         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBW ;;
13947         esac
13948         case "$getpwent_r_proto" in
13949         ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, int);'
13950         ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBI ;;
13951         esac
13952         case "$getpwent_r_proto" in
13953         ''|0) try='int getpwent_r(struct passwd*, char*, int);'
13954         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBI ;;
13955         esac
13956         case "$getpwent_r_proto" in
13957         ''|0) try='int getpwent_r(struct passwd*, char*, int, FILE**);'
13958         ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIH ;;
13959         esac
13960         case "$getpwent_r_proto" in
13961         ''|0)   d_getpwent_r=undef
13962                 getpwent_r_proto=0
13963                 echo "Disabling getpwent_r, cannot determine prototype." >&4 ;;
13964         * )     case "$getpwent_r_proto" in
13965                 REENTRANT_PROTO*) ;;
13966                 *) getpwent_r_proto="REENTRANT_PROTO_$getpwent_r_proto" ;;
13967                 esac
13968                 echo "Prototype: $try" ;;
13969         esac
13970         ;;
13971         *)      case "$usethreads" in
13972                 define) echo "getpwent_r has no prototype, not using it." >&4 ;;
13973                 esac
13974                 d_getpwent_r=undef
13975                 getpwent_r_proto=0
13976                 ;;
13977         esac
13978         ;;
13979 *)      getpwent_r_proto=0
13980         ;;
13981 esac
13982
13983 : see if getpwnam_r exists
13984 set getpwnam_r d_getpwnam_r
13985 eval $inlibc
13986 case "$d_getpwnam_r" in
13987 "$define")
13988         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13989         case "$d_getpwnam_r_proto:$usethreads" in
13990         ":define")      d_getpwnam_r_proto=define
13991                 set d_getpwnam_r_proto getpwnam_r $hdrs
13992                 eval $hasproto ;;
13993         *)      ;;
13994         esac
13995         case "$d_getpwnam_r_proto" in
13996         define)
13997         case "$getpwnam_r_proto" in
13998         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);'
13999         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBWR ;;
14000         esac
14001         case "$getpwnam_r_proto" in
14002         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int, struct passwd**);'
14003         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBIR ;;
14004         esac
14005         case "$getpwnam_r_proto" in
14006         ''|0) try='struct passwd* getpwnam_r(const char*, struct passwd*, char*, int);'
14007         ./protochk "extern $try" $hdrs && getpwnam_r_proto=S_CSBI ;;
14008         esac
14009         case "$getpwnam_r_proto" in
14010         ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int);'
14011         ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBI ;;
14012         esac
14013         case "$getpwnam_r_proto" in
14014         ''|0)   d_getpwnam_r=undef
14015                 getpwnam_r_proto=0
14016                 echo "Disabling getpwnam_r, cannot determine prototype." >&4 ;;
14017         * )     case "$getpwnam_r_proto" in
14018                 REENTRANT_PROTO*) ;;
14019                 *) getpwnam_r_proto="REENTRANT_PROTO_$getpwnam_r_proto" ;;
14020                 esac
14021                 echo "Prototype: $try" ;;
14022         esac
14023         ;;
14024         *)      case "$usethreads" in
14025                 define) echo "getpwnam_r has no prototype, not using it." >&4 ;;
14026                 esac
14027                 d_getpwnam_r=undef
14028                 getpwnam_r_proto=0
14029                 ;;
14030         esac
14031         ;;
14032 *)      getpwnam_r_proto=0
14033         ;;
14034 esac
14035
14036 : see if getpwuid_r exists
14037 set getpwuid_r d_getpwuid_r
14038 eval $inlibc
14039 case "$d_getpwuid_r" in
14040 "$define")
14041         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
14042         case "$d_getpwuid_r_proto:$usethreads" in
14043         ":define")      d_getpwuid_r_proto=define
14044                 set d_getpwuid_r_proto getpwuid_r $hdrs
14045                 eval $hasproto ;;
14046         *)      ;;
14047         esac
14048         case "$d_getpwuid_r_proto" in
14049         define)
14050         case "$getpwuid_r_proto" in
14051         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**);'
14052         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBWR ;;
14053         esac
14054         case "$getpwuid_r_proto" in
14055         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int, struct passwd**);'
14056         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBIR ;;
14057         esac
14058         case "$getpwuid_r_proto" in
14059         ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int);'
14060         ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBI ;;
14061         esac
14062         case "$getpwuid_r_proto" in
14063         ''|0) try='struct passwd* getpwuid_r(uid_t, struct passwd*, char*, int);'
14064         ./protochk "extern $try" $hdrs && getpwuid_r_proto=S_TSBI ;;
14065         esac
14066         case "$getpwuid_r_proto" in
14067         ''|0)   d_getpwuid_r=undef
14068                 getpwuid_r_proto=0
14069                 echo "Disabling getpwuid_r, cannot determine prototype." >&4 ;;
14070         * )     case "$getpwuid_r_proto" in
14071                 REENTRANT_PROTO*) ;;
14072                 *) getpwuid_r_proto="REENTRANT_PROTO_$getpwuid_r_proto" ;;
14073                 esac
14074                 echo "Prototype: $try" ;;
14075         esac
14076         ;;
14077         *)      case "$usethreads" in
14078                 define) echo "getpwuid_r has no prototype, not using it." >&4 ;;
14079                 esac
14080                 d_getpwuid_r=undef
14081                 getpwuid_r_proto=0
14082                 ;;
14083         esac
14084         ;;
14085 *)      getpwuid_r_proto=0
14086         ;;
14087 esac
14088
14089
14090 : see if getservbyname exists
14091 set getservbyname d_getsbyname
14092 eval $inlibc
14093
14094 : see if getservbyport exists
14095 set getservbyport d_getsbyport
14096 eval $inlibc
14097
14098 : see if getservent exists
14099 set getservent d_getsent
14100 eval $inlibc
14101
14102 : see if getservbyname_r exists
14103 set getservbyname_r d_getservbyname_r
14104 eval $inlibc
14105 case "$d_getservbyname_r" in
14106 "$define")
14107         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14108         case "$d_getservbyname_r_proto:$usethreads" in
14109         ":define")      d_getservbyname_r_proto=define
14110                 set d_getservbyname_r_proto getservbyname_r $hdrs
14111                 eval $hasproto ;;
14112         *)      ;;
14113         esac
14114         case "$d_getservbyname_r_proto" in
14115         define)
14116         case "$getservbyname_r_proto" in
14117         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, char*, size_t, struct servent**);'
14118         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSBWR ;;
14119         esac
14120         case "$getservbyname_r_proto" in
14121         ''|0) try='struct servent* getservbyname_r(const char*, const char*, struct servent*, char*, int);'
14122         ./protochk "extern $try" $hdrs && getservbyname_r_proto=S_CCSBI ;;
14123         esac
14124         case "$getservbyname_r_proto" in
14125         ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, struct servent_data*);'
14126         ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSD ;;
14127         esac
14128         case "$getservbyname_r_proto" in
14129         ''|0)   d_getservbyname_r=undef
14130                 getservbyname_r_proto=0
14131                 echo "Disabling getservbyname_r, cannot determine prototype." >&4 ;;
14132         * )     case "$getservbyname_r_proto" in
14133                 REENTRANT_PROTO*) ;;
14134                 *) getservbyname_r_proto="REENTRANT_PROTO_$getservbyname_r_proto" ;;
14135                 esac
14136                 echo "Prototype: $try" ;;
14137         esac
14138         ;;
14139         *)      case "$usethreads" in
14140                 define) echo "getservbyname_r has no prototype, not using it." >&4 ;;
14141                 esac
14142                 d_getservbyname_r=undef
14143                 getservbyname_r_proto=0
14144                 ;;
14145         esac
14146         ;;
14147 *)      getservbyname_r_proto=0
14148         ;;
14149 esac
14150
14151 : see if getservbyport_r exists
14152 set getservbyport_r d_getservbyport_r
14153 eval $inlibc
14154 case "$d_getservbyport_r" in
14155 "$define")
14156         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14157         case "$d_getservbyport_r_proto:$usethreads" in
14158         ":define")      d_getservbyport_r_proto=define
14159                 set d_getservbyport_r_proto getservbyport_r $hdrs
14160                 eval $hasproto ;;
14161         *)      ;;
14162         esac
14163         case "$d_getservbyport_r_proto" in
14164         define)
14165         case "$getservbyport_r_proto" in
14166         ''|0) try='int getservbyport_r(int, const char*, struct servent*, char*, size_t, struct servent**);'
14167         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSBWR ;;
14168         esac
14169         case "$getservbyport_r_proto" in
14170         ''|0) try='struct servent* getservbyport_r(int, const char*, struct servent*, char*, int);'
14171         ./protochk "extern $try" $hdrs && getservbyport_r_proto=S_ICSBI ;;
14172         esac
14173         case "$getservbyport_r_proto" in
14174         ''|0) try='int getservbyport_r(int, const char*, struct servent*, struct servent_data*);'
14175         ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSD ;;
14176         esac
14177         case "$getservbyport_r_proto" in
14178         ''|0)   d_getservbyport_r=undef
14179                 getservbyport_r_proto=0
14180                 echo "Disabling getservbyport_r, cannot determine prototype." >&4 ;;
14181         * )     case "$getservbyport_r_proto" in
14182                 REENTRANT_PROTO*) ;;
14183                 *) getservbyport_r_proto="REENTRANT_PROTO_$getservbyport_r_proto" ;;
14184                 esac
14185                 echo "Prototype: $try" ;;
14186         esac
14187         ;;
14188         *)      case "$usethreads" in
14189                 define) echo "getservbyport_r has no prototype, not using it." >&4 ;;
14190                 esac
14191                 d_getservbyport_r=undef
14192                 getservbyport_r_proto=0
14193                 ;;
14194         esac
14195         ;;
14196 *)      getservbyport_r_proto=0
14197         ;;
14198 esac
14199
14200 : see if getservent_r exists
14201 set getservent_r d_getservent_r
14202 eval $inlibc
14203 case "$d_getservent_r" in
14204 "$define")
14205         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
14206         case "$d_getservent_r_proto:$usethreads" in
14207         ":define")      d_getservent_r_proto=define
14208                 set d_getservent_r_proto getservent_r $hdrs
14209                 eval $hasproto ;;
14210         *)      ;;
14211         esac
14212         case "$d_getservent_r_proto" in
14213         define)
14214         case "$getservent_r_proto" in
14215         ''|0) try='int getservent_r(struct servent*, char*, size_t, struct servent**);'
14216         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBWR ;;
14217         esac
14218         case "$getservent_r_proto" in
14219         ''|0) try='int getservent_r(struct servent*, char*, int);'
14220         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBI ;;
14221         esac
14222         case "$getservent_r_proto" in
14223         ''|0) try='struct servent* getservent_r(struct servent*, char*, int);'
14224         ./protochk "extern $try" $hdrs && getservent_r_proto=S_SBI ;;
14225         esac
14226         case "$getservent_r_proto" in
14227         ''|0) try='int getservent_r(struct servent*, struct servent_data*);'
14228         ./protochk "extern $try" $hdrs && getservent_r_proto=I_SD ;;
14229         esac
14230         case "$getservent_r_proto" in
14231         ''|0)   d_getservent_r=undef
14232                 getservent_r_proto=0
14233                 echo "Disabling getservent_r, cannot determine prototype." >&4 ;;
14234         * )     case "$getservent_r_proto" in
14235                 REENTRANT_PROTO*) ;;
14236                 *) getservent_r_proto="REENTRANT_PROTO_$getservent_r_proto" ;;
14237                 esac
14238                 echo "Prototype: $try" ;;
14239         esac
14240         ;;
14241         *)      case "$usethreads" in
14242                 define) echo "getservent_r has no prototype, not using it." >&4 ;;
14243                 esac
14244                 d_getservent_r=undef
14245                 getservent_r_proto=0
14246                 ;;
14247         esac
14248         ;;
14249 *)      getservent_r_proto=0
14250         ;;
14251 esac
14252
14253 : see if prototypes for various getservxxx netdb.h functions are available
14254 echo " "
14255 set d_getservprotos getservent $i_netdb netdb.h
14256 eval $hasproto
14257
14258 : see if getspnam exists
14259 set getspnam d_getspnam
14260 eval $inlibc
14261
14262 : see if this is a shadow.h system
14263 set shadow.h i_shadow
14264 eval $inhdr
14265
14266 : see if getspnam_r exists
14267 set getspnam_r d_getspnam_r
14268 eval $inlibc
14269 case "$d_getspnam_r" in
14270 "$define")
14271         hdrs="$i_systypes sys/types.h define stdio.h $i_shadow shadow.h"
14272         case "$d_getspnam_r_proto:$usethreads" in
14273         ":define")      d_getspnam_r_proto=define
14274                 set d_getspnam_r_proto getspnam_r $hdrs
14275                 eval $hasproto ;;
14276         *)      ;;
14277         esac
14278         case "$d_getspnam_r_proto" in
14279         define)
14280         case "$getspnam_r_proto" in
14281         ''|0) try='int getspnam_r(const char*, struct spwd*, char*, size_t, struct spwd**);'
14282         ./protochk "extern $try" $hdrs && getspnam_r_proto=I_CSBWR ;;
14283         esac
14284         case "$getspnam_r_proto" in
14285         ''|0) try='struct spwd* getspnam_r(const char*, struct spwd*, char*, int);'
14286         ./protochk "extern $try" $hdrs && getspnam_r_proto=S_CSBI ;;
14287         esac
14288         case "$getspnam_r_proto" in
14289         ''|0)   d_getspnam_r=undef
14290                 getspnam_r_proto=0
14291                 echo "Disabling getspnam_r, cannot determine prototype." >&4 ;;
14292         * )     case "$getspnam_r_proto" in
14293                 REENTRANT_PROTO*) ;;
14294                 *) getspnam_r_proto="REENTRANT_PROTO_$getspnam_r_proto" ;;
14295                 esac
14296                 echo "Prototype: $try" ;;
14297         esac
14298         ;;
14299         *)      case "$usethreads" in
14300                 define) echo "getspnam_r has no prototype, not using it." >&4 ;;
14301                 esac
14302                 d_getspnam_r=undef
14303                 getspnam_r_proto=0
14304                 ;;
14305         esac
14306         ;;
14307 *)      getspnam_r_proto=0
14308         ;;
14309 esac
14310
14311 : see if gettimeofday or ftime exists
14312 set gettimeofday d_gettimeod
14313 eval $inlibc
14314 case "$d_gettimeod" in
14315 "$undef")
14316         set ftime d_ftime 
14317         eval $inlibc
14318         ;;
14319 *)
14320         val="$undef"; set d_ftime; eval $setvar
14321         ;;
14322 esac
14323 case "$d_gettimeod$d_ftime" in
14324 "$undef$undef")
14325         echo " "
14326         echo 'No ftime() nor gettimeofday() -- timing may be less accurate.' >&4
14327         ;;
14328 esac
14329
14330 : see if gmtime_r exists
14331 set gmtime_r d_gmtime_r
14332 eval $inlibc
14333 case "$d_gmtime_r" in
14334 "$define")
14335         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
14336         case "$d_gmtime_r_proto:$usethreads" in
14337         ":define")      d_gmtime_r_proto=define
14338                 set d_gmtime_r_proto gmtime_r $hdrs
14339                 eval $hasproto ;;
14340         *)      ;;
14341         esac
14342         case "$d_gmtime_r_proto" in
14343         define)
14344         case "$gmtime_r_proto" in
14345         ''|0) try='struct tm* gmtime_r(const time_t*, struct tm*);'
14346         ./protochk "extern $try" $hdrs && gmtime_r_proto=S_TS ;;
14347         esac
14348         case "$gmtime_r_proto" in
14349         ''|0) try='int gmtime_r(const time_t*, struct tm*);'
14350         ./protochk "extern $try" $hdrs && gmtime_r_proto=I_TS ;;
14351         esac
14352         case "$gmtime_r_proto" in
14353         ''|0)   d_gmtime_r=undef
14354                 gmtime_r_proto=0
14355                 echo "Disabling gmtime_r, cannot determine prototype." >&4 ;;
14356         * )     case "$gmtime_r_proto" in
14357                 REENTRANT_PROTO*) ;;
14358                 *) gmtime_r_proto="REENTRANT_PROTO_$gmtime_r_proto" ;;
14359                 esac
14360                 echo "Prototype: $try" ;;
14361         esac
14362         ;;
14363         *)      case "$usethreads" in
14364                 define) echo "gmtime_r has no prototype, not using it." >&4 ;;
14365                 esac
14366                 d_gmtime_r=undef
14367                 gmtime_r_proto=0
14368                 ;;
14369         esac
14370         ;;
14371 *)      gmtime_r_proto=0
14372         ;;
14373 esac
14374
14375 : see if hasmntopt exists
14376 set hasmntopt d_hasmntopt
14377 eval $inlibc
14378
14379 : see if this is a netinet/in.h or sys/in.h system
14380 set netinet/in.h i_niin sys/in.h i_sysin
14381 eval $inhdr
14382
14383 : see if arpa/inet.h has to be included
14384 set arpa/inet.h i_arpainet
14385 eval $inhdr
14386
14387 : see if htonl --and friends-- exists
14388 val=''
14389 set htonl val
14390 eval $inlibc
14391
14392 : Maybe they are macros.
14393 case "$val" in
14394 $undef)
14395         $cat >htonl.c <<EOM
14396 #include <stdio.h>
14397 #include <sys/types.h>
14398 #$i_niin I_NETINET_IN
14399 #$i_sysin I_SYS_IN
14400 #$i_arpainet I_ARPA_INET
14401 #ifdef I_NETINET_IN
14402 #include <netinet/in.h>
14403 #endif
14404 #ifdef I_SYS_IN
14405 #include <sys/in.h>
14406 #endif
14407 #ifdef I_ARPA_INET
14408 #include <arpa/inet.h>
14409 #endif
14410 #ifdef htonl
14411 printf("Defined as a macro.");
14412 #endif
14413 EOM
14414         $cppstdin $cppflags $cppminus < htonl.c >htonl.E 2>/dev/null
14415         if $contains 'Defined as a macro' htonl.E >/dev/null 2>&1; then
14416                 val="$define"
14417                 echo "But it seems to be defined as a macro." >&4
14418         fi
14419         $rm -f htonl.?
14420         ;;
14421 esac
14422 set d_htonl
14423 eval $setvar
14424
14425 : see if ilogbl exists
14426 set ilogbl d_ilogbl
14427 eval $inlibc
14428
14429 : index or strchr
14430 echo " "
14431 if set index val -f; eval $csym; $val; then
14432         if set strchr val -f d_strchr; eval $csym; $val; then
14433                 if $contains strchr "$strings" >/dev/null 2>&1 ; then
14434                         val="$define"
14435                         vali="$undef"
14436                         echo "strchr() found." >&4
14437                 else
14438                         val="$undef"
14439                         vali="$define"
14440                         echo "index() found." >&4
14441                 fi
14442         else
14443                 val="$undef"
14444                 vali="$define"
14445                 echo "index() found." >&4
14446         fi
14447 else
14448         if set strchr val -f d_strchr; eval $csym; $val; then
14449                 val="$define"
14450                 vali="$undef"
14451                 echo "strchr() found." >&4
14452         else
14453                 echo "No index() or strchr() found!" >&4
14454                 val="$undef"
14455                 vali="$undef"
14456         fi
14457 fi
14458 set d_strchr; eval $setvar
14459 val="$vali"
14460 set d_index; eval $setvar
14461
14462 : check whether inet_aton exists
14463 set inet_aton d_inetaton
14464 eval $inlibc
14465
14466 : Look for isascii
14467 echo " "
14468 $cat >isascii.c <<EOCP
14469 #include <stdio.h>
14470 #include <ctype.h>
14471 #$i_stdlib I_STDLIB
14472 #ifdef I_STDLIB
14473 #include <stdlib.h>
14474 #endif
14475 int main() {
14476         int c = 'A';
14477         if (isascii(c))
14478                 exit(0);
14479         else
14480                 exit(1);
14481 }
14482 EOCP
14483 set isascii
14484 if eval $compile; then
14485         echo "isascii() found." >&4
14486         val="$define"
14487 else
14488         echo "isascii() NOT found." >&4
14489         val="$undef"
14490 fi
14491 set d_isascii
14492 eval $setvar
14493 $rm -f isascii*
14494
14495 : see if isfinite exists
14496 set isfinite d_isfinite
14497 eval $inlibc
14498
14499 : see if isinf exists
14500 set isinf d_isinf
14501 eval $inlibc
14502
14503 : see if isnan exists
14504 set isnan d_isnan
14505 eval $inlibc
14506
14507 : see if isnanl exists
14508 set isnanl d_isnanl
14509 eval $inlibc
14510
14511 : see if killpg exists
14512 set killpg d_killpg
14513 eval $inlibc
14514
14515 : see if lchown exists
14516 echo " "
14517 $cat > try.c <<'EOCP'
14518 /* System header to define __stub macros and hopefully few prototypes,
14519     which can conflict with char lchown(); below.  */
14520 #include <assert.h>
14521 /* Override any gcc2 internal prototype to avoid an error.  */
14522 /* We use char because int might match the return type of a gcc2
14523    builtin and then its argument prototype would still apply.  */
14524 char lchown();
14525 int main() {
14526     /*  The GNU C library defines this for functions which it implements
14527         to always fail with ENOSYS.  Some functions are actually named
14528         something starting with __ and the normal name is an alias.  */
14529 #if defined (__stub_lchown) || defined (__stub___lchown)
14530 choke me
14531 #else
14532 lchown();
14533 #endif
14534 ; return 0; }
14535 EOCP
14536 set try
14537 if eval $compile; then
14538     $echo "lchown() found." >&4
14539     val="$define"
14540 else
14541     $echo "lchown() NOT found." >&4
14542     val="$undef"
14543 fi
14544 set d_lchown
14545 eval $setvar
14546
14547 : See if number of significant digits in a double precision number is known
14548 echo " "
14549 $cat >ldbl_dig.c <<EOM
14550 #$i_limits I_LIMITS
14551 #$i_float I_FLOAT
14552 #ifdef I_LIMITS
14553 #include <limits.h>
14554 #endif
14555 #ifdef I_FLOAT
14556 #include <float.h>
14557 #endif
14558 #ifdef LDBL_DIG
14559 printf("Contains LDBL_DIG");
14560 #endif
14561 EOM
14562 $cppstdin $cppflags $cppminus < ldbl_dig.c >ldbl_dig.E 2>/dev/null
14563 if $contains 'LDBL_DIG' ldbl_dig.E >/dev/null 2>&1; then
14564         echo "LDBL_DIG found." >&4
14565         val="$define"
14566 else
14567         echo "LDBL_DIG NOT found." >&4
14568         val="$undef"
14569 fi
14570 $rm -f ldbl_dig.?
14571 set d_ldbl_dig
14572 eval $setvar
14573
14574 : see if this is a math.h system
14575 set math.h i_math
14576 eval $inhdr
14577
14578 d_libm_lib_version="$undef"
14579 case $i_math in
14580     $define)
14581         : check to see if math.h defines _LIB_VERSION
14582         echo " "
14583         echo "Checking to see if your libm supports _LIB_VERSION..." >&4
14584         $cat >try.c <<EOCP
14585 #include <unistd.h>
14586 #include <math.h>
14587 int main (int argc, char *argv[])
14588 {
14589     printf ("%d\n", _LIB_VERSION);
14590     return (0);
14591     } /* main */
14592 EOCP
14593         set try
14594         if eval $compile; then
14595             foo=`$run ./try`
14596             echo "Yes, it does ($foo)" >&4
14597             d_libm_lib_version="$define"
14598         else
14599             echo "No, it does not (probably harmless)\n" >&4
14600             fi
14601         $rm -f try.* try core core.try.*
14602         ;;
14603
14604     esac
14605
14606 : see if link exists
14607 set link d_link
14608 eval $inlibc
14609
14610 : see if localtime_r exists
14611 set localtime_r d_localtime_r
14612 eval $inlibc
14613 case "$d_localtime_r" in
14614 "$define")
14615         hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
14616         case "$d_localtime_r_proto:$usethreads" in
14617         ":define")      d_localtime_r_proto=define
14618                 set d_localtime_r_proto localtime_r $hdrs
14619                 eval $hasproto ;;
14620         *)      ;;
14621         esac
14622         case "$d_localtime_r_proto" in
14623         define)
14624         case "$localtime_r_proto" in
14625         ''|0) try='struct tm* localtime_r(const time_t*, struct tm*);'
14626         ./protochk "extern $try" $hdrs && localtime_r_proto=S_TS ;;
14627         esac
14628         case "$localtime_r_proto" in
14629         ''|0) try='int localtime_r(const time_t*, struct tm*);'
14630         ./protochk "extern $try" $hdrs && localtime_r_proto=I_TS ;;
14631         esac
14632         case "$localtime_r_proto" in
14633         ''|0)   d_localtime_r=undef
14634                 localtime_r_proto=0
14635                 echo "Disabling localtime_r, cannot determine prototype." >&4 ;;
14636         * )     case "$localtime_r_proto" in
14637                 REENTRANT_PROTO*) ;;
14638                 *) localtime_r_proto="REENTRANT_PROTO_$localtime_r_proto" ;;
14639                 esac
14640                 echo "Prototype: $try" ;;
14641         esac
14642         ;;
14643         *)      case "$usethreads" in
14644                 define) echo "localtime_r has no prototype, not using it." >&4 ;;
14645                 esac
14646                 d_localtime_r=undef
14647                 localtime_r_proto=0
14648                 ;;
14649         esac
14650         ;;
14651 *)      localtime_r_proto=0
14652         ;;
14653 esac
14654
14655 : see if localtime_r calls tzset
14656 case "$localtime_r_proto" in
14657 REENTRANT_PROTO*)
14658         $cat >try.c <<EOCP
14659 /*  Does our libc's localtime_r call tzset ?
14660  *  return 0 if so, 1 otherwise.
14661  */
14662 #include <sys/types.h>
14663 #include <unistd.h>
14664 #include <time.h>
14665 #include <string.h>
14666 #include <malloc.h>
14667 int main()
14668 {
14669     time_t t = time(0L);
14670     char w_tz[]="TZ" "=GMT+5",
14671          e_tz[]="TZ" "=GMT-5",
14672         *tz_e = (char*)malloc(16),
14673         *tz_w = (char*)malloc(16);
14674     struct tm tm_e, tm_w;
14675     memset(&tm_e,'\0',sizeof(struct tm));
14676     memset(&tm_w,'\0',sizeof(struct tm));
14677     strcpy(tz_e,e_tz);
14678     strcpy(tz_w,w_tz);
14679
14680     putenv(tz_e);
14681     localtime_r(&t, &tm_e);
14682
14683     putenv(tz_w);
14684     localtime_r(&t, &tm_w);
14685
14686     if( memcmp(&tm_e, &tm_w, sizeof(struct tm)) == 0 )
14687         return 1;
14688     return 0;
14689 }
14690 EOCP
14691         set try
14692         if eval $compile; then
14693             if ./try; then
14694                 d_localtime_r_needs_tzset=undef;
14695             else
14696                 d_localtime_r_needs_tzset=define;
14697             fi;
14698         else
14699             d_localtime_r_needs_tzset=undef;
14700         fi;
14701      ;;
14702   *)
14703      d_localtime_r_needs_tzset=undef;
14704      ;;
14705 esac
14706 $rm -f try try.* core
14707
14708 : see if localeconv exists
14709 set localeconv d_locconv
14710 eval $inlibc
14711
14712 : see if lockf exists
14713 set lockf d_lockf
14714 eval $inlibc
14715
14716 : see if prototype for lseek is available
14717 echo " "
14718 set d_lseekproto lseek $i_systypes sys/types.h $i_unistd unistd.h
14719 eval $hasproto
14720
14721 : see if lstat exists
14722 set lstat d_lstat
14723 eval $inlibc
14724
14725 : see if madvise exists
14726 set madvise d_madvise
14727 eval $inlibc
14728
14729 : see if malloc_size exists
14730 set malloc_size d_malloc_size
14731 eval $inlibc
14732
14733 : see if malloc_size_good exists
14734 set malloc_good_size d_malloc_good_size
14735 eval $inlibc
14736
14737 : see if mblen exists
14738 set mblen d_mblen
14739 eval $inlibc
14740
14741 : see if mbstowcs exists
14742 set mbstowcs d_mbstowcs
14743 eval $inlibc
14744
14745 : see if mbtowc exists
14746 set mbtowc d_mbtowc
14747 eval $inlibc
14748
14749 : see if memchr exists
14750 set memchr d_memchr
14751 eval $inlibc
14752
14753 : see if memcmp exists
14754 set memcmp d_memcmp
14755 eval $inlibc
14756
14757 : see if memcpy exists
14758 set memcpy d_memcpy
14759 eval $inlibc
14760
14761 : see if memmove exists
14762 set memmove d_memmove
14763 eval $inlibc
14764
14765 : see if memset exists
14766 set memset d_memset
14767 eval $inlibc
14768
14769 : see if mkdir exists
14770 set mkdir d_mkdir
14771 eval $inlibc
14772
14773 : see if mkdtemp exists
14774 set mkdtemp d_mkdtemp
14775 eval $inlibc
14776
14777 : see if mkfifo exists
14778 set mkfifo d_mkfifo
14779 eval $inlibc
14780
14781 : see if mkstemp exists
14782 set mkstemp d_mkstemp
14783 eval $inlibc
14784
14785 : see if mkstemps exists
14786 set mkstemps d_mkstemps
14787 eval $inlibc
14788
14789 : see if mktime exists
14790 set mktime d_mktime
14791 eval $inlibc
14792
14793 : see if this is a sys/mman.h system
14794 set sys/mman.h i_sysmman
14795 eval $inhdr
14796
14797 : see if mmap exists
14798 set mmap d_mmap
14799 eval $inlibc
14800 : see what shmat returns
14801 : default to something harmless
14802 mmaptype='void *'
14803 case "$i_sysmman$d_mmap" in
14804 "$define$define")
14805         $cat >mmap.c <<'END'
14806 #include <sys/mman.h>
14807 void *mmap();
14808 END
14809         if $cc $ccflags -c mmap.c >/dev/null 2>&1; then
14810                 mmaptype='void *'
14811         else
14812                 mmaptype='caddr_t'
14813         fi
14814         echo "and it returns ($mmaptype)." >&4
14815         ;;
14816 esac
14817
14818
14819
14820 : see if sqrtl exists
14821 set sqrtl d_sqrtl
14822 eval $inlibc
14823
14824 : see if scalbnl exists
14825 set scalbnl d_scalbnl
14826 eval $inlibc
14827
14828 : see if modfl exists
14829 set modfl d_modfl
14830 eval $inlibc
14831
14832 : see if prototype for modfl is available
14833 echo " "
14834 set d_modflproto modfl $i_math math.h
14835 eval $hasproto
14836
14837 d_modfl_pow32_bug="$undef"
14838
14839 case "$d_longdbl$d_modfl" in
14840 $define$define)
14841         $cat <<EOM
14842 Checking to see whether your modfl() is okay for large values...
14843 EOM
14844 $cat >try.c <<EOCP
14845 #include <math.h> 
14846 #include <stdio.h>
14847 EOCP
14848 if $test "X$d_modflproto" != "X$define"; then
14849         $cat >>try.c <<EOCP
14850 /* Sigh. many current glibcs provide the function, but do not prototype it.  */ 
14851 long double modfl (long double, long double *);
14852 EOCP
14853 fi
14854 $cat >>try.c <<EOCP
14855 int main() {
14856     long double nv = 4294967303.15;
14857     long double v, w;
14858     v = modfl(nv, &w);         
14859 #ifdef __GLIBC__
14860     printf("glibc");
14861 #endif
14862     printf(" %"$sPRIfldbl" %"$sPRIfldbl" %"$sPRIfldbl"\n", nv, v, w);
14863     return 0;
14864 }
14865 EOCP
14866         case "$osname:$gccversion" in
14867         aix:)   saveccflags="$ccflags"
14868                 ccflags="$ccflags -qlongdouble" ;; # to avoid core dump
14869         esac
14870         set try
14871         if eval $compile; then
14872                 foo=`$run ./try`
14873                 case "$foo" in
14874                 *" 4294967303.150000 1.150000 4294967302.000000")
14875                         echo >&4 "Your modfl() is broken for large values."
14876                         d_modfl_pow32_bug="$define"
14877                         case "$foo" in
14878                         glibc)  echo >&4 "You should upgrade your glibc to at least 2.2.2 to get a fixed modfl()."
14879                         ;;
14880                         esac
14881                         ;;
14882                 *" 4294967303.150000 0.150000 4294967303.000000")
14883                         echo >&4 "Your modfl() seems okay for large values."
14884                         ;;
14885                 *)      echo >&4 "I don't understand your modfl() at all."
14886                         d_modfl="$undef"
14887                         ;;
14888                 esac
14889                 $rm -f try.* try core core.try.*
14890         else
14891                 echo "I cannot figure out whether your modfl() is okay, assuming it isn't."
14892                 d_modfl="$undef"
14893         fi
14894         case "$osname:$gccversion" in
14895         aix:)   ccflags="$saveccflags" ;; # restore
14896         esac
14897         ;;
14898 esac
14899
14900 if $test "$uselongdouble" = "$define"; then
14901     message=""
14902     if $test "$d_sqrtl" != "$define"; then
14903         message="$message sqrtl"
14904     fi
14905     if $test "$d_modfl" != "$define"; then
14906         if $test "$d_aintl:$d_copysignl" = "$define:$define"; then
14907             echo "You have both aintl and copysignl, so I can emulate modfl."
14908         else
14909             message="$message modfl"
14910         fi
14911     fi
14912     if $test "$d_frexpl" != "$define"; then
14913         if $test "$d_ilogbl:$d_scalbnl" = "$define:$define"; then
14914             echo "You have both ilogbl and scalbnl, so I can emulate frexpl."
14915         else
14916             message="$message frexpl"
14917         fi
14918     fi
14919
14920     if $test "$message" != ""; then
14921         $cat <<EOM >&4
14922
14923 *** You requested the use of long doubles but you do not seem to have
14924 *** the following mathematical functions needed for long double support:
14925 ***    $message
14926 *** Please rerun Configure without -Duselongdouble and/or -Dusemorebits.
14927 *** Cannot continue, aborting.
14928
14929 EOM
14930
14931         exit 1
14932     fi
14933 fi
14934
14935 : see if mprotect exists
14936 set mprotect d_mprotect
14937 eval $inlibc
14938
14939 : see if msgctl exists
14940 set msgctl d_msgctl
14941 eval $inlibc
14942
14943 : see if msgget exists
14944 set msgget d_msgget
14945 eval $inlibc
14946
14947 : see if msgsnd exists
14948 set msgsnd d_msgsnd
14949 eval $inlibc
14950
14951 : see if msgrcv exists
14952 set msgrcv d_msgrcv
14953 eval $inlibc
14954
14955 : see how much of the 'msg*(2)' library is present.
14956 h_msg=true
14957 echo " "
14958 case "$d_msgctl$d_msgget$d_msgsnd$d_msgrcv" in
14959 *"$undef"*) h_msg=false;;
14960 esac
14961 case "$osname" in
14962 freebsd)
14963     case "`ipcs 2>&1`" in
14964     "SVID messages"*"not configured"*)
14965         echo "Your $osname does not have the msg*(2) configured." >&4
14966         h_msg=false
14967         val="$undef"
14968         set msgctl d_msgctl
14969         eval $setvar
14970         set msgget d_msgget
14971         eval $setvar
14972         set msgsnd d_msgsnd
14973         eval $setvar
14974         set msgrcv d_msgrcv
14975         eval $setvar
14976         ;;
14977     esac
14978     ;;
14979 esac
14980 : we could also check for sys/ipc.h ...
14981 if $h_msg && $test `./findhdr sys/msg.h`; then
14982         echo "You have the full msg*(2) library." >&4
14983         val="$define"
14984 else
14985         echo "You don't have the full msg*(2) library." >&4
14986         val="$undef"
14987 fi
14988 set d_msg
14989 eval $setvar
14990
14991
14992 echo " "
14993 echo "Checking to see if your system supports struct msghdr..." >&4
14994 set d_msghdr_s msghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
14995 eval $hasstruct
14996 case "$d_msghdr_s" in
14997 "$define")      echo "Yes, it does."   ;;
14998 *)              echo "No, it doesn't." ;;
14999 esac
15000
15001
15002 : see if msync exists
15003 set msync d_msync
15004 eval $inlibc
15005
15006 : see if munmap exists
15007 set munmap d_munmap
15008 eval $inlibc
15009
15010 : see if nice exists
15011 set nice d_nice
15012 eval $inlibc
15013
15014 : see if this is a langinfo.h system
15015 set langinfo.h i_langinfo
15016 eval $inhdr
15017
15018 : see if nl_langinfo exists
15019 set nl_langinfo d_nl_langinfo
15020 eval $inlibc
15021
15022 : check for length of character
15023 echo " "
15024 case "$charsize" in
15025 '')
15026         echo "Checking to see how big your characters are (hey, you never know)..." >&4
15027         $cat >try.c <<EOCP
15028 #include <stdio.h>
15029 #$i_stdlib I_STDLIB
15030 #ifdef I_STDLIB
15031 #include <stdlib.h>
15032 #endif
15033 int main()
15034 {
15035     printf("%d\n", (int)sizeof(char));
15036     exit(0);
15037 }
15038 EOCP
15039         set try
15040         if eval $compile_ok; then
15041                 dflt=`$run ./try`
15042         else
15043                 dflt='1'
15044                 echo "(I can't seem to compile the test program.  Guessing...)"
15045         fi
15046         ;;
15047 *)
15048         dflt="$charsize"
15049         ;;
15050 esac
15051 rp="What is the size of a character (in bytes)?"
15052 . ./myread
15053 charsize="$ans"
15054 $rm -f try.c try
15055
15056 : check for volatile keyword
15057 echo " "
15058 echo 'Checking to see if your C compiler knows about "volatile"...' >&4
15059 $cat >try.c <<'EOCP'
15060 int main()
15061 {
15062         typedef struct _goo_struct goo_struct;
15063         goo_struct * volatile goo = ((goo_struct *)0);
15064         struct _goo_struct {
15065                 long long_int;
15066                 int reg_int;
15067                 char char_var;
15068         };
15069         typedef unsigned short foo_t;
15070         char *volatile foo;
15071         volatile int bar;
15072         volatile foo_t blech;
15073         foo = foo;
15074 }
15075 EOCP
15076 if $cc -c $ccflags try.c >/dev/null 2>&1 ; then
15077         val="$define"
15078         echo "Yup, it does."
15079 else
15080         val="$undef"
15081         echo "Nope, it doesn't."
15082 fi
15083 set d_volatile
15084 eval $setvar
15085 $rm -f try.*
15086
15087
15088 echo " "
15089 $echo "Choosing the C types to be used for Perl's internal types..." >&4
15090
15091 case "$use64bitint:$d_quad:$quadtype" in
15092 define:define:?*)
15093         ivtype="$quadtype"
15094         uvtype="$uquadtype"
15095         ivsize=8
15096         uvsize=8
15097         ;;
15098 *)      ivtype="long"
15099         uvtype="unsigned long"
15100         ivsize=$longsize
15101         uvsize=$longsize
15102         ;;
15103 esac
15104
15105 case "$uselongdouble:$d_longdbl" in
15106 define:define)
15107         nvtype="long double"
15108         nvsize=$longdblsize
15109         ;;
15110 *)      nvtype=double
15111         nvsize=$doublesize
15112         ;;
15113 esac
15114
15115 $echo "(IV will be "$ivtype", $ivsize bytes)"
15116 $echo "(UV will be "$uvtype", $uvsize bytes)"
15117 $echo "(NV will be "$nvtype", $nvsize bytes)"
15118
15119 $cat >try.c <<EOCP
15120 #$i_inttypes I_INTTYPES
15121 #ifdef I_INTTYPES
15122 #include <inttypes.h>
15123 #endif
15124 #include <stdio.h>
15125 int main() {
15126 #ifdef INT8
15127    int8_t i =  INT8_MAX;
15128   uint8_t u = UINT8_MAX;
15129   printf("int8_t\n");
15130 #endif
15131 #ifdef INT16
15132    int16_t i =  INT16_MAX;
15133   uint16_t i = UINT16_MAX;
15134   printf("int16_t\n");
15135 #endif
15136 #ifdef INT32
15137    int32_t i =  INT32_MAX;
15138   uint32_t u = UINT32_MAX;
15139   printf("int32_t\n");
15140 #endif
15141 }
15142 EOCP
15143
15144 case "$i8type" in
15145 '')     case "$charsize" in
15146         1)      i8type=char
15147                 u8type="unsigned char"
15148                 i8size=$charsize
15149                 u8size=$charsize
15150                 ;;
15151         esac
15152         ;;
15153 esac
15154 case "$i8type" in
15155 '')     set try -DINT8
15156         if eval $compile; then
15157                 case "`$run ./try`" in
15158                 int8_t) i8type=int8_t
15159                         u8type=uint8_t
15160                         i8size=1
15161                         u8size=1
15162                         ;;
15163                 esac
15164         fi
15165         ;;
15166 esac
15167 case "$i8type" in
15168 '')     if $test $charsize -ge 1; then
15169                 i8type=char
15170                 u8type="unsigned char"
15171                 i8size=$charsize
15172                 u8size=$charsize
15173         fi
15174         ;;
15175 esac
15176
15177 case "$i16type" in
15178 '')     case "$shortsize" in
15179         2)      i16type=short
15180                 u16type="unsigned short"
15181                 i16size=$shortsize
15182                 u16size=$shortsize
15183                 ;;
15184         esac
15185         ;;
15186 esac
15187 case "$i16type" in
15188 '')     set try -DINT16
15189         if eval $compile; then
15190                 case "`$run ./try`" in
15191                 int16_t)
15192                         i16type=int16_t
15193                         u16type=uint16_t
15194                         i16size=2
15195                         u16size=2
15196                         ;;
15197                 esac
15198         fi
15199         ;;
15200 esac
15201 case "$i16type" in
15202 '')     if $test $shortsize -ge 2; then
15203                 i16type=short
15204                 u16type="unsigned short"
15205                 i16size=$shortsize
15206                 u16size=$shortsize
15207         fi
15208         ;;
15209 esac
15210
15211 case "$i32type" in
15212 '')     case "$longsize" in
15213         4)      i32type=long
15214                 u32type="unsigned long"
15215                 i32size=$longsize
15216                 u32size=$longsize
15217                 ;;
15218         *)      case "$intsize" in
15219                 4)      i32type=int
15220                         u32type="unsigned int"
15221                         i32size=$intsize
15222                         u32size=$intsize
15223                         ;;
15224                 esac
15225                 ;;
15226         esac
15227         ;;
15228 esac
15229 case "$i32type" in
15230 '')     set try -DINT32
15231         if eval $compile; then
15232                 case "`$run ./try`" in
15233                 int32_t)
15234                         i32type=int32_t
15235                         u32type=uint32_t
15236                         i32size=4
15237                         u32size=4
15238                         ;;
15239                 esac
15240         fi
15241         ;;
15242 esac
15243 case "$i32type" in
15244 '')     if $test $intsize -ge 4; then
15245                 i32type=int
15246                 u32type="unsigned int"
15247                 i32size=$intsize
15248                 u32size=$intsize
15249         fi
15250         ;;
15251 esac
15252
15253 case "$i64type" in
15254 '')     case "$d_quad:$quadtype" in
15255         define:?*)
15256                 i64type="$quadtype"
15257                 u64type="$uquadtype"
15258                 i64size=8
15259                 u64size=8
15260                 ;;
15261         esac
15262         ;;
15263 esac
15264
15265 $echo "Checking how many bits of your UVs your NVs can preserve..." >&4
15266 : volatile so that the compiler has to store it out to memory.
15267 if test X"$d_volatile" = X"$define"; then
15268         volatile=volatile
15269 fi
15270 $cat <<EOP >try.c
15271 #include <stdio.h>
15272 #$i_stdlib I_STDLIB
15273 #ifdef I_STDLIB
15274 #include <stdlib.h>
15275 #endif
15276 #include <sys/types.h>
15277 #include <signal.h>
15278 #ifdef SIGFPE
15279 $volatile int bletched = 0;
15280 $signal_t blech(int s) { bletched = 1; }
15281 #endif
15282 int main() {
15283     $uvtype u = 0;
15284     $nvtype d;
15285     int     n = 8 * $uvsize;
15286     int     i;
15287 #ifdef SIGFPE
15288     signal(SIGFPE, blech);
15289 #endif
15290
15291     for (i = 0; i < n; i++) {
15292       u = u << 1 | ($uvtype)1;
15293       d = ($nvtype)u;
15294       if (($uvtype)d != u)
15295         break;
15296       if (d <= 0)
15297         break;
15298       d = ($nvtype)(u - 1);
15299       if (($uvtype)d != (u - 1))
15300         break;
15301 #ifdef SIGFPE
15302       if (bletched) {
15303         break;
15304 #endif
15305       } 
15306     }
15307     printf("%d\n", ((i == n) ? -n : i));
15308     exit(0);
15309 }
15310 EOP
15311 set try
15312
15313 d_nv_preserves_uv="$undef"
15314 if eval $compile; then
15315         nv_preserves_uv_bits="`$run ./try`"
15316 fi
15317 case "$nv_preserves_uv_bits" in
15318 \-[1-9]*)       
15319         nv_preserves_uv_bits=`expr 0 - $nv_preserves_uv_bits`
15320         $echo "Your NVs can preserve all $nv_preserves_uv_bits bits of your UVs."  2>&1
15321         d_nv_preserves_uv="$define"
15322         ;;
15323 [1-9]*) $echo "Your NVs can preserve only $nv_preserves_uv_bits bits of your UVs."  2>&1
15324         d_nv_preserves_uv="$undef" ;;
15325 *)      $echo "Can't figure out how many bits your NVs preserve." 2>&1
15326         nv_preserves_uv_bits="$undef" ;;
15327 esac
15328
15329 $rm -f try.* try
15330
15331 $echo "Checking whether NV 0.0 is all bits zero in memory..." >&4
15332 : volatile so that the compiler has to store it out to memory.
15333 if test X"$d_volatile" = X"$define"; then
15334         volatile=volatile
15335 fi
15336 $cat <<EOP >try.c
15337 #include <stdio.h>
15338 #$i_stdlib I_STDLIB
15339 #ifdef I_STDLIB
15340 #include <stdlib.h>
15341 #endif
15342 #$i_string I_STRING
15343 #ifdef I_STRING
15344 #  include <string.h>
15345 #else
15346 #  include <strings.h>
15347 #endif
15348 #include <sys/types.h>
15349 #include <signal.h>
15350 #ifdef SIGFPE
15351 $volatile int bletched = 0;
15352 $signal_t blech(int s) { bletched = 1; }
15353 #endif
15354
15355 int checkit($nvtype d, char *where) {
15356     unsigned char *p = (char *)&d;
15357     unsigned char *end = p + sizeof(d);
15358     int fail = 0;
15359
15360     while (p < end)
15361         fail += *p++;
15362
15363     if (!fail)
15364         return 0;
15365
15366     p = (char *)&d;
15367     printf("No - %s: 0x", where);
15368     while (p < end)
15369         printf ("%02X", *p++);
15370     printf("\n");
15371     return 1;
15372 }
15373
15374 int main(int argc, char **argv) {
15375     $nvtype d = 0.0;
15376     int fail = 0;
15377     fail += checkit(d, "0.0");
15378
15379     /* The compiler shouldn't be assuming that bletched is 0  */
15380     d = bletched;
15381
15382     fail += checkit(d, "bleched");
15383
15384 #ifdef SIGFPE
15385     signal(SIGFPE, blech);
15386 #endif
15387
15388     /* Paranoia - the compiler should have no way of knowing that ANSI says
15389        that argv[argc] will always be NULL.  Actually, if it did assume this it
15390        would be buggy, as this is C and main() can be called from elsewhere in
15391        the program.  */
15392     d = argv[argc] ? 1 : 0;
15393
15394     if (d) {
15395         printf("Odd argv[argc]=%p, d=%g\n", argv[argc], d);
15396     }
15397
15398     fail += checkit(d, "ternary");
15399
15400     memset(&d, sizeof(d), argv[argc] ? 1 : 0);
15401
15402     if (d != 0.0) {
15403         printf("No - memset doesn't give 0.0\n");
15404         /* This might just blow up:  */
15405         printf("(gives %g)\n", d);
15406         return 1;
15407     }
15408     
15409 #ifdef SIGFPE
15410     if (bletched) {
15411         printf("No - something bleched\n");
15412         return 1;
15413     }
15414 #endif
15415     if (fail) {
15416       printf("No - %d fail(s)\n", fail);
15417       return 1;
15418     }
15419     printf("Yes\n");
15420     return 0;
15421 }
15422 EOP
15423 set try
15424
15425 d_nv_zero_is_allbits_zero="$undef"
15426 if eval $compile; then
15427     xxx="`$run ./try`"
15428     case "$?" in
15429         0)
15430             case "$xxx" in
15431                 Yes)  cat >&4 <<EOM
15432 0.0 is represented as all bits zero in memory
15433 EOM
15434                     d_nv_zero_is_allbits_zero="$define"
15435                     ;;
15436                 *)  cat >&4 <<EOM
15437 0.0 is not represented as all bits zero in memory
15438 EOM
15439                     d_nv_zero_is_allbits_zero="$undef"
15440                     ;;
15441             esac
15442             ;;
15443         *)  cat >&4 <<EOM
15444 0.0 is not represented as all bits zero in memory
15445 EOM
15446             d_nv_zero_is_allbits_zero="$undef"
15447             ;;
15448     esac
15449 fi
15450
15451 $rm -f try.* try
15452
15453
15454 : check for off64_t
15455 echo " "
15456 echo "Checking to see if you have off64_t..." >&4
15457 $cat >try.c <<EOCP
15458 #include <sys/types.h>
15459 #include <unistd.h>
15460 int main() { off64_t x = 7; }
15461 EOCP
15462 set try
15463 if eval $compile; then
15464         val="$define"
15465         echo "You have off64_t."
15466 else
15467         val="$undef"
15468         echo "You do not have off64_t."
15469         case "$lseeksize" in
15470         8) echo "(Your off_t is 64 bits, so you could use that.)" ;;
15471         esac
15472 fi
15473 $rm -f try.* try
15474 set d_off64_t
15475 eval $setvar
15476
15477 : how to create joinable pthreads
15478 if test "X$usethreads" = "X$define" -a "X$i_pthread" = "X$define"; then
15479         echo " "
15480         echo "Checking what constant to use for creating joinable pthreads..." >&4 
15481         $cat >try.c <<'EOCP'
15482 #include <pthread.h>
15483 int main() {
15484     int detachstate = JOINABLE;
15485 }
15486 EOCP
15487         set try -DJOINABLE=PTHREAD_CREATE_JOINABLE
15488         if eval $compile; then
15489                 echo "You seem to use PTHREAD_CREATE_JOINABLE." >&4
15490                 val="$undef" # Yes, undef.
15491                 set d_old_pthread_create_joinable
15492                 eval $setvar
15493                 val=""
15494                 set old_pthread_create_joinable
15495                 eval $setvar
15496         else
15497                 set try -DJOINABLE=PTHREAD_CREATE_UNDETACHED
15498                 if eval $compile; then
15499                         echo "You seem to use PTHREAD_CREATE_UNDETACHED." >&4
15500                         val="$define"
15501                         set d_old_pthread_create_joinable
15502                         eval $setvar
15503                         val=PTHREAD_CREATE_UNDETACHED
15504                         set old_pthread_create_joinable
15505                         eval $setvar
15506                 else            
15507                         set try -DJOINABLE=__UNDETACHED
15508                         if eval $compile; then
15509                                 echo "You seem to use __UNDETACHED." >&4
15510                                 val="$define"
15511                                 set d_old_pthread_create_joinable
15512                                 eval $setvar
15513                                 val=__UNDETACHED
15514                                 set old_pthread_create_joinable
15515                                 eval $setvar
15516                         else
15517                                 echo "Egads, nothing obvious found.  Guessing that you use 0." >&4
15518                                 val="$define"
15519                                 set d_old_pthread_create_joinable
15520                                 eval $setvar
15521                                 val=0
15522                                 set old_pthread_create_joinable
15523                                 eval $setvar
15524                         fi
15525                 fi
15526         fi
15527         $rm -f try try.*
15528 else
15529     d_old_pthread_create_joinable="$undef"
15530     old_pthread_create_joinable=""
15531 fi
15532
15533 : see if pause exists
15534 set pause d_pause
15535 eval $inlibc
15536
15537 : see if pipe exists
15538 set pipe d_pipe
15539 eval $inlibc
15540
15541 : see if poll exists
15542 set poll d_poll
15543 eval $inlibc
15544
15545 : see if readlink exists
15546 set readlink d_readlink
15547 eval $inlibc
15548
15549 echo " "
15550 procselfexe=''
15551 val="$undef"
15552 case "$d_readlink" in
15553 "$define")
15554         if $issymlink /proc/self/exe ; then
15555                 $ls -l /proc/self/exe > reflect
15556                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
15557                         echo "You have Linux-like /proc/self/exe."
15558                         procselfexe='"/proc/self/exe"'
15559                         val="$define"
15560                 fi
15561         fi
15562         if $issymlink /proc/curproc/file ; then
15563                 $ls -l /proc/curproc/file > reflect
15564                 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
15565                         echo "You have BSD-like /proc/curproc/file."
15566                         procselfexe='"/proc/curproc/file"'
15567                         val="$define"
15568                 fi
15569         fi
15570         ;;
15571 esac
15572 $rm -f reflect
15573 set d_procselfexe
15574 eval $setvar
15575
15576 : backward compatibility for d_hvfork
15577 if test X$d_hvfork != X; then
15578         d_vfork="$d_hvfork"
15579         d_hvfork=''
15580 fi
15581 : see if there is a vfork
15582 val=''
15583 set vfork val
15584 eval $inlibc
15585
15586 d_pseudofork=$undef
15587
15588 : Ok, but do we want to use it. vfork is reportedly unreliable in
15589 : perl on Solaris 2.x, and probably elsewhere.
15590 case "$val" in
15591 $define)
15592         echo " "
15593         case "$usevfork" in
15594         false) dflt='n';;
15595         *) dflt='y';;
15596         esac
15597         cat <<'EOM'
15598
15599 Perl can only use a vfork() that doesn't suffer from strict
15600 restrictions on calling functions or modifying global data in
15601 the child.  For example, glibc-2.1 contains such a vfork()
15602 that is unsuitable.  If your system provides a proper fork()
15603 call, chances are that you do NOT want perl to use vfork().
15604
15605 EOM
15606         rp="Do you still want to use vfork()?"
15607         . ./myread
15608         case "$ans" in
15609         y|Y) ;;
15610         *)
15611                 echo "Ok, we won't use vfork()."
15612                 val="$undef"
15613                 ;;
15614         esac
15615         ;;
15616 esac
15617 set d_vfork
15618 eval $setvar
15619 case "$d_vfork" in
15620 $define) usevfork='true';;
15621 *) usevfork='false';;
15622 esac
15623
15624 : see whether the pthread_atfork exists
15625 $cat >try.c <<EOP
15626 #include <pthread.h>
15627 #include <stdio.h>
15628 int main() {
15629 #ifdef  PTHREAD_ATFORK
15630         pthread_atfork(NULL,NULL,NULL);
15631 #endif
15632 }
15633 EOP
15634
15635 : see if pthread_atfork exists
15636 set try -DPTHREAD_ATFORK
15637 if eval $compile; then
15638     val="$define"
15639 else
15640     val="$undef"
15641 fi
15642 case "$usethreads" in
15643 $define)
15644         case "$val" in
15645         $define) echo 'pthread_atfork found.' >&4        ;;
15646         *)       echo 'pthread_atfork NOT found.' >&4    ;;
15647         esac
15648 esac
15649 set d_pthread_atfork
15650 eval $setvar
15651
15652 : see if pthread_attr_setscope exists
15653 set pthread_attr_setscope d_pthread_attr_setscope
15654 eval $inlibc
15655
15656
15657 : see whether the various POSIXish _yields exist
15658 $cat >try.c <<EOP
15659 #include <pthread.h>
15660 #include <stdio.h>
15661 int main() {
15662 #ifdef SCHED_YIELD
15663         sched_yield();
15664 #else
15665 #ifdef PTHREAD_YIELD
15666         pthread_yield();
15667 #else
15668 #ifdef PTHREAD_YIELD_NULL
15669         pthread_yield(NULL);
15670 #endif
15671 #endif
15672 #endif
15673 }
15674 EOP
15675 : see if sched_yield exists
15676 set try -DSCHED_YIELD
15677 if eval $compile; then
15678     val="$define"
15679     sched_yield='sched_yield()'
15680 else
15681     val="$undef"
15682 fi
15683 case "$usethreads" in
15684 $define)
15685         case "$val" in
15686         $define) echo 'sched_yield() found.' >&4        ;;
15687         *)       echo 'sched_yield() NOT found.' >&4    ;;
15688         esac
15689 esac
15690 set d_sched_yield
15691 eval $setvar
15692
15693 : see if pthread_yield exists
15694 set try -DPTHREAD_YIELD
15695 if eval $compile; then
15696     val="$define"
15697     case "$sched_yield" in
15698     '') sched_yield='pthread_yield()' ;;
15699     esac
15700 else
15701     set try -DPTHREAD_YIELD_NULL
15702     if eval $compile; then
15703         val="$define"
15704         case "$sched_yield" in
15705         '') sched_yield='pthread_yield(NULL)' ;;
15706         esac
15707     else
15708         val="$undef"
15709     fi
15710 fi
15711 case "$usethreads" in
15712 $define)
15713         case "$val" in
15714         $define) echo 'pthread_yield() found.' >&4      ;;
15715         *)       echo 'pthread_yield() NOT found.' >&4  ;;
15716         esac
15717         ;;
15718 esac
15719 set d_pthread_yield
15720 eval $setvar
15721
15722 case "$sched_yield" in
15723 '') sched_yield=undef ;;
15724 esac
15725
15726 $rm -f try try.*
15727
15728 : see if random_r exists
15729 set random_r d_random_r
15730 eval $inlibc
15731 case "$d_random_r" in
15732 "$define")
15733         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
15734         case "$d_random_r_proto:$usethreads" in
15735         ":define")      d_random_r_proto=define
15736                 set d_random_r_proto random_r $hdrs
15737                 eval $hasproto ;;
15738         *)      ;;
15739         esac
15740         case "$d_random_r_proto" in
15741         define)
15742         case "$random_r_proto" in
15743         ''|0) try='int random_r(int*, struct random_data*);'
15744         ./protochk "extern $try" $hdrs && random_r_proto=I_iS ;;
15745         esac
15746         case "$random_r_proto" in
15747         ''|0) try='int random_r(long*, struct random_data*);'
15748         ./protochk "extern $try" $hdrs && random_r_proto=I_lS ;;
15749         esac
15750         case "$random_r_proto" in
15751         ''|0) try='int random_r(struct random_data*, int32_t*);'
15752         ./protochk "extern $try" $hdrs && random_r_proto=I_St ;;
15753         esac
15754         case "$random_r_proto" in
15755         ''|0)   d_random_r=undef
15756                 random_r_proto=0
15757                 echo "Disabling random_r, cannot determine prototype." >&4 ;;
15758         * )     case "$random_r_proto" in
15759                 REENTRANT_PROTO*) ;;
15760                 *) random_r_proto="REENTRANT_PROTO_$random_r_proto" ;;
15761                 esac
15762                 echo "Prototype: $try" ;;
15763         esac
15764         ;;
15765         *)      case "$usethreads" in
15766                 define) echo "random_r has no prototype, not using it." >&4 ;;
15767                 esac
15768                 d_random_r=undef
15769                 random_r_proto=0
15770                 ;;
15771         esac
15772         ;;
15773 *)      random_r_proto=0
15774         ;;
15775 esac
15776
15777 : see if readdir and friends exist
15778 set readdir d_readdir
15779 eval $inlibc
15780 set seekdir d_seekdir
15781 eval $inlibc
15782 set telldir d_telldir
15783 eval $inlibc
15784 set rewinddir d_rewinddir
15785 eval $inlibc
15786
15787 : see if readdir64_r exists
15788 set readdir64_r d_readdir64_r
15789 eval $inlibc
15790 case "$d_readdir64_r" in
15791 "$define")
15792         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
15793         case "$d_readdir64_r_proto:$usethreads" in
15794         ":define")      d_readdir64_r_proto=define
15795                 set d_readdir64_r_proto readdir64_r $hdrs
15796                 eval $hasproto ;;
15797         *)      ;;
15798         esac
15799         case "$d_readdir64_r_proto" in
15800         define)
15801         case "$readdir64_r_proto" in
15802         ''|0) try='int readdir64_r(DIR*, struct dirent64*, struct dirent64**);'
15803         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TSR ;;
15804         esac
15805         case "$readdir64_r_proto" in
15806         ''|0) try='int readdir64_r(DIR*, struct dirent64*);'
15807         ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TS ;;
15808         esac
15809         case "$readdir64_r_proto" in
15810         ''|0)   d_readdir64_r=undef
15811                 readdir64_r_proto=0
15812                 echo "Disabling readdir64_r, cannot determine prototype." >&4 ;;
15813         * )     case "$readdir64_r_proto" in
15814                 REENTRANT_PROTO*) ;;
15815                 *) readdir64_r_proto="REENTRANT_PROTO_$readdir64_r_proto" ;;
15816                 esac
15817                 echo "Prototype: $try" ;;
15818         esac
15819         ;;
15820         *)      case "$usethreads" in
15821                 define) echo "readdir64_r has no prototype, not using it." >&4 ;;
15822                 esac
15823                 d_readdir64_r=undef
15824                 readdir64_r_proto=0
15825                 ;;
15826         esac
15827         ;;
15828 *)      readdir64_r_proto=0
15829         ;;
15830 esac
15831
15832 : see if readdir_r exists
15833 set readdir_r d_readdir_r
15834 eval $inlibc
15835 case "$d_readdir_r" in
15836 "$define")
15837         hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
15838         case "$d_readdir_r_proto:$usethreads" in
15839         ":define")      d_readdir_r_proto=define
15840                 set d_readdir_r_proto readdir_r $hdrs
15841                 eval $hasproto ;;
15842         *)      ;;
15843         esac
15844         case "$d_readdir_r_proto" in
15845         define)
15846         case "$readdir_r_proto" in
15847         ''|0) try='int readdir_r(DIR*, struct dirent*, struct dirent**);'
15848         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TSR ;;
15849         esac
15850         case "$readdir_r_proto" in
15851         ''|0) try='int readdir_r(DIR*, struct dirent*);'
15852         ./protochk "extern $try" $hdrs && readdir_r_proto=I_TS ;;
15853         esac
15854         case "$readdir_r_proto" in
15855         ''|0)   d_readdir_r=undef
15856                 readdir_r_proto=0
15857                 echo "Disabling readdir_r, cannot determine prototype." >&4 ;;
15858         * )     case "$readdir_r_proto" in
15859                 REENTRANT_PROTO*) ;;
15860                 *) readdir_r_proto="REENTRANT_PROTO_$readdir_r_proto" ;;
15861                 esac
15862                 echo "Prototype: $try" ;;
15863         esac
15864         ;;
15865         *)      case "$usethreads" in
15866                 define) echo "readdir_r has no prototype, not using it." >&4 ;;
15867                 esac
15868                 d_readdir_r=undef
15869                 readdir_r_proto=0
15870                 ;;
15871         esac
15872         ;;
15873 *)      readdir_r_proto=0
15874         ;;
15875 esac
15876
15877 : see if readv exists
15878 set readv d_readv
15879 eval $inlibc
15880
15881 : see if recvmsg exists
15882 set recvmsg d_recvmsg
15883 eval $inlibc
15884
15885 : see if rename exists
15886 set rename d_rename
15887 eval $inlibc
15888
15889 : see if rmdir exists
15890 set rmdir d_rmdir
15891 eval $inlibc
15892
15893 : see if memory.h is available.
15894 val=''
15895 set memory.h val
15896 eval $inhdr
15897
15898 : See if it conflicts with string.h
15899 case "$val" in
15900 $define)
15901         case "$strings" in
15902         '') ;;
15903         *)
15904                 $cppstdin $cppflags $cppminus < $strings > mem.h
15905                 if $contains 'memcpy' mem.h >/dev/null 2>&1; then
15906                         echo " "
15907                         echo "We won't be including <memory.h>."
15908                         val="$undef"
15909                 fi
15910                 $rm -f mem.h
15911                 ;;
15912         esac
15913 esac
15914 set i_memory
15915 eval $setvar
15916
15917 : can bcopy handle overlapping blocks?
15918 echo " "
15919 val="$undef"
15920 case "$d_memmove" in
15921 "$define") echo "I'll use memmove() instead of bcopy() for overlapping copies." ;;
15922 *)      case "$d_bcopy" in
15923         "$define")
15924                 echo "Checking to see if bcopy() can do overlapping copies..." >&4
15925                 $cat >try.c <<EOCP
15926 #$i_memory I_MEMORY
15927 #$i_stdlib I_STDLIB
15928 #$i_string I_STRING
15929 #$i_unistd I_UNISTD
15930 EOCP
15931         $cat >>try.c <<'EOCP'
15932 #include <stdio.h>
15933 #ifdef I_MEMORY
15934 #  include <memory.h>
15935 #endif
15936 #ifdef I_STDLIB
15937 #  include <stdlib.h>
15938 #endif
15939 #ifdef I_STRING
15940 #  include <string.h>
15941 #else
15942 #  include <strings.h>
15943 #endif
15944 #ifdef I_UNISTD
15945 #  include <unistd.h>  /* Needed for NetBSD */
15946 #endif
15947 int main()
15948 {
15949 char buf[128], abc[128];
15950 char *b;
15951 int len;
15952 int off;
15953 int align;
15954
15955 /* Copy "abcde..." string to char abc[] so that gcc doesn't
15956    try to store the string in read-only memory. */
15957 bcopy("abcdefghijklmnopqrstuvwxyz0123456789", abc, 36);
15958
15959 for (align = 7; align >= 0; align--) {
15960         for (len = 36; len; len--) {
15961                 b = buf+align;
15962                 bcopy(abc, b, len);
15963                 for (off = 1; off <= len; off++) {
15964                         bcopy(b, b+off, len);
15965                         bcopy(b+off, b, len);
15966                         if (bcmp(b, abc, len))
15967                                 exit(1);
15968                 }
15969         }
15970 }
15971 exit(0);
15972 }
15973 EOCP
15974                 set try
15975                 if eval $compile_ok; then
15976                         if ./try 2>/dev/null; then
15977                                 echo "Yes, it can."
15978                                 val="$define"
15979                         else
15980                                 echo "It can't, sorry."
15981                         fi
15982                 else
15983                         echo "(I can't compile the test program, so we'll assume not...)"
15984                 fi
15985                 ;;
15986         esac
15987         $rm -f try.* try core
15988         ;;
15989 esac
15990 set d_safebcpy
15991 eval $setvar
15992
15993 : can memcpy handle overlapping blocks?
15994 echo " "
15995 val="$undef"
15996 case "$d_memmove" in
15997 "$define") echo "I'll use memmove() instead of memcpy() for overlapping copies." ;;
15998 *)      case "$d_memcpy" in
15999         "$define")
16000                 echo "Checking to see if memcpy() can do overlapping copies..." >&4
16001                 $cat >try.c <<EOCP
16002 #$i_memory I_MEMORY
16003 #$i_stdlib I_STDLIB
16004 #$i_string I_STRING
16005 #$i_unistd I_UNISTD
16006 EOCP
16007         $cat >>try.c <<'EOCP'
16008 #include <stdio.h>
16009 #ifdef I_MEMORY
16010 #  include <memory.h>
16011 #endif
16012 #ifdef I_STDLIB
16013 #  include <stdlib.h>
16014 #endif
16015 #ifdef I_STRING
16016 #  include <string.h>
16017 #else
16018 #  include <strings.h>
16019 #endif
16020 #ifdef I_UNISTD
16021 #  include <unistd.h>  /* Needed for NetBSD */
16022 #endif
16023 int main()
16024 {
16025 char buf[128], abc[128];
16026 char *b;
16027 int len;
16028 int off;
16029 int align;
16030
16031 /* Copy "abcde..." string to char abc[] so that gcc doesn't
16032    try to store the string in read-only memory. */
16033 memcpy(abc, "abcdefghijklmnopqrstuvwxyz0123456789", 36);
16034
16035 for (align = 7; align >= 0; align--) {
16036         for (len = 36; len; len--) {
16037                 b = buf+align;
16038                 memcpy(b, abc, len);
16039                 for (off = 1; off <= len; off++) {
16040                         memcpy(b+off, b, len);
16041                         memcpy(b, b+off, len);
16042                         if (memcmp(b, abc, len))
16043                                 exit(1);
16044                 }
16045         }
16046 }
16047 exit(0);
16048 }
16049 EOCP
16050                 set try
16051                 if eval $compile_ok; then
16052                         if ./try 2>/dev/null; then
16053                                 echo "Yes, it can."
16054                                 val="$define"
16055                         else
16056                                 echo "It can't, sorry."
16057                         fi
16058                 else
16059                         echo "(I can't compile the test program, so we'll assume not...)"
16060                 fi
16061                 ;;
16062         esac
16063         $rm -f try.* try core
16064         ;;
16065 esac
16066 set d_safemcpy
16067 eval $setvar
16068
16069 : can memcmp be trusted to compare relative magnitude?
16070 val="$undef"
16071 case "$d_memcmp" in
16072 "$define")
16073         echo " "
16074         echo "Checking if your memcmp() can compare relative magnitude..." >&4
16075         $cat >try.c <<EOCP
16076 #$i_memory I_MEMORY
16077 #$i_stdlib I_STDLIB
16078 #$i_string I_STRING
16079 #$i_unistd I_UNISTD
16080 EOCP
16081         $cat >>try.c <<'EOCP'
16082 #include <stdio.h>
16083 #ifdef I_MEMORY
16084 #  include <memory.h>
16085 #endif
16086 #ifdef I_STDLIB
16087 #  include <stdlib.h>
16088 #endif
16089 #ifdef I_STRING
16090 #  include <string.h>
16091 #else
16092 #  include <strings.h>
16093 #endif
16094 #ifdef I_UNISTD
16095 #  include <unistd.h>  /* Needed for NetBSD */
16096 #endif
16097 int main()
16098 {
16099 char a = -1;
16100 char b = 0;
16101 if ((a < b) && memcmp(&a, &b, 1) < 0)
16102         exit(1);
16103 exit(0);
16104 }
16105 EOCP
16106         set try
16107         if eval $compile_ok; then
16108                 if $run ./try 2>/dev/null; then
16109                         echo "Yes, it can."
16110                         val="$define"
16111                 else
16112                         echo "No, it can't (it uses signed chars)."
16113                 fi
16114         else
16115                 echo "(I can't compile the test program, so we'll assume not...)"
16116         fi
16117         ;;
16118 esac
16119 $rm -f try.* try core
16120 set d_sanemcmp
16121 eval $setvar
16122
16123 : see if prototype for sbrk is available
16124 echo " "
16125 set d_sbrkproto sbrk $i_unistd unistd.h
16126 eval $hasproto
16127
16128 : see if select exists
16129 set select d_select
16130 eval $inlibc
16131
16132 : see if semctl exists
16133 set semctl d_semctl
16134 eval $inlibc
16135
16136 : see if semget exists
16137 set semget d_semget
16138 eval $inlibc
16139
16140 : see if semop exists
16141 set semop d_semop
16142 eval $inlibc
16143
16144 : see how much of the 'sem*(2)' library is present.
16145 h_sem=true
16146 echo " "
16147 case "$d_semctl$d_semget$d_semop" in
16148 *"$undef"*) h_sem=false;;
16149 esac
16150 case "$osname" in
16151 freebsd)
16152     case "`ipcs 2>&1`" in
16153     "SVID messages"*"not configured"*)
16154         echo "Your $osname does not have the sem*(2) configured." >&4
16155         h_sem=false
16156         val="$undef"
16157         set semctl d_semctl
16158         eval $setvar
16159         set semget d_semget
16160         eval $setvar
16161         set semop d_semop
16162         eval $setvar
16163         ;;
16164     esac
16165     ;;
16166 esac
16167 : we could also check for sys/ipc.h ...
16168 if $h_sem && $test `./findhdr sys/sem.h`; then
16169         echo "You have the full sem*(2) library." >&4
16170         val="$define"
16171 else
16172         echo "You don't have the full sem*(2) library." >&4
16173         val="$undef"
16174 fi
16175 set d_sem
16176 eval $setvar
16177
16178 : see whether sys/sem.h defines union semun
16179 echo " "
16180 $cat > try.c <<'END'
16181 #include <sys/types.h>
16182 #include <sys/ipc.h>
16183 #include <sys/sem.h>
16184 int main () { union semun semun; semun.buf = 0; }
16185 END
16186 set try
16187 if eval $compile; then
16188     echo "You have union semun in <sys/sem.h>." >&4
16189     val="$define"
16190 else
16191     echo "You do not have union semun in <sys/sem.h>." >&4
16192     val="$undef"
16193 fi
16194 $rm -f try try.c
16195 set d_union_semun
16196 eval $setvar
16197
16198 : see how to do semctl IPC_STAT
16199 case "$d_sem" in
16200 $define)
16201     echo " "
16202     $cat > try.h <<END
16203 #ifndef S_IRUSR
16204 #   ifdef S_IREAD
16205 #       define S_IRUSR S_IREAD
16206 #       define S_IWUSR S_IWRITE
16207 #       define S_IXUSR S_IEXEC
16208 #   else
16209 #       define S_IRUSR 0400
16210 #       define S_IWUSR 0200
16211 #       define S_IXUSR 0100
16212 #   endif
16213 #   define S_IRGRP (S_IRUSR>>3)
16214 #   define S_IWGRP (S_IWUSR>>3)
16215 #   define S_IXGRP (S_IXUSR>>3)
16216 #   define S_IROTH (S_IRUSR>>6)
16217 #   define S_IWOTH (S_IWUSR>>6)
16218 #   define S_IXOTH (S_IXUSR>>6)
16219 #endif
16220 #ifndef S_IRWXU
16221 #   define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
16222 #   define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
16223 #   define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
16224 #endif
16225 END
16226     : see whether semctl IPC_STAT can use union semun
16227     case "$d_semctl_semun" in
16228     '')
16229       val="$undef"
16230       $cat > try.c <<END
16231 #include <sys/types.h>
16232 #include <sys/ipc.h>
16233 #include <sys/sem.h>
16234 #include <sys/stat.h>
16235 #include <stdio.h>
16236 #include <errno.h>
16237 #include "try.h"
16238 #ifndef errno
16239 extern int errno;
16240 #endif
16241 #$d_union_semun HAS_UNION_SEMUN
16242 int main() {
16243     union semun
16244 #ifndef HAS_UNION_SEMUN
16245     {
16246         int val;
16247         struct semid_ds *buf;
16248         unsigned short *array;
16249     }
16250 #endif
16251     arg;
16252     int sem, st;
16253
16254 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) && defined(S_IRWXO) && defined(IPC_CREAT)
16255     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
16256     if (sem > -1) {
16257         struct semid_ds argbuf;
16258         arg.buf = &argbuf;
16259 #       ifdef IPC_STAT
16260         st = semctl(sem, 0, IPC_STAT, arg);
16261         if (st == 0)
16262             printf("semun\n");
16263         else
16264 #       endif /* IPC_STAT */
16265             printf("semctl IPC_STAT failed: errno = %d\n", errno);
16266 #       ifdef IPC_RMID
16267         if (semctl(sem, 0, IPC_RMID, arg) != 0)
16268 #       endif /* IPC_RMID */
16269             printf("semctl IPC_RMID failed: errno = %d\n", errno);
16270     } else
16271 #endif /* IPC_PRIVATE && ... */
16272         printf("semget failed: errno = %d\n", errno);
16273   return 0;
16274 }
16275 END
16276       set try
16277       if eval $compile; then
16278           xxx=`$run ./try`
16279           case "$xxx" in
16280           semun) val="$define" ;;
16281           esac
16282       fi
16283       $rm -f try try.c
16284       set d_semctl_semun
16285       eval $setvar
16286       ;;
16287     esac
16288     case "$d_semctl_semun" in
16289     $define)
16290         echo "You can use union semun for semctl IPC_STAT." >&4
16291         also='also'
16292         ;;
16293     *)  echo "You cannot use union semun for semctl IPC_STAT." >&4
16294         also=''
16295         ;;
16296     esac
16297
16298     : see whether semctl IPC_STAT can use struct semid_ds pointer
16299     case "$d_semctl_semid_ds" in
16300     '')
16301       val="$undef"
16302       $cat > try.c <<'END'
16303 #include <sys/types.h>
16304 #include <sys/ipc.h>
16305 #include <sys/sem.h>
16306 #include <sys/stat.h>
16307 #include "try.h"
16308 #include <stdio.h>
16309 #include <errno.h>
16310 #ifndef errno
16311 extern int errno;
16312 #endif
16313 int main() {
16314     struct semid_ds arg;
16315     int sem, st;
16316
16317 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) &&  defined(S_IRWXO) && defined(IPC_CREAT)
16318     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
16319     if (sem > -1) {
16320 #       ifdef IPC_STAT
16321         st = semctl(sem, 0, IPC_STAT, &arg);
16322         if (st == 0)
16323             printf("semid_ds\n");
16324         else
16325 #       endif /* IPC_STAT */
16326             printf("semctl IPC_STAT failed: errno = %d\n", errno);
16327 #       ifdef IPC_RMID
16328         if (semctl(sem, 0, IPC_RMID, &arg) != 0)
16329 #       endif /* IPC_RMID */
16330             printf("semctl IPC_RMID failed: errno = %d\n", errno);
16331     } else
16332 #endif /* IPC_PRIVATE && ... */
16333         printf("semget failed: errno = %d\n", errno);
16334
16335     return 0;
16336 }
16337 END
16338       set try
16339       if eval $compile; then
16340           xxx=`$run ./try`
16341           case "$xxx" in
16342           semid_ds) val="$define" ;;
16343           esac
16344       fi
16345       $rm -f try try.c
16346       set d_semctl_semid_ds
16347       eval $setvar
16348       ;;
16349     esac
16350     case "$d_semctl_semid_ds" in
16351     $define)
16352         echo "You can $also use struct semid_ds* for semctl IPC_STAT." >&4
16353         ;;
16354     *)  echo "You cannot use struct semid_ds* for semctl IPC_STAT." >&4
16355         ;;
16356     esac
16357     $rm -f try.h
16358     ;;
16359 *)  val="$undef"
16360
16361     # We do not have the full sem*(2) library, so assume we can not
16362     # use either.
16363
16364     set d_semctl_semun
16365     eval $setvar
16366
16367     set d_semctl_semid_ds
16368     eval $setvar
16369     ;;
16370 esac
16371
16372 : see if sendmsg exists
16373 set sendmsg d_sendmsg
16374 eval $inlibc
16375
16376 : see if setegid exists
16377 set setegid d_setegid
16378 eval $inlibc
16379
16380 : see if seteuid exists
16381 set seteuid d_seteuid
16382 eval $inlibc
16383
16384 : see if setgrent exists
16385 set setgrent d_setgrent
16386 eval $inlibc
16387
16388 : see if setgrent_r exists
16389 set setgrent_r d_setgrent_r
16390 eval $inlibc
16391 case "$d_setgrent_r" in
16392 "$define")
16393         hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
16394         case "$d_setgrent_r_proto:$usethreads" in
16395         ":define")      d_setgrent_r_proto=define
16396                 set d_setgrent_r_proto setgrent_r $hdrs
16397                 eval $hasproto ;;
16398         *)      ;;
16399         esac
16400         case "$d_setgrent_r_proto" in
16401         define)
16402         case "$setgrent_r_proto" in
16403         ''|0) try='int setgrent_r(FILE**);'
16404         ./protochk "extern $try" $hdrs && setgrent_r_proto=I_H ;;
16405         esac
16406         case "$setgrent_r_proto" in
16407         ''|0) try='void setgrent_r(FILE**);'
16408         ./protochk "extern $try" $hdrs && setgrent_r_proto=V_H ;;
16409         esac
16410         case "$setgrent_r_proto" in
16411         ''|0)   d_setgrent_r=undef
16412                 setgrent_r_proto=0
16413                 echo "Disabling setgrent_r, cannot determine prototype." >&4 ;;
16414         * )     case "$setgrent_r_proto" in
16415                 REENTRANT_PROTO*) ;;
16416                 *) setgrent_r_proto="REENTRANT_PROTO_$setgrent_r_proto" ;;
16417                 esac
16418                 echo "Prototype: $try" ;;
16419         esac
16420         ;;
16421         *)      case "$usethreads" in
16422                 define) echo "setgrent_r has no prototype, not using it." >&4 ;;
16423                 esac
16424                 d_setgrent_r=undef
16425                 setgrent_r_proto=0
16426                 ;;
16427         esac
16428         ;;
16429 *)      setgrent_r_proto=0
16430         ;;
16431 esac
16432
16433 : see if sethostent exists
16434 set sethostent d_sethent
16435 eval $inlibc
16436
16437 : see if sethostent_r exists
16438 set sethostent_r d_sethostent_r
16439 eval $inlibc
16440 case "$d_sethostent_r" in
16441 "$define")
16442         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
16443         case "$d_sethostent_r_proto:$usethreads" in
16444         ":define")      d_sethostent_r_proto=define
16445                 set d_sethostent_r_proto sethostent_r $hdrs
16446                 eval $hasproto ;;
16447         *)      ;;
16448         esac
16449         case "$d_sethostent_r_proto" in
16450         define)
16451         case "$sethostent_r_proto" in
16452         ''|0) try='int sethostent_r(int, struct hostent_data*);'
16453         ./protochk "extern $try" $hdrs && sethostent_r_proto=I_ID ;;
16454         esac
16455         case "$sethostent_r_proto" in
16456         ''|0) try='void sethostent_r(int, struct hostent_data*);'
16457         ./protochk "extern $try" $hdrs && sethostent_r_proto=V_ID ;;
16458         esac
16459         case "$sethostent_r_proto" in
16460         ''|0)   d_sethostent_r=undef
16461                 sethostent_r_proto=0
16462                 echo "Disabling sethostent_r, cannot determine prototype." >&4 ;;
16463         * )     case "$sethostent_r_proto" in
16464                 REENTRANT_PROTO*) ;;
16465                 *) sethostent_r_proto="REENTRANT_PROTO_$sethostent_r_proto" ;;
16466                 esac
16467                 echo "Prototype: $try" ;;
16468         esac
16469         ;;
16470         *)      case "$usethreads" in
16471                 define) echo "sethostent_r has no prototype, not using it." >&4 ;;
16472                 esac
16473                 d_sethostent_r=undef
16474                 sethostent_r_proto=0
16475                 ;;
16476         esac
16477         ;;
16478 *)      sethostent_r_proto=0
16479         ;;
16480 esac
16481
16482 : see if setitimer exists
16483 set setitimer d_setitimer
16484 eval $inlibc
16485
16486 : see if setlinebuf exists
16487 set setlinebuf d_setlinebuf
16488 eval $inlibc
16489
16490 : see if setlocale exists
16491 set setlocale d_setlocale
16492 eval $inlibc
16493
16494 : see if locale.h is available
16495 set locale.h i_locale
16496 eval $inhdr
16497
16498 : see if setlocale_r exists
16499 set setlocale_r d_setlocale_r
16500 eval $inlibc
16501 case "$d_setlocale_r" in
16502 "$define")
16503         hdrs="$i_systypes sys/types.h define stdio.h $i_locale locale.h"
16504         case "$d_setlocale_r_proto:$usethreads" in
16505         ":define")      d_setlocale_r_proto=define
16506                 set d_setlocale_r_proto setlocale_r $hdrs
16507                 eval $hasproto ;;
16508         *)      ;;
16509         esac
16510         case "$d_setlocale_r_proto" in
16511         define)
16512         case "$setlocale_r_proto" in
16513         ''|0) try='int setlocale_r(int, const char*, char*, int);'
16514         ./protochk "extern $try" $hdrs && setlocale_r_proto=I_ICBI ;;
16515         esac
16516         case "$setlocale_r_proto" in
16517         ''|0)   d_setlocale_r=undef
16518                 setlocale_r_proto=0
16519                 echo "Disabling setlocale_r, cannot determine prototype." >&4 ;;
16520         * )     case "$setlocale_r_proto" in
16521                 REENTRANT_PROTO*) ;;
16522                 *) setlocale_r_proto="REENTRANT_PROTO_$setlocale_r_proto" ;;
16523                 esac
16524                 echo "Prototype: $try" ;;
16525         esac
16526         ;;
16527         *)      case "$usethreads" in
16528                 define) echo "setlocale_r has no prototype, not using it." >&4 ;;
16529                 esac
16530                 d_setlocale_r=undef
16531                 setlocale_r_proto=0
16532                 ;;
16533         esac
16534         ;;
16535 *)      setlocale_r_proto=0
16536         ;;
16537 esac
16538
16539 : see if setnetent exists
16540 set setnetent d_setnent
16541 eval $inlibc
16542
16543 : see if setnetent_r exists
16544 set setnetent_r d_setnetent_r
16545 eval $inlibc
16546 case "$d_setnetent_r" in
16547 "$define")
16548         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
16549         case "$d_setnetent_r_proto:$usethreads" in
16550         ":define")      d_setnetent_r_proto=define
16551                 set d_setnetent_r_proto setnetent_r $hdrs
16552                 eval $hasproto ;;
16553         *)      ;;
16554         esac
16555         case "$d_setnetent_r_proto" in
16556         define)
16557         case "$setnetent_r_proto" in
16558         ''|0) try='int setnetent_r(int, struct netent_data*);'
16559         ./protochk "extern $try" $hdrs && setnetent_r_proto=I_ID ;;
16560         esac
16561         case "$setnetent_r_proto" in
16562         ''|0) try='void setnetent_r(int, struct netent_data*);'
16563         ./protochk "extern $try" $hdrs && setnetent_r_proto=V_ID ;;
16564         esac
16565         case "$setnetent_r_proto" in
16566         ''|0)   d_setnetent_r=undef
16567                 setnetent_r_proto=0
16568                 echo "Disabling setnetent_r, cannot determine prototype." >&4 ;;
16569         * )     case "$setnetent_r_proto" in
16570                 REENTRANT_PROTO*) ;;
16571                 *) setnetent_r_proto="REENTRANT_PROTO_$setnetent_r_proto" ;;
16572                 esac
16573                 echo "Prototype: $try" ;;
16574         esac
16575         ;;
16576         *)      case "$usethreads" in
16577                 define) echo "setnetent_r has no prototype, not using it." >&4 ;;
16578                 esac
16579                 d_setnetent_r=undef
16580                 setnetent_r_proto=0
16581                 ;;
16582         esac
16583         ;;
16584 *)      setnetent_r_proto=0
16585         ;;
16586 esac
16587
16588 : see if setprotoent exists
16589 set setprotoent d_setpent
16590 eval $inlibc
16591
16592 : see if setpgid exists
16593 set setpgid d_setpgid
16594 eval $inlibc
16595
16596 : see if setpgrp2 exists
16597 set setpgrp2 d_setpgrp2
16598 eval $inlibc
16599
16600 : see if setpriority exists
16601 set setpriority d_setprior
16602 eval $inlibc
16603
16604 : see if setproctitle exists
16605 set setproctitle d_setproctitle
16606 eval $inlibc
16607
16608 : see if setprotoent_r exists
16609 set setprotoent_r d_setprotoent_r
16610 eval $inlibc
16611 case "$d_setprotoent_r" in
16612 "$define")
16613         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
16614         case "$d_setprotoent_r_proto:$usethreads" in
16615         ":define")      d_setprotoent_r_proto=define
16616                 set d_setprotoent_r_proto setprotoent_r $hdrs
16617                 eval $hasproto ;;
16618         *)      ;;
16619         esac
16620         case "$d_setprotoent_r_proto" in
16621         define)
16622         case "$setprotoent_r_proto" in
16623         ''|0) try='int setprotoent_r(int, struct protoent_data*);'
16624         ./protochk "extern $try" $hdrs && setprotoent_r_proto=I_ID ;;
16625         esac
16626         case "$setprotoent_r_proto" in
16627         ''|0) try='void setprotoent_r(int, struct protoent_data*);'
16628         ./protochk "extern $try" $hdrs && setprotoent_r_proto=V_ID ;;
16629         esac
16630         case "$setprotoent_r_proto" in
16631         ''|0)   d_setprotoent_r=undef
16632                 setprotoent_r_proto=0
16633                 echo "Disabling setprotoent_r, cannot determine prototype." >&4 ;;
16634         * )     case "$setprotoent_r_proto" in
16635                 REENTRANT_PROTO*) ;;
16636                 *) setprotoent_r_proto="REENTRANT_PROTO_$setprotoent_r_proto" ;;
16637                 esac
16638                 echo "Prototype: $try" ;;
16639         esac
16640         ;;
16641         *)      case "$usethreads" in
16642                 define) echo "setprotoent_r has no prototype, not using it." >&4 ;;
16643                 esac
16644                 d_setprotoent_r=undef
16645                 setprotoent_r_proto=0
16646                 ;;
16647         esac
16648         ;;
16649 *)      setprotoent_r_proto=0
16650         ;;
16651 esac
16652
16653 : see if setpwent exists
16654 set setpwent d_setpwent
16655 eval $inlibc
16656
16657 : see if setpwent_r exists
16658 set setpwent_r d_setpwent_r
16659 eval $inlibc
16660 case "$d_setpwent_r" in
16661 "$define")
16662         hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
16663         case "$d_setpwent_r_proto:$usethreads" in
16664         ":define")      d_setpwent_r_proto=define
16665                 set d_setpwent_r_proto setpwent_r $hdrs
16666                 eval $hasproto ;;
16667         *)      ;;
16668         esac
16669         case "$d_setpwent_r_proto" in
16670         define)
16671         case "$setpwent_r_proto" in
16672         ''|0) try='int setpwent_r(FILE**);'
16673         ./protochk "extern $try" $hdrs && setpwent_r_proto=I_H ;;
16674         esac
16675         case "$setpwent_r_proto" in
16676         ''|0) try='void setpwent_r(FILE**);'
16677         ./protochk "extern $try" $hdrs && setpwent_r_proto=V_H ;;
16678         esac
16679         case "$setpwent_r_proto" in
16680         ''|0)   d_setpwent_r=undef
16681                 setpwent_r_proto=0
16682                 echo "Disabling setpwent_r, cannot determine prototype." >&4 ;;
16683         * )     case "$setpwent_r_proto" in
16684                 REENTRANT_PROTO*) ;;
16685                 *) setpwent_r_proto="REENTRANT_PROTO_$setpwent_r_proto" ;;
16686                 esac
16687                 echo "Prototype: $try" ;;
16688         esac
16689         ;;
16690         *)      case "$usethreads" in
16691                 define) echo "setpwent_r has no prototype, not using it." >&4 ;;
16692                 esac
16693                 d_setpwent_r=undef
16694                 setpwent_r_proto=0
16695                 ;;
16696         esac
16697         ;;
16698 *)      setpwent_r_proto=0
16699         ;;
16700 esac
16701
16702 : see if setregid exists
16703 set setregid d_setregid
16704 eval $inlibc
16705 set setresgid d_setresgid
16706 eval $inlibc
16707
16708 : see if setreuid exists
16709 set setreuid d_setreuid
16710 eval $inlibc
16711 set setresuid d_setresuid
16712 eval $inlibc
16713
16714 : see if setrgid exists
16715 set setrgid d_setrgid
16716 eval $inlibc
16717
16718 : see if setruid exists
16719 set setruid d_setruid
16720 eval $inlibc
16721
16722 : see if setservent exists
16723 set setservent d_setsent
16724 eval $inlibc
16725
16726 : see if setservent_r exists
16727 set setservent_r d_setservent_r
16728 eval $inlibc
16729 case "$d_setservent_r" in
16730 "$define")
16731         hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
16732         case "$d_setservent_r_proto:$usethreads" in
16733         ":define")      d_setservent_r_proto=define
16734                 set d_setservent_r_proto setservent_r $hdrs
16735                 eval $hasproto ;;
16736         *)      ;;
16737         esac
16738         case "$d_setservent_r_proto" in
16739         define)
16740         case "$setservent_r_proto" in
16741         ''|0) try='int setservent_r(int, struct servent_data*);'
16742         ./protochk "extern $try" $hdrs && setservent_r_proto=I_ID ;;
16743         esac
16744         case "$setservent_r_proto" in
16745         ''|0) try='void setservent_r(int, struct servent_data*);'
16746         ./protochk "extern $try" $hdrs && setservent_r_proto=V_ID ;;
16747         esac
16748         case "$setservent_r_proto" in
16749         ''|0)   d_setservent_r=undef
16750                 setservent_r_proto=0
16751                 echo "Disabling setservent_r, cannot determine prototype." >&4 ;;
16752         * )     case "$setservent_r_proto" in
16753                 REENTRANT_PROTO*) ;;
16754                 *) setservent_r_proto="REENTRANT_PROTO_$setservent_r_proto" ;;
16755                 esac
16756                 echo "Prototype: $try" ;;
16757         esac
16758         ;;
16759         *)      case "$usethreads" in
16760                 define) echo "setservent_r has no prototype, not using it." >&4 ;;
16761                 esac
16762                 d_setservent_r=undef
16763                 setservent_r_proto=0
16764                 ;;
16765         esac
16766         ;;
16767 *)      setservent_r_proto=0
16768         ;;
16769 esac
16770
16771 : see if setsid exists
16772 set setsid d_setsid
16773 eval $inlibc
16774
16775 : see if setvbuf exists
16776 set setvbuf d_setvbuf
16777 eval $inlibc
16778
16779 : see if sfio.h is available
16780 set sfio.h i_sfio
16781 eval $inhdr
16782
16783
16784 : see if sfio library is available
16785 case "$i_sfio" in
16786 $define)
16787         val=''
16788         set sfreserve val
16789         eval $inlibc
16790         ;;
16791 *)
16792         val="$undef"
16793         ;;
16794 esac
16795 : Ok, but do we want to use it.
16796 case "$val" in
16797 $define)
16798         case "$usesfio" in
16799         true|$define|[yY]*) dflt='y';;
16800         *) dflt='n';;
16801         esac
16802         echo "$package can use the sfio library, but it is experimental."
16803         case "$useperlio" in
16804         "$undef")
16805             echo "For sfio also the PerlIO abstraction layer is needed."
16806             echo "Earlier you said you wouldn't want that."
16807             ;;
16808         esac
16809         rp="You seem to have sfio available, do you want to try using it?"
16810         . ./myread
16811         case "$ans" in
16812         y|Y)    echo "Ok, turning on both sfio and PerlIO, then."
16813                 useperlio="$define"
16814                 val="$define"
16815                 ;;
16816         *)      echo "Ok, avoiding sfio this time.  I'll use stdio instead."
16817                 val="$undef"
16818                 ;;
16819         esac
16820         ;;
16821 *)      case "$usesfio" in
16822         true|$define|[yY]*)
16823                 echo "Sorry, cannot find sfio on this machine." >&4
16824                 echo "Ignoring your setting of usesfio=$usesfio." >&4
16825                 val="$undef"
16826                 ;;
16827         esac
16828         ;;
16829 esac
16830 set d_sfio
16831 eval $setvar
16832 case "$d_sfio" in
16833 $define) usesfio='true';;
16834 *) usesfio='false';;
16835 esac
16836 case "$d_sfio" in
16837 $define) ;;
16838 *)      : Remove sfio from list of libraries to use
16839         case "$libs" in
16840         *-lsfio*)
16841                 echo "Removing unneeded -lsfio from library list" >&4
16842                 set `echo X $libs | $sed -e 's/-lsfio / /' -e 's/-lsfio$//'`
16843                 shift
16844                 libs="$*"
16845                 echo "libs = $libs" >&4
16846                 ;;
16847         esac
16848 ;;
16849 esac
16850
16851
16852 : see if shmctl exists
16853 set shmctl d_shmctl
16854 eval $inlibc
16855
16856 : see if shmget exists
16857 set shmget d_shmget
16858 eval $inlibc
16859
16860 : see if shmat exists
16861 set shmat d_shmat
16862 eval $inlibc
16863 : see what shmat returns
16864 case "$d_shmat" in
16865 "$define")
16866         $cat >shmat.c <<'END'
16867 #include <sys/shm.h>
16868 void *shmat();
16869 END
16870         if $cc $ccflags -c shmat.c >/dev/null 2>&1; then
16871                 shmattype='void *'
16872         else
16873                 shmattype='char *'
16874         fi
16875         echo "and it returns ($shmattype)." >&4
16876         : see if a prototype for shmat is available
16877         xxx=`./findhdr sys/shm.h`
16878         $cppstdin $cppflags $cppminus < $xxx > shmat.c 2>/dev/null
16879         if $contains 'shmat.*(' shmat.c >/dev/null 2>&1; then
16880                 val="$define"
16881         else
16882                 val="$undef"
16883         fi
16884         $rm -f shmat.[co]
16885         ;;
16886 *)
16887         val="$undef"
16888         ;;
16889 esac
16890 set d_shmatprototype
16891 eval $setvar
16892
16893 : see if shmdt exists
16894 set shmdt d_shmdt
16895 eval $inlibc
16896
16897 : see how much of the 'shm*(2)' library is present.
16898 h_shm=true
16899 echo " "
16900 case "$d_shmctl$d_shmget$d_shmat$d_shmdt" in
16901 *"$undef"*) h_shm=false;;
16902 esac
16903 case "$osname" in
16904 freebsd)
16905     case "`ipcs 2>&1`" in
16906     "SVID shared memory"*"not configured"*)
16907         echo "Your $osname does not have the shm*(2) configured." >&4
16908         h_shm=false
16909         val="$undef"
16910         set shmctl d_shmctl
16911         evat $setvar
16912         set shmget d_shmget
16913         evat $setvar
16914         set shmat d_shmat
16915         evat $setvar
16916         set shmdt d_shmdt
16917         evat $setvar
16918         ;;
16919     esac
16920     ;;
16921 esac
16922 : we could also check for sys/ipc.h ...
16923 if $h_shm && $test `./findhdr sys/shm.h`; then
16924         echo "You have the full shm*(2) library." >&4
16925         val="$define"
16926 else
16927         echo "You don't have the full shm*(2) library." >&4
16928         val="$undef"
16929 fi
16930 set d_shm
16931 eval $setvar
16932
16933 echo " "
16934 : see if we have sigaction
16935 if set sigaction val -f d_sigaction; eval $csym; $val; then
16936         echo 'sigaction() found.' >&4
16937         $cat > try.c <<EOP
16938 #include <stdio.h>
16939 #include <sys/types.h>
16940 #include <signal.h>
16941 #$i_stdlib I_STDLIB
16942 #ifdef I_STDLIB
16943 #include <stdlib.h>
16944 #endif
16945 int main()
16946 {
16947     struct sigaction act, oact;
16948     act.sa_flags = 0;
16949     oact.sa_handler = 0;
16950     /* so that act and oact are used */
16951     exit(act.sa_flags == 0 &&  oact.sa_handler == 0);
16952 }
16953 EOP
16954         set try
16955         if eval $compile_ok; then
16956                 val="$define"
16957         else
16958                 echo "But you don't seem to have a useable struct sigaction." >&4
16959                 val="$undef"
16960         fi
16961 else
16962         echo 'sigaction NOT found.' >&4
16963         val="$undef"
16964 fi
16965 set d_sigaction; eval $setvar
16966 $rm -f try try$_o try.c
16967
16968 : see if sigprocmask exists
16969 set sigprocmask d_sigprocmask
16970 eval $inlibc
16971
16972 : see if sigsetjmp exists
16973 echo " "
16974 case "$d_sigsetjmp" in
16975 '')
16976         $cat >try.c <<EOP
16977 #include <setjmp.h>
16978 #$i_stdlib I_STDLIB
16979 #ifdef I_STDLIB
16980 #include <stdlib.h>
16981 #endif
16982 sigjmp_buf env;
16983 int set = 1;
16984 int main()
16985 {
16986         if (sigsetjmp(env,1))
16987                 exit(set);
16988         set = 0;
16989         siglongjmp(env, 1);
16990         exit(1);
16991 }
16992 EOP
16993         set try
16994         if eval $compile; then
16995                 if $run ./try >/dev/null 2>&1; then
16996                         echo "POSIX sigsetjmp found." >&4
16997                         val="$define"
16998                 else
16999                         $cat >&4 <<EOM
17000 Uh-Oh! You have POSIX sigsetjmp and siglongjmp, but they do not work properly!!
17001 I'll ignore them.
17002 EOM
17003                         val="$undef"
17004                 fi
17005         else
17006                 echo "sigsetjmp not found." >&4
17007                 val="$undef"
17008         fi
17009         ;;
17010 *) val="$d_sigsetjmp"
17011         case "$d_sigsetjmp" in
17012         $define) echo "POSIX sigsetjmp found." >&4;;
17013         $undef) echo "sigsetjmp not found." >&4;;
17014         esac
17015         ;;
17016 esac
17017 set d_sigsetjmp
17018 eval $setvar
17019 $rm -f try.c try
17020
17021 : see if snprintf exists
17022 set snprintf d_snprintf
17023 eval $inlibc
17024
17025 : see if vsnprintf exists
17026 set vsnprintf d_vsnprintf
17027 eval $inlibc
17028
17029 case "$d_snprintf-$d_vsnprintf" in
17030 "$define-$define")
17031     $cat <<EOM
17032 Checking whether your snprintf() and vsnprintf() work okay...
17033 EOM
17034     $cat >try.c <<'EOCP'
17035 /* v?snprintf testing logic courtesy of Russ Allbery.
17036  * According to C99:
17037  * - if the buffer is too short it still must be \0-terminated
17038  * - if the buffer is too short the potentially required length
17039  *   must be returned and not -1
17040  * - if the buffer is NULL the potentially required length
17041  *   must be returned and not -1 or core dump
17042  */
17043 #include <stdio.h>
17044 #include <stdarg.h>
17045
17046 char buf[2];
17047
17048 int test (char *format, ...)
17049 {
17050     va_list args;
17051     int count;
17052
17053     va_start (args, format);
17054     count = vsnprintf (buf, sizeof buf, format, args);
17055     va_end (args);
17056     return count;
17057 }
17058
17059 int main ()
17060 {
17061     return ((test ("%s", "abcd") == 4 && buf[0] == 'a' && buf[1] == '\0'
17062              && snprintf (NULL, 0, "%s", "abcd") == 4) ? 0 : 1);
17063 }
17064 EOCP
17065     set try
17066     if eval $compile; then
17067         `$run ./try`
17068         case "$?" in
17069         0) echo "Your snprintf() and vsnprintf() seem to be working okay." ;;
17070         *) cat <<EOM >&4
17071 Your snprintf() and snprintf() don't seem to be working okay.
17072 EOM
17073            d_snprintf="$undef"
17074            d_vsnprintf="$undef"
17075            ;;
17076         esac
17077     else
17078         echo "(I can't seem to compile the test program--assuming they don't)"
17079         d_snprintf="$undef"
17080         d_vsnprintf="$undef"
17081     fi
17082     $rm -f try.* try core core.try.*
17083     ;;
17084 esac
17085
17086 : see if sockatmark exists
17087 set sockatmark d_sockatmark
17088 eval $inlibc
17089
17090 : see if prototype for sockatmark is available
17091 echo " "
17092 set d_sockatmarkproto sockatmark $d_socket sys/socket.h
17093 eval $hasproto
17094
17095 : see if socks5_init exists
17096 set socks5_init d_socks5_init
17097 eval $inlibc
17098
17099 : see if sprintf returns the length of the string in the buffer as per ANSI
17100 $echo "Checking whether sprintf returns the length of the string..." >&4
17101 $cat <<EOP >try.c
17102 #include <stdio.h>
17103 #$i_stdlib I_STDLIB
17104 #ifdef I_STDLIB
17105 #include <stdlib.h>
17106 #endif
17107 #$i_string I_STRING
17108 #ifdef I_STRING
17109 #  include <string.h>
17110 #else
17111 #  include <strings.h>
17112 #endif
17113 #$i_math I_MATH
17114 #ifdef I_MATH
17115 #include <math.h>
17116 #endif
17117
17118 char buffer[256];
17119
17120 int check (size_t expect, int test) {
17121   size_t got = strlen(buffer);
17122   if (expect == got)
17123     return 0;
17124
17125   printf("expected %ld, got %ld in test %d '%s'\n", (long) expect, (long) got,
17126        test, buffer);
17127   exit (test);
17128 }
17129
17130 int main(int argc, char **argv) {
17131   int test = 0;
17132
17133   check(sprintf(buffer, ""), ++test);
17134   check(sprintf(buffer, "%s %s", "perl", "rules"), ++test);
17135   check(sprintf(buffer, "I like %g", atan2(0,-1)), ++test);
17136
17137   return 0;
17138 }
17139 EOP
17140 set try
17141
17142 d_sprintf_returns_strlen="$undef"
17143 if eval $compile; then
17144     xxx="`$run ./try`"
17145     case "$?" in
17146         0) cat >&4 <<EOM
17147 sprintf returns the length of the string (as ANSI says it should)
17148 EOM
17149         d_sprintf_returns_strlen="$define"
17150         ;;
17151         *) cat >&4 <<EOM
17152 sprintf does not return the length of the string (how old is this system?)
17153 EOM
17154         d_sprintf_returns_strlen="$undef"
17155         ;;
17156     esac
17157 fi
17158
17159 $rm -f try.* try
17160
17161 : see if srand48_r exists
17162 set srand48_r d_srand48_r
17163 eval $inlibc
17164 case "$d_srand48_r" in
17165 "$define")
17166         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
17167         case "$d_srand48_r_proto:$usethreads" in
17168         ":define")      d_srand48_r_proto=define
17169                 set d_srand48_r_proto srand48_r $hdrs
17170                 eval $hasproto ;;
17171         *)      ;;
17172         esac
17173         case "$d_srand48_r_proto" in
17174         define)
17175         case "$srand48_r_proto" in
17176         ''|0) try='int srand48_r(long, struct drand48_data*);'
17177         ./protochk "extern $try" $hdrs && srand48_r_proto=I_LS ;;
17178         esac
17179         case "$srand48_r_proto" in
17180         ''|0)   d_srand48_r=undef
17181                 srand48_r_proto=0
17182                 echo "Disabling srand48_r, cannot determine prototype." >&4 ;;
17183         * )     case "$srand48_r_proto" in
17184                 REENTRANT_PROTO*) ;;
17185                 *) srand48_r_proto="REENTRANT_PROTO_$srand48_r_proto" ;;
17186                 esac
17187                 echo "Prototype: $try" ;;
17188         esac
17189         ;;
17190         *)      case "$usethreads" in
17191                 define) echo "srand48_r has no prototype, not using it." >&4 ;;
17192                 esac
17193                 d_srand48_r=undef
17194                 srand48_r_proto=0
17195                 ;;
17196         esac
17197         ;;
17198 *)      srand48_r_proto=0
17199         ;;
17200 esac
17201
17202 : see if srandom_r exists
17203 set srandom_r d_srandom_r
17204 eval $inlibc
17205 case "$d_srandom_r" in
17206 "$define")
17207         hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
17208         case "$d_srandom_r_proto:$usethreads" in
17209         ":define")      d_srandom_r_proto=define
17210                 set d_srandom_r_proto srandom_r $hdrs
17211                 eval $hasproto ;;
17212         *)      ;;
17213         esac
17214         case "$d_srandom_r_proto" in
17215         define)
17216         case "$srandom_r_proto" in
17217         ''|0) try='int srandom_r(unsigned int, struct random_data*);'
17218         ./protochk "extern $try" $hdrs && srandom_r_proto=I_TS ;;
17219         esac
17220         case "$srandom_r_proto" in
17221         ''|0)   d_srandom_r=undef
17222                 srandom_r_proto=0
17223                 echo "Disabling srandom_r, cannot determine prototype." >&4 ;;
17224         * )     case "$srandom_r_proto" in
17225                 REENTRANT_PROTO*) ;;
17226                 *) srandom_r_proto="REENTRANT_PROTO_$srandom_r_proto" ;;
17227                 esac
17228                 echo "Prototype: $try" ;;
17229         esac
17230         ;;
17231         *)      case "$usethreads" in
17232                 define) echo "srandom_r has no prototype, not using it." >&4 ;;
17233                 esac
17234                 d_srandom_r=undef
17235                 srandom_r_proto=0
17236                 ;;
17237         esac
17238         ;;
17239 *)      srandom_r_proto=0
17240         ;;
17241 esac
17242
17243 : see if prototype for setresgid is available
17244 echo " "
17245 set d_sresgproto setresgid $i_unistd unistd.h
17246 eval $hasproto
17247
17248 : see if prototype for setresuid is available
17249 echo " "
17250 set d_sresuproto setresuid $i_unistd unistd.h
17251 eval $hasproto
17252
17253 : see if sys/stat.h is available
17254 set sys/stat.h i_sysstat
17255 eval $inhdr
17256
17257
17258 : see if stat knows about block sizes
17259 echo " "
17260 echo "Checking to see if your struct stat has st_blocks field..." >&4
17261 set d_statblks stat st_blocks $i_sysstat sys/stat.h
17262 eval $hasfield
17263
17264
17265 : see if this is a sys/vfs.h system
17266 set sys/vfs.h i_sysvfs
17267 eval $inhdr
17268
17269
17270 : see if this is a sys/statfs.h system
17271 set sys/statfs.h i_sysstatfs
17272 eval $inhdr
17273
17274
17275 echo " "
17276 echo "Checking to see if your system supports struct statfs..." >&4
17277 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
17278 eval $hasstruct
17279 case "$d_statfs_s" in
17280 "$define")      echo "Yes, it does."   ;;
17281 *)              echo "No, it doesn't." ;;
17282 esac
17283
17284
17285
17286 : see if struct statfs knows about f_flags
17287 case "$d_statfs_s" in
17288 define) 
17289         echo " "
17290         echo "Checking to see if your struct statfs has f_flags field..." >&4
17291         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
17292         eval $hasfield
17293         ;;
17294 *)      val="$undef"
17295         set d_statfs_f_flags
17296         eval $setvar
17297         ;;
17298 esac
17299 case "$d_statfs_f_flags" in
17300 "$define")      echo "Yes, it does."   ;;
17301 *)              echo "No, it doesn't." ;;
17302 esac
17303
17304 $cat >&4 <<EOM
17305 Checking how to access stdio streams by file descriptor number...
17306 EOM
17307 case "$stdio_stream_array" in
17308 '')     $cat >try.c <<EOCP
17309 #include <stdio.h>
17310 int main() {
17311   if (&STDIO_STREAM_ARRAY[fileno(stdin)] == stdin)
17312     printf("yes\n");
17313 }
17314 EOCP
17315         for s in _iob __iob __sF
17316         do
17317                 set try -DSTDIO_STREAM_ARRAY=$s
17318                 if eval $compile; then
17319                         case "`$run ./try`" in
17320                         yes)    stdio_stream_array=$s; break ;;
17321                         esac
17322                 fi
17323         done
17324         $rm -f try.* try$exe_ext
17325 esac
17326 case "$stdio_stream_array" in
17327 '')     $cat >&4 <<EOM
17328 I can't figure out how to access stdio streams by file descriptor number.
17329 EOM
17330         d_stdio_stream_array="$undef"
17331         ;;
17332 *)      $cat >&4 <<EOM
17333 You can access stdio streams by file descriptor number by the $stdio_stream_array array.
17334 EOM
17335         d_stdio_stream_array="$define"
17336         ;;
17337 esac
17338
17339 : see if strcoll exists
17340 set strcoll d_strcoll
17341 eval $inlibc
17342
17343 : check for structure copying
17344 echo " "
17345 echo "Checking to see if your C compiler can copy structs..." >&4
17346 $cat >try.c <<'EOCP'
17347 int main()
17348 {
17349         struct blurfl {
17350                 int dyick;
17351         } foo, bar;
17352
17353         foo = bar;
17354 }
17355 EOCP
17356 if $cc -c try.c >/dev/null 2>&1 ; then
17357         val="$define"
17358         echo "Yup, it can."
17359 else
17360         val="$undef"
17361         echo "Nope, it can't."
17362 fi
17363 set d_strctcpy
17364 eval $setvar
17365 $rm -f try.*
17366
17367 : see if strerror and/or sys_errlist[] exist
17368 echo " "
17369 if test "X$d_strerror" = X -o "X$d_syserrlst" = X; then
17370     if set strerror val -f d_strerror; eval $csym; $val; then
17371                 echo 'strerror() found.' >&4
17372                 d_strerror="$define"
17373                 d_strerrm='strerror(e)'
17374                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
17375                         echo "(You also have sys_errlist[], so we could roll our own strerror.)" 
17376                         d_syserrlst="$define"
17377                 else
17378                         echo "(Since you don't have sys_errlist[], sterror() is welcome.)"
17379                         d_syserrlst="$undef"
17380                 fi
17381     elif xxx=`./findhdr string.h`; test "$xxx" || xxx=`./findhdr strings.h`; \
17382                         $contains '#[   ]*define.*strerror' "$xxx" >/dev/null 2>&1; then
17383                 echo 'strerror() found in string header.' >&4
17384                 d_strerror="$define"
17385                 d_strerrm='strerror(e)'
17386                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
17387                         echo "(Most probably, strerror() uses sys_errlist[] for descriptions.)"
17388                                 d_syserrlst="$define"
17389                 else
17390                         echo "(You don't appear to have any sys_errlist[], how can this be?)"
17391                         d_syserrlst="$undef"
17392                 fi
17393     elif set sys_errlist val -a d_syserrlst; eval $csym; $val; then
17394                 echo "strerror() not found, but you have sys_errlist[] so we'll use that." >&4
17395                 d_strerror="$undef"
17396                 d_syserrlst="$define"
17397                 d_strerrm='((e)<0||(e)>=sys_nerr?"unknown":sys_errlist[e])'
17398     else
17399                 echo 'strerror() and sys_errlist[] NOT found.' >&4
17400                 d_strerror="$undef"
17401                 d_syserrlst="$undef"
17402                 d_strerrm='"unknown"'
17403     fi
17404 fi
17405
17406 : see if strerror_r exists
17407 set strerror_r d_strerror_r
17408 eval $inlibc
17409 case "$d_strerror_r" in
17410 "$define")
17411         hdrs="$i_systypes sys/types.h define stdio.h $i_string string.h"
17412         case "$d_strerror_r_proto:$usethreads" in
17413         ":define")      d_strerror_r_proto=define
17414                 set d_strerror_r_proto strerror_r $hdrs
17415                 eval $hasproto ;;
17416         *)      ;;
17417         esac
17418         case "$d_strerror_r_proto" in
17419         define)
17420         case "$strerror_r_proto" in
17421         ''|0) try='int strerror_r(int, char*, size_t);'
17422         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBW ;;
17423         esac
17424         case "$strerror_r_proto" in
17425         ''|0) try='int strerror_r(int, char*, int);'
17426         ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBI ;;
17427         esac
17428         case "$strerror_r_proto" in
17429         ''|0) try='char* strerror_r(int, char*, size_t);'
17430         ./protochk "extern $try" $hdrs && strerror_r_proto=B_IBW ;;
17431         esac
17432         case "$strerror_r_proto" in
17433         ''|0)   d_strerror_r=undef
17434                 strerror_r_proto=0
17435                 echo "Disabling strerror_r, cannot determine prototype." >&4 ;;
17436         * )     case "$strerror_r_proto" in
17437                 REENTRANT_PROTO*) ;;
17438                 *) strerror_r_proto="REENTRANT_PROTO_$strerror_r_proto" ;;
17439                 esac
17440                 echo "Prototype: $try" ;;
17441         esac
17442         ;;
17443         *)      case "$usethreads" in
17444                 define) echo "strerror_r has no prototype, not using it." >&4 ;;
17445                 esac
17446                 d_strerror_r=undef
17447                 strerror_r_proto=0
17448                 ;;
17449         esac
17450         ;;
17451 *)      strerror_r_proto=0
17452         ;;
17453 esac
17454
17455 : see if strftime exists
17456 set strftime d_strftime
17457 eval $inlibc
17458
17459 : see if strlcat exists
17460 set strlcat d_strlcat
17461 eval $inlibc
17462
17463 : see if strlcpy exists
17464 set strlcpy d_strlcpy
17465 eval $inlibc
17466
17467 : see if strtod exists
17468 set strtod d_strtod
17469 eval $inlibc
17470
17471 : see if strtol exists
17472 set strtol d_strtol
17473 eval $inlibc
17474
17475 : see if strtold exists
17476 set strtold d_strtold
17477 eval $inlibc
17478
17479 : see if strtoll exists
17480 set strtoll d_strtoll
17481 eval $inlibc
17482
17483 case "$d_longlong-$d_strtoll" in
17484 "$define-$define")
17485         $cat <<EOM
17486 Checking whether your strtoll() works okay...
17487 EOM
17488         $cat >try.c <<'EOCP'
17489 #include <errno.h>
17490 #ifdef __hpux
17491 #define strtoll __strtoll
17492 #endif
17493 #ifdef __EMX__
17494 #define strtoll _strtoll
17495 #endif
17496 #include <stdio.h>
17497 extern long long int strtoll(char *s, char **, int); 
17498 static int bad = 0;
17499 int check(char *s, long long ell, int een) {
17500         long long gll;
17501         errno = 0;
17502         gll = strtoll(s, 0, 10);
17503         if (!((gll == ell) && (errno == een)))
17504                 bad++;
17505 }
17506 int main() {
17507         check(" 1",                                      1LL, 0);
17508         check(" 0",                                      0LL, 0);
17509         check("-1",                                     -1LL, 0);
17510         check("-9223372036854775808", -9223372036854775808LL, 0);
17511         check("-9223372036854775808", -9223372036854775808LL, 0);
17512         check(" 9223372036854775807",  9223372036854775807LL, 0);
17513         check("-9223372036854775808", -9223372036854775808LL, 0);
17514         check(" 9223372036854775808",  9223372036854775807LL, ERANGE);
17515         check("-9223372036854775809", -9223372036854775808LL, ERANGE);
17516         if (!bad)
17517                 printf("ok\n");
17518 }
17519 EOCP
17520         set try
17521         if eval $compile; then
17522                 yyy=`$run ./try`
17523                 case "$yyy" in
17524                 ok) echo "Your strtoll() seems to be working okay." ;;
17525                 *) cat <<EOM >&4
17526 Your strtoll() doesn't seem to be working okay.
17527 EOM
17528                    d_strtoll="$undef"
17529                    ;;
17530                 esac
17531         else
17532                 echo "(I can't seem to compile the test program--assuming it doesn't)"
17533                 d_strtoll="$undef"
17534         fi
17535         ;;
17536 esac
17537
17538 : see if strtoq exists
17539 set strtoq d_strtoq
17540 eval $inlibc
17541
17542 : see if strtoul exists
17543 set strtoul d_strtoul
17544 eval $inlibc
17545
17546 case "$d_strtoul" in
17547 "$define")
17548         $cat <<EOM
17549 Checking whether your strtoul() works okay...
17550 EOM
17551         $cat >try.c <<'EOCP'
17552 #include <errno.h>
17553 #include <stdio.h>
17554 extern unsigned long int strtoul(char *s, char **, int); 
17555 static int bad = 0;
17556 void check(char *s, unsigned long eul, int een) {
17557         unsigned long gul;
17558         errno = 0;
17559         gul = strtoul(s, 0, 10);
17560         if (!((gul == eul) && (errno == een)))
17561                 bad++;
17562 }
17563 int main() {
17564         check(" 1", 1L, 0);
17565         check(" 0", 0L, 0);
17566 EOCP
17567         case "$longsize" in
17568         8)
17569             $cat >>try.c <<'EOCP'
17570         check("18446744073709551615", 18446744073709551615UL, 0);
17571         check("18446744073709551616", 18446744073709551615UL, ERANGE);
17572 #if 0 /* strtoul() for /^-/ strings is undefined. */
17573         check("-1", 18446744073709551615UL, 0);
17574         check("-18446744073709551614", 2, 0);
17575         check("-18446744073709551615", 1, 0);
17576         check("-18446744073709551616", 18446744073709551615UL, ERANGE);
17577         check("-18446744073709551617", 18446744073709551615UL, ERANGE);
17578 #endif
17579 EOCP
17580                 ;;
17581         4)
17582                     $cat >>try.c <<'EOCP'
17583         check("4294967295", 4294967295UL, 0);
17584         check("4294967296", 4294967295UL, ERANGE);
17585 #if 0 /* strtoul() for /^-/ strings is undefined. */
17586         check("-1", 4294967295UL, 0);
17587         check("-4294967294", 2, 0);
17588         check("-4294967295", 1, 0);
17589         check("-4294967296", 4294967295UL, ERANGE);
17590         check("-4294967297", 4294967295UL, ERANGE);
17591 #endif
17592 EOCP
17593                 ;;
17594         *)
17595 : Should we write these tests to be more portable by sprintf-ing
17596 : ~0 and then manipulating that char string as input for strtol?
17597                 ;;
17598         esac
17599         $cat >>try.c <<'EOCP'
17600         if (!bad)
17601                 printf("ok\n");
17602         return 0;
17603 }
17604 EOCP
17605         set try
17606         if eval $compile; then
17607                 case "`$run ./try`" in
17608                 ok) echo "Your strtoul() seems to be working okay." ;;
17609                 *) cat <<EOM >&4
17610 Your strtoul() doesn't seem to be working okay.
17611 EOM
17612                    d_strtoul="$undef"
17613                    ;;
17614                 esac
17615         fi
17616         ;;
17617 esac
17618
17619 : see if strtoull exists
17620 set strtoull d_strtoull
17621 eval $inlibc
17622
17623 case "$d_longlong-$d_strtoull" in
17624 "$define-$define")
17625         $cat <<EOM
17626 Checking whether your strtoull() works okay...
17627 EOM
17628         $cat >try.c <<'EOCP'
17629 #include <errno.h>
17630 #ifdef __hpux
17631 #define strtoull __strtoull
17632 #endif
17633 #include <stdio.h>
17634 extern unsigned long long int strtoull(char *s, char **, int); 
17635 static int bad = 0;
17636 int check(char *s, long long eull, int een) {
17637         long long gull;
17638         errno = 0;
17639         gull = strtoull(s, 0, 10);
17640         if (!((gull == eull) && (errno == een)))
17641                 bad++;
17642 }
17643 int main() {
17644         check(" 1",                                        1LL, 0);
17645         check(" 0",                                        0LL, 0);
17646         check("18446744073709551615",  18446744073709551615ULL, 0);
17647         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
17648 #if 0 /* strtoull() for /^-/ strings is undefined. */
17649         check("-1",                    18446744073709551615ULL, 0);
17650         check("-18446744073709551614",                     2LL, 0);
17651         check("-18446744073709551615",                     1LL, 0);
17652         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
17653         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
17654 #endif
17655         if (!bad)
17656                 printf("ok\n");
17657 }
17658 EOCP
17659         set try
17660         if eval $compile; then
17661                 case "`$run ./try`" in
17662                 ok) echo "Your strtoull() seems to be working okay." ;;
17663                 *) cat <<EOM >&4
17664 Your strtoull() doesn't seem to be working okay.
17665 EOM
17666                    d_strtoull="$undef"
17667                    ;;
17668                 esac
17669         fi
17670         ;;
17671 esac
17672
17673 : see if strtouq exists
17674 set strtouq d_strtouq
17675 eval $inlibc
17676
17677 case "$d_strtouq" in
17678 "$define")
17679         $cat <<EOM
17680 Checking whether your strtouq() works okay...
17681 EOM
17682         $cat >try.c <<'EOCP'
17683 #include <errno.h>
17684 #include <stdio.h>
17685 extern unsigned long long int strtouq(char *s, char **, int); 
17686 static int bad = 0;
17687 void check(char *s, unsigned long long eull, int een) {
17688         unsigned long long gull;
17689         errno = 0;
17690         gull = strtouq(s, 0, 10);
17691         if (!((gull == eull) && (errno == een)))
17692                 bad++;
17693 }
17694 int main() {
17695         check(" 1",                                        1LL, 0);
17696         check(" 0",                                        0LL, 0);
17697         check("18446744073709551615",  18446744073709551615ULL, 0);
17698         check("18446744073709551616",  18446744073709551615ULL, ERANGE);
17699 #if 0 /* strtouq() for /^-/ strings is undefined. */
17700         check("-1",                    18446744073709551615ULL, 0);
17701         check("-18446744073709551614",                     2LL, 0);
17702         check("-18446744073709551615",                     1LL, 0);
17703         check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
17704         check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
17705 #endif
17706         if (!bad)
17707                 printf("ok\n");
17708         return 0;
17709 }
17710 EOCP
17711         set try
17712         if eval $compile; then
17713                 case "`$run ./try`" in
17714                 ok) echo "Your strtouq() seems to be working okay." ;;
17715                 *) cat <<EOM >&4
17716 Your strtouq() doesn't seem to be working okay.
17717 EOM
17718                    d_strtouq="$undef"
17719                    ;;
17720                 esac
17721         fi
17722         ;;
17723 esac
17724
17725 : see if strxfrm exists
17726 set strxfrm d_strxfrm
17727 eval $inlibc
17728
17729 : see if symlink exists
17730 set symlink d_symlink
17731 eval $inlibc
17732
17733 : see if syscall exists
17734 set syscall d_syscall
17735 eval $inlibc
17736
17737 : see if prototype for syscall is available
17738 echo " "
17739 set d_syscallproto syscall $i_unistd unistd.h
17740 eval $hasproto
17741
17742 : see if sysconf exists
17743 set sysconf d_sysconf
17744 eval $inlibc
17745
17746 : see if system exists
17747 set system d_system
17748 eval $inlibc
17749
17750 : see if tcgetpgrp exists
17751 set tcgetpgrp d_tcgetpgrp
17752 eval $inlibc
17753
17754 : see if tcsetpgrp exists
17755 set tcsetpgrp d_tcsetpgrp
17756 eval $inlibc
17757
17758 : see if prototype for telldir is available
17759 echo " "
17760 set d_telldirproto telldir $i_systypes sys/types.h $i_dirent dirent.h
17761 eval $hasproto
17762
17763 : see if time exists
17764 echo " "
17765 if test "X$d_time" = X -o X"$timetype" = X; then
17766     if set time val -f d_time; eval $csym; $val; then
17767                 echo 'time() found.' >&4
17768                 val="$define"
17769                 rp="What is the type returned by time() on this system?"
17770                 set time_t timetype long stdio.h sys/types.h
17771                 eval $typedef_ask
17772     else
17773                 echo 'time() not found, hope that will do.' >&4
17774                 val="$undef"
17775                 timetype='int';
17776     fi
17777     set d_time
17778     eval $setvar
17779 fi
17780
17781 : see if this is a sys/times.h system
17782 set sys/times.h i_systimes
17783 eval $inhdr
17784
17785 : see if times exists
17786 echo " "
17787 if set times val -f d_times; eval $csym; $val; then
17788         echo 'times() found.' >&4
17789         d_times="$define"
17790         inc=''
17791         case "$i_systimes" in
17792         "$define") inc='sys/times.h';;
17793         esac
17794         rp="What is the type returned by times() on this system?"
17795         set clock_t clocktype long stdio.h sys/types.h $inc
17796         eval $typedef_ask
17797 else
17798         echo 'times() NOT found, hope that will do.' >&4
17799         d_times="$undef"
17800         clocktype='int'
17801 fi
17802
17803 : see if tmpnam_r exists
17804 set tmpnam_r d_tmpnam_r
17805 eval $inlibc
17806 case "$d_tmpnam_r" in
17807 "$define")
17808         hdrs="$i_systypes sys/types.h define stdio.h "
17809         case "$d_tmpnam_r_proto:$usethreads" in
17810         ":define")      d_tmpnam_r_proto=define
17811                 set d_tmpnam_r_proto tmpnam_r $hdrs
17812                 eval $hasproto ;;
17813         *)      ;;
17814         esac
17815         case "$d_tmpnam_r_proto" in
17816         define)
17817         case "$tmpnam_r_proto" in
17818         ''|0) try='char* tmpnam_r(char*);'
17819         ./protochk "extern $try" $hdrs && tmpnam_r_proto=B_B ;;
17820         esac
17821         case "$tmpnam_r_proto" in
17822         ''|0)   d_tmpnam_r=undef
17823                 tmpnam_r_proto=0
17824                 echo "Disabling tmpnam_r, cannot determine prototype." >&4 ;;
17825         * )     case "$tmpnam_r_proto" in
17826                 REENTRANT_PROTO*) ;;
17827                 *) tmpnam_r_proto="REENTRANT_PROTO_$tmpnam_r_proto" ;;
17828                 esac
17829                 echo "Prototype: $try" ;;
17830         esac
17831         ;;
17832         *)      case "$usethreads" in
17833                 define) echo "tmpnam_r has no prototype, not using it." >&4 ;;
17834                 esac
17835                 d_tmpnam_r=undef
17836                 tmpnam_r_proto=0
17837                 ;;
17838         esac
17839         ;;
17840 *)      tmpnam_r_proto=0
17841         ;;
17842 esac
17843
17844 : see if truncate exists
17845 set truncate d_truncate
17846 eval $inlibc
17847
17848 : see if ttyname_r exists
17849 set ttyname_r d_ttyname_r
17850 eval $inlibc
17851 case "$d_ttyname_r" in
17852 "$define")
17853         hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
17854         case "$d_ttyname_r_proto:$usethreads" in
17855         ":define")      d_ttyname_r_proto=define
17856                 set d_ttyname_r_proto ttyname_r $hdrs
17857                 eval $hasproto ;;
17858         *)      ;;
17859         esac
17860         case "$d_ttyname_r_proto" in
17861         define)
17862         case "$ttyname_r_proto" in
17863         ''|0) try='int ttyname_r(int, char*, size_t);'
17864         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBW ;;
17865         esac
17866         case "$ttyname_r_proto" in
17867         ''|0) try='int ttyname_r(int, char*, int);'
17868         ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBI ;;
17869         esac
17870         case "$ttyname_r_proto" in
17871         ''|0) try='char* ttyname_r(int, char*, int);'
17872         ./protochk "extern $try" $hdrs && ttyname_r_proto=B_IBI ;;
17873         esac
17874         case "$ttyname_r_proto" in
17875         ''|0)   d_ttyname_r=undef
17876                 ttyname_r_proto=0
17877                 echo "Disabling ttyname_r, cannot determine prototype." >&4 ;;
17878         * )     case "$ttyname_r_proto" in
17879                 REENTRANT_PROTO*) ;;
17880                 *) ttyname_r_proto="REENTRANT_PROTO_$ttyname_r_proto" ;;
17881                 esac
17882                 echo "Prototype: $try" ;;
17883         esac
17884         ;;
17885         *)      case "$usethreads" in
17886                 define) echo "ttyname_r has no prototype, not using it." >&4 ;;
17887                 esac
17888                 d_ttyname_r=undef
17889                 ttyname_r_proto=0
17890                 ;;
17891         esac
17892         ;;
17893 *)      ttyname_r_proto=0
17894         ;;
17895 esac
17896
17897 : see if tzname[] exists
17898 echo " "
17899 if set tzname val -a d_tzname; eval $csym; $val; then
17900         val="$define"
17901         echo 'tzname[] found.' >&4
17902 else
17903         val="$undef"
17904         echo 'tzname[] NOT found.' >&4
17905 fi
17906 set d_tzname
17907 eval $setvar
17908
17909 case "$osname" in
17910 next|rhapsody|darwin) multiarch="$define" ;;
17911 esac
17912 case "$multiarch" in
17913 ''|[nN]*) multiarch="$undef" ;;
17914 esac
17915
17916 : check for ordering of bytes in a UV
17917 echo " "
17918 case "$usecrosscompile$multiarch" in
17919 *$define*)
17920         $cat <<EOM
17921 You seem to be either cross-compiling or doing a multiarchitecture build,
17922 skipping the byteorder check.
17923
17924 EOM
17925         byteorder='ffff'
17926         ;;
17927 *)
17928         case "$byteorder" in
17929         '')
17930                 $cat <<'EOM'
17931 In the following, larger digits indicate more significance.  A big-endian
17932 machine like a Pyramid or a Motorola 680?0 chip will come out to 4321. A
17933 little-endian machine like a Vax or an Intel 80?86 chip would be 1234. Other
17934 machines may have weird orders like 3412.  A Cray will report 87654321,
17935 an Alpha will report 12345678. If the test program works the default is
17936 probably right.
17937 I'm now running the test program...
17938 EOM
17939                 $cat >try.c <<EOCP
17940 #include <stdio.h>
17941 #$i_stdlib I_STDLIB
17942 #ifdef I_STDLIB
17943 #include <stdlib.h>
17944 #endif
17945 #include <sys/types.h>
17946 typedef $uvtype UV;
17947 int main()
17948 {
17949         int i;
17950         union {
17951                 UV l;
17952                 char c[$uvsize];
17953         } u;
17954
17955         if ($uvsize > 4)
17956                 u.l = (((UV)0x08070605) << 32) | (UV)0x04030201;
17957         else
17958                 u.l = (UV)0x04030201;
17959         for (i = 0; i < $uvsize; i++)
17960                 printf("%c", u.c[i]+'0');
17961         printf("\n");
17962         exit(0);
17963 }
17964 EOCP
17965                 xxx_prompt=y
17966                 set try
17967                 if eval $compile && ./try > /dev/null; then
17968                         dflt=`$run ./try`
17969                         case "$dflt" in
17970                         [1-4][1-4][1-4][1-4]|12345678|87654321)
17971                                 echo "(The test program ran ok.)"
17972                                 echo "byteorder=$dflt"
17973                                 xxx_prompt=n
17974                         ;;
17975                         ????|????????) echo "(The test program ran ok.)" ;;
17976                         *) echo "(The test program didn't run right for some reason.)" ;;
17977                         esac
17978                 else
17979                         dflt='4321'
17980                         cat <<'EOM'
17981 (I can't seem to compile the test program.  Guessing big-endian...)
17982 EOM
17983                 fi
17984                 case "$xxx_prompt" in
17985                 y)
17986                         rp="What is the order of bytes in $uvtype?"
17987                         . ./myread
17988                         byteorder="$ans"
17989                         ;;
17990                 *)      byteorder=$dflt
17991                         ;;
17992                 esac
17993                 ;;
17994         esac
17995         $rm -f try.c try
17996         ;;
17997 esac
17998
17999
18000 $cat <<EOM
18001
18002 Checking to see whether you can access character data unalignedly...
18003 EOM
18004 case "$d_u32align" in
18005 '')   $cat >try.c <<EOCP
18006 #include <stdio.h>
18007 #$i_stdlib I_STDLIB
18008 #ifdef I_STDLIB
18009 #include <stdlib.h>
18010 #endif
18011 #define U32 $u32type
18012 #define BYTEORDER 0x$byteorder
18013 #define U8 $u8type
18014 #include <signal.h>
18015 #ifdef SIGBUS
18016 $signal_t bletch(int s) { exit(4); }
18017 #endif
18018 int main() {
18019 #if BYTEORDER == 0x1234 || BYTEORDER == 0x4321
18020     U8 buf[8];
18021     U32 *up;
18022     int i;
18023
18024     if (sizeof(U32) != 4) {
18025         printf("sizeof(U32) is not 4, but %d\n", sizeof(U32));
18026         exit(1);
18027     }
18028
18029     fflush(stdout);
18030
18031 #ifdef SIGBUS
18032     signal(SIGBUS, bletch);
18033 #endif
18034
18035     buf[0] = 0;
18036     buf[1] = 0;
18037     buf[2] = 0;
18038     buf[3] = 1;
18039     buf[4] = 0;
18040     buf[5] = 0;
18041     buf[6] = 0;
18042     buf[7] = 1;
18043
18044     for (i = 0; i < 4; i++) {
18045         up = (U32*)(buf + i);
18046         if (! ((*up == 1 << (8*i)) ||   /* big-endian */
18047                (*up == 1 << (8*(3-i)))  /* little-endian */
18048               )
18049            )
18050         {
18051             printf("read failed (%x)\n", *up);
18052             exit(2);
18053         }
18054     }
18055
18056     /* write test */
18057     for (i = 0; i < 4; i++) {
18058         up = (U32*)(buf + i);
18059         *up = 0xBeef;
18060         if (*up != 0xBeef) {
18061             printf("write failed (%x)\n", *up);
18062             exit(3);
18063         }
18064     }
18065
18066     exit(0);
18067 #else
18068     printf("1\n");
18069     exit(1);
18070 #endif
18071     return 0;
18072 }
18073 EOCP
18074 set try
18075 if eval $compile_ok; then
18076         echo "(Testing for character data alignment may crash the test.  That's okay.)" >&4
18077         $run ./try 2>&1 >/dev/null
18078         case "$?" in
18079         0)      cat >&4 <<EOM
18080 You can access character data pretty unalignedly.
18081 EOM
18082                 d_u32align="$undef"
18083                 ;;
18084         *)      cat >&4 <<EOM
18085 It seems that you must access character data in an aligned manner.
18086 EOM
18087                 d_u32align="$define"
18088                 ;;
18089         esac
18090 else
18091         rp='Can you access character data at unaligned addresses?'
18092         dflt='n'
18093         . ./myread
18094         case "$ans" in
18095         [yY]*)  d_u32align="$undef"  ;;
18096         *)      d_u32align="$define" ;;
18097         esac
18098 fi
18099 $rm -f core core.try.* try.core
18100 ;;
18101 esac
18102
18103 : see if ualarm exists
18104 set ualarm d_ualarm
18105 eval $inlibc
18106
18107 : see if umask exists
18108 set umask d_umask
18109 eval $inlibc
18110
18111 : see if unordered exists
18112 set unordered d_unordered
18113 eval $inlibc
18114
18115 : see if unsetenv exists
18116 set unsetenv d_unsetenv
18117 eval $inlibc
18118
18119 : see if usleep exists
18120 set usleep d_usleep
18121 eval $inlibc
18122
18123 : see if prototype for usleep is available
18124 echo " "
18125 set d_usleepproto usleep $i_unistd unistd.h
18126 eval $hasproto
18127
18128 : see if ustat exists
18129 set ustat d_ustat
18130 eval $inlibc
18131
18132 : see if closedir exists
18133 set closedir d_closedir
18134 eval $inlibc
18135
18136 case "$d_closedir" in
18137 "$define")
18138         echo " "
18139         echo "Checking whether closedir() returns a status..." >&4
18140         cat > try.c <<EOM
18141 #$i_dirent I_DIRENT             /**/
18142 #$i_sysdir I_SYS_DIR            /**/
18143 #$i_sysndir I_SYS_NDIR          /**/
18144 #$i_systypes I_SYS_TYPES        /**/
18145
18146 #if defined(I_SYS_TYPES)
18147 #include <sys/types.h>
18148 #endif
18149 #if defined(I_DIRENT)
18150 #include <dirent.h>
18151 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
18152 #include <sys/dir.h>
18153 #endif
18154 #else
18155 #ifdef I_SYS_NDIR
18156 #include <sys/ndir.h>
18157 #else
18158 #ifdef I_SYS_DIR
18159 #ifdef hp9000s500
18160 #include <ndir.h>       /* may be wrong in the future */
18161 #else
18162 #include <sys/dir.h>
18163 #endif
18164 #endif
18165 #endif
18166 #endif 
18167 int main() { return closedir(opendir(".")); }
18168 EOM
18169         set try
18170         if eval $compile_ok; then
18171                 if $run ./try > /dev/null 2>&1 ; then
18172                         echo "Yes, it does."
18173                         val="$undef"
18174                 else
18175                         echo "No, it doesn't."
18176                         val="$define"
18177                 fi
18178         else
18179                 echo "(I can't seem to compile the test program--assuming it doesn't)"
18180                 val="$define"
18181         fi
18182         ;;
18183 *)
18184         val="$undef";
18185         ;;
18186 esac
18187 set d_void_closedir
18188 eval $setvar
18189 $rm -f try try.*
18190 : see if there is a wait4
18191 set wait4 d_wait4
18192 eval $inlibc
18193
18194 : see if waitpid exists
18195 set waitpid d_waitpid
18196 eval $inlibc
18197
18198 : see if wcstombs exists
18199 set wcstombs d_wcstombs
18200 eval $inlibc
18201
18202 : see if wctomb exists
18203 set wctomb d_wctomb
18204 eval $inlibc
18205
18206 : see if writev exists
18207 set writev d_writev
18208 eval $inlibc
18209
18210 : preserve RCS keywords in files with variable substitution, grrr
18211 Date='$Date'
18212 Id='$Id'
18213 Log='$Log'
18214 RCSfile='$RCSfile'
18215 Revision='$Revision'
18216
18217 : check for alignment requirements
18218 echo " "
18219 case "$usecrosscompile$multiarch" in
18220 *$define*)
18221         $cat <<EOM
18222 You seem to be either cross-compiling or doing a multiarchitecture build,
18223 skipping the memory alignment check.
18224
18225 EOM
18226         case "$alignbytes" in
18227         '') alignbytes=8 ;;
18228         esac
18229         ;;
18230 *)
18231         case "$alignbytes" in
18232         '') echo "Checking alignment constraints..." >&4
18233                 if $test "X$uselongdouble" = Xdefine -a "X$d_longdbl" = Xdefine; then
18234                         $cat >try.c <<'EOCP'
18235 typedef long double NV;
18236 EOCP
18237                 else
18238                         $cat >try.c <<'EOCP'
18239 typedef double NV;
18240 EOCP
18241                 fi
18242                 $cat >>try.c <<'EOCP'
18243 #include <stdio.h>
18244 struct foobar {
18245         char foo;
18246         NV bar;
18247 } try_algn;
18248 int main()
18249 {
18250     printf("%d\n", (int)((char *)&try_algn.bar - (char *)&try_algn.foo));
18251     return(0);
18252 }
18253 EOCP
18254                 set try
18255                 if eval $compile_ok; then
18256                         dflt=`$run ./try`
18257                 else
18258                         dflt='8'
18259                         echo "(I can't seem to compile the test program...)"
18260                 fi
18261                 ;;
18262         *) dflt="$alignbytes"
18263                 ;;
18264         esac
18265         rp="Doubles must be aligned on a how-many-byte boundary?"
18266         . ./myread
18267         alignbytes="$ans"
18268         $rm -f try.c try
18269         ;;
18270 esac
18271
18272
18273 : set the base revision
18274 baserev=5.0
18275
18276 : how do we concatenate cpp tokens here?
18277 echo " "
18278 echo "Checking to see how your cpp does stuff like concatenate tokens..." >&4
18279 $cat >cpp_stuff.c <<'EOCP'
18280 #define RCAT(a,b)a/**/b
18281 #define ACAT(a,b)a ## b
18282 RCAT(Rei,ser)
18283 ACAT(Cir,cus)
18284 EOCP
18285 $cppstdin $cppflags $cppminus <cpp_stuff.c >cpp_stuff.out 2>&1
18286 if $contains 'Circus' cpp_stuff.out >/dev/null 2>&1; then
18287         echo "Oh!  Smells like ANSI's been here." >&4
18288         echo "We can catify or stringify, separately or together!"
18289         cpp_stuff=42
18290 elif $contains 'Reiser' cpp_stuff.out >/dev/null 2>&1; then
18291         echo "Ah, yes!  The good old days!" >&4
18292         echo "However, in the good old days we don't know how to stringify and"
18293         echo "catify at the same time."
18294         cpp_stuff=1
18295 else
18296         $cat >&4 <<EOM
18297 Hmm, I don't seem to be able to concatenate tokens with your cpp.
18298 You're going to have to edit the values of CAT[2-5] in config.h...
18299 EOM
18300         cpp_stuff="/* Help! How do we handle cpp_stuff? */*/"
18301 fi
18302 $rm -f cpp_stuff.*
18303
18304 : see if this is a db.h system
18305 set db.h i_db
18306 eval $inhdr
18307
18308 case "$i_db" in
18309 $define)
18310         : Check db version.
18311         echo " "
18312         echo "Checking Berkeley DB version ..." >&4
18313         $cat >try.c <<EOCP
18314 #$d_const HASCONST
18315 #ifndef HASCONST
18316 #define const
18317 #endif
18318 #include <sys/types.h>
18319 #include <stdio.h>
18320 #$i_stdlib I_STDLIB
18321 #ifdef I_STDLIB
18322 #include <stdlib.h>
18323 #endif
18324 #include <db.h>
18325 int main(int argc, char *argv[])
18326 {
18327 #ifdef DB_VERSION_MAJOR /* DB version >= 2 */
18328     int Major, Minor, Patch ;
18329     unsigned long Version ;
18330     (void)db_version(&Major, &Minor, &Patch) ;
18331     if (argc == 2) {
18332         printf("%d %d %d %d %d %d\n",
18333                DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH,
18334                Major, Minor, Patch);
18335         exit(0);
18336     }
18337     printf("You have Berkeley DB Version 2 or greater.\n");
18338
18339     printf("db.h is from Berkeley DB Version %d.%d.%d\n",
18340                 DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH);
18341     printf("libdb is from Berkeley DB Version %d.%d.%d\n",
18342                 Major, Minor, Patch) ;
18343
18344     /* check that db.h & libdb are compatible */
18345     if (DB_VERSION_MAJOR != Major || DB_VERSION_MINOR != Minor || DB_VERSION_PATCH != Patch) {
18346         printf("db.h and libdb are incompatible.\n") ;
18347         exit(3);        
18348     }
18349
18350     printf("db.h and libdb are compatible.\n") ;
18351
18352     Version = DB_VERSION_MAJOR * 1000000 + DB_VERSION_MINOR * 1000
18353                 + DB_VERSION_PATCH ;
18354
18355     /* needs to be >= 2.3.4 */
18356     if (Version < 2003004) {
18357     /* if (DB_VERSION_MAJOR == 2 && DB_VERSION_MINOR == 0 && DB_VERSION_PATCH < 5) { */
18358         printf("Perl needs Berkeley DB 2.3.4 or greater.\n") ;
18359         exit(2);        
18360     }
18361
18362     exit(0);
18363 #else
18364 #if defined(_DB_H_) && defined(BTREEMAGIC) && defined(HASHMAGIC)
18365     if (argc == 2) {
18366         printf("1 0 0\n");
18367         exit(0);
18368     }
18369     printf("You have Berkeley DB Version 1.\n");
18370     exit(0);    /* DB version < 2: the coast is clear. */
18371 #else
18372     exit(1);    /* <db.h> not Berkeley DB? */
18373 #endif
18374 #endif
18375 }
18376 EOCP
18377         set try
18378         if eval $compile_ok && $run ./try; then
18379                 echo 'Looks OK.' >&4
18380                 set `$run ./try 1`
18381                 db_version_major=$1
18382                 db_version_minor=$2
18383                 db_version_patch=$3
18384         else
18385                 echo "I can't use Berkeley DB with your <db.h>.  I'll disable Berkeley DB." >&4
18386                 i_db=$undef
18387                 case " $libs " in
18388                 *"-ldb "*)
18389                         : Remove db from list of libraries to use
18390                         echo "Removing unusable -ldb from library list" >&4
18391                         set `echo X $libs | $sed -e 's/-ldb / /' -e 's/-ldb$//'`
18392                         shift
18393                         libs="$*"
18394                         echo "libs = $libs" >&4
18395                         ;;
18396                 esac
18397         fi
18398         $rm -f try.*
18399         ;;
18400 esac
18401
18402 case "$i_db" in
18403 define)
18404         : Check the return type needed for hash 
18405         echo " "
18406         echo "Checking return type needed for hash for Berkeley DB ..." >&4
18407         $cat >try.c <<EOCP
18408 #$d_const HASCONST
18409 #ifndef HASCONST
18410 #define const
18411 #endif
18412 #include <sys/types.h>
18413 #include <db.h>
18414
18415 #ifndef DB_VERSION_MAJOR
18416 u_int32_t hash_cb (ptr, size)
18417 const void *ptr;
18418 size_t size;
18419 {
18420 }
18421 HASHINFO info;
18422 int main()
18423 {
18424         info.hash = hash_cb;
18425 }
18426 #endif
18427 EOCP
18428         if $cc $ccflags -c try.c >try.out 2>&1 ; then
18429                 if $contains warning try.out >>/dev/null 2>&1 ; then
18430                         db_hashtype='int'
18431                 else
18432                         db_hashtype='u_int32_t'
18433                 fi
18434         else
18435                 : XXX Maybe we should just give up here.
18436                 db_hashtype=u_int32_t
18437                 $cat try.out >&4
18438                 echo "Help:  I can't seem to compile the db test program." >&4
18439                 echo "Something's wrong, but I'll assume you use $db_hashtype." >&4
18440         fi
18441         $rm -f try.*
18442         echo "Your version of Berkeley DB uses $db_hashtype for hash."
18443         ;;
18444 *)      db_hashtype=u_int32_t
18445         ;;
18446 esac
18447 case "$i_db" in
18448 define)
18449         : Check the return type needed for prefix 
18450         echo " "
18451         echo "Checking return type needed for prefix for Berkeley DB ..." >&4
18452         cat >try.c <<EOCP
18453 #$d_const HASCONST
18454 #ifndef HASCONST
18455 #define const
18456 #endif
18457 #include <sys/types.h>
18458 #include <db.h>
18459
18460 #ifndef DB_VERSION_MAJOR
18461 size_t prefix_cb (key1, key2)
18462 const DBT *key1;
18463 const DBT *key2;
18464 {
18465 }
18466 BTREEINFO info;
18467 int main()
18468 {
18469         info.prefix = prefix_cb;
18470 }
18471 #endif
18472 EOCP
18473         if $cc $ccflags -c try.c  >try.out 2>&1 ; then
18474                 if $contains warning try.out >>/dev/null 2>&1 ; then
18475                         db_prefixtype='int'
18476                 else
18477                         db_prefixtype='size_t'
18478                 fi
18479         else
18480                 db_prefixtype='size_t'
18481                 : XXX Maybe we should just give up here.
18482                 $cat try.out >&4
18483                 echo "Help:  I can't seem to compile the db test program." >&4
18484                 echo "Something's wrong, but I'll assume you use $db_prefixtype." >&4
18485         fi
18486         $rm -f try.*
18487         echo "Your version of Berkeley DB uses $db_prefixtype for prefix."
18488         ;;
18489 *)      db_prefixtype='size_t'
18490         ;;
18491 esac
18492
18493
18494 : How can we generate normalized random numbers ?
18495 echo " "
18496 echo "Looking for a random number function..." >&4
18497 case "$randfunc" in
18498 '')
18499         if set drand48 val -f; eval $csym; $val; then
18500                 dflt="drand48"
18501                 echo "Good, found drand48()." >&4
18502         elif set random val -f; eval $csym; $val; then
18503                 dflt="random"
18504                 echo "OK, found random()." >&4
18505         else
18506                 dflt="rand"
18507                 echo "Yick, looks like I have to use rand()." >&4
18508         fi
18509         echo " "
18510         ;;
18511 *)
18512         dflt="$randfunc"
18513         ;;
18514 esac
18515 cont=true
18516
18517 case "$ccflags" in
18518 *-Dmy_rand=*|*-Dmy_srand=*)
18519         echo "Removing obsolete -Dmy_rand, -Dmy_srand, and -Drandbits from ccflags." >&4
18520         ccflags="`echo $ccflags | sed -e 's/-Dmy_rand=random/ /'`"
18521         ccflags="`echo $ccflags | sed -e 's/-Dmy_srand=srandom/ /'`"
18522         ccflags="`echo $ccflags | sed -e 's/-Drandbits=[0-9][0-9]*/ /'`"
18523         ;;
18524 esac
18525
18526 while $test "$cont"; do
18527         rp="Use which function to generate random numbers?"
18528         . ./myread
18529         if $test "$ans" = "$dflt"; then
18530                 : null
18531         else
18532                 randbits=''
18533         fi
18534         randfunc="$ans"
18535         if set $ans val -f; eval $csym; $val; then
18536                 cont=''
18537         else
18538                 dflt=y
18539                 rp="I cannot find function $ans. Use that name anyway?"
18540                 . ./myread
18541                 dflt=rand
18542                 case "$ans" in
18543                         [yY]*) cont='';;
18544                 esac
18545         fi
18546         case "$cont" in
18547         '')
18548                 case "$randfunc" in
18549                 drand48)
18550                         drand01="drand48()"
18551                         seedfunc="srand48"
18552                         randbits=48
18553                         randseedtype=long
18554                         ;;
18555                 rand|random)
18556                         case "$randbits" in
18557                         '')
18558 echo "Checking to see how many bits your $randfunc() function produces..." >&4
18559                                 $cat >try.c <<EOCP
18560 #$i_unistd I_UNISTD
18561 #$i_stdlib I_STDLIB
18562 #include <stdio.h>
18563 #ifdef I_UNISTD
18564 #  include <unistd.h>
18565 #endif
18566 #ifdef I_STDLIB
18567 #  include <stdlib.h>
18568 #endif
18569 int main()
18570 {
18571         register int i;
18572         register unsigned long tmp;
18573         register unsigned long max = 0L;
18574
18575         for (i = 1000; i; i--) {
18576                 tmp = (unsigned long) $randfunc();
18577                 if (tmp > max) max = tmp;
18578         }
18579         for (i = 0; max; i++)
18580                 max /= 2;
18581         printf("%d\n",i);
18582 }
18583 EOCP
18584                                 set try
18585                                 if eval $compile_ok; then
18586                                         dflt=`try`
18587                                 else
18588                                         dflt='?'
18589                                         echo "(I can't seem to compile the test program...)"
18590                                 fi
18591                                 ;;
18592                         *)
18593                                 dflt="$randbits"
18594                                 ;;
18595                         esac
18596                         rp="How many bits does your $randfunc() function produce?"
18597                         . ./myread
18598                         randbits="$ans"
18599                         $rm -f try.c try
18600                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
18601                         seedfunc="s$randfunc"
18602                         randseedtype=unsigned
18603                         ;;
18604                 *)
18605                         dflt="31"
18606                         rp="How many bits does your $randfunc() function produce?"
18607                         . ./myread
18608                         randbits="$ans"
18609                         seedfunc="s$randfunc"
18610                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
18611                         if set $seedfunc val -f; eval $csym; $val; then
18612                                 echo "(Using $seedfunc() to seed random generator)"
18613                         else
18614                                 echo "(Warning: no $seedfunc() to seed random generator)"
18615                                 seedfunc=rand
18616                         fi
18617                         randseedtype=unsigned
18618                         ;;
18619                 esac
18620                 ;;
18621         esac
18622 done
18623
18624 echo " "
18625 echo "Determining whether or not we are on an EBCDIC system..." >&4
18626 $cat >try.c <<'EOM'
18627 int main()
18628 {
18629   if ('M'==0xd4) return 0;
18630   return 1;
18631 }
18632 EOM
18633
18634 val=$undef
18635 set try
18636 if eval $compile_ok; then
18637         if $run ./try; then
18638                 echo "You seem to speak EBCDIC." >&4
18639                 val="$define"
18640         else
18641                 echo "Nope, no EBCDIC, probably ASCII or some ISO Latin. Or UTF-8." >&4
18642         fi
18643 else
18644         echo "I'm unable to compile the test program." >&4
18645         echo "I'll assume ASCII or some ISO Latin. Or UTF8." >&4
18646 fi
18647 $rm -f try try.*
18648 set ebcdic
18649 eval $setvar
18650
18651 echo " "
18652 $cat >&4 <<EOM
18653 Checking how to flush all pending stdio output...
18654 EOM
18655 # I only know how to find the first 32 possibly open files on SunOS.
18656 # See also hints/sunos_4_1.sh and util.c  --AD
18657 case "$osname" in
18658 sunos) $echo '#define PERL_FFLUSH_ALL_FOPEN_MAX 32' > try.c ;;
18659 esac
18660 $cat >>try.c <<EOCP
18661 #include <stdio.h>
18662 #$i_stdlib I_STDLIB
18663 #ifdef I_STDLIB
18664 #include <stdlib.h>
18665 #endif
18666 #$i_unistd I_UNISTD
18667 #ifdef I_UNISTD
18668 # include <unistd.h>
18669 #endif
18670 #$d_sysconf HAS_SYSCONF
18671 #$d_stdio_stream_array HAS_STDIO_STREAM_ARRAY
18672 #ifdef HAS_STDIO_STREAM_ARRAY
18673 # define STDIO_STREAM_ARRAY $stdio_stream_array
18674 #endif
18675 int main() {
18676   FILE* p;
18677   unlink("try.out");
18678   p = fopen("try.out", "w");
18679 #ifdef TRY_FPUTC
18680   fputc('x', p);
18681 #else
18682 # ifdef TRY_FPRINTF
18683   fprintf(p, "x");
18684 # endif
18685 #endif
18686 #ifdef TRY_FFLUSH_NULL
18687   fflush(NULL);
18688 #endif
18689 #ifdef TRY_FFLUSH_ALL
18690   {
18691     long open_max = -1;
18692 # ifdef PERL_FFLUSH_ALL_FOPEN_MAX
18693     open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
18694 # else
18695 #  if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
18696     open_max = sysconf(_SC_OPEN_MAX);
18697 #  else
18698 #   ifdef FOPEN_MAX
18699     open_max = FOPEN_MAX;
18700 #   else
18701 #    ifdef OPEN_MAX
18702     open_max = OPEN_MAX;
18703 #    else
18704 #     ifdef _NFILE
18705     open_max = _NFILE;
18706 #     endif
18707 #    endif
18708 #   endif
18709 #  endif
18710 # endif 
18711 # ifdef HAS_STDIO_STREAM_ARRAY
18712     if (open_max > 0) {
18713       long i;
18714       for (i = 0; i < open_max; i++)
18715             if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
18716                 STDIO_STREAM_ARRAY[i]._file < open_max &&
18717                 STDIO_STREAM_ARRAY[i]._flag)
18718                 fflush(&STDIO_STREAM_ARRAY[i]);
18719     }   
18720   }
18721 # endif
18722 #endif
18723   _exit(42);
18724 }
18725 EOCP
18726 : first we have to find out how _not_ to flush
18727 $to try.c
18728 if $test "X$fflushNULL" = X -o "X$fflushall" = X; then
18729     output=''
18730     set try -DTRY_FPUTC
18731     if eval $compile; then
18732             $run ./try 2>/dev/null
18733             code="$?"
18734             $from try.out
18735             if $test ! -s try.out -a "X$code" = X42; then
18736                 output=-DTRY_FPUTC
18737             fi
18738     fi
18739     case "$output" in
18740     '')
18741             set try -DTRY_FPRINTF
18742             if eval $compile; then
18743                     $run ./try 2>/dev/null
18744                     code="$?"
18745                     $from try.out
18746                     if $test ! -s try.out -a "X$code" = X42; then
18747                         output=-DTRY_FPRINTF
18748                     fi
18749             fi
18750         ;;
18751     esac
18752 fi
18753 : check for fflush NULL behaviour
18754 case "$fflushNULL" in
18755 '')     set try -DTRY_FFLUSH_NULL $output
18756         if eval $compile; then
18757                 $run ./try 2>/dev/null
18758                 code="$?"
18759                 $from try.out
18760                 if $test -s try.out -a "X$code" = X42; then
18761                         fflushNULL="`$cat try.out`"
18762                 else
18763                         if $test "X$code" != X42; then
18764                                 $cat >&4 <<EOM
18765 (If this test failed, don't worry, we'll try another method shortly.)
18766 EOM
18767                         fi
18768                 fi
18769         fi
18770         $rm -f core try.core core.try.*
18771         case "$fflushNULL" in
18772         x)      $cat >&4 <<EOM
18773 Your fflush(NULL) works okay for output streams.
18774 Let's see if it clobbers input pipes...
18775 EOM
18776 # As of mid-March 2000 all versions of Solaris appear to have a stdio
18777 # bug that improperly flushes the input end of pipes.  So we avoid the
18778 # autoflush on fork/system/exec support for now. :-(
18779 $cat >tryp.c <<EOCP
18780 #include <stdio.h>
18781 int
18782 main(int argc, char **argv)
18783 {
18784     char buf[1024];
18785     int i;
18786     char *bp = buf;
18787     while (1) {
18788         while ((i = getc(stdin)) != -1
18789                && (*bp++ = i) != '\n'
18790                && bp < &buf[1024])
18791         /* DO NOTHING */ ;
18792         *bp = '\0';
18793         fprintf(stdout, "%s", buf);
18794         fflush(NULL);
18795         if (i == -1)
18796             return 0;
18797         bp = buf;
18798     }
18799 }
18800 EOCP
18801                 fflushNULL="$define"
18802                 set tryp
18803                 if eval $compile; then
18804                     $rm -f tryp.out
18805                     $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
18806                     if cmp tryp.c tryp.out >/dev/null 2>&1; then
18807                        $cat >&4 <<EOM
18808 fflush(NULL) seems to behave okay with input streams.
18809 EOM
18810                         fflushNULL="$define"
18811                     else
18812                         $cat >&4 <<EOM
18813 Ouch, fflush(NULL) clobbers input pipes!  We will not use it.
18814 EOM
18815                         fflushNULL="$undef"
18816                     fi
18817                 fi
18818                 $rm -f core tryp.c tryp.core core.tryp.*
18819                 ;;
18820         '')     $cat >&4 <<EOM
18821 Your fflush(NULL) isn't working (contrary to ANSI C).
18822 EOM
18823                 fflushNULL="$undef"
18824                 ;;
18825         *)      $cat >&4 <<EOM
18826 Cannot figure out whether your fflush(NULL) works or not.
18827 I'm assuming it doesn't (contrary to ANSI C).
18828 EOM
18829                 fflushNULL="$undef"
18830                 ;;
18831         esac
18832         ;;
18833 $define|true|[yY]*)
18834         fflushNULL="$define"
18835         ;;
18836 *)
18837         fflushNULL="$undef"
18838         ;;
18839 esac
18840 : check explicit looping only if NULL did not work, and if the pipe
18841 : bug does not show up on an explicit flush too
18842 case "$fflushNULL" in
18843 "$undef")
18844         $cat >tryp.c <<EOCP
18845 #include <stdio.h>
18846 int
18847 main(int argc, char **argv)
18848 {
18849     char buf[1024];
18850     int i;
18851     char *bp = buf;
18852     while (1) {
18853         while ((i = getc(stdin)) != -1
18854                && (*bp++ = i) != '\n'
18855                && bp < &buf[1024])
18856         /* DO NOTHING */ ;
18857         *bp = '\0';
18858         fprintf(stdout, "%s", buf);
18859         fflush(stdin);
18860         if (i == -1)
18861             return 0;
18862         bp = buf;
18863     }
18864 }
18865 EOCP
18866         set tryp
18867         if eval $compile; then
18868             $rm -f tryp.out
18869             $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
18870             if cmp tryp.c tryp.out >/dev/null 2>&1; then
18871                $cat >&4 <<EOM
18872 Good, at least fflush(stdin) seems to behave okay when stdin is a pipe.
18873 EOM
18874                 : now check for fflushall behaviour
18875                 case "$fflushall" in
18876                 '')     set try -DTRY_FFLUSH_ALL $output
18877                         if eval $compile; then
18878                                 $cat >&4 <<EOM
18879 (Now testing the other method--but note that this also may fail.)
18880 EOM
18881                                 $run ./try 2>/dev/null
18882                                 code=$?
18883                                 $from try.out
18884                                 if $test -s try.out -a "X$code" = X42; then
18885                                         fflushall="`$cat try.out`"
18886                                 fi
18887                         fi
18888                         $rm -f core try.core core.try.*
18889                         case "$fflushall" in
18890                         x)      $cat >&4 <<EOM
18891 Whew. Flushing explicitly all the stdio streams works.
18892 EOM
18893                                 fflushall="$define"
18894                                 ;;
18895                         '')     $cat >&4 <<EOM
18896 Sigh. Flushing explicitly all the stdio streams doesn't work.
18897 EOM
18898                                 fflushall="$undef"
18899                                 ;;
18900                         *)      $cat >&4 <<EOM
18901 Cannot figure out whether flushing stdio streams explicitly works or not.
18902 I'm assuming it doesn't.
18903 EOM
18904                                 fflushall="$undef"
18905                                 ;;
18906                         esac
18907                         ;;
18908                 "$define"|true|[yY]*)
18909                         fflushall="$define"
18910                         ;;
18911                 *)
18912                         fflushall="$undef"
18913                         ;;
18914                 esac
18915             else
18916                 $cat >&4 <<EOM
18917 All is futile.  Even fflush(stdin) clobbers input pipes!
18918 EOM
18919                 fflushall="$undef"
18920             fi
18921         else
18922             fflushall="$undef"
18923         fi
18924         $rm -f core tryp.c tryp.core core.tryp.*
18925         ;;
18926 *)      fflushall="$undef"
18927         ;;
18928 esac
18929
18930 case "$fflushNULL$fflushall" in
18931 undefundef)
18932         $cat <<EOM
18933 OK, I give up.  I cannot figure out how to flush pending stdio output.
18934 We won't be flushing handles at all before fork/exec/popen.
18935 EOM
18936         ;;
18937 esac
18938 $rm -f try.* try$exe_ext
18939
18940 : Store the full pathname to the ar program for use in the C program
18941 : Respect a hint or command line value for full_ar.
18942 case "$full_ar" in
18943 '') full_ar=$ar ;;
18944 esac
18945
18946 : Store the full pathname to the sed program for use in the C program
18947 full_sed=$sed
18948
18949 : see what type gids are declared as in the kernel
18950 echo " "
18951 echo "Looking for the type for group ids returned by getgid()."
18952 set gid_t gidtype xxx stdio.h sys/types.h
18953 eval $typedef
18954 case "$gidtype" in
18955 xxx)
18956         xxx=`./findhdr sys/user.h`
18957         set `grep 'groups\[NGROUPS\];' "$xxx" 2>/dev/null` unsigned short
18958         case $1 in
18959         unsigned) dflt="$1 $2" ;;
18960         *) dflt="$1" ;;
18961         esac
18962         ;;
18963 *) dflt="$gidtype";;
18964 esac
18965 case "$gidtype" in
18966 gid_t) echo "gid_t found." ;;
18967 *)      rp="What is the type for group ids returned by getgid()?"
18968         . ./myread
18969         gidtype="$ans"
18970         ;;
18971 esac
18972
18973 echo " "
18974 case "$gidtype" in
18975 *_t) zzz="$gidtype"     ;;
18976 *)   zzz="gid"          ;;
18977 esac
18978 echo "Checking the size of $zzz..." >&4 
18979 cat > try.c <<EOCP
18980 #include <sys/types.h>
18981 #include <stdio.h>
18982 #$i_stdlib I_STDLIB
18983 #ifdef I_STDLIB
18984 #include <stdlib.h>
18985 #endif
18986 int main() {
18987     printf("%d\n", (int)sizeof($gidtype));
18988     exit(0);
18989 }
18990 EOCP
18991 set try
18992 if eval $compile_ok; then
18993         yyy=`$run ./try`
18994         case "$yyy" in
18995         '')     gidsize=4
18996                 echo "(I can't execute the test program--guessing $gidsize.)" >&4
18997                 ;;
18998         *)      gidsize=$yyy
18999                 echo "Your $zzz is $gidsize bytes long."
19000                 ;;
19001         esac
19002 else
19003         gidsize=4
19004         echo "(I can't compile the test program--guessing $gidsize.)" >&4
19005 fi
19006
19007
19008 echo " "
19009 case "$gidtype" in
19010 *_t) zzz="$gidtype"     ;;
19011 *)   zzz="gid"          ;;
19012 esac
19013 echo "Checking the sign of $zzz..." >&4 
19014 cat > try.c <<EOCP
19015 #include <sys/types.h>
19016 #include <stdio.h>
19017 int main() {
19018         $gidtype foo = -1;
19019         if (foo < 0)
19020                 printf("-1\n");
19021         else
19022                 printf("1\n");
19023 }
19024 EOCP
19025 set try
19026 if eval $compile; then
19027         yyy=`$run ./try`
19028         case "$yyy" in
19029         '')     gidsign=1
19030                 echo "(I can't execute the test program--guessing unsigned.)" >&4
19031                 ;;
19032         *)      gidsign=$yyy
19033                 case "$gidsign" in
19034                  1) echo "Your $zzz is unsigned." ;;
19035                 -1) echo "Your $zzz is signed."   ;;
19036                 esac
19037                 ;;
19038         esac
19039 else
19040         gidsign=1
19041         echo "(I can't compile the test program--guessing unsigned.)" >&4
19042 fi
19043
19044
19045 echo " "
19046
19047 if $test X"$quadtype" != X; then
19048
19049 echo "Checking how to print 64-bit integers..." >&4
19050
19051 if $test X"$sPRId64" = X -a X"$quadtype" = Xint; then
19052         $cat >try.c <<'EOCP'
19053 #include <sys/types.h>
19054 #include <stdio.h>
19055 int main() {
19056   int q = 12345678901;
19057   printf("%ld\n", q);
19058 }
19059 EOCP
19060         set try
19061         if eval $compile; then
19062                 yyy=`$run ./try`
19063                 case "$yyy" in
19064                 12345678901)
19065                         sPRId64='"d"'; sPRIi64='"i"'; sPRIu64='"u"';
19066                         sPRIo64='"o"'; sPRIx64='"x"'; sPRIXU64='"X"';
19067                         echo "We will use %d."
19068                         ;;
19069                 esac
19070         fi
19071 fi
19072
19073 if $test X"$sPRId64" = X -a X"$quadtype" = Xlong; then
19074         $cat >try.c <<'EOCP'
19075 #include <sys/types.h>
19076 #include <stdio.h>
19077 int main() {
19078   long q = 12345678901;
19079   printf("%ld\n", q);
19080 }
19081 EOCP
19082         set try
19083         if eval $compile; then
19084                 yyy=`$run ./try`
19085                 case "$yyy" in
19086                 12345678901)
19087                         sPRId64='"ld"'; sPRIi64='"li"'; sPRIu64='"lu"';
19088                         sPRIo64='"lo"'; sPRIx64='"lx"'; sPRIXU64='"lX"';
19089                         echo "We will use %ld."
19090                         ;;
19091                 esac
19092         fi
19093 fi
19094
19095 if $test X"$sPRId64" = X -a X"$i_inttypes" = X"$define" -a X"$quadtype" = Xint64_t; then
19096         $cat >try.c <<'EOCP'
19097 #include <sys/types.h>
19098 #include <inttypes.h>
19099 #include <stdio.h>
19100 int main() {
19101   int64_t q = 12345678901;
19102   printf("%" PRId64 "\n", q);
19103 }
19104 EOCP
19105         set try
19106         if eval $compile; then
19107                 yyy=`$run ./try`
19108                 case "$yyy" in
19109                 12345678901)
19110                         sPRId64=PRId64; sPRIi64=PRIi64; sPRIu64=PRIu64;
19111                         sPRIo64=PRIo64; sPRIx64=PRIx64; sPRIXU64=PRIXU64;
19112                         echo "We will use the C9X style."
19113                         ;;
19114                 esac
19115         fi
19116 fi
19117
19118 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
19119         $cat >try.c <<EOCP
19120 #include <sys/types.h>
19121 #include <stdio.h>
19122 int main() {
19123   $quadtype q = 12345678901;
19124   printf("%Ld\n", q);
19125 }
19126 EOCP
19127         set try
19128         if eval $compile; then
19129                 yyy=`$run ./try`
19130                 case "$yyy" in
19131                 12345678901)
19132                         sPRId64='"Ld"'; sPRIi64='"Li"'; sPRIu64='"Lu"';
19133                         sPRIo64='"Lo"'; sPRIx64='"Lx"'; sPRIXU64='"LX"';
19134                         echo "We will use %Ld."
19135                         ;;
19136                 esac
19137         fi
19138 fi
19139
19140 if $test X"$sPRId64" = X -a X"$quadtype" = X"long long"; then
19141         $cat >try.c <<'EOCP'
19142 #include <sys/types.h>
19143 #include <stdio.h>
19144 int main() {
19145   long long q = 12345678901LL; /* AIX cc requires the LL suffix. */
19146   printf("%lld\n", q);
19147 }
19148 EOCP
19149         set try
19150         if eval $compile; then
19151                 yyy=`$run ./try`
19152                 case "$yyy" in
19153                 12345678901)
19154                         sPRId64='"lld"'; sPRIi64='"lli"'; sPRIu64='"llu"';
19155                         sPRIo64='"llo"'; sPRIx64='"llx"'; sPRIXU64='"llX"';
19156                         echo "We will use the %lld style."
19157                         ;;
19158                 esac
19159         fi
19160 fi
19161
19162 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
19163         $cat >try.c <<EOCP
19164 #include <sys/types.h>
19165 #include <stdio.h>
19166 int main() {
19167   $quadtype q = 12345678901;
19168   printf("%qd\n", q);
19169 }
19170 EOCP
19171         set try
19172         if eval $compile; then
19173                 yyy=`$run ./try`
19174                 case "$yyy" in
19175                 12345678901)
19176                         sPRId64='"qd"'; sPRIi64='"qi"'; sPRIu64='"qu"';
19177                         sPRIo64='"qo"'; sPRIx64='"qx"'; sPRIXU64='"qX"';
19178                         echo "We will use %qd."
19179                         ;;
19180                 esac
19181         fi
19182 fi
19183
19184 if $test X"$sPRId64" = X; then
19185         echo "Cannot figure out how to print 64-bit integers." >&4
19186 fi
19187
19188 $rm -f try try.*
19189
19190 fi
19191
19192 case "$sPRId64" in
19193 '')     d_PRId64="$undef"; d_PRIi64="$undef"; d_PRIu64="$undef"; 
19194         d_PRIo64="$undef"; d_PRIx64="$undef"; d_PRIXU64="$undef"; 
19195         ;;
19196 *)      d_PRId64="$define"; d_PRIi64="$define"; d_PRIu64="$define"; 
19197         d_PRIo64="$define"; d_PRIx64="$define"; d_PRIXU64="$define"; 
19198         ;;
19199 esac
19200
19201
19202 echo " "
19203 $echo "Checking the format strings to be used for Perl's internal types..." >&4
19204
19205 if $test X"$ivsize" = X8; then
19206         ivdformat="$sPRId64"
19207         uvuformat="$sPRIu64"
19208         uvoformat="$sPRIo64"
19209         uvxformat="$sPRIx64"
19210         uvXUformat="$sPRIXU64"
19211 else
19212         if $test X"$ivsize" = X"$longsize"; then
19213                 ivdformat='"ld"'
19214                 uvuformat='"lu"'
19215                 uvoformat='"lo"'
19216                 uvxformat='"lx"'
19217                 uvXUformat='"lX"'
19218         else
19219                 if $test X"$ivsize" = X"$intsize"; then
19220                         ivdformat='"d"'
19221                         uvuformat='"u"'
19222                         uvoformat='"o"'
19223                         uvxformat='"x"'
19224                         uvXUformat='"X"'
19225                 else
19226                         : far out
19227                         if $test X"$ivsize" = X"$shortsize"; then
19228                                 ivdformat='"hd"'
19229                                 uvuformat='"hu"'
19230                                 uvoformat='"ho"'
19231                                 uvxformat='"hx"'
19232                                 uvXUformat='"hX"'
19233                         fi
19234                 fi
19235         fi
19236 fi
19237
19238 if $test X"$uselongdouble" = X"$define" -a X"$d_longdbl" = X"$define" -a X"$d_PRIgldbl" = X"$define"; then
19239         nveformat="$sPRIeldbl"
19240         nvfformat="$sPRIfldbl"
19241         nvgformat="$sPRIgldbl"
19242         nvEUformat="$sPRIEUldbl"
19243         nvFUformat="$sPRIFUldbl"
19244         nvGUformat="$sPRIGUldbl"
19245 else
19246         nveformat='"e"'
19247         nvfformat='"f"'
19248         nvgformat='"g"'
19249         nvEUformat='"E"'
19250         nvFUformat='"F"'
19251         nvGUformat='"G"'
19252 fi
19253
19254 case "$ivdformat" in
19255 '') echo "$0: Fatal: failed to find format strings, cannot continue." >&4
19256     exit 1
19257     ;;
19258 esac
19259
19260
19261 echo " "
19262 $echo "Checking the format string to be used for gids..." >&4
19263
19264 case "$gidsign" in
19265 -1)     if $test X"$gidsize" = X"$ivsize"; then
19266                 gidformat="$ivdformat"
19267         else
19268                 if $test X"$gidsize" = X"$longsize"; then
19269                         gidformat='"ld"'
19270                 else
19271                         if $test X"$gidsize" = X"$intsize"; then
19272                                 gidformat='"d"'
19273                         else
19274                                 if $test X"$gidsize" = X"$shortsize"; then
19275                                         gidformat='"hd"'
19276                                 fi
19277                         fi
19278                 fi
19279         fi
19280         ;;
19281 *)      if $test X"$gidsize" = X"$uvsize"; then
19282                 gidformat="$uvuformat"
19283         else
19284                 if $test X"$gidsize" = X"$longsize"; then
19285                         gidformat='"lu"'
19286                 else
19287                         if $test X"$gidsize" = X"$intsize"; then
19288                                 gidformat='"u"'
19289                         else
19290                                 if $test X"$gidsize" = X"$shortsize"; then
19291                                         gidformat='"hu"'
19292                                 fi
19293                         fi
19294                 fi
19295         fi
19296         ;;
19297 esac
19298
19299 : see if getgroups exists
19300 set getgroups d_getgrps
19301 eval $inlibc
19302
19303 : see if setgroups exists
19304 set setgroups d_setgrps
19305 eval $inlibc
19306
19307
19308 : Find type of 2nd arg to 'getgroups()' and 'setgroups()'
19309 echo " "
19310 case "$d_getgrps$d_setgrps" in
19311 *define*)
19312         case "$groupstype" in
19313         '') dflt="$gidtype" ;;
19314         *)  dflt="$groupstype" ;;
19315         esac
19316         $cat <<EOM
19317 What type of pointer is the second argument to getgroups() and setgroups()?
19318 Usually this is the same as group ids, $gidtype, but not always.
19319
19320 EOM
19321         rp='What type pointer is the second argument to getgroups() and setgroups()?'
19322         . ./myread
19323         groupstype="$ans"
19324         ;;
19325 *)  groupstype="$gidtype";;
19326 esac
19327
19328
19329 if $test $patchlevel -lt 9; then
19330 : MAD is not available in 5.8.x or earlier.
19331     ans=n;
19332 else
19333     case "$mad" in
19334     $define|true|[yY]*) dflt='y' ;;
19335     *)                  dflt='n' ;;
19336     esac
19337     cat <<EOM
19338
19339 Would you like to build with Misc Attribute Decoration? This is development
19340 work leading to a Perl 5 to Perl 6 convertor, which imposes a space and speed
19341 overhead on the interpreter.
19342
19343 If this doesn't make any sense to you, just accept the default '$dflt'.
19344 EOM
19345     rp='Build Perl with MAD?'
19346     . ./myread
19347 fi
19348 case "$ans" in
19349 y|Y)    val="$define"
19350         madlyh='madly.h madly.act madly.tab'
19351         madlysrc='madly.c'
19352         madlyobj="madly$_o" ;;
19353 *)      val="$undef"
19354         madlyh=''
19355         madlysrc=''
19356         madlyobj='' ;;
19357 esac
19358 set mad
19359 eval $setvar
19360
19361 echo " "
19362 echo "Checking if your $make program sets \$(MAKE)..." >&4
19363 case "$make_set_make" in
19364 '')
19365         $sed 's/^X //' > testmake.mak << 'EOF'
19366 Xall:
19367 X       @echo 'maketemp="$(MAKE)"'
19368 EOF
19369         case "`$make -f testmake.mak 2>/dev/null`" in
19370         *maketemp=*) make_set_make='#' ;;
19371         *)      make_set_make="MAKE=$make" ;;
19372         esac
19373         $rm -f testmake.mak
19374         ;;
19375 esac
19376 case "$make_set_make" in
19377 '#') echo "Yup, it does.";;
19378 *) echo "Nope, it doesn't.";;
19379 esac
19380
19381 : see what type is used for mode_t
19382 rp="What is the type used for file modes for system calls (e.g. fchmod())?"
19383 set mode_t modetype int stdio.h sys/types.h
19384 eval $typedef_ask
19385
19386 : see if we need va_copy
19387 echo " "
19388 case "$i_stdarg" in
19389 "$define")
19390         $cat >try.c <<EOCP
19391 #include <stdarg.h>
19392 #include <stdio.h>
19393 #$i_stdlib I_STDLIB
19394 #ifdef I_STDLIB
19395 #include <stdlib.h>
19396 #endif
19397 #include <signal.h>
19398
19399 int
19400 ivfprintf(FILE *f, const char *fmt, va_list *valp)
19401 {
19402   return vfprintf(f, fmt, *valp);
19403 }
19404  
19405 int    
19406 myvfprintf(FILE *f, const  char *fmt, va_list val)
19407 {
19408   return ivfprintf(f, fmt, &val);
19409 }
19410       
19411 int
19412 myprintf(char *fmt, ...) 
19413 {
19414   va_list val;
19415   va_start(val, fmt);
19416   return myvfprintf(stdout, fmt, val); 
19417 }         
19418
19419 int
19420 main(int ac, char **av)
19421 {
19422   signal(SIGSEGV, exit);
19423
19424   myprintf("%s%cs all right, then\n", "that", '\'');                            
19425   exit(0);      
19426 }
19427 EOCP
19428         set try
19429         if eval $compile && $run ./try 2>&1 >/dev/null; then
19430                 case "`$run ./try`" in
19431                 "that's all right, then")
19432                         okay=yes
19433                         ;;
19434                 esac
19435         fi
19436         case "$okay" in
19437         yes)    echo "It seems that you don't need va_copy()." >&4
19438                 need_va_copy="$undef"
19439                 ;;
19440         *)      echo "It seems that va_copy() or similar will be needed." >&4
19441                 need_va_copy="$define"
19442                 ;;
19443         esac
19444         $rm -f try.* core core.* *.core *.core.*
19445         ;;
19446 *)      echo "You don't have <stdarg.h>, not checking for va_copy()." >&4
19447         ;;
19448 esac
19449
19450 : see what type is used for size_t
19451 rp="What is the type used for the length parameter for string functions?"
19452 set size_t sizetype 'unsigned int' stdio.h sys/types.h
19453 eval $typedef_ask
19454
19455 : check for type of arguments to gethostbyaddr. 
19456 if test "X$netdb_host_type" = X -o "X$netdb_hlen_type" = X; then
19457         case "$d_gethbyaddr" in
19458         $define)
19459                 $cat <<EOM
19460
19461 Checking to see what type of arguments are accepted by gethostbyaddr().
19462 EOM
19463                 hdrs="$define sys/types.h
19464                         $d_socket sys/socket.h 
19465                         $i_niin netinet/in.h 
19466                         $i_netdb netdb.h
19467                         $i_unistd unistd.h"
19468                 : The first arg can 'char *' or 'void *'
19469                 : The second arg is some of integral type
19470                 for xxx in in_addr_t 'const void *' 'const char *' 'void *' 'char *'; do
19471                         for yyy in size_t long int; do
19472                                 case "$netdb_host_type" in
19473                                 '')     try="extern struct hostent *gethostbyaddr($xxx, $yyy, int);"
19474                                         if ./protochk "$try" $hdrs; then
19475                                                 echo "Your system accepts $xxx for the first arg."
19476                                                 echo "...and $yyy for the second arg."
19477                                                 netdb_host_type="$xxx"
19478                                                 netdb_hlen_type="$yyy"
19479                                         fi
19480                                         ;;
19481                                 esac
19482                         done
19483                 done
19484                 : In case none of those worked, prompt the user.
19485                 case "$netdb_host_type" in
19486                 '')     rp='What is the type for the 1st argument to gethostbyaddr?'
19487                         dflt='char *'
19488                         . ./myread
19489                         netdb_host_type=$ans
19490                         rp='What is the type for the 2nd argument to gethostbyaddr?'
19491                         dflt="$sizetype"
19492                         . ./myread
19493                         netdb_hlen_type=$ans
19494                         ;;
19495                 esac
19496                 ;;
19497         *)      : no gethostbyaddr, so pick harmless defaults
19498                 netdb_host_type='char *'
19499                 netdb_hlen_type="$sizetype"
19500                 ;;
19501         esac
19502         # Remove the "const" if needed. -- but then we'll have a 
19503         # prototype clash!
19504         # netdb_host_type=`echo "$netdb_host_type" | sed 's/^const //'`
19505 fi
19506
19507 : check for type of argument to gethostbyname. 
19508 if test "X$netdb_name_type" = X ; then
19509         case "$d_gethbyname" in
19510         $define)
19511                 $cat <<EOM
19512
19513 Checking to see what type of argument is accepted by gethostbyname().
19514 EOM
19515                 hdrs="$define sys/types.h
19516                         $d_socket sys/socket.h 
19517                         $i_niin netinet/in.h 
19518                         $i_netdb netdb.h
19519                         $i_unistd unistd.h"
19520                 for xxx in "const char *" "char *"; do
19521                         case "$netdb_name_type" in
19522                         '')     try="extern struct hostent *gethostbyname($xxx);"
19523                                 if ./protochk "$try" $hdrs; then
19524                                         echo "Your system accepts $xxx."
19525                                         netdb_name_type="$xxx"
19526                                 fi
19527                                 ;;
19528                         esac
19529                 done
19530                 : In case none of those worked, prompt the user.
19531                 case "$netdb_name_type" in
19532                 '')     rp='What is the type for the 1st argument to gethostbyname?'
19533                         dflt='char *'
19534                         . ./myread
19535                         netdb_name_type=$ans
19536                         ;;
19537                 esac
19538                 ;;
19539         *)      : no gethostbyname, so pick harmless default
19540                 netdb_name_type='char *'
19541                 ;;
19542         esac
19543 fi
19544
19545 : check for type of 1st argument to getnetbyaddr. 
19546 if test "X$netdb_net_type" = X ; then
19547         case "$d_getnbyaddr" in
19548         $define)
19549                 $cat <<EOM
19550
19551 Checking to see what type of 1st argument is accepted by getnetbyaddr().
19552 EOM
19553                 hdrs="$define sys/types.h
19554                         $d_socket sys/socket.h 
19555                         $i_niin netinet/in.h 
19556                         $i_netdb netdb.h
19557                         $i_unistd unistd.h"
19558                 for xxx in in_addr_t "unsigned long" long "unsigned int" int; do
19559                         case "$netdb_net_type" in
19560                         '')     try="extern struct netent *getnetbyaddr($xxx, int);"
19561                                 if ./protochk "$try" $hdrs; then
19562                                         echo "Your system accepts $xxx."
19563                                         netdb_net_type="$xxx"
19564                                 fi
19565                                 ;;
19566                         esac
19567                 done
19568                 : In case none of those worked, prompt the user.
19569                 case "$netdb_net_type" in
19570                 '')     rp='What is the type for the 1st argument to getnetbyaddr?'
19571                         dflt='long'
19572                         . ./myread
19573                         netdb_net_type=$ans
19574                         ;;
19575                 esac
19576                 ;;
19577         *)      : no getnetbyaddr, so pick harmless default
19578                 netdb_net_type='long'
19579                 ;;
19580         esac
19581 fi
19582 : locate the preferred pager for this system
19583 fn=f/
19584 case "$pager" in
19585 '')
19586         dflt=''
19587         case "$pg" in
19588         /*) dflt=$pg;;
19589         [a-zA-Z]:/*) dflt=$pg;;
19590         esac
19591         case "$more" in
19592         /*) dflt=$more;;
19593         [a-zA-Z]:/*) dflt=$more;;
19594         esac
19595         case "$less" in
19596         /*) dflt=$less;;
19597         [a-zA-Z]:/*) dflt=$less;;
19598         esac
19599         case "$dflt" in
19600         '') dflt=/usr/ucb/more;;
19601         esac
19602         ;;
19603 *)      dflt="$pager"
19604         : Instruct ./getfile to trust the hinted or previous pager value,
19605         : even if it does not begin with a slash.  For example, on os2,
19606         : pager might be cmd /c more.  See comments in UU/getfile.
19607         fn="f/($pager)"
19608         ;;
19609 esac
19610 echo " "
19611 rp='What pager is used on your system?'
19612 . ./getfile
19613 pager="$ans"
19614
19615 : see what type pids are declared as in the kernel
19616 rp="What is the type of process ids on this system?"
19617 set pid_t pidtype int stdio.h sys/types.h
19618 eval $typedef_ask
19619
19620 : see if ar generates random libraries by itself
19621 echo " "
19622 echo "Checking how to generate random libraries on your machine..." >&4
19623 echo 'int bar1() { return bar2(); }' > bar1.c
19624 echo 'int bar2() { return 2; }' > bar2.c
19625 $cat > foo.c <<EOP
19626 #$i_stdlib I_STDLIB
19627 #ifdef I_STDLIB
19628 #include <stdlib.h>
19629 #endif
19630 int main() { printf("%d\n", bar1()); exit(0); }
19631 EOP
19632 $cc $ccflags -c bar1.c >/dev/null 2>&1
19633 $cc $ccflags -c bar2.c >/dev/null 2>&1
19634 $cc $ccflags -c foo.c >/dev/null 2>&1
19635 $ar rc bar$_a bar2$_o bar1$_o >/dev/null 2>&1
19636 if $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
19637         $run ./foobar >/dev/null 2>&1; then
19638         echo "$ar appears to generate random libraries itself."
19639         orderlib=false
19640         if [ "X$ranlib" = "X" ]; then
19641             ranlib=":"
19642         fi
19643 elif $ar s bar$_a >/dev/null 2>&1 &&
19644         $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
19645         $run ./foobar >/dev/null 2>&1; then
19646                 echo "a table of contents needs to be added with '$ar s'."
19647                 orderlib=false
19648                 ranlib="$ar s"
19649 elif $ar ts bar$_a >/dev/null 2>&1 &&
19650         $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
19651         $run ./foobar >/dev/null 2>&1; then
19652                 echo "a table of contents needs to be added with '$ar ts'."
19653                 orderlib=false
19654                 ranlib="$ar ts"
19655 else
19656         case "$ranlib" in
19657         :) ranlib='';;
19658         '')
19659                 ranlib=`./loc ranlib X /usr/bin /bin /usr/local/bin`
19660                 $test -f $ranlib || ranlib=''
19661                 ;;
19662         esac
19663         if $test -n "$ranlib"; then
19664                 echo "your system has '$ranlib'; we'll use that."
19665                 orderlib=false
19666         else
19667                 echo "your system doesn't seem to support random libraries"
19668                 echo "so we'll use lorder and tsort to order the libraries."
19669                 orderlib=true
19670                 ranlib=":"
19671         fi
19672 fi
19673 $rm -f foo* bar*
19674
19675 : check for type of arguments to select. 
19676 case "$selecttype" in
19677 '') case "$d_select" in
19678         $define)
19679                 echo " "
19680                 $cat <<EOM
19681 Checking to see what type of arguments are accepted by select().
19682 EOM
19683                 hdrs="$define sys/types.h
19684                         $i_systime sys/time.h 
19685                         $i_sysselct sys/select.h
19686                         $d_socket sys/socket.h"
19687                 : The first arg can be int, unsigned, or size_t
19688                 : The last arg may or may not be 'const'
19689                 val=''
19690                 : void pointer has been seen but using that
19691                 : breaks the selectminbits test
19692                 for xxx in 'fd_set *' 'int *'; do
19693                         for nfd in 'int' 'size_t' 'unsigned long' 'unsigned' ; do
19694                                 for tmo in 'struct timeval *' 'const struct timeval *'; do
19695                                         case "$val" in
19696                                         '')     try="extern select _(($nfd, $xxx, $xxx, $xxx, $tmo));"
19697                                                 if ./protochk "$try" $hdrs; then
19698                                                         echo "Your system accepts $xxx."
19699                                                         val="$xxx"
19700                                                 fi
19701                                                 ;;
19702                                         esac
19703                                 done
19704                         done
19705                 done
19706                 case "$val" in
19707                 '')     rp='What is the type for the 2nd, 3rd, and 4th arguments to select?'
19708                         case "$d_fd_set" in
19709                                 $define) dflt="fd_set *" ;;
19710                                 *)              dflt="int *" ;;
19711                         esac
19712                         . ./myread
19713                         val=$ans
19714                         ;;
19715                 esac
19716                 selecttype="$val"
19717                 ;;
19718         *)      : no select, so pick a harmless default
19719                 selecttype='int *'
19720                 ;;
19721         esac
19722         ;;
19723 esac
19724
19725 : check for the select 'width'
19726 case "$selectminbits" in
19727 '') safebits=`expr $ptrsize \* 8`
19728     case "$d_select" in
19729         $define)
19730                 $cat <<EOM
19731
19732 Checking to see on how many bits at a time your select() operates...
19733 EOM
19734                 $cat >try.c <<EOCP
19735 #include <sys/types.h>
19736 #$i_time I_TIME
19737 #$i_systime I_SYS_TIME
19738 #$i_systimek I_SYS_TIME_KERNEL
19739 #ifdef I_TIME
19740 #   include <time.h>
19741 #endif
19742 #ifdef I_SYS_TIME
19743 #   ifdef I_SYS_TIME_KERNEL
19744 #       define KERNEL
19745 #   endif
19746 #   include <sys/time.h>
19747 #   ifdef I_SYS_TIME_KERNEL
19748 #       undef KERNEL
19749 #   endif
19750 #endif
19751 #$i_sysselct I_SYS_SELECT
19752 #ifdef I_SYS_SELECT
19753 #include <sys/select.h>
19754 #endif
19755 #$d_socket HAS_SOCKET
19756 #ifdef HAS_SOCKET
19757 #   include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
19758 #endif
19759 #include <stdio.h>
19760 #$i_stdlib I_STDLIB
19761 #ifdef I_STDLIB
19762 #include <stdlib.h>
19763 #endif
19764 $selecttype b;
19765 #define S sizeof(*(b))
19766 #define MINBITS 64
19767 #define NBYTES (S * 8 > MINBITS ? S : MINBITS/8)
19768 #define NBITS  (NBYTES * 8)
19769 int main() {
19770     char *s = (char *)malloc(NBYTES);
19771     struct timeval t;
19772     int i;
19773     FILE* fp;
19774     int fd;
19775
19776     if (!s)
19777         exit(1);
19778     fclose(stdin);
19779     fp = fopen("try.c", "r");
19780     if (fp == 0)
19781       exit(2);
19782     fd = fileno(fp);
19783     if (fd < 0)
19784       exit(3);
19785     b = ($selecttype)s;
19786     for (i = 0; i < NBITS; i++)
19787         FD_SET(i, b);
19788     t.tv_sec  = 0;
19789     t.tv_usec = 0;
19790     select(fd + 1, b, 0, 0, &t);
19791     for (i = NBITS - 1; i > fd && FD_ISSET(i, b); i--);
19792     free(s);
19793     printf("%d\n", i + 1);
19794     return 0;
19795 }
19796 EOCP
19797                 set try
19798                 if eval $compile_ok; then
19799                         selectminbits=`$run ./try`
19800                         case "$selectminbits" in
19801                         '')     cat >&4 <<EOM
19802 Cannot figure out on how many bits at a time your select() operates.
19803 I'll play safe and guess it is $safebits bits.
19804 EOM
19805                                 selectminbits=$safebits
19806                                 bits="$safebits bits"
19807                                 ;;
19808                         1)      bits="1 bit" ;;
19809                         *)      bits="$selectminbits bits" ;;
19810                         esac
19811                         echo "Your select() operates on $bits at a time." >&4
19812                 else
19813                         rp='What is the minimum number of bits your select() operates on?'
19814                         case "$byteorder" in
19815                         12345678)       dflt=64 ;;
19816                         1234)           dflt=32 ;;
19817                         *)              dflt=1  ;;
19818                         esac
19819                         . ./myread
19820                         val=$ans
19821                         selectminbits="$val"
19822                 fi
19823                 $rm -f try.* try
19824                 ;;
19825         *)      : no select, so pick a harmless default
19826                 selectminbits=$safebits
19827                 ;;
19828         esac
19829         ;;
19830 esac
19831
19832 : Trace out the files included by signal.h, then look for SIGxxx names.
19833 : Remove SIGARRAYSIZE used by HPUX.
19834 : Remove SIGSTKSIZE used by Linux.
19835 : Remove SIGSTKSZ used by Posix.
19836 : Remove SIGTYP void lines used by OS2.
19837 : Some cpps, like os390, dont give the file name anywhere
19838 if [ "X$fieldn" = X ]; then
19839         : Just make some guesses.  We check them later.
19840         xxx='/usr/include/signal.h /usr/include/sys/signal.h'
19841 else
19842         xxx=`echo '#include <signal.h>' |
19843         $cppstdin $cppminus $cppflags 2>/dev/null |
19844         $grep '^[       ]*#.*include' | 
19845         $awk "{print \\$$fieldn}" | $sed 's!"!!g' | $sed 's!\\\\\\\\!/!g' | $sort | $uniq`
19846 fi
19847 : Check this list of files to be sure we have parsed the cpp output ok.
19848 : This will also avoid potentially non-existent files, such 
19849 : as ../foo/bar.h
19850 xxxfiles=''
19851 for xx in $xxx /dev/null ; do
19852         $test -f "$xx" && xxxfiles="$xxxfiles $xx"
19853 done
19854 : If we have found no files, at least try signal.h
19855 case "$xxxfiles" in
19856 '')     xxxfiles=`./findhdr signal.h` ;;
19857 esac
19858 xxx=`awk '
19859 $1 ~ /^#define$/ && $2 ~ /^SIG[A-Z0-9]*$/ && $2 !~ /SIGARRAYSIZE/ && $2 !~ /SIGSTKSIZE/ && $2 !~ /SIGSTKSZ/ && $3 !~ /void/ {
19860         print substr($2, 4, 20)
19861 }
19862 $1 == "#" && $2 ~ /^define$/ && $3 ~ /^SIG[A-Z0-9]*$/ && $3 !~ /SIGARRAYSIZE/ && $4 !~ /void/ {
19863         print substr($3, 4, 20)
19864 }' $xxxfiles`
19865 : Append some common names just in case the awk scan failed.
19866 xxx="$xxx ABRT ALRM BUS CANCEL CHLD CLD CONT DIL EMT FPE"
19867 xxx="$xxx FREEZE HUP ILL INT IO IOT KILL LOST LWP PHONE"
19868 xxx="$xxx PIPE POLL PROF PWR QUIT RTMAX RTMIN SEGV STKFLT STOP"
19869 xxx="$xxx SYS TERM THAW TRAP TSTP TTIN TTOU URG USR1 USR2"
19870 xxx="$xxx USR3 USR4 VTALRM WAITING WINCH WIND WINDOW XCPU XFSZ"
19871
19872 : generate a few handy files for later
19873 $cat > signal.c <<EOCP
19874 #include <sys/types.h>
19875 #include <signal.h>
19876 #$i_stdlib I_STDLIB
19877 #ifdef I_STDLIB
19878 #include <stdlib.h>
19879 #endif
19880 #include <stdio.h>
19881 int main() {
19882
19883 /* Strange style to avoid deeply-nested #if/#else/#endif */
19884 #ifndef NSIG
19885 #  ifdef _NSIG
19886 #    define NSIG (_NSIG)
19887 #  endif
19888 #endif
19889
19890 #ifndef NSIG
19891 #  ifdef SIGMAX
19892 #    define NSIG (SIGMAX+1)
19893 #  endif
19894 #endif
19895
19896 #ifndef NSIG
19897 #  ifdef SIG_MAX
19898 #    define NSIG (SIG_MAX+1)
19899 #  endif
19900 #endif
19901
19902 #ifndef NSIG
19903 #  ifdef _SIG_MAX
19904 #    define NSIG (_SIG_MAX+1)
19905 #  endif
19906 #endif
19907
19908 #ifndef NSIG
19909 #  ifdef MAXSIG
19910 #    define NSIG (MAXSIG+1)
19911 #  endif
19912 #endif
19913
19914 #ifndef NSIG
19915 #  ifdef MAX_SIG
19916 #    define NSIG (MAX_SIG+1)
19917 #  endif
19918 #endif
19919
19920 #ifndef NSIG
19921 #  ifdef SIGARRAYSIZE
19922 #    define NSIG SIGARRAYSIZE /* Assume ary[SIGARRAYSIZE] */
19923 #  endif
19924 #endif
19925
19926 #ifndef NSIG
19927 #  ifdef _sys_nsig
19928 #    define NSIG (_sys_nsig) /* Solaris 2.5 */
19929 #  endif
19930 #endif
19931
19932 /* Default to some arbitrary number that's big enough to get most
19933    of the common signals.
19934 */
19935 #ifndef NSIG
19936 #    define NSIG 50
19937 #endif
19938
19939 printf("NSIG %d\n", NSIG);
19940
19941 #ifndef JUST_NSIG
19942
19943 EOCP
19944
19945 echo $xxx | $tr ' ' $trnl | $sort | $uniq | $awk '
19946 {
19947         printf "#ifdef SIG"; printf $1; printf "\n"
19948         printf "printf(\""; printf $1; printf " %%d\\n\",SIG";
19949         printf $1; printf ");\n"
19950         printf "#endif\n"
19951 }
19952 END {
19953         printf "#endif /* JUST_NSIG */\n";
19954         printf "exit(0);\n}\n";
19955 }
19956 ' >>signal.c
19957 $cat >signal.awk <<'EOP'
19958 BEGIN { ndups = 0 }
19959 $1 ~ /^NSIG$/ { nsig = $2 }
19960 ($1 !~ /^NSIG$/) && (NF == 2) && ($2 ~ /^[0-9][0-9]*$/) {
19961     if ($2 > maxsig) { maxsig = $2 }
19962     if (sig_name[$2]) {
19963         dup_name[ndups] = $1
19964         dup_num[ndups] = $2
19965         ndups++ 
19966     }
19967     else {
19968         sig_name[$2] = $1
19969         sig_num[$2] = $2
19970     }
19971 }
19972 END { 
19973     if (nsig == 0) {
19974         nsig = maxsig + 1
19975     }
19976     printf("NSIG %d\n", nsig);
19977     for (n = 1; n < nsig; n++) {
19978         if (sig_name[n]) {
19979             printf("%s %d\n", sig_name[n], sig_num[n])
19980         }
19981         else {
19982             printf("NUM%d %d\n", n, n) 
19983         }
19984     }
19985     for (n = 0; n < ndups; n++) {
19986         printf("%s %d\n", dup_name[n], dup_num[n])
19987     }
19988 }
19989 EOP
19990 $cat >signal_cmd <<EOS
19991 $startsh
19992 if $test -s signal.lst; then
19993     echo "Using your existing signal.lst file"
19994         exit 0
19995 fi
19996 xxx="$xxx"
19997 EOS
19998 $cat >>signal_cmd <<'EOS'
19999
20000 set signal
20001 if eval $compile_ok; then
20002         $run ./signal$_exe | ($sort -n -k 2 2>/dev/null || $sort -n +1) | $uniq | $awk -f signal.awk >signal.lst
20003 else
20004         echo "(I can't seem be able to compile the whole test program)" >&4
20005         echo "(I'll try it in little pieces.)" >&4
20006         set signal -DJUST_NSIG
20007         if eval $compile_ok; then
20008                 $run ./signal$_exe > signal.nsg
20009                 $cat signal.nsg
20010         else
20011                 echo "I can't seem to figure out how many signals you have." >&4
20012                 echo "Guessing 50." >&4
20013                 echo 'NSIG 50' > signal.nsg
20014         fi
20015         : Now look at all the signal names, one at a time.
20016         for xx in `echo $xxx | $tr ' ' $trnl | $sort | $uniq`; do
20017                 $cat > signal.c <<EOCP
20018 #include <sys/types.h>
20019 #include <signal.h>
20020 #include <stdio.h>
20021 int main() {
20022 printf("$xx %d\n", SIG${xx});
20023 return 0;
20024 }
20025 EOCP
20026                 set signal
20027                 if eval $compile; then
20028                         echo "SIG${xx} found."
20029                         $run ./signal$_exe  >> signal.ls1
20030                 else
20031                         echo "SIG${xx} NOT found."
20032                 fi
20033         done
20034         if $test -s signal.ls1; then
20035                 $cat signal.nsg signal.ls1 |
20036                         $sort -n | $uniq | $awk -f signal.awk >signal.lst
20037         fi
20038
20039 fi
20040 if $test -s signal.lst; then
20041         :
20042 else
20043         echo "(AAK! I can't compile the test programs -- Guessing)" >&4
20044         echo 'kill -l' >signal
20045         set X `csh -f <signal`
20046         $rm -f signal
20047         shift
20048         case $# in
20049         0) set HUP INT QUIT ILL TRAP ABRT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM;;
20050         esac
20051         echo $@ | $tr ' ' $trnl | \
20052             $awk '{ printf "%s %d\n", $1, ++s; }
20053                   END { printf "NSIG %d\n", ++s }' >signal.lst
20054 fi
20055 $rm -f signal.c signal$_exe signal$_o signal.nsg signal.ls1
20056 EOS
20057 chmod a+x signal_cmd
20058 $eunicefix signal_cmd
20059
20060 : generate list of signal names
20061 echo " "
20062 case "$sig_name_init" in
20063 '') doinit=yes ;;
20064 *)  case "$sig_num_init" in
20065     ''|*,*) doinit=yes ;;
20066     esac ;;
20067 esac
20068 case "$doinit" in
20069 yes)
20070         echo "Generating a list of signal names and numbers..." >&4
20071         . ./signal_cmd
20072         sig_count=`$awk '/^NSIG/ { printf "%d", $2 }' signal.lst`
20073         sig_name=`$awk 'BEGIN { printf "ZERO " }
20074                         !/^NSIG/ { printf "%s ", $1 }' signal.lst`
20075         sig_num=`$awk  'BEGIN { printf "0 " }
20076                         !/^NSIG/ { printf "%d ", $2 }' signal.lst`
20077         sig_name_init=`$awk 'BEGIN      { printf "\"ZERO\", " }
20078                              !/^NSIG/   { printf "\"%s\", ", $1 }
20079                              END        { printf "0\n" }' signal.lst`
20080         sig_num_init=`$awk  'BEGIN      { printf "0, " }
20081                              !/^NSIG/   { printf "%d, ", $2}
20082                              END        { printf "0\n"}' signal.lst`
20083         ;;
20084 esac
20085 echo "The following $sig_count signals are available:"
20086 echo " "
20087 echo $sig_name | $awk \
20088 'BEGIN { linelen = 0 }
20089 {
20090         for (i = 1; i <= NF; i++) {
20091                 name = "SIG" $i " "
20092                 linelen = linelen + length(name)
20093                 if (linelen > 70) {
20094                         printf "\n"
20095                         linelen = length(name)
20096                 }
20097                 printf "%s", name
20098         }
20099         printf "\n"
20100 }'
20101 sig_size=`echo $sig_name | awk '{print NF}'`
20102 $rm -f signal signal.c signal.awk signal.lst signal_cmd 
20103
20104 echo " "
20105 case "$sizetype" in
20106 *_t) zzz="$sizetype"    ;;
20107 *)   zzz="filesize"     ;;
20108 esac
20109 echo "Checking the size of $zzz..." >&4 
20110 cat > try.c <<EOCP
20111 #include <sys/types.h>
20112 #include <stdio.h>
20113 #$i_stdlib I_STDLIB
20114 #ifdef I_STDLIB
20115 #include <stdlib.h>
20116 #endif
20117 int main() {
20118     printf("%d\n", (int)sizeof($sizetype));
20119     exit(0);
20120 }
20121 EOCP
20122 set try
20123 if eval $compile_ok; then
20124         yyy=`$run ./try`
20125         case "$yyy" in
20126         '')     sizesize=4
20127                 echo "(I can't execute the test program--guessing $sizesize.)" >&4
20128                 ;;
20129         *)      sizesize=$yyy
20130                 echo "Your $zzz size is $sizesize bytes."
20131                 ;;
20132         esac
20133 else
20134         sizesize=4
20135         echo "(I can't compile the test program--guessing $sizesize.)" >&4
20136 fi
20137
20138
20139 : check for socklen_t
20140 echo " "
20141 echo "Checking to see if you have socklen_t..." >&4
20142 $cat >try.c <<EOCP
20143 #include <sys/types.h>
20144 #$d_socket HAS_SOCKET
20145 #ifdef HAS_SOCKET
20146 #include <sys/socket.h>
20147 #endif
20148 int main() { socklen_t x = 16; }
20149 EOCP
20150 set try
20151 if eval $compile; then
20152         val="$define"
20153         echo "You have socklen_t."
20154 else
20155         val="$undef"
20156         echo "You do not have socklen_t."
20157         case "$sizetype" in
20158         size_t) echo "(You do have size_t, that might work. Some people are happy with just an int.)" ;;
20159         esac
20160 fi
20161 $rm -f try try.*
20162 set d_socklen_t
20163 eval $setvar
20164
20165 : see if this is a socks.h system
20166 set socks.h i_socks
20167 eval $inhdr
20168
20169 : check for type of the size argument to socket calls
20170 case "$d_socket" in
20171 "$define")
20172         $cat <<EOM
20173
20174 Checking to see what type is the last argument of accept().
20175 EOM
20176         yyy=''
20177         case "$d_socklen_t" in
20178         "$define") yyy="$yyy socklen_t"
20179         esac
20180         yyy="$yyy $sizetype int long unsigned"
20181         for xxx in $yyy; do
20182                 case "$socksizetype" in
20183                 '')     try="extern int accept(int, struct sockaddr *, $xxx *);"
20184                         case "$usesocks" in
20185                         "$define")
20186                                 if ./protochk "$try" $i_systypes sys/types.h $d_socket sys/socket.h literal '#define INCLUDE_PROTOTYPES' $i_socks socks.h.; then
20187                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
20188                                         socksizetype="$xxx"
20189                                 fi
20190                                 ;;
20191                         *)      if ./protochk "$try"  $i_systypes sys/types.h $d_socket sys/socket.h; then
20192                                         echo "Your system accepts '$xxx *' for the last argument of accept()."
20193                                         socksizetype="$xxx"
20194                                 fi
20195                                 ;;
20196                         esac
20197                         ;;
20198                 esac
20199         done
20200 : In case none of those worked, prompt the user.
20201         case "$socksizetype" in
20202         '')     rp='What is the type for socket address structure sizes?'
20203                 dflt='int'
20204                 . ./myread
20205                 socksizetype=$ans
20206                 ;;
20207         esac
20208         ;;
20209 *)      : no sockets, so pick relatively harmless default
20210         socksizetype='int'
20211         ;;
20212 esac
20213
20214 : see what type is used for signed size_t
20215 set ssize_t ssizetype int stdio.h sys/types.h
20216 eval $typedef
20217 dflt="$ssizetype"
20218 $cat > try.c <<EOM
20219 #include <stdio.h>
20220 #$i_stdlib I_STDLIB
20221 #ifdef I_STDLIB
20222 #include <stdlib.h>
20223 #endif
20224 #include <sys/types.h>
20225 #define Size_t $sizetype
20226 #define SSize_t $dflt
20227 int main()
20228 {
20229         if (sizeof(Size_t) == sizeof(SSize_t))
20230                 printf("$dflt\n");
20231         else if (sizeof(Size_t) == sizeof(int))
20232                 printf("int\n");
20233         else 
20234                 printf("long\n");
20235         exit(0);
20236 }
20237 EOM
20238 echo " "
20239 set try
20240 if eval $compile_ok && $run ./try > /dev/null; then
20241         ssizetype=`$run ./try`
20242         echo "I'll be using $ssizetype for functions returning a byte count." >&4
20243 else
20244         $cat >&4 <<EOM
20245 Help! I can't compile and run the ssize_t test program: please enlighten me!
20246 (This is probably a misconfiguration in your system or libraries, and
20247 you really ought to fix it.  Still, I'll try anyway.)
20248
20249 I need a type that is the same size as $sizetype, but is guaranteed to
20250 be signed.  Common values are ssize_t, int and long.
20251
20252 EOM
20253         rp="What signed type is the same size as $sizetype?"
20254         . ./myread
20255         ssizetype="$ans"
20256 fi
20257 $rm -f try try.*
20258
20259 : see what type of char stdio uses.
20260 echo " "
20261 echo '#include <stdio.h>' > stdio.c
20262 $cppstdin $cppminus < stdio.c > stdioh
20263 if $contains 'unsigned.*char.*_ptr;' stdioh >/dev/null 2>&1 ; then
20264         echo "Your stdio uses unsigned chars." >&4
20265         stdchar="unsigned char"
20266 else
20267         echo "Your stdio uses signed chars." >&4
20268         stdchar="char"
20269 fi
20270 $rm -f stdio.* stdioh
20271
20272 : see what type uids are declared as in the kernel
20273 echo " "
20274 echo "Looking for the type for user ids returned by getuid()."
20275 set uid_t uidtype xxx stdio.h sys/types.h
20276 eval $typedef
20277 case "$uidtype" in
20278 xxx)
20279         xxx=`./findhdr sys/user.h`
20280         set `grep '_ruid;' "$xxx" 2>/dev/null` unsigned short
20281         case $1 in
20282         unsigned) dflt="$1 $2" ;;
20283         *) dflt="$1" ;;
20284         esac
20285         ;;
20286 *) dflt="$uidtype";;
20287 esac
20288 case "$uidtype" in
20289 uid_t)  echo "uid_t found." ;;
20290 *)      rp="What is the type for user ids returned by getuid()?"
20291         . ./myread
20292         uidtype="$ans"
20293         ;;
20294 esac
20295
20296 echo " "
20297 case "$uidtype" in
20298 *_t) zzz="$uidtype"     ;;
20299 *)   zzz="uid"          ;;
20300 esac
20301 echo "Checking the size of $zzz..." >&4 
20302 cat > try.c <<EOCP
20303 #include <sys/types.h>
20304 #include <stdio.h>
20305 #$i_stdlib I_STDLIB
20306 #ifdef I_STDLIB
20307 #include <stdlib.h>
20308 #endif
20309 int main() {
20310     printf("%d\n", (int)sizeof($uidtype));
20311     exit(0);
20312 }
20313 EOCP
20314 set try
20315 if eval $compile_ok; then
20316         yyy=`$run ./try`
20317         case "$yyy" in
20318         '')     uidsize=4
20319                 echo "(I can't execute the test program--guessing $uidsize.)" >&4
20320                 ;;
20321         *)      uidsize=$yyy
20322                 echo "Your $zzz is $uidsize bytes long."
20323                 ;;
20324         esac
20325 else
20326         uidsize=4
20327         echo "(I can't compile the test program--guessing $uidsize.)" >&4
20328 fi
20329
20330 echo " "
20331 case "$uidtype" in
20332 *_t) zzz="$uidtype"     ;;
20333 *)   zzz="uid"          ;;
20334 esac
20335 echo "Checking the sign of $zzz..." >&4
20336 cat > try.c <<EOCP
20337 #include <sys/types.h>
20338 #include <stdio.h>
20339 int main() {
20340         $uidtype foo = -1;
20341         if (foo < 0)
20342                 printf("-1\n");
20343         else
20344                 printf("1\n");
20345 }
20346 EOCP
20347 set try
20348 if eval $compile; then
20349         yyy=`$run ./try`
20350         case "$yyy" in
20351         '')     uidsign=1
20352                 echo "(I can't execute the test program--guessing unsigned.)" >&4
20353                 ;;
20354         *)      uidsign=$yyy
20355                 case "$uidsign" in
20356                  1) echo "Your $zzz is unsigned." ;;
20357                 -1) echo "Your $zzz is signed."   ;;
20358                 esac
20359                 ;;
20360         esac
20361 else
20362         uidsign=1
20363         echo "(I can't compile the test program--guessing unsigned.)" >&4
20364 fi
20365
20366
20367
20368 echo " "
20369 $echo "Checking the format string to be used for uids..." >&4
20370
20371 case "$uidsign" in
20372 -1)     if $test X"$uidsize" = X"$ivsize"; then
20373                 uidformat="$ivdformat"
20374         else
20375                 if $test X"$uidsize" = X"$longsize"; then
20376                         uidformat='"ld"'
20377                 else
20378                         if $test X"$uidsize" = X"$intsize"; then
20379                                 uidformat='"d"'
20380                         else
20381                                 if $test X"$uidsize" = X"$shortsize"; then
20382                                         uidformat='"hd"'
20383                                 fi
20384                         fi
20385                 fi
20386         fi
20387         ;;
20388 *)      if $test X"$uidsize" = X"$uvsize"; then
20389                 uidformat="$uvuformat"
20390         else
20391                 if $test X"$uidsize" = X"$longsize"; then
20392                         uidformat='"lu"'
20393                 else
20394                         if $test X"$uidsize" = X"$intsize"; then
20395                                 uidformat='"u"'
20396                         else
20397                                 if $test X"$uidsize" = X"$shortsize"; then
20398                                         uidformat='"hu"'
20399                                 fi
20400                         fi
20401                 fi
20402         fi
20403         ;;
20404 esac
20405
20406
20407 case "$usesitecustomize" in
20408     $define|true|[Yy]*)
20409         usesitecustomize="$define"
20410         ;;
20411     *)
20412         usesitecustomize="$undef"
20413         ;;
20414     esac
20415
20416 : determine compiler compiler
20417 case "$yacc" in
20418 '')
20419         dflt=yacc;;
20420 *)
20421         dflt="$yacc";;
20422 esac
20423 echo " "
20424 comp='yacc'
20425 if $test -f "$byacc$_exe"; then
20426         dflt="$byacc"
20427         comp="byacc or $comp"
20428 fi
20429 if $test -f "$bison$_exe"; then
20430         comp="$comp or bison -y"
20431 fi
20432 rp="Which compiler compiler ($comp) shall I use?"
20433 . ./myread
20434 yacc="$ans"
20435 case "$yacc" in
20436 *bis*)
20437         case "$yacc" in
20438         *-y*) ;;
20439         *)
20440                 yacc="$yacc -y"
20441                 echo "(Adding -y option to bison to get yacc-compatible behaviour.)"
20442                 ;;
20443         esac
20444         ;;
20445 esac
20446
20447 : see if this is a fp.h system
20448 set fp.h i_fp
20449 eval $inhdr
20450
20451 : see if this is a fp_class.h system
20452 set fp_class.h i_fp_class
20453 eval $inhdr
20454
20455 : see if gdbm.h is available
20456 set gdbm.h t_gdbm
20457 eval $inhdr
20458 case "$t_gdbm" in
20459 $define)
20460         : see if gdbm_open exists
20461         set gdbm_open d_gdbm_open
20462         eval $inlibc
20463         case "$d_gdbm_open" in
20464         $undef)
20465                 t_gdbm="$undef"
20466                 echo "We won't be including <gdbm.h>"
20467                 ;;
20468         esac
20469         ;;
20470 esac
20471 val="$t_gdbm"
20472 set i_gdbm
20473 eval $setvar
20474
20475 : see if this is a ieeefp.h system
20476 case "$i_ieeefp" in
20477 '' ) set ieeefp.h i_ieeefp
20478      eval $inhdr
20479      ;;
20480 esac
20481
20482 : see if this is a libutil.h system
20483 set libutil.h i_libutil
20484 eval $inhdr
20485
20486 : see if mach cthreads are available
20487 if test "X$usethreads" = "X$define"; then
20488         set mach/cthreads.h i_machcthr
20489         eval $inhdr
20490 else
20491         i_machcthr="$undef"
20492 fi
20493
20494
20495
20496 : see if this is a mntent.h system
20497 set mntent.h i_mntent
20498 eval $inhdr
20499
20500 : see if ndbm.h is available
20501 set ndbm.h t_ndbm
20502 eval $inhdr
20503
20504 case "$t_ndbm" in
20505 $undef)
20506     # Some Linux distributions such as RedHat 7.1 put the
20507     # ndbm.h header in /usr/include/gdbm/ndbm.h.
20508     if $test -f /usr/include/gdbm/ndbm.h; then
20509         echo '<gdbm/ndbm.h> found.'
20510         ccflags="$ccflags -I/usr/include/gdbm"
20511         cppflags="$cppflags -I/usr/include/gdbm"
20512         t_ndbm=$define
20513     fi
20514     ;;
20515 esac
20516
20517 case "$t_ndbm" in
20518 $define)
20519         : see if dbm_open exists
20520         set dbm_open d_dbm_open
20521         eval $inlibc
20522         case "$d_dbm_open" in
20523         $undef)
20524                 t_ndbm="$undef"
20525                 echo "We won't be including <ndbm.h>"
20526                 ;;
20527         esac
20528         ;;
20529 esac
20530 val="$t_ndbm"
20531 set i_ndbm
20532 eval $setvar
20533
20534 : see if net/errno.h is available
20535 val=''
20536 set net/errno.h val
20537 eval $inhdr
20538
20539 : Unfortunately, it causes problems on some systems.  Arrgh.
20540 case "$val" in
20541 $define)
20542         cat > try.c <<'EOM'
20543 #include <stdio.h>
20544 #include <errno.h>
20545 #include <net/errno.h>
20546 int func()
20547 {
20548         return ENOTSOCK;
20549 }
20550 EOM
20551         if $cc $ccflags -c try.c >/dev/null 2>&1; then
20552                 echo "We'll be including <net/errno.h>." >&4
20553         else
20554                 echo "We won't be including <net/errno.h>." >&4
20555                 val="$undef"
20556         fi
20557         $rm -f try.* try
20558         ;;
20559 esac
20560 set i_neterrno
20561 eval $setvar
20562
20563 : see if netinet/tcp.h is available
20564 set netinet/tcp.h i_netinettcp
20565 eval $inhdr
20566
20567 : see if this is a poll.h system
20568 set poll.h i_poll
20569 eval $inhdr
20570
20571 : see if this is a prot.h system
20572 set prot.h i_prot
20573 eval $inhdr
20574
20575 echo " "
20576 $echo "Guessing which symbols your C compiler and preprocessor define..." >&4
20577 $cat <<'EOSH' > Cppsym.know
20578 a29k ABI64 aegis AES_SOURCE AIX AIX32 AIX370
20579 AIX41 AIX42 AIX43 AIX_SOURCE aixpc ALL_SOURCE
20580 alliant alpha am29000 AM29000 AMD64 amd64 amiga AMIGAOS AMIX
20581 ansi ANSI_C_SOURCE apollo ardent ARM32 atarist att386 att3b
20582 BeOS BIG_ENDIAN BIT_MSF bsd BSD bsd43 bsd4_2 bsd4_3 BSD4_3 bsd4_4
20583 BSD_4_3 BSD_4_4 BSD_NET2 BSD_TIME BSD_TYPES BSDCOMPAT bsdi
20584 bull c cadmus clipper CMU COFF COMPILER_VERSION
20585 concurrent convex cpu cray CRAY CRAYMPP ctix CX_UX
20586 CYGWIN DECC DGUX DGUX_SOURCE DJGPP dmert DOLPHIN DPX2 DSO
20587 Dynix DynixPTX ELF encore EPI EXTENSIONS FAVOR_BSD
20588 FILE_OFFSET_BITS FreeBSD GCC_NEW_VARARGS gcos gcx gimpel
20589 GLIBC GLIBC_MINOR
20590 GNU_SOURCE GNUC GNUC_MINOR GNU_LIBRARY GO32 gould GOULD_PN
20591 H3050R H3050RX hbullx20 hcx host_mips
20592 hp200 hp300 hp700 HP700 hp800 hp9000
20593 hp9000s200 hp9000s300 hp9000s400 hp9000s500
20594 hp9000s700 hp9000s800 hp9k8 hp_osf hppa hpux HPUX_SOURCE
20595 i186 i286 i386 i486 i586 i686 i8086 i80960 i860 I960
20596 IA64 iAPX286 ibm ibm032 ibmesa IBMR2 ibmrt ILP32 ILP64
20597 INLINE_INTRINSICS INTRINSICS INT64 interdata is68k ksr1
20598 LANGUAGE_C LARGE_FILE_API LARGEFILE64_SOURCE
20599 LARGEFILE_SOURCE LFS64_LARGEFILE LFS_LARGEFILE
20600 Linux LITTLE_ENDIAN LONG64 LONG_DOUBLE LONG_LONG
20601 LONGDOUBLE LONGLONG LP64 luna luna88k Lynx
20602 M68000 m68k m88100 m88k M88KBCS_TARGET M_COFF
20603 M_I186 M_I286 M_I386 M_I8086 M_I86 M_I86SM M_SYS3
20604 M_SYS5 M_SYSIII M_SYSV M_UNIX M_XENIX MACH machine MachTen
20605 MATH_HAS_NO_SIDE_EFFECTS
20606 mc300 mc500 mc68000 mc68010 mc68020 mc68030 mc68040
20607 mc68060 mc68k mc68k32 mc700 mc88000 mc88100 merlin
20608 mert MiNT mips MIPS_FPSET MIPS_ISA MIPS_SIM MIPS_SZINT
20609 MIPS_SZLONG MIPS_SZPTR MIPSEB MIPSEL MODERN_C motorola
20610 mpeix MSDOS MTXINU MULTIMAX mvs MVS n16 ncl_el ncl_mr
20611 NetBSD news1500 news1700 news1800 news1900 news3700
20612 news700 news800 news900 NeXT NLS nonstopux ns16000 ns32000
20613 ns32016 ns32332 ns32k nsc32000
20614 OCS88 OEMVS OpenBSD os OS2 OS390 osf OSF1 OSF_SOURCE
20615 pa_risc PA_RISC1_1 PA_RISC2_0 PARAGON parisc
20616 pc532 pdp11 PGC PIC plexus PORTAR posix
20617 POSIX1B_SOURCE POSIX2_SOURCE POSIX4_SOURCE
20618 POSIX_C_SOURCE POSIX_SOURCE POWER
20619 PROTOTYPES PWB pyr QNX R3000 REENTRANT RES Rhapsody RISC6000
20620 riscix riscos RT S390 SA110 scs SCO sequent sgi SGI_SOURCE SH3 sinix
20621 SIZE_INT SIZE_LONG SIZE_PTR SOCKET_SOURCE SOCKETS_SOURCE
20622 sony sony_news sonyrisc sparc sparclite spectrum
20623 stardent stdc STDC_EXT stratos sun sun3 sun386
20624 Sun386i svr3 svr4 SVR4_2 SVR4_SOURCE svr5
20625 SX system SYSTYPE_BSD SYSTYPE_BSD43 SYSTYPE_BSD44
20626 SYSTYPE_SVR4 SYSTYPE_SVR5 SYSTYPE_SYSV SYSV SYSV3 SYSV4 SYSV5
20627 sysV68 sysV88 Tek4132 Tek4300 titan
20628 TM3200 TM5400 TM5600
20629 tower tower32 tower32_200 tower32_600 tower32_700
20630 tower32_800 tower32_850 tss
20631 u370 u3b u3b2 u3b20 u3b200 u3b20d u3b5
20632 ultrix UMAXV UnicomPBB UnicomPBD UNICOS UNICOSMK
20633 unix UNIX95 UNIX99 unixpc unos
20634 USE_BSD USE_FILE_OFFSET64 USE_GNU USE_ISOC9X USE_LARGEFILE USE_LARGEFILE64
20635 USE_MISC USE_POSIX USE_POSIX199309 USE_POSIX199506 USE_POSIX2
20636 USE_REENTRANT USE_SVID USE_UNIX98 USE_XOPEN USE_XOPEN_EXTENDED
20637 USGr4 USGr4_2
20638 Utek UTek UTS UWIN uxpm uxps vax venix VMESA vms x86_64 xenix Xenix286
20639 XOPEN_SOURCE XOPEN_SOURCE_EXTENDED XPG2 XPG2_EXTENDED
20640 XPG3 XPG3_EXTENDED XPG4 XPG4_EXTENDED
20641 z8000
20642 EOSH
20643 # Maybe put other stuff here too.
20644 cat <<EOSH >>Cppsym.know
20645 $osname
20646 EOSH
20647 ./tr '[a-z]' '[A-Z]' < Cppsym.know > Cppsym.a
20648 ./tr '[A-Z]' '[a-z]' < Cppsym.know > Cppsym.b
20649 $cat Cppsym.know > Cppsym.c
20650 $cat Cppsym.a Cppsym.b Cppsym.c | $tr ' ' $trnl | $sort | $uniq > Cppsym.know
20651 $rm -f Cppsym.a Cppsym.b Cppsym.c
20652 cat <<EOSH > Cppsym
20653 $startsh
20654 if $test \$# -gt 0; then
20655     echo \$* | $tr " " "$trnl" | ./Cppsym.try > Cppsym.got
20656     if $test -s Cppsym.got; then
20657         $rm -f Cppsym.got
20658         exit 0
20659     fi
20660     $rm -f Cppsym.got
20661     exit 1
20662 else
20663     $tr " " "$trnl" | ./Cppsym.try
20664     exit 0
20665 fi
20666 EOSH
20667 chmod +x Cppsym
20668 $eunicefix Cppsym
20669 cat <<EOSH > Cppsym.try
20670 $startsh
20671 cat <<'EOCP' > try.c
20672 #include <stdio.h>
20673 #if cpp_stuff == 1
20674 #define STRINGIFY(a)    "a"
20675 #endif
20676 #if cpp_stuff == 42
20677 #define StGiFy(a)  #a
20678 #define STRINGIFY(a)    StGiFy(a)
20679 #endif
20680 #if $cpp_stuff != 1 && $cpp_stuff != 42
20681 #   include "Bletch: How does this C preprocessor stringify macros?"
20682 #endif
20683 int main() {
20684 EOCP
20685 $awk \\
20686 EOSH
20687 cat <<'EOSH' >> Cppsym.try
20688 'length($1) > 0 {
20689     printf "#ifdef %s\nprintf(\"%s=%%s\\n\", STRINGIFY(%s));\n#endif\n", $1, $1, $1
20690     printf "#ifdef _%s\nprintf(\"_%s=%%s\\n\", STRINGIFY(_%s));\n#endif\n", $1, $1, $1
20691     printf "#ifdef __%s\nprintf(\"__%s=%%s\\n\", STRINGIFY(__%s));\n#endif\n", $1, $1, $1
20692     printf "#ifdef __%s__\nprintf(\"__%s__=%%s\\n\", STRINGIFY(__%s__));\n#endif\n", $1, $1, $1
20693 }'       >> try.c
20694 echo 'return 0;}' >> try.c
20695 EOSH
20696 cat <<EOSH >> Cppsym.try
20697 ccflags="$ccflags"
20698 case "$osname-$gccversion" in
20699 irix-) ccflags="\$ccflags -woff 1178" ;;
20700 os2-*) ccflags="\$ccflags -Zlinker /PM:VIO" ;;
20701 esac
20702 $cc -o try -Dcpp_stuff=$cpp_stuff $optimize \$ccflags $ldflags try.c $libs && $run ./try | $sed 's/ /\\\\ /g'
20703 EOSH
20704 chmod +x Cppsym.try
20705 $eunicefix Cppsym.try
20706 ./Cppsym < Cppsym.know > Cppsym.true
20707 : Add in any linux cpp "predefined macros":
20708 case "$osname::$gccversion" in
20709   *linux*::*.*)
20710     tHdrH=_tmpHdr
20711     rm -f $tHdrH'.h' $tHdrH
20712     touch $tHdrH'.h'
20713     if cpp -dM $tHdrH'.h' > $tHdrH'_cppsym.h' && [ -s $tHdrH'_cppsym.h' ]; then
20714        sed 's/#define[\ \  ]*//;s/[\ \     ].*$//' <$tHdrH'_cppsym.h' >$tHdrH'_cppsym.real'
20715        if [ -s $tHdrH'_cppsym.real' ]; then
20716           cat $tHdrH'_cppsym.real' Cppsym.know | sort | uniq | ./Cppsym | sort | uniq > Cppsym.true
20717        fi
20718     fi
20719     rm -f $tHdrH'.h' $tHdrH'_cppsym.h' $tHdrH'_cppsym.real'
20720   ;;
20721 esac
20722 : now check the C compiler for additional symbols
20723 postprocess_cc_v=''
20724 case "$osname" in
20725 aix) postprocess_cc_v="|$tr , ' '" ;;
20726 esac
20727 $cat >ccsym <<EOS
20728 $startsh
20729 $cat >tmp.c <<EOF
20730 extern int foo;
20731 EOF
20732 for i in \`$cc -v -c tmp.c 2>&1 $postprocess_cc_v\`
20733 do
20734         case "\$i" in
20735         -D*) echo "\$i" | $sed 's/^-D//';;
20736         -A*) $test "$gccversion" && echo "\$i" | $sed 's/^-A//' | $sed 's/\(.*\)(\(.*\))/\1=\2/';;
20737         esac
20738 done
20739 $rm -f try.c
20740 EOS
20741 postprocess_cc_v=''
20742 chmod +x ccsym
20743 $eunicefix ccsym
20744 ./ccsym > ccsym1.raw
20745 if $test -s ccsym1.raw; then
20746        $sort ccsym1.raw | $uniq >ccsym.raw
20747 else
20748        mv ccsym1.raw ccsym.raw
20749 fi
20750
20751 $awk '/\=/ { print $0; next }
20752         { print $0"=1" }' ccsym.raw >ccsym.list
20753 $comm -13 Cppsym.true ccsym.list >ccsym.own
20754 $comm -12 Cppsym.true ccsym.list >ccsym.com
20755 $comm -23 Cppsym.true ccsym.list >ccsym.cpp
20756 also=''
20757 if $test -z ccsym.raw; then
20758         echo "Your C compiler doesn't seem to define any symbols!" >&4
20759         echo " "
20760         echo "However, your C preprocessor defines the following symbols:"
20761         $cat Cppsym.true
20762         ccsymbols=''
20763         cppsymbols=`$cat Cppsym.true`
20764         cppsymbols=`echo $cppsymbols`
20765         cppccsymbols="$cppsymbols"
20766 else
20767         if $test -s ccsym.com; then
20768                 echo "Your C compiler and pre-processor define these symbols:"
20769                 $sed -e 's/\(..*\)=.*/\1/' ccsym.com
20770                 also='also '
20771                 symbols='ones'
20772                 cppccsymbols=`$cat ccsym.com`
20773                 cppccsymbols=`echo $cppccsymbols`
20774                 $test "$silent" || sleep 1
20775         fi
20776         if $test -s ccsym.cpp; then
20777                 $test "$also" && echo " "
20778                 echo "Your C pre-processor ${also}defines the following symbols:"
20779                 $sed -e 's/\(..*\)=.*/\1/' ccsym.cpp
20780                 also='further '
20781                 cppsymbols=`$cat ccsym.cpp`
20782                 cppsymbols=`echo $cppsymbols`
20783                 $test "$silent" || sleep 1
20784         fi
20785         if $test -s ccsym.own; then
20786                 $test "$also" && echo " "
20787                 echo "Your C compiler ${also}defines the following cpp symbols:"
20788                 $sed -e 's/\(..*\)=1/\1/' ccsym.own
20789                 $sed -e 's/\(..*\)=.*/\1/' ccsym.own | $uniq >>Cppsym.true
20790                 ccsymbols=`$cat ccsym.own`
20791                 ccsymbols=`echo $ccsymbols`
20792                 $test "$silent" || sleep 1
20793         fi
20794 fi
20795
20796 : see if this is a termio system
20797 val="$undef"
20798 val2="$undef"
20799 val3="$undef"
20800 if $test `./findhdr termios.h`; then
20801         set tcsetattr i_termios
20802         eval $inlibc
20803         val3="$i_termios"
20804 fi
20805 echo " "
20806 case "$val3" in
20807 "$define") echo "You have POSIX termios.h... good!" >&4;;
20808 *) if ./Cppsym pyr; then
20809                 case "`/bin/universe`" in
20810                 ucb) if $test `./findhdr sgtty.h`; then
20811                                 val2="$define"
20812                                 echo "<sgtty.h> found." >&4
20813                         else
20814                                 echo "System is pyramid with BSD universe."
20815                                 echo "<sgtty.h> not found--you could have problems." >&4
20816                         fi;;
20817                 *) if $test `./findhdr termio.h`; then
20818                                 val="$define"
20819                                 echo "<termio.h> found." >&4
20820                         else
20821                                 echo "System is pyramid with USG universe."
20822                                 echo "<termio.h> not found--you could have problems." >&4
20823                         fi;;
20824                 esac
20825         elif ./usg; then
20826                 if $test `./findhdr termio.h`; then
20827                         echo "<termio.h> found." >&4
20828                         val="$define"
20829                 elif $test `./findhdr sgtty.h`; then
20830                         echo "<sgtty.h> found." >&4
20831                         val2="$define"
20832                 else
20833 echo "Neither <termio.h> nor <sgtty.h> found--you could have problems." >&4
20834                 fi
20835         else
20836                 if $test `./findhdr sgtty.h`; then
20837                         echo "<sgtty.h> found." >&4
20838                         val2="$define"
20839                 elif $test `./findhdr termio.h`; then
20840                         echo "<termio.h> found." >&4
20841                         val="$define"
20842                 else
20843 echo "Neither <sgtty.h> nor <termio.h> found--you could have problems." >&4
20844                 fi
20845         fi;;
20846 esac
20847 set i_termio; eval $setvar
20848 val=$val2; set i_sgtty; eval $setvar
20849 val=$val3; set i_termios; eval $setvar
20850
20851 : see if stddef is available
20852 set stddef.h i_stddef
20853 eval $inhdr
20854
20855 : see if this is a sunmath.h system
20856 set sunmath.h i_sunmath
20857 eval $inhdr
20858
20859 : see if sys/access.h is available
20860 set sys/access.h i_sysaccess
20861 eval $inhdr
20862
20863 : see if ioctl defs are in sgtty, termio, sys/filio or sys/ioctl
20864 set sys/filio.h i_sysfilio
20865 eval $inhdr
20866 echo " "
20867 if $test `./findhdr sys/ioctl.h`; then
20868         val="$define"
20869         echo '<sys/ioctl.h> found.' >&4
20870 else
20871         val="$undef"
20872         if $test $i_sysfilio = "$define"; then
20873             echo '<sys/ioctl.h> NOT found.' >&4
20874         else
20875                 $test $i_sgtty = "$define" && xxx="sgtty.h"
20876                 $test $i_termio = "$define" && xxx="termio.h"
20877                 $test $i_termios = "$define" && xxx="termios.h"
20878 echo "No <sys/ioctl.h> found, assuming ioctl args are defined in <$xxx>." >&4
20879         fi
20880 fi
20881 set i_sysioctl
20882 eval $setvar
20883
20884 : see if socket ioctl defs are in sys/sockio.h
20885 echo " "
20886 xxx=`./findhdr sys/sockio.h`
20887 if $test "$xxx"; then
20888         if $contains SIOCATMARK $xxx >/dev/null 2>&1; then
20889                 val="$define"
20890                 echo "You have socket ioctls defined in <sys/sockio.h>." >&4
20891         else
20892                 val="$undef"
20893                 echo "No socket ioctls found in <sys/sockio.h>." >&4
20894         fi
20895 else
20896         val="$undef"
20897         $cat <<EOM
20898 <sys/sockio.h> not found, assuming socket ioctls are in <sys/ioctl.h>.
20899 EOM
20900 fi
20901 set i_syssockio
20902 eval $setvar
20903
20904
20905 : see if this is a syslog.h system
20906 set syslog.h i_syslog
20907 eval $inhdr
20908
20909
20910 : see if this is a sys/mode.h system
20911 set sys/mode.h i_sysmode
20912 eval $inhdr
20913
20914 : see if sys/resource.h has to be included
20915 set sys/resource.h i_sysresrc
20916 eval $inhdr
20917
20918 : see if sys/security.h is available
20919 set sys/security.h i_syssecrt
20920 eval $inhdr
20921
20922 : see if this is a sys/statvfs.h system
20923 set sys/statvfs.h i_sysstatvfs
20924 eval $inhdr
20925
20926 : see if this is a sys/un.h system
20927 set sys/un.h i_sysun
20928 eval $inhdr
20929
20930
20931 : see if this is a sys/utsname.h system
20932 set sys/utsname.h i_sysutsname
20933 eval $inhdr
20934
20935 : see if this is a syswait system
20936 set sys/wait.h i_syswait
20937 eval $inhdr
20938
20939 : see if this is a ustat.h system
20940 set ustat.h i_ustat
20941 eval $inhdr
20942
20943 : see if this is an utime system
20944 set utime.h i_utime
20945 eval $inhdr
20946
20947 : see if this is a values.h system
20948 set values.h i_values
20949 eval $inhdr
20950
20951 : see if this is a vfork system
20952 case "$d_vfork" in
20953 "$define")
20954         set vfork.h i_vfork
20955         eval $inhdr
20956         ;;
20957 *)
20958         i_vfork="$undef"
20959         ;;
20960 esac
20961
20962 echo " "
20963 echo "Looking for extensions..." >&4
20964 : If we are using the old config.sh, known_extensions may contain
20965 : old or inaccurate or duplicate values.
20966 known_extensions=''
20967 nonxs_extensions=''
20968 : We do not use find because it might not be available.
20969 : We do not just use MANIFEST because the user may have dropped
20970 : some additional extensions into the source tree and expect them
20971 : to be built.
20972
20973 : Function to recursively find available extensions, ignoring DynaLoader
20974 : NOTE: recursion limit of 10 to prevent runaway in case of symlink madness
20975 find_extensions='
20976     for xxx in *; do
20977         case "$xxx" in
20978             DynaLoader|dynaload) ;;
20979             *)
20980             if $test -f $xxx/$xxx.xs; then
20981                 known_extensions="$known_extensions $1$xxx";
20982             elif $test -f $xxx/Makefile.PL; then
20983                 nonxs_extensions="$nonxs_extensions $1$xxx";
20984             else
20985                 if $test -d $xxx -a $# -lt 10; then
20986                     set $1$xxx/ $*;
20987                     cd "$xxx";
20988                     eval $find_extensions;
20989                     cd ..;
20990                     shift;
20991                 fi;
20992             fi
20993             ;;
20994         esac;
20995     done'
20996 tdir=`pwd`
20997 cd "$rsrc/ext"
20998 set X
20999 shift
21000 eval $find_extensions
21001 # Special case:  Add in threads/shared since it is not picked up by the
21002 # recursive find above (and adding in general recursive finding breaks
21003 # SDBM_File/sdbm).  A.D.  10/25/2001.
21004 known_extensions="$known_extensions threads/shared"
21005 set X $known_extensions
21006 shift
21007 known_extensions="$*"
21008 #  Ditto for IO/Compress/Base and IO/Compress/Zlib
21009 nonxs_extensions="$nonxs_extensions IO/Compress/Base IO/Compress/Zlib"
21010 set X $nonxs_extensions
21011 shift
21012 nonxs_extensions="$*"
21013 cd "$tdir"
21014
21015 : Now see which are supported on this system.
21016 avail_ext=''
21017 for xxx in $known_extensions ; do
21018         case "$xxx" in
21019         DB_File|db_file)
21020                 case "$i_db" in
21021                 $define) avail_ext="$avail_ext $xxx" ;;
21022                 esac
21023                 ;;
21024         GDBM_File|gdbm_fil)
21025                 case "$i_gdbm" in
21026                 $define) avail_ext="$avail_ext $xxx" ;;
21027                 esac
21028                 ;;
21029         I18N/Langinfo|i18n_lan)
21030                 case "$i_langinfo$d_nl_langinfo" in
21031                 $define$define) avail_ext="$avail_ext $xxx" ;;
21032                 esac
21033                 ;;
21034         NDBM_File|ndbm_fil)
21035                 case "$i_ndbm" in
21036                 $define)
21037                     case "$osname-$use64bitint" in
21038                     hpux-define)
21039                         case "$libs" in
21040                         *-lndbm*) avail_ext="$avail_ext $xxx" ;;
21041                         esac
21042                         ;;
21043                     *) avail_ext="$avail_ext $xxx" ;;
21044                     esac
21045                     ;;
21046                 esac
21047                 ;;
21048         ODBM_File|odbm_fil)
21049                 case "${i_dbm}${i_rpcsvcdbm}" in
21050                 *"${define}"*)
21051                     case "$osname-$use64bitint" in
21052                     hpux-define)
21053                         case "$libs" in
21054                         *-ldbm*) avail_ext="$avail_ext $xxx" ;;
21055                         esac
21056                         ;;
21057                     *) avail_ext="$avail_ext $xxx" ;;
21058                     esac
21059                     ;;
21060                 esac
21061                 ;;
21062         POSIX|posix)
21063                 case "$useposix" in
21064                 true|define|y) avail_ext="$avail_ext $xxx" ;;
21065                 esac
21066                 ;;
21067         Opcode|opcode)
21068                 case "$useopcode" in
21069                 true|define|y) avail_ext="$avail_ext $xxx" ;;
21070                 esac
21071                 ;;
21072         Socket|socket)
21073                 case "$d_socket" in
21074                 true|$define|y)
21075                     case "$osname" in
21076                     beos) ;; # not unless BONE
21077                     *) avail_ext="$avail_ext $xxx" ;;
21078                     esac
21079                     ;;
21080                 esac
21081                 ;;
21082         Sys/Syslog|sys/syslog)
21083                 : XXX syslog requires socket
21084                 case "$d_socket" in
21085                 true|$define|y) avail_ext="$avail_ext $xxx" ;;
21086                 esac
21087                 ;;
21088         Thread|thread)
21089                 case "$usethreads" in
21090                 true|$define|y)
21091                         case "$useithreads" in
21092                         $undef|false|[nN]*) avail_ext="$avail_ext $xxx" ;;
21093                         esac
21094                 esac
21095                 ;;
21096         Win32)
21097                 case "$osname" in
21098                 cygwin) avail_ext="$avail_ext $xxx" ;;
21099                 esac
21100                 ;;
21101         XS/APItest|xs/apitest)
21102                 # This is just for testing.  Skip it unless we have dynamic loading.
21103
21104                 case "$usedl" in
21105                 $define) avail_ext="$avail_ext $xxx" ;;
21106                 esac
21107                 ;;
21108         XS/Typemap|xs/typemap)
21109                 # This is just for testing.  Skip it unless we have dynamic loading.
21110                 case "$usedl" in
21111                 $define) avail_ext="$avail_ext $xxx" ;;
21112                 esac
21113                 ;;
21114         threads|threads/shared)
21115                 # threads and threads::shared are special cases.
21116                 # To stop people from asking "Perl 5.8.0 was supposed
21117                 # to have this new fancy threads implementation but my
21118                 # perl doesn't have it" and from people trying to
21119                 # (re)install the threads module using CPAN.pm and
21120                 # CPAN.pm then offering to reinstall Perl 5.8.0,
21121                 # the threads.pm and threads/shared.pm will always be
21122                 # there, croaking informatively ("you need to rebuild
21123                 # all of Perl with threads, sorry") when threads haven't
21124                 # been compiled in.
21125                 # --jhi
21126                 avail_ext="$avail_ext $xxx"
21127                 ;;
21128         IPC/SysV|ipc/sysv)
21129                 : XXX Do we need a useipcsysv variable here
21130                 case "${d_msg}${d_sem}${d_shm}" in
21131                 *"${define}"*) avail_ext="$avail_ext $xxx" ;;
21132                 esac
21133                 ;;
21134         *)      avail_ext="$avail_ext $xxx"
21135                 ;;
21136         esac
21137 done
21138
21139 set X $avail_ext
21140 shift
21141 avail_ext="$*"
21142
21143 case "$onlyextensions" in
21144 '') ;;
21145 *)  keepextensions=''
21146     echo "You have requested that only certains extensions be included..." >&4
21147     for i in $onlyextensions; do
21148         case " $avail_ext " in
21149         *" $i "*)
21150             echo "Keeping extension $i."
21151             keepextensions="$keepextensions $i"
21152             ;;
21153         *) echo "Ignoring extension $i." ;;
21154         esac
21155     done
21156     avail_ext="$keepextensions"
21157     ;;
21158 esac
21159
21160 case "$noextensions" in
21161 '') ;;
21162 *)  keepextensions=''
21163     echo "You have requested that certain extensions be ignored..." >&4
21164     for i in $avail_ext; do
21165         case " $noextensions " in
21166         *" $i "*) echo "Ignoring extension $i." ;;
21167         *) echo "Keeping extension $i.";
21168            keepextensions="$keepextensions $i"
21169            ;;
21170         esac
21171     done
21172     avail_ext="$keepextensions"
21173     ;;
21174 esac
21175
21176 : Now see which nonxs extensions are supported on this system.
21177 : For now assume all are.
21178 nonxs_ext=''
21179 for xxx in $nonxs_extensions ; do
21180         case "$xxx" in
21181         *)      nonxs_ext="$nonxs_ext $xxx"
21182                 ;;
21183         esac
21184 done
21185
21186 set X $nonxs_ext
21187 shift
21188 nonxs_ext="$*"
21189
21190 case $usedl in
21191 $define)
21192         $cat <<EOM
21193 A number of extensions are supplied with $package.  You may choose to
21194 compile these extensions for dynamic loading (the default), compile
21195 them into the $package executable (static loading), or not include
21196 them at all.  Answer "none" to include no extensions.
21197 Note that DynaLoader is always built and need not be mentioned here.
21198
21199 EOM
21200         case "$dynamic_ext" in
21201         '')
21202                 : Exclude those listed in static_ext
21203                 dflt=''
21204                 for xxx in $avail_ext; do
21205                         case " $static_ext " in
21206                         *" $xxx "*) ;;
21207                         *) dflt="$dflt $xxx" ;;
21208                         esac
21209                 done
21210                 set X $dflt
21211                 shift
21212                 dflt="$*"
21213                 ;;
21214         *)      dflt="$dynamic_ext"
21215                 # Perhaps we are reusing an old out-of-date config.sh.
21216                 case "$hint" in
21217                 previous)
21218                         if test X"$dynamic_ext" != X"$avail_ext"; then
21219                                 $cat <<EOM
21220 NOTICE:  Your previous config.sh list may be incorrect.
21221 The extensions now available to you are
21222         ${avail_ext}
21223 but the default list from your previous config.sh is
21224         ${dynamic_ext}
21225
21226 EOM
21227                         fi
21228                         ;;
21229                 esac
21230                 ;;
21231         esac
21232         case "$dflt" in
21233         '')     dflt=none;;
21234         esac
21235         rp="What extensions do you wish to load dynamically?"
21236         . ./myread
21237         case "$ans" in
21238         none) dynamic_ext=' ' ;;
21239         *) dynamic_ext="$ans" ;;
21240         esac
21241
21242         case "$static_ext" in
21243         '')
21244                 : Exclude those already listed in dynamic linking
21245                 dflt=''
21246                 for xxx in $avail_ext; do
21247                         case " $dynamic_ext " in
21248                         *" $xxx "*) ;;
21249                         *) dflt="$dflt $xxx" ;;
21250                         esac
21251                 done
21252                 set X $dflt
21253                 shift
21254                 dflt="$*"
21255                 ;;
21256         *)  dflt="$static_ext"
21257                 ;;
21258         esac
21259
21260         case "$dflt" in
21261         '')     dflt=none;;
21262         esac
21263         rp="What extensions do you wish to load statically?"
21264         . ./myread
21265         case "$ans" in
21266         none) static_ext=' ' ;;
21267         *) static_ext="$ans" ;;
21268         esac
21269         ;;
21270 *)
21271         $cat <<EOM
21272 A number of extensions are supplied with $package.  Answer "none"
21273 to include no extensions.
21274 Note that DynaLoader is always built and need not be mentioned here.
21275
21276 EOM
21277         case "$static_ext" in
21278         '') dflt="$avail_ext" ;;
21279         *)      dflt="$static_ext"
21280                 # Perhaps we are reusing an old out-of-date config.sh.
21281                 case "$hint" in
21282                 previous)
21283                         if test X"$static_ext" != X"$avail_ext"; then
21284                                 $cat <<EOM
21285 NOTICE:  Your previous config.sh list may be incorrect.
21286 The extensions now available to you are
21287         ${avail_ext}
21288 but the default list from your previous config.sh is
21289         ${static_ext}
21290
21291 EOM
21292                         fi
21293                         ;;
21294                 esac
21295                 ;;
21296         esac
21297         : Exclude those that are not xs extensions
21298         case "$dflt" in
21299         '')     dflt=none;;
21300         esac
21301         rp="What extensions do you wish to include?"
21302         . ./myread
21303         case "$ans" in
21304         none) static_ext=' ' ;;
21305         *) static_ext="$ans" ;;
21306         esac
21307         ;;
21308 esac
21309 #
21310 # Encode is a special case.  If we are building Encode as a static
21311 # extension, we need to explicitly list its subextensions as well.
21312 # For other nested extensions, this is handled automatically by
21313 # the appropriate Makefile.PL.
21314 case " $static_ext " in
21315         *" Encode "*) # Add the subextensions of Encode
21316         cd "$rsrc/ext"
21317         for xxx in `ls Encode/*/Makefile.PL|awk -F/ '{print $2}'`; do
21318                 static_ext="$static_ext Encode/$xxx"
21319         done
21320         cd "$tdir"
21321         ;;
21322 esac
21323
21324 set X $dynamic_ext $static_ext $nonxs_ext
21325 shift
21326 extensions="$*"
21327
21328 # Sanity check:  We require an extension suitable for use with
21329 # AnyDBM_File, as well as Fcntl and IO.  (Failure to have these
21330 # should show up as failures in the test suite, but it's helpful to
21331 # catch them now.) The 'extensions' list is normally sorted
21332 # alphabetically, so we need to accept either
21333 #    DB_File ... Fcntl ... IO  ....
21334 # or something like
21335 #    Fcntl ... NDBM_File ... IO  ....
21336 case " $extensions"  in
21337 *"_File "*" Fcntl "*" IO "*) ;; # DB_File
21338 *" Fcntl "*"_File "*" IO "*) ;; # GDBM_File
21339 *" Fcntl "*" IO "*"_File "*) ;; # NDBM_File
21340 *) echo "WARNING: Extensions DB_File or *DBM_File, Fcntl, and IO not configured." >&4
21341    echo "WARNING: The Perl you are building will be quite crippled." >& 4
21342    ;;
21343 esac
21344
21345 : Remove libraries needed only for extensions
21346 : The appropriate ext/Foo/Makefile.PL will add them back in, if necessary.
21347 : The exception is SunOS 4.x, which needs them.
21348 case "${osname}X${osvers}" in
21349 sunos*X4*)
21350     perllibs="$libs"
21351     ;;
21352 *) case "$usedl" in
21353     $define|true|[yY]*)
21354             set X `echo " $libs " | sed -e 's@ -lndbm @ @' -e 's@ -lgdbm @ @' -e 's@ -ldbm @ @' -e 's@ -ldb @ @'` 
21355             shift
21356             perllibs="$*"
21357             ;;
21358     *)  perllibs="$libs"
21359             ;;
21360     esac
21361     ;;
21362 esac
21363
21364 : Remove build directory name from cppstdin so it can be used from
21365 : either the present location or the final installed location.
21366 echo " "
21367 : Get out of the UU directory to get correct path name.
21368 cd ..
21369 case "$cppstdin" in
21370 `pwd`/cppstdin)
21371         echo "Stripping down cppstdin path name"
21372         cppstdin=cppstdin
21373         ;;
21374 esac
21375 cd UU
21376
21377 : end of configuration questions
21378 echo " "
21379 echo "End of configuration questions."
21380 echo " "
21381
21382 : back to where it started
21383 if test -d ../UU; then
21384         cd ..
21385 fi
21386
21387 : configuration may be patched via a 'config.arch' file
21388 if $test -f config.arch; then
21389         echo "I see a config.arch file, loading it."
21390         . ./config.arch
21391 fi
21392
21393 : configuration may be patched via a 'config.over' file
21394 if $test -f config.over; then
21395         echo " "
21396         dflt=y
21397         rp='I see a config.over file.  Do you wish to load it?'
21398         . UU/myread
21399         case "$ans" in
21400         n*) echo "OK, I'll ignore it.";;
21401         *)      . ./config.over
21402                 echo "Configuration override changes have been loaded."
21403                 ;;
21404         esac
21405 fi
21406
21407 : in case they want portability, strip down executable paths
21408 case "$d_portable" in
21409 "$define")
21410         echo " "
21411         echo "Stripping down executable paths..." >&4
21412         for file in $loclist $trylist; do
21413                 eval temp=\$$file
21414                 eval $file=`basename $temp`
21415         done
21416         ;;
21417 esac
21418
21419 : create config.sh file
21420 echo " "
21421 echo "Creating config.sh..." >&4
21422 $spitshell <<EOT >config.sh
21423 $startsh
21424 #
21425 # This file was produced by running the Configure script. It holds all the
21426 # definitions figured out by Configure. Should you modify one of these values,
21427 # do not forget to propagate your changes by running "Configure -der". You may
21428 # instead choose to run each of the .SH files by yourself, or "Configure -S".
21429 #
21430
21431 # Package name      : $package
21432 # Source directory  : $src
21433 # Configuration time: $cf_time
21434 # Configured by     : $cf_by
21435 # Target system     : $myuname
21436
21437 Author='$Author'
21438 Date='$Date'
21439 Header='$Header'
21440 Id='$Id'
21441 Locker='$Locker'
21442 Log='$Log'
21443 Mcc='$Mcc'
21444 RCSfile='$RCSfile'
21445 Revision='$Revision'
21446 Source='$Source'
21447 State='$State'
21448 _a='$_a'
21449 _exe='$_exe'
21450 _o='$_o'
21451 afs='$afs'
21452 afsroot='$afsroot'
21453 alignbytes='$alignbytes'
21454 ansi2knr='$ansi2knr'
21455 aphostname='$aphostname'
21456 api_revision='$api_revision'
21457 api_subversion='$api_subversion'
21458 api_version='$api_version'
21459 api_versionstring='$api_versionstring'
21460 ar='$ar'
21461 archlib='$archlib'
21462 archlibexp='$archlibexp'
21463 archname64='$archname64'
21464 archname='$archname'
21465 archobjs='$archobjs'
21466 asctime_r_proto='$asctime_r_proto'
21467 awk='$awk'
21468 baserev='$baserev'
21469 bash='$bash'
21470 bin='$bin'
21471 binexp='$binexp'
21472 bison='$bison'
21473 byacc='$byacc'
21474 byteorder='$byteorder'
21475 c='$c'
21476 castflags='$castflags'
21477 cat='$cat'
21478 cc='$cc'
21479 cccdlflags='$cccdlflags'
21480 ccdlflags='$ccdlflags'
21481 ccflags='$ccflags'
21482 ccflags_uselargefiles='$ccflags_uselargefiles'
21483 ccname='$ccname'
21484 ccsymbols='$ccsymbols'
21485 ccversion='$ccversion'
21486 cf_by='$cf_by'
21487 cf_email='$cf_email'
21488 cf_time='$cf_time'
21489 charsize='$charsize'
21490 chgrp='$chgrp'
21491 chmod='$chmod'
21492 chown='$chown'
21493 clocktype='$clocktype'
21494 comm='$comm'
21495 compress='$compress'
21496 contains='$contains'
21497 cp='$cp'
21498 cpio='$cpio'
21499 cpp='$cpp'
21500 cpp_stuff='$cpp_stuff'
21501 cppccsymbols='$cppccsymbols'
21502 cppflags='$cppflags'
21503 cpplast='$cpplast'
21504 cppminus='$cppminus'
21505 cpprun='$cpprun'
21506 cppstdin='$cppstdin'
21507 cppsymbols='$cppsymbols'
21508 crypt_r_proto='$crypt_r_proto'
21509 cryptlib='$cryptlib'
21510 csh='$csh'
21511 ctermid_r_proto='$ctermid_r_proto'
21512 ctime_r_proto='$ctime_r_proto'
21513 d_Gconvert='$d_Gconvert'
21514 d_PRIEUldbl='$d_PRIEUldbl'
21515 d_PRIFUldbl='$d_PRIFUldbl'
21516 d_PRIGUldbl='$d_PRIGUldbl'
21517 d_PRIXU64='$d_PRIXU64'
21518 d_PRId64='$d_PRId64'
21519 d_PRIeldbl='$d_PRIeldbl'
21520 d_PRIfldbl='$d_PRIfldbl'
21521 d_PRIgldbl='$d_PRIgldbl'
21522 d_PRIi64='$d_PRIi64'
21523 d_PRIo64='$d_PRIo64'
21524 d_PRIu64='$d_PRIu64'
21525 d_PRIx64='$d_PRIx64'
21526 d_SCNfldbl='$d_SCNfldbl'
21527 d__fwalk='$d__fwalk'
21528 d_access='$d_access'
21529 d_accessx='$d_accessx'
21530 d_aintl='$d_aintl'
21531 d_alarm='$d_alarm'
21532 d_archlib='$d_archlib'
21533 d_asctime_r='$d_asctime_r'
21534 d_atolf='$d_atolf'
21535 d_atoll='$d_atoll'
21536 d_attribute_format='$d_attribute_format'
21537 d_attribute_malloc='$d_attribute_malloc'
21538 d_attribute_nonnull='$d_attribute_nonnull'
21539 d_attribute_noreturn='$d_attribute_noreturn'
21540 d_attribute_pure='$d_attribute_pure'
21541 d_attribute_unused='$d_attribute_unused'
21542 d_attribute_warn_unused_result='$d_attribute_warn_unused_result'
21543 d_bcmp='$d_bcmp'
21544 d_bcopy='$d_bcopy'
21545 d_bsd='$d_bsd'
21546 d_bsdgetpgrp='$d_bsdgetpgrp'
21547 d_bsdsetpgrp='$d_bsdsetpgrp'
21548 d_builtin_choose_expr='$d_builtin_choose_expr'
21549 d_builtin_expect='$d_builtin_expect'
21550 d_bzero='$d_bzero'
21551 d_c99_variadic_macros='$d_c99_variadic_macros'
21552 d_casti32='$d_casti32'
21553 d_castneg='$d_castneg'
21554 d_charvspr='$d_charvspr'
21555 d_chown='$d_chown'
21556 d_chroot='$d_chroot'
21557 d_chsize='$d_chsize'
21558 d_class='$d_class'
21559 d_clearenv='$d_clearenv'
21560 d_closedir='$d_closedir'
21561 d_cmsghdr_s='$d_cmsghdr_s'
21562 d_const='$d_const'
21563 d_copysignl='$d_copysignl'
21564 d_cplusplus='$d_cplusplus'
21565 d_crypt='$d_crypt'
21566 d_crypt_r='$d_crypt_r'
21567 d_csh='$d_csh'
21568 d_ctermid='$d_ctermid'
21569 d_ctermid_r='$d_ctermid_r'
21570 d_ctime_r='$d_ctime_r'
21571 d_cuserid='$d_cuserid'
21572 d_dbl_dig='$d_dbl_dig'
21573 d_dbminitproto='$d_dbminitproto'
21574 d_difftime='$d_difftime'
21575 d_dir_dd_fd='$d_dir_dd_fd'
21576 d_dirfd='$d_dirfd'
21577 d_dirnamlen='$d_dirnamlen'
21578 d_dlerror='$d_dlerror'
21579 d_dlopen='$d_dlopen'
21580 d_dlsymun='$d_dlsymun'
21581 d_dosuid='$d_dosuid'
21582 d_drand48_r='$d_drand48_r'
21583 d_drand48proto='$d_drand48proto'
21584 d_dup2='$d_dup2'
21585 d_eaccess='$d_eaccess'
21586 d_endgrent='$d_endgrent'
21587 d_endgrent_r='$d_endgrent_r'
21588 d_endhent='$d_endhent'
21589 d_endhostent_r='$d_endhostent_r'
21590 d_endnent='$d_endnent'
21591 d_endnetent_r='$d_endnetent_r'
21592 d_endpent='$d_endpent'
21593 d_endprotoent_r='$d_endprotoent_r'
21594 d_endpwent='$d_endpwent'
21595 d_endpwent_r='$d_endpwent_r'
21596 d_endsent='$d_endsent'
21597 d_endservent_r='$d_endservent_r'
21598 d_eofnblk='$d_eofnblk'
21599 d_eunice='$d_eunice'
21600 d_faststdio='$d_faststdio'
21601 d_fchdir='$d_fchdir'
21602 d_fchmod='$d_fchmod'
21603 d_fchown='$d_fchown'
21604 d_fcntl='$d_fcntl'
21605 d_fcntl_can_lock='$d_fcntl_can_lock'
21606 d_fd_macros='$d_fd_macros'
21607 d_fd_set='$d_fd_set'
21608 d_fds_bits='$d_fds_bits'
21609 d_fgetpos='$d_fgetpos'
21610 d_finite='$d_finite'
21611 d_finitel='$d_finitel'
21612 d_flexfnam='$d_flexfnam'
21613 d_flock='$d_flock'
21614 d_flockproto='$d_flockproto'
21615 d_fork='$d_fork'
21616 d_fp_class='$d_fp_class'
21617 d_fpathconf='$d_fpathconf'
21618 d_fpclass='$d_fpclass'
21619 d_fpclassify='$d_fpclassify'
21620 d_fpclassl='$d_fpclassl'
21621 d_fpos64_t='$d_fpos64_t'
21622 d_frexpl='$d_frexpl'
21623 d_fs_data_s='$d_fs_data_s'
21624 d_fseeko='$d_fseeko'
21625 d_fsetpos='$d_fsetpos'
21626 d_fstatfs='$d_fstatfs'
21627 d_fstatvfs='$d_fstatvfs'
21628 d_fsync='$d_fsync'
21629 d_ftello='$d_ftello'
21630 d_ftime='$d_ftime'
21631 d_futimes='$d_futimes'
21632 d_getcwd='$d_getcwd'
21633 d_getespwnam='$d_getespwnam'
21634 d_getfsstat='$d_getfsstat'
21635 d_getgrent='$d_getgrent'
21636 d_getgrent_r='$d_getgrent_r'
21637 d_getgrgid_r='$d_getgrgid_r'
21638 d_getgrnam_r='$d_getgrnam_r'
21639 d_getgrps='$d_getgrps'
21640 d_gethbyaddr='$d_gethbyaddr'
21641 d_gethbyname='$d_gethbyname'
21642 d_gethent='$d_gethent'
21643 d_gethname='$d_gethname'
21644 d_gethostbyaddr_r='$d_gethostbyaddr_r'
21645 d_gethostbyname_r='$d_gethostbyname_r'
21646 d_gethostent_r='$d_gethostent_r'
21647 d_gethostprotos='$d_gethostprotos'
21648 d_getitimer='$d_getitimer'
21649 d_getlogin='$d_getlogin'
21650 d_getlogin_r='$d_getlogin_r'
21651 d_getmnt='$d_getmnt'
21652 d_getmntent='$d_getmntent'
21653 d_getnbyaddr='$d_getnbyaddr'
21654 d_getnbyname='$d_getnbyname'
21655 d_getnent='$d_getnent'
21656 d_getnetbyaddr_r='$d_getnetbyaddr_r'
21657 d_getnetbyname_r='$d_getnetbyname_r'
21658 d_getnetent_r='$d_getnetent_r'
21659 d_getnetprotos='$d_getnetprotos'
21660 d_getpagsz='$d_getpagsz'
21661 d_getpbyname='$d_getpbyname'
21662 d_getpbynumber='$d_getpbynumber'
21663 d_getpent='$d_getpent'
21664 d_getpgid='$d_getpgid'
21665 d_getpgrp2='$d_getpgrp2'
21666 d_getpgrp='$d_getpgrp'
21667 d_getppid='$d_getppid'
21668 d_getprior='$d_getprior'
21669 d_getprotobyname_r='$d_getprotobyname_r'
21670 d_getprotobynumber_r='$d_getprotobynumber_r'
21671 d_getprotoent_r='$d_getprotoent_r'
21672 d_getprotoprotos='$d_getprotoprotos'
21673 d_getprpwnam='$d_getprpwnam'
21674 d_getpwent='$d_getpwent'
21675 d_getpwent_r='$d_getpwent_r'
21676 d_getpwnam_r='$d_getpwnam_r'
21677 d_getpwuid_r='$d_getpwuid_r'
21678 d_getsbyname='$d_getsbyname'
21679 d_getsbyport='$d_getsbyport'
21680 d_getsent='$d_getsent'
21681 d_getservbyname_r='$d_getservbyname_r'
21682 d_getservbyport_r='$d_getservbyport_r'
21683 d_getservent_r='$d_getservent_r'
21684 d_getservprotos='$d_getservprotos'
21685 d_getspnam='$d_getspnam'
21686 d_getspnam_r='$d_getspnam_r'
21687 d_gettimeod='$d_gettimeod'
21688 d_gmtime_r='$d_gmtime_r'
21689 d_gnulibc='$d_gnulibc'
21690 d_grpasswd='$d_grpasswd'
21691 d_hasmntopt='$d_hasmntopt'
21692 d_htonl='$d_htonl'
21693 d_ilogbl='$d_ilogbl'
21694 d_inc_version_list='$d_inc_version_list'
21695 d_index='$d_index'
21696 d_inetaton='$d_inetaton'
21697 d_int64_t='$d_int64_t'
21698 d_isascii='$d_isascii'
21699 d_isfinite='$d_isfinite'
21700 d_isinf='$d_isinf'
21701 d_isnan='$d_isnan'
21702 d_isnanl='$d_isnanl'
21703 d_killpg='$d_killpg'
21704 d_lchown='$d_lchown'
21705 d_ldbl_dig='$d_ldbl_dig'
21706 d_libm_lib_version='$d_libm_lib_version'
21707 d_link='$d_link'
21708 d_localtime_r='$d_localtime_r'
21709 d_localtime_r_needs_tzset='$d_localtime_r_needs_tzset'
21710 d_locconv='$d_locconv'
21711 d_lockf='$d_lockf'
21712 d_longdbl='$d_longdbl'
21713 d_longlong='$d_longlong'
21714 d_lseekproto='$d_lseekproto'
21715 d_lstat='$d_lstat'
21716 d_madvise='$d_madvise'
21717 d_malloc_good_size='$d_malloc_good_size'
21718 d_malloc_size='$d_malloc_size'
21719 d_mblen='$d_mblen'
21720 d_mbstowcs='$d_mbstowcs'
21721 d_mbtowc='$d_mbtowc'
21722 d_memchr='$d_memchr'
21723 d_memcmp='$d_memcmp'
21724 d_memcpy='$d_memcpy'
21725 d_memmove='$d_memmove'
21726 d_memset='$d_memset'
21727 d_mkdir='$d_mkdir'
21728 d_mkdtemp='$d_mkdtemp'
21729 d_mkfifo='$d_mkfifo'
21730 d_mkstemp='$d_mkstemp'
21731 d_mkstemps='$d_mkstemps'
21732 d_mktime='$d_mktime'
21733 d_mmap='$d_mmap'
21734 d_modfl='$d_modfl'
21735 d_modfl_pow32_bug='$d_modfl_pow32_bug'
21736 d_modflproto='$d_modflproto'
21737 d_mprotect='$d_mprotect'
21738 d_msg='$d_msg'
21739 d_msg_ctrunc='$d_msg_ctrunc'
21740 d_msg_dontroute='$d_msg_dontroute'
21741 d_msg_oob='$d_msg_oob'
21742 d_msg_peek='$d_msg_peek'
21743 d_msg_proxy='$d_msg_proxy'
21744 d_msgctl='$d_msgctl'
21745 d_msgget='$d_msgget'
21746 d_msghdr_s='$d_msghdr_s'
21747 d_msgrcv='$d_msgrcv'
21748 d_msgsnd='$d_msgsnd'
21749 d_msync='$d_msync'
21750 d_munmap='$d_munmap'
21751 d_mymalloc='$d_mymalloc'
21752 d_nice='$d_nice'
21753 d_nl_langinfo='$d_nl_langinfo'
21754 d_nv_preserves_uv='$d_nv_preserves_uv'
21755 d_nv_zero_is_allbits_zero='$d_nv_zero_is_allbits_zero'
21756 d_off64_t='$d_off64_t'
21757 d_old_pthread_create_joinable='$d_old_pthread_create_joinable'
21758 d_oldpthreads='$d_oldpthreads'
21759 d_oldsock='$d_oldsock'
21760 d_open3='$d_open3'
21761 d_pathconf='$d_pathconf'
21762 d_pause='$d_pause'
21763 d_perl_otherlibdirs='$d_perl_otherlibdirs'
21764 d_phostname='$d_phostname'
21765 d_pipe='$d_pipe'
21766 d_poll='$d_poll'
21767 d_portable='$d_portable'
21768 d_printf_format_null='$d_printf_format_null'
21769 d_procselfexe='$d_procselfexe'
21770 d_pseudofork='$d_pseudofork'
21771 d_pthread_atfork='$d_pthread_atfork'
21772 d_pthread_attr_setscope='$d_pthread_attr_setscope'
21773 d_pthread_yield='$d_pthread_yield'
21774 d_pwage='$d_pwage'
21775 d_pwchange='$d_pwchange'
21776 d_pwclass='$d_pwclass'
21777 d_pwcomment='$d_pwcomment'
21778 d_pwexpire='$d_pwexpire'
21779 d_pwgecos='$d_pwgecos'
21780 d_pwpasswd='$d_pwpasswd'
21781 d_pwquota='$d_pwquota'
21782 d_qgcvt='$d_qgcvt'
21783 d_quad='$d_quad'
21784 d_random_r='$d_random_r'
21785 d_readdir64_r='$d_readdir64_r'
21786 d_readdir='$d_readdir'
21787 d_readdir_r='$d_readdir_r'
21788 d_readlink='$d_readlink'
21789 d_readv='$d_readv'
21790 d_recvmsg='$d_recvmsg'
21791 d_rename='$d_rename'
21792 d_rewinddir='$d_rewinddir'
21793 d_rmdir='$d_rmdir'
21794 d_safebcpy='$d_safebcpy'
21795 d_safemcpy='$d_safemcpy'
21796 d_sanemcmp='$d_sanemcmp'
21797 d_sbrkproto='$d_sbrkproto'
21798 d_scalbnl='$d_scalbnl'
21799 d_sched_yield='$d_sched_yield'
21800 d_scm_rights='$d_scm_rights'
21801 d_seekdir='$d_seekdir'
21802 d_select='$d_select'
21803 d_sem='$d_sem'
21804 d_semctl='$d_semctl'
21805 d_semctl_semid_ds='$d_semctl_semid_ds'
21806 d_semctl_semun='$d_semctl_semun'
21807 d_semget='$d_semget'
21808 d_semop='$d_semop'
21809 d_sendmsg='$d_sendmsg'
21810 d_setegid='$d_setegid'
21811 d_seteuid='$d_seteuid'
21812 d_setgrent='$d_setgrent'
21813 d_setgrent_r='$d_setgrent_r'
21814 d_setgrps='$d_setgrps'
21815 d_sethent='$d_sethent'
21816 d_sethostent_r='$d_sethostent_r'
21817 d_setitimer='$d_setitimer'
21818 d_setlinebuf='$d_setlinebuf'
21819 d_setlocale='$d_setlocale'
21820 d_setlocale_r='$d_setlocale_r'
21821 d_setnent='$d_setnent'
21822 d_setnetent_r='$d_setnetent_r'
21823 d_setpent='$d_setpent'
21824 d_setpgid='$d_setpgid'
21825 d_setpgrp2='$d_setpgrp2'
21826 d_setpgrp='$d_setpgrp'
21827 d_setprior='$d_setprior'
21828 d_setproctitle='$d_setproctitle'
21829 d_setprotoent_r='$d_setprotoent_r'
21830 d_setpwent='$d_setpwent'
21831 d_setpwent_r='$d_setpwent_r'
21832 d_setregid='$d_setregid'
21833 d_setresgid='$d_setresgid'
21834 d_setresuid='$d_setresuid'
21835 d_setreuid='$d_setreuid'
21836 d_setrgid='$d_setrgid'
21837 d_setruid='$d_setruid'
21838 d_setsent='$d_setsent'
21839 d_setservent_r='$d_setservent_r'
21840 d_setsid='$d_setsid'
21841 d_setvbuf='$d_setvbuf'
21842 d_sfio='$d_sfio'
21843 d_shm='$d_shm'
21844 d_shmat='$d_shmat'
21845 d_shmatprototype='$d_shmatprototype'
21846 d_shmctl='$d_shmctl'
21847 d_shmdt='$d_shmdt'
21848 d_shmget='$d_shmget'
21849 d_sigaction='$d_sigaction'
21850 d_sigprocmask='$d_sigprocmask'
21851 d_sigsetjmp='$d_sigsetjmp'
21852 d_sitearch='$d_sitearch'
21853 d_snprintf='$d_snprintf'
21854 d_sockatmark='$d_sockatmark'
21855 d_sockatmarkproto='$d_sockatmarkproto'
21856 d_socket='$d_socket'
21857 d_socklen_t='$d_socklen_t'
21858 d_sockpair='$d_sockpair'
21859 d_socks5_init='$d_socks5_init'
21860 d_sprintf_returns_strlen='$d_sprintf_returns_strlen'
21861 d_sqrtl='$d_sqrtl'
21862 d_srand48_r='$d_srand48_r'
21863 d_srandom_r='$d_srandom_r'
21864 d_sresgproto='$d_sresgproto'
21865 d_sresuproto='$d_sresuproto'
21866 d_statblks='$d_statblks'
21867 d_statfs_f_flags='$d_statfs_f_flags'
21868 d_statfs_s='$d_statfs_s'
21869 d_statvfs='$d_statvfs'
21870 d_stdio_cnt_lval='$d_stdio_cnt_lval'
21871 d_stdio_ptr_lval='$d_stdio_ptr_lval'
21872 d_stdio_ptr_lval_nochange_cnt='$d_stdio_ptr_lval_nochange_cnt'
21873 d_stdio_ptr_lval_sets_cnt='$d_stdio_ptr_lval_sets_cnt'
21874 d_stdio_stream_array='$d_stdio_stream_array'
21875 d_stdiobase='$d_stdiobase'
21876 d_stdstdio='$d_stdstdio'
21877 d_strchr='$d_strchr'
21878 d_strcoll='$d_strcoll'
21879 d_strctcpy='$d_strctcpy'
21880 d_strerrm='$d_strerrm'
21881 d_strerror='$d_strerror'
21882 d_strerror_r='$d_strerror_r'
21883 d_strftime='$d_strftime'
21884 d_strlcat='$d_strlcat'
21885 d_strlcpy='$d_strlcpy'
21886 d_strtod='$d_strtod'
21887 d_strtol='$d_strtol'
21888 d_strtold='$d_strtold'
21889 d_strtoll='$d_strtoll'
21890 d_strtoq='$d_strtoq'
21891 d_strtoul='$d_strtoul'
21892 d_strtoull='$d_strtoull'
21893 d_strtouq='$d_strtouq'
21894 d_strxfrm='$d_strxfrm'
21895 d_suidsafe='$d_suidsafe'
21896 d_symlink='$d_symlink'
21897 d_syscall='$d_syscall'
21898 d_syscallproto='$d_syscallproto'
21899 d_sysconf='$d_sysconf'
21900 d_sysernlst='$d_sysernlst'
21901 d_syserrlst='$d_syserrlst'
21902 d_system='$d_system'
21903 d_tcgetpgrp='$d_tcgetpgrp'
21904 d_tcsetpgrp='$d_tcsetpgrp'
21905 d_telldir='$d_telldir'
21906 d_telldirproto='$d_telldirproto'
21907 d_time='$d_time'
21908 d_times='$d_times'
21909 d_tm_tm_gmtoff='$d_tm_tm_gmtoff'
21910 d_tm_tm_zone='$d_tm_tm_zone'
21911 d_tmpnam_r='$d_tmpnam_r'
21912 d_truncate='$d_truncate'
21913 d_ttyname_r='$d_ttyname_r'
21914 d_tzname='$d_tzname'
21915 d_u32align='$d_u32align'
21916 d_ualarm='$d_ualarm'
21917 d_umask='$d_umask'
21918 d_uname='$d_uname'
21919 d_union_semun='$d_union_semun'
21920 d_unordered='$d_unordered'
21921 d_unsetenv='$d_unsetenv'
21922 d_usleep='$d_usleep'
21923 d_usleepproto='$d_usleepproto'
21924 d_ustat='$d_ustat'
21925 d_vendorarch='$d_vendorarch'
21926 d_vendorbin='$d_vendorbin'
21927 d_vendorlib='$d_vendorlib'
21928 d_vendorscript='$d_vendorscript'
21929 d_vfork='$d_vfork'
21930 d_void_closedir='$d_void_closedir'
21931 d_voidsig='$d_voidsig'
21932 d_voidtty='$d_voidtty'
21933 d_volatile='$d_volatile'
21934 d_vprintf='$d_vprintf'
21935 d_vsnprintf='$d_vsnprintf'
21936 d_wait4='$d_wait4'
21937 d_waitpid='$d_waitpid'
21938 d_wcstombs='$d_wcstombs'
21939 d_wctomb='$d_wctomb'
21940 d_writev='$d_writev'
21941 d_xenix='$d_xenix'
21942 date='$date'
21943 db_hashtype='$db_hashtype'
21944 db_prefixtype='$db_prefixtype'
21945 db_version_major='$db_version_major'
21946 db_version_minor='$db_version_minor'
21947 db_version_patch='$db_version_patch'
21948 defvoidused='$defvoidused'
21949 direntrytype='$direntrytype'
21950 dlext='$dlext'
21951 dlsrc='$dlsrc'
21952 doublesize='$doublesize'
21953 drand01='$drand01'
21954 drand48_r_proto='$drand48_r_proto'
21955 dynamic_ext='$dynamic_ext'
21956 eagain='$eagain'
21957 ebcdic='$ebcdic'
21958 echo='$echo'
21959 egrep='$egrep'
21960 emacs='$emacs'
21961 endgrent_r_proto='$endgrent_r_proto'
21962 endhostent_r_proto='$endhostent_r_proto'
21963 endnetent_r_proto='$endnetent_r_proto'
21964 endprotoent_r_proto='$endprotoent_r_proto'
21965 endpwent_r_proto='$endpwent_r_proto'
21966 endservent_r_proto='$endservent_r_proto'
21967 eunicefix='$eunicefix'
21968 exe_ext='$exe_ext'
21969 expr='$expr'
21970 extensions='$extensions'
21971 extras='$extras'
21972 fflushNULL='$fflushNULL'
21973 fflushall='$fflushall'
21974 find='$find'
21975 firstmakefile='$firstmakefile'
21976 flex='$flex'
21977 fpossize='$fpossize'
21978 fpostype='$fpostype'
21979 freetype='$freetype'
21980 from='$from'
21981 full_ar='$full_ar'
21982 full_csh='$full_csh'
21983 full_sed='$full_sed'
21984 gccansipedantic='$gccansipedantic'
21985 gccosandvers='$gccosandvers'
21986 gccversion='$gccversion'
21987 getgrent_r_proto='$getgrent_r_proto'
21988 getgrgid_r_proto='$getgrgid_r_proto'
21989 getgrnam_r_proto='$getgrnam_r_proto'
21990 gethostbyaddr_r_proto='$gethostbyaddr_r_proto'
21991 gethostbyname_r_proto='$gethostbyname_r_proto'
21992 gethostent_r_proto='$gethostent_r_proto'
21993 getlogin_r_proto='$getlogin_r_proto'
21994 getnetbyaddr_r_proto='$getnetbyaddr_r_proto'
21995 getnetbyname_r_proto='$getnetbyname_r_proto'
21996 getnetent_r_proto='$getnetent_r_proto'
21997 getprotobyname_r_proto='$getprotobyname_r_proto'
21998 getprotobynumber_r_proto='$getprotobynumber_r_proto'
21999 getprotoent_r_proto='$getprotoent_r_proto'
22000 getpwent_r_proto='$getpwent_r_proto'
22001 getpwnam_r_proto='$getpwnam_r_proto'
22002 getpwuid_r_proto='$getpwuid_r_proto'
22003 getservbyname_r_proto='$getservbyname_r_proto'
22004 getservbyport_r_proto='$getservbyport_r_proto'
22005 getservent_r_proto='$getservent_r_proto'
22006 getspnam_r_proto='$getspnam_r_proto'
22007 gidformat='$gidformat'
22008 gidsign='$gidsign'
22009 gidsize='$gidsize'
22010 gidtype='$gidtype'
22011 glibpth='$glibpth'
22012 gmake='$gmake'
22013 gmtime_r_proto='$gmtime_r_proto'
22014 gnulibc_version='$gnulibc_version'
22015 grep='$grep'
22016 groupcat='$groupcat'
22017 groupstype='$groupstype'
22018 gzip='$gzip'
22019 h_fcntl='$h_fcntl'
22020 h_sysfile='$h_sysfile'
22021 hint='$hint'
22022 hostcat='$hostcat'
22023 html1dir='$html1dir'
22024 html1direxp='$html1direxp'
22025 html3dir='$html3dir'
22026 html3direxp='$html3direxp'
22027 i16size='$i16size'
22028 i16type='$i16type'
22029 i32size='$i32size'
22030 i32type='$i32type'
22031 i64size='$i64size'
22032 i64type='$i64type'
22033 i8size='$i8size'
22034 i8type='$i8type'
22035 i_arpainet='$i_arpainet'
22036 i_bsdioctl='$i_bsdioctl'
22037 i_crypt='$i_crypt'
22038 i_db='$i_db'
22039 i_dbm='$i_dbm'
22040 i_dirent='$i_dirent'
22041 i_dld='$i_dld'
22042 i_dlfcn='$i_dlfcn'
22043 i_fcntl='$i_fcntl'
22044 i_float='$i_float'
22045 i_fp='$i_fp'
22046 i_fp_class='$i_fp_class'
22047 i_gdbm='$i_gdbm'
22048 i_grp='$i_grp'
22049 i_ieeefp='$i_ieeefp'
22050 i_inttypes='$i_inttypes'
22051 i_langinfo='$i_langinfo'
22052 i_libutil='$i_libutil'
22053 i_limits='$i_limits'
22054 i_locale='$i_locale'
22055 i_machcthr='$i_machcthr'
22056 i_malloc='$i_malloc'
22057 i_math='$i_math'
22058 i_memory='$i_memory'
22059 i_mntent='$i_mntent'
22060 i_ndbm='$i_ndbm'
22061 i_netdb='$i_netdb'
22062 i_neterrno='$i_neterrno'
22063 i_netinettcp='$i_netinettcp'
22064 i_niin='$i_niin'
22065 i_poll='$i_poll'
22066 i_prot='$i_prot'
22067 i_pthread='$i_pthread'
22068 i_pwd='$i_pwd'
22069 i_rpcsvcdbm='$i_rpcsvcdbm'
22070 i_sfio='$i_sfio'
22071 i_sgtty='$i_sgtty'
22072 i_shadow='$i_shadow'
22073 i_socks='$i_socks'
22074 i_stdarg='$i_stdarg'
22075 i_stddef='$i_stddef'
22076 i_stdlib='$i_stdlib'
22077 i_string='$i_string'
22078 i_sunmath='$i_sunmath'
22079 i_sysaccess='$i_sysaccess'
22080 i_sysdir='$i_sysdir'
22081 i_sysfile='$i_sysfile'
22082 i_sysfilio='$i_sysfilio'
22083 i_sysin='$i_sysin'
22084 i_sysioctl='$i_sysioctl'
22085 i_syslog='$i_syslog'
22086 i_sysmman='$i_sysmman'
22087 i_sysmode='$i_sysmode'
22088 i_sysmount='$i_sysmount'
22089 i_sysndir='$i_sysndir'
22090 i_sysparam='$i_sysparam'
22091 i_sysresrc='$i_sysresrc'
22092 i_syssecrt='$i_syssecrt'
22093 i_sysselct='$i_sysselct'
22094 i_syssockio='$i_syssockio'
22095 i_sysstat='$i_sysstat'
22096 i_sysstatfs='$i_sysstatfs'
22097 i_sysstatvfs='$i_sysstatvfs'
22098 i_systime='$i_systime'
22099 i_systimek='$i_systimek'
22100 i_systimes='$i_systimes'
22101 i_systypes='$i_systypes'
22102 i_sysuio='$i_sysuio'
22103 i_sysun='$i_sysun'
22104 i_sysutsname='$i_sysutsname'
22105 i_sysvfs='$i_sysvfs'
22106 i_syswait='$i_syswait'
22107 i_termio='$i_termio'
22108 i_termios='$i_termios'
22109 i_time='$i_time'
22110 i_unistd='$i_unistd'
22111 i_ustat='$i_ustat'
22112 i_utime='$i_utime'
22113 i_values='$i_values'
22114 i_varargs='$i_varargs'
22115 i_varhdr='$i_varhdr'
22116 i_vfork='$i_vfork'
22117 ignore_versioned_solibs='$ignore_versioned_solibs'
22118 inc_version_list='$inc_version_list'
22119 inc_version_list_init='$inc_version_list_init'
22120 incpath='$incpath'
22121 inews='$inews'
22122 initialinstalllocation='$initialinstalllocation'
22123 installarchlib='$installarchlib'
22124 installbin='$installbin'
22125 installhtml1dir='$installhtml1dir'
22126 installhtml3dir='$installhtml3dir'
22127 installman1dir='$installman1dir'
22128 installman3dir='$installman3dir'
22129 installprefix='$installprefix'
22130 installprefixexp='$installprefixexp'
22131 installprivlib='$installprivlib'
22132 installscript='$installscript'
22133 installsitearch='$installsitearch'
22134 installsitebin='$installsitebin'
22135 installsitehtml1dir='$installsitehtml1dir'
22136 installsitehtml3dir='$installsitehtml3dir'
22137 installsitelib='$installsitelib'
22138 installsiteman1dir='$installsiteman1dir'
22139 installsiteman3dir='$installsiteman3dir'
22140 installsitescript='$installsitescript'
22141 installstyle='$installstyle'
22142 installusrbinperl='$installusrbinperl'
22143 installvendorarch='$installvendorarch'
22144 installvendorbin='$installvendorbin'
22145 installvendorhtml1dir='$installvendorhtml1dir'
22146 installvendorhtml3dir='$installvendorhtml3dir'
22147 installvendorlib='$installvendorlib'
22148 installvendorman1dir='$installvendorman1dir'
22149 installvendorman3dir='$installvendorman3dir'
22150 installvendorscript='$installvendorscript'
22151 intsize='$intsize'
22152 issymlink='$issymlink'
22153 ivdformat='$ivdformat'
22154 ivsize='$ivsize'
22155 ivtype='$ivtype'
22156 known_extensions='$known_extensions'
22157 ksh='$ksh'
22158 ld='$ld'
22159 lddlflags='$lddlflags'
22160 ldflags='$ldflags'
22161 ldflags_uselargefiles='$ldflags_uselargefiles'
22162 ldlibpthname='$ldlibpthname'
22163 less='$less'
22164 lib_ext='$lib_ext'
22165 libc='$libc'
22166 libperl='$libperl'
22167 libpth='$libpth'
22168 libs='$libs'
22169 libsdirs='$libsdirs'
22170 libsfiles='$libsfiles'
22171 libsfound='$libsfound'
22172 libspath='$libspath'
22173 libswanted='$libswanted'
22174 libswanted_uselargefiles='$libswanted_uselargefiles'
22175 line='$line'
22176 lint='$lint'
22177 lkflags='$lkflags'
22178 ln='$ln'
22179 lns='$lns'
22180 localtime_r_proto='$localtime_r_proto'
22181 locincpth='$locincpth'
22182 loclibpth='$loclibpth'
22183 longdblsize='$longdblsize'
22184 longlongsize='$longlongsize'
22185 longsize='$longsize'
22186 lp='$lp'
22187 lpr='$lpr'
22188 ls='$ls'
22189 lseeksize='$lseeksize'
22190 lseektype='$lseektype'
22191 mad='$mad'
22192 madlyh='$madlyh'
22193 madlyobj='$madlyobj'
22194 madlysrc='$madlysrc'
22195 mail='$mail'
22196 mailx='$mailx'
22197 make='$make'
22198 make_set_make='$make_set_make'
22199 mallocobj='$mallocobj'
22200 mallocsrc='$mallocsrc'
22201 malloctype='$malloctype'
22202 man1dir='$man1dir'
22203 man1direxp='$man1direxp'
22204 man1ext='$man1ext'
22205 man3dir='$man3dir'
22206 man3direxp='$man3direxp'
22207 man3ext='$man3ext'
22208 mips_type='$mips_type'
22209 mistrustnm='$mistrustnm'
22210 mkdir='$mkdir'
22211 mmaptype='$mmaptype'
22212 modetype='$modetype'
22213 more='$more'
22214 multiarch='$multiarch'
22215 mv='$mv'
22216 myarchname='$myarchname'
22217 mydomain='$mydomain'
22218 myhostname='$myhostname'
22219 myuname='$myuname'
22220 n='$n'
22221 need_va_copy='$need_va_copy'
22222 netdb_hlen_type='$netdb_hlen_type'
22223 netdb_host_type='$netdb_host_type'
22224 netdb_name_type='$netdb_name_type'
22225 netdb_net_type='$netdb_net_type'
22226 nm='$nm'
22227 nm_opt='$nm_opt'
22228 nm_so_opt='$nm_so_opt'
22229 nonxs_ext='$nonxs_ext'
22230 nroff='$nroff'
22231 nvEUformat='$nvEUformat'
22232 nvFUformat='$nvFUformat'
22233 nvGUformat='$nvGUformat'
22234 nv_preserves_uv_bits='$nv_preserves_uv_bits'
22235 nveformat='$nveformat'
22236 nvfformat='$nvfformat'
22237 nvgformat='$nvgformat'
22238 nvsize='$nvsize'
22239 nvtype='$nvtype'
22240 o_nonblock='$o_nonblock'
22241 obj_ext='$obj_ext'
22242 old_pthread_create_joinable='$old_pthread_create_joinable'
22243 optimize='$optimize'
22244 orderlib='$orderlib'
22245 osname='$osname'
22246 osvers='$osvers'
22247 otherlibdirs='$otherlibdirs'
22248 package='$package'
22249 pager='$pager'
22250 passcat='$passcat'
22251 patchlevel='$patchlevel'
22252 path_sep='$path_sep'
22253 perl5='$perl5'
22254 perl='$perl'
22255 perl_patchlevel='$perl_patchlevel'
22256 perladmin='$perladmin'
22257 perllibs='$perllibs'
22258 perlpath='$perlpath'
22259 pg='$pg'
22260 phostname='$phostname'
22261 pidtype='$pidtype'
22262 plibpth='$plibpth'
22263 pmake='$pmake'
22264 pr='$pr'
22265 prefix='$prefix'
22266 prefixexp='$prefixexp'
22267 privlib='$privlib'
22268 privlibexp='$privlibexp'
22269 procselfexe='$procselfexe'
22270 prototype='$prototype'
22271 ptrsize='$ptrsize'
22272 quadkind='$quadkind'
22273 quadtype='$quadtype'
22274 randbits='$randbits'
22275 randfunc='$randfunc'
22276 random_r_proto='$random_r_proto'
22277 randseedtype='$randseedtype'
22278 ranlib='$ranlib'
22279 rd_nodata='$rd_nodata'
22280 readdir64_r_proto='$readdir64_r_proto'
22281 readdir_r_proto='$readdir_r_proto'
22282 revision='$revision'
22283 rm='$rm'
22284 rmail='$rmail'
22285 run='$run'
22286 runnm='$runnm'
22287 sPRIEUldbl='$sPRIEUldbl'
22288 sPRIFUldbl='$sPRIFUldbl'
22289 sPRIGUldbl='$sPRIGUldbl'
22290 sPRIXU64='$sPRIXU64'
22291 sPRId64='$sPRId64'
22292 sPRIeldbl='$sPRIeldbl'
22293 sPRIfldbl='$sPRIfldbl'
22294 sPRIgldbl='$sPRIgldbl'
22295 sPRIi64='$sPRIi64'
22296 sPRIo64='$sPRIo64'
22297 sPRIu64='$sPRIu64'
22298 sPRIx64='$sPRIx64'
22299 sSCNfldbl='$sSCNfldbl'
22300 sched_yield='$sched_yield'
22301 scriptdir='$scriptdir'
22302 scriptdirexp='$scriptdirexp'
22303 sed='$sed'
22304 seedfunc='$seedfunc'
22305 selectminbits='$selectminbits'
22306 selecttype='$selecttype'
22307 sendmail='$sendmail'
22308 setgrent_r_proto='$setgrent_r_proto'
22309 sethostent_r_proto='$sethostent_r_proto'
22310 setlocale_r_proto='$setlocale_r_proto'
22311 setnetent_r_proto='$setnetent_r_proto'
22312 setprotoent_r_proto='$setprotoent_r_proto'
22313 setpwent_r_proto='$setpwent_r_proto'
22314 setservent_r_proto='$setservent_r_proto'
22315 sh='$sh'
22316 shar='$shar'
22317 sharpbang='$sharpbang'
22318 shmattype='$shmattype'
22319 shortsize='$shortsize'
22320 shrpenv='$shrpenv'
22321 shsharp='$shsharp'
22322 sig_count='$sig_count'
22323 sig_name='$sig_name'
22324 sig_name_init='$sig_name_init'
22325 sig_num='$sig_num'
22326 sig_num_init='$sig_num_init'
22327 sig_size='$sig_size'
22328 signal_t='$signal_t'
22329 sitearch='$sitearch'
22330 sitearchexp='$sitearchexp'
22331 sitebin='$sitebin'
22332 sitebinexp='$sitebinexp'
22333 sitehtml1dir='$sitehtml1dir'
22334 sitehtml1direxp='$sitehtml1direxp'
22335 sitehtml3dir='$sitehtml3dir'
22336 sitehtml3direxp='$sitehtml3direxp'
22337 sitelib='$sitelib'
22338 sitelib_stem='$sitelib_stem'
22339 sitelibexp='$sitelibexp'
22340 siteman1dir='$siteman1dir'
22341 siteman1direxp='$siteman1direxp'
22342 siteman3dir='$siteman3dir'
22343 siteman3direxp='$siteman3direxp'
22344 siteprefix='$siteprefix'
22345 siteprefixexp='$siteprefixexp'
22346 sitescript='$sitescript'
22347 sitescriptexp='$sitescriptexp'
22348 sizesize='$sizesize'
22349 sizetype='$sizetype'
22350 sleep='$sleep'
22351 smail='$smail'
22352 so='$so'
22353 sockethdr='$sockethdr'
22354 socketlib='$socketlib'
22355 socksizetype='$socksizetype'
22356 sort='$sort'
22357 spackage='$spackage'
22358 spitshell='$spitshell'
22359 srand48_r_proto='$srand48_r_proto'
22360 srandom_r_proto='$srandom_r_proto'
22361 src='$src'
22362 ssizetype='$ssizetype'
22363 startperl='$startperl'
22364 startsh='$startsh'
22365 static_ext='$static_ext'
22366 stdchar='$stdchar'
22367 stdio_base='$stdio_base'
22368 stdio_bufsiz='$stdio_bufsiz'
22369 stdio_cnt='$stdio_cnt'
22370 stdio_filbuf='$stdio_filbuf'
22371 stdio_ptr='$stdio_ptr'
22372 stdio_stream_array='$stdio_stream_array'
22373 strerror_r_proto='$strerror_r_proto'
22374 strings='$strings'
22375 submit='$submit'
22376 subversion='$subversion'
22377 sysman='$sysman'
22378 tail='$tail'
22379 tar='$tar'
22380 targetarch='$targetarch'
22381 tbl='$tbl'
22382 tee='$tee'
22383 test='$test'
22384 timeincl='$timeincl'
22385 timetype='$timetype'
22386 tmpnam_r_proto='$tmpnam_r_proto'
22387 to='$to'
22388 touch='$touch'
22389 tr='$tr'
22390 trnl='$trnl'
22391 troff='$troff'
22392 ttyname_r_proto='$ttyname_r_proto'
22393 u16size='$u16size'
22394 u16type='$u16type'
22395 u32size='$u32size'
22396 u32type='$u32type'
22397 u64size='$u64size'
22398 u64type='$u64type'
22399 u8size='$u8size'
22400 u8type='$u8type'
22401 uidformat='$uidformat'
22402 uidsign='$uidsign'
22403 uidsize='$uidsize'
22404 uidtype='$uidtype'
22405 uname='$uname'
22406 uniq='$uniq'
22407 uquadtype='$uquadtype'
22408 use5005threads='$use5005threads'
22409 use64bitall='$use64bitall'
22410 use64bitint='$use64bitint'
22411 usecrosscompile='$usecrosscompile'
22412 usedl='$usedl'
22413 usefaststdio='$usefaststdio'
22414 useithreads='$useithreads'
22415 uselargefiles='$uselargefiles'
22416 uselongdouble='$uselongdouble'
22417 usemallocwrap='$usemallocwrap'
22418 usemorebits='$usemorebits'
22419 usemultiplicity='$usemultiplicity'
22420 usemymalloc='$usemymalloc'
22421 usenm='$usenm'
22422 useopcode='$useopcode'
22423 useperlio='$useperlio'
22424 useposix='$useposix'
22425 usereentrant='$usereentrant'
22426 userelocatableinc='$userelocatableinc'
22427 usesfio='$usesfio'
22428 useshrplib='$useshrplib'
22429 usesitecustomize='$usesitecustomize'
22430 usesocks='$usesocks'
22431 usethreads='$usethreads'
22432 usevendorprefix='$usevendorprefix'
22433 usevfork='$usevfork'
22434 usrinc='$usrinc'
22435 uuname='$uuname'
22436 uvXUformat='$uvXUformat'
22437 uvoformat='$uvoformat'
22438 uvsize='$uvsize'
22439 uvtype='$uvtype'
22440 uvuformat='$uvuformat'
22441 uvxformat='$uvxformat'
22442 vendorarch='$vendorarch'
22443 vendorarchexp='$vendorarchexp'
22444 vendorbin='$vendorbin'
22445 vendorbinexp='$vendorbinexp'
22446 vendorhtml1dir='$vendorhtml1dir'
22447 vendorhtml1direxp='$vendorhtml1direxp'
22448 vendorhtml3dir='$vendorhtml3dir'
22449 vendorhtml3direxp='$vendorhtml3direxp'
22450 vendorlib='$vendorlib'
22451 vendorlib_stem='$vendorlib_stem'
22452 vendorlibexp='$vendorlibexp'
22453 vendorman1dir='$vendorman1dir'
22454 vendorman1direxp='$vendorman1direxp'
22455 vendorman3dir='$vendorman3dir'
22456 vendorman3direxp='$vendorman3direxp'
22457 vendorprefix='$vendorprefix'
22458 vendorprefixexp='$vendorprefixexp'
22459 vendorscript='$vendorscript'
22460 vendorscriptexp='$vendorscriptexp'
22461 version='$version'
22462 version_patchlevel_string='$version_patchlevel_string'
22463 versiononly='$versiononly'
22464 vi='$vi'
22465 voidflags='$voidflags'
22466 xlibpth='$xlibpth'
22467 yacc='$yacc'
22468 yaccflags='$yaccflags'
22469 zcat='$zcat'
22470 zip='$zip'
22471 EOT
22472
22473 : Add in command line options if available
22474 $test -f UU/cmdline.opt && $cat UU/cmdline.opt >> config.sh
22475
22476 : add special variables
22477 $test -f $src/patchlevel.h && \
22478 awk '/^#define[         ]+PERL_/ {printf "%s=%s\n",$2,$3}' $src/patchlevel.h >>config.sh
22479 echo "PERL_PATCHLEVEL=$perl_patchlevel" >>config.sh
22480 echo "PERL_CONFIG_SH=true" >>config.sh
22481
22482 : propagate old symbols
22483 if $test -f UU/config.sh; then
22484         <UU/config.sh $sort | $uniq >UU/oldconfig.sh
22485         sed -n 's/^\([a-zA-Z_0-9]*\)=.*/\1/p' config.sh config.sh UU/oldconfig.sh |\
22486         $sort | $uniq -u >UU/oldsyms
22487         set X `cat UU/oldsyms`
22488         shift
22489         case $# in
22490         0) ;;
22491         *)
22492                 cat <<EOM
22493 Hmm...You had some extra variables I don't know about...I'll try to keep 'em...
22494 EOM
22495                 echo "# Variables propagated from previous config.sh file." >>config.sh
22496                 for sym in `cat UU/oldsyms`; do
22497                         echo "    Propagating $hint variable "'$'"$sym..."
22498                         eval 'tmp="$'"${sym}"'"'
22499                         echo "$tmp" | \
22500                                 sed -e "s/'/'\"'\"'/g" -e "s/^/$sym='/" -e "s/$/'/" >>config.sh
22501                 done
22502                 ;;
22503         esac
22504 fi
22505
22506 : Finish up by extracting the .SH files
22507 case "$alldone" in
22508 exit)
22509         $rm -rf UU
22510         echo "Extraction done."
22511         exit 0
22512         ;;
22513 cont)
22514         ;;
22515 '')
22516         dflt=''
22517         nostick=true
22518         $cat <<EOM
22519
22520 If you'd like to make any changes to the config.sh file before I begin
22521 to configure things, do it as a shell escape now (e.g. !vi config.sh).
22522
22523 EOM
22524         rp="Press return or use a shell escape to edit config.sh:"
22525         . UU/myread
22526         nostick=''
22527         case "$ans" in
22528         '') ;;
22529         *) : in case they cannot read
22530                 sh 1>&4 -c "$ans";;
22531         esac
22532         ;;
22533 esac
22534
22535 : if this fails, just run all the .SH files by hand
22536 . ./config.sh
22537
22538 echo " "
22539 exec 1>&4
22540 pwd=`pwd`
22541 . ./UU/extract
22542 cd "$pwd"
22543
22544 if $contains '^depend:' [Mm]akefile >/dev/null 2>&1; then
22545         dflt=y
22546         case "$silent" in
22547         true) ;;
22548         *)
22549                 $cat <<EOM
22550
22551 Now you need to generate make dependencies by running "$make depend".
22552 You might prefer to run it in background: "$make depend > makedepend.out &"
22553 It can take a while, so you might not want to run it right now.
22554
22555 EOM
22556                 ;;
22557         esac
22558         rp="Run $make depend now?"
22559         . UU/myread
22560         case "$ans" in
22561         y*)
22562                 $make depend && echo "Now you must run '$make'."
22563                 ;;
22564         *)
22565                 echo "You must run '$make depend' then '$make'."
22566                 ;;
22567         esac
22568 elif test -f [Mm]akefile; then
22569         echo " "
22570         echo "Now you must run a $make."
22571 else
22572         echo "Configure done."
22573 fi
22574
22575 if $test -f Policy.sh; then
22576     $cat <<EOM
22577
22578 If you compile $package on a different machine or from a different object
22579 directory, copy the Policy.sh file from this object directory to the
22580 new one before you run Configure -- this will help you with most of
22581 the policy defaults.
22582
22583 EOM
22584 fi
22585 if $test -f config.msg; then
22586     echo "Hmm.  I also noted the following information while running:"
22587     echo " "
22588     $cat config.msg >&4
22589     $rm -f config.msg
22590 fi
22591 $rm -f kit*isdone ark*isdone
22592 $rm -rf UU
22593
22594 : End of Configure
22595