adc58e9ffb1e2e152b8739e4b1cfd5b43b8c5a90
[p5sagit/p5-mst-13.2.git] / Configure
1 #! /bin/sh
2 #
3 # If these # comments don't work, trim them. Don't worry about any other
4 # shell scripts, Configure will trim # comments from them for you.
5 #
6 # (If you are trying to port this package to a machine without sh,
7 # I would suggest you have a look at the prototypical config_h.SH file
8 # and edit it to reflect your system. Some packages may include samples
9 # of config.h for certain machines, so you might look for one of those.)
10 #
11 # Yes, you may rip this off to use in other distribution packages. This
12 # script belongs to the public domain and cannot be copyrighted.
13 #
14 # (Note: this Configure script was generated automatically. Rather than
15 # working with this copy of Configure, you may wish to get metaconfig.
16 # The dist-3.0 package (which contains metaconfig) was posted in
17 # comp.sources.misc and is available on CPAN under authors/id/RAM so
18 # you may fetch it yourself from your nearest archive site.)
19 #
20
21 # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $
22 #
23 # Generated on Sat Jan 15 23:59:51 EET 2000 [metaconfig 3.0 PL70]
24 # (with additional metaconfig patches by perlbug@perl.com)
25
26 cat >/tmp/c1$$ <<EOF
27 ARGGGHHHH!!!!!
28
29 SCO csh still thinks true is false.  Write to SCO today and tell them that next
30 year Configure ought to "rm /bin/csh" unless they fix their blasted shell. :-)
31
32 (Actually, Configure ought to just patch csh in place.  Hmm.  Hmmmmm.  All
33 we'd have to do is go in and swap the && and || tokens, wherever they are.)
34
35 [End of diatribe. We now return you to your regularly scheduled programming...]
36 EOF
37 cat >/tmp/c2$$ <<EOF
38
39 OOPS!  You naughty creature!  You didn't run Configure with sh!
40 I will attempt to remedy the situation by running sh for you...
41 EOF
42
43 true || cat /tmp/c1$$ /tmp/c2$$
44 true || exec sh $0 $argv:q
45
46 (exit $?0) || cat /tmp/c2$$
47 (exit $?0) || exec sh $0 $argv:q
48 rm -f /tmp/c1$$ /tmp/c2$$
49
50 : compute my invocation name
51 me=$0
52 case "$0" in
53 */*)
54         me=`echo $0 | sed -e 's!.*/\(.*\)!\1!' 2>/dev/null`
55         test "$me" || me=$0
56         ;;
57 esac
58
59 : Proper separator for the PATH environment variable
60 p_=:
61 : On OS/2 this directory should exist if this is not floppy only system :-]
62 if test -d c:/. ; then
63     if test -n "$OS2_SHELL"; then
64                 p_=\;
65                 PATH=`cmd /c "echo %PATH%" | tr '\\\\' / `
66                 OS2_SHELL=`cmd /c "echo %OS2_SHELL%" | tr '\\\\' / | tr '[A-Z]' '[a-z]'`
67         elif test -n "$DJGPP"; then
68                 p_=\;
69         fi
70 fi
71
72 : Proper PATH setting
73 paths='/bin /usr/bin /usr/local/bin /usr/ucb /usr/local /usr/lbin'
74 paths="$paths /opt/bin /opt/local/bin /opt/local /opt/lbin"
75 paths="$paths /usr/5bin /etc /usr/gnu/bin /usr/new /usr/new/bin /usr/nbin"
76 paths="$paths /opt/gnu/bin /opt/new /opt/new/bin /opt/nbin"
77 paths="$paths /sys5.3/bin /sys5.3/usr/bin /bsd4.3/bin /bsd4.3/usr/ucb"
78 paths="$paths /bsd4.3/usr/bin /usr/bsd /bsd43/bin /usr/ccs/bin"
79 paths="$paths /etc /usr/lib /usr/ucblib /lib /usr/ccs/lib"
80 paths="$paths /sbin /usr/sbin /usr/libexec"
81
82 for p in $paths
83 do
84         case "$p_$PATH$p_" in
85         *$p_$p$p_*) ;;
86         *) test -d $p && PATH=$PATH$p_$p ;;
87         esac
88 done
89
90 PATH=.$p_$PATH
91 export PATH
92
93 : shall we be using ksh?
94 inksh=''
95 needksh=''
96 avoidksh=''
97 newsh=/bin/ksh
98 changesh=''
99 if (PATH=.; alias -x) >/dev/null 2>&1; then
100                 inksh=true
101 fi
102 if test -f /hp-ux -a -f /bin/ksh; then
103         needksh='to avoid sh bug in "here document" expansion'
104 fi
105 if test -d /usr/lpp -a -f /usr/bin/bsh -a -f /usr/bin/uname; then
106         if test X`/usr/bin/uname -v` = X4; then
107                 avoidksh="to avoid AIX 4's /bin/sh"
108                 newsh=/usr/bin/bsh
109         fi
110 fi
111 if test -f /osf_boot -a -f /usr/sbin/setld; then
112         if test X`/usr/bin/uname -s` = XOSF1; then
113                 avoidksh="to avoid Digital UNIX' ksh"
114                 newsh=/bin/sh
115                 unset BIN_SH # if this is 'xpg4' sh will start up ksh
116         fi
117 fi
118 case "$inksh/$needksh" in
119 /[a-z]*)
120                 ENV=''
121                 changesh=true
122                 reason="$needksh"
123         ;;
124 esac
125 case "$inksh/$avoidksh" in
126 true/[a-z]*)
127         changesh=true
128         reason="$avoidksh"
129         ;;
130 esac
131 case "$inksh/$needksh-$avoidksh-" in
132 true/--)
133                 cat <<EOM
134 (I see you are using the Korn shell.  Some ksh's blow up on $me,
135 mainly on older exotic systems.  If yours does, try the Bourne shell instead.)
136 EOM
137         ;;
138 esac
139 case "$changesh" in
140 true)
141         echo "(Feeding myself to $newsh $reason.)"
142         case "$0" in
143         Configure|*/Configure) exec $newsh $0 "$@";;
144         *) exec $newsh Configure "$@";;
145         esac
146         ;;
147 esac
148
149 : if needed set CDPATH to a harmless value that is not chatty
150 : avoid bash 2.02 problems with empty CDPATH.
151 case "$CDPATH" in
152 '')     ;;
153 *)      case "$SHELL" in
154         *bash*) CDPATH='.' ;;
155         *)              CDPATH='' ;;
156         esac
157         ;;
158 esac
159 : Configure runs within the UU subdirectory
160 test -d UU || mkdir UU
161 cd UU && rm -f ./*
162
163 ccsymbols=''
164 cppccsymbols=''
165 cppsymbols=''
166 dynamic_ext=''
167 extensions=''
168 known_extensions=''
169 nonxs_ext=''
170 static_ext=''
171 useopcode=''
172 useposix=''
173 d_bsd=''
174 d_eunice=''
175 d_xenix=''
176 eunicefix=''
177 Mcc=''
178 ar=''
179 awk=''
180 bash=''
181 bison=''
182 byacc=''
183 cat=''
184 chgrp=''
185 chmod=''
186 chown=''
187 comm=''
188 compress=''
189 cp=''
190 cpio=''
191 cpp=''
192 csh=''
193 date=''
194 echo=''
195 egrep=''
196 emacs=''
197 expr=''
198 find=''
199 flex=''
200 grep=''
201 gzip=''
202 inews=''
203 ksh=''
204 less=''
205 line=''
206 lint=''
207 ln=''
208 lp=''
209 lpr=''
210 ls=''
211 mail=''
212 mailx=''
213 make=''
214 mkdir=''
215 more=''
216 mv=''
217 nm=''
218 nroff=''
219 perl=''
220 pg=''
221 pmake=''
222 pr=''
223 rm=''
224 rmail=''
225 sed=''
226 sendmail=''
227 shar=''
228 sleep=''
229 smail=''
230 sort=''
231 submit=''
232 tail=''
233 tar=''
234 tbl=''
235 tee=''
236 test=''
237 touch=''
238 tr=''
239 troff=''
240 uname=''
241 uniq=''
242 uuname=''
243 vi=''
244 zcat=''
245 zip=''
246 full_ar=''
247 full_sed=''
248 libswanted=''
249 hint=''
250 myuname=''
251 osname=''
252 osvers=''
253 Author=''
254 Date=''
255 Header=''
256 Id=''
257 Locker=''
258 Log=''
259 RCSfile=''
260 Revision=''
261 Source=''
262 State=''
263 _a=''
264 _exe=''
265 _o=''
266 archobjs=''
267 exe_ext=''
268 firstmakefile=''
269 lib_ext=''
270 obj_ext=''
271 path_sep=''
272 afs=''
273 alignbytes=''
274 ansi2knr=''
275 archlib=''
276 archlibexp=''
277 d_archlib=''
278 installarchlib=''
279 archname=''
280 myarchname=''
281 d_atolf=''
282 d_atoll=''
283 baserev=''
284 bin=''
285 binexp=''
286 installbin=''
287 bincompat5005=''
288 d_bincompat5005=''
289 byteorder=''
290 cc=''
291 gccversion=''
292 ccflags=''
293 cppflags=''
294 ldflags=''
295 lkflags=''
296 locincpth=''
297 optimize=''
298 cf_email=''
299 cf_by=''
300 cf_time=''
301 charsize=''
302 contains=''
303 cpp_stuff=''
304 cpplast=''
305 cppminus=''
306 cpprun=''
307 cppstdin=''
308 crosscompile=''
309 d_access=''
310 d_accessx=''
311 d_alarm=''
312 d_attribut=''
313 d_bcmp=''
314 d_bcopy=''
315 d_bzero=''
316 d_casti32=''
317 castflags=''
318 d_castneg=''
319 d_chown=''
320 d_chroot=''
321 d_chsize=''
322 d_closedir=''
323 d_void_closedir=''
324 d_const=''
325 cryptlib=''
326 d_crypt=''
327 d_csh=''
328 full_csh=''
329 d_cuserid=''
330 d_dbl_dig=''
331 d_difftime=''
332 d_dlerror=''
333 d_dlopen=''
334 d_dlsymun=''
335 d_dosuid=''
336 d_suidsafe=''
337 d_drand48proto=''
338 d_dup2=''
339 d_eaccess=''
340 d_endgrent=''
341 d_endhent=''
342 d_endnent=''
343 d_endpent=''
344 d_endpwent=''
345 d_endsent=''
346 d_endspent=''
347 d_fchmod=''
348 d_fchown=''
349 d_fcntl=''
350 d_fd_macros=''
351 d_fd_set=''
352 d_fds_bits=''
353 d_fgetpos=''
354 d_flexfnam=''
355 d_flock=''
356 d_fork=''
357 d_fs_data_s=''
358 d_fseeko=''
359 d_fsetpos=''
360 d_fstatfs=''
361 d_ftello=''
362 d_ftime=''
363 d_gettimeod=''
364 d_Gconvert=''
365 d_getgrent=''
366 d_getgrps=''
367 d_gethbyaddr=''
368 d_gethbyname=''
369 d_gethent=''
370 aphostname=''
371 d_gethname=''
372 d_phostname=''
373 d_uname=''
374 d_gethostprotos=''
375 d_getlogin=''
376 d_getmnt=''
377 d_getmntent=''
378 d_getnbyaddr=''
379 d_getnbyname=''
380 d_getnent=''
381 d_getnetprotos=''
382 d_getpent=''
383 d_getpgid=''
384 d_getpgrp2=''
385 d_bsdgetpgrp=''
386 d_getpgrp=''
387 d_getppid=''
388 d_getprior=''
389 d_getpbyname=''
390 d_getpbynumber=''
391 d_getprotoprotos=''
392 d_getpwent=''
393 d_getsent=''
394 d_getservprotos=''
395 d_getspent=''
396 d_getspnam=''
397 d_getsbyname=''
398 d_getsbyport=''
399 d_gnulibc=''
400 d_hasmntopt=''
401 d_htonl=''
402 d_inetaton=''
403 d_int64t=''
404 d_isascii=''
405 d_killpg=''
406 d_lchown=''
407 d_ldbl_dig=''
408 d_link=''
409 d_locconv=''
410 d_lockf=''
411 d_longdbl=''
412 longdblsize=''
413 d_longlong=''
414 longlongsize=''
415 d_lstat=''
416 d_mblen=''
417 d_mbstowcs=''
418 d_mbtowc=''
419 d_memchr=''
420 d_memcmp=''
421 d_memcpy=''
422 d_memmove=''
423 d_memset=''
424 d_mkdir=''
425 d_mkfifo=''
426 d_mktime=''
427 d_msg=''
428 d_msgctl=''
429 d_msgget=''
430 d_msgrcv=''
431 d_msgsnd=''
432 d_nice=''
433 d_open3=''
434 d_fpathconf=''
435 d_pathconf=''
436 d_pause=''
437 d_pipe=''
438 d_poll=''
439 d_portable=''
440 d_old_pthread_create_joinable=''
441 old_pthread_create_joinable=''
442 d_pthread_yield=''
443 d_sched_yield=''
444 sched_yield=''
445 d_qgcvt=''
446 d_readdir=''
447 d_rewinddir=''
448 d_seekdir=''
449 d_telldir=''
450 d_readlink=''
451 d_rename=''
452 d_rmdir=''
453 d_safebcpy=''
454 d_safemcpy=''
455 d_sanemcmp=''
456 d_select=''
457 d_sem=''
458 d_semctl=''
459 d_semget=''
460 d_semop=''
461 d_setegid=''
462 d_seteuid=''
463 d_setgrent=''
464 d_setgrps=''
465 d_sethent=''
466 d_setlinebuf=''
467 d_setlocale=''
468 d_setnent=''
469 d_setpent=''
470 d_setpgid=''
471 d_setpgrp2=''
472 d_bsdsetpgrp=''
473 d_setpgrp=''
474 d_setprior=''
475 d_setpwent=''
476 d_setregid=''
477 d_setresgid=''
478 d_setresuid=''
479 d_setreuid=''
480 d_setrgid=''
481 d_setruid=''
482 d_setsent=''
483 d_setsid=''
484 d_setspent=''
485 d_setvbuf=''
486 d_sfio=''
487 usesfio=''
488 d_shm=''
489 d_shmat=''
490 d_shmatprototype=''
491 shmattype=''
492 d_shmctl=''
493 d_shmdt=''
494 d_shmget=''
495 d_sigaction=''
496 d_sigsetjmp=''
497 d_msg_ctrunc=''
498 d_msg_dontroute=''
499 d_msg_oob=''
500 d_msg_peek=''
501 d_msg_proxy=''
502 d_oldsock=''
503 d_scm_rights=''
504 d_socket=''
505 d_sockpair=''
506 sockethdr=''
507 socketlib=''
508 d_sqrtl=''
509 d_statblks=''
510 d_statfs_f_flags=''
511 d_statfs_s=''
512 d_fstatvfs=''
513 d_statvfs=''
514 d_stdio_cnt_lval=''
515 d_stdio_ptr_lval=''
516 d_stdiobase=''
517 d_stdstdio=''
518 stdio_base=''
519 stdio_bufsiz=''
520 stdio_cnt=''
521 stdio_filbuf=''
522 stdio_ptr=''
523 d_index=''
524 d_strchr=''
525 d_strcoll=''
526 d_strctcpy=''
527 d_strerrm=''
528 d_strerror=''
529 d_sysernlst=''
530 d_syserrlst=''
531 d_strtod=''
532 d_strtol=''
533 d_strtold=''
534 d_strtoul=''
535 d_strtoull=''
536 d_strtouq=''
537 d_strxfrm=''
538 d_symlink=''
539 d_syscall=''
540 d_sysconf=''
541 d_system=''
542 d_tcgetpgrp=''
543 d_tcsetpgrp=''
544 d_telldirproto=''
545 d_time=''
546 timetype=''
547 clocktype=''
548 d_times=''
549 d_truncate=''
550 d_tzname=''
551 d_umask=''
552 d_semctl_semid_ds=''
553 d_semctl_semun=''
554 d_union_semun=''
555 d_ustat=''
556 d_vfork=''
557 usevfork=''
558 d_voidsig=''
559 signal_t=''
560 d_volatile=''
561 d_charvspr=''
562 d_vprintf=''
563 d_wait4=''
564 d_waitpid=''
565 d_wcstombs=''
566 d_wctomb=''
567 dlext=''
568 cccdlflags=''
569 ccdlflags=''
570 dlsrc=''
571 ld=''
572 lddlflags=''
573 usedl=''
574 doublesize=''
575 ebcdic=''
576 fflushNULL=''
577 fflushall=''
578 fpossize=''
579 fpostype=''
580 gidformat=''
581 gidsign=''
582 gidsize=''
583 gidtype=''
584 groupstype=''
585 h_fcntl=''
586 h_sysfile=''
587 i_arpainet=''
588 db_hashtype=''
589 db_prefixtype=''
590 i_db=''
591 i_dbm=''
592 i_rpcsvcdbm=''
593 d_dirnamlen=''
594 direntrytype=''
595 i_dirent=''
596 i_dld=''
597 i_dlfcn=''
598 i_fcntl=''
599 i_float=''
600 i_gdbm=''
601 d_grpasswd=''
602 i_grp=''
603 i_inttypes=''
604 i_limits=''
605 i_locale=''
606 i_machcthr=''
607 i_malloc=''
608 i_math=''
609 i_memory=''
610 i_mntent=''
611 i_ndbm=''
612 i_netdb=''
613 i_neterrno=''
614 i_netinettcp=''
615 i_niin=''
616 i_sysin=''
617 i_poll=''
618 i_pthread=''
619 d_pwage=''
620 d_pwchange=''
621 d_pwclass=''
622 d_pwcomment=''
623 d_pwexpire=''
624 d_pwgecos=''
625 d_pwpasswd=''
626 d_pwquota=''
627 i_pwd=''
628 i_sfio=''
629 i_shadow=''
630 i_socks=''
631 i_stddef=''
632 i_stdlib=''
633 i_string=''
634 strings=''
635 i_sysaccess=''
636 i_sysdir=''
637 i_sysfile=''
638 d_voidtty=''
639 i_bsdioctl=''
640 i_sysfilio=''
641 i_sysioctl=''
642 i_syssockio=''
643 i_sysmount=''
644 i_sysndir=''
645 i_sysparam=''
646 i_sysresrc=''
647 i_syssecrt=''
648 i_sysselct=''
649 i_sysstat=''
650 i_sysstatfs=''
651 i_sysstatvfs=''
652 i_systimes=''
653 i_systypes=''
654 i_sysuio=''
655 i_sysun=''
656 i_sysvfs=''
657 i_syswait=''
658 i_sgtty=''
659 i_termio=''
660 i_termios=''
661 i_systime=''
662 i_systimek=''
663 i_time=''
664 timeincl=''
665 i_unistd=''
666 i_ustat=''
667 i_utime=''
668 i_values=''
669 i_stdarg=''
670 i_varargs=''
671 i_varhdr=''
672 i_vfork=''
673 inc_version_list=''
674 installprefix=''
675 installprefixexp=''
676 installstyle=''
677 installusrbinperl=''
678 intsize=''
679 longsize=''
680 shortsize=''
681 d_fpos64_t=''
682 d_off64_t=''
683 libc=''
684 ldlibpthname=''
685 libperl=''
686 shrpenv=''
687 useshrplib=''
688 glibpth=''
689 libpth=''
690 loclibpth=''
691 plibpth=''
692 xlibpth=''
693 ignore_versioned_solibs=''
694 libs=''
695 lns=''
696 d_PRIEldbl=''
697 d_PRIFldbl=''
698 d_PRIGldbl=''
699 d_PRIeldbl=''
700 d_PRIfldbl=''
701 d_PRIgldbl=''
702 sPRIEldbl=''
703 sPRIFldbl=''
704 sPRIGldbl=''
705 sPRIeldbl=''
706 sPRIfldbl=''
707 sPRIgldbl=''
708 lseeksize=''
709 lseektype=''
710 make_set_make=''
711 d_mymalloc=''
712 freetype=''
713 mallocobj=''
714 mallocsrc=''
715 malloctype=''
716 usemymalloc=''
717 installman1dir=''
718 man1dir=''
719 man1direxp=''
720 man1ext=''
721 installman3dir=''
722 man3dir=''
723 man3direxp=''
724 man3ext=''
725 huge=''
726 large=''
727 medium=''
728 models=''
729 small=''
730 split=''
731 modetype=''
732 multiarch=''
733 mydomain=''
734 myhostname=''
735 phostname=''
736 c=''
737 n=''
738 d_eofnblk=''
739 eagain=''
740 o_nonblock=''
741 rd_nodata=''
742 netdb_hlen_type=''
743 netdb_host_type=''
744 netdb_name_type=''
745 netdb_net_type=''
746 groupcat=''
747 hostcat=''
748 passcat=''
749 orderlib=''
750 ranlib=''
751 package=''
752 spackage=''
753 pager=''
754 api_revision=''
755 api_subversion=''
756 api_version=''
757 api_versionstring=''
758 patchlevel=''
759 subversion=''
760 version=''
761 perladmin=''
762 perlpath=''
763 i16size=''
764 i16type=''
765 i32size=''
766 i32type=''
767 i64size=''
768 i64type=''
769 i8size=''
770 i8type=''
771 ivsize=''
772 ivtype=''
773 nvsize=''
774 nvtype=''
775 u16size=''
776 u16type=''
777 u32size=''
778 u32type=''
779 u64size=''
780 u64type=''
781 u8size=''
782 u8type=''
783 uvsize=''
784 uvtype=''
785 ivdformat=''
786 uvoformat=''
787 uvuformat=''
788 uvxformat=''
789 pidtype=''
790 prefix=''
791 prefixexp=''
792 installprivlib=''
793 privlib=''
794 privlibexp=''
795 prototype=''
796 ptrsize=''
797 d_PRIX64=''
798 d_PRId64=''
799 d_PRIi64=''
800 d_PRIo64=''
801 d_PRIu64=''
802 d_PRIx64=''
803 sPRIX64=''
804 sPRId64=''
805 sPRIi64=''
806 sPRIo64=''
807 sPRIu64=''
808 sPRIx64=''
809 d_quad=''
810 quadkind=''
811 quadtype=''
812 uquadtype=''
813 drand01=''
814 randbits=''
815 randfunc=''
816 randseedtype=''
817 seedfunc=''
818 installscript=''
819 scriptdir=''
820 scriptdirexp=''
821 selectminbits=''
822 selecttype=''
823 sh=''
824 sig_count=''
825 sig_name=''
826 sig_name_init=''
827 sig_num=''
828 sig_num_init=''
829 installsitearch=''
830 sitearch=''
831 sitearchexp=''
832 installsitebin=''
833 sitebin=''
834 sitebinexp=''
835 installsitelib=''
836 sitelib=''
837 sitelibexp=''
838 siteprefix=''
839 siteprefixexp=''
840 sizetype=''
841 so=''
842 sharpbang=''
843 shsharp=''
844 spitshell=''
845 src=''
846 ssizetype=''
847 startperl=''
848 startsh=''
849 stdchar=''
850 d_stdio_stream_array=''
851 stdio_stream_array=''
852 sysman=''
853 trnl=''
854 uidformat=''
855 uidsign=''
856 uidsize=''
857 uidtype=''
858 archname64=''
859 use64bits=''
860 uselargefiles=''
861 uselongdouble=''
862 uselonglong=''
863 usemorebits=''
864 usemultiplicity=''
865 nm_opt=''
866 nm_so_opt=''
867 runnm=''
868 usenm=''
869 useperlio=''
870 usesocks=''
871 d_oldpthreads=''
872 use5005threads=''
873 useithreads=''
874 usethreads=''
875 incpath=''
876 mips_type=''
877 usrinc=''
878 d_vendorbin=''
879 installvendorbin=''
880 vendorbin=''
881 vendorbinexp=''
882 d_vendorlib=''
883 installvendorlib=''
884 vendorlib=''
885 vendorlibexp=''
886 usevendorprefix=''
887 vendorprefix=''
888 vendorprefixexp=''
889 defvoidused=''
890 voidflags=''
891 CONFIG=''
892
893 define='define'
894 undef='undef'
895 smallmach='pdp11 i8086 z8000 i80286 iAPX286'
896 rmlist=''
897
898 : We must find out about Eunice early
899 eunicefix=':'
900 if test -f /etc/unixtovms; then
901         eunicefix=/etc/unixtovms
902 fi
903 if test -f /etc/unixtovms.exe; then
904         eunicefix=/etc/unixtovms.exe
905 fi
906
907 i_whoami=''
908 : list of known cpp symbols, sorted alphabetically
909 al="AMIX BIT_MSF BSD BSD4_3 BSD_NET2 CMU CRAY DGUX DOLPHIN DPX2"
910 al="$al GO32 GOULD_PN HP700 I386 I80960 I960 Lynx M68000 M68K MACH"
911 al="$al MIPSEB MIPSEL MSDOS MTXINU MULTIMAX MVS"
912 al="$al M_COFF M_I186 M_I286 M_I386 M_I8086 M_I86 M_I86SM"
913 al="$al M_SYS3 M_SYS5 M_SYSIII M_SYSV M_UNIX M_XENIX"
914 al="$al NeXT OCS88 OSF1 PARISC PC532 PORTAR POSIX"
915 al="$al PWB R3000 RES RISC6000 RT Sun386i SVR3 SVR4 SVR5"
916 al="$al SYSTYPE_BSD SYSTYPE_SVR4 SYSTYPE_SYSV Tek4132 Tek4300"
917 al="$al UMAXV USGr4 USGr4_2 UTEK UTS UTek UnicomPBB UnicomPBD Utek"
918 al="$al VMS Xenix286"
919 al="$al _AIX _AIX32 _AIX370 _AIX41 _AM29000 _COFF _CRAY _CX_UX _EPI"
920 al="$al _IBMESA _IBMR2 _M88K _M88KBCS_TARGET _POWER"
921 al="$al _MIPSEB _MIPSEL _M_COFF _M_I86 _M_I86SM _M_SYS3"
922 al="$al _M_SYS5 _M_SYSIII _M_SYSV _M_UNIX _M_XENIX _NLS _PGC_ _R3000"
923 al="$al _SYSTYPE_BSD _SYSTYPE_BSD43 _SYSTYPE_SVR4"
924 al="$al _SYSTYPE_SYSV _SYSV3 _U370 _UNICOS"
925 al="$al __386BSD__ __BIG_ENDIAN __BIG_ENDIAN__ __BSD_4_4__"
926 al="$al __DGUX__ __DPX2__ __H3050R __H3050RX"
927 al="$al __LITTLE_ENDIAN __LITTLE_ENDIAN__ __MACH__"
928 al="$al __MIPSEB __MIPSEB__ __MIPSEL __MIPSEL__"
929 al="$al __Next__ __OSF1__ __PARAGON__ __PGC__ __PWB __STDC__"
930 al="$al __SVR4_2__ __UMAXV__"
931 al="$al ____386BSD____ __alpha __alpha__ __amiga"
932 al="$al __bsd4_2 __bsd4_2__ __bsdi__ __convex__"
933 al="$al __host_mips__"
934 al="$al __hp9000s200 __hp9000s300 __hp9000s400 __hp9000s500"
935 al="$al __hp9000s500 __hp9000s700 __hp9000s800"
936 al="$al __hppa __hpux __hp_osf __i286 __i286__ __i386 __i386__"
937 al="$al __i486 __i486__ __i860 __i860__ __ibmesa __ksr1__ __linux__"
938 al="$al __m68k __m68k__ __m88100__ __m88k __m88k__"
939 al="$al __mc68000 __mc68000__ __mc68020 __mc68020__"
940 al="$al __mc68030 __mc68030__ __mc68040 __mc68040__"
941 al="$al __mc88100 __mc88100__ __mips __mips__"
942 al="$al __motorola__ __osf__ __pa_risc __sparc__ __stdc__"
943 al="$al __sun __sun__ __svr3__ __svr4__ __ultrix __ultrix__"
944 al="$al __unix __unix__ __uxpm__ __uxps__ __vax __vax__"
945 al="$al _host_mips _mips _unix"
946 al="$al a29k aegis aix aixpc alliant alpha am29000 amiga ansi ardent"
947 al="$al apollo ardent att386 att3b"
948 al="$al bsd bsd43 bsd4_2 bsd4_3 bsd4_4 bsdi bull"
949 al="$al cadmus clipper concurrent convex cray ctix"
950 al="$al dmert encore gcos gcx gimpel gould"
951 al="$al hbullx20 hcx host_mips hp200 hp300 hp700 hp800"
952 al="$al hp9000 hp9000s300 hp9000s400 hp9000s500"
953 al="$al hp9000s700 hp9000s800 hp9k8 hppa hpux"
954 al="$al i186 i286 i386 i486 i8086"
955 al="$al i80960 i860 iAPX286 ibm ibm032 ibmrt interdata is68k"
956 al="$al ksr1 linux luna luna88k m68k m88100 m88k"
957 al="$al mc300 mc500 mc68000 mc68010 mc68020 mc68030"
958 al="$al mc68040 mc68060 mc68k mc68k32 mc700"
959 al="$al mc88000 mc88100 merlin mert mips mvs n16"
960 al="$al ncl_el ncl_mr"
961 al="$al news1500 news1700 news1800 news1900 news3700"
962 al="$al news700 news800 news900 ns16000 ns32000"
963 al="$al ns32016 ns32332 ns32k nsc32000 os osf"
964 al="$al parisc pc532 pdp11 plexus posix pyr"
965 al="$al riscix riscos scs sequent sgi sinix sony sony_news"
966 al="$al sonyrisc sparc sparclite spectrum stardent stratos"
967 al="$al sun sun3 sun386 svr4 sysV68 sysV88"
968 al="$al titan tower tower32 tower32_200 tower32_600 tower32_700"
969 al="$al tower32_800 tower32_850 tss u370 u3b u3b2 u3b20 u3b200"
970 al="$al u3b20d u3b5 ultrix unix unixpc unos vax venix vms"
971 al="$al xenix z8000"
972
973 : set useposix=false in your hint file to disable the POSIX extension.
974 useposix=true
975 : set useopcode=false in your hint file to disable the Opcode extension.
976 useopcode=true
977 : Trailing extension.  Override this in a hint file, if needed.
978 _exe=''
979 : Extra object files, if any, needed on this platform.
980 archobjs=''
981 : Possible local include directories to search.
982 : Set locincpth to "" in a hint file to defeat local include searches.
983 locincpth="/usr/local/include /opt/local/include /usr/gnu/include"
984 locincpth="$locincpth /opt/gnu/include /usr/GNU/include /opt/GNU/include"
985 :
986 : no include file wanted by default
987 inclwanted=''
988
989 groupstype=''
990 : change the next line if compiling for Xenix/286 on Xenix/386
991 xlibpth='/usr/lib/386 /lib/386'
992
993 : Possible local library directories to search.
994 loclibpth="/usr/local/lib /opt/local/lib /usr/gnu/lib"
995 loclibpth="$loclibpth /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib"
996
997 : general looking path for locating libraries
998 glibpth="/shlib /usr/shlib /lib/pa1.1 /usr/lib/large"
999 glibpth="$glibpth /lib /usr/lib $xlibpth"
1000 glibpth="$glibpth /lib/large /usr/lib/small /lib/small"
1001 glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/local/lib"
1002
1003 : Private path used by Configure to find libraries.  Its value
1004 : is prepended to libpth. This variable takes care of special
1005 : machines, like the mips.  Usually, it should be empty.
1006 plibpth=''
1007
1008 : default library list
1009 libswanted=''
1010 : some systems want to use only the non-versioned libso:s
1011 ignore_versioned_solibs=''
1012 : set usemultiplicity on the Configure command line to enable multiplicity.
1013 : set usesocks on the Configure command line to enable socks.
1014 : set usethreads on the Configure command line to enable threads.
1015 : full support for void wanted by default
1016 defvoidused=15
1017
1018 : List of libraries we want.
1019 : If anyone needs -lnet, put it in a hint file.
1020 libswanted='sfio socket inet nsl nm ndbm gdbm dbm db malloc dl'
1021 libswanted="$libswanted dld ld sun m c cposix posix"
1022 libswanted="$libswanted ndir dir crypt sec"
1023 libswanted="$libswanted ucb bsd BSD PW x"
1024 : We probably want to search /usr/shlib before most other libraries.
1025 : This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist.
1026 glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'`
1027 glibpth="/usr/shlib $glibpth"
1028 : Do not use vfork unless overridden by a hint file.
1029 usevfork=false
1030
1031 : Find the basic shell for Bourne shell scripts
1032 case "$sh" in
1033 '')
1034         case "$SYSTYPE" in
1035         *bsd*|sys5*) xxx="/$SYSTYPE/bin/sh";;
1036         *) xxx='/bin/sh';;
1037         esac
1038         if test -f "$xxx"; then
1039                 sh="$xxx"
1040         else
1041                 : Build up a list and do a single loop so we can 'break' out.
1042                 pth=`echo $PATH | sed -e "s/$p_/ /g"`
1043                 for xxx in sh bash ksh pdksh ash; do
1044                         for p in $pth; do
1045                                 try="$try ${p}/${xxx}"
1046                         done
1047                 done
1048                 for xxx in $try; do
1049                         if test -f "$xxx"; then
1050                                 sh="$xxx";
1051                                 break
1052                         elif test -f "$xxx.exe"; then
1053                                 sh="$xxx";
1054                                 break
1055                         fi
1056                 done
1057         fi
1058         ;;
1059 esac
1060
1061 case "$sh" in
1062 '')     cat <<EOM >&2
1063 $me:  Fatal Error:  I can't find a Bourne Shell anywhere.  
1064
1065 Usually it's in /bin/sh.  How did you even get this far?
1066 Please contact me (Perl Maintainers) at perlbug@perl.com and 
1067 we'll try to straighten this all out.
1068 EOM
1069         exit 1
1070         ;;
1071 esac
1072
1073 : see if sh knows # comments
1074 if `$sh -c '#' >/dev/null 2>&1`; then
1075         shsharp=true
1076         spitshell=cat
1077         xcat=/bin/cat
1078         test -f $xcat || xcat=/usr/bin/cat
1079         echo "#!$xcat" >try
1080         $eunicefix try
1081         chmod +x try
1082         ./try > today
1083         if test -s today; then
1084                 sharpbang='#!'
1085         else
1086                 echo "#! $xcat" > try
1087                 $eunicefix try
1088                 chmod +x try
1089                 ./try > today
1090                 if test -s today; then
1091                         sharpbang='#! '
1092                 else
1093                         sharpbang=': use '
1094                 fi
1095         fi
1096 else
1097         echo " "
1098         echo "Your $sh doesn't grok # comments--I will strip them later on."
1099         shsharp=false
1100         cd ..
1101         echo "exec grep -v '^[  ]*#'" >spitshell
1102         chmod +x spitshell
1103         $eunicefix spitshell
1104         spitshell=`pwd`/spitshell
1105         cd UU
1106         echo "I presume that if # doesn't work, #! won't work either!"
1107         sharpbang=': use '
1108 fi
1109 rm -f try today
1110
1111 : figure out how to guarantee sh startup
1112 case "$startsh" in
1113 '') startsh=${sharpbang}${sh} ;;
1114 *)
1115 esac
1116 cat >try <<EOSS
1117 $startsh
1118 set abc
1119 test "$?abc" != 1
1120 EOSS
1121
1122 chmod +x try
1123 $eunicefix try
1124 if ./try; then
1125         : echo "Yup, it does."
1126 else
1127         echo "Hmm... '$startsh' does not guarantee sh startup..."
1128         echo "You may have to fix up the shell scripts to make sure $sh runs them."
1129 fi
1130 rm -f try
1131
1132
1133 : Save command line options in file UU/cmdline.opt for later use in
1134 : generating config.sh.
1135 cat > cmdline.opt <<EOSH
1136 # Configure command line arguments.
1137 config_arg0='$0'
1138 config_args='$*'
1139 config_argc=$#
1140 EOSH
1141 argn=1
1142 for arg in "$@"; do
1143         cat >>cmdline.opt <<EOSH
1144 config_arg$argn='$arg'
1145 EOSH
1146         argn=`expr $argn + 1`
1147 done
1148
1149 : produce awk script to parse command line options
1150 cat >options.awk <<'EOF'
1151 BEGIN {
1152         optstr = "A:dD:eEf:hKOrsSU:V";  # getopt-style specification
1153
1154         len = length(optstr);
1155         for (i = 1; i <= len; i++) {
1156                 c = substr(optstr, i, 1);
1157                 if (i < len) a = substr(optstr, i + 1, 1); else a = "";
1158                 if (a == ":") {
1159                         arg[c] = 1;
1160                         i++;
1161                 }
1162                 opt[c] = 1;
1163         }
1164 }
1165 {
1166         expect = 0;
1167         str = $0;
1168         if (substr(str, 1, 1) != "-") {
1169                 printf("'%s'\n", str);
1170                 next;
1171         }
1172         len = length($0);
1173         for (i = 2; i <= len; i++) {
1174                 c = substr(str, i, 1);
1175                 if (!opt[c]) {
1176                         printf("-%s\n", substr(str, i));
1177                         next;
1178                 }
1179                 printf("-%s\n", c);
1180                 if (arg[c]) {
1181                         if (i < len)
1182                                 printf("'%s'\n", substr(str, i + 1));
1183                         else
1184                                 expect = 1;
1185                         next;
1186                 }
1187         }
1188 }
1189 END {
1190         if (expect)
1191                 print "?";
1192 }
1193 EOF
1194
1195 : process the command line options
1196 set X `for arg in "$@"; do echo "X$arg"; done |
1197         sed -e s/X// | awk -f options.awk`
1198 eval "set $*"
1199 shift
1200 rm -f options.awk
1201
1202 : set up default values
1203 fastread=''
1204 reuseval=false
1205 config_sh=''
1206 alldone=''
1207 error=''
1208 silent=''
1209 extractsh=''
1210 override=''
1211 knowitall=''
1212 rm -f optdef.sh posthint.sh
1213 cat >optdef.sh <<EOS
1214 $startsh
1215 EOS
1216
1217
1218 : option parsing
1219 while test $# -gt 0; do
1220         case "$1" in
1221         -d) shift; fastread=yes;;
1222         -e) shift; alldone=cont;;
1223         -f)
1224                 shift
1225                 cd ..
1226                 if test -r "$1"; then
1227                         config_sh="$1"
1228                 else
1229                         echo "$me: cannot read config file $1." >&2
1230                         error=true
1231                 fi
1232                 cd UU
1233                 shift;;
1234         -h) shift; error=true;;
1235         -r) shift; reuseval=true;;
1236         -s) shift; silent=true; realsilent=true;;
1237         -E) shift; alldone=exit;;
1238         -K) shift; knowitall=true;;
1239         -O) shift; override=true;;
1240         -S) shift; silent=true; extractsh=true;;
1241         -D)
1242                 shift
1243                 case "$1" in
1244                 *=)
1245                         echo "$me: use '-U symbol=', not '-D symbol='." >&2
1246                         echo "$me: ignoring -D $1" >&2
1247                         ;;
1248                 *=*) echo "$1" | \
1249                                 sed -e "s/'/'\"'\"'/g" -e "s/=\(.*\)/='\1'/" >> optdef.sh;;
1250                 *) echo "$1='define'" >> optdef.sh;;
1251                 esac
1252                 shift
1253                 ;;
1254         -U)
1255                 shift
1256                 case "$1" in
1257                 *=) echo "$1" >> optdef.sh;;
1258                 *=*)
1259                         echo "$me: use '-D symbol=val', not '-U symbol=val'." >&2
1260                         echo "$me: ignoring -U $1" >&2
1261                         ;;
1262                 *) echo "$1='undef'" >> optdef.sh;;
1263                 esac
1264                 shift
1265                 ;;
1266         -A)
1267             shift
1268             xxx=''
1269             yyy="$1"
1270             zzz=''
1271             uuu=undef
1272             case "$yyy" in
1273             *=*) zzz=`echo $yyy|sed 's!=.*!!'`
1274                  case "$zzz" in
1275                  *:*) zzz='' ;;
1276                  *)   xxx=append
1277                       zzz=" "`echo $yyy|sed 's!^[^=]*=!!'` 
1278                       yyy=`echo $yyy|sed 's!=.*!!'` ;;
1279                  esac
1280                  ;;
1281             esac
1282             case "$xxx" in
1283             '')  case "$yyy" in
1284                  *:*) xxx=`echo $yyy|sed 's!:.*!!'`
1285                       yyy=`echo $yyy|sed 's!^[^:]*:!!'`
1286                       zzz=`echo $yyy|sed 's!^[^=]*=!!'`
1287                       yyy=`echo $yyy|sed 's!=.*!!'` ;;
1288                  *)   xxx=`echo $yyy|sed 's!:.*!!'`
1289                       yyy=`echo $yyy|sed 's!^[^:]*:!!'` ;;
1290                  esac
1291                  ;;       
1292             esac
1293             case "$xxx" in
1294             append)
1295                 echo "$yyy=\"\${$yyy}$zzz\""    >> posthint.sh ;;
1296             clear)
1297                 echo "$yyy=''"                  >> posthint.sh ;;
1298             define)
1299                 case "$zzz" in
1300                 '') zzz=define ;;
1301                 esac
1302                 echo "$yyy='$zzz'"              >> posthint.sh ;;
1303             eval)
1304                 echo "eval \"$yyy=$zzz\""       >> posthint.sh ;;
1305             prepend)
1306                 echo "$yyy=\"$zzz\${$yyy}\""    >> posthint.sh ;;
1307             undef)
1308                 case "$zzz" in
1309                 '') zzz="$uuu" ;;
1310                 esac
1311                 echo "$yyy=$zzz"                >> posthint.sh ;;
1312             *)  echo "$me: unknown -A command '$xxx', ignoring -A $1" >&2 ;;
1313             esac
1314             ;;
1315         -V) echo "$me generated by metaconfig 3.0 PL70." >&2
1316             exit 0;;
1317         --) break;;
1318         -*) echo "$me: unknown option $1" >&2; shift; error=true;;
1319         *) break;;
1320         esac
1321 done
1322
1323 case "$error" in
1324 true)
1325         cat >&2 <<EOM
1326 Usage: $me [-dehrsEKOSV] [-f config.sh] [-D symbol] [-D symbol=value]
1327                  [-U symbol] [-U symbol=] [-A command:symbol...]
1328   -d : use defaults for all answers.
1329   -e : go on without questioning past the production of config.sh.
1330   -f : specify an alternate default configuration file.
1331   -h : print this help message and exit (with an error status).
1332   -r : reuse C symbols value if possible (skips costly nm extraction).
1333   -s : silent mode, only echoes questions and essential information.
1334   -D : define symbol to have some value:
1335          -D symbol         symbol gets the value 'define'
1336          -D symbol=value   symbol gets the value 'value'
1337   -E : stop at the end of questions, after having produced config.sh.
1338   -K : do not use unless you know what you are doing.
1339   -O : let -D and -U override definitions from loaded configuration file.
1340   -S : perform variable substitutions on all .SH files (can mix with -f)
1341   -U : undefine symbol:
1342          -U symbol    symbol gets the value 'undef'
1343          -U symbol=   symbol gets completely empty
1344   -A : manipulate symbol after the platform specific hints have been applied:
1345          -A symbol=value                append " "value to symbol
1346          -A append:symbol=value         append value to symbol
1347          -A define:symbol=value         define symbol to have value
1348          -A clear:symbol                define symbol to be ''
1349          -A define:symbol               define symbol to be 'define'
1350          -A eval:symbol=value           define symbol to be eval of value
1351          -A prepend:symbol=value        prepend value to symbol
1352          -A undef:symbol                define symbol to be 'undef'
1353          -A undef:symbol=               define symbol to be ''
1354   -V : print version number and exit (with a zero status).
1355 EOM
1356         exit 1
1357         ;;
1358 esac
1359
1360 : Sanity checks
1361 case "$fastread$alldone" in
1362 yescont|yesexit) ;;
1363 *)
1364         if test ! -t 0; then
1365                 echo "Say 'sh Configure', not 'sh <Configure'"
1366                 exit 1
1367         fi
1368         ;;
1369 esac
1370
1371 exec 4>&1
1372 case "$silent" in
1373 true) exec 1>/dev/null;;
1374 esac
1375
1376 : run the defines and the undefines, if any, but leave the file out there...
1377 touch optdef.sh
1378 . ./optdef.sh
1379 : create the posthint manipulation script and leave the file out there...
1380 touch posthint.sh
1381
1382 : set package name
1383 package=perl5
1384 first=`echo $package | sed -e 's/^\(.\).*/\1/'`
1385 last=`echo $package | sed -e 's/^.\(.*\)/\1/'`
1386 case "`echo AbyZ | tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
1387 ABYZ) spackage=`echo $first | tr '[:lower:]' '[:upper:]'`$last;;
1388 *) spackage=`echo $first | tr '[a-z]' '[A-Z]'`$last;;
1389 esac
1390
1391 : Some greps do not return status, grrr.
1392 echo "grimblepritz" >grimble
1393 if grep blurfldyick grimble >/dev/null 2>&1 ; then
1394         contains=contains
1395 elif grep grimblepritz grimble >/dev/null 2>&1 ; then
1396         contains=grep
1397 else
1398         contains=contains
1399 fi
1400 rm -f grimble
1401 : the following should work in any shell
1402 case "$contains" in
1403 contains*)
1404         echo " "
1405         echo "AGH!  Grep doesn't return a status.  Attempting remedial action."
1406         cat >contains <<'EOSS'
1407 grep "$1" "$2" >.greptmp && cat .greptmp && test -s .greptmp
1408 EOSS
1409 chmod +x contains
1410 esac
1411
1412 : Find the path to the source tree
1413 case "$src" in
1414 '') case "$0" in
1415     */*) src=`echo $0 | sed -e 's%/[^/][^/]*$%%'`
1416          case "$src" in
1417          /*)    ;;
1418          *)     src=`cd ../$src && pwd` ;;
1419          esac
1420          ;;
1421     *)   src='.';;
1422     esac;;
1423 esac
1424 case "$src" in
1425 '')     src=/
1426         rsrc=/
1427         ;;
1428 /*) rsrc="$src";;
1429 *) rsrc="../$src";;
1430 esac
1431 if test -f $rsrc/Configure && \
1432         $contains "^package=$package$" $rsrc/Configure >/dev/null 2>&1
1433 then
1434    : found it, so we are ok.
1435 else
1436         rsrc=''
1437         for src in . .. ../.. ../../.. ../../../..; do
1438                 if test -f ../$src/Configure && \
1439                         $contains "^package=$package$" ../$src/Configure >/dev/null 2>&1
1440                 then
1441                         rsrc=../$src
1442                         break
1443                 fi
1444         done
1445 fi
1446 case "$rsrc" in
1447 '')
1448         cat <<EOM >&4
1449
1450 Sorry, I can't seem to locate the source dir for $package.  Please start
1451 Configure with an explicit path -- i.e. /some/path/Configure.
1452
1453 EOM
1454         exit 1
1455         ;;
1456 ../.)   rsrc='..';;
1457 *)
1458         echo " "
1459         echo "Sources for $package found in \"$src\"." >&4
1460         ;;
1461 esac
1462
1463 : script used to extract .SH files with variable substitutions
1464 cat >extract <<'EOS'
1465 CONFIGDOTSH=true
1466 echo "Doing variable substitutions on .SH files..."
1467 if test -f $src/MANIFEST; then
1468         set x `awk '{print $1}' <$src/MANIFEST | grep '\.SH$'`
1469 else
1470         echo "(Looking for .SH files under the source directory.)"
1471         set x `(cd $src; find . -name "*.SH" -print)`
1472 fi
1473 shift
1474 case $# in
1475 0) set x `(cd $src; echo *.SH)`; shift;;
1476 esac
1477 if test ! -f $src/$1; then
1478         shift
1479 fi
1480 mkdir_p='
1481 name=$1;
1482 create="";
1483 while test $name; do
1484         if test ! -d "$name"; then
1485                 create="$name $create";
1486                 name=`echo $name | sed -e "s|^[^/]*$||"`;
1487                 name=`echo $name | sed -e "s|\(.*\)/.*|\1|"`;
1488         else
1489                 name="";
1490         fi;
1491 done;
1492 for file in $create; do
1493         mkdir $file;
1494 done
1495 '
1496 for file in $*; do
1497         case "$src" in
1498         ".")
1499                 case "$file" in
1500                 */*)
1501                         dir=`expr X$file : 'X\(.*\)/'`
1502                         file=`expr X$file : 'X.*/\(.*\)'`
1503                         (cd $dir && . ./$file)
1504                         ;;
1505                 *)
1506                         . ./$file
1507                         ;;
1508                 esac
1509                 ;;
1510         *)
1511                 case "$file" in
1512                 */*)
1513                         dir=`expr X$file : 'X\(.*\)/'`
1514                         file=`expr X$file : 'X.*/\(.*\)'`
1515                         (set x $dir; shift; eval $mkdir_p)
1516                         sh <$src/$dir/$file
1517                         ;;
1518                 *)
1519                         sh <$src/$file
1520                         ;;
1521                 esac
1522                 ;;
1523         esac
1524 done
1525 if test -f $src/config_h.SH; then
1526         if test ! -f config.h; then
1527         : oops, they left it out of MANIFEST, probably, so do it anyway.
1528         . $src/config_h.SH
1529         fi
1530 fi
1531 EOS
1532
1533 : extract files and exit if asked to do so
1534 case "$extractsh" in
1535 true)
1536         case "$realsilent" in
1537         true) ;;
1538         *) exec 1>&4;;
1539         esac
1540         case "$config_sh" in
1541         '') config_sh='config.sh';;
1542         esac
1543         echo " "
1544         echo "Fetching answers from $config_sh..."
1545         cd ..
1546         . $config_sh
1547         test "$override" && . ./optdef.sh
1548         echo " "
1549         . UU/extract
1550         rm -rf UU
1551         echo "Done."
1552         exit 0
1553         ;;
1554 esac
1555
1556 : Eunice requires " " instead of "", can you believe it
1557 echo " "
1558 : Here we go...
1559 echo "Beginning of configuration questions for $package."
1560
1561 trap 'echo " "; test -d ../UU && rm -rf X $rmlist; exit 1' 1 2 3 15
1562
1563 : first determine how to suppress newline on echo command
1564 echo " "
1565 echo "Checking echo to see how to suppress newlines..."
1566 (echo "hi there\c" ; echo " ") >.echotmp
1567 if $contains c .echotmp >/dev/null 2>&1 ; then
1568         echo "...using -n."
1569         n='-n'
1570         c=''
1571 else
1572         cat <<'EOM'
1573 ...using \c
1574 EOM
1575         n=''
1576         c='\c'
1577 fi
1578 echo $n "The star should be here-->$c"
1579 echo '*'
1580 rm -f .echotmp
1581
1582 : Now test for existence of everything in MANIFEST
1583 echo " "
1584 if test -f $rsrc/MANIFEST; then
1585         echo "First let's make sure your kit is complete.  Checking..." >&4
1586         awk '$1 !~ /PACK[A-Z]+/ {print $1}' $rsrc/MANIFEST | split -50
1587         rm -f missing
1588         tmppwd=`pwd`
1589         for filelist in x??; do
1590                 (cd $rsrc; ls `cat $tmppwd/$filelist` >/dev/null 2>>$tmppwd/missing)
1591         done
1592         if test -s missing; then
1593                 cat missing >&4
1594                 cat >&4 <<'EOM'
1595
1596 THIS PACKAGE SEEMS TO BE INCOMPLETE.
1597
1598 You have the option of continuing the configuration process, despite the
1599 distinct possibility that your kit is damaged, by typing 'y'es.  If you
1600 do, don't blame me if something goes wrong.  I advise you to type 'n'o
1601 and contact the author (perlbug@perl.com).
1602
1603 EOM
1604                 echo $n "Continue? [n] $c" >&4
1605                 read ans
1606                 case "$ans" in
1607                 y*)
1608                         echo "Continuing..." >&4
1609                         rm -f missing
1610                         ;;
1611                 *)
1612                         echo "ABORTING..." >&4
1613                         kill $$
1614                         ;;
1615                 esac
1616         else
1617                 echo "Looks good..."
1618         fi
1619 else
1620         echo "There is no MANIFEST file.  I hope your kit is complete !"
1621 fi
1622 rm -f missing x??
1623
1624 echo " "
1625 : Find the appropriate value for a newline for tr
1626 if test -n "$DJGPP"; then
1627        trnl='\012'
1628 fi
1629 if test X"$trnl" = X; then
1630         case "`echo foo|tr '\n' x 2>/dev/null`" in
1631         foox) trnl='\n' ;;
1632         esac
1633 fi
1634 if test X"$trnl" = X; then
1635         case "`echo foo|tr '\012' x 2>/dev/null`" in
1636         foox) trnl='\012' ;;
1637         esac
1638 fi
1639 if test X"$trnl" = X; then
1640         cat <<EOM >&2
1641
1642 $me: Fatal Error: cannot figure out how to translate newlines with 'tr'.
1643
1644 EOM
1645         exit 1
1646 fi
1647
1648 : compute the number of columns on the terminal for proper question formatting
1649 case "$COLUMNS" in
1650 '') COLUMNS='80';;
1651 esac
1652
1653 : set up the echo used in my read
1654 myecho="case \"\$xxxm\" in
1655 '') echo $n \"\$rp $c\" >&4;;
1656 *) case \"\$rp\" in
1657         '') echo $n \"[\$xxxm] $c\";;
1658         *)
1659                 if test \`echo \"\$rp [\$xxxm]  \" | wc -c\` -ge $COLUMNS; then
1660                         echo \"\$rp\" >&4
1661                         echo $n \"[\$xxxm] $c\" >&4
1662                 else
1663                         echo $n \"\$rp [\$xxxm] $c\" >&4
1664                 fi
1665                 ;;
1666         esac;;
1667 esac"
1668
1669 : now set up to do reads with possible shell escape and default assignment
1670 cat <<EOSC >myread
1671 $startsh
1672 xxxm=\$dflt
1673 $myecho
1674 ans='!'
1675 case "\$fastread" in
1676 yes) case "\$dflt" in
1677         '') ;;
1678         *) ans='';
1679                 case "\$silent-\$rp" in
1680                 true-) ;;
1681                 *) echo " " >&4;;
1682                 esac;;
1683         esac;;
1684 *) case "\$silent" in
1685         true) case "\$rp" in
1686                 '') ans='';;
1687                 esac;;
1688         esac;;
1689 esac
1690 while expr "X\$ans" : "X!" >/dev/null; do
1691         read answ
1692         set x \$xxxm
1693         shift
1694         aok=''; eval "ans=\\"\$answ\\"" && aok=y
1695         case  "\$answ" in
1696         "!")
1697                 sh 1>&4
1698                 echo " "
1699                 $myecho
1700                 ;;
1701         !*)
1702                 set x \`expr "X\$ans" : "X!\(.*\)\$"\`
1703                 shift
1704                 sh 1>&4 -c "\$*"
1705                 echo " "
1706                 $myecho
1707                 ;;
1708         "\$ans")
1709                 case "\$ans" in
1710                 \\&*)
1711                         set x \`expr "X\$ans" : "X&\(.*\)\$"\`
1712                         shift
1713                         case "\$1" in
1714                         -d)
1715                                 fastread=yes
1716                                 echo "(OK, I'll run with -d after this question.)" >&4
1717                                 ;;
1718                         -*)
1719                                 echo "*** Sorry, \$1 not supported yet." >&4
1720                                 ;;
1721                         esac
1722                         $myecho
1723                         ans=!
1724                         ;;
1725                 esac;;
1726         *)
1727                 case "\$aok" in
1728                 y)
1729                         echo "*** Substitution done -- please confirm."
1730                         xxxm="\$ans"
1731                         ans=\`echo $n "\$ans$c" | tr '$trnl' ' '\`
1732                         xxxm="\$ans"
1733                         ans=!
1734                         ;;
1735                 *)
1736                         echo "*** Error -- try again."
1737                         ans=!
1738                         ;;
1739                 esac
1740                 $myecho
1741                 ;;
1742         esac
1743         case "\$ans\$xxxm\$nostick" in
1744         '')
1745                 ans=!
1746                 $myecho
1747                 ;;
1748         esac
1749 done
1750 case "\$ans" in
1751 '') ans="\$xxxm";;
1752 esac
1753 EOSC
1754
1755 : create .config dir to save info across Configure sessions
1756 test -d ../.config || mkdir ../.config
1757 cat >../.config/README <<EOF
1758 This directory created by Configure to save information that should
1759 persist across sessions for $package.
1760
1761 You may safely delete it if you wish.
1762 EOF
1763
1764 : general instructions
1765 needman=true
1766 firsttime=true
1767 user=`(logname) 2>/dev/null`
1768 case "$user" in
1769 '') user=`whoami 2>&1`;;
1770 esac
1771 if $contains "^$user\$" ../.config/instruct >/dev/null 2>&1; then
1772         firsttime=false
1773         echo " "
1774         rp='Would you like to see the instructions?'
1775         dflt=n
1776         . ./myread
1777         case "$ans" in
1778         [yY]*) ;;
1779         *) needman=false;;
1780         esac
1781 fi
1782 if $needman; then
1783         cat <<EOH
1784
1785 This installation shell script will examine your system and ask you questions
1786 to determine how the perl5 package should be installed. If you get
1787 stuck on a question, you may use a ! shell escape to start a subshell or
1788 execute a command.  Many of the questions will have default answers in square
1789 brackets; typing carriage return will give you the default.
1790
1791 On some of the questions which ask for file or directory names you are allowed
1792 to use the ~name construct to specify the login directory belonging to "name",
1793 even if you don't have a shell which knows about that.  Questions where this is
1794 allowed will be marked "(~name ok)".
1795
1796 EOH
1797         rp=''
1798         dflt='Type carriage return to continue'
1799         . ./myread
1800         cat <<'EOH'
1801
1802 The prompter used in this script allows you to use shell variables and
1803 backticks in your answers.  You may use $1, $2, etc...  to refer to the words
1804 in the default answer, as if the default line was a set of arguments given to a
1805 script shell.  This means you may also use $* to repeat the whole default line,
1806 so you do not have to re-type everything to add something to the default.
1807
1808 Everytime there is a substitution, you will have to confirm.  If there is an
1809 error (e.g. an unmatched backtick), the default answer will remain unchanged
1810 and you will be prompted again.
1811
1812 If you are in a hurry, you may run 'Configure -d'.  This will bypass nearly all
1813 the questions and use the computed defaults (or the previous answers if there
1814 was already a config.sh file). Type 'Configure -h' for a list of options.
1815 You may also start interactively and then answer '& -d' at any prompt to turn
1816 on the non-interactive behaviour for the remainder of the execution.
1817
1818 EOH
1819         . ./myread
1820         cat <<EOH
1821
1822 Much effort has been expended to ensure that this shell script will run on any
1823 Unix system.  If despite that it blows up on yours, your best bet is to edit
1824 Configure and run it again.  If you can't run Configure for some reason,
1825 you'll have to generate a config.sh file by hand.  Whatever problems you
1826 have, let me (perlbug@perl.com) know how I blew it.
1827
1828 This installation script affects things in two ways:
1829
1830 1) it may do direct variable substitutions on some of the files included
1831    in this kit.
1832 2) it builds a config.h file for inclusion in C programs.  You may edit
1833    any of these files as the need arises after running this script.
1834
1835 If you make a mistake on a question, there is no easy way to back up to it
1836 currently.  The easiest thing to do is to edit config.sh and rerun all the SH
1837 files.  Configure will offer to let you do this before it runs the SH files.
1838
1839 EOH
1840         dflt='Type carriage return to continue'
1841         . ./myread
1842         case "$firsttime" in
1843         true) echo $user >>../.config/instruct;;
1844         esac
1845 fi
1846
1847 : find out where common programs are
1848 echo " "
1849 echo "Locating common programs..." >&4
1850 cat <<EOSC >loc
1851 $startsh
1852 case \$# in
1853 0) exit 1;;
1854 esac
1855 thing=\$1
1856 shift
1857 dflt=\$1
1858 shift
1859 for dir in \$*; do
1860         case "\$thing" in
1861         .)
1862         if test -d \$dir/\$thing; then
1863                 echo \$dir
1864                 exit 0
1865         fi
1866         ;;
1867         *)
1868         for thisthing in \$dir/\$thing; do
1869                 : just loop through to pick last item
1870         done
1871         if test -f \$thisthing; then
1872                 echo \$thisthing
1873                 exit 0
1874         elif test -f \$dir/\$thing.exe; then
1875                 if test -n "$DJGPP"; then
1876                         echo \$dir/\$thing.exe
1877                 else
1878                         : on Eunice apparently
1879                         echo \$dir/\$thing
1880                 fi
1881                 exit 0
1882         fi
1883         ;;
1884         esac
1885 done
1886 echo \$dflt
1887 exit 1
1888 EOSC
1889 chmod +x loc
1890 $eunicefix loc
1891 loclist="
1892 awk
1893 cat
1894 comm
1895 cp
1896 echo
1897 expr
1898 grep
1899 ls
1900 make
1901 mkdir
1902 rm
1903 sed
1904 sort
1905 touch
1906 tr
1907 uniq
1908 "
1909 trylist="
1910 Mcc
1911 ar
1912 byacc
1913 cpp
1914 csh
1915 date
1916 egrep
1917 gzip
1918 less
1919 ln
1920 more
1921 nm
1922 nroff
1923 perl
1924 pg
1925 test
1926 uname
1927 zip
1928 "
1929 pth=`echo $PATH | sed -e "s/$p_/ /g"`
1930 pth="$pth /lib /usr/lib"
1931 for file in $loclist; do
1932         eval xxx=\$$file
1933         case "$xxx" in
1934         /*|?:[\\/]*)
1935                 if test -f "$xxx"; then
1936                         : ok
1937                 else
1938                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
1939                         xxx=`./loc $file $file $pth`
1940                 fi
1941                 ;;
1942         '') xxx=`./loc $file $file $pth`;;
1943         *) xxx=`./loc $xxx $xxx $pth`;;
1944         esac
1945         eval $file=$xxx
1946         eval _$file=$xxx
1947         case "$xxx" in
1948         /*)
1949                 echo $file is in $xxx.
1950                 ;;
1951         ?:[\\/]*)
1952                 echo $file is in $xxx.
1953                 ;;
1954         *)
1955                 echo "I don't know where '$file' is, and my life depends on it." >&4
1956                 echo "Go find a public domain implementation or fix your PATH setting!" >&4
1957                 exit 1
1958                 ;;
1959         esac
1960 done
1961 echo " "
1962 echo "Don't worry if any of the following aren't found..."
1963 say=offhand
1964 for file in $trylist; do
1965         eval xxx=\$$file
1966         case "$xxx" in
1967         /*|?:[\\/]*)
1968                 if test -f "$xxx"; then
1969                         : ok
1970                 else
1971                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
1972                         xxx=`./loc $file $file $pth`
1973                 fi
1974                 ;;
1975         '') xxx=`./loc $file $file $pth`;;
1976         *) xxx=`./loc $xxx $xxx $pth`;;
1977         esac
1978         eval $file=$xxx
1979         eval _$file=$xxx
1980         case "$xxx" in
1981         /*)
1982                 echo $file is in $xxx.
1983                 ;;
1984         ?:[\\/]*)
1985                 echo $file is in $xxx.
1986                 ;;
1987         *)
1988                 echo "I don't see $file out there, $say."
1989                 say=either
1990                 ;;
1991         esac
1992 done
1993 case "$egrep" in
1994 egrep)
1995         echo "Substituting grep for egrep."
1996         egrep=$grep
1997         ;;
1998 esac
1999 case "$ln" in
2000 ln)
2001         echo "Substituting cp for ln."
2002         ln=$cp
2003         ;;
2004 esac
2005 case "$test" in
2006 test)
2007         echo "Hopefully test is built into your sh."
2008         ;;
2009 *)
2010         if `sh -c "PATH= test true" >/dev/null 2>&1`; then
2011                 echo "Using the test built into your sh."
2012                 test=test
2013                 _test=test
2014         fi
2015         ;;
2016 esac
2017 case "$echo" in
2018 echo)
2019         echo "Hopefully echo is built into your sh."
2020         ;;
2021 '') ;;
2022 *)
2023         echo " "
2024 echo "Checking compatibility between $echo and builtin echo (if any)..." >&4
2025         $echo $n "hi there$c" >foo1
2026         echo $n "hi there$c" >foo2
2027         if cmp foo1 foo2 >/dev/null 2>&1; then
2028                 echo "They are compatible.  In fact, they may be identical."
2029         else
2030                 case "$n" in
2031                 '-n') n='' c='\c';;
2032                 *) n='-n' c='';;
2033                 esac
2034                 cat <<FOO
2035 They are not compatible!  You are probably running ksh on a non-USG system.
2036 I'll have to use $echo instead of the builtin, since Bourne shell doesn't
2037 have echo built in and we may have to run some Bourne shell scripts.  That
2038 means I'll have to use '$n$c' to suppress newlines now.  Life is ridiculous.
2039
2040 FOO
2041                 $echo $n "The star should be here-->$c"
2042                 $echo "*"
2043         fi
2044         $rm -f foo1 foo2
2045         ;;
2046 esac
2047
2048 : determine whether symbolic links are supported
2049 echo " "
2050 $touch blurfl
2051 if $ln -s blurfl sym > /dev/null 2>&1 ; then
2052         echo "Symbolic links are supported." >&4
2053         lns="$ln -s"
2054 else
2055         echo "Symbolic links are NOT supported." >&4
2056         lns="$ln"
2057 fi
2058 $rm -f blurfl sym
2059
2060 : see whether [:lower:] and [:upper:] are supported character classes
2061 echo " "
2062 case "`echo AbyZ | $tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
2063 ABYZ)
2064         echo "Good, your tr supports [:lower:] and [:upper:] to convert case." >&4
2065         up='[:upper:]'
2066         low='[:lower:]'
2067         ;;
2068 *)      # There is a discontinuity in EBCDIC between 'I' and 'J'
2069         # (0xc9 and 0xd1), therefore that is a nice testing point.
2070         if test "X$up" = X -o "X$low" = X; then
2071             case "`echo IJ | $tr '[I-J]' '[i-j]' 2>/dev/null`" in
2072             ij) up='[A-Z]'
2073                 low='[a-z]'
2074                 ;;
2075             esac
2076         fi
2077         if test "X$up" = X -o "X$low" = X; then
2078             case "`echo IJ | $tr I-J i-j 2>/dev/null`" in
2079             ij) up='A-Z'
2080                 low='a-z'
2081                 ;;
2082             esac
2083         fi
2084         if test "X$up" = X -o "X$low" = X; then
2085             case "`echo IJ | od -x 2>/dev/null`" in
2086             *C9D1*|*c9d1*)
2087                 echo "Hey, this might be EBCDIC." >&4
2088                 if test "X$up" = X -o "X$low" = X; then
2089                     case "`echo IJ | $tr '[A-IJ-RS-Z]' '[a-ij-rs-z]' 2>/dev/null`" in
2090                     ij) up='[A-IJ-RS-Z]'
2091                         low='[a-ij-rs-z]'
2092                         ;;
2093                     esac
2094                 fi
2095                 if test "X$up" = X -o "X$low" = X; then
2096                     case "`echo IJ | $tr A-IJ-RS-Z a-ij-rs-z 2>/dev/null`" in
2097                     ij) up='A-IJ-RS-Z'
2098                         low='a-ij-rs-z'
2099                         ;;
2100                     esac
2101                 fi
2102                 ;;
2103             esac
2104         fi
2105 esac
2106 case "`echo IJ | $tr \"$up\" \"$low\" 2>/dev/null`" in
2107 ij)
2108     echo "Using $up and $low to convert case." >&4
2109     ;;
2110 *)
2111     echo "I don't know how to translate letters from upper to lower case." >&4
2112     echo "Your tr is not acting any way I know of." >&4
2113     exit 1
2114     ;;
2115 esac
2116 : set up the translation script tr, must be called with ./tr of course
2117 cat >tr <<EOSC
2118 $startsh
2119 case "\$1\$2" in
2120 '[A-Z][a-z]') exec $tr '$up' '$low';;
2121 '[a-z][A-Z]') exec $tr '$low' '$up';;
2122 esac
2123 exec $tr "\$@"
2124 EOSC
2125 chmod +x tr
2126 $eunicefix tr
2127
2128 : Try to determine whether config.sh was made on this system
2129 case "$config_sh" in
2130 '')
2131 myuname=`( ($uname -a) 2>/dev/null || hostname) 2>&1`
2132 # tr '[A-Z]' '[a-z]' would not work in EBCDIC
2133 # because the A-Z/a-z are not consecutive.
2134 myuname=`echo $myuname | $sed -e 's/^[^=]*=//' -e 's/\///g' | \
2135         ./tr '[A-Z]' '[a-z]' | $tr $trnl ' '`
2136 newmyuname="$myuname"
2137 dflt=n
2138 case "$knowitall" in
2139 '')
2140         if test -f ../config.sh; then
2141                 if $contains myuname= ../config.sh >/dev/null 2>&1; then
2142                         eval "`grep myuname= ../config.sh`"
2143                 fi
2144                 if test "X$myuname" = "X$newmyuname"; then
2145                         dflt=y
2146                 fi
2147         fi
2148         ;;
2149 *) dflt=y;;
2150 esac
2151
2152 : Get old answers from old config file if Configure was run on the
2153 : same system, otherwise use the hints.
2154 hint=default
2155 cd ..
2156 if test -f config.sh; then
2157         echo " "
2158         rp="I see a config.sh file.  Shall I use it to set the defaults?"
2159         . UU/myread
2160         case "$ans" in
2161         n*|N*) echo "OK, I'll ignore it."; mv config.sh config.sh.old;;
2162         *)  echo "Fetching default answers from your old config.sh file..." >&4
2163                 tmp_n="$n"
2164                 tmp_c="$c"
2165                 tmp_sh="$sh"
2166                 . ./config.sh
2167                 cp config.sh UU
2168                 n="$tmp_n"
2169                 c="$tmp_c"
2170                 : Older versions did not always set $sh.  Catch re-use of such
2171                 : an old config.sh.
2172                 case "$sh" in
2173                 '') sh="$tmp_sh" ;;
2174                 esac
2175                 hint=previous
2176                 ;;
2177         esac
2178 fi
2179 if test ! -f config.sh; then
2180         $cat <<EOM
2181
2182 First time through, eh?  I have some defaults handy for some systems
2183 that need some extra help getting the Configure answers right:
2184
2185 EOM
2186         (cd $src/hints; ls -C *.sh) | $sed 's/\.sh/   /g' >&4
2187         dflt=''
2188         : Half the following guesses are probably wrong... If you have better
2189         : tests or hints, please send them to perlbug@perl.com
2190         : The metaconfig authors would also appreciate a copy...
2191         $test -f /irix && osname=irix
2192         $test -f /xenix && osname=sco_xenix
2193         $test -f /dynix && osname=dynix
2194         $test -f /dnix && osname=dnix
2195         $test -f /lynx.os && osname=lynxos
2196         $test -f /unicos && osname=unicos && osvers=`$uname -r`
2197         $test -f /unicosmk.ar && osname=unicosmk && osvers=`$uname -r`
2198         $test -f /bin/mips && /bin/mips && osname=mips
2199         $test -d /NextApps && set X `hostinfo | grep 'NeXT Mach.*:' | \
2200                 $sed -e 's/://' -e 's/\./_/'` && osname=next && osvers=$4
2201         $test -d /usr/apollo/bin && osname=apollo
2202         $test -f /etc/saf/_sactab && osname=svr4
2203         $test -d /usr/include/minix && osname=minix
2204         if $test -d /MachTen -o -d /MachTen_Folder; then
2205                 osname=machten
2206                 if $test -x /sbin/version; then
2207                         osvers=`/sbin/version | $awk '{print $2}' |
2208                         $sed -e 's/[A-Za-z]$//'`
2209                 elif $test -x /usr/etc/version; then
2210                         osvers=`/usr/etc/version | $awk '{print $2}' |
2211                         $sed -e 's/[A-Za-z]$//'`
2212                 else
2213                         osvers="$2.$3"
2214                 fi
2215         fi
2216
2217         $test -f /sys/posix.dll &&
2218                 $test -f /usr/bin/what &&
2219                 set X `/usr/bin/what /sys/posix.dll` &&
2220                 $test "$3" = UWIN &&
2221                 osname=uwin &&
2222                 osvers="$5"
2223
2224         if $test -f $uname; then
2225                 set X $myuname
2226                 shift
2227
2228                 case "$5" in
2229                 fps*) osname=fps ;;
2230                 mips*)
2231                         case "$4" in
2232                         umips) osname=umips ;;
2233                         *) osname=mips ;;
2234                         esac;;
2235                 [23]100) osname=mips ;;
2236                 next*) osname=next ;;
2237                 i386*)
2238                         tmp=`/bin/uname -X 2>/dev/null|awk '/3\.2v[45]/{ print $(NF) }'`
2239                         if $test "$tmp" != "" -a "$3" = "3.2" -a -f '/etc/systemid'; then
2240                                 osname='sco'
2241                                 osvers=$tmp
2242                         elif $test -f /etc/kconfig; then
2243                                 osname=isc
2244                                 if test "$lns" = "$ln -s"; then
2245                                         osvers=4
2246                                 elif $contains _SYSV3 /usr/include/stdio.h > /dev/null 2>&1 ; then
2247                                         osvers=3
2248                                 elif $contains _POSIX_SOURCE /usr/include/stdio.h > /dev/null 2>&1 ; then
2249                                         osvers=2
2250                                 fi
2251                         fi
2252                         tmp=''
2253                         ;;
2254                 pc*)
2255                         if test -n "$DJGPP"; then
2256                                 osname=dos
2257                                 osvers=djgpp
2258                         fi
2259                         ;;
2260                 esac
2261
2262                 case "$1" in
2263                 aix) osname=aix
2264                         tmp=`( (oslevel) 2>/dev/null || echo "not found") 2>&1`
2265                         case "$tmp" in
2266                         'not found') osvers="$4"."$3" ;;
2267                         '<3240'|'<>3240') osvers=3.2.0 ;;
2268                         '=3240'|'>3240'|'<3250'|'<>3250') osvers=3.2.4 ;;
2269                         '=3250'|'>3250') osvers=3.2.5 ;;
2270                         *) osvers=$tmp;;
2271                         esac
2272                         ;;
2273                 bsd386) osname=bsd386
2274                         osvers=`$uname -r`
2275                         ;;
2276                 cygwin*) osname=cygwin
2277                         osvers="$3"
2278                         ;;
2279                 *dc.osx) osname=dcosx
2280                         osvers="$3"
2281                         ;;
2282                 dnix) osname=dnix
2283                         osvers="$3"
2284                         ;;
2285                 domainos) osname=apollo
2286                         osvers="$3"
2287                         ;;
2288                 dgux) osname=dgux 
2289                         osvers="$3"
2290                         ;;
2291                 dynixptx*) osname=dynixptx
2292                         osvers=`echo "$4"|sed 's/^v//'`
2293                         ;;
2294                 freebsd) osname=freebsd 
2295                         osvers="$3" ;;
2296                 genix) osname=genix ;;
2297                 hp*) osname=hpux 
2298                         osvers=`echo "$3" | $sed 's,.*\.\([0-9]*\.[0-9]*\),\1,'`
2299                         ;;
2300                 irix*) osname=irix
2301                         case "$3" in
2302                         4*) osvers=4 ;;
2303                         5*) osvers=5 ;;
2304                         *)      osvers="$3" ;;
2305                         esac
2306                         ;;
2307                 linux) osname=linux
2308                         case "$3" in
2309                         *)      osvers="$3" ;;
2310                         esac
2311                         ;;
2312                 MiNT) osname=mint
2313                         ;;
2314                 netbsd*) osname=netbsd
2315                         osvers="$3"
2316                         ;;
2317                 news-os) osvers="$3"
2318                         case "$3" in
2319                         4*) osname=newsos4 ;;
2320                         *) osname=newsos ;;
2321                         esac
2322                         ;;
2323                 next*) osname=next ;;
2324                 POSIX-BC | posix-bc ) osname=posix-bc
2325                         osvers="$3"
2326                         ;;
2327                 powerux | power_ux | powermax_os | powermaxos | \
2328                 powerunix | power_unix) osname=powerux
2329                         osvers="$3"
2330                         ;;
2331                 qnx) osname=qnx
2332                         osvers="$4"
2333                         ;;
2334                 solaris) osname=solaris
2335                         case "$3" in
2336                         5*) osvers=`echo $3 | $sed 's/^5/2/g'` ;;
2337                         *)      osvers="$3" ;;
2338                         esac
2339                         ;;
2340                 sunos) osname=sunos
2341                         case "$3" in
2342                         5*) osname=solaris
2343                                 osvers=`echo $3 | $sed 's/^5/2/g'` ;;
2344                         *)      osvers="$3" ;;
2345                         esac
2346                         ;;
2347                 titanos) osname=titanos
2348                         case "$3" in
2349                         1*) osvers=1 ;;
2350                         2*) osvers=2 ;;
2351                         3*) osvers=3 ;;
2352                         4*) osvers=4 ;;
2353                         *)      osvers="$3" ;;
2354                         esac
2355                         ;;
2356                 ultrix) osname=ultrix
2357                         osvers="$3"
2358                         ;;
2359                 osf1|mls+)      case "$5" in
2360                                 alpha)
2361                                         osname=dec_osf
2362                                         osvers=`echo "$3" | sed 's/^[xvt]//'`
2363                                         ;;
2364                         hp*)    osname=hp_osf1  ;;
2365                         mips)   osname=mips_osf1 ;;
2366                         esac
2367                         ;;
2368                 unixware) osname=svr5
2369                         osvers="$4"
2370                         ;;
2371                 uts) osname=uts
2372                         osvers="$3"
2373                         ;;
2374                 $2) case "$osname" in
2375                         *isc*) ;;
2376                         *freebsd*) ;;
2377                         svr*)
2378                                 : svr4.x or possibly later
2379                                 case "svr$3" in 
2380                                 ${osname}*)
2381                                         osname=svr$3
2382                                         osvers=$4
2383                                         ;;
2384                                 esac
2385                                 case "$osname" in
2386                                 svr4.0)
2387                                         : Check for ESIX
2388                                         if test -f /stand/boot ; then
2389                                                 eval `grep '^INITPROG=[a-z/0-9]*$' /stand/boot`
2390                                                 if test -n "$INITPROG" -a -f "$INITPROG"; then
2391                         isesix=`strings -a $INITPROG|grep 'ESIX SYSTEM V/386 Release 4.0'`
2392                                                         if test -n "$isesix"; then
2393                                                                 osname=esix4
2394                                                         fi
2395                                                 fi
2396                                         fi
2397                                         ;;
2398                                 esac
2399                                 ;;
2400                         *)      if test -f /etc/systemid; then
2401                                         osname=sco
2402                                         set `echo $3 | $sed 's/\./ /g'` $4
2403                                         if $test -f $src/hints/sco_$1_$2_$3.sh; then
2404                                                 osvers=$1.$2.$3
2405                                         elif $test -f $src/hints/sco_$1_$2.sh; then
2406                                                 osvers=$1.$2
2407                                         elif $test -f $src/hints/sco_$1.sh; then
2408                                                 osvers=$1
2409                                         fi
2410                                 else
2411                                         case "$osname" in
2412                                         '') : Still unknown.  Probably a generic Sys V.
2413                                                 osname="sysv"
2414                                                 osvers="$3"
2415                                                 ;;
2416                                         esac
2417                                 fi
2418                                 ;;
2419                         esac
2420                         ;;
2421                 *)      case "$osname" in
2422                         '') : Still unknown.  Probably a generic BSD.
2423                                 osname="$1"
2424                                 osvers="$3"
2425                                 ;;
2426                         esac
2427                         ;;
2428                 esac
2429         else
2430                 if test -f /vmunix -a -f $src/hints/news_os.sh; then
2431                         (what /vmunix | UU/tr '[A-Z]' '[a-z]') > UU/kernel.what 2>&1
2432                         if $contains news-os UU/kernel.what >/dev/null 2>&1; then
2433                                 osname=news_os
2434                         fi
2435                         $rm -f UU/kernel.what
2436                 elif test -d c:/.; then
2437                         set X $myuname
2438                         osname=os2
2439                         osvers="$5"
2440                 fi
2441         fi
2442         
2443         : Now look for a hint file osname_osvers, unless one has been
2444         : specified already.
2445         case "$hintfile" in
2446         ''|' ')
2447                 file=`echo "${osname}_${osvers}" | $sed -e 's@\.@_@g' -e 's@_$@@'`
2448                 : Also try without trailing minor version numbers.
2449                 xfile=`echo $file | $sed -e 's@_[^_]*$@@'`
2450                 xxfile=`echo $xfile | $sed -e 's@_[^_]*$@@'`
2451                 xxxfile=`echo $xxfile | $sed -e 's@_[^_]*$@@'`
2452                 xxxxfile=`echo $xxxfile | $sed -e 's@_[^_]*$@@'`
2453                 case "$file" in
2454                 '') dflt=none ;;
2455                 *)  case "$osvers" in
2456                         '') dflt=$file
2457                                 ;;
2458                         *)  if $test -f $src/hints/$file.sh ; then
2459                                         dflt=$file
2460                                 elif $test -f $src/hints/$xfile.sh ; then
2461                                         dflt=$xfile
2462                                 elif $test -f $src/hints/$xxfile.sh ; then
2463                                         dflt=$xxfile
2464                                 elif $test -f $src/hints/$xxxfile.sh ; then
2465                                         dflt=$xxxfile
2466                                 elif $test -f $src/hints/$xxxxfile.sh ; then
2467                                         dflt=$xxxxfile
2468                                 elif $test -f "$src/hints/${osname}.sh" ; then
2469                                         dflt="${osname}"
2470                                 else
2471                                         dflt=none
2472                                 fi
2473                                 ;;
2474                         esac
2475                         ;;
2476                 esac
2477                 if $test -f Policy.sh ; then
2478                         case "$dflt" in
2479                         *Policy*) ;;
2480                         none) dflt="Policy" ;;
2481                         *) dflt="Policy $dflt" ;;
2482                         esac
2483                 fi
2484                 ;;
2485         *)
2486                 dflt=`echo $hintfile | $sed 's/\.sh$//'`
2487                 ;;
2488         esac
2489
2490         if $test -f Policy.sh ; then
2491                 $cat <<EOM
2492
2493 There's also a Policy hint file available, which should make the
2494 site-specific (policy) questions easier to answer.
2495 EOM
2496
2497         fi
2498
2499         $cat <<EOM
2500
2501 You may give one or more space-separated answers, or "none" if appropriate.
2502 A well-behaved OS will have no hints, so answering "none" or just "Policy"
2503 is a good thing.  DO NOT give a wrong version or a wrong OS.
2504
2505 EOM
2506
2507         rp="Which of these apply, if any?"
2508         . UU/myread
2509         tans=$ans
2510         for file in $tans; do
2511                 if $test X$file = XPolicy -a -f Policy.sh; then
2512                         . Policy.sh
2513                         $cat Policy.sh >> UU/config.sh
2514                 elif $test -f $src/hints/$file.sh; then
2515                         . $src/hints/$file.sh
2516                         $cat $src/hints/$file.sh >> UU/config.sh
2517                 elif $test X$tans = X -o X$tans = Xnone ; then
2518                         : nothing
2519                 else
2520                         : Give one chance to correct a possible typo.
2521                         echo "$file.sh does not exist"
2522                         dflt=$file
2523                         rp="hint to use instead?"
2524                         . UU/myread
2525                         for file in $ans; do
2526                                 if $test -f "$src/hints/$file.sh"; then
2527                                         . $src/hints/$file.sh
2528                                         $cat $src/hints/$file.sh >> UU/config.sh
2529                                 elif $test X$ans = X -o X$ans = Xnone ; then
2530                                         : nothing
2531                                 else
2532                                         echo "$file.sh does not exist -- ignored."
2533                                 fi
2534                         done
2535                 fi
2536         done
2537
2538         hint=recommended
2539         : Remember our hint file for later.
2540         if $test -f "$src/hints/$file.sh" ; then
2541                 hintfile="$file"
2542         else
2543                 hintfile=''
2544         fi
2545 fi
2546 cd UU
2547 ;;
2548 *)
2549         echo " "
2550         echo "Fetching default answers from $config_sh..." >&4
2551         tmp_n="$n"
2552         tmp_c="$c"
2553         cd ..
2554         cp $config_sh config.sh 2>/dev/null
2555         chmod +w config.sh
2556         . ./config.sh
2557         cd UU
2558         cp ../config.sh .
2559         n="$tmp_n"
2560         c="$tmp_c"
2561         hint=previous
2562         ;;
2563 esac
2564 test "$override" && . ./optdef.sh
2565 myuname="$newmyuname"
2566
2567 : Restore computed paths
2568 for file in $loclist $trylist; do
2569         eval $file="\$_$file"
2570 done
2571
2572 cat << EOM
2573
2574 Configure uses the operating system name and version to set some defaults.
2575 The default value is probably right if the name rings a bell. Otherwise,
2576 since spelling matters for me, either accept the default or answer "none"
2577 to leave it blank.
2578
2579 EOM
2580 case "$osname" in
2581         ''|' ')
2582                 case "$hintfile" in
2583                 ''|' '|none) dflt=none ;;
2584                 *)  dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/_.*$//'` ;;
2585                 esac
2586                 ;;
2587         *) dflt="$osname" ;;
2588 esac
2589 rp="Operating system name?"
2590 . ./myread
2591 case "$ans" in
2592 none)  osname='' ;;
2593 *) osname=`echo "$ans" | $sed -e 's/[   ][      ]*/_/g' | ./tr '[A-Z]' '[a-z]'`;;
2594 esac
2595 echo " "
2596 case "$osvers" in
2597         ''|' ')
2598                 case "$hintfile" in
2599                 ''|' '|none) dflt=none ;;
2600                 *)      dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/^[^_]*//'`
2601                         dflt=`echo $dflt | $sed -e 's/^_//' -e 's/_/./g'`
2602                         case "$dflt" in
2603                         ''|' ') dflt=none ;;
2604                         esac
2605                         ;;
2606                 esac
2607                 ;;
2608         *) dflt="$osvers" ;;
2609 esac
2610 rp="Operating system version?"
2611 . ./myread
2612 case "$ans" in
2613 none)  osvers='' ;;
2614 *) osvers="$ans" ;;
2615 esac
2616
2617
2618 . ./posthint.sh
2619
2620 : who configured the system
2621 cf_time=`LC_ALL=C; LANGUAGE=C; export LC_ALL; export LANGUAGE; $date 2>&1`
2622 cf_by=`(logname) 2>/dev/null`
2623 case "$cf_by" in
2624 "")
2625         cf_by=`(whoami) 2>/dev/null`
2626         case "$cf_by" in
2627         "") cf_by=unknown ;;
2628         esac ;;
2629 esac
2630
2631 : set up the script used to warn in case of inconsistency
2632 cat <<EOS >whoa
2633 $startsh
2634 EOS
2635 cat <<'EOSC' >>whoa
2636 dflt=y
2637 echo " "
2638 echo "*** WHOA THERE!!! ***" >&4
2639 echo "    The $hint value for \$$var on this machine was \"$was\"!" >&4
2640 rp="    Keep the $hint value?"
2641 . ./myread
2642 case "$ans" in
2643 y) td=$was; tu=$was;;
2644 esac
2645 EOSC
2646
2647 : function used to set $1 to $val
2648 setvar='var=$1; eval "was=\$$1"; td=$define; tu=$undef;
2649 case "$val$was" in
2650 $define$undef) . ./whoa; eval "$var=\$td";;
2651 $undef$define) . ./whoa; eval "$var=\$tu";;
2652 *) eval "$var=$val";;
2653 esac'
2654
2655 cat <<EOM
2656
2657 Perl can be built to take advantage of threads, on some systems.
2658 To do so, Configure must be run with -Dusethreads.
2659
2660 Note that threading is a highly experimental feature, and
2661 some known race conditions still remain.  If you choose to try
2662 it, be very sure to not actually deploy it for production
2663 purposes.  README.threads has more details, and is required
2664 reading if you enable threads.
2665 EOM
2666 case "$usethreads" in
2667 $define|true|[yY]*)     dflt='y';;
2668 *) dflt='n';;
2669 esac
2670 rp='Build a threading Perl?'
2671 . ./myread
2672 case "$ans" in
2673 y|Y)    val="$define" ;;
2674 *)      val="$undef" ;;
2675 esac
2676 set usethreads
2677 eval $setvar
2678
2679 case "$usethreads" in
2680 $define)
2681         $cat <<EOM
2682
2683 As of 5.5.640, Perl has two different internal threading implementations,
2684 the 5.005 version (5005threads) and an interpreter-based version
2685 (ithreads) that has one interpreter per thread.  Both are very 
2686 experimental.  This arrangement exists to help developers work out
2687 which one is better.
2688 EOM
2689         : Default to ithreads unless overridden on command line or with
2690         : old config.sh
2691         dflt='y'
2692         case "$use5005threads" in
2693                 $define|true|[yY]*) dflt='n';;
2694         esac
2695         case "$useithreads" in
2696                 $undef|false|[nN]*) dflt='n';;
2697         esac
2698         rp='Use interpreter-based ithreads?'
2699         . ./myread
2700         case "$ans" in
2701         y|Y)    val="$define" ;;
2702         *)      val="$undef" ;;
2703         esac
2704         set useithreads
2705         eval $setvar
2706         : Now set use5005threads to the opposite value.
2707         case "$useithreads" in
2708         $define) val="$undef" ;;
2709         *) val="$define" ;;
2710         esac
2711         set use5005threads
2712         eval $setvar
2713         ;;
2714 *)
2715         useithreads="$undef"
2716         use5005threads="$undef"
2717         ;;
2718 esac
2719
2720 case "$d_oldpthreads" in
2721 '')     : Configure tests would be welcome here.  For now, assume undef.
2722         val="$undef" ;;
2723 *)      val="$d_oldpthreads" ;;
2724 esac
2725 set d_oldpthreads
2726 eval $setvar
2727
2728
2729 case "$usethreads" in
2730 "$define"|true|[yY]*)
2731 : Look for a hint-file generated 'call-back-unit'.  If the
2732 : user has specified that a threading perl is to be built,
2733 : we may need to set or change some other defaults.
2734         if $test -f usethreads.cbu; then
2735                 echo "Your platform has some specific hints for threaded builds, using them..."
2736                 . ./usethreads.cbu
2737         else
2738                 $cat <<EOM
2739 (Your platform doesn't have any specific hints for threaded builds.
2740  Assuming POSIX threads, then.)
2741 EOM
2742         fi
2743         ;;
2744 esac
2745
2746 cat <<EOM
2747
2748 Perl can be built so that multiple Perl interpreters can coexist
2749 within the same Perl executable.
2750 EOM
2751
2752 case "$useithreads" in
2753 $define)
2754         cat <<EOM
2755 This multiple interpreter support is required for interpreter-based threads.
2756 EOM
2757         val="$define"
2758         ;;
2759 *)
2760         echo 'Normally you do not need this and you should answer no.'
2761         case "$usemultiplicity" in
2762         $define|true|[yY]*)     dflt='y';;
2763         *) dflt='n';;
2764         esac
2765         rp='Build Perl for multiplicity?'
2766         . ./myread
2767         case "$ans" in
2768         y|Y)    val="$define" ;;
2769         *)      val="$undef" ;;
2770         esac
2771         ;;
2772 esac
2773 set usemultiplicity
2774 eval $setvar
2775
2776 : determine where manual pages are on this system
2777 echo " "
2778 case "$sysman" in
2779 '') 
2780         syspath='/usr/man/man1 /usr/man/mann /usr/man/manl /usr/man/local/man1'
2781         syspath="$syspath /usr/man/u_man/man1 /usr/share/man/man1"
2782         syspath="$syspath /usr/catman/u_man/man1 /usr/man/l_man/man1"
2783         syspath="$syspath /usr/local/man/u_man/man1 /usr/local/man/l_man/man1"
2784         syspath="$syspath /usr/man/man.L /local/man/man1 /usr/local/man/man1"
2785         sysman=`./loc . /usr/man/man1 $syspath`
2786         ;;
2787 esac
2788 if $test -d "$sysman"; then
2789         echo "System manual is in $sysman." >&4
2790 else
2791         echo "Could not find manual pages in source form." >&4
2792 fi
2793
2794 : see what memory models we can support
2795 case "$models" in
2796 '')
2797         $cat >pdp11.c <<'EOP'
2798 int main() {
2799 #ifdef pdp11
2800         exit(0);
2801 #else
2802         exit(1);
2803 #endif
2804 }
2805 EOP
2806         ( cc -o pdp11 pdp11.c ) >/dev/null 2>&1
2807         if $test -f pdp11 && ./pdp11 2>/dev/null; then
2808                 dflt='unsplit split'
2809         else
2810                 tans=`./loc . X /lib/small /lib/large /usr/lib/small /usr/lib/large /lib/medium /usr/lib/medium /lib/huge`
2811                 case "$tans" in
2812                 X) dflt='none';;
2813                 *) if $test -d /lib/small || $test -d /usr/lib/small; then
2814                                 dflt='small'
2815                         else
2816                                 dflt=''
2817                         fi
2818                         if $test -d /lib/medium || $test -d /usr/lib/medium; then
2819                                 dflt="$dflt medium"
2820                         fi
2821                         if $test -d /lib/large || $test -d /usr/lib/large; then
2822                                 dflt="$dflt large"
2823                         fi
2824                         if $test -d /lib/huge || $test -d /usr/lib/huge; then
2825                                 dflt="$dflt huge"
2826                         fi
2827                 esac
2828         fi;;
2829 *) dflt="$models";;
2830 esac
2831 $cat <<EOM
2832  
2833 Some systems have different model sizes.  On most systems they are called
2834 small, medium, large, and huge.  On the PDP11 they are called unsplit and
2835 split.  If your system doesn't support different memory models, say "none".
2836 If you wish to force everything to one memory model, say "none" here and
2837 put the appropriate flags later when it asks you for other cc and ld flags.
2838 Venix systems may wish to put "none" and let the compiler figure things out.
2839 (In the following question multiple model names should be space separated.)
2840
2841 The default for most systems is "none".
2842
2843 EOM
2844 rp="Which memory models are supported?"
2845 . ./myread
2846 models="$ans"
2847
2848 case "$models" in
2849 none)
2850         small=''
2851         medium=''
2852         large=''
2853         huge=''
2854         unsplit=''
2855         split=''
2856         ;;
2857 *split)
2858         case "$split" in
2859         '') if $contains '\-i' $sysman/ld.1 >/dev/null 2>&1 || \
2860                          $contains '\-i' $sysman/cc.1 >/dev/null 2>&1; then
2861                         dflt='-i'
2862                 else
2863                         dflt='none'
2864                 fi;;
2865         *) dflt="$split";;
2866         esac
2867         rp="What flag indicates separate I and D space?"
2868         . ./myread
2869         tans="$ans"
2870         case "$tans" in
2871         none) tans='';;
2872         esac
2873         split="$tans"
2874         unsplit='';;
2875 *large*|*small*|*medium*|*huge*)
2876         case "$models" in
2877         *large*)
2878                 case "$large" in
2879                 '') dflt='-Ml';;
2880                 *) dflt="$large";;
2881                 esac
2882         rp="What flag indicates large model?"
2883         . ./myread
2884         tans="$ans"
2885         case "$tans" in
2886         none) tans='';
2887         esac
2888         large="$tans";;
2889         *) large='';;
2890         esac
2891         case "$models" in
2892         *huge*) case "$huge" in
2893                 '') dflt='-Mh';;
2894                 *) dflt="$huge";;
2895                 esac
2896                 rp="What flag indicates huge model?"
2897                 . ./myread
2898                 tans="$ans"
2899                 case "$tans" in
2900                 none) tans='';
2901                 esac
2902                 huge="$tans";;
2903         *) huge="$large";;
2904         esac
2905         case "$models" in
2906         *medium*) case "$medium" in
2907                 '') dflt='-Mm';;
2908                 *) dflt="$medium";;
2909                 esac
2910                 rp="What flag indicates medium model?"
2911                 . ./myread
2912                 tans="$ans"
2913                 case "$tans" in
2914                 none) tans='';
2915                 esac
2916                 medium="$tans";;
2917         *) medium="$large";;
2918         esac
2919         case "$models" in
2920         *small*) case "$small" in
2921                 '') dflt='none';;
2922                 *) dflt="$small";;
2923                 esac
2924                 rp="What flag indicates small model?"
2925                 . ./myread
2926                 tans="$ans"
2927                 case "$tans" in
2928                 none) tans='';
2929                 esac
2930                 small="$tans";;
2931         *) small='';;
2932         esac
2933         ;;
2934 *)
2935         echo "Unrecognized memory models--you may have to edit Makefile.SH" >&4
2936         ;;
2937 esac
2938 $rm -f pdp11.* pdp11
2939
2940 : make some quick guesses about what we are up against
2941 echo " "
2942 $echo $n "Hmm...  $c"
2943 echo exit 1 >bsd
2944 echo exit 1 >usg
2945 echo exit 1 >v7
2946 echo exit 1 >osf1
2947 echo exit 1 >eunice
2948 echo exit 1 >xenix
2949 echo exit 1 >venix
2950 echo exit 1 >os2
2951 d_bsd="$undef"
2952 $cat /usr/include/signal.h /usr/include/sys/signal.h >foo 2>/dev/null
2953 if test -f /osf_boot || $contains 'OSF/1' /usr/include/ctype.h >/dev/null 2>&1
2954 then
2955         echo "Looks kind of like an OSF/1 system, but we'll see..."
2956         echo exit 0 >osf1
2957 elif test `echo abc | tr a-z A-Z` = Abc ; then
2958         xxx=`./loc addbib blurfl $pth`
2959         if $test -f $xxx; then
2960         echo "Looks kind of like a USG system with BSD features, but we'll see..."
2961                 echo exit 0 >bsd
2962                 echo exit 0 >usg
2963         else
2964                 if $contains SIGTSTP foo >/dev/null 2>&1 ; then
2965                         echo "Looks kind of like an extended USG system, but we'll see..."
2966                 else
2967                         echo "Looks kind of like a USG system, but we'll see..."
2968                 fi
2969                 echo exit 0 >usg
2970         fi
2971 elif $contains SIGTSTP foo >/dev/null 2>&1 ; then
2972         echo "Looks kind of like a BSD system, but we'll see..."
2973         d_bsd="$define"
2974         echo exit 0 >bsd
2975 else
2976         echo "Looks kind of like a Version 7 system, but we'll see..."
2977         echo exit 0 >v7
2978 fi
2979 case "$eunicefix" in
2980 *unixtovms*)
2981         $cat <<'EOI'
2982 There is, however, a strange, musty smell in the air that reminds me of
2983 something...hmm...yes...I've got it...there's a VMS nearby, or I'm a Blit.
2984 EOI
2985         echo exit 0 >eunice
2986         d_eunice="$define"
2987 : it so happens the Eunice I know will not run shell scripts in Unix format
2988         ;;
2989 *)
2990         echo " "
2991         echo "Congratulations.  You aren't running Eunice."
2992         d_eunice="$undef"
2993         ;;
2994 esac
2995 : Detect OS2.  The p_ variable is set above in the Head.U unit.
2996 case "$p_" in
2997 :) ;;
2998 *)
2999         $cat <<'EOI'
3000 I have the feeling something is not exactly right, however...don't tell me...
3001 lemme think...does HAL ring a bell?...no, of course, you're only running OS/2!
3002 EOI
3003         echo exit 0 >os2
3004         ;;
3005 esac
3006 if test -f /xenix; then
3007         echo "Actually, this looks more like a XENIX system..."
3008         echo exit 0 >xenix
3009         d_xenix="$define"
3010 else
3011         echo " "
3012         echo "It's not Xenix..."
3013         d_xenix="$undef"
3014 fi
3015 chmod +x xenix
3016 $eunicefix xenix
3017 if test -f /venix; then
3018         echo "Actually, this looks more like a VENIX system..."
3019         echo exit 0 >venix
3020 else
3021         echo " "
3022         if ./xenix; then
3023                 : null
3024         else
3025                 echo "Nor is it Venix..."
3026         fi
3027 fi
3028 chmod +x bsd usg v7 osf1 eunice xenix venix os2
3029 $eunicefix bsd usg v7 osf1 eunice xenix venix os2
3030 $rm -f foo
3031
3032 : see if we need a special compiler
3033 echo " "
3034 if ./usg; then
3035         case "$cc" in
3036         '') case "$Mcc" in
3037                 /*) dflt='Mcc';;
3038                 *) case "$large" in
3039                         -M*) dflt='cc';;
3040                         *)      if $contains '\-M' $sysman/cc.1 >/dev/null 2>&1 ; then
3041                                         if $contains '\-M' $sysman/cpp.1 >/dev/null 2>&1; then
3042                                                 dflt='cc'
3043                                         else
3044                                                 dflt='cc -M'
3045                                         fi
3046                                 else
3047                                         dflt='cc'
3048                                 fi;;
3049                         esac;;
3050                 esac;;
3051         *)  dflt="$cc";;
3052         esac
3053         case "$dflt" in
3054         *M*)    $cat <<'EOM'
3055 On some older systems the default C compiler will not resolve multiple global
3056 references that happen to have the same name.  On some such systems the "Mcc"
3057 command may be used to force these to be resolved.  On other systems a "cc -M"
3058 command is required.  (Note that the -M flag on other systems indicates a
3059 memory model to use!) If you have the Gnu C compiler, you might wish to use
3060 that instead.
3061
3062 EOM
3063         ;;
3064         esac
3065         rp="Use which C compiler?"
3066         . ./myread
3067         cc="$ans"
3068 else
3069         case "$cc" in
3070         '') dflt=cc;;
3071         *) dflt="$cc";;
3072         esac
3073         rp="Use which C compiler?"
3074         . ./myread
3075         cc="$ans"
3076 fi
3077 : Look for a hint-file generated 'call-back-unit'.  Now that the
3078 : user has specified the compiler, we may need to set or change some
3079 : other defaults.
3080 if $test -f cc.cbu; then
3081     . ./cc.cbu
3082 fi
3083 echo " "
3084 echo "Checking for GNU cc in disguise and/or its version number..." >&4
3085 $cat >gccvers.c <<EOM
3086 #include <stdio.h>
3087 int main() {
3088 #ifdef __GNUC__
3089 #ifdef __VERSION__
3090         printf("%s\n", __VERSION__);
3091 #else
3092         printf("%s\n", "1");
3093 #endif
3094 #endif
3095         exit(0);
3096 }
3097 EOM
3098 if $cc -o gccvers gccvers.c; then
3099         gccversion=`./gccvers`
3100         case "$gccversion" in
3101         '') echo "You are not using GNU cc." ;;
3102         *)  echo "You are using GNU cc $gccversion." ;;
3103         esac
3104 else
3105         echo " "
3106         echo "*** WHOA THERE!!! ***" >&4
3107         echo "    Your C compiler \"$cc\" doesn't seem to be working!" >&4
3108         case "$knowitall" in
3109         '')
3110         echo "    You'd better start hunting for one and let me know about it." >&4
3111                 exit 1
3112                 ;;
3113         esac
3114 fi
3115 $rm -f gccvers*
3116 case "$gccversion" in
3117 1*) cpp=`./loc gcc-cpp $cpp $pth` ;;
3118 esac
3119
3120 : see how we invoke the C preprocessor
3121 echo " "
3122 echo "Now, how can we feed standard input to your C preprocessor..." >&4
3123 cat <<'EOT' >testcpp.c
3124 #define ABC abc
3125 #define XYZ xyz
3126 ABC.XYZ
3127 EOT
3128 cd ..
3129 if test ! -f cppstdin; then
3130         if test "X$osname" = "Xaix" -a "X$gccversion" = X; then
3131                 # AIX cc -E doesn't show the absolute headerfile
3132                 # locations but we'll cheat by using the -M flag.
3133                 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
3134         else
3135                 echo 'cat >.$$.c; '"$cc"' -E ${1+"$@"} .$$.c; rm .$$.c' >cppstdin
3136         fi
3137 else
3138         echo "Keeping your $hint cppstdin wrapper."
3139 fi
3140 chmod 755 cppstdin
3141 wrapper=`pwd`/cppstdin
3142 ok='false'
3143 cd UU
3144
3145 if $test "X$cppstdin" != "X" && \
3146         $cppstdin $cppminus <testcpp.c >testcpp.out 2>&1 && \
3147         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
3148 then
3149         echo "You used to use $cppstdin $cppminus so we'll use that again."
3150         case "$cpprun" in
3151         '') echo "But let's see if we can live without a wrapper..." ;;
3152         *)
3153                 if $cpprun $cpplast <testcpp.c >testcpp.out 2>&1 && \
3154                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
3155                 then
3156                         echo "(And we'll use $cpprun $cpplast to preprocess directly.)"
3157                         ok='true'
3158                 else
3159                         echo "(However, $cpprun $cpplast does not work, let's see...)"
3160                 fi
3161                 ;;
3162         esac
3163 else
3164         case "$cppstdin" in
3165         '') ;;
3166         *)
3167                 echo "Good old $cppstdin $cppminus does not seem to be of any help..."
3168                 ;;
3169         esac
3170 fi
3171
3172 if $ok; then
3173         : nothing
3174 elif echo 'Maybe "'"$cc"' -E" will work...'; \
3175         $cc -E <testcpp.c >testcpp.out 2>&1; \
3176         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
3177         echo "Yup, it does."
3178         x_cpp="$cc -E"
3179         x_minus='';
3180 elif echo 'Nope...maybe "'"$cc"' -E -" will work...'; \
3181         $cc -E - <testcpp.c >testcpp.out 2>&1; \
3182         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
3183         echo "Yup, it does."
3184         x_cpp="$cc -E"
3185         x_minus='-';
3186 elif echo 'Nope...maybe "'"$cc"' -P" will work...'; \
3187         $cc -P <testcpp.c >testcpp.out 2>&1; \
3188         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
3189         echo "Yipee, that works!"
3190         x_cpp="$cc -P"
3191         x_minus='';
3192 elif echo 'Nope...maybe "'"$cc"' -P -" will work...'; \
3193         $cc -P - <testcpp.c >testcpp.out 2>&1; \
3194         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
3195         echo "At long last!"
3196         x_cpp="$cc -P"
3197         x_minus='-';
3198 elif echo 'No such luck, maybe "'$cpp'" will work...'; \
3199         $cpp <testcpp.c >testcpp.out 2>&1; \
3200         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
3201         echo "It works!"
3202         x_cpp="$cpp"
3203         x_minus='';
3204 elif echo 'Nixed again...maybe "'$cpp' -" will work...'; \
3205         $cpp - <testcpp.c >testcpp.out 2>&1; \
3206         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
3207         echo "Hooray, it works!  I was beginning to wonder."
3208         x_cpp="$cpp"
3209         x_minus='-';
3210 elif echo 'Uh-uh.  Time to get fancy.  Trying a wrapper...'; \
3211         $wrapper <testcpp.c >testcpp.out 2>&1; \
3212         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
3213         x_cpp="$wrapper"
3214         x_minus=''
3215         echo "Eureka!"
3216 else
3217         dflt=''
3218         rp="No dice.  I can't find a C preprocessor.  Name one:"
3219         . ./myread
3220         x_cpp="$ans"
3221         x_minus=''
3222         $x_cpp <testcpp.c >testcpp.out 2>&1
3223         if $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
3224                 echo "OK, that will do." >&4
3225         else
3226 echo "Sorry, I can't get that to work.  Go find one and rerun Configure." >&4
3227                 exit 1
3228         fi
3229 fi
3230
3231 case "$ok" in
3232 false)
3233         cppstdin="$x_cpp"
3234         cppminus="$x_minus"
3235         cpprun="$x_cpp"
3236         cpplast="$x_minus"
3237         set X $x_cpp
3238         shift
3239         case "$1" in
3240         "$cpp")
3241                 echo "Perhaps can we force $cc -E using a wrapper..."
3242                 if $wrapper <testcpp.c >testcpp.out 2>&1; \
3243                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
3244                 then
3245                         echo "Yup, we can."
3246                         cppstdin="$wrapper"
3247                         cppminus='';
3248                 else
3249                         echo "Nope, we'll have to live without it..."
3250                 fi
3251                 ;;
3252         esac
3253         case "$cpprun" in
3254         "$wrapper")
3255                 cpprun=''
3256                 cpplast=''
3257                 ;;
3258         esac
3259         ;;
3260 esac
3261
3262 case "$cppstdin" in
3263 "$wrapper"|'cppstdin') ;;
3264 *) $rm -f $wrapper;;
3265 esac
3266 $rm -f testcpp.c testcpp.out
3267
3268 : decide how portable to be.  Allow command line overrides.
3269 case "$d_portable" in
3270 "$undef") ;;
3271 *)      d_portable="$define" ;;
3272 esac
3273
3274 : set up shell script to do ~ expansion
3275 cat >filexp <<EOSS
3276 $startsh
3277 : expand filename
3278 case "\$1" in
3279  ~/*|~)
3280         echo \$1 | $sed "s|~|\${HOME-\$LOGDIR}|"
3281         ;;
3282  ~*)
3283         if $test -f /bin/csh; then
3284                 /bin/csh -f -c "glob \$1"
3285                 failed=\$?
3286                 echo ""
3287                 exit \$failed
3288         else
3289                 name=\`$expr x\$1 : '..\([^/]*\)'\`
3290                 dir=\`$sed -n -e "/^\${name}:/{s/^[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:\([^:]*\).*"'\$'"/\1/" -e p -e q -e '}' </etc/passwd\`
3291                 if $test ! -d "\$dir"; then
3292                         me=\`basename \$0\`
3293                         echo "\$me: can't locate home directory for: \$name" >&2
3294                         exit 1
3295                 fi
3296                 case "\$1" in
3297                 */*)
3298                         echo \$dir/\`$expr x\$1 : '..[^/]*/\(.*\)'\`
3299                         ;;
3300                 *)
3301                         echo \$dir
3302                         ;;
3303                 esac
3304         fi
3305         ;;
3306 *)
3307         echo \$1
3308         ;;
3309 esac
3310 EOSS
3311 chmod +x filexp
3312 $eunicefix filexp
3313
3314 : now set up to get a file name
3315 cat <<EOS >getfile
3316 $startsh
3317 EOS
3318 cat <<'EOSC' >>getfile
3319 tilde=''
3320 fullpath=''
3321 already=''
3322 skip=''
3323 none_ok=''
3324 exp_file=''
3325 nopath_ok=''
3326 orig_rp="$rp"
3327 orig_dflt="$dflt"
3328 case "$gfpth" in
3329 '') gfpth='.' ;;
3330 esac
3331
3332 case "$fn" in
3333 *\(*)
3334         expr $fn : '.*(\(.*\)).*' | tr ',' $trnl >getfile.ok
3335         fn=`echo $fn | sed 's/(.*)//'`
3336         ;;
3337 esac
3338
3339 case "$fn" in
3340 *:*)
3341         loc_file=`expr $fn : '.*:\(.*\)'`
3342         fn=`expr $fn : '\(.*\):.*'`
3343         ;;
3344 esac
3345
3346 case "$fn" in
3347 *~*) tilde=true;;
3348 esac
3349 case "$fn" in
3350 */*) fullpath=true;;
3351 esac
3352 case "$fn" in
3353 *+*) skip=true;;
3354 esac
3355 case "$fn" in
3356 *n*) none_ok=true;;
3357 esac
3358 case "$fn" in
3359 *e*) exp_file=true;;
3360 esac
3361 case "$fn" in
3362 *p*) nopath_ok=true;;
3363 esac
3364
3365 case "$fn" in
3366 *f*) type='File';;
3367 *d*) type='Directory';;
3368 *l*) type='Locate';;
3369 esac
3370
3371 what="$type"
3372 case "$what" in
3373 Locate) what='File';;
3374 esac
3375
3376 case "$exp_file" in
3377 '')
3378         case "$d_portable" in
3379         "$define") ;;
3380         *) exp_file=true;;
3381         esac
3382         ;;
3383 esac
3384
3385 cd ..
3386 while test "$type"; do
3387         redo=''
3388         rp="$orig_rp"
3389         dflt="$orig_dflt"
3390         case "$tilde" in
3391         true) rp="$rp (~name ok)";;
3392         esac
3393         . UU/myread
3394         if test -f UU/getfile.ok && \
3395                 $contains "^$ans\$" UU/getfile.ok >/dev/null 2>&1
3396         then
3397                 value="$ans"
3398                 ansexp="$ans"
3399                 break
3400         fi
3401         case "$ans" in
3402         none)
3403                 value=''
3404                 ansexp=''
3405                 case "$none_ok" in
3406                 true) type='';;
3407                 esac
3408                 ;;
3409         *)
3410                 case "$tilde" in
3411                 '') value="$ans"
3412                         ansexp="$ans";;
3413                 *)
3414                         value=`UU/filexp $ans`
3415                         case $? in
3416                         0)
3417                                 if test "$ans" != "$value"; then
3418                                         echo "(That expands to $value on this system.)"
3419                                 fi
3420                                 ;;
3421                         *) value="$ans";;
3422                         esac
3423                         ansexp="$value"
3424                         case "$exp_file" in
3425                         '') value="$ans";;
3426                         esac
3427                         ;;
3428                 esac
3429                 case "$fullpath" in
3430                 true)
3431                         case "$ansexp" in
3432                         /*) value="$ansexp" ;;
3433                         *)
3434                                 redo=true
3435                                 case "$already" in
3436                                 true)
3437                                 echo "I shall only accept a full path name, as in /bin/ls." >&4
3438                                 echo "Use a ! shell escape if you wish to check pathnames." >&4
3439                                         ;;
3440                                 *)
3441                                 echo "Please give a full path name, starting with slash." >&4
3442                                         case "$tilde" in
3443                                         true)
3444                                 echo "Note that using ~name is ok provided it expands well." >&4
3445                                                 already=true
3446                                                 ;;
3447                                         esac
3448                                 esac
3449                                 ;;
3450                         esac
3451                         ;;
3452                 esac
3453                 case "$redo" in
3454                 '')
3455                         case "$type" in
3456                         File)
3457                                 for fp in $gfpth; do
3458                                         if test "X$fp" = X.; then
3459                                             pf="$ansexp"
3460                                         else    
3461                                             pf="$fp/$ansexp"
3462                                         fi
3463                                         if test -f "$pf"; then
3464                                                 type=''
3465                                         elif test -r "$pf" || (test -h "$pf") >/dev/null 2>&1
3466                                         then
3467                                                 echo "($value is not a plain file, but that's ok.)"
3468                                                 type=''
3469                                         fi
3470                                         if test X"$type" = X; then
3471                                             value="$pf"
3472                                             break
3473                                         fi
3474                                 done
3475                                 ;;
3476                         Directory)
3477                                 for fp in $gfpth; do
3478                                         if test "X$fp" = X.; then
3479                                             pf="$ansexp"
3480                                         else    
3481                                             pf="$fp/$ansexp"
3482                                         fi
3483                                         if test -d "$pf"; then
3484                                                 type=''
3485                                                 value="$pf"
3486                                                 break
3487                                         fi
3488                                 done
3489                                 ;;
3490                         Locate)
3491                                 if test -d "$ansexp"; then
3492                                         echo "(Looking for $loc_file in directory $value.)"
3493                                         value="$value/$loc_file"
3494                                         ansexp="$ansexp/$loc_file"
3495                                 fi
3496                                 if test -f "$ansexp"; then
3497                                         type=''
3498                                 fi
3499                                 case "$nopath_ok" in
3500                                 true)   case "$value" in
3501                                         */*) ;;
3502                                         *)      echo "Assuming $value will be in people's path."
3503                                                 type=''
3504                                                 ;;
3505                                         esac
3506                                         ;;
3507                                 esac
3508                                 ;;
3509                         esac
3510
3511                         case "$skip" in
3512                         true) type='';
3513                         esac
3514
3515                         case "$type" in
3516                         '') ;;
3517                         *)
3518                                 if test "$fastread" = yes; then
3519                                         dflt=y
3520                                 else
3521                                         dflt=n
3522                                 fi
3523                                 rp="$what $value doesn't exist.  Use that name anyway?"
3524                                 . UU/myread
3525                                 dflt=''
3526                                 case "$ans" in
3527                                 y*) type='';;
3528                                 *) echo " ";;
3529                                 esac
3530                                 ;;
3531                         esac
3532                         ;;
3533                 esac
3534                 ;;
3535         esac
3536 done
3537 cd UU
3538 ans="$value"
3539 rp="$orig_rp"
3540 dflt="$orig_dflt"
3541 rm -f getfile.ok
3542 test "X$gfpthkeep" != Xy && gfpth=""
3543 EOSC
3544
3545 : What should the include directory be ?
3546 echo " "
3547 $echo $n "Hmm...  $c"
3548 dflt='/usr/include'
3549 incpath=''
3550 mips_type=''
3551 if $test -f /bin/mips && /bin/mips; then
3552         echo "Looks like a MIPS system..."
3553         $cat >usr.c <<'EOCP'
3554 #ifdef SYSTYPE_BSD43
3555 /bsd43
3556 #endif
3557 EOCP
3558         if $cc -E usr.c > usr.out && $contains / usr.out >/dev/null 2>&1; then
3559                 dflt='/bsd43/usr/include'
3560                 incpath='/bsd43'
3561                 mips_type='BSD 4.3'
3562         else
3563                 mips_type='System V'
3564         fi
3565         $rm -f usr.c usr.out
3566         echo "and you're compiling with the $mips_type compiler and libraries."
3567         xxx_prompt=y
3568         echo "exit 0" >mips
3569 else
3570         echo "Doesn't look like a MIPS system."
3571         xxx_prompt=n
3572         echo "exit 1" >mips
3573 fi
3574 chmod +x mips
3575 $eunicefix mips
3576 case "$usrinc" in
3577 '') ;;
3578 *) dflt="$usrinc";;
3579 esac
3580 case "$xxx_prompt" in
3581 y)      fn=d/
3582         echo " "
3583         rp='Where are the include files you want to use?'
3584         . ./getfile
3585         usrinc="$ans"
3586         ;;
3587 *)      usrinc="$dflt"
3588         ;;
3589 esac
3590
3591 : Set private lib path
3592 case "$plibpth" in
3593 '') if ./mips; then
3594                 plibpth="$incpath/usr/lib /usr/local/lib /usr/ccs/lib"
3595         fi;;
3596 esac
3597 case "$libpth" in
3598 ' ') dlist='';;
3599 '') dlist="$loclibpth $plibpth $glibpth";;
3600 *) dlist="$libpth";;
3601 esac
3602
3603 : Now check and see which directories actually exist, avoiding duplicates
3604 libpth=''
3605 for xxx in $dlist
3606 do
3607     if $test -d $xxx; then
3608                 case " $libpth " in
3609                 *" $xxx "*) ;;
3610                 *) libpth="$libpth $xxx";;
3611                 esac
3612     fi
3613 done
3614 $cat <<'EOM'
3615
3616 Some systems have incompatible or broken versions of libraries.  Among
3617 the directories listed in the question below, please remove any you
3618 know not to be holding relevant libraries, and add any that are needed.
3619 Say "none" for none.
3620
3621 EOM
3622 case "$libpth" in
3623 '') dflt='none';;
3624 *)
3625         set X $libpth
3626         shift
3627         dflt=${1+"$@"}
3628         ;;
3629 esac
3630 rp="Directories to use for library searches?"
3631 . ./myread
3632 case "$ans" in
3633 none) libpth=' ';;
3634 *) libpth="$ans";;
3635 esac
3636
3637 : compute shared library extension
3638 case "$so" in
3639 '')
3640         if xxx=`./loc libc.sl X $libpth`; $test -f "$xxx"; then
3641                 dflt='sl'
3642         else
3643                 dflt='so'
3644         fi
3645         ;;
3646 *) dflt="$so";;
3647 esac
3648 $cat <<EOM
3649
3650 On some systems, shared libraries may be available.  Answer 'none' if
3651 you want to suppress searching of shared libraries for the remaining
3652 of this configuration.
3653
3654 EOM
3655 rp='What is the file extension used for shared libraries?'
3656 . ./myread
3657 so="$ans"
3658
3659 : Define several unixisms.
3660 : Hints files or command line option can be used to override them.
3661 : The convoluted testing is in case hints files set either the old
3662 : or the new name.
3663 case "$_exe" in
3664 '')     case "$exe_ext" in
3665     '') ;;
3666         *)      _exe="$exe_ext" ;;
3667         esac
3668         ;;
3669 esac
3670 case "$_a" in
3671 '')     case "$lib_ext" in
3672     '') _a='.a';;
3673         *)      _a="$lib_ext" ;;
3674         esac
3675         ;;
3676 esac
3677 case "$_o" in
3678 '') case "$obj_ext" in
3679         '')     _o='.o';;
3680         *)      _o="$obj_ext";;
3681         esac
3682         ;;
3683 esac
3684 case "$p_" in
3685 '') case "$path_sep" in
3686         '')     p_=':';;
3687         *)      p_="$path_sep";;
3688         esac
3689         ;;
3690 esac
3691 exe_ext=$_exe
3692 lib_ext=$_a
3693 obj_ext=$_o
3694 path_sep=$p_
3695
3696 : Which makefile gets called first.  This is used by make depend.
3697 case "$firstmakefile" in
3698 '') firstmakefile='makefile';;
3699 esac
3700
3701 cat <<EOM
3702
3703 Perl can be built to use the SOCKS proxy protocol library.  To do so,
3704 Configure must be run with -Dusesocks.
3705
3706 Normally you do not need this and you should answer no.
3707
3708 EOM
3709 case "$usesocks" in
3710 $define|true|[yY]*)     dflt='y';;
3711 *) dflt='n';;
3712 esac
3713 rp='Build Perl for SOCKS?'
3714 . ./myread
3715 case "$ans" in
3716 y|Y)    val="$define" ;;     
3717 *)      val="$undef" ;;
3718 esac
3719 set usesocks
3720 eval $setvar
3721
3722 : Looking for optional libraries
3723 echo " "
3724 echo "Checking for optional libraries..." >&4
3725 case "$libs" in
3726 ' '|'') dflt='';;
3727 *) dflt="$libs";;
3728 esac
3729 case "$libswanted" in
3730 '') libswanted='c_s';;
3731 esac
3732 case "$usesocks" in
3733 $define)
3734         libswanted="$libswanted socks5 socks5_sh"
3735         ;;
3736 esac
3737 for thislib in $libswanted; do
3738         
3739         if xxx=`./loc lib$thislib.$so.[0-9]'*' X $libpth`;
3740                 $test -f "$xxx" -a "X$ignore_versioned_solibs" = "X"; then
3741                 echo "Found -l$thislib (shared)."
3742                 case " $dflt " in
3743                 *"-l$thislib "*);;
3744                 *) dflt="$dflt -l$thislib";;
3745                 esac
3746         elif xxx=`./loc lib$thislib.$so X $libpth` ; $test -f "$xxx"; then
3747                 echo "Found -l$thislib (shared)."
3748                 case " $dflt " in
3749                 *"-l$thislib "*);;
3750                 *) dflt="$dflt -l$thislib";;
3751                 esac
3752         elif xxx=`./loc lib$thislib$_a X $libpth`; $test -f "$xxx"; then
3753                 echo "Found -l$thislib."
3754                 case " $dflt " in
3755                 *"-l$thislib "*);;
3756                 *) dflt="$dflt -l$thislib";;
3757                 esac
3758         elif xxx=`./loc $thislib$_a X $libpth`; $test -f "$xxx"; then
3759                 echo "Found -l$thislib."
3760                 case " $dflt " in
3761                 *"-l$thislib "*);;
3762                 *) dflt="$dflt -l$thislib";;
3763                 esac
3764         elif xxx=`./loc lib${thislib}_s$_a X $libpth`; $test -f "$xxx"; then
3765                 echo "Found -l${thislib}_s."
3766                 case " $dflt " in
3767                 *"-l$thislib "*);;
3768                 *) dflt="$dflt -l${thislib}_s";;
3769                 esac
3770         elif xxx=`./loc Slib$thislib$_a X $xlibpth`; $test -f "$xxx"; then
3771                 echo "Found -l$thislib."
3772                 case " $dflt " in
3773                 *"-l$thislib "*);;
3774                 *) dflt="$dflt -l$thislib";;
3775                 esac
3776         else
3777                 echo "No -l$thislib."
3778         fi
3779 done
3780 set X $dflt
3781 shift
3782 dflt="$*"
3783 case "$libs" in
3784 '') dflt="$dflt";;
3785 *) dflt="$libs";;
3786 esac
3787 case "$dflt" in
3788 ' '|'') dflt='none';;
3789 esac
3790
3791 $cat <<EOM
3792
3793 In order to compile $package on your machine, a number of libraries
3794 are usually needed.  Include any other special libraries here as well.
3795 Say "none" for none.  The default list is almost always right.
3796 EOM
3797
3798 echo " "
3799 rp="What libraries to use?"
3800 . ./myread
3801 case "$ans" in
3802 none) libs=' ';;
3803 *) libs="$ans";;
3804 esac
3805
3806 : determine optimization, if desired, or use for debug flag also
3807 case "$optimize" in
3808 ' '|$undef) dflt='none';;
3809 '') dflt='-O';;
3810 *) dflt="$optimize";;
3811 esac
3812 $cat <<EOH
3813
3814 By default, $package compiles with the -O flag to use the optimizer.
3815 Alternately, you might want to use the symbolic debugger, which uses
3816 the -g flag (on traditional Unix systems).  Either flag can be
3817 specified here.  To use neither flag, specify the word "none".
3818
3819 EOH
3820 rp="What optimizer/debugger flag should be used?"
3821 . ./myread
3822 optimize="$ans"
3823 case "$optimize" in
3824 'none') optimize=" ";;
3825 esac
3826
3827 dflt=''
3828 : We will not override a previous value, but we might want to
3829 : augment a hint file
3830 case "$hint" in
3831 default|recommended)
3832         case "$gccversion" in
3833         1*) dflt='-fpcc-struct-return' ;;
3834         esac
3835         case "$optimize" in
3836         *-g*) dflt="$dflt -DDEBUGGING";;
3837         esac
3838         case "$gccversion" in
3839         2*) if test -d /etc/conf/kconfig.d &&
3840                         $contains _POSIX_VERSION $usrinc/sys/unistd.h >/dev/null 2>&1
3841                 then
3842                         dflt="$dflt -posix"
3843                 fi
3844                 ;;
3845         esac
3846         case "$gccversion" in
3847         1*) ;;
3848         2.[0-8]*) ;;
3849         ?*)     echo " "
3850                 echo "Checking if your compiler accepts -fno-strict-aliasing" 2>&1
3851                 echo 'int main(void) { return 0; }' > gcctest.c
3852                 if $cc -O2 -fno-strict-aliasing -o gcctest gcctest.c; then
3853                         echo "Yes, it does." 2>&1
3854                         case "$ccflags" in
3855                         *strict-aliasing*) 
3856                                 echo "Leaving current flags $ccflags alone." 2>&1
3857                                 ;;
3858                         *) dflt="$dflt -fno-strict-aliasing" ;;
3859                         esac
3860                 else
3861                         echo "Nope, it doesn't, but that's ok." 2>&1
3862                 fi
3863                 ;;
3864         esac
3865         ;;
3866 esac
3867
3868 case "$mips_type" in
3869 *BSD*|'') inclwanted="$locincpth $usrinc";;
3870 *) inclwanted="$locincpth $inclwanted $usrinc/bsd";;
3871 esac
3872 for thisincl in $inclwanted; do
3873         if $test -d $thisincl; then
3874                 if $test x$thisincl != x$usrinc; then
3875                         case "$dflt" in
3876                         *$thisincl*);;
3877                         *) dflt="$dflt -I$thisincl";;
3878                         esac
3879                 fi
3880         fi
3881 done
3882
3883 inctest='if $contains $2 $usrinc/$1 >/dev/null 2>&1; then
3884         xxx=true;
3885 elif $contains $2 $usrinc/sys/$1 >/dev/null 2>&1; then
3886         xxx=true;
3887 else
3888         xxx=false;
3889 fi;
3890 if $xxx; then
3891         case "$dflt" in
3892         *$2*);;
3893         *) dflt="$dflt -D$2";;
3894         esac;
3895 fi'
3896
3897 set signal.h LANGUAGE_C; eval $inctest
3898
3899 case "$usesocks" in
3900 $define)
3901         ccflags="$ccflags -DSOCKS"
3902         ;;
3903 esac
3904
3905 case "$hint" in
3906 default|recommended) dflt="$ccflags $dflt" ;;
3907 *) dflt="$ccflags";;
3908 esac
3909
3910 case "$dflt" in
3911 ''|' ') dflt=none;;
3912 esac
3913 $cat <<EOH
3914
3915 Your C compiler may want other flags.  For this question you should include
3916 -I/whatever and -DWHATEVER flags and any other flags used by the C compiler,
3917 but you should NOT include libraries or ld flags like -lwhatever.  If you
3918 want $package to honor its debug switch, you should include -DDEBUGGING here.
3919 Your C compiler might also need additional flags, such as -D_POSIX_SOURCE.
3920
3921 To use no flags, specify the word "none".
3922
3923 EOH
3924 set X $dflt
3925 shift
3926 dflt=${1+"$@"}
3927 rp="Any additional cc flags?"
3928 . ./myread
3929 case "$ans" in
3930 none) ccflags='';;
3931 *) ccflags="$ans";;
3932 esac
3933
3934 : the following weeds options from ccflags that are of no interest to cpp
3935 cppflags="$ccflags"
3936 case "$gccversion" in
3937 1*) cppflags="$cppflags -D__GNUC__"
3938 esac
3939 case "$mips_type" in
3940 '');;
3941 *BSD*) cppflags="$cppflags -DSYSTYPE_BSD43";;
3942 esac
3943 case "$cppflags" in
3944 '');;
3945 *)
3946         echo " "
3947         echo "Let me guess what the preprocessor flags are..." >&4
3948         set X $cppflags
3949         shift
3950         cppflags=''
3951         $cat >cpp.c <<'EOM'
3952 #define BLURFL foo
3953
3954 BLURFL xx LFRULB
3955 EOM
3956         previous=''
3957         for flag in $*
3958         do
3959                 case "$flag" in
3960                 -*) ftry="$flag";;
3961                 *) ftry="$previous $flag";;
3962                 esac
3963                 if $cppstdin -DLFRULB=bar $cppflags $ftry $cppminus <cpp.c \
3964                         >cpp1.out 2>/dev/null && \
3965                         $cpprun -DLFRULB=bar $cppflags $ftry $cpplast <cpp.c \
3966                         >cpp2.out 2>/dev/null && \
3967                         $contains 'foo.*xx.*bar' cpp1.out >/dev/null 2>&1 && \
3968                         $contains 'foo.*xx.*bar' cpp2.out >/dev/null 2>&1
3969                 then
3970                         cppflags="$cppflags $ftry"
3971                         previous=''
3972                 else
3973                         previous="$flag"
3974                 fi
3975         done
3976         set X $cppflags
3977         shift
3978         cppflags=${1+"$@"}
3979         case "$cppflags" in
3980         *-*)  echo "They appear to be: $cppflags";;
3981         esac
3982         $rm -f cpp.c cpp?.out
3983         ;;
3984 esac
3985
3986 : flags used in final linking phase
3987 case "$ldflags" in
3988 '') if ./venix; then
3989                 dflt='-i -z'
3990         else
3991                 dflt=''
3992         fi
3993         case "$ccflags" in
3994         *-posix*) dflt="$dflt -posix" ;;
3995         esac
3996         ;;
3997 *) dflt="$ldflags";;
3998 esac
3999
4000 : Try to guess additional flags to pick up local libraries.
4001 for thislibdir in $libpth; do
4002         case " $loclibpth " in
4003         *" $thislibdir "*)
4004                 case "$dflt " in 
4005                 *"-L$thislibdir "*) ;;
4006                 *)  dflt="$dflt -L$thislibdir" ;;
4007                 esac
4008                 ;;
4009         esac
4010 done
4011
4012 case "$dflt" in
4013 '') dflt='none' ;;
4014 esac
4015
4016 $cat <<EOH
4017
4018 Your C linker may need flags.  For this question you should
4019 include -L/whatever and any other flags used by the C linker, but you
4020 should NOT include libraries like -lwhatever.
4021
4022 Make sure you include the appropriate -L/path flags if your C linker
4023 does not normally search all of the directories you specified above,
4024 namely
4025         $libpth
4026 To use no flags, specify the word "none".
4027
4028 EOH
4029
4030 rp="Any additional ld flags (NOT including libraries)?"
4031 . ./myread
4032 case "$ans" in
4033 none) ldflags='';;
4034 *) ldflags="$ans";;
4035 esac
4036 rmlist="$rmlist pdp11"
4037
4038 : coherency check
4039 echo " "
4040 echo "Checking your choice of C compiler and flags for coherency..." >&4
4041 $cat > try.c <<'EOF'
4042 #include <stdio.h>
4043 int main() { printf("Ok\n"); exit(0); }
4044 EOF
4045 set X $cc $optimize $ccflags -o try $ldflags try.c $libs
4046 shift
4047 $cat >try.msg <<'EOM'
4048 I've tried to compile and run the following simple program:
4049
4050 EOM
4051 $cat try.c >> try.msg
4052
4053 $cat >> try.msg <<EOM
4054
4055 I used the command:
4056
4057         $*
4058         ./try
4059
4060 and I got the following output:
4061
4062 EOM
4063 dflt=y
4064 if sh -c "$cc $optimize $ccflags -o try $ldflags try.c $libs" >>try.msg 2>&1; then
4065         if sh -c './try' >>try.msg 2>&1; then
4066                 xxx=`./try`
4067                 case "$xxx" in
4068                 "Ok") dflt=n ;;
4069                 *)      echo 'The program compiled OK, but produced no output.' >> try.msg
4070                         case " $libs " in
4071                         *" -lsfio "*)
4072                                 cat >> try.msg <<'EOQS'
4073 If $libs contains -lsfio, and sfio is mis-configured, then it
4074 sometimes (apparently) runs and exits with a 0 status, but with no
4075 output!  It may have to do with sfio's use of _exit vs. exit.
4076
4077 EOQS
4078                                 rp="You have a big problem.  Shall I abort Configure"
4079                                 dflt=y
4080                                 ;;
4081                         esac
4082                         ;;
4083                 esac
4084         else
4085                 echo "The program compiled OK, but exited with status $?." >>try.msg
4086                 rp="You have a problem.  Shall I abort Configure"
4087                 dflt=y
4088         fi
4089 else
4090         echo "I can't compile the test program." >>try.msg
4091         rp="You have a BIG problem.  Shall I abort Configure"
4092         dflt=y
4093 fi
4094 case "$dflt" in
4095 y)
4096         $cat try.msg >&4
4097         case "$knowitall" in
4098         '')
4099                 echo "(The supplied flags or libraries might be incorrect.)"
4100                 ;;
4101         *) dflt=n;;
4102         esac
4103         echo " "
4104         . ./myread
4105         case "$ans" in
4106         n*|N*) ;;
4107         *)      echo "Ok.  Stopping Configure." >&4
4108                 exit 1
4109                 ;;
4110         esac
4111         ;;
4112 n) echo "OK, that should do.";;
4113 esac
4114 $rm -f try try.* core
4115
4116 : define an is-a-typedef? function
4117 typedef='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
4118 case "$inclist" in
4119 "") inclist="sys/types.h";;
4120 esac;
4121 eval "varval=\$$var";
4122 case "$varval" in
4123 "")
4124         $rm -f temp.c;
4125         for inc in $inclist; do
4126                 echo "#include <$inc>" >>temp.c;
4127         done;
4128         echo "#ifdef $type" >> temp.c;
4129         echo "printf(\"We have $type\");" >> temp.c;
4130         echo "#endif" >> temp.c;
4131         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
4132         if $contains $type temp.E >/dev/null 2>&1; then
4133                 eval "$var=\$type";
4134         else
4135                 eval "$var=\$def";
4136         fi;
4137         $rm -f temp.?;;
4138 *) eval "$var=\$varval";;
4139 esac'
4140
4141 : define an is-a-typedef? function that prompts if the type is not available.
4142 typedef_ask='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
4143 case "$inclist" in
4144 "") inclist="sys/types.h";;
4145 esac;
4146 eval "varval=\$$var";
4147 case "$varval" in
4148 "")
4149         $rm -f temp.c;
4150         for inc in $inclist; do
4151                 echo "#include <$inc>" >>temp.c;
4152         done;
4153         echo "#ifdef $type" >> temp.c;
4154         echo "printf(\"We have $type\");" >> temp.c;
4155         echo "#endif" >> temp.c;
4156         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
4157         echo " " ;
4158         echo "$rp" | $sed -e "s/What is/Looking for/" -e "s/?/./";
4159         if $contains $type temp.E >/dev/null 2>&1; then
4160                 echo "$type found." >&4;
4161                 eval "$var=\$type";
4162         else
4163                 echo "$type NOT found." >&4;
4164                 dflt="$def";
4165                 . ./myread ;
4166                 eval "$var=\$ans";
4167         fi;
4168         $rm -f temp.?;;
4169 *) eval "$var=\$varval";;
4170 esac'
4171
4172 : define a shorthand compile call
4173 compile='
4174 mc_file=$1;
4175 shift;
4176 $cc $optimize $ccflags $ldflags -o ${mc_file} $* ${mc_file}.c $libs > /dev/null 2>&1;'
4177 : define a shorthand compile call for compilations that should be ok.
4178 compile_ok='
4179 mc_file=$1;
4180 shift;
4181 $cc $optimize $ccflags $ldflags -o ${mc_file} $* ${mc_file}.c $libs;'
4182
4183 : check for lengths of integral types
4184 echo " "
4185 case "$intsize" in
4186 '')
4187         echo "Checking to see how big your integers are..." >&4
4188         $cat >intsize.c <<'EOCP'
4189 #include <stdio.h>
4190 int main()
4191 {
4192         printf("intsize=%d;\n", (int)sizeof(int));
4193         printf("longsize=%d;\n", (int)sizeof(long));
4194         printf("shortsize=%d;\n", (int)sizeof(short));
4195         exit(0);
4196 }
4197 EOCP
4198         set intsize
4199         if eval $compile_ok && ./intsize > /dev/null; then
4200                 eval `./intsize`
4201                 echo "Your integers are $intsize bytes long."
4202                 echo "Your long integers are $longsize bytes long."
4203                 echo "Your short integers are $shortsize bytes long."
4204         else
4205                 $cat >&4 <<EOM
4206 !
4207 Help! I can't compile and run the intsize test program: please enlighten me!
4208 (This is probably a misconfiguration in your system or libraries, and
4209 you really ought to fix it.  Still, I'll try anyway.)
4210 !
4211 EOM
4212                 dflt=4
4213                 rp="What is the size of an integer (in bytes)?"
4214                 . ./myread
4215                 intsize="$ans"
4216                 dflt=$intsize
4217                 rp="What is the size of a long integer (in bytes)?"
4218                 . ./myread
4219                 longsize="$ans"
4220                 dflt=2
4221                 rp="What is the size of a short integer (in bytes)?"
4222                 . ./myread
4223                 shortsize="$ans"
4224         fi
4225         ;;
4226 esac
4227 $rm -f intsize intsize.*
4228
4229 : see what type lseek is declared as in the kernel
4230 rp="What is the type used for lseek's offset on this system?"
4231 set off_t lseektype long stdio.h sys/types.h
4232 eval $typedef_ask
4233
4234 echo " "
4235 $echo $n "Checking to see how big your file offsets are...$c" >&4
4236 $cat >try.c <<EOCP
4237 #include <sys/types.h>
4238 #include <stdio.h>
4239 int main()
4240 {
4241     printf("%d\n", (int)sizeof($lseektype));
4242     return(0); 
4243 }
4244 EOCP
4245 set try
4246 if eval $compile_ok; then
4247         lseeksize=`./try`
4248         $echo " $lseeksize bytes." >&4
4249 else
4250         dflt=$longsize
4251         echo " "
4252         echo "(I can't seem to compile the test program.  Guessing...)"
4253         rp="What is the size of your file offsets (in bytes)?"
4254         . ./myread
4255         lseeksize="$ans"
4256 fi
4257 $rm -f try.c try
4258
4259 : see what type file positions are declared as in the library
4260 rp="What is the type for file position used by fsetpos()?"
4261 set fpos_t fpostype long stdio.h sys/types.h
4262 eval $typedef_ask
4263
4264 echo " "
4265 case "$fpostype" in
4266 *_t) zzz="$fpostype"    ;;
4267 *)   zzz="fpos_t"       ;;
4268 esac
4269 $echo $n "Checking the size of $zzz...$c" >&4 
4270 cat > try.c <<EOCP
4271 #include <sys/types.h>
4272 #include <stdio.h>
4273 int main() {
4274     printf("%d\n", (int)sizeof($fpostype));
4275     exit(0);
4276 }
4277 EOCP
4278 set try
4279 if eval $compile_ok; then
4280         yyy=`./try`
4281         case "$yyy" in
4282         '')     fpossize=4
4283                 echo " "
4284                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
4285                 ;;
4286         *)      fpossize=$yyy
4287                 echo " $fpossize bytes."
4288                 ;;
4289         esac
4290 else
4291         dflt="$longsize"
4292         echo " "
4293         echo "(I can't compile the test program.  Guessing...)" >&4
4294         rp="What is the size of your file positions (in bytes)?"
4295         . ./myread
4296         fpossize="$ans"
4297 fi
4298
4299
4300
4301 case "$lseeksize:$fpossize" in
4302 8:8) cat <<EOM
4303
4304 You can have files larger than 2 gigabytes.
4305 EOM
4306    val="$define" ;;
4307 *) cat <<EOM
4308
4309 Perl can be built to understand large files (files larger than 2 gigabytes)
4310 on some systems.  To do so, Configure must be run with -Duselargefiles.
4311
4312 If this doesn't make any sense to you, just accept the default 'y'.
4313 EOM
4314    case "$uselargefiles" in
4315    "$undef"|false|[nN]*) dflt='n' ;;
4316    *)   dflt='y' ;;
4317    esac
4318    rp='Try to understand large files, if available?'
4319    . ./myread
4320    case "$ans" in
4321    y|Y)         val="$define" ;;
4322    *)           val="$undef"  ;;
4323    esac
4324    ;;
4325 esac
4326 set uselargefiles
4327 eval $setvar
4328 case "$uselargefiles" in
4329 "$define")
4330 : Look for a hint-file generated 'call-back-unit'.  If the
4331 : user has specified that a large files perl is to be built,
4332 : we may need to set or change some other defaults.
4333         if $test -f uselfs.cbu; then
4334                 echo "Your platform has some specific hints for large file builds, using them..."
4335                 . ./uselfs.cbu
4336                 echo " "
4337                 $echo $n "Rechecking to see how big your file offsets are...$c" >&4
4338                 $cat >try.c <<EOCP
4339 #include <sys/types.h>
4340 #include <stdio.h>
4341 int main()
4342 {
4343     printf("%d\n", (int)sizeof($lseektype));
4344     return(0); 
4345 }
4346 EOCP
4347                 set try
4348                 if eval $compile_ok; then
4349                         lseeksize=`./try`
4350                         $echo " $lseeksize bytes." >&4
4351                 else
4352                         dflt="$lseeksize"
4353                         echo " "
4354                         echo "(I can't seem to compile the test program.  Guessing...)"
4355                         rp="What is the size of your file offsets (in bytes)?"
4356                         . ./myread
4357                         lseeksize="$ans"
4358                 fi
4359                 case "$fpostype" in
4360                 *_t) zzz="$fpostype"    ;;
4361                 *)   zzz="fpos_t"       ;;
4362                 esac
4363                 $echo $n "Rechecking the size of $zzz...$c" >&4 
4364                 $cat > try.c <<EOCP
4365 #include <sys/types.h>
4366 #include <stdio.h>
4367 int main() {
4368     printf("%d\n", (int)sizeof($fpostype));
4369     exit(0);
4370 }
4371 EOCP
4372                 set try
4373                 if eval $compile_ok; then
4374                         yyy=`./try`
4375                         dflt="$lseeksize"
4376                         case "$yyy" in
4377                         '')     echo " "
4378                                 echo "(I can't execute the test program--guessing $fpossize.)" >&4
4379                                 ;;
4380                         *)      fpossize=$yyy
4381                                 echo " $fpossize bytes."
4382                                 ;;
4383                         esac
4384                 else
4385                         dflt="$fpossize"
4386                         echo " "
4387                         echo "(I can't compile the test program.  Guessing...)" >&4
4388                         rp="What is the size of your file positions (in bytes)?"
4389                         . ./myread
4390                         fpossize="$ans"
4391                 fi
4392                 $rm -f try.c try
4393         fi
4394         ;;
4395 esac
4396
4397
4398 case "$usemorebits" in
4399 "$define"|true|[yY]*)
4400         use64bits="$define"
4401         uselongdouble="$define"
4402         usemorebits="$define"
4403         ;;
4404 *)      usemorebits="$undef"
4405         ;;
4406 esac
4407
4408
4409 case "$intsize:$longsize" in
4410 8:*|*:8) cat <<EOM
4411
4412 You have natively 64-bit integers.
4413 EOM
4414    val="$define" ;;
4415 *) cat <<EOM
4416
4417 Perl can be built to take advantage of 64-bit integer types
4418 on some systems.  To do so, Configure must be run with -Duse64bits.
4419
4420 If this doesn't make any sense to you, just accept the default.
4421 EOM
4422   case "$use64bits" in
4423   $define|true|[yY]*)   dflt='y';;
4424   *) dflt='n';;
4425   esac
4426   rp='Try to use 64-bit integers, if available?'
4427   . ./myread
4428   case "$ans" in
4429   y|Y) val="$define" ;;
4430   *)   val="$undef"  ;;
4431   esac
4432   ;;
4433 esac
4434 set use64bits
4435 eval $setvar
4436
4437 case "$archname64" in
4438 '') archname64='' ;;    # not a typo
4439 esac
4440
4441 case "$use64bits" in
4442 "$define"|true|[yY]*)
4443 : Look for a hint-file generated 'call-back-unit'.  If the
4444 : user has specified that a 64-bit perl is to be built,
4445 : we may need to set or change some other defaults.
4446         if $test -f use64bits.cbu; then
4447                 echo "Your platform has some specific hints for 64-bit builds, using them..."
4448                 . ./use64bits.cbu
4449         else
4450                 $cat <<EOM
4451 (Your platform doesn't have any specific hints for 64-bit builds.)
4452 EOM
4453                 case "$intsize:$longsize" in
4454 8:*|*:8) cat <<EOM
4455 (This is probably okay, as your system is a natively 64-bit system.)
4456 EOM
4457                   ;;
4458                 esac
4459                 case "$gccversion" in
4460                 '')     ;;
4461                 *)      case "$ccflags" in
4462                         *-DUSE_LONG_LONG*) ;;
4463                         *) $cat <<EOM
4464 But since you seem to be using gcc, I will now add -DUSE_LONG_LONG
4465 to the compilation flags.
4466 EOM
4467                            ccflags="$ccflags -DUSE_LONG_LONG"
4468                            ;;
4469                         esac
4470                         ;;
4471                 esac
4472         fi
4473         ;;
4474 esac
4475
4476 : determine the architecture name
4477 echo " "
4478 if xxx=`./loc arch blurfl $pth`; $test -f "$xxx"; then
4479         tarch=`arch`"-$osname"
4480 elif xxx=`./loc uname blurfl $pth`; $test -f "$xxx" ; then
4481         if uname -m > tmparch 2>&1 ; then
4482                 tarch=`$sed -e 's/ *$//' -e 's/ /_/g' \
4483                         -e 's/$/'"-$osname/" tmparch`
4484         else
4485                 tarch="$osname"
4486         fi
4487         $rm -f tmparch
4488 else
4489         tarch="$osname"
4490 fi
4491 case "$myarchname" in
4492 ''|"$tarch") ;;
4493 *)
4494         echo "(Your architecture name used to be $myarchname.)"
4495         archname=''
4496         ;;
4497 esac
4498 myarchname="$tarch"
4499 case "$archname" in
4500 '') dflt="$tarch";;
4501 *) dflt="$archname";;
4502 esac
4503 rp='What is your architecture name'
4504 . ./myread
4505 archname="$ans"
4506 case "$usethreads" in
4507 $define)
4508         echo "Threads selected." >&4
4509         case "$archname" in
4510         *-thread*) echo "...and architecture name already has -thread." >&4
4511                 ;;
4512         *)      archname="$archname-thread"
4513                 echo "...setting architecture name to $archname." >&4
4514                 ;;
4515         esac
4516         ;;
4517 esac
4518 case "$usemultiplicity" in
4519 $define)
4520         echo "Multiplicity selected." >&4
4521         case "$archname" in
4522         *-multi*) echo "...and architecture name already has -multi." >&4
4523                 ;;
4524         *)      archname="$archname-multi"
4525                 echo "...setting architecture name to $archname." >&4
4526                 ;;
4527         esac
4528         ;;
4529 esac
4530 case "$use64bits" in
4531 $define)
4532         case "$archname64" in
4533         '')
4534                 ;;
4535         *)
4536                 case "$archname" in
4537                 *-$archname64*) echo "...and architecture name already has $archname64." >&4
4538                         ;;
4539                 *)      archname="$archname-$archname64"
4540                         echo "...setting architecture name to $archname." >&4
4541                         ;;
4542                 esac
4543                 ;;
4544         esac
4545 esac
4546
4547 : determine root of directory hierarchy where package will be installed.
4548 case "$prefix" in
4549 '')
4550         dflt=`./loc . /usr/local /usr/local /local /opt /usr`
4551         ;;
4552 *)
4553         dflt="$prefix"
4554         ;;
4555 esac
4556 $cat <<EOM
4557
4558 By default, $package will be installed in $dflt/bin, manual pages
4559 under $dflt/man, etc..., i.e. with $dflt as prefix for all
4560 installation directories. Typically this is something like /usr/local.
4561 If you wish to have binaries under /usr/bin but other parts of the
4562 installation under /usr/local, that's ok: you will be prompted
4563 separately for each of the installation directories, the prefix being
4564 only used to set the defaults.
4565
4566 EOM
4567 fn=d~
4568 rp='Installation prefix to use?'
4569 . ./getfile
4570 oldprefix=''
4571 case "$prefix" in
4572 '') ;;
4573 *)
4574         case "$ans" in
4575         "$prefix") ;;
4576         *) oldprefix="$prefix";;
4577         esac
4578         ;;
4579 esac
4580 prefix="$ans"
4581 prefixexp="$ansexp"
4582
4583 : is AFS running?
4584 echo " "
4585 case "$afs" in
4586 $define|true)   afs=true ;;
4587 $undef|false)   afs=false ;;
4588 *)      if test -d /afs; then
4589                 afs=true
4590         else
4591                 afs=false
4592         fi
4593         ;;
4594 esac
4595 if $afs; then
4596         echo "AFS may be running... I'll be extra cautious then..." >&4
4597 else
4598         echo "AFS does not seem to be running..." >&4
4599 fi
4600
4601 : determine installation prefix for where package is to be installed.
4602 if $afs; then 
4603 $cat <<EOM
4604
4605 Since you are running AFS, I need to distinguish the directory in which
4606 files will reside from the directory in which they are installed (and from
4607 which they are presumably copied to the former directory by occult means).
4608
4609 EOM
4610         case "$installprefix" in
4611         '') dflt=`echo $prefix | sed 's#^/afs/#/afs/.#'`;;
4612         *) dflt="$installprefix";;
4613         esac
4614 else
4615 $cat <<EOM
4616
4617 In some special cases, particularly when building $package for distribution,
4618 it is convenient to distinguish between the directory in which files should 
4619 be installed from the directory ($prefix) in which they 
4620 will eventually reside.  For most users, these two directories are the same.
4621
4622 EOM
4623         case "$installprefix" in
4624         '') dflt=$prefix ;;
4625         *) dflt=$installprefix;;
4626         esac
4627 fi
4628 fn=d~
4629 rp='What installation prefix should I use for installing files?'
4630 . ./getfile
4631 installprefix="$ans"
4632 installprefixexp="$ansexp"
4633
4634 : set the prefixit variable, to compute a suitable default value
4635 prefixit='case "$3" in
4636 ""|none)
4637         case "$oldprefix" in
4638         "") eval "$1=\"\$$2\"";;
4639         *)
4640                 case "$3" in
4641                 "") eval "$1=";;
4642                 none)
4643                         eval "tp=\"\$$2\"";
4644                         case "$tp" in
4645                         ""|" ") eval "$1=\"\$$2\"";;
4646                         *) eval "$1=";;
4647                         esac;;
4648                 esac;;
4649         esac;;
4650 *)
4651         eval "tp=\"$oldprefix-\$$2-\""; eval "tp=\"$tp\"";
4652         case "$tp" in
4653         --|/*--|\~*--) eval "$1=\"$prefix/$3\"";;
4654         /*-$oldprefix/*|\~*-$oldprefix/*)
4655                 eval "$1=\`echo \$$2 | sed \"s,^$oldprefix,$prefix,\"\`";;
4656         *) eval "$1=\"\$$2\"";;
4657         esac;;
4658 esac'
4659
4660 : set the base revision
4661 baserev=5.0
4662
4663
4664 : get the patchlevel
4665 echo " "
4666 echo "Getting the current patchlevel..." >&4
4667 if $test -r $rsrc/patchlevel.h;then
4668         patchlevel=`awk '/define[       ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
4669         subversion=`awk '/define[       ]+PERL_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
4670         api_revision=`awk '/define[     ]+PERL_API_REVISION/ {print $3}' $rsrc/patchlevel.h`
4671         api_version=`awk '/define[      ]+PERL_API_VERSION/ {print $3}' $rsrc/patchlevel.h`
4672         api_subversion=`awk '/define[   ]+PERL_API_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
4673 else
4674         patchlevel=0
4675         subversion=0
4676         api_revision=0
4677         api_version=0
4678         api_subversion=0
4679 fi
4680 $echo $n "(You have $package" $c
4681 case "$package" in
4682 "*$baserev")    ;;
4683 *)              $echo $n " $baserev" $c ;;
4684 esac
4685 $echo $n " patchlevel $patchlevel" $c
4686 test 0 -eq "$subversion" || $echo $n " subversion $subversion" $c
4687 echo ".)"
4688 case "$osname" in
4689 dos|cygwin|vms|win32)
4690         : XXX Should be a Configure test for double-dots in filenames.
4691         version=`echo $baserev $patchlevel $subversion | \
4692                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
4693         api_versionstring=`echo $api_revision $api_version $api_subversion | \
4694                  $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
4695         ;;
4696 *)
4697         version=`echo $baserev $patchlevel $subversion | \
4698                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
4699         api_versionstring=`echo $api_revision $api_version $api_subversion | \
4700                  $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
4701         ;;
4702 esac
4703 : Special case the 5.005_xx maintenance series, which used 5.005
4704 : without any subversion label as a subdirectory in $sitelib
4705 if test "${api_revision}${api_version}${api_subversion}" = "550"; then
4706         api_versionstring='5.005'
4707 fi
4708
4709 : determine installation style
4710 : For now, try to deduce it from prefix unless it is already set.
4711 : Reproduce behavior of 5.005 and earlier, maybe drop that in 5.7.
4712 case "$installstyle" in
4713 '')     case "$prefix" in
4714                 *perl*) dflt='lib';;
4715                 *) dflt='lib/perl5' ;;
4716         esac
4717         ;;
4718 *)      dflt='lib/perl5' ;;
4719 esac
4720 : Probably not worth prompting for this since we prompt for all
4721 : the directories individually, and the prompt would be too long and
4722 : confusing anyway.
4723 installstyle=$dflt
4724
4725 : determine where private library files go
4726 : Usual default is /usr/local/lib/perl5/$version.
4727 : Also allow things like /opt/perl/lib/$version, since 
4728 : /opt/perl/lib/perl5... would be redundant.
4729 : The default "style" setting is made in installstyle.U
4730 case "$installstyle" in
4731 *lib/perl5*) set dflt privlib lib/$package/$version ;;
4732 *)       set dflt privlib lib/$version ;;
4733 esac
4734 eval $prefixit
4735 $cat <<EOM
4736
4737 There are some auxiliary files for $package that need to be put into a
4738 private library directory that is accessible by everyone.
4739
4740 EOM
4741 fn=d~+
4742 rp='Pathname where the private library files will reside?'
4743 . ./getfile
4744 privlib="$ans"
4745 privlibexp="$ansexp"
4746 : Change installation prefix, if necessary.
4747 if $test X"$prefix" != X"$installprefix"; then
4748         installprivlib=`echo $privlibexp | sed "s#^$prefix#$installprefix#"`
4749 else
4750         installprivlib="$privlibexp"
4751 fi
4752
4753 : set the prefixup variable, to restore leading tilda escape
4754 prefixup='case "$prefixexp" in
4755 "$prefix") ;;
4756 *) eval "$1=\`echo \$$1 | sed \"s,^$prefixexp,$prefix,\"\`";;
4757 esac'
4758
4759 : determine where public architecture dependent libraries go
4760 set archlib archlib
4761 eval $prefixit
4762 : privlib default is /usr/local/lib/$package/$version
4763 : archlib default is /usr/local/lib/$package/$version/$archname
4764 : privlib may have an optional trailing /share.
4765 tdflt=`echo $privlib | $sed 's,/share$,,'`
4766 tdflt=$tdflt/$archname
4767 case "$archlib" in
4768 '')     dflt=$tdflt
4769         ;;
4770 *)      dflt="$archlib"
4771     ;;
4772 esac
4773 $cat <<EOM
4774
4775 $spackage contains architecture-dependent library files.  If you are
4776 sharing libraries in a heterogeneous environment, you might store
4777 these files in a separate location.  Otherwise, you can just include
4778 them with the rest of the public library files.
4779
4780 EOM
4781 fn=d+~
4782 rp='Where do you want to put the public architecture-dependent libraries?'
4783 . ./getfile
4784 archlib="$ans"
4785 archlibexp="$ansexp"
4786 if $test X"$archlib" = X"$privlib"; then
4787         d_archlib="$undef"
4788 else
4789         d_archlib="$define"
4790 fi
4791 : Change installation prefix, if necessary.
4792 if $test X"$prefix" != X"$installprefix"; then
4793         installarchlib=`echo $archlibexp | sed "s#^$prefix#$installprefix#"`
4794 else
4795         installarchlib="$archlibexp"
4796 fi
4797
4798
4799 : Binary compatibility with 5.005 is not possible for builds
4800 : with advanced features
4801 case "$usethreads$usemultiplicity" in
4802 *define*)
4803         bincompat5005="$undef"
4804         d_bincompat5005="$undef"
4805         ;;
4806 *)      $cat <<EOM
4807
4808 Perl 5.006 can be compiled for binary compatibility with 5.005.
4809 If you decide to do so, you will be able to continue using most
4810 of the extensions that were compiled for Perl 5.005.
4811
4812 EOM
4813         case "$bincompat5005$d_bincompat5005" in
4814         *"$undef"*) dflt=n ;;
4815         *) dflt=y ;;
4816         esac
4817         rp='Binary compatibility with Perl 5.005?'
4818         . ./myread
4819         case "$ans" in
4820         y*) val="$define" ;;
4821         *)  val="$undef" ;;
4822         esac
4823         set d_bincompat5005
4824         eval $setvar
4825         case "$d_bincompat5005" in
4826         "$define")
4827                 bincompat5005="$define"
4828                 ;;
4829         *)      bincompat5005="$undef"
4830                 d_bincompat5005="$undef"
4831                 ;;
4832         esac
4833         ;;
4834 esac
4835
4836
4837 : see if setuid scripts can be secure
4838 $cat <<EOM
4839
4840 Some kernels have a bug that prevents setuid #! scripts from being
4841 secure.  Some sites have disabled setuid #! scripts because of this.
4842
4843 First let's decide if your kernel supports secure setuid #! scripts.
4844 (If setuid #! scripts would be secure but have been disabled anyway,
4845 don't say that they are secure if asked.)
4846
4847 EOM
4848
4849 val="$undef"
4850 if $test -d /dev/fd; then
4851         echo "#!$ls" >reflect
4852         chmod +x,u+s reflect
4853         ./reflect >flect 2>&1
4854         if $contains "/dev/fd" flect >/dev/null; then
4855                 echo "Congratulations, your kernel has secure setuid scripts!" >&4
4856                 val="$define"
4857         else
4858                 $cat <<EOM
4859 If you are not sure if they are secure, I can check but I'll need a
4860 username and password different from the one you are using right now.
4861 If you don't have such a username or don't want me to test, simply
4862 enter 'none'.
4863
4864 EOM
4865                 rp='Other username to test security of setuid scripts with?'
4866                 dflt='none'
4867                 . ./myread
4868                 case "$ans" in
4869                 n|none)
4870                         case "$d_suidsafe" in
4871                         '')     echo "I'll assume setuid scripts are *not* secure." >&4
4872                                 dflt=n;;
4873                         "$undef")
4874                                 echo "Well, the $hint value is *not* secure." >&4
4875                                 dflt=n;;
4876                         *)      echo "Well, the $hint value *is* secure." >&4
4877                                 dflt=y;;
4878                         esac
4879                         ;;
4880                 *)
4881                         $rm -f reflect flect
4882                         echo "#!$ls" >reflect
4883                         chmod +x,u+s reflect
4884                         echo >flect
4885                         chmod a+w flect
4886                         echo '"su" will (probably) prompt you for '"$ans's password."
4887                         su $ans -c './reflect >flect'
4888                         if $contains "/dev/fd" flect >/dev/null; then
4889                                 echo "Okay, it looks like setuid scripts are secure." >&4
4890                                 dflt=y
4891                         else
4892                                 echo "I don't think setuid scripts are secure." >&4
4893                                 dflt=n
4894                         fi
4895                         ;;
4896                 esac
4897                 rp='Does your kernel have *secure* setuid scripts?'
4898                 . ./myread
4899                 case "$ans" in
4900                 [yY]*)  val="$define";;
4901                 *)      val="$undef";;
4902                 esac
4903         fi
4904 else
4905         echo "I don't think setuid scripts are secure (no /dev/fd directory)." >&4
4906         echo "(That's for file descriptors, not floppy disks.)"
4907         val="$undef"
4908 fi
4909 set d_suidsafe
4910 eval $setvar
4911
4912 $rm -f reflect flect
4913
4914 : now see if they want to do setuid emulation
4915 echo " "
4916 val="$undef"
4917 case "$d_suidsafe" in
4918 "$define")
4919         val="$undef"
4920         echo "No need to emulate SUID scripts since they are secure here." >& 4
4921         ;;
4922 *)
4923         $cat <<EOM
4924 Some systems have disabled setuid scripts, especially systems where
4925 setuid scripts cannot be secure.  On systems where setuid scripts have
4926 been disabled, the setuid/setgid bits on scripts are currently
4927 useless.  It is possible for $package to detect those bits and emulate
4928 setuid/setgid in a secure fashion.  This emulation will only work if
4929 setuid scripts have been disabled in your kernel.
4930
4931 EOM
4932         case "$d_dosuid" in
4933         "$define") dflt=y ;;
4934         *) dflt=n ;;
4935         esac
4936         rp="Do you want to do setuid/setgid emulation?"
4937         . ./myread
4938         case "$ans" in
4939         [yY]*)  val="$define";;
4940         *)      val="$undef";;
4941         esac
4942         ;;
4943 esac
4944 set d_dosuid
4945 eval $setvar
4946
4947 : determine filename position in cpp output
4948 echo " "
4949 echo "Computing filename position in cpp output for #include directives..." >&4
4950 echo '#include <stdio.h>' > foo.c
4951 $cat >fieldn <<EOF
4952 $startsh
4953 $cppstdin $cppflags $cppminus <foo.c 2>/dev/null | \
4954 $grep '^[       ]*#.*stdio\.h' | \
4955 while read cline; do
4956         pos=1
4957         set \$cline
4958         while $test \$# -gt 0; do
4959                 if $test -r \`echo \$1 | $tr -d '"'\`; then
4960                         echo "\$pos"
4961                         exit 0
4962                 fi
4963                 shift
4964                 pos=\`expr \$pos + 1\`
4965         done
4966 done
4967 EOF
4968 chmod +x fieldn
4969 fieldn=`./fieldn`
4970 $rm -f foo.c fieldn
4971 case $fieldn in
4972 '') pos='???';;
4973 1) pos=first;;
4974 2) pos=second;;
4975 3) pos=third;;
4976 *) pos="${fieldn}th";;
4977 esac
4978 echo "Your cpp writes the filename in the $pos field of the line."
4979
4980 : locate header file
4981 $cat >findhdr <<EOF
4982 $startsh
4983 wanted=\$1
4984 name=''
4985 for usrincdir in $usrinc
4986 do
4987         if test -f \$usrincdir/\$wanted; then
4988                 echo "\$usrincdir/\$wanted"
4989                 exit 0
4990         fi
4991 done
4992 awkprg='{ print \$$fieldn }'
4993 echo "#include <\$wanted>" > foo\$\$.c
4994 $cppstdin $cppminus $cppflags < foo\$\$.c 2>/dev/null | \
4995 $grep "^[       ]*#.*\$wanted" | \
4996 while read cline; do
4997         name=\`echo \$cline | $awk "\$awkprg" | $tr -d '"'\`
4998         case "\$name" in
4999         *[/\\\\]\$wanted) echo "\$name"; exit 1;;
5000         *[\\\\/]\$wanted) echo "\$name"; exit 1;;
5001         *) exit 2;;
5002         esac;
5003 done;
5004 #
5005 # status = 0: grep returned 0 lines, case statement not executed
5006 # status = 1: headerfile found
5007 # status = 2: while loop executed, no headerfile found
5008 #
5009 status=\$?
5010 $rm -f foo\$\$.c;
5011 if test \$status -eq 1; then
5012         exit 0;
5013 fi
5014 exit 1
5015 EOF
5016 chmod +x findhdr
5017
5018 : define an alternate in-header-list? function
5019 inhdr='echo " "; td=$define; tu=$undef; yyy=$@;
5020 cont=true; xxf="echo \"<\$1> found.\" >&4";
5021 case $# in 2) xxnf="echo \"<\$1> NOT found.\" >&4";;
5022 *) xxnf="echo \"<\$1> NOT found, ...\" >&4";;
5023 esac;
5024 case $# in 4) instead=instead;; *) instead="at last";; esac;
5025 while $test "$cont"; do
5026         xxx=`./findhdr $1`
5027         var=$2; eval "was=\$$2";
5028         if $test "$xxx" && $test -r "$xxx";
5029         then eval $xxf;
5030         eval "case \"\$$var\" in $undef) . ./whoa; esac"; eval "$var=\$td";
5031                 cont="";
5032         else eval $xxnf;
5033         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu"; fi;
5034         set $yyy; shift; shift; yyy=$@;
5035         case $# in 0) cont="";;
5036         2) xxf="echo \"but I found <\$1> $instead.\" >&4";
5037                 xxnf="echo \"and I did not find <\$1> either.\" >&4";;
5038         *) xxf="echo \"but I found <\$1\> instead.\" >&4";
5039                 xxnf="echo \"there is no <\$1>, ...\" >&4";;
5040         esac;
5041 done;
5042 while $test "$yyy";
5043 do set $yyy; var=$2; eval "was=\$$2";
5044         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu";
5045         set $yyy; shift; shift; yyy=$@;
5046 done'
5047
5048 : see if this is a malloc.h system
5049 set malloc.h i_malloc
5050 eval $inhdr
5051
5052 : see if stdlib is available
5053 set stdlib.h i_stdlib
5054 eval $inhdr
5055
5056 : determine which malloc to compile in
5057 echo " "
5058 case "$usemymalloc" in
5059 ''|[yY]*|true|$define)  dflt='y' ;;
5060 *)      dflt='n' ;;
5061 esac
5062 rp="Do you wish to attempt to use the malloc that comes with $package?"
5063 . ./myread
5064 usemymalloc="$ans"
5065 case "$ans" in
5066 y*|true)
5067         usemymalloc='y'
5068         mallocsrc='malloc.c'
5069         mallocobj="malloc$_o"
5070         d_mymalloc="$define"
5071         case "$libs" in
5072         *-lmalloc*)
5073                 : Remove malloc from list of libraries to use
5074                 echo "Removing unneeded -lmalloc from library list" >&4
5075                 set `echo X $libs | $sed -e 's/-lmalloc / /' -e 's/-lmalloc$//'`
5076                 shift
5077                 libs="$*"
5078                 echo "libs = $libs" >&4
5079                 ;;
5080         esac
5081         ;;
5082 *)
5083         usemymalloc='n'
5084         mallocsrc=''
5085         mallocobj=''
5086         d_mymalloc="$undef"
5087         ;;
5088 esac
5089
5090 : compute the return types of malloc and free
5091 echo " "
5092 $cat >malloc.c <<END
5093 #$i_malloc I_MALLOC
5094 #$i_stdlib I_STDLIB
5095 #include <stdio.h>
5096 #include <sys/types.h>
5097 #ifdef I_MALLOC
5098 #include <malloc.h>
5099 #endif
5100 #ifdef I_STDLIB
5101 #include <stdlib.h>
5102 #endif
5103 #ifdef TRY_MALLOC
5104 void *malloc();
5105 #endif
5106 #ifdef TRY_FREE
5107 void free();
5108 #endif
5109 END
5110 case "$malloctype" in
5111 '')
5112         if $cc $ccflags -c -DTRY_MALLOC malloc.c >/dev/null 2>&1; then
5113                 malloctype='void *'
5114         else
5115                 malloctype='char *'
5116         fi
5117         ;;
5118 esac
5119 echo "Your system wants malloc to return '$malloctype', it would seem." >&4
5120
5121 case "$freetype" in
5122 '')
5123         if $cc $ccflags -c -DTRY_FREE malloc.c >/dev/null 2>&1; then
5124                 freetype='void'
5125         else
5126                 freetype='int'
5127         fi
5128         ;;
5129 esac
5130 echo "Your system uses $freetype free(), it would seem." >&4
5131 $rm -f malloc.[co]
5132 $cat <<EOM
5133
5134 The installation process will also create a directory for
5135 vendor-supplied add-ons.  Vendors who supply perl with their system
5136 may find it convenient to place all vendor-supplied files in this
5137 directory rather than in the main distribution directory.  This will
5138 ease upgrades between binary-compatible maintenance versions of perl.
5139
5140 Of course you may also use these directories in whatever way you see
5141 fit.  For example, you might use them to access modules shared over a
5142 company-wide network.
5143
5144 The default answer should be fine for most people.
5145 This causes further questions about vendor add-ons to be skipped
5146 and no vendor-specific directories will be configured for perl.
5147
5148 EOM
5149 rp='Do you want to configure vendor-specific add-on directories?'
5150 case "$usevendorprefix" in
5151 define|true|[yY]*) dflt=y ;;
5152 *) dflt=n ;;
5153 esac
5154 . ./myread
5155 case "$ans" in
5156 [yY]*)  fn=d~+
5157         rp='Installation prefix to use for vendor-supplied add-ons?'
5158         case "$vendorprefix" in
5159         '') dflt='' ;;
5160         *)  dflt=$vendorprefix ;;
5161         esac
5162         . ./getfile
5163         oldvendorprefix=''
5164         case "$vendorprefix" in
5165         '') ;;
5166         *)      case "$ans" in
5167                 "$prefix") ;;
5168                 *) oldvendorprefix="$prefix";;
5169                 esac
5170                 ;;
5171         esac
5172         usevendorprefix="$define"
5173         vendorprefix="$ans"
5174         vendorprefixexp="$ansexp"
5175         ;;
5176 *)      usevendorprefix="$undef"
5177         vendorprefix=''
5178         vendorprefixexp=''
5179         ;;
5180 esac
5181
5182 case "$vendorprefix" in
5183 '')     d_vendorlib="$undef"
5184         vendorlib=''
5185         vendorlibexp=''
5186         ;;
5187 *)      d_vendorlib="$define"
5188         : determine where vendor-supplied modules go.
5189         : Usual default is /usr/local/lib/perl5/vendor_perl/$version
5190         prog=`echo $package | $sed 's/-*[0-9.]*$//'`
5191         case "$installstyle" in
5192         *lib/perl5*) dflt=$vendorprefix/lib/$package/vendor_$prog/$version ;;
5193         *)           dflt=$vendorprefix/lib/vendor_$prog/$version ;;
5194         esac
5195         fn=d~+
5196         rp='Pathname for the vendor-supplied library files?'
5197         . ./getfile
5198         vendorlib="$ans"
5199         vendorlibexp="$ansexp"
5200         : Change installation prefix, if necessary.
5201         if $test X"$prefix" != X"$installprefix"; then
5202                 installvendorlib=`echo $vendorlibexp | $sed "s#^$prefix#$installprefix#"`
5203         else
5204                 installvendorlib="$vendorlibexp"
5205         fi
5206         ;;
5207 esac
5208
5209 : Cruising for prototypes
5210 echo " "
5211 echo "Checking out function prototypes..." >&4
5212 $cat >prototype.c <<'EOCP'
5213 int main(int argc, char *argv[]) {
5214         exit(0);}
5215 EOCP
5216 if $cc $ccflags -c prototype.c >prototype.out 2>&1 ; then
5217         echo "Your C compiler appears to support function prototypes."
5218         val="$define"
5219 else
5220         echo "Your C compiler doesn't seem to understand function prototypes."
5221         val="$undef"
5222 fi
5223 set prototype
5224 eval $setvar
5225 $rm -f prototype*
5226
5227 case "$prototype" in
5228 "$define") ;;
5229 *)      ansi2knr='ansi2knr'
5230         echo " "
5231         cat <<EOM >&4
5232
5233 $me:  FATAL ERROR:
5234 This version of $package can only be compiled by a compiler that 
5235 understands function prototypes.  Unfortunately, your C compiler 
5236         $cc $ccflags
5237 doesn't seem to understand them.  Sorry about that.
5238
5239 If GNU cc is available for your system, perhaps you could try that instead.  
5240
5241 Eventually, we hope to support building Perl with pre-ANSI compilers.
5242 If you would like to help in that effort, please contact <perlbug@perl.org>.
5243
5244 Aborting Configure now.
5245 EOM
5246         exit 2
5247         ;;
5248 esac
5249
5250 : determine where public executables go
5251 echo " "
5252 set dflt bin bin
5253 eval $prefixit
5254 fn=d~
5255 rp='Pathname where the public executables will reside?'
5256 . ./getfile
5257 if $test "X$ansexp" != "X$binexp"; then
5258         installbin=''
5259 fi
5260 bin="$ans"
5261 binexp="$ansexp"
5262 : Change installation prefix, if necessary.
5263 : XXX Bug? -- ignores Configure -Dinstallprefix setting.
5264 if $test X"$prefix" != X"$installprefix"; then
5265         installbin=`echo $binexp | sed "s#^$prefix#$installprefix#"`
5266 else
5267         installbin="$binexp"
5268 fi
5269
5270 $cat <<EOM
5271
5272 After $package is installed, you may wish to install various
5273 add-on modules and utilities.  Typically, these add-ons will
5274 be installed under $prefix with the rest
5275 of this package.  However, you may wish to install such add-ons
5276 elsewhere under a different prefix.
5277
5278 If you do not wish to put everything under a single prefix, that's
5279 ok.  You will be prompted for the individual locations; this siteprefix
5280 is only used to suggest the defaults.
5281
5282 The default should be fine for most people.
5283
5284 EOM
5285 fn=d~+
5286 rp='Installation prefix to use for add-on modules and utilities?'
5287 : XXX Here might be another good place for an installstyle setting.
5288 case "$siteprefix" in
5289 '') dflt=$prefix ;;
5290 *)  dflt=$siteprefix ;;
5291 esac
5292 . ./getfile
5293 oldsiteprefix=''
5294 case "$siteprefix" in
5295 '') ;;
5296 *)
5297         case "$ans" in
5298         "$prefix") ;;
5299         *) oldsiteprefix="$prefix";;
5300         esac
5301         ;;
5302 esac
5303 siteprefix="$ans"
5304 siteprefixexp="$ansexp"
5305
5306 : determine where site specific libraries go.
5307 : Usual default is /usr/local/lib/perl5/site_perl/$version
5308 : The default "style" setting is made in installstyle.U
5309 : XXX No longer works with Prefixit stuff.
5310 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
5311 case "$installstyle" in
5312 *lib/perl5*) dflt=$siteprefix/lib/$package/site_$prog/$version ;;
5313 *)       dflt=$siteprefix/lib/site_$prog/$version ;;
5314 esac
5315 $cat <<EOM
5316
5317 The installation process will create a directory for
5318 site-specific extensions and modules.  Most users find it convenient
5319 to place all site-specific files in this directory rather than in the
5320 main distribution directory.
5321
5322 EOM
5323 fn=d~+
5324 rp='Pathname for the site-specific library files?'
5325 . ./getfile
5326 sitelib="$ans"
5327 sitelibexp="$ansexp"
5328 : Change installation prefix, if necessary.
5329 if $test X"$prefix" != X"$installprefix"; then
5330         installsitelib=`echo $sitelibexp | sed "s#^$prefix#$installprefix#"`
5331 else
5332         installsitelib="$sitelibexp"
5333 fi
5334
5335 : Determine list of previous versions to include in @INC
5336 $cat > getverlist <<EOPL
5337 #!$perl -w
5338 use File::Basename;
5339 \$api_versionstring = "$api_versionstring";
5340 \$version = "$version";
5341 \$sitelib = "$sitelib";
5342 \$archname = "$archname";
5343 EOPL
5344         $cat >> getverlist <<'EOPL'
5345 # Can't have leading @ because metaconfig interprets it as a command!
5346 ;@inc_version_list=();
5347 $stem=dirname($sitelib);
5348 # Redo to do opendir/readdir? 
5349 if (-d $stem) {
5350     chdir($stem);
5351     ;@candidates = glob("5.*");
5352 }
5353 else {
5354     ;@candidates = ();
5355 }
5356
5357 foreach $d (@candidates) {
5358     if ($d lt $version) {
5359         if ($d ge $api_versionstring) {
5360             unshift(@inc_version_list, "$d/$archname", $d);
5361         }
5362         elsif ($d ge "5.005") {
5363             unshift(@inc_version_list, $d);
5364         }
5365     }
5366     else {
5367         # Skip newer version.  I.e. don't look in
5368         # 5.7.0 if we're installing 5.6.1.
5369     }
5370 }
5371
5372 if (@inc_version_list) {
5373     print '"';
5374     print join('", "', @inc_version_list);
5375     print '"';
5376 }
5377 else {
5378     # Blank space to preserve value for next Configure run.
5379     print " ";
5380 }
5381 EOPL
5382 chmod +x getverlist
5383 case "$inc_version_list" in
5384 '')     if test -x $perl; then
5385                 dflt=`$perl getverlist`
5386         else
5387                 dflt=''
5388         fi
5389         ;;
5390 *)  dflt="$inc_version_list" ;;
5391 esac
5392 $cat <<'EOM'
5393
5394 In order to ease the process of upgrading, this version of perl 
5395 can be configured to use modules built and installed with earlier 
5396 versions of perl that were installed under $prefix.  Specify here
5397 the list of earlier versions that this version of perl should check.
5398 If Configure detected no earlier versions of perl installed under
5399 $prefix, then the list will be empty.
5400
5401 The default should almost always be sensible, so if you're not sure,
5402 just accept the default.
5403 EOM
5404
5405 rp='list of earlier versions to include in @INC?'
5406 . ./myread
5407 inc_version_list="$ans"
5408 $rm -f getverlist
5409
5410 : determine whether to install perl also as /usr/bin/perl
5411
5412 echo " "
5413 if $test -d /usr/bin -a "X$installbin" != X/usr/bin; then
5414         $cat <<EOM
5415 Many scripts expect to perl to be installed as /usr/bin/perl.
5416 I can install the perl you are about to compile also as /usr/bin/perl
5417 (in addition to $installbin/perl).
5418 EOM
5419         case "$installusrbinperl" in
5420         "$undef"|[nN]*) dflt='n';;
5421         *)              dflt='y';;
5422         esac
5423         rp="Do you want to install perl as /usr/bin/perl?"
5424         . ./myread
5425         case "$ans" in
5426         [yY]*)  val="$define";;
5427         *)      val="$undef" ;;
5428         esac
5429 else
5430         val="$undef"
5431 fi
5432 set installusrbinperl
5433 eval $setvar
5434
5435 echo " "
5436 echo "Checking for GNU C Library..." >&4
5437 cat >gnulibc.c <<EOM
5438 #include <stdio.h>
5439 int main()
5440 {
5441 #ifdef __GLIBC__
5442     exit(0);
5443 #else
5444     exit(1);
5445 #endif
5446 }
5447 EOM
5448 set gnulibc
5449 if eval $compile_ok && ./gnulibc; then
5450         val="$define"
5451         echo "You are using the GNU C Library"
5452 else
5453         val="$undef"
5454         echo "You are not using the GNU C Library"
5455 fi
5456 $rm -f gnulibc*
5457 set d_gnulibc
5458 eval $setvar
5459
5460 : see if nm is to be used to determine whether a symbol is defined or not
5461 case "$usenm" in
5462 '')
5463         dflt=''
5464         case "$d_gnulibc" in
5465         "$define")
5466                 echo " "
5467                 echo "nm probably won't work on the GNU C Library." >&4
5468                 dflt=n
5469                 ;;
5470         esac
5471         case "$dflt" in
5472         '') 
5473                 if $test "$osname" = aix -a ! -f /lib/syscalls.exp; then
5474                         echo " "
5475                         echo "Whoops!  This is an AIX system without /lib/syscalls.exp!" >&4
5476                         echo "'nm' won't be sufficient on this sytem." >&4
5477                         dflt=n
5478                 fi
5479                 ;;
5480         esac
5481         case "$dflt" in
5482         '') dflt=`$egrep 'inlibc|csym' $rsrc/Configure | wc -l 2>/dev/null`
5483                 if $test $dflt -gt 20; then
5484                         dflt=y
5485                 else
5486                         dflt=n
5487                 fi
5488                 ;;
5489         esac
5490         ;;
5491 *)
5492         case "$usenm" in
5493         true|$define) dflt=y;;
5494         *) dflt=n;;
5495         esac
5496         ;;
5497 esac
5498 $cat <<EOM
5499
5500 I can use $nm to extract the symbols from your C libraries. This
5501 is a time consuming task which may generate huge output on the disk (up
5502 to 3 megabytes) but that should make the symbols extraction faster. The
5503 alternative is to skip the 'nm' extraction part and to compile a small
5504 test program instead to determine whether each symbol is present. If
5505 you have a fast C compiler and/or if your 'nm' output cannot be parsed,
5506 this may be the best solution.
5507
5508 You probably shouldn't let me use 'nm' if you are using the GNU C Library.
5509
5510 EOM
5511 rp="Shall I use $nm to extract C symbols from the libraries?"
5512 . ./myread
5513 case "$ans" in
5514 [Nn]*) usenm=false;;
5515 *) usenm=true;;
5516 esac
5517
5518 runnm=$usenm
5519 case "$reuseval" in
5520 true) runnm=false;;
5521 esac
5522
5523 : nm options which may be necessary
5524 case "$nm_opt" in
5525 '') if $test -f /mach_boot; then
5526                 nm_opt=''       # Mach
5527         elif $test -d /usr/ccs/lib; then
5528                 nm_opt='-p'     # Solaris (and SunOS?)
5529         elif $test -f /dgux; then
5530                 nm_opt='-p'     # DG-UX
5531         elif $test -f /lib64/rld; then
5532                 nm_opt='-p'     # 64-bit Irix
5533         else
5534                 nm_opt=''
5535         fi;;
5536 esac
5537
5538 : nm options which may be necessary for shared libraries but illegal
5539 : for archive libraries.  Thank you, Linux.
5540 case "$nm_so_opt" in
5541 '')     case "$myuname" in
5542         *linux*)
5543                 if $nm --help | $grep 'dynamic' > /dev/null 2>&1; then
5544                         nm_so_opt='--dynamic'
5545                 fi
5546                 ;;
5547         esac
5548         ;;
5549 esac
5550
5551 case "$runnm" in
5552 true)
5553 : get list of predefined functions in a handy place
5554 echo " "
5555 case "$libc" in
5556 '') libc=unknown
5557         case "$libs" in
5558         *-lc_s*) libc=`./loc libc_s$_a $libc $libpth`
5559         esac
5560         ;;
5561 esac
5562 libnames='';
5563 case "$libs" in
5564 '') ;;
5565 *)  for thislib in $libs; do
5566         case "$thislib" in
5567         -lc|-lc_s)
5568                 : Handle C library specially below.
5569                 ;;
5570         -l*)
5571                 thislib=`echo $thislib | $sed -e 's/^-l//'`
5572                 if try=`./loc lib$thislib.$so.'*' X $libpth`; $test -f "$try"; then
5573                         :
5574                 elif try=`./loc lib$thislib.$so X $libpth`; $test -f "$try"; then
5575                         :
5576                 elif try=`./loc lib$thislib$_a X $libpth`; $test -f "$try"; then
5577                         :
5578                 elif try=`./loc $thislib$_a X $libpth`; $test -f "$try"; then
5579                         :
5580                 elif try=`./loc lib$thislib X $libpth`; $test -f "$try"; then
5581                         :
5582                 elif try=`./loc $thislib X $libpth`; $test -f "$try"; then
5583                         :
5584                 elif try=`./loc Slib$thislib$_a X $xlibpth`; $test -f "$try"; then
5585                         :
5586                 else
5587                         try=''
5588                 fi
5589                 libnames="$libnames $try"
5590                 ;;
5591         *) libnames="$libnames $thislib" ;;
5592         esac
5593         done
5594         ;;
5595 esac
5596 xxx=normal
5597 case "$libc" in
5598 unknown)
5599         set /lib/libc.$so
5600         for xxx in $libpth; do
5601                 $test -r $1 || set $xxx/libc.$so
5602                 : The messy sed command sorts on library version numbers.
5603                 $test -r $1 || \
5604                         set `echo blurfl; echo $xxx/libc.$so.[0-9]* | \
5605                         tr ' ' $trnl | egrep -v '\.[A-Za-z]*$' | $sed -e '
5606                                 h
5607                                 s/[0-9][0-9]*/0000&/g
5608                                 s/0*\([0-9][0-9][0-9][0-9][0-9]\)/\1/g
5609                                 G
5610                                 s/\n/ /' | \
5611                          sort | $sed -e 's/^.* //'`
5612                 eval set \$$#
5613         done
5614         $test -r $1 || set /usr/ccs/lib/libc.$so
5615         $test -r $1 || set /lib/libsys_s$_a
5616         ;;
5617 *)
5618         set blurfl
5619         ;;
5620 esac
5621 if $test -r "$1"; then
5622         echo "Your (shared) C library seems to be in $1."
5623         libc="$1"
5624 elif $test -r /lib/libc && $test -r /lib/clib; then
5625         echo "Your C library seems to be in both /lib/clib and /lib/libc."
5626         xxx=apollo
5627         libc='/lib/clib /lib/libc'
5628         if $test -r /lib/syslib; then
5629                 echo "(Your math library is in /lib/syslib.)"
5630                 libc="$libc /lib/syslib"
5631         fi
5632 elif $test -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
5633         echo "Your C library seems to be in $libc, as you said before."
5634 elif $test -r $incpath/usr/lib/libc$_a; then
5635         libc=$incpath/usr/lib/libc$_a;
5636         echo "Your C library seems to be in $libc.  That's fine."
5637 elif $test -r /lib/libc$_a; then
5638         libc=/lib/libc$_a;
5639         echo "Your C library seems to be in $libc.  You're normal."
5640 else
5641         if tans=`./loc libc$_a blurfl/dyick $libpth`; $test -r "$tans"; then
5642                 :
5643         elif tans=`./loc libc blurfl/dyick $libpth`; $test -r "$tans"; then
5644                 libnames="$libnames "`./loc clib blurfl/dyick $libpth`
5645         elif tans=`./loc clib blurfl/dyick $libpth`; $test -r "$tans"; then
5646                 :
5647         elif tans=`./loc Slibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
5648                 :
5649         elif tans=`./loc Mlibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
5650                 :
5651         else
5652                 tans=`./loc Llibc$_a blurfl/dyick $xlibpth`
5653         fi
5654         if $test -r "$tans"; then
5655                 echo "Your C library seems to be in $tans, of all places."
5656                 libc=$tans
5657         else
5658                 libc='blurfl'
5659         fi
5660 fi
5661 if $test $xxx = apollo -o -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
5662         dflt="$libc"
5663         cat <<EOM
5664
5665 If the guess above is wrong (which it might be if you're using a strange
5666 compiler, or your machine supports multiple models), you can override it here.
5667
5668 EOM
5669 else
5670         dflt=''
5671         echo $libpth | tr ' ' $trnl | sort | uniq > libpath
5672         cat >&4 <<EOM
5673 I can't seem to find your C library.  I've looked in the following places:
5674
5675 EOM
5676         $sed 's/^/      /' libpath
5677         cat <<EOM
5678
5679 None of these seems to contain your C library. I need to get its name...
5680
5681 EOM
5682 fi
5683 fn=f
5684 rp='Where is your C library?'
5685 . ./getfile
5686 libc="$ans"
5687
5688 echo " "
5689 echo $libc $libnames | tr ' ' $trnl | sort | uniq > libnames
5690 set X `cat libnames`
5691 shift
5692 xxx=files
5693 case $# in 1) xxx=file; esac
5694 echo "Extracting names from the following $xxx for later perusal:" >&4
5695 echo " "
5696 $sed 's/^/      /' libnames >&4
5697 echo " "
5698 $echo $n "This may take a while...$c" >&4
5699
5700 for file in $*; do
5701         case $file in
5702         *$so*) $nm $nm_so_opt $nm_opt $file 2>/dev/null;;
5703         *) $nm $nm_opt $file 2>/dev/null;;
5704         esac
5705 done >libc.tmp
5706
5707 $echo $n ".$c"
5708 $grep fprintf libc.tmp > libc.ptf
5709 xscan='eval "<libc.ptf $com >libc.list"; $echo $n ".$c" >&4'
5710 xrun='eval "<libc.tmp $com >libc.list"; echo "done" >&4'
5711 xxx='[ADTSIW]'
5712 if com="$sed -n -e 's/__IO//' -e 's/^.* $xxx  *_[_.]*//p' -e 's/^.* $xxx  *//p'";\
5713         eval $xscan;\
5714         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5715                 eval $xrun
5716 elif com="$sed -n -e 's/^__*//' -e 's/^\([a-zA-Z_0-9$]*\).*xtern.*/\1/p'";\
5717         eval $xscan;\
5718         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5719                 eval $xrun
5720 elif com="$sed -n -e '/|UNDEF/d' -e '/FUNC..GL/s/^.*|__*//p'";\
5721         eval $xscan;\
5722         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5723                 eval $xrun
5724 elif com="$sed -n -e 's/^.* D __*//p' -e 's/^.* D //p'";\
5725         eval $xscan;\
5726         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5727                 eval $xrun
5728 elif com="$sed -n -e 's/^_//' -e 's/^\([a-zA-Z_0-9]*\).*xtern.*text.*/\1/p'";\
5729         eval $xscan;\
5730         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5731                 eval $xrun
5732 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p'";\
5733         eval $xscan;\
5734         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5735                 eval $xrun
5736 elif com="$grep '|' | $sed -n -e '/|COMMON/d' -e '/|DATA/d' \
5737                                 -e '/ file/d' -e 's/^\([^       ]*\).*/\1/p'";\
5738         eval $xscan;\
5739         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5740                 eval $xrun
5741 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p' -e 's/^.*|FUNC |WEAK .*|//p'";\
5742         eval $xscan;\
5743         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5744                 eval $xrun
5745 elif com="$sed -n -e 's/^__//' -e '/|Undef/d' -e '/|Proc/s/ .*//p'";\
5746         eval $xscan;\
5747         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5748                 eval $xrun
5749 elif com="$sed -n -e 's/^.*|Proc .*|Text *| *//p'";\
5750         eval $xscan;\
5751         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5752                 eval $xrun
5753 elif com="$sed -n -e '/Def. Text/s/.* \([^ ]*\)\$/\1/p'";\
5754         eval $xscan;\
5755         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5756                 eval $xrun
5757 elif com="$sed -n -e 's/^[-0-9a-f ]*_\(.*\)=.*/\1/p'";\
5758         eval $xscan;\
5759         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5760                 eval $xrun
5761 elif com="$sed -n -e 's/.*\.text n\ \ \ \.//p'";\
5762         eval $xscan;\
5763         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5764                 eval $xrun
5765 elif com="sed -n -e 's/^__.*//' -e 's/[       ]*D[    ]*[0-9]*.*//p'";\
5766         eval $xscan;\
5767         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
5768                 eval $xrun
5769 else
5770         $nm -p $* 2>/dev/null >libc.tmp
5771         $grep fprintf libc.tmp > libc.ptf
5772         if com="$sed -n -e 's/^.* [ADTSIW]  *_[_.]*//p' -e 's/^.* [ADTSIW] //p'";\
5773                 eval $xscan; $contains '^fprintf$' libc.list >/dev/null 2>&1
5774         then
5775                 nm_opt='-p'
5776                 eval $xrun
5777         else
5778                 echo " "
5779                 echo "$nm didn't seem to work right. Trying $ar instead..." >&4
5780                 com=''
5781                 if $ar t $libc > libc.tmp && $contains '^fprintf$' libc.tmp >/dev/null 2>&1; then
5782                         for thisname in $libnames $libc; do
5783                                 $ar t $thisname >>libc.tmp
5784                         done
5785                         $sed -e "s/\\$_o\$//" < libc.tmp > libc.list
5786                         echo "Ok." >&4
5787                 elif test "X$osname" = "Xos2" && $ar tv $libc > libc.tmp; then
5788                         # Repeat libc to extract forwarders to DLL entries too
5789                         for thisname in $libnames $libc; do
5790                                 $ar tv $thisname >>libc.tmp
5791                                 # Revision 50 of EMX has bug in $ar.
5792                                 # it will not extract forwarders to DLL entries
5793                                 # Use emximp which will extract exactly them.
5794                                 emximp -o tmp.imp $thisname \
5795                                     2>/dev/null && \
5796                                     $sed -e 's/^\([_a-zA-Z0-9]*\) .*$/\1/p' \
5797                                     < tmp.imp >>libc.tmp
5798                                 $rm tmp.imp
5799                         done
5800                         $sed -e "s/\\$_o\$//" -e 's/^ \+//' < libc.tmp > libc.list
5801                         echo "Ok." >&4
5802                 else
5803                         echo "$ar didn't seem to work right." >&4
5804                         echo "Maybe this is a Cray...trying bld instead..." >&4
5805                         if bld t $libc | $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" > libc.list
5806                         then
5807                                 for thisname in $libnames; do
5808                                         bld t $libnames | \
5809                                         $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" >>libc.list
5810                                         $ar t $thisname >>libc.tmp
5811                                 done
5812                                 echo "Ok." >&4
5813                         else
5814                                 echo "That didn't work either.  Giving up." >&4
5815                                 exit 1
5816                         fi
5817                 fi
5818         fi
5819 fi
5820 nm_extract="$com"
5821 if $test -f /lib/syscalls.exp; then
5822         echo " "
5823         echo "Also extracting names from /lib/syscalls.exp for good ole AIX..." >&4
5824         $sed -n 's/^\([^        ]*\)[   ]*syscall[0-9]*$/\1/p' /lib/syscalls.exp >>libc.list
5825 fi
5826 ;;
5827 esac
5828 $rm -f libnames libpath
5829
5830 : see if dld is available
5831 set dld.h i_dld
5832 eval $inhdr
5833
5834 : is a C symbol defined?
5835 csym='tlook=$1;
5836 case "$3" in
5837 -v) tf=libc.tmp; tc=""; tdc="";;
5838 -a) tf=libc.tmp; tc="[0]"; tdc="[]";;
5839 *) tlook="^$1\$"; tf=libc.list; tc="()"; tdc="()";;
5840 esac;
5841 tx=yes;
5842 case "$reuseval-$4" in
5843 true-) ;;
5844 true-*) tx=no; eval "tval=\$$4"; case "$tval" in "") tx=yes;; esac;;
5845 esac;
5846 case "$tx" in
5847 yes)
5848         case "$runnm" in
5849         true)
5850                 if $contains $tlook $tf >/dev/null 2>&1;
5851                 then tval=true;
5852                 else tval=false;
5853                 fi;;
5854         *)
5855                 echo "int main() { extern short $1$tdc; printf(\"%hd\", $1$tc); }" > t.c;
5856                 if $cc $optimize $ccflags $ldflags -o t t.c $libs >/dev/null 2>&1;
5857                 then tval=true;
5858                 else tval=false;
5859                 fi;
5860                 $rm -f t t.c;;
5861         esac;;
5862 *)
5863         case "$tval" in
5864         $define) tval=true;;
5865         *) tval=false;;
5866         esac;;
5867 esac;
5868 eval "$2=$tval"'
5869
5870 : define an is-in-libc? function
5871 inlibc='echo " "; td=$define; tu=$undef;
5872 sym=$1; var=$2; eval "was=\$$2";
5873 tx=yes;
5874 case "$reuseval$was" in
5875 true) ;;
5876 true*) tx=no;;
5877 esac;
5878 case "$tx" in
5879 yes)
5880         set $sym tres -f;
5881         eval $csym;
5882         case "$tres" in
5883         true)
5884                 echo "$sym() found." >&4;
5885                 case "$was" in $undef) . ./whoa; esac; eval "$var=\$td";;
5886         *)
5887                 echo "$sym() NOT found." >&4;
5888                 case "$was" in $define) . ./whoa; esac; eval "$var=\$tu";;
5889         esac;;
5890 *)
5891         case "$was" in
5892         $define) echo "$sym() found." >&4;;
5893         *) echo "$sym() NOT found." >&4;;
5894         esac;;
5895 esac'
5896
5897 : see if dlopen exists
5898 xxx_runnm="$runnm"
5899 runnm=false
5900 set dlopen d_dlopen
5901 eval $inlibc
5902 runnm="$xxx_runnm"
5903
5904 : determine which dynamic loading, if any, to compile in
5905 echo " "
5906 dldir="ext/DynaLoader"
5907 case "$usedl" in
5908 $define|y|true)
5909         dflt='y'
5910         usedl="$define"
5911         ;;
5912 $undef|n|false)
5913         dflt='n'
5914         usedl="$undef"
5915         ;;
5916 *) 
5917         dflt='n'
5918         case "$d_dlopen" in
5919             $define) dflt='y' ;;
5920         esac
5921         case "$i_dld" in
5922             $define) dflt='y' ;;
5923         esac
5924         : Does a dl_xxx.xs file exist for this operating system
5925         $test -f $rsrc/$dldir/dl_${osname}.xs && dflt='y'
5926         ;;
5927 esac
5928 rp="Do you wish to use dynamic loading?"
5929 . ./myread
5930 usedl="$ans"
5931 case "$ans" in
5932 y*) usedl="$define"
5933         case "$dlsrc" in
5934         '')
5935                 if $test -f $rsrc/$dldir/dl_${osname}.xs ; then
5936                         dflt="$dldir/dl_${osname}.xs"
5937                 elif $test "$d_dlopen" = "$define" ; then
5938                         dflt="$dldir/dl_dlopen.xs"
5939                 elif $test "$i_dld" = "$define" ; then
5940                         dflt="$dldir/dl_dld.xs"
5941                 else
5942                         dflt=''
5943                 fi
5944                 ;;
5945         *)      dflt="$dldir/$dlsrc"
5946                 ;;
5947         esac
5948     echo "The following dynamic loading files are available:"
5949         : Can not go over to $dldir because getfile has path hard-coded in.
5950         tdir=`pwd`; cd $rsrc; $ls -C $dldir/dl*.xs; cd $tdir
5951         rp="Source file to use for dynamic loading"
5952         fn="fne"
5953         gfpth="$src"
5954         . ./getfile
5955         usedl="$define"
5956         : emulate basename
5957         dlsrc=`echo $ans | $sed -e 's@.*/\([^/]*\)$@\1@'`
5958
5959         $cat << EOM
5960
5961 Some systems may require passing special flags to $cc -c to
5962 compile modules that will be used to create a shared library.
5963 To use no flags, say "none".
5964
5965 EOM
5966     case "$cccdlflags" in
5967     '') case "$gccversion" in
5968                 '') case "$osname" in
5969                         hpux)   dflt='+z' ;;
5970                         next)   dflt='none' ;;
5971                         irix*)  dflt='-KPIC' ;;
5972                         svr4*|esix*|solaris) dflt='-KPIC' ;;
5973                         sunos)  dflt='-pic' ;;
5974                         *)      dflt='none' ;;
5975                     esac
5976                         ;;
5977                 *)  case "$osname" in
5978                         svr4*|esix*|solaris) dflt='-fPIC' ;;
5979                         *)      dflt='-fpic' ;;
5980                     esac ;;
5981             esac ;;
5982         ' ') dflt='none' ;;
5983     *)  dflt="$cccdlflags" ;;
5984     esac
5985     rp="Any special flags to pass to $cc -c to compile shared library modules?"
5986     . ./myread
5987     case "$ans" in
5988     none) cccdlflags=' ' ;;
5989     *) cccdlflags="$ans" ;;
5990     esac
5991
5992     cat << EOM
5993
5994 Some systems use ld to create libraries that can be dynamically loaded,
5995 while other systems (such as those using ELF) use $cc.
5996
5997 EOM
5998         case "$ld" in
5999         '')     $cat >try.c <<'EOM'
6000 /* Test for whether ELF binaries are produced */
6001 #include <fcntl.h>
6002 #include <stdlib.h>
6003 int main() {
6004         char b[4];
6005         int i = open("a.out",O_RDONLY);
6006         if(i == -1) 
6007                 exit(1); /* fail */
6008         if(read(i,b,4)==4 && b[0]==127 && b[1]=='E' && b[2]=='L' && b[3]=='F')
6009                 exit(0); /* succeed (yes, it's ELF) */
6010         else
6011                 exit(1); /* fail */
6012 }
6013 EOM
6014                 if $cc $ccflags try.c >/dev/null 2>&1 && ./a.out; then
6015                         cat <<EOM
6016 You appear to have ELF support.  I'll use $cc to build dynamic libraries.
6017 EOM
6018                         dflt="$cc"
6019                 else
6020                         echo "I'll use ld to build dynamic libraries."
6021                         dflt='ld'
6022                 fi
6023                 rm -f try.c a.out
6024                 ;;
6025         *)      dflt="$ld"
6026                 ;;
6027         esac
6028
6029     rp="What command should be used to create dynamic libraries?"
6030     . ./myread
6031         ld="$ans"
6032
6033     cat << EOM
6034
6035 Some systems may require passing special flags to $ld to create a
6036 library that can be dynamically loaded.  If your ld flags include
6037 -L/other/path options to locate libraries outside your loader's normal
6038 search path, you may need to specify those -L options here as well.  To
6039 use no flags, say "none".
6040
6041 EOM
6042     case "$lddlflags" in
6043     '') case "$osname" in
6044                         beos) dflt='-nostart' ;;
6045                         hpux)  dflt='-b' ;;
6046                         linux|irix*)    dflt='-shared' ;;
6047                         next)  dflt='none' ;;
6048                         solaris) dflt='-G' ;;
6049                         sunos) dflt='-assert nodefinitions' ;;
6050                         svr4*|esix*) dflt="-G $ldflags" ;;
6051                 *)     dflt='none' ;;
6052                         esac
6053                         ;;
6054     *) dflt="$lddlflags" ;;
6055     esac
6056
6057         : Try to guess additional flags to pick up local libraries.
6058         : Be careful not to append to a plain 'none'
6059         case "$dflt" in
6060         none) dflt='' ;;
6061         esac
6062         for thisflag in $ldflags; do
6063                 case "$thisflag" in
6064                 -L*)
6065                         case " $dflt " in
6066                         *" $thisflag "*) ;;
6067                         *) dflt="$dflt $thisflag" ;;
6068                         esac
6069                         ;;
6070                 esac
6071         done
6072
6073         case "$dflt" in
6074         ''|' ') dflt='none' ;;
6075         esac
6076
6077     rp="Any special flags to pass to $ld to create a dynamically loaded library?"
6078     . ./myread
6079     case "$ans" in
6080     none) lddlflags=' ' ;;
6081     *) lddlflags="$ans" ;;
6082     esac
6083
6084         cat <<EOM
6085
6086 Some systems may require passing special flags to $cc to indicate that
6087 the resulting executable will use dynamic linking.  To use no flags,
6088 say "none".
6089
6090 EOM
6091     case "$ccdlflags" in
6092     '') case "$osname" in
6093                 hpux)   dflt='-Wl,-E' ;;
6094                 linux)  dflt='-rdynamic' ;;
6095                 next)   dflt='none' ;;
6096                 sunos)  dflt='none' ;;
6097                 *)      dflt='none' ;;
6098             esac ;;
6099     ' ')  dflt='none' ;;
6100     *)  dflt="$ccdlflags" ;;
6101     esac
6102     rp="Any special flags to pass to $cc to use dynamic loading?"
6103     . ./myread
6104     case "$ans" in
6105     none) ccdlflags=' ' ;;
6106     *) ccdlflags="$ans" ;;
6107     esac
6108     ;;
6109 *)  usedl="$undef"
6110         ld='ld'
6111     dlsrc='dl_none.xs'
6112     lddlflags=''
6113     ccdlflags=''
6114     ;;
6115 esac
6116
6117 also=''
6118 case "$usedl" in
6119 $undef)
6120         # No dynamic loading being used, so don't bother even to prompt.
6121         useshrplib='false'
6122         ;;
6123 *)      case "$useshrplib" in
6124         '')     case "$osname" in
6125                 svr4*|dgux|dynixptx|esix|powerux|beos|cygwin*)
6126                         dflt=y
6127                         also='Building a shared libperl is required for dynamic loading to work on your system.'
6128                         ;;
6129                 next*)
6130                         case "$osvers" in
6131                         4*)     dflt=y
6132                                 also='Building a shared libperl is needed for MAB support.'
6133                                 ;;
6134                         *)      dflt=n
6135                                 ;;
6136                         esac
6137                         ;;
6138                 *)      dflt=n
6139                         ;;
6140                 esac
6141                 ;;
6142         $define|true|[Yy]*)
6143                 dflt=y
6144                 ;;
6145         *)      dflt=n
6146                 ;;
6147         esac
6148         $cat << EOM
6149
6150 The perl executable is normally obtained by linking perlmain.c with
6151 libperl${_a}, any static extensions (usually just DynaLoader), and
6152 any other libraries needed on this system (such as -lm, etc.).  Since
6153 your system supports dynamic loading, it is probably possible to build
6154 a shared libperl.$so.  If you will have more than one executable linked
6155 to libperl.$so, this will significantly reduce the size of each
6156 executable, but it may have a noticeable affect on performance.  The
6157 default is probably sensible for your system.
6158 $also
6159
6160 EOM
6161         rp="Build a shared libperl.$so (y/n)"
6162         . ./myread
6163         case "$ans" in
6164         true|$define|[Yy]*)
6165                 useshrplib='true'  ;;
6166         *)      useshrplib='false' ;;
6167         esac
6168         ;;
6169 esac
6170
6171 case "$useshrplib" in
6172 true)
6173         case "$libperl" in
6174         '')
6175                 # Figure out a good name for libperl.so.  Since it gets stored in
6176                 # a version-specific architecture-dependent library, the version
6177                 # number isn't really that important, except for making cc/ld happy.
6178                 #
6179                 # A name such as libperl.so.3.1
6180                 majmin="libperl.$so.$patchlevel.$subversion"
6181                 # A name such as libperl.so.301
6182                 majonly=`echo $patchlevel $subversion |
6183                         $awk '{printf "%d%02d", $1, $2}'`
6184                 majonly=libperl.$so.$majonly
6185                 # I'd prefer to keep the os-specific stuff here to a minimum, and
6186                 # rely on figuring it out from the naming of libc.
6187                 case "${osname}${osvers}" in
6188                 next4*)
6189                         dflt=libperl.5.$so
6190                         # XXX How handle the --version stuff for MAB?
6191                         ;;
6192                 linux*)  # ld won't link with a bare -lperl otherwise.
6193                         dflt=libperl.$so
6194                         ;;
6195                 cygwin*) # include version
6196                         dflt=`echo libperl$version | sed -e 's/\./_/g'`$lib_ext
6197                         ;;
6198                 *)      # Try to guess based on whether libc has major.minor.
6199                         case "$libc" in
6200                         *libc.$so.[0-9]*.[0-9]*) dflt=$majmin ;;
6201                         *libc.$so.[0-9]*) dflt=$majonly ;;
6202                         *)      dflt=libperl.$so ;;
6203                         esac
6204                         ;;
6205                 esac
6206                 ;;
6207         *)      dflt=$libperl
6208                 ;;
6209         esac
6210         cat << EOM
6211
6212 I need to select a good name for the shared libperl.  If your system uses
6213 library names with major and minor numbers, then you might want something
6214 like $majmin.  Alternatively, if your system uses a single version
6215 number for shared libraries, then you might want to use $majonly.
6216 Or, your system might be quite happy with a simple libperl.$so.
6217
6218 Since the shared libperl will get installed into a version-specific
6219 architecture-dependent directory, the version number of the shared perl
6220 library probably isn't important, so the default should be o.k.
6221
6222 EOM
6223         rp='What name do you want to give to the shared libperl?'
6224         . ./myread
6225         libperl=$ans
6226         echo "Ok, I'll use $libperl"
6227         ;;
6228 *)
6229         libperl="libperl${_a}"
6230         ;;
6231 esac
6232
6233 # Detect old use of shrpdir via undocumented Configure -Dshrpdir
6234 case "$shrpdir" in
6235 '') ;;
6236 *)      $cat >&4 <<EOM
6237 WARNING:  Use of the shrpdir variable for the installation location of
6238 the shared $libperl is not supported.  It was never documented and
6239 will not work in this version.  Let me (perlbug@perl.com)
6240 know of any problems this may cause.
6241
6242 EOM
6243         case "$shrpdir" in
6244         "$archlibexp/CORE")
6245                 $cat >&4 <<EOM
6246 But your current setting of $shrpdir is
6247 the default anyway, so it's harmless.
6248 EOM
6249                 ;;
6250         *)
6251                 $cat >&4 <<EOM
6252 Further, your current attempted setting of $shrpdir
6253 conflicts with the value of $archlibexp/CORE
6254 that installperl will use.
6255 EOM
6256                 ;;
6257         esac
6258         ;;
6259 esac
6260
6261 # How will the perl executable find the installed shared $libperl?
6262 # Add $xxx to ccdlflags.
6263 # If we can't figure out a command-line option, use $shrpenv to
6264 # set env LD_RUN_PATH.  The main perl makefile uses this.
6265 shrpdir=$archlibexp/CORE
6266 xxx=''
6267 tmp_shrpenv=''
6268 if "$useshrplib"; then
6269     case "$osname" in 
6270         aix)
6271                 # We'll set it in Makefile.SH...
6272                 ;;
6273         solaris|netbsd)
6274                 xxx="-R $shrpdir"
6275                 ;;
6276         freebsd)
6277                 xxx="-Wl,-R$shrpdir"
6278                 ;;
6279         linux|irix*|dec_osf)
6280                 xxx="-Wl,-rpath,$shrpdir"
6281                 ;;
6282         next)
6283                 # next doesn't like the default...
6284                 ;;
6285         beos)
6286                 # beos doesn't like the default, either.
6287                 ;;
6288         hpux*)
6289                 # hpux doesn't like the default, either.
6290                 tmp_shrpenv="env LDOPTS=\"+s +b${shrpdir}\""
6291                 ;;
6292         *)
6293                 tmp_shrpenv="env LD_RUN_PATH=$shrpdir"
6294                 ;;
6295         esac
6296         case "$xxx" in
6297         '') ;;
6298         *)      
6299                 # Only add $xxx if it isn't already in ccdlflags.
6300                 case " $ccdlflags " in
6301                 *" $xxx "*)     ;;
6302                 *)      ccdlflags="$ccdlflags $xxx"
6303                         cat <<EOM >&4
6304
6305 Adding $xxx to the flags
6306 passed to $ld so that the perl executable will find the 
6307 installed shared $libperl.
6308
6309 EOM
6310                         ;;
6311                 esac
6312                 ;;
6313         esac
6314 fi
6315 # Fix ccdlflags in AIX for building external extensions.
6316 # (For building Perl itself bare -bE:perl.exp is needed,
6317 #  Makefile.SH takes care of this.)
6318 case "$osname" in
6319 aix) ccdlflags="$ccdlflags -bE:$installarchlib/CORE/perl.exp" ;;
6320 esac
6321 # Respect a hint or command-line value.
6322 case "$shrpenv" in
6323 '') shrpenv="$tmp_shrpenv" ;;
6324 esac
6325 case "$ldlibpthname" in
6326 '')     ldlibpthname=LD_LIBRARY_PATH ;;
6327 none)   ldlibpthname='' ;;
6328 esac
6329
6330 : determine where manual pages go
6331 set man1dir man1dir none
6332 eval $prefixit
6333 $cat <<EOM
6334
6335 $spackage has manual pages available in source form.
6336 EOM
6337 case "$nroff" in
6338 nroff)
6339         echo "However, you don't have nroff, so they're probably useless to you."
6340         case "$man1dir" in
6341         '') man1dir="none";;
6342         esac;;
6343 esac
6344 echo "If you don't want the manual sources installed, answer 'none'."
6345 case "$man1dir" in
6346 ' ') dflt=none
6347         ;;
6348 '')
6349         lookpath="$prefixexp/man/man1 $prefixexp/man/l_man/man1"
6350         lookpath="$lookpath $prefixexp/man/p_man/man1"
6351         lookpath="$lookpath $prefixexp/man/u_man/man1"
6352         lookpath="$lookpath $prefixexp/man/man.1"
6353         case "$sysman" in
6354         */?_man*)       dflt=`./loc . $prefixexp/l_man/man1 $lookpath` ;;
6355         *)      dflt=`./loc . $prefixexp/man/man1 $lookpath` ;;
6356         esac
6357         set dflt
6358         eval $prefixup
6359         ;;
6360 *)  dflt="$man1dir"
6361         ;;
6362 esac
6363 echo " "
6364 fn=dn+~
6365 rp="Where do the main $spackage manual pages (source) go?"
6366 . ./getfile
6367 if $test "X$man1direxp" != "X$ansexp"; then
6368         installman1dir=''
6369 fi
6370 man1dir="$ans"
6371 man1direxp="$ansexp"
6372 case "$man1dir" in
6373 '')     man1dir=' '
6374         installman1dir='';;
6375 esac
6376
6377 : Change installation prefix, if necessary.
6378 if $test X"$prefix" != X"$installprefix"; then
6379         installman1dir=`echo $man1direxp | $sed "s#^$prefix#$installprefix#"`
6380 else
6381         installman1dir="$man1direxp"
6382 fi
6383
6384 : What suffix to use on installed man pages
6385
6386 case "$man1dir" in
6387 ' ')
6388         man1ext='0'
6389         ;;
6390 *)
6391         rp="What suffix should be used for the main $spackage man pages?"
6392         case "$man1ext" in
6393         '')     case "$man1dir" in
6394                 *1)  dflt=1 ;;
6395                 *1p) dflt=1p ;;
6396                 *1pm) dflt=1pm ;;
6397                 *l) dflt=l;;
6398                 *n) dflt=n;;
6399                 *o) dflt=o;;
6400                 *p) dflt=p;;
6401                 *C) dflt=C;;
6402                 *L) dflt=L;;
6403                 *L1) dflt=L1;;
6404                 *) dflt=1;;
6405                 esac
6406                 ;;
6407         *)      dflt="$man1ext";;
6408         esac
6409         . ./myread
6410         man1ext="$ans"
6411         ;;
6412 esac
6413
6414 : see if we can have long filenames
6415 echo " "
6416 rmlist="$rmlist /tmp/cf$$"
6417 $test -d /tmp/cf$$ || mkdir /tmp/cf$$
6418 first=123456789abcdef
6419 second=/tmp/cf$$/$first
6420 $rm -f $first $second
6421 if (echo hi >$first) 2>/dev/null; then
6422         if $test -f 123456789abcde; then
6423                 echo 'You cannot have filenames longer than 14 characters.  Sigh.' >&4
6424                 val="$undef"
6425         else
6426                 if (echo hi >$second) 2>/dev/null; then
6427                         if $test -f /tmp/cf$$/123456789abcde; then
6428                                 $cat <<'EOM'
6429 That's peculiar... You can have filenames longer than 14 characters, but only
6430 on some of the filesystems.  Maybe you are using NFS.  Anyway, to avoid problems
6431 I shall consider your system cannot support long filenames at all.
6432 EOM
6433                                 val="$undef"
6434                         else
6435                                 echo 'You can have filenames longer than 14 characters.' >&4
6436                                 val="$define"
6437                         fi
6438                 else
6439                         $cat <<'EOM'
6440 How confusing! Some of your filesystems are sane enough to allow filenames
6441 longer than 14 characters but some others like /tmp can't even think about them.
6442 So, for now on, I shall assume your kernel does not allow them at all.
6443 EOM
6444                         val="$undef"
6445                 fi
6446         fi
6447 else
6448         $cat <<'EOM'
6449 You can't have filenames longer than 14 chars.  You can't even think about them!
6450 EOM
6451         val="$undef"
6452 fi 
6453 set d_flexfnam
6454 eval $setvar
6455 $rm -rf /tmp/cf$$ 123456789abcde*
6456
6457 : determine where library module manual pages go
6458 set man3dir man3dir none
6459 eval $prefixit
6460 $cat <<EOM
6461
6462 $spackage has manual pages for many of the library modules.
6463 EOM
6464
6465 case "$nroff" in
6466 nroff)
6467         $cat <<'EOM'
6468 However, you don't have nroff, so they're probably useless to you.
6469 EOM
6470         case "$man3dir" in
6471         '') man3dir="none";;
6472         esac;;
6473 esac
6474
6475 case "$d_flexfnam" in
6476 undef)
6477         $cat <<'EOM'
6478 However, your system can't handle the long file names like File::Basename.3. 
6479 EOM
6480         case "$man3dir" in
6481         '') man3dir="none";;
6482         esac;;
6483 esac
6484
6485 echo "If you don't want the manual sources installed, answer 'none'."
6486 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6487 case "$man3dir" in
6488 '')     dflt=`echo $man1dir | $sed -e 's/man1/man3/g' -e 's/man\.1/man\.3/g'`
6489         if $test -d "$privlib/man/man3"; then
6490                 cat <<EOM >&4
6491
6492 WARNING:  Previous versions of perl installed man3 pages into
6493 $privlib/man/man3.  This version will suggest a 
6494 new default of $dflt.  
6495 EOM
6496                 tdflt=$dflt
6497                 dflt='n'
6498                 rp='Do you wish to preserve the old behavior?(y/n)'
6499                 . ./myread
6500                 case "$ans" in
6501                 y*) dflt="$privlib/man/man3" ;;
6502                 *)  dflt=$tdflt ;;
6503                 esac
6504     fi
6505         ;;
6506 ' ') dflt=none;;
6507 *)      dflt="$man3dir" ;;
6508 esac
6509 echo " "
6510 fn=dn+~
6511 rp="Where do the $package library man pages (source) go?"
6512 . ./getfile
6513 man3dir="$ans"
6514 man3direxp="$ansexp"
6515 case "$man1dir" in
6516 '')     man3dir=' '
6517         installman3dir='';;
6518 esac
6519
6520 : Change installation prefix, if necessary.
6521 if $test X"$prefix" != X"$installprefix"; then
6522         installman3dir=`echo $man3direxp | $sed "s#^$prefix#$installprefix#"`
6523 else
6524         installman3dir="$man3direxp"
6525 fi
6526
6527 : What suffix to use on installed man pages
6528 case "$man3dir" in
6529 ' ')
6530         man3ext='0'
6531         ;;
6532 *)
6533         rp="What suffix should be used for the $package library man pages?"
6534         case "$man3ext" in
6535         '')     case "$man3dir" in
6536                 *3)  dflt=3 ;;
6537                 *3p) dflt=3p ;;
6538                 *3pm) dflt=3pm ;;
6539                 *l) dflt=l;;
6540                 *n) dflt=n;;
6541                 *o) dflt=o;;
6542                 *p) dflt=p;;
6543                 *C) dflt=C;;
6544                 *L) dflt=L;;
6545                 *L3) dflt=L3;;
6546                 *) dflt=3;;
6547                 esac
6548                 ;;
6549         *)      dflt="$man3ext";;
6550         esac
6551         . ./myread
6552         man3ext="$ans"
6553         ;;
6554 esac
6555
6556 : see if we have to deal with yellow pages, now NIS.
6557 if $test -d /usr/etc/yp || $test -d /etc/yp; then
6558         if $test -f /usr/etc/nibindd; then
6559                 echo " "
6560                 echo "I'm fairly confident you're on a NeXT."
6561                 echo " "
6562                 rp='Do you get the hosts file via NetInfo?'
6563                 dflt=y
6564                 case "$hostcat" in
6565                 nidump*) ;;
6566                 '') ;;
6567                 *) dflt=n;;
6568                 esac
6569                 . ./myread
6570                 case "$ans" in
6571                 y*) hostcat='nidump hosts .';;
6572                 *)      case "$hostcat" in
6573                         nidump*) hostcat='';;
6574                         esac
6575                         ;;
6576                 esac
6577         fi
6578         case "$hostcat" in
6579         nidump*) ;;
6580         *)
6581                 case "$hostcat" in
6582                 *ypcat*) dflt=y;;
6583                 '') if $contains '^\+' /etc/passwd >/dev/null 2>&1; then
6584                                 dflt=y
6585                         else
6586                                 dflt=n
6587                         fi;;
6588                 *) dflt=n;;
6589                 esac
6590                 echo " "
6591                 rp='Are you getting the hosts file via yellow pages?'
6592                 . ./myread
6593                 case "$ans" in
6594                 y*) hostcat='ypcat hosts';;
6595                 *) hostcat='cat /etc/hosts';;
6596                 esac
6597                 ;;
6598         esac
6599 fi
6600 case "$hostcat" in
6601 '') test -f /etc/hosts && hostcat='cat /etc/hosts';;
6602 esac
6603 case "$groupcat" in
6604 '') test -f /etc/group && groupcat='cat /etc/group';;
6605 esac
6606 case "$passcat" in
6607 '') test -f /etc/passwd && passcat='cat /etc/passwd';;
6608 esac
6609
6610 : now get the host name
6611 echo " "
6612 echo "Figuring out host name..." >&4
6613 case "$myhostname" in
6614 '') cont=true
6615         echo 'Maybe "hostname" will work...'
6616         if tans=`sh -c hostname 2>&1` ; then
6617                 myhostname=$tans
6618                 phostname=hostname
6619                 cont=''
6620         fi
6621         ;;
6622 *) cont='';;
6623 esac
6624 if $test "$cont"; then
6625         if ./xenix; then
6626                 echo 'Oh, dear.  Maybe "/etc/systemid" is the key...'
6627                 if tans=`cat /etc/systemid 2>&1` ; then
6628                         myhostname=$tans
6629                         phostname='cat /etc/systemid'
6630                         echo "Whadyaknow.  Xenix always was a bit strange..."
6631                         cont=''
6632                 fi
6633         elif $test -r /etc/systemid; then
6634                 echo "(What is a non-Xenix system doing with /etc/systemid?)"
6635         fi
6636 fi
6637 if $test "$cont"; then
6638         echo 'No, maybe "uuname -l" will work...'
6639         if tans=`sh -c 'uuname -l' 2>&1` ; then
6640                 myhostname=$tans
6641                 phostname='uuname -l'
6642         else
6643                 echo 'Strange.  Maybe "uname -n" will work...'
6644                 if tans=`sh -c 'uname -n' 2>&1` ; then
6645                         myhostname=$tans
6646                         phostname='uname -n'
6647                 else
6648                         echo 'Oh well, maybe I can mine it out of whoami.h...'
6649                         if tans=`sh -c $contains' sysname $usrinc/whoami.h' 2>&1` ; then
6650                                 myhostname=`echo "$tans" | $sed 's/^.*"\(.*\)"/\1/'`
6651                                 phostname="sed -n -e '"'/sysname/s/^.*\"\\(.*\\)\"/\1/{'"' -e p -e q -e '}' <$usrinc/whoami.h"
6652                         else
6653                                 case "$myhostname" in
6654                                 '') echo "Does this machine have an identity crisis or something?"
6655                                         phostname='';;
6656                                 *)
6657                                         echo "Well, you said $myhostname before..."
6658                                         phostname='echo $myhostname';;
6659                                 esac
6660                         fi
6661                 fi
6662         fi
6663 fi
6664 : you do not want to know about this
6665 set $myhostname
6666 myhostname=$1
6667
6668 : verify guess
6669 if $test "$myhostname" ; then
6670         dflt=y
6671         rp='Your host name appears to be "'$myhostname'".'" Right?"
6672         . ./myread
6673         case "$ans" in
6674         y*) ;;
6675         *) myhostname='';;
6676         esac
6677 fi
6678
6679 : bad guess or no guess
6680 while $test "X$myhostname" = X ; do
6681         dflt=''
6682         rp="Please type the (one word) name of your host:"
6683         . ./myread
6684         myhostname="$ans"
6685 done
6686
6687 : translate upper to lower if necessary
6688 case "$myhostname" in
6689 *[A-Z]*)
6690         echo "(Normalizing case in your host name)"
6691         myhostname=`echo $myhostname | ./tr '[A-Z]' '[a-z]'`
6692         ;;
6693 esac
6694
6695 case "$myhostname" in
6696 *.*)
6697         dflt=`expr "X$myhostname" : "X[^.]*\(\..*\)"`
6698         myhostname=`expr "X$myhostname" : "X\([^.]*\)\."`
6699         echo "(Trimming domain name from host name--host name is now $myhostname)"
6700         ;;
6701 *) case "$mydomain" in
6702         '')
6703                 {
6704                         test "X$hostcat" = "Xypcat hosts" &&
6705                         ypmatch "$myhostname" hosts 2>/dev/null |\
6706                                 $sed -e 's/[     ]*#.*//; s/$/ /' > hosts && \
6707                         $test -s hosts
6708                 } || {
6709                         test "X$hostcat" != "X" &&
6710                         $hostcat | $sed -n -e "s/[       ]*#.*//; s/\$/ /
6711                                         /[       ]$myhostname[  . ]/p" > hosts
6712                 }
6713                 tmp_re="[       . ]"
6714                 $test x`$awk "/[0-9].*[  ]$myhostname$tmp_re/ { sum++ }
6715                              END { print sum }" hosts` = x1 || tmp_re="[         ]"
6716                 dflt=.`$awk "/[0-9].*[   ]$myhostname$tmp_re/ {for(i=2; i<=NF;i++) print \\\$i}" \
6717                         hosts | $sort | $uniq | \
6718                         $sed -n -e "s/$myhostname\.\([-a-zA-Z0-9_.]\)/\1/p"`
6719                 case `$echo X$dflt` in
6720                 X*\ *)  echo "(Several hosts in /etc/hosts matched hostname)"
6721                         dflt=.
6722                         ;;
6723                 X.) echo "(You do not have fully-qualified names in /etc/hosts)"
6724                         ;;
6725                 esac
6726                 case "$dflt" in
6727                 .)
6728                         tans=`./loc resolv.conf X /etc /usr/etc`
6729                         if $test -f "$tans"; then
6730                                 echo "(Attempting domain name extraction from $tans)"
6731                                 dflt=.`$sed -n -e 's/   / /g' \
6732                                   -e 's/^search  *\([^ ]*\).*/\1/p' $tans \
6733                                   | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
6734                                 case "$dflt" in
6735                                 .) dflt=.`$sed -n -e 's/        / /g' \
6736                                      -e 's/^domain  *\([^ ]*\).*/\1/p' $tans \
6737                                      | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
6738                                         ;;
6739                                 esac
6740                         fi
6741                         ;;
6742                 esac
6743                 case "$dflt" in
6744                 .) echo "(No help from resolv.conf either -- attempting clever guess)"
6745                         dflt=.`sh -c domainname 2>/dev/null`
6746                         case "$dflt" in
6747                         '') dflt='.';;
6748                         .nis.*|.yp.*|.main.*) dflt=`echo $dflt | $sed -e 's/^\.[^.]*//'`;;
6749                         esac
6750                         ;;
6751                 esac
6752                 case "$dflt" in
6753                 .) echo "(Lost all hope -- silly guess then)"
6754                         dflt='.uucp'
6755                         ;;
6756                 esac
6757                 $rm -f hosts
6758                 ;;
6759         *) dflt="$mydomain";;
6760         esac;;
6761 esac
6762 echo " "
6763 rp="What is your domain name?"
6764 . ./myread
6765 tans="$ans"
6766 case "$ans" in
6767 '') ;;
6768 .*) ;;
6769 *) tans=".$tans";;
6770 esac
6771 mydomain="$tans"
6772
6773 : translate upper to lower if necessary
6774 case "$mydomain" in
6775 *[A-Z]*)
6776         echo "(Normalizing case in your domain name)"
6777         mydomain=`echo $mydomain | ./tr '[A-Z]' '[a-z]'`
6778         ;;
6779 esac
6780
6781 : a little sanity check here
6782 case "$phostname" in
6783 '') ;;
6784 *)
6785         case `$phostname | ./tr '[A-Z]' '[a-z]'` in
6786         $myhostname$mydomain|$myhostname) ;;
6787         *)
6788                 case "$phostname" in
6789                 sed*)
6790                         echo "(That doesn't agree with your whoami.h file, by the way.)"
6791                         ;;
6792                 *)
6793                         echo "(That doesn't agree with your $phostname command, by the way.)"
6794                         ;;
6795                 esac
6796         ;;
6797         esac
6798         ;;
6799 esac
6800
6801 $cat <<EOM
6802
6803 I need to get your e-mail address in Internet format if possible, i.e.
6804 something like user@host.domain. Please answer accurately since I have
6805 no easy means to double check it. The default value provided below
6806 is most probably close to the reality but may not be valid from outside
6807 your organization...
6808
6809 EOM
6810 cont=x
6811 while test "$cont"; do
6812         case "$cf_email" in
6813         '') dflt="$cf_by@$myhostname$mydomain";;
6814         *) dflt="$cf_email";;
6815         esac
6816         rp='What is your e-mail address?'
6817         . ./myread
6818         cf_email="$ans"
6819         case "$cf_email" in
6820         *@*.*) cont='' ;;
6821         *)
6822                 rp='Address does not look like an Internet one.  Use it anyway?'
6823                 case "$fastread" in
6824                 yes) dflt=y ;;
6825                 *) dflt=n ;;
6826                 esac
6827                 . ./myread
6828                 case "$ans" in
6829                 y*) cont='' ;;
6830                 *) echo " " ;;
6831                 esac
6832                 ;;
6833         esac
6834 done
6835
6836 $cat <<EOM
6837
6838 If you or somebody else will be maintaining perl at your site, please
6839 fill in the correct e-mail address here so that they may be contacted
6840 if necessary. Currently, the "perlbug" program included with perl
6841 will send mail to this address in addition to perlbug@perl.com. You may
6842 enter "none" for no administrator.
6843
6844 EOM
6845 case "$perladmin" in
6846 '') dflt="$cf_email";;
6847 *) dflt="$perladmin";;
6848 esac
6849 rp='Perl administrator e-mail address'
6850 . ./myread
6851 perladmin="$ans"
6852
6853 : figure out how to guarantee perl startup
6854 case "$startperl" in
6855 '')
6856         case "$sharpbang" in
6857         *!)
6858                 $cat <<EOH
6859
6860 I can use the #! construct to start perl on your system. This will
6861 make startup of perl scripts faster, but may cause problems if you
6862 want to share those scripts and perl is not in a standard place
6863 ($binexp/perl) on all your platforms. The alternative is to force
6864 a shell by starting the script with a single ':' character.
6865
6866 EOH
6867                 dflt="$binexp/perl"
6868                 rp='What shall I put after the #! to start up perl ("none" to not use #!)?'
6869                 . ./myread
6870                 case "$ans" in
6871                 none)   startperl=": # use perl";;
6872                 *)      startperl="#!$ans"
6873                         if $test 30 -lt `echo "$ans" | wc -c`; then
6874                                 $cat >&4 <<EOM
6875
6876 WARNING:  Some systems limit the #! command to 32 characters.
6877 If you experience difficulty running Perl scripts with #!, try
6878 installing Perl in a directory with a shorter pathname.
6879
6880 EOM
6881                         fi ;;
6882                 esac
6883                 ;;
6884         *) startperl=": # use perl"
6885                 ;;
6886         esac
6887         ;;
6888 esac
6889 echo "I'll use $startperl to start perl scripts."
6890
6891 : figure best path for perl in scripts
6892 case "$perlpath" in
6893 '')
6894         perlpath="$binexp/perl"
6895         case "$startperl" in
6896         *!*) ;;
6897         *)
6898                 $cat <<EOH
6899
6900 I will use the "eval 'exec'" idiom to start Perl on your system.
6901 I can use the full path of your Perl binary for this purpose, but
6902 doing so may cause problems if you want to share those scripts and
6903 Perl is not always in a standard place ($binexp/perl).
6904
6905 EOH
6906                 dflt="$binexp/perl"
6907                 rp="What path shall I use in \"eval 'exec'\"?"
6908                 . ./myread
6909                 perlpath="$ans"
6910                 ;;
6911         esac
6912         ;;
6913 esac
6914 case "$startperl" in
6915 *!*)    ;;
6916 *)      echo "I'll use $perlpath in \"eval 'exec'\"" ;;
6917 esac
6918
6919 : determine where public executable scripts go
6920 set scriptdir scriptdir
6921 eval $prefixit
6922 case "$scriptdir" in
6923 '')
6924         dflt="$bin"
6925         : guess some guesses
6926         $test -d /usr/share/scripts && dflt=/usr/share/scripts
6927         $test -d /usr/share/bin     && dflt=/usr/share/bin
6928         $test -d /usr/local/script  && dflt=/usr/local/script
6929         $test -d /usr/local/scripts && dflt=/usr/local/scripts
6930         $test -d $prefixexp/script  && dflt=$prefixexp/script
6931         set dflt
6932         eval $prefixup
6933         ;;
6934 *)  dflt="$scriptdir"
6935         ;;
6936 esac
6937 $cat <<EOM
6938  
6939 Some installations have a separate directory just for executable scripts so
6940 that they can mount it across multiple architectures but keep the scripts in
6941 one spot.  You might, for example, have a subdirectory of /usr/share for this.
6942 Or you might just lump your scripts in with all your other executables.
6943  
6944 EOM
6945 fn=d~
6946 rp='Where do you keep publicly executable scripts?'
6947 . ./getfile
6948 if $test "X$ansexp" != "X$scriptdirexp"; then
6949         installscript=''
6950 fi
6951 scriptdir="$ans"
6952 scriptdirexp="$ansexp"
6953 : Change installation prefix, if necessary.
6954 if $test X"$prefix" != X"$installprefix"; then
6955         installscript=`echo $scriptdirexp | sed "s#^$prefix#$installprefix#"`
6956 else
6957         installscript="$scriptdirexp"
6958 fi
6959
6960 : determine where site specific architecture-dependent libraries go.
6961 : sitelib  default is /usr/local/lib/perl5/site_perl/$version
6962 : sitearch default is /usr/local/lib/perl5/site_perl/$version/$archname
6963 : sitelib may have an optional trailing /share.
6964 tdflt=`echo $sitelib | $sed 's,/share$,,'`
6965 tdflt="$tdflt/$archname"
6966 set sitearch sitearch none
6967 eval $prefixit
6968 case "$sitearch" in
6969 '')     dflt="$tdflt" ;;
6970 *)      dflt="$sitearch" ;;
6971 esac
6972 $cat <<EOM
6973
6974 The installation process will also create a directory for
6975 architecture-dependent site-specific extensions and modules.
6976
6977 EOM
6978 fn=nd~+
6979 rp='Pathname for the site-specific architecture-dependent library files?'
6980 . ./getfile
6981 sitearch="$ans"
6982 sitearchexp="$ansexp"
6983 : Change installation prefix, if necessary.
6984 if $test X"$prefix" != X"$installprefix"; then
6985         installsitearch=`echo $sitearchexp | sed "s#^$prefix#$installprefix#"`
6986 else
6987         installsitearch="$sitearchexp"
6988 fi
6989
6990 : determine where add-on public executables go
6991 case "$sitebin" in
6992 '')     dflt=$siteprefix/bin ;;
6993 *)      dflt=$sitebin ;;
6994 esac
6995 fn=d~
6996 rp='Pathname where the add-on public executables should be installed?'
6997 . ./getfile
6998 sitebin="$ans"
6999 sitebinexp="$ansexp"
7000 : Change installation prefix, if necessary.
7001 if $test X"$prefix" != X"$installprefix"; then
7002         installsitebin=`echo $sitebinexp | sed "s#^$prefix#$installprefix#"`
7003 else
7004         installsitebin="$sitebinexp"
7005 fi
7006
7007 cat <<EOM
7008
7009 Perl can be built to take advantage of long doubles which
7010 (if available) may give more accuracy and range for floating point numbers.
7011
7012 If this doesn't make any sense to you, just accept the default 'n'.
7013 EOM
7014
7015 case "$ccflags" in
7016 *-DUSE_LONG_DOUBLE*|*-DUSE_MORE_BITS*) uselongdouble="$define" ;;
7017 esac
7018
7019 case "$uselongdouble" in
7020 $define|true|[yY]*)     dflt='y';;
7021 *) dflt='n';;
7022 esac
7023 rp='Try to use long doubles if available?'
7024 . ./myread
7025 case "$ans" in
7026 y|Y)    val="$define"   ;;
7027 *)      val="$undef"    ;;
7028 esac
7029 set uselongdouble
7030 eval $setvar
7031
7032 case "$uselongdouble" in
7033 true|[yY]*) uselongdouble="$define" ;;
7034 esac
7035
7036 case "$uselongdouble" in
7037 $define)
7038 : Look for a hint-file generated 'call-back-unit'.  If the
7039 : user has specified that long doubles should be used,
7040 : we may need to set or change some other defaults.
7041         if $test -f uselongdouble.cbu; then
7042                 echo "Your platform has some specific hints for long doubles, using them..."
7043                 . ./uselongdouble.cbu
7044         else
7045                 $cat <<EOM
7046 (Your platform doesn't have any specific hints for long doubles.)
7047 EOM
7048         fi
7049         ;;
7050 esac
7051
7052 cat <<EOM
7053
7054 Perl can be built to take advantage of long longs which
7055 (if available) may give more range for integer numbers.
7056
7057 If this doesn't make any sense to you, just accept the default 'n'.
7058 EOM
7059
7060 case "$ccflags" in
7061 *-DUSE_LONG_LONG*) uselonglong="$define" ;;
7062 esac
7063
7064 case "$uselonglong" in
7065 $define|true|[yY]*)     dflt='y';;
7066 *) dflt='n';;
7067 esac
7068 rp='Try to use long longs if available?'
7069 . ./myread
7070 case "$ans" in
7071 y|Y)    val="$define"   ;;
7072 *)      val="$undef"    ;;
7073 esac
7074 set uselonglong
7075 eval $setvar
7076
7077 case "$uselonglong" in
7078 true|[yY]*) uselonglong="$define" ;;
7079 esac
7080
7081 case "$uselonglong" in
7082 $define)
7083 : Look for a hint-file generated 'call-back-unit'.  If the
7084 : user has specified that long longs should be used,
7085 : we may need to set or change some other defaults.
7086         if $test -f uselonglong.cbu; then
7087                 echo "Your platform has some specific hints for long longs, using them..."
7088                 . ./uselonglong.cbu
7089         else
7090                 $cat <<EOM
7091 (Your platform doesn't have any specific hints for long longs.)
7092 EOM
7093         fi
7094         ;;
7095 esac
7096
7097 cat <<EOM
7098
7099 Previous version of $package used the standard IO mechanisms as defined
7100 in <stdio.h>.  Versions 5.003_02 and later of perl allow alternate IO
7101 mechanisms via a "PerlIO" abstraction, but the stdio mechanism is still
7102 the default.  This abstraction layer can use AT&T's sfio (if you already
7103 have sfio installed) or regular stdio.  Using PerlIO with sfio may cause
7104 problems with some extension modules.  Using PerlIO with stdio is safe,
7105 but it is slower than plain stdio and therefore is not the default.
7106
7107 If this doesn't make any sense to you, just accept the default 'n'.
7108 EOM
7109 case "$useperlio" in
7110 $define|true|[yY]*)     dflt='y';;
7111 *) dflt='n';;
7112 esac
7113 rp='Use the experimental PerlIO abstraction layer?'
7114 . ./myread
7115 case "$ans" in
7116 y|Y) 
7117         val="$define"
7118         ;;     
7119 *)      
7120         echo "Ok, doing things the stdio way"
7121         val="$undef"
7122         ;;
7123 esac
7124 set useperlio
7125 eval $setvar 
7126
7127 case "$vendorprefix" in
7128 '')     d_vendorbin="$undef"
7129         vendorbin=''
7130         vendorbinexp=''
7131         ;;
7132 *)      d_vendorbin="$define"
7133         : determine where vendor-supplied executables go.
7134         dflt=$vendorprefix/bin
7135         fn=d~+
7136         rp='Pathname for the vendor-supplied executables directory?'
7137         . ./getfile
7138         vendorbin="$ans"
7139         vendorbinexp="$ansexp"
7140         : Change installation prefix, if necessary.
7141         if $test X"$prefix" != X"$installprefix"; then
7142                 installvendorbin=`echo $vendorbinexp | $sed "s#^$prefix#$installprefix#"`
7143         else
7144                 installvendorbin="$vendorbinexp"
7145         fi
7146         ;;
7147 esac
7148
7149 : see if qgcvt exists
7150 set qgcvt d_qgcvt
7151 eval $inlibc
7152
7153 : Check how to convert floats to strings.
7154 if test "X$d_Gconvert" = X; then
7155         echo " "
7156         echo "Checking for an efficient way to convert floats to strings."
7157         $cat >try.c <<'EOP'
7158 #ifdef TRY_gconvert
7159 #define Gconvert(x,n,t,b) gconvert((x),(n),(t),(b))
7160 char *myname = "gconvert";
7161 #endif
7162 #ifdef TRY_gcvt
7163 #define Gconvert(x,n,t,b) gcvt((x),(n),(b))
7164 char *myname = "gcvt";
7165 #endif
7166 #ifdef TRY_qgcvt
7167 #define Gconvert(x,n,t,b) qgcvt((x),(n),(b))
7168 char *myname = "qgcvt";
7169 #endif
7170 #ifdef TRY_sprintf
7171 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))
7172 char *myname = "sprintf";
7173 #endif
7174
7175 #include <stdio.h>
7176
7177 int
7178 checkit(expect, got)
7179 char *expect;
7180 char *got;
7181 {
7182     if (strcmp(expect, got)) {
7183                 printf("%s oddity:  Expected %s, got %s\n",
7184                         myname, expect, got);
7185                 exit(1);
7186         }
7187 }
7188
7189 int main()
7190
7191         char buf[64]; 
7192         buf[63] = '\0';
7193
7194         /* This must be 1st test on (which?) platform */
7195         /* Alan Burlison <AlanBurlsin@unn.unisys.com> */
7196         Gconvert(0.1, 8, 0, buf);
7197         checkit("0.1", buf);
7198
7199         Gconvert(1.0, 8, 0, buf); 
7200         checkit("1", buf);
7201
7202         Gconvert(0.0, 8, 0, buf); 
7203         checkit("0", buf);
7204
7205         Gconvert(-1.0, 8, 0, buf); 
7206         checkit("-1", buf);
7207
7208         /* Some Linux gcvt's give 1.e+5 here. */
7209         Gconvert(100000.0, 8, 0, buf); 
7210         checkit("100000", buf);
7211         
7212         /* Some Linux gcvt's give -1.e+5 here. */
7213         Gconvert(-100000.0, 8, 0, buf); 
7214         checkit("-100000", buf);
7215
7216         exit(0);
7217 }
7218 EOP
7219         case "$d_Gconvert" in
7220         gconvert*) xxx_list='gconvert gcvt sprintf' ;;
7221         gcvt*) xxx_list='gcvt gconvert sprintf' ;;
7222         sprintf*) xxx_list='sprintf gconvert gcvt' ;;
7223         *) xxx_list='gconvert gcvt sprintf' ;;
7224         esac
7225
7226         case "$uselongdouble$d_qgcvt" in
7227         definedefine) xxx_list="`echo $xxx_list|sed s/gcvt/qgcvt/`" ;;
7228         esac
7229
7230         for xxx_convert in $xxx_list; do
7231                 echo "Trying $xxx_convert..."
7232                 $rm -f try try$_o
7233                 set try -DTRY_$xxx_convert
7234                 if eval $compile; then
7235                         echo "$xxx_convert" found. >&4
7236                         if ./try; then
7237                                 echo "I'll use $xxx_convert to convert floats into a string." >&4
7238                                 break;
7239                         else
7240                                 echo "...But $xxx_convert didn't work as I expected."
7241                         fi
7242                 else
7243                         echo "$xxx_convert NOT found." >&4
7244                 fi
7245         done
7246                 
7247         case "$xxx_convert" in
7248         gconvert) d_Gconvert='gconvert((x),(n),(t),(b))' ;;
7249         gcvt) d_Gconvert='gcvt((x),(n),(b))' ;;
7250         qgcvt) d_Gconvert='qgcvt((x),(n),(b))' ;;
7251         *) d_Gconvert='sprintf((b),"%.*g",(n),(x))' ;;
7252         esac
7253 fi
7254
7255 : check for length of double
7256 echo " "
7257 case "$doublesize" in
7258 '')
7259         $echo $n "Checking to see how big your double precision numbers are...$c" >&4
7260         $cat >try.c <<'EOCP'
7261 #include <stdio.h>
7262 int main()
7263 {
7264     printf("%d\n", (int)sizeof(double));
7265     exit(0);
7266 }
7267 EOCP
7268         set try
7269         if eval $compile_ok; then
7270                 doublesize=`./try`
7271                 $echo " $doublesize bytes." >&4
7272         else
7273                 dflt='8'
7274                 echo "(I can't seem to compile the test program.  Guessing...)"
7275                 rp="What is the size of a double precision number (in bytes)?"
7276                 . ./myread
7277                 doublesize="$ans"
7278         fi
7279         ;;
7280 esac
7281 $rm -f try.c try
7282
7283 : check for long doubles
7284 echo " "
7285 $echo $n "Checking to see if your system supports long double..." $c >&4
7286 echo 'int main() { long double x = 7.0; }' > try.c
7287 set try
7288 if eval $compile; then
7289         val="$define"
7290         echo " Yes, it does." >&4
7291 else
7292         val="$undef"
7293         echo " No, it doesn't." >&4
7294 fi
7295 $rm try.*
7296 set d_longdbl
7297 eval $setvar
7298
7299 : check for length of long double
7300 case "${d_longdbl}${longdblsize}" in
7301 $define)
7302         echo " "
7303         $echo $n "Checking to see how big your long doubles are..." $c >&4
7304         $cat >try.c <<'EOCP'
7305 #include <stdio.h>
7306 int main()
7307 {
7308         printf("%d\n", sizeof(long double));
7309 }
7310 EOCP
7311         set try
7312         set try
7313         if eval $compile; then
7314                 longdblsize=`./try$exe_ext`
7315                 $echo " $longdblsize bytes." >&4
7316         else
7317                 dflt='8'
7318                 echo " "
7319                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
7320                 rp="What is the size of a long double (in bytes)?"
7321                 . ./myread
7322                 longdblsize="$ans"
7323         fi
7324         if $test "X$doublesize" = "X$longdblsize"; then
7325                 echo "(That isn't any different from an ordinary double.)"
7326         fi      
7327         ;;
7328 esac
7329 $rm -f try.* try
7330
7331 echo " "
7332
7333 if $test X"$d_longdbl" = X"$define"; then
7334
7335 echo "Checking how to print long doubles..." >&4
7336
7337 if $test X"$sPRIfldbl" = X -a X"$doublesize" = X"$longdblsize"; then
7338         $cat >try.c <<'EOCP'
7339 #include <sys/types.h>
7340 #include <stdio.h>
7341 int main() {
7342   double d = 123.456;
7343   printf("%.3f\n", d);
7344 }
7345 EOCP
7346         set try
7347         if eval $compile; then
7348                 yyy=`./try$exe_ext`
7349                 case "$yyy" in
7350                 123.456)
7351                         sPRIfldbl='"f"'; sPRIgldbl='"g"'; sPRIeldbl='"e"';
7352                         sPRIFldbl='"F"'; sPRIGldbl='"G"'; sPRIEldbl='"E"';
7353                         echo "We will use %f."
7354                         ;;
7355                 esac
7356         fi
7357 fi
7358
7359 if $test X"$sPRIfldbl" = X; then
7360         $cat >try.c <<'EOCP'
7361 #include <sys/types.h>
7362 #include <stdio.h>
7363 int main() {
7364   long double d = 123.456;
7365   printf("%.3llf\n", d);
7366 }
7367 EOCP
7368         set try
7369         if eval $compile; then
7370                 yyy=`./try$exe_ext`
7371                 case "$yyy" in
7372                 123.456)
7373                         sPRIfldbl='"llf"'; sPRIgldbl='"llg"'; sPRIeldbl='"lle"';
7374                         sPRIFldbl='"llF"'; sPRIGldbl='"llG"'; sPRIEldbl='"llE"';
7375                         echo "We will use %llf."
7376                         ;;
7377                 esac
7378         fi
7379 fi
7380
7381 if $test X"$sPRIfldbl" = X; then
7382         $cat >try.c <<'EOCP'
7383 #include <sys/types.h>
7384 #include <stdio.h>
7385 int main() {
7386   long double d = 123.456;
7387   printf("%.3Lf\n", d);
7388 }
7389 EOCP
7390         set try
7391         if eval $compile; then
7392                 yyy=`./try$exe_ext`
7393                 case "$yyy" in
7394                 123.456)
7395                         sPRIfldbl='"Lf"'; sPRIgldbl='"Lg"'; sPRIeldbl='"Le"';
7396                         sPRIFldbl='"LF"'; sPRIGldbl='"LG"'; sPRIEldbl='"LE"';
7397                         echo "We will use %Lf."
7398                         ;;
7399                 esac
7400         fi
7401 fi
7402
7403 if $test X"$sPRIfldbl" = X; then
7404         $cat >try.c <<'EOCP'
7405 #include <sys/types.h>
7406 #include <stdio.h>
7407 int main() {
7408   long double d = 123.456;
7409   printf("%.3lf\n", d);
7410 }
7411 EOCP
7412         set try
7413         if eval $compile; then
7414                 yyy=`./try$exe_ext`
7415                 case "$yyy" in
7416                 123.456)
7417                         sPRIfldbl='"lf"'; sPRIgldbl='"lg"'; sPRIeldbl='"le"';
7418                         sPRIFldbl='"lF"'; sPRIGldbl='"lG"'; sPRIEldbl='"lE"';
7419                         echo "We will use %lf."
7420                         ;;
7421                 esac
7422         fi
7423 fi
7424
7425 if $test X"$sPRIfldbl" = X; then
7426         echo "Cannot figure out how to print long doubles." >&4
7427 fi
7428
7429 $rm -f try try.*
7430
7431 fi # d_longdbl
7432
7433 case "$sPRIfldbl" in
7434 '')     d_PRIfldbl="$undef"; d_PRIgldbl="$undef"; d_PRIeldbl="$undef"; 
7435         d_PRIFldbl="$undef"; d_PRIGldbl="$undef"; d_PRIEldbl="$undef"; 
7436         ;;
7437 *)      d_PRIfldbl="$define"; d_PRIgldbl="$define"; d_PRIeldbl="$define"; 
7438         d_PRIFldbl="$define"; d_PRIGldbl="$define"; d_PRIEldbl="$define"; 
7439         ;;
7440 esac
7441
7442 : Initialize h_fcntl
7443 h_fcntl=false
7444
7445 : Initialize h_sysfile
7446 h_sysfile=false
7447
7448 : access call always available on UNIX
7449 set access d_access
7450 eval $inlibc
7451
7452 : locate the flags for 'access()'
7453 case "$d_access" in
7454 "$define")
7455         echo " "
7456         $cat >access.c <<'EOCP'
7457 #include <sys/types.h>
7458 #ifdef I_FCNTL
7459 #include <fcntl.h>
7460 #endif
7461 #ifdef I_SYS_FILE
7462 #include <sys/file.h>
7463 #endif
7464 #ifdef I_UNISTD
7465 #include <unistd.h>
7466 #endif
7467 int main() {
7468         exit(R_OK);
7469 }
7470 EOCP
7471         : check sys/file.h first, no particular reason here
7472         if $test `./findhdr sys/file.h` && \
7473                 $cc $cppflags -DI_SYS_FILE -o access access.c >/dev/null 2>&1 ; then
7474                 h_sysfile=true;
7475                 echo "<sys/file.h> defines the *_OK access constants." >&4
7476         elif $test `./findhdr fcntl.h` && \
7477                 $cc $cppflags -DI_FCNTL -o access access.c >/dev/null 2>&1 ; then
7478                 h_fcntl=true;
7479                 echo "<fcntl.h> defines the *_OK access constants." >&4
7480         elif $test `./findhdr unistd.h` && \
7481                 $cc $cppflags -DI_UNISTD -o access access.c >/dev/null 2>&1 ; then
7482                 echo "<unistd.h> defines the *_OK access constants." >&4
7483         else
7484                 echo "I can't find the four *_OK access constants--I'll use mine." >&4
7485         fi
7486         ;;
7487 esac
7488 $rm -f access*
7489
7490 : see if accessx exists
7491 set accessx d_accessx
7492 eval $inlibc
7493
7494 : see if alarm exists
7495 set alarm d_alarm
7496 eval $inlibc
7497
7498 : see if atolf exists
7499 set atolf d_atolf
7500 eval $inlibc
7501
7502 : see if atoll exists
7503 set atoll d_atoll
7504 eval $inlibc
7505
7506 : Look for GNU-cc style attribute checking
7507 echo " "
7508 echo "Checking whether your compiler can handle __attribute__ ..." >&4
7509 $cat >attrib.c <<'EOCP'
7510 #include <stdio.h>
7511 void croak (char* pat,...) __attribute__((format(printf,1,2),noreturn));
7512 EOCP
7513 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
7514         if $contains 'warning' attrib.out >/dev/null 2>&1; then
7515                 echo "Your C compiler doesn't fully support __attribute__."
7516                 val="$undef"
7517         else
7518                 echo "Your C compiler supports __attribute__."
7519                 val="$define"
7520         fi
7521 else
7522         echo "Your C compiler doesn't seem to understand __attribute__ at all."
7523         val="$undef"
7524 fi
7525 set d_attribut
7526 eval $setvar
7527 $rm -f attrib*
7528
7529 : see if bcmp exists
7530 set bcmp d_bcmp
7531 eval $inlibc
7532
7533 : see if bcopy exists
7534 set bcopy d_bcopy
7535 eval $inlibc
7536
7537 : see if this is a unistd.h system
7538 set unistd.h i_unistd
7539 eval $inhdr
7540
7541 : see if getpgrp exists
7542 set getpgrp d_getpgrp
7543 eval $inlibc
7544
7545 case "$d_getpgrp" in
7546 "$define")
7547         echo " "
7548         echo "Checking to see which flavor of getpgrp is in use..."
7549         $cat >set.c <<EOP
7550 #$i_unistd I_UNISTD
7551 #include <sys/types.h>
7552 #ifdef I_UNISTD
7553 #  include <unistd.h>
7554 #endif
7555 int main()
7556 {
7557         if (getuid() == 0) {
7558                 printf("(I see you are running Configure as super-user...)\n");
7559                 setuid(1);
7560         }
7561 #ifdef TRY_BSD_PGRP
7562         if (getpgrp(1) == 0)
7563                 exit(0);
7564 #else
7565         if (getpgrp() > 0)
7566                 exit(0);
7567 #endif
7568         exit(1);
7569 }
7570 EOP
7571         if $cc -DTRY_BSD_PGRP $ccflags $ldflags -o set set.c $libs >/dev/null 2>&1 && ./set; then
7572                 echo "You have to use getpgrp(pid) instead of getpgrp()." >&4
7573                 val="$define"
7574         elif $cc $ccflags $ldflags -o set set.c $libs >/dev/null 2>&1 && ./set; then
7575                 echo "You have to use getpgrp() instead of getpgrp(pid)." >&4
7576                 val="$undef"
7577         else
7578                 echo "I can't seem to compile and run the test program."
7579                 if ./usg; then
7580                         xxx="a USG one, i.e. you use getpgrp()."
7581                 else
7582                         # SVR4 systems can appear rather BSD-ish.
7583                         case "$i_unistd" in
7584                         $undef)
7585                                 xxx="a BSD one, i.e. you use getpgrp(pid)."
7586                                 val="$define"
7587                                 ;;
7588                         $define)
7589                                 xxx="probably a USG one, i.e. you use getpgrp()."
7590                                 val="$undef"
7591                                 ;;
7592                         esac
7593                 fi
7594                 echo "Assuming your getpgrp is $xxx" >&4
7595         fi
7596         ;;
7597 *) val="$undef";;
7598 esac
7599 set d_bsdgetpgrp
7600 eval $setvar
7601 $rm -f set set.c
7602
7603 : see if setpgrp exists
7604 set setpgrp d_setpgrp
7605 eval $inlibc
7606
7607 case "$d_setpgrp" in
7608 "$define")
7609         echo " "
7610         echo "Checking to see which flavor of setpgrp is in use..."
7611         $cat >set.c <<EOP
7612 #$i_unistd I_UNISTD
7613 #include <sys/types.h>
7614 #ifdef I_UNISTD
7615 #  include <unistd.h>
7616 #endif
7617 int main()
7618 {
7619         if (getuid() == 0) {
7620                 printf("(I see you are running Configure as super-user...)\n");
7621                 setuid(1);
7622         }
7623 #ifdef TRY_BSD_PGRP
7624         if (-1 == setpgrp(1, 1))
7625                 exit(0);
7626 #else
7627         if (setpgrp() != -1)
7628                 exit(0);
7629 #endif
7630         exit(1);
7631 }
7632 EOP
7633         if $cc -DTRY_BSD_PGRP $ccflags $ldflags -o set set.c $libs >/dev/null 2>&1 && ./set; then
7634                 echo 'You have to use setpgrp(pid,pgrp) instead of setpgrp().' >&4
7635                 val="$define"
7636         elif $cc $ccflags $ldflags -o set set.c $libs >/dev/null 2>&1 && ./set; then
7637                 echo 'You have to use setpgrp() instead of setpgrp(pid,pgrp).' >&4
7638                 val="$undef"
7639         else
7640                 echo "(I can't seem to compile and run the test program.)"
7641                 if ./usg; then
7642                         xxx="a USG one, i.e. you use setpgrp()."
7643                 else
7644                         # SVR4 systems can appear rather BSD-ish.
7645                         case "$i_unistd" in
7646                         $undef)
7647                                 xxx="a BSD one, i.e. you use setpgrp(pid,pgrp)."
7648                                 val="$define"
7649                                 ;;
7650                         $define)
7651                                 xxx="probably a USG one, i.e. you use setpgrp()."
7652                                 val="$undef"
7653                                 ;;
7654                         esac
7655                 fi
7656                 echo "Assuming your setpgrp is $xxx" >&4
7657         fi
7658         ;;
7659 *) val="$undef";;
7660 esac
7661 set d_bsdsetpgrp
7662 eval $setvar
7663 $rm -f set set.c
7664 : see if bzero exists
7665 set bzero d_bzero
7666 eval $inlibc
7667
7668 : see if signal is declared as pointer to function returning int or void
7669 echo " "
7670 xxx=`./findhdr signal.h`
7671 $test "$xxx" && $cppstdin $cppminus $cppflags < $xxx >$$.tmp 2>/dev/null
7672 if $contains 'int.*\*[  ]*signal' $$.tmp >/dev/null 2>&1 ; then
7673         echo "You have int (*signal())() instead of void." >&4
7674         val="$undef"
7675 elif $contains 'void.*\*[       ]*signal' $$.tmp >/dev/null 2>&1 ; then
7676         echo "You have void (*signal())()." >&4
7677         val="$define"
7678 elif $contains 'extern[         ]*[(\*]*signal' $$.tmp >/dev/null 2>&1 ; then
7679         echo "You have int (*signal())() instead of void." >&4
7680         val="$undef"
7681 elif $contains 'void.*\*.*sig' $$.tmp >/dev/null 2>&1 ; then
7682         echo "You have void (*signal())()." >&4
7683         val="$define"
7684 else
7685         case "$d_voidsig" in
7686         '')
7687         echo "I can't determine whether signal handler returns void or int..." >&4
7688                 dflt=void
7689                 rp="What type does your signal handler return?"
7690                 . ./myread
7691                 case "$ans" in
7692                 v*) val="$define";;
7693                 *) val="$undef";;
7694                 esac;;
7695         "$define")
7696                 echo "As you already told me, signal handler returns void." >&4
7697                 val="$define"
7698                 ;;
7699         *)      echo "As you already told me, signal handler returns int." >&4
7700                 val="$undef"
7701                 ;;
7702         esac
7703 fi
7704 set d_voidsig
7705 eval $setvar
7706 case "$d_voidsig" in
7707 "$define") signal_t="void";;
7708 *) signal_t="int";;
7709 esac
7710 $rm -f $$.tmp
7711
7712 : check for ability to cast large floats to 32-bit ints.
7713 echo " "
7714 echo 'Checking whether your C compiler can cast large floats to int32.' >&4
7715 if $test "$intsize" -ge 4; then
7716         xxx=int
7717 else
7718         xxx=long
7719 fi
7720 $cat >try.c <<EOCP
7721 #include <stdio.h>
7722 #include <sys/types.h>
7723 #include <signal.h>
7724 $signal_t blech(s) int s; { exit(3); }
7725 int main()
7726 {
7727         $xxx i32;
7728         double f, g;
7729         int result = 0;
7730         char str[16];
7731         signal(SIGFPE, blech);
7732
7733         /* Don't let compiler optimize the test away.  Store the number 
7734            in a writable string for gcc to pass to sscanf under HP/UX.
7735         */
7736         sprintf(str, "2147483647");
7737         sscanf(str, "%lf", &f); /* f = (double) 0x7fffffff; */
7738         g = 10 * f;
7739         i32  = ($xxx) g;
7740
7741         /* x86 processors will probably give 0x8000 0000, which is a
7742        sign change.  We don't want that.  We want to mimic SPARC
7743            behavior here, which is to preserve the sign and give
7744            back 0x7fff ffff.
7745         */
7746         if (i32 != ($xxx) f)
7747                 result |= 1;
7748         exit(result);
7749 }
7750 EOCP
7751 set try
7752 if eval $compile_ok; then
7753         ./try
7754         yyy=$?
7755 else
7756         echo "(I can't seem to compile the test program--assuming it can't)"
7757         yyy=1
7758 fi
7759 case "$yyy" in
7760 0)      val="$define"
7761         echo "Yup, it can."
7762         ;;
7763 *)      val="$undef"
7764         echo "Nope, it can't."
7765         ;;
7766 esac
7767 set d_casti32
7768 eval $setvar
7769 $rm -f try try.*
7770
7771 : check for ability to cast negative floats to unsigned
7772 echo " "
7773 echo 'Checking whether your C compiler can cast negative float to unsigned.' >&4
7774 $cat >try.c <<EOCP
7775 #include <stdio.h>
7776 #include <sys/types.h>
7777 #include <signal.h>
7778 $signal_t blech(s) int s; { exit(7); }
7779 $signal_t blech_in_list(s) int s; { exit(4); }
7780 unsigned long dummy_long(p) unsigned long p; { return p; }
7781 unsigned int dummy_int(p) unsigned int p; { return p; }
7782 unsigned short dummy_short(p) unsigned short p; { return p; }
7783 int main()
7784 {
7785         double f;
7786         unsigned long along;
7787         unsigned int aint;
7788         unsigned short ashort;
7789         int result = 0;
7790         char str[16];
7791         
7792         /* Frustrate gcc-2.7.2's optimizer which failed this test with
7793            a direct f = -123. assignment.  gcc-2.8.0 reportedly
7794            optimized the whole file away
7795         */
7796         /* Store the number in a writable string for gcc to pass to 
7797            sscanf under HP/UX.
7798         */
7799         sprintf(str, "-123");
7800         sscanf(str, "%lf", &f);  /* f = -123.; */
7801
7802         signal(SIGFPE, blech);
7803         along = (unsigned long)f;
7804         aint = (unsigned int)f;
7805         ashort = (unsigned short)f;
7806         if (along != (unsigned long)-123)
7807                 result |= 1;
7808         if (aint != (unsigned int)-123)
7809                 result |= 1;
7810         if (ashort != (unsigned short)-123)
7811                 result |= 1;
7812         sprintf(str, "1073741824.");
7813         sscanf(str, "%lf", &f); /* f = (double)0x40000000; */
7814         f = f + f;
7815         along = 0;
7816         along = (unsigned long)f;
7817         if (along != 0x80000000)
7818                 result |= 2;
7819         f -= 1.;
7820         along = 0;
7821         along = (unsigned long)f;
7822         if (along != 0x7fffffff)
7823                 result |= 1;
7824         f += 2.;
7825         along = 0;
7826         along = (unsigned long)f;
7827         if (along != 0x80000001)
7828                 result |= 2;
7829         if (result)
7830                 exit(result);
7831         signal(SIGFPE, blech_in_list);
7832         sprintf(str, "123.");
7833         sscanf(str, "%lf", &f);  /* f = 123.; */
7834         along = dummy_long((unsigned long)f);
7835         aint = dummy_int((unsigned int)f);
7836         ashort = dummy_short((unsigned short)f);
7837         if (along != (unsigned long)123)
7838                 result |= 4;
7839         if (aint != (unsigned int)123)
7840                 result |= 4;
7841         if (ashort != (unsigned short)123)
7842                 result |= 4;
7843         exit(result);
7844
7845 }
7846 EOCP
7847 set try
7848 if eval $compile_ok; then
7849         ./try
7850         castflags=$?
7851 else
7852         echo "(I can't seem to compile the test program--assuming it can't)"
7853         castflags=7
7854 fi
7855 case "$castflags" in
7856 0)      val="$define"
7857         echo "Yup, it can."
7858         ;;
7859 *)      val="$undef"
7860         echo "Nope, it can't."
7861         ;;
7862 esac
7863 set d_castneg
7864 eval $setvar
7865 $rm -f try.*
7866
7867 : see if vprintf exists
7868 echo " "
7869 if set vprintf val -f d_vprintf; eval $csym; $val; then
7870         echo 'vprintf() found.' >&4
7871         val="$define"
7872         $cat >vprintf.c <<'EOF'
7873 #include <varargs.h>
7874
7875 int main() { xxx("foo"); }
7876
7877 xxx(va_alist)
7878 va_dcl
7879 {
7880         va_list args;
7881         char buf[10];
7882
7883         va_start(args);
7884         exit((unsigned long)vsprintf(buf,"%s",args) > 10L);
7885 }
7886 EOF
7887         set vprintf
7888         if eval $compile && ./vprintf; then
7889                 echo "Your vsprintf() returns (int)." >&4
7890                 val2="$undef"
7891         else
7892                 echo "Your vsprintf() returns (char*)." >&4
7893                 val2="$define"
7894         fi
7895 else
7896         echo 'vprintf() NOT found.' >&4
7897                 val="$undef"
7898                 val2="$undef"
7899 fi
7900 set d_vprintf
7901 eval $setvar
7902 val=$val2
7903 set d_charvspr
7904 eval $setvar
7905
7906 : see if chown exists
7907 set chown d_chown
7908 eval $inlibc
7909
7910 : see if chroot exists
7911 set chroot d_chroot
7912 eval $inlibc
7913
7914 : see if chsize exists
7915 set chsize d_chsize
7916 eval $inlibc
7917
7918 : check for const keyword
7919 echo " "
7920 echo 'Checking to see if your C compiler knows about "const"...' >&4
7921 $cat >const.c <<'EOCP'
7922 typedef struct spug { int drokk; } spug;
7923 int main()
7924 {
7925         const char *foo;
7926         const spug y;
7927 }
7928 EOCP
7929 if $cc -c $ccflags const.c >/dev/null 2>&1 ; then
7930         val="$define"
7931         echo "Yup, it does."
7932 else
7933         val="$undef"
7934         echo "Nope, it doesn't."
7935 fi
7936 set d_const
7937 eval $setvar
7938
7939 : see if crypt exists
7940 echo " "
7941 if set crypt val -f d_crypt; eval $csym; $val; then
7942         echo 'crypt() found.' >&4
7943         val="$define"
7944         cryptlib=''
7945 else
7946         cryptlib=`./loc Slibcrypt$_a "" $xlibpth`
7947         if $test -z "$cryptlib"; then
7948                 cryptlib=`./loc Mlibcrypt$_a "" $xlibpth`
7949         else
7950                 cryptlib=-lcrypt
7951         fi
7952         if $test -z "$cryptlib"; then
7953                 cryptlib=`./loc Llibcrypt$_a "" $xlibpth`
7954         else
7955                 cryptlib=-lcrypt
7956         fi
7957         if $test -z "$cryptlib"; then
7958                 cryptlib=`./loc libcrypt$_a "" $libpth`
7959         else
7960                 cryptlib=-lcrypt
7961         fi
7962         if $test -z "$cryptlib"; then
7963                 echo 'crypt() NOT found.' >&4
7964                 val="$undef"
7965         else
7966                 val="$define"
7967         fi
7968 fi
7969 set d_crypt
7970 eval $setvar
7971
7972 : get csh whereabouts
7973 case "$csh" in
7974 'csh') val="$undef" ;;
7975 *) val="$define" ;;
7976 esac
7977 set d_csh
7978 eval $setvar
7979 : Respect a hint or command line value for full_csh.
7980 case "$full_csh" in
7981 '') full_csh=$csh ;;
7982 esac
7983
7984 : see if cuserid exists
7985 set cuserid d_cuserid
7986 eval $inlibc
7987
7988 : see if this is a limits.h system
7989 set limits.h i_limits
7990 eval $inhdr
7991
7992 : see if this is a float.h system
7993 set float.h i_float
7994 eval $inhdr
7995
7996 : See if number of significant digits in a double precision number is known
7997 echo " "
7998 $cat >dbl_dig.c <<EOM
7999 #$i_limits I_LIMITS
8000 #$i_float I_FLOAT
8001 #ifdef I_LIMITS
8002 #include <limits.h>
8003 #endif
8004 #ifdef I_FLOAT
8005 #include <float.h>
8006 #endif
8007 #ifdef DBL_DIG
8008 printf("Contains DBL_DIG");
8009 #endif
8010 EOM
8011 $cppstdin $cppflags $cppminus < dbl_dig.c >dbl_dig.E 2>/dev/null
8012 if $contains 'DBL_DIG' dbl_dig.E >/dev/null 2>&1; then
8013         echo "DBL_DIG found." >&4
8014         val="$define"
8015 else
8016         echo "DBL_DIG NOT found." >&4
8017         val="$undef"
8018 fi
8019 $rm -f dbl_dig.?
8020 set d_dbl_dig
8021 eval $setvar
8022
8023 : see if difftime exists
8024 set difftime d_difftime
8025 eval $inlibc
8026
8027 : see if this is a dirent system
8028 echo " "
8029 if xinc=`./findhdr dirent.h`; $test "$xinc"; then
8030         val="$define"
8031         echo "<dirent.h> found." >&4
8032 else
8033         val="$undef"
8034         if xinc=`./findhdr sys/dir.h`; $test "$xinc"; then
8035                 echo "<sys/dir.h> found." >&4
8036                 echo " "
8037         else
8038                 xinc=`./findhdr sys/ndir.h`
8039         fi
8040         echo "<dirent.h> NOT found." >&4
8041 fi
8042 set i_dirent
8043 eval $setvar
8044
8045 : Look for type of directory structure.
8046 echo " "
8047 $cppstdin $cppflags $cppminus < "$xinc" > try.c
8048
8049 case "$direntrytype" in
8050 ''|' ')
8051         case "$i_dirent" in
8052         $define) guess1='struct dirent' ;;
8053         *) guess1='struct direct'  ;;
8054         esac
8055         ;;
8056 *)      guess1="$direntrytype"
8057         ;;
8058 esac
8059
8060 case "$guess1" in
8061 'struct dirent') guess2='struct direct' ;;
8062 *) guess2='struct dirent' ;;
8063 esac
8064                 
8065 if $contains "$guess1" try.c >/dev/null 2>&1; then
8066         direntrytype="$guess1"
8067         echo "Your directory entries are $direntrytype." >&4
8068 elif $contains "$guess2" try.c >/dev/null 2>&1; then
8069         direntrytype="$guess2"
8070         echo "Your directory entries seem to be $direntrytype." >&4
8071 else
8072         echo "I don't recognize your system's directory entries." >&4
8073         rp="What type is used for directory entries on this system?"
8074         dflt="$guess1"
8075         . ./myread
8076         direntrytype="$ans"
8077 fi
8078 $rm -f try.c
8079
8080
8081 : see if the directory entry stores field length
8082 echo " "
8083 $cppstdin $cppflags $cppminus < "$xinc" > try.c
8084 if $contains 'd_namlen' try.c >/dev/null 2>&1; then
8085         echo "Good, your directory entry keeps length information in d_namlen." >&4
8086         val="$define"
8087 else
8088         echo "Your directory entry does not know about the d_namlen field." >&4
8089         val="$undef"
8090 fi
8091 set d_dirnamlen
8092 eval $setvar
8093 $rm -f try.c
8094
8095 : see if dlerror exists
8096 xxx_runnm="$runnm"
8097 runnm=false
8098 set dlerror d_dlerror
8099 eval $inlibc
8100 runnm="$xxx_runnm"
8101
8102 : see if dlfcn is available
8103 set dlfcn.h i_dlfcn
8104 eval $inhdr
8105
8106 case "$usedl" in
8107 $define|y|true)
8108         $cat << EOM
8109
8110 On a few systems, the dynamically loaded modules that perl generates and uses
8111 will need a different extension than shared libs. The default will probably
8112 be appropriate.
8113
8114 EOM
8115         case "$dlext" in
8116         '')     dflt="$so" ;;
8117         *)      dflt="$dlext" ;;
8118         esac
8119         rp='What is the extension of dynamically loaded modules'
8120         . ./myread
8121         dlext="$ans"
8122         ;;
8123 *)
8124         dlext="none"
8125         ;;
8126 esac
8127
8128 : Check if dlsym need a leading underscore
8129 echo " "
8130 val="$undef"
8131
8132 case "$dlsrc" in
8133 dl_dlopen.xs)
8134         echo "Checking whether your dlsym() needs a leading underscore ..." >&4
8135         $cat >dyna.c <<'EOM'
8136 fred () { }
8137 EOM
8138
8139 $cat >fred.c<<EOM
8140
8141 #include <stdio.h>
8142 #$i_dlfcn I_DLFCN
8143 #ifdef I_DLFCN
8144 #include <dlfcn.h>      /* the dynamic linker include file for Sunos/Solaris */
8145 #else
8146 #include <sys/types.h>
8147 #include <nlist.h>
8148 #include <link.h>
8149 #endif
8150
8151 extern int fred() ;
8152
8153 int main()
8154 {
8155     void * handle ;
8156     void * symbol ;
8157 #ifndef RTLD_LAZY
8158     int mode = 1 ;
8159 #else
8160     int mode = RTLD_LAZY ;
8161 #endif
8162     handle = dlopen("./dyna.$dlext", mode) ;
8163     if (handle == NULL) {
8164         printf ("1\n") ;
8165         fflush (stdout) ;
8166         exit(0);
8167     }
8168     symbol = dlsym(handle, "fred") ;
8169     if (symbol == NULL) {
8170         /* try putting a leading underscore */
8171         symbol = dlsym(handle, "_fred") ;
8172         if (symbol == NULL) {
8173             printf ("2\n") ;
8174             fflush (stdout) ;
8175             exit(0);
8176         }
8177         printf ("3\n") ;
8178     }
8179     else
8180         printf ("4\n") ;
8181     fflush (stdout) ;
8182     exit(0);
8183 }
8184 EOM
8185         : Call the object file tmp-dyna.o in case dlext=o.
8186         if $cc $ccflags $cccdlflags -c dyna.c > /dev/null 2>&1 && 
8187                 mv dyna${_o} tmp-dyna${_o} > /dev/null 2>&1 && 
8188                 $ld $lddlflags -o dyna.$dlext tmp-dyna${_o} > /dev/null 2>&1 && 
8189                 $cc $ccflags -o fred $ldflags $cccdlflags $ccdlflags fred.c $libs > /dev/null 2>&1; then
8190                 xxx=`./fred`
8191                 case $xxx in
8192                 1)      echo "Test program failed using dlopen." >&4
8193                         echo "Perhaps you should not use dynamic loading." >&4;;
8194                 2)      echo "Test program failed using dlsym." >&4
8195                         echo "Perhaps you should not use dynamic loading." >&4;;
8196                 3)      echo "dlsym needs a leading underscore" >&4
8197                         val="$define" ;;
8198                 4)      echo "dlsym doesn't need a leading underscore." >&4;;
8199                 esac
8200         else
8201                 echo "I can't compile and run the test program." >&4
8202                 echo "I'm guessing that dlsym doesn't need a leading underscore." >&4
8203         fi
8204         ;;
8205 esac
8206                 
8207 $rm -f fred fred.? dyna.$dlext dyna.? tmp-dyna.?
8208
8209 set d_dlsymun
8210 eval $setvar
8211
8212 hasproto='varname=$1; func=$2; shift; shift;
8213 while $test $# -ge 2; do
8214         case "$1" in
8215         $define) echo "#include <$2>";;
8216         esac ;
8217     shift 2;
8218 done > try.c;
8219 $cppstdin $cppflags $cppminus < try.c > tryout.c 2>/dev/null;
8220 if $contains "$func.*(" tryout.c >/dev/null 2>&1; then
8221         echo "$func() prototype found.";
8222         val="$define";
8223 else
8224         echo "$func() prototype NOT found.";
8225         val="$undef";
8226 fi;
8227 set $varname;
8228 eval $setvar;
8229 $rm -f try.c tryout.c'
8230
8231 : see if prototype for drand48 is available
8232 echo " "
8233 set d_drand48proto drand48 $i_stdlib stdlib.h $i_unistd unistd.h
8234 eval $hasproto
8235
8236 : see if dup2 exists
8237 set dup2 d_dup2
8238 eval $inlibc
8239
8240 : see if eaccess exists
8241 set eaccess d_eaccess
8242 eval $inlibc
8243
8244 : see if endgrent exists
8245 set endgrent d_endgrent
8246 eval $inlibc
8247
8248 : see if endhostent exists
8249 set endhostent d_endhent
8250 eval $inlibc
8251
8252 : see if endnetent exists
8253 set endnetent d_endnent
8254 eval $inlibc
8255
8256 : see if endprotoent exists
8257 set endprotoent d_endpent
8258 eval $inlibc
8259
8260 : see if endpwent exists
8261 set endpwent d_endpwent
8262 eval $inlibc
8263
8264 : see if endservent exists
8265 set endservent d_endsent
8266 eval $inlibc
8267
8268 : see if endspent exists
8269 set endspent d_endspent
8270 eval $inlibc
8271
8272 : Locate the flags for 'open()'
8273 echo " "
8274 $cat >open3.c <<'EOCP'
8275 #include <sys/types.h>
8276 #ifdef I_FCNTL
8277 #include <fcntl.h>
8278 #endif
8279 #ifdef I_SYS_FILE
8280 #include <sys/file.h>
8281 #endif
8282 int main() {
8283         if(O_RDONLY);
8284 #ifdef O_TRUNC
8285         exit(0);
8286 #else
8287         exit(1);
8288 #endif
8289 }
8290 EOCP
8291 : check sys/file.h first to get FREAD on Sun
8292 if $test `./findhdr sys/file.h` && \
8293                 set open3 -DI_SYS_FILE && eval $compile; then
8294         h_sysfile=true;
8295         echo "<sys/file.h> defines the O_* constants..." >&4
8296         if ./open3; then
8297                 echo "and you have the 3 argument form of open()." >&4
8298                 val="$define"
8299         else
8300                 echo "but not the 3 argument form of open().  Oh, well." >&4
8301                 val="$undef"
8302         fi
8303 elif $test `./findhdr fcntl.h` && \
8304                 set open3 -DI_FCNTL && eval $compile; then
8305         h_fcntl=true;
8306         echo "<fcntl.h> defines the O_* constants..." >&4
8307         if ./open3; then
8308                 echo "and you have the 3 argument form of open()." >&4
8309                 val="$define"
8310         else
8311                 echo "but not the 3 argument form of open().  Oh, well." >&4
8312                 val="$undef"
8313         fi
8314 else
8315         val="$undef"
8316         echo "I can't find the O_* constant definitions!  You got problems." >&4
8317 fi
8318 set d_open3
8319 eval $setvar
8320 $rm -f open3*
8321
8322 : see which of string.h or strings.h is needed
8323 echo " "
8324 strings=`./findhdr string.h`
8325 if $test "$strings" && $test -r "$strings"; then
8326         echo "Using <string.h> instead of <strings.h>." >&4
8327         val="$define"
8328 else
8329         val="$undef"
8330         strings=`./findhdr strings.h`
8331         if $test "$strings" && $test -r "$strings"; then
8332                 echo "Using <strings.h> instead of <string.h>." >&4
8333         else
8334                 echo "No string header found -- You'll surely have problems." >&4
8335         fi
8336 fi
8337 set i_string
8338 eval $setvar
8339 case "$i_string" in
8340 "$undef") strings=`./findhdr strings.h`;;
8341 *)        strings=`./findhdr string.h`;;
8342 esac
8343
8344 : check for non-blocking I/O stuff
8345 case "$h_sysfile" in
8346 true) echo "#include <sys/file.h>" > head.c;;
8347 *)
8348         case "$h_fcntl" in
8349         true) echo "#include <fcntl.h>" > head.c;;
8350         *) echo "#include <sys/fcntl.h>" > head.c;;
8351         esac
8352         ;;
8353 esac
8354 echo " "
8355 echo "Figuring out the flag used by open() for non-blocking I/O..." >&4
8356 case "$o_nonblock" in
8357 '')
8358         $cat head.c > try.c
8359         $cat >>try.c <<'EOCP'
8360 #include <stdio.h>
8361 int main() {
8362 #ifdef O_NONBLOCK
8363         printf("O_NONBLOCK\n");
8364         exit(0);
8365 #endif
8366 #ifdef O_NDELAY
8367         printf("O_NDELAY\n");
8368         exit(0);
8369 #endif
8370 #ifdef FNDELAY
8371         printf("FNDELAY\n");
8372         exit(0);
8373 #endif
8374         exit(0);
8375 }
8376 EOCP
8377         set try
8378         if eval $compile_ok; then
8379                 o_nonblock=`./try`
8380                 case "$o_nonblock" in
8381                 '') echo "I can't figure it out, assuming O_NONBLOCK will do.";;
8382                 *) echo "Seems like we can use $o_nonblock.";;
8383                 esac
8384         else
8385                 echo "(I can't compile the test program; pray O_NONBLOCK is right!)"
8386         fi
8387         ;;
8388 *) echo "Using $hint value $o_nonblock.";;
8389 esac
8390 $rm -f try try.* .out core
8391
8392 echo " "
8393 echo "Let's see what value errno gets from read() on a $o_nonblock file..." >&4
8394 case "$eagain" in
8395 '')
8396         $cat head.c > try.c
8397         $cat >>try.c <<EOCP
8398 #include <errno.h>
8399 #include <sys/types.h>
8400 #include <signal.h>
8401 #include <stdio.h> 
8402 #define MY_O_NONBLOCK $o_nonblock
8403 #ifndef errno  /* XXX need better Configure test */
8404 extern int errno;
8405 #endif
8406 #$i_unistd I_UNISTD
8407 #ifdef I_UNISTD
8408 #include <unistd.h>
8409 #endif
8410 #ifdef $i_string
8411 #include <string.h>
8412 #else
8413 #include <strings.h>
8414 #endif
8415 $signal_t blech(x) int x; { exit(3); }
8416 EOCP
8417         $cat >> try.c <<'EOCP'
8418 int main()
8419 {
8420         int pd[2];
8421         int pu[2];
8422         char buf[1];
8423         char string[100];
8424
8425         pipe(pd);       /* Down: child -> parent */
8426         pipe(pu);       /* Up: parent -> child */
8427         if (0 != fork()) {
8428                 int ret;
8429                 close(pd[1]);   /* Parent reads from pd[0] */
8430                 close(pu[0]);   /* Parent writes (blocking) to pu[1] */
8431                 if (-1 == fcntl(pd[0], F_SETFL, MY_O_NONBLOCK))
8432                         exit(1);
8433                 signal(SIGALRM, blech);
8434                 alarm(5);
8435                 if ((ret = read(pd[0], buf, 1)) > 0)    /* Nothing to read! */
8436                         exit(2);
8437                 sprintf(string, "%d\n", ret);
8438                 write(2, string, strlen(string));
8439                 alarm(0);
8440 #ifdef EAGAIN
8441                 if (errno == EAGAIN) {
8442                         printf("EAGAIN\n");
8443                         goto ok;
8444                 }
8445 #endif
8446 #ifdef EWOULDBLOCK
8447                 if (errno == EWOULDBLOCK)
8448                         printf("EWOULDBLOCK\n");
8449 #endif
8450         ok:
8451                 write(pu[1], buf, 1);   /* Unblocks child, tell it to close our pipe */
8452                 sleep(2);                               /* Give it time to close our pipe */
8453                 alarm(5);
8454                 ret = read(pd[0], buf, 1);      /* Should read EOF */
8455                 alarm(0);
8456                 sprintf(string, "%d\n", ret);
8457                 write(3, string, strlen(string));
8458                 exit(0);
8459         }
8460
8461         close(pd[0]);                   /* We write to pd[1] */
8462         close(pu[1]);                   /* We read from pu[0] */
8463         read(pu[0], buf, 1);    /* Wait for parent to signal us we may continue */
8464         close(pd[1]);                   /* Pipe pd is now fully closed! */
8465         exit(0);                                /* Bye bye, thank you for playing! */
8466 }
8467 EOCP
8468         set try
8469         if eval $compile_ok; then
8470                 echo "$startsh" >mtry
8471                 echo "./try >try.out 2>try.ret 3>try.err || exit 4" >>mtry
8472                 chmod +x mtry
8473                 ./mtry >/dev/null 2>&1
8474                 case $? in
8475                 0) eagain=`$cat try.out`;;
8476                 1) echo "Could not perform non-blocking setting!";;
8477                 2) echo "I did a successful read() for something that was not there!";;
8478                 3) echo "Hmm... non-blocking I/O does not seem to be working!";;
8479                 *) echo "Something terribly wrong happened during testing.";;
8480                 esac
8481                 rd_nodata=`$cat try.ret`
8482                 echo "A read() system call with no data present returns $rd_nodata."
8483                 case "$rd_nodata" in
8484                 0|-1) ;;
8485                 *)
8486                         echo "(That's peculiar, fixing that to be -1.)"
8487                         rd_nodata=-1
8488                         ;;
8489                 esac
8490                 case "$eagain" in
8491                 '')
8492                         echo "Forcing errno EAGAIN on read() with no data available."
8493                         eagain=EAGAIN
8494                         ;;
8495                 *)
8496                         echo "Your read() sets errno to $eagain when no data is available."
8497                         ;;
8498                 esac
8499                 status=`$cat try.err`
8500                 case "$status" in
8501                 0) echo "And it correctly returns 0 to signal EOF.";;
8502                 -1) echo "But it also returns -1 to signal EOF, so be careful!";;
8503                 *) echo "However, your read() returns '$status' on EOF??";;
8504                 esac
8505                 val="$define"
8506                 if test "$status" = "$rd_nodata"; then
8507                         echo "WARNING: you can't distinguish between EOF and no data!"
8508                         val="$undef"
8509                 fi
8510         else
8511                 echo "I can't compile the test program--assuming errno EAGAIN will do."
8512                 eagain=EAGAIN
8513         fi
8514         set d_eofnblk
8515         eval $setvar
8516         ;;
8517 *)
8518         echo "Using $hint value $eagain."
8519         echo "Your read() returns $rd_nodata when no data is present."
8520         case "$d_eofnblk" in
8521         "$define") echo "And you can see EOF because read() returns 0.";;
8522         "$undef") echo "But you can't see EOF status from read() returned value.";;
8523         *)
8524                 echo "(Assuming you can't see EOF status from read anyway.)"
8525                 d_eofnblk=$undef
8526                 ;;
8527         esac
8528         ;;
8529 esac
8530 $rm -f try try.* .out core head.c mtry
8531
8532 : see if fchmod exists
8533 set fchmod d_fchmod
8534 eval $inlibc
8535
8536 : see if fchown exists
8537 set fchown d_fchown
8538 eval $inlibc
8539
8540 : see if this is an fcntl system
8541 set fcntl d_fcntl
8542 eval $inlibc
8543
8544 hasfield='varname=$1; struct=$2; field=$3; shift; shift; shift;
8545 while $test $# -ge 2; do
8546         case "$1" in
8547         $define) echo "#include <$2>";;
8548         esac ;
8549     shift 2;
8550 done > try.c;
8551 echo "int main () { struct $struct foo; char* bar; bar = (char*)foo.$field; }" >> try.c;
8552 set try;
8553 if eval $compile; then
8554         val="$define";
8555 else
8556         val="$undef";
8557 fi;
8558 set $varname;
8559 eval $setvar;
8560 $rm -f try.c try.o'
8561
8562 socketlib=''
8563 sockethdr=''
8564 : see whether socket exists
8565 echo " "
8566 $echo $n "Hmm... $c" >&4
8567 if set socket val -f d_socket; eval $csym; $val; then
8568         echo "Looks like you have Berkeley networking support." >&4
8569         d_socket="$define"
8570         if set setsockopt val -f; eval $csym; $val; then
8571                 d_oldsock="$undef"
8572         else
8573                 echo "...but it uses the old BSD 4.1c interface, rather than 4.2." >&4
8574                 d_oldsock="$define"
8575         fi
8576 else
8577         if $contains socklib libc.list >/dev/null 2>&1; then
8578                 echo "Looks like you have Berkeley networking support." >&4
8579                 d_socket="$define"
8580                 : we will have to assume that it supports the 4.2 BSD interface
8581                 d_oldsock="$undef"
8582         else
8583                 echo "You don't have Berkeley networking in libc$_a..." >&4
8584                 if test "X$d_socket" = "X$define"; then
8585                    echo "...but you seem to believe that you have sockets." >&4
8586                 else
8587                         for net in net socket
8588                         do
8589                                 if test -f /usr/lib/lib$net$_a; then
8590                                         ( ($nm $nm_opt /usr/lib/lib$net$_a | eval $nm_extract) ||  \
8591                                         $ar t /usr/lib/lib$net$_a) 2>/dev/null >> libc.list
8592                                         if $contains socket libc.list >/dev/null 2>&1; then
8593                                                 d_socket="$define"
8594                                                 socketlib="-l$net"
8595                                                 case "$net" in
8596                                                 net)
8597                                                         echo "...but the Wollongong group seems to have hacked it in." >&4
8598                                                         sockethdr="-I/usr/netinclude"
8599                                                         ;;
8600                                                 esac
8601                                                 echo "Found Berkeley sockets interface in lib$net." >& 4 
8602                                                 if $contains setsockopt libc.list >/dev/null 2>&1; then
8603                                                         d_oldsock="$undef"
8604                                                 else
8605                                                         echo "...using the old BSD 4.1c interface, rather than 4.2." >&4
8606                                                         d_oldsock="$define"
8607                                                 fi
8608                                                 break
8609                                         fi
8610                                 fi
8611                         done
8612                         if test "X$d_socket" != "X$define"; then
8613                            echo "or anywhere else I see." >&4
8614                            d_socket="$undef"
8615                            d_oldsock="$undef"
8616                         fi
8617                 fi
8618         fi
8619 fi
8620
8621 : see if socketpair exists
8622 set socketpair d_sockpair
8623 eval $inlibc
8624
8625
8626 echo " "
8627 echo "Checking the availability of certain socket constants..." >& 4
8628 for ENUM in MSG_CTRUNC MSG_DONTROUTE MSG_OOB MSG_PEEK MSG_PROXY SCM_RIGHTS; do
8629         enum=`$echo $ENUM|./tr '[A-Z]' '[a-z]'`
8630         $cat >try.c <<EOF
8631 #include <sys/types.h>
8632 #include <sys/socket.h>
8633 int main() {
8634     int i = $ENUM;
8635 }
8636 EOF
8637         val="$undef"
8638         set try; if eval $compile; then
8639                 val="$define"
8640         fi
8641         set d_${enum}; eval $setvar
8642         $rm -f try.c try
8643 done
8644
8645 : see if sys/select.h has to be included
8646 set sys/select.h i_sysselct
8647 eval $inhdr
8648
8649 : see if we should include time.h, sys/time.h, or both
8650 echo " "
8651 if test "X$timeincl" = X; then
8652         echo "Testing to see if we should include <time.h>, <sys/time.h> or both." >&4
8653         $echo $n "I'm now running the test program...$c"
8654         $cat >try.c <<'EOCP'
8655 #include <sys/types.h>
8656 #ifdef I_TIME
8657 #include <time.h>
8658 #endif
8659 #ifdef I_SYSTIME
8660 #ifdef SYSTIMEKERNEL
8661 #define KERNEL
8662 #endif
8663 #include <sys/time.h>
8664 #endif
8665 #ifdef I_SYSSELECT
8666 #include <sys/select.h>
8667 #endif
8668 int main()
8669 {
8670         struct tm foo;
8671 #ifdef S_TIMEVAL
8672         struct timeval bar;
8673 #endif
8674 #ifdef S_TIMEZONE
8675         struct timezone tzp;
8676 #endif
8677         if (foo.tm_sec == foo.tm_sec)
8678                 exit(0);
8679 #ifdef S_TIMEVAL
8680         if (bar.tv_sec == bar.tv_sec)
8681                 exit(0);
8682 #endif
8683         exit(1);
8684 }
8685 EOCP
8686         flags=''
8687         for s_timezone in '-DS_TIMEZONE' ''; do
8688         sysselect=''
8689         for s_timeval in '-DS_TIMEVAL' ''; do
8690         for i_systimek in '' '-DSYSTIMEKERNEL'; do
8691         for i_time in '' '-DI_TIME'; do
8692         for i_systime in '-DI_SYSTIME' ''; do
8693                 case "$flags" in
8694                 '') $echo $n ".$c"
8695                         set try $i_time $i_systime $i_systimek $sysselect $s_timeval $s_timezone
8696                         if eval $compile; then
8697                                 set X $i_time $i_systime $i_systimek $sysselect $s_timeval
8698                                 shift
8699                                 flags="$*"
8700                                 echo " "
8701                                 $echo $n "Succeeded with $flags$c"
8702                         fi
8703                         ;;
8704                 esac
8705         done
8706         done
8707         done
8708         done
8709         done
8710         timeincl=''
8711         echo " "
8712         case "$flags" in
8713         *SYSTIMEKERNEL*) i_systimek="$define"
8714                 timeincl=`./findhdr sys/time.h`
8715                 echo "We'll include <sys/time.h> with KERNEL defined." >&4;;
8716         *) i_systimek="$undef";;
8717         esac
8718         case "$flags" in
8719         *I_TIME*) i_time="$define"
8720                 timeincl=`./findhdr time.h`" $timeincl"
8721                 echo "We'll include <time.h>." >&4;;
8722         *) i_time="$undef";;
8723         esac
8724         case "$flags" in
8725         *I_SYSTIME*) i_systime="$define"
8726                 timeincl=`./findhdr sys/time.h`" $timeincl"
8727                 echo "We'll include <sys/time.h>." >&4;;
8728         *) i_systime="$undef";;
8729         esac
8730         $rm -f try.c try
8731 fi
8732
8733 : check for fd_set items
8734 $cat <<EOM
8735
8736 Checking to see how well your C compiler handles fd_set and friends ...
8737 EOM
8738 $cat >fd_set.c <<EOCP
8739 #$i_systime I_SYS_TIME
8740 #$i_sysselct I_SYS_SELECT
8741 #$d_socket HAS_SOCKET
8742 #include <sys/types.h>
8743 #ifdef HAS_SOCKET
8744 #include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
8745 #endif
8746 #ifdef I_SYS_TIME
8747 #include <sys/time.h>
8748 #endif
8749 #ifdef I_SYS_SELECT
8750 #include <sys/select.h>
8751 #endif
8752 int main() {
8753         fd_set fds;
8754
8755 #ifdef TRYBITS
8756         if(fds.fds_bits);
8757 #endif
8758
8759 #if defined(FD_SET) && defined(FD_CLR) && defined(FD_ISSET) && defined(FD_ZERO)
8760         exit(0);
8761 #else
8762         exit(1);
8763 #endif
8764 }
8765 EOCP
8766 set fd_set -DTRYBITS
8767 if eval $compile; then
8768         d_fds_bits="$define"
8769         d_fd_set="$define"
8770         echo "Well, your system knows about the normal fd_set typedef..." >&4
8771         if ./fd_set; then
8772                 echo "and you have the normal fd_set macros (just as I'd expect)." >&4
8773                 d_fd_macros="$define"
8774         else
8775                 $cat >&4 <<'EOM'
8776 but not the normal fd_set macros!  Gaaack!  I'll have to cover for you.
8777 EOM
8778                 d_fd_macros="$undef"
8779         fi
8780 else
8781         $cat <<'EOM'
8782 Hmm, your compiler has some difficulty with fd_set.  Checking further...
8783 EOM
8784         set fd_set
8785         if eval $compile; then
8786                 d_fds_bits="$undef"
8787                 d_fd_set="$define"
8788                 echo "Well, your system has some sort of fd_set available..." >&4
8789                 if ./fd_set; then
8790                         echo "and you have the normal fd_set macros." >&4
8791                         d_fd_macros="$define"
8792                 else
8793                         $cat <<'EOM'
8794 but not the normal fd_set macros!  Gross!  More work for me...
8795 EOM
8796                         d_fd_macros="$undef"
8797                 fi
8798         else
8799         echo "Well, you got zip.  That's OK, I can roll my own fd_set stuff." >&4
8800                 d_fd_set="$undef"
8801                 d_fds_bits="$undef"
8802                 d_fd_macros="$undef"
8803         fi
8804 fi
8805 $rm -f fd_set*
8806
8807 : see if fgetpos exists
8808 set fgetpos d_fgetpos
8809 eval $inlibc
8810
8811 : see if flock exists
8812 set flock d_flock
8813 eval $inlibc
8814
8815 : see if fork exists
8816 set fork d_fork
8817 eval $inlibc
8818
8819 : see if pathconf exists
8820 set pathconf d_pathconf
8821 eval $inlibc
8822
8823 : see if fpathconf exists
8824 set fpathconf d_fpathconf
8825 eval $inlibc
8826
8827
8828 : check for off64_t
8829 echo " "
8830 echo "Checking to see if your system supports off64_t..." >&4
8831 $cat >try.c <<EOCP
8832 #include <sys/types.h>
8833 #include <unistd.h>
8834 int main() { off64_t x = 7; }'
8835 EOCP
8836 set try
8837 if eval $compile; then
8838         val="$define"
8839         echo "Yes, it does."
8840 else
8841         val="$undef"
8842         echo "No, it doesn't."
8843         case "$lseeksize" in
8844         8) echo "(Your off_t is 64 bits, so you could use that.)" ;;
8845         esac
8846 fi
8847 $rm -f try.* try
8848 set d_off64_t
8849 eval $setvar
8850
8851 : check for fpos64_t
8852 echo " "
8853 echo "Checking to see if your system supports fpos64_t..." >&4
8854 $cat >try.c <<EOCP
8855 #include <sys/stdio.h>
8856 int main() { fpos64_t x x = 7; }'
8857 EOCP
8858 set try
8859 if eval $compile; then
8860         val="$define"
8861         echo "Yes, it does."
8862 else
8863         val="$undef"
8864         echo "No, it doesn't."
8865         case "$fpossize" in
8866         8) echo "(Your fpos_t is 64 bits, so you could use that.)" ;;
8867         esac
8868 fi
8869 $rm -f try.* try
8870 set d_fpos64_t
8871 eval $setvar
8872
8873 hasstruct='varname=$1; struct=$2; shift; shift;
8874 while $test $# -ge 2; do
8875         case "$1" in
8876         $define) echo "#include <$2>";;
8877         esac ;
8878     shift 2;
8879 done > try.c;
8880 echo "int main () { struct $struct foo; }" >> try.c;
8881 set try;
8882 if eval $compile; then
8883         val="$define";
8884 else
8885         val="$undef";
8886 fi;
8887 set $varname;
8888 eval $setvar;
8889 $rm -f try.c try.o'
8890
8891 : see if this is a sys/param system
8892 set sys/param.h i_sysparam
8893 eval $inhdr
8894
8895 : see if this is a sys/mount.h system
8896 set sys/mount.h i_sysmount
8897 eval $inhdr
8898
8899 : see if sys/types.h has to be included
8900 set sys/types.h i_systypes
8901 eval $inhdr
8902
8903
8904 echo " "
8905 echo "Checking to see if your system supports struct fs_data..." >&4
8906 set d_fs_data_s fs_data $i_systypes sys/types.h $i_sysparam sys/param.h $i_sysmount sys/mount.h
8907 eval $hasstruct
8908 case "$d_fs_data_s" in
8909 "$define")      echo "Yes, it does."   ;;
8910 *)              echo "No, it doesn't." ;;
8911 esac
8912
8913 : see if fseeko exists
8914 set fseeko d_fseeko
8915 eval $inlibc
8916 case "$longsize" in
8917 8) echo "(Your long is 64 bits, so in a pinch you could use fseek.)" ;;
8918 esac
8919
8920 : see if fsetpos exists
8921 set fsetpos d_fsetpos
8922 eval $inlibc
8923
8924
8925 : see if fstatfs exists
8926 set fstatfs d_fstatfs
8927 eval $inlibc
8928
8929
8930 : see if statvfs exists
8931 set statvfs d_statvfs
8932 eval $inlibc
8933
8934 : see if fstatvfs exists
8935 set fstatvfs d_fstatvfs
8936 eval $inlibc
8937
8938
8939 : see if ftello exists
8940 set ftello d_ftello
8941 eval $inlibc
8942 case "$longsize" in
8943 8) echo "(Your long is 64 bits, so in a pinch you could use ftell.)" ;;
8944 esac
8945
8946 : see if getgrent exists
8947 set getgrent d_getgrent
8948 eval $inlibc
8949
8950 : see if gethostbyaddr exists
8951 set gethostbyaddr d_gethbyaddr
8952 eval $inlibc
8953
8954 : see if gethostbyname exists
8955 set gethostbyname d_gethbyname
8956 eval $inlibc
8957
8958 : see if gethostent exists
8959 set gethostent d_gethent
8960 eval $inlibc
8961
8962 : see how we will look up host name
8963 echo " "
8964 call=''
8965 if set gethostname val -f d_gethname; eval $csym; $val; then
8966         echo 'gethostname() found.' >&4
8967         d_gethname="$define"
8968         call=gethostname
8969 fi
8970 if set uname val -f d_uname; eval $csym; $val; then
8971         if ./xenix; then
8972                 $cat <<'EOM'
8973 uname() was found, but you're running xenix, and older versions of xenix
8974 have a broken uname(). If you don't really know whether your xenix is old
8975 enough to have a broken system call, use the default answer.
8976
8977 EOM
8978                 dflt=y
8979                 case "$d_uname" in
8980                 "$define") dflt=n;;
8981                 esac
8982                 rp='Is your uname() broken?'
8983                 . ./myread
8984                 case "$ans" in
8985                 n*) d_uname="$define"; call=uname;;
8986                 esac
8987         else
8988                 echo 'uname() found.' >&4
8989                 d_uname="$define"
8990                 case "$call" in
8991                 '') call=uname ;;
8992                 esac
8993         fi
8994 fi
8995 case "$d_gethname" in
8996 '') d_gethname="$undef";;
8997 esac
8998 case "$d_uname" in
8999 '') d_uname="$undef";;
9000 esac
9001 case "$d_uname$d_gethname" in
9002 *define*)
9003         dflt=n
9004         cat <<EOM
9005  
9006 Every now and then someone has a $call() that lies about the hostname
9007 but can't be fixed for political or economic reasons.  If you wish, I can
9008 pretend $call() isn't there and maybe compute hostname at run-time
9009 thanks to the '$phostname' command.
9010
9011 EOM
9012         rp="Shall I ignore $call() from now on?"
9013         . ./myread
9014         case "$ans" in
9015         y*) d_uname="$undef" d_gethname="$undef"; $echo $n "Okay...$c";;
9016         esac;;
9017 esac
9018 case "$phostname" in
9019 '') aphostname='';;
9020 *) case "$aphostname" in
9021         /*) ;;
9022         *) set X $phostname
9023                 shift
9024                 file=$1
9025                 shift
9026                 file=`./loc $file $file $pth`
9027                 aphostname=`echo $file $*`
9028                 ;;
9029         esac
9030         ;;
9031 esac
9032 case "$d_uname$d_gethname" in
9033 *define*) ;;
9034 *)
9035         case "$phostname" in
9036         '')
9037                 echo "There will be no way for $package to get your hostname." >&4;;
9038         *)
9039         echo "I'll use 'popen("'"'$aphostname'", "r")'"' to get your hostname." >&4
9040                 ;;
9041         esac;;
9042 esac
9043 case "$d_phostname" in
9044 '') d_phostname="$undef";;
9045 esac
9046
9047 : see if this is a netdb.h system
9048 set netdb.h i_netdb
9049 eval $inhdr
9050
9051 : see if prototypes for various gethostxxx netdb.h functions are available
9052 echo " "
9053 set d_gethostprotos gethostent $i_netdb netdb.h
9054 eval $hasproto
9055
9056 : see if getlogin exists
9057 set getlogin d_getlogin
9058 eval $inlibc
9059
9060 : see if getmnt exists
9061 set getmnt d_getmnt
9062 eval $inlibc
9063
9064 : see if getmntent exists
9065 set getmntent d_getmntent
9066 eval $inlibc
9067
9068 : see if getnetbyaddr exists
9069 set getnetbyaddr d_getnbyaddr
9070 eval $inlibc
9071
9072 : see if getnetbyname exists
9073 set getnetbyname d_getnbyname
9074 eval $inlibc
9075
9076 : see if getnetent exists
9077 set getnetent d_getnent
9078 eval $inlibc
9079
9080 : see if prototypes for various getnetxxx netdb.h functions are available
9081 echo " "
9082 set d_getnetprotos getnetent $i_netdb netdb.h
9083 eval $hasproto
9084
9085
9086 : see if getprotobyname exists
9087 set getprotobyname d_getpbyname
9088 eval $inlibc
9089
9090 : see if getprotobynumber exists
9091 set getprotobynumber d_getpbynumber
9092 eval $inlibc
9093
9094 : see if getprotoent exists
9095 set getprotoent d_getpent
9096 eval $inlibc
9097
9098 : see if getpgid exists
9099 set getpgid d_getpgid
9100 eval $inlibc
9101
9102 : see if getpgrp2 exists
9103 set getpgrp2 d_getpgrp2
9104 eval $inlibc
9105
9106 : see if getppid exists
9107 set getppid d_getppid
9108 eval $inlibc
9109
9110 : see if getpriority exists
9111 set getpriority d_getprior
9112 eval $inlibc
9113
9114 : see if prototypes for various getprotoxxx netdb.h functions are available
9115 echo " "
9116 set d_getprotoprotos getprotoent $i_netdb netdb.h
9117 eval $hasproto
9118
9119 : see if getpwent exists
9120 set getpwent d_getpwent
9121 eval $inlibc
9122
9123
9124 : see if getservbyname exists
9125 set getservbyname d_getsbyname
9126 eval $inlibc
9127
9128 : see if getservbyport exists
9129 set getservbyport d_getsbyport
9130 eval $inlibc
9131
9132 : see if getservent exists
9133 set getservent d_getsent
9134 eval $inlibc
9135
9136 : see if prototypes for various getservxxx netdb.h functions are available
9137 echo " "
9138 set d_getservprotos getservent $i_netdb netdb.h
9139 eval $hasproto
9140
9141 : see if getspent exists
9142 set getspent d_getspent
9143 eval $inlibc
9144
9145 : see if getspnam exists
9146 set getspnam d_getspnam
9147 eval $inlibc
9148
9149 : see if gettimeofday or ftime exists
9150 set gettimeofday d_gettimeod
9151 eval $inlibc
9152 case "$d_gettimeod" in
9153 "$undef")
9154         set ftime d_ftime 
9155         eval $inlibc
9156         ;;
9157 *)
9158         val="$undef"; set d_ftime; eval $setvar
9159         ;;
9160 esac
9161 case "$d_gettimeod$d_ftime" in
9162 "$undef$undef")
9163         echo " "
9164         echo 'No ftime() nor gettimeofday() -- timing may be less accurate.' >&4
9165         ;;
9166 esac
9167
9168 : see if this is an grp system
9169 set grp.h i_grp
9170 eval $inhdr
9171
9172 case "$i_grp" in
9173 $define)
9174         xxx=`./findhdr grp.h`
9175         $cppstdin $cppflags $cppminus < $xxx >$$.h
9176
9177         if $contains 'gr_passwd' $$.h >/dev/null 2>&1; then
9178                 val="$define"
9179         else
9180                 val="$undef"
9181         fi
9182         set d_grpasswd
9183         eval $setvar
9184
9185         $rm -f $$.h
9186         ;;
9187 *)
9188         val="$undef";
9189         set d_grpasswd; eval $setvar
9190         ;;
9191 esac
9192
9193 : see if hasmntopt exists
9194 set hasmntopt d_hasmntopt
9195 eval $inlibc
9196
9197 : see if this is a netinet/in.h or sys/in.h system
9198 set netinet/in.h i_niin sys/in.h i_sysin
9199 eval $inhdr
9200
9201 : see if arpa/inet.h has to be included
9202 set arpa/inet.h i_arpainet
9203 eval $inhdr
9204
9205 : see if htonl --and friends-- exists
9206 val=''
9207 set htonl val
9208 eval $inlibc
9209
9210 : Maybe they are macros.
9211 case "$val" in
9212 $undef)
9213         $cat >htonl.c <<EOM
9214 #include <stdio.h>
9215 #include <sys/types.h>
9216 #$i_niin I_NETINET_IN
9217 #$i_sysin I_SYS_IN
9218 #$i_arpainet I_ARPA_INET
9219 #ifdef I_NETINET_IN
9220 #include <netinet/in.h>
9221 #endif
9222 #ifdef I_SYS_IN
9223 #include <sys/in.h>
9224 #endif
9225 #ifdef I_ARPA_INET
9226 #include <arpa/inet.h>
9227 #endif
9228 #ifdef htonl
9229 printf("Defined as a macro.");
9230 #endif
9231 EOM
9232         $cppstdin $cppflags $cppminus < htonl.c >htonl.E 2>/dev/null
9233         if $contains 'Defined as a macro' htonl.E >/dev/null 2>&1; then
9234                 val="$define"
9235                 echo "But it seems to be defined as a macro." >&4
9236         fi
9237         $rm -f htonl.?
9238         ;;
9239 esac
9240 set d_htonl
9241 eval $setvar
9242
9243 : index or strchr
9244 echo " "
9245 if set index val -f; eval $csym; $val; then
9246         if set strchr val -f d_strchr; eval $csym; $val; then
9247                 if $contains strchr "$strings" >/dev/null 2>&1 ; then
9248                         val="$define"
9249                         vali="$undef"
9250                         echo "strchr() found." >&4
9251                 else
9252                         val="$undef"
9253                         vali="$define"
9254                         echo "index() found." >&4
9255                 fi
9256         else
9257                 val="$undef"
9258                 vali="$define"
9259                 echo "index() found." >&4
9260         fi
9261 else
9262         if set strchr val -f d_strchr; eval $csym; $val; then
9263                 val="$define"
9264                 vali="$undef"
9265                 echo "strchr() found." >&4
9266         else
9267                 echo "No index() or strchr() found!" >&4
9268                 val="$undef"
9269                 vali="$undef"
9270         fi
9271 fi
9272 set d_strchr; eval $setvar
9273 val="$vali"
9274 set d_index; eval $setvar
9275
9276 : check whether inet_aton exists
9277 set inet_aton d_inetaton
9278 eval $inlibc
9279
9280 : Look for isascii
9281 echo " "
9282 $cat >isascii.c <<'EOCP'
9283 #include <stdio.h>
9284 #include <ctype.h>
9285 int main() {
9286         int c = 'A';
9287         if (isascii(c))
9288                 exit(0);
9289         else
9290                 exit(1);
9291 }
9292 EOCP
9293 set isascii
9294 if eval $compile; then
9295         echo "isascii() found." >&4
9296         val="$define"
9297 else
9298         echo "isascii() NOT found." >&4
9299         val="$undef"
9300 fi
9301 set d_isascii
9302 eval $setvar
9303 $rm -f isascii*
9304
9305 : see if killpg exists
9306 set killpg d_killpg
9307 eval $inlibc
9308
9309 : see if lchown exists
9310 echo " "
9311 $cat > try.c <<'EOCP'
9312 /* System header to define __stub macros and hopefully few prototypes,
9313     which can conflict with char lchown(); below.  */
9314 #include <assert.h>
9315 /* Override any gcc2 internal prototype to avoid an error.  */
9316 /* We use char because int might match the return type of a gcc2
9317    builtin and then its argument prototype would still apply.  */
9318 char lchown();
9319 int main() {
9320     /*  The GNU C library defines this for functions which it implements
9321         to always fail with ENOSYS.  Some functions are actually named
9322         something starting with __ and the normal name is an alias.  */
9323 #if defined (__stub_lchown) || defined (__stub___lchown)
9324 choke me
9325 #else
9326 lchown();
9327 #endif
9328 ; return 0; }
9329 EOCP
9330 set try
9331 if eval $compile; then
9332     $echo "lchown() found." >&4
9333     val="$define"
9334 else
9335     $echo "lchown() NOT found." >&4
9336     val="$undef"
9337 fi
9338 set d_lchown
9339 eval $setvar
9340
9341 : See if number of significant digits in a double precision number is known
9342 echo " "
9343 $cat >ldbl_dig.c <<EOM
9344 #$i_limits I_LIMITS
9345 #$i_float I_FLOAT
9346 #ifdef I_LIMITS
9347 #include <limits.h>
9348 #endif
9349 #ifdef I_FLOAT
9350 #include <float.h>
9351 #endif
9352 #ifdef LDBL_DIG
9353 printf("Contains LDBL_DIG");
9354 #endif
9355 EOM
9356 $cppstdin $cppflags $cppminus < ldbl_dig.c >ldbl_dig.E 2>/dev/null
9357 if $contains 'LDBL_DIG' ldbl_dig.E >/dev/null 2>&1; then
9358         echo "LDBL_DIG found." >&4
9359         val="$define"
9360 else
9361         echo "LDBL_DIG NOT found." >&4
9362         val="$undef"
9363 fi
9364 $rm -f ldbl_dig.?
9365 set d_ldbl_dig
9366 eval $setvar
9367
9368 : see if link exists
9369 set link d_link
9370 eval $inlibc
9371
9372 : see if localeconv exists
9373 set localeconv d_locconv
9374 eval $inlibc
9375
9376 : see if lockf exists
9377 set lockf d_lockf
9378 eval $inlibc
9379
9380 : check for long long
9381 echo " "
9382 $echo $n "Checking to see if your system supports long long..." $c >&4
9383 echo 'int main() { long long x = 7; return 0; }' > try.c
9384 set try
9385 if eval $compile; then
9386         val="$define"
9387         echo " Yes, it does." >&4
9388 else
9389         val="$undef"
9390         echo " No, it doesn't." >&4
9391 fi
9392 $rm try.*
9393 set d_longlong
9394 eval $setvar
9395
9396 : check for length of long long
9397 case "${d_longlong}${longlongsize}" in
9398 $define)
9399         echo " "
9400         $echo $n "Checking to see how big your long longs are..." $c >&4
9401         $cat >try.c <<'EOCP'
9402 #include <stdio.h>
9403 int main()
9404 {
9405     printf("%d\n", (int)sizeof(long long));
9406     return(0);
9407 }
9408 EOCP
9409         set try
9410         if eval $compile_ok; then
9411                 longlongsize=`./try$exe_ext`
9412                 $echo " $longlongsize bytes." >&4
9413         else
9414                 dflt='8'
9415                 echo " "
9416                 echo "(I can't seem to compile the test program.  Guessing...)"
9417                 rp="What is the size of a long long (in bytes)?"
9418                 . ./myread
9419                 longlongsize="$ans"
9420         fi
9421         if $test "X$longsize" = "X$longlongsize"; then
9422                 echo "(That isn't any different from an ordinary long.)"
9423         fi      
9424         ;;
9425 esac
9426 $rm -f try.* try
9427
9428 : see if lstat exists
9429 set lstat d_lstat
9430 eval $inlibc
9431
9432 : see if mblen exists
9433 set mblen d_mblen
9434 eval $inlibc
9435
9436 : see if mbstowcs exists
9437 set mbstowcs d_mbstowcs
9438 eval $inlibc
9439
9440 : see if mbtowc exists
9441 set mbtowc d_mbtowc
9442 eval $inlibc
9443
9444 : see if memchr exists
9445 set memchr d_memchr
9446 eval $inlibc
9447
9448 : see if memcmp exists
9449 set memcmp d_memcmp
9450 eval $inlibc
9451
9452 : see if memcpy exists
9453 set memcpy d_memcpy
9454 eval $inlibc
9455
9456 : see if memmove exists
9457 set memmove d_memmove
9458 eval $inlibc
9459
9460 : see if memset exists
9461 set memset d_memset
9462 eval $inlibc
9463
9464 : see if mkdir exists
9465 set mkdir d_mkdir
9466 eval $inlibc
9467
9468 : see if mkfifo exists
9469 set mkfifo d_mkfifo
9470 eval $inlibc
9471
9472 : see if mktime exists
9473 set mktime d_mktime
9474 eval $inlibc
9475
9476 : see if msgctl exists
9477 set msgctl d_msgctl
9478 eval $inlibc
9479
9480 : see if msgget exists
9481 set msgget d_msgget
9482 eval $inlibc
9483
9484 : see if msgsnd exists
9485 set msgsnd d_msgsnd
9486 eval $inlibc
9487
9488 : see if msgrcv exists
9489 set msgrcv d_msgrcv
9490 eval $inlibc
9491
9492 : see how much of the 'msg*(2)' library is present.
9493 h_msg=true
9494 echo " "
9495 case "$d_msgctl$d_msgget$d_msgsnd$d_msgrcv" in
9496 *"$undef"*) h_msg=false;;
9497 esac
9498 case "$osname" in
9499 freebsd)
9500     case "`ipcs 2>&1`" in
9501     "SVID messages"*"not configured"*)
9502         echo "Your $osname does not have the msg*(2) configured." >&4
9503         h_msg=false
9504         val="$undef"
9505         set msgctl d_msgctl
9506         eval $setvar
9507         set msgget d_msgget
9508         eval $setvar
9509         set msgsnd d_msgsnd
9510         eval $setvar
9511         set msgrcv d_msgrcv
9512         eval $setvar
9513         ;;
9514     esac
9515     ;;
9516 esac
9517 : we could also check for sys/ipc.h ...
9518 if $h_msg && $test `./findhdr sys/msg.h`; then
9519         echo "You have the full msg*(2) library." >&4
9520         val="$define"
9521 else
9522         echo "You don't have the full msg*(2) library." >&4
9523         val="$undef"
9524 fi
9525 set d_msg
9526 eval $setvar
9527
9528 : see if nice exists
9529 set nice d_nice
9530 eval $inlibc
9531
9532 : see if POSIX threads are available
9533 set pthread.h i_pthread
9534 eval $inhdr
9535
9536
9537
9538
9539 : how to create joinable pthreads
9540 if test "X$usethreads" = "X$define" -a "X$i_pthread" = "X$define"; then
9541         echo " "
9542         echo "Checking what constant to use for creating joinable pthreads..." >&4 
9543         $cat >try.c <<'EOCP'
9544 #include <pthread.h>
9545 int main() {
9546     int detachstate = JOINABLE;
9547 }
9548 EOCP
9549         set try -DJOINABLE=PTHREAD_CREATE_JOINABLE
9550         if eval $compile; then
9551                 echo "You seem to use PTHREAD_CREATE_JOINABLE." >&4
9552                 val="$undef" # Yes, undef.
9553                 set d_old_pthread_create_joinable
9554                 eval $setvar
9555                 val=""
9556                 set old_pthread_create_joinable
9557                 eval $setvar
9558         else
9559                 set try -DJOINABLE=PTHREAD_CREATE_UNDETACHED
9560                 if eval $compile; then
9561                         echo "You seem to use PTHREAD_CREATE_UNDETACHED." >&4
9562                         val="$define"
9563                         set d_old_pthread_create_joinable
9564                         eval $setvar
9565                         val=PTHREAD_CREATE_UNDETACHED
9566                         set old_pthread_create_joinable
9567                         eval $setvar
9568                 else            
9569                         set try -DJOINABLE=__UNDETACHED
9570                         if eval $compile; then
9571                                 echo "You seem to use __UNDETACHED." >&4
9572                                 val="$define"
9573                                 set d_old_pthread_create_joinable
9574                                 eval $setvar
9575                                 val=__UNDETACHED
9576                                 set old_pthread_create_joinable
9577                                 eval $setvar
9578                         else
9579                                 echo "Egads, nothing obvious found.  Guessing that you use 0." >&4
9580                                 val="$define"
9581                                 set d_old_pthread_create_joinable
9582                                 eval $setvar
9583                                 val=0
9584                                 set old_pthread_create_joinable
9585                                 eval $setvar
9586                         fi
9587                 fi
9588         fi
9589         $rm -f try try.*
9590 else
9591     d_old_pthread_create_joinable="$undef"
9592     old_pthread_create_joinable=""
9593 fi
9594
9595 : see if pause exists
9596 set pause d_pause
9597 eval $inlibc
9598
9599 : see if pipe exists
9600 set pipe d_pipe
9601 eval $inlibc
9602
9603 : see if poll exists
9604 set poll d_poll
9605 eval $inlibc
9606
9607
9608 : see whether the various POSIXish _yields exist
9609 $cat >try.c <<EOP
9610 #include <pthread.h>
9611 #include <stdio.h>
9612 int main() {
9613 #ifdef SCHED_YIELD
9614         sched_yield();
9615 #else
9616 #ifdef PTHREAD_YIELD
9617         pthread_yield();
9618 #else
9619 #ifdef PTHREAD_YIELD_NULL
9620         pthread_yield(NULL);
9621 #endif
9622 #endif
9623 #endif
9624 }
9625 EOP
9626 : see if sched_yield exists
9627 set try -DSCHED_YIELD
9628 if eval $compile; then
9629     val="$define"
9630     sched_yield='sched_yield()'
9631 else
9632     val="$undef"
9633 fi
9634 case "$usethreads" in
9635 $define)
9636         case "$val" in
9637         $define) echo 'sched_yield() found.' >&4        ;;
9638         *)       echo 'sched_yield() NOT found.' >&4    ;;
9639         esac
9640 esac
9641 set d_sched_yield
9642 eval $setvar
9643
9644 : see if pthread_yield exists
9645 set try -DPTHREAD_YIELD
9646 if eval $compile; then
9647     val="$define"
9648     case "$sched_yield" in
9649     '') sched_yield='pthread_yield()' ;;
9650     esac
9651 else
9652     set try -DPTHREAD_YIELD_NULL
9653     if eval $compile; then
9654         val="$define"
9655         case "$sched_yield" in
9656         '') sched_yield='pthread_yield(NULL)' ;;
9657         esac
9658     else
9659         val="$undef"
9660     fi
9661 fi
9662 case "$usethreads" in
9663 $define)
9664         case "$val" in
9665         $define) echo 'pthread_yield() found.' >&4      ;;
9666         *)       echo 'pthread_yield() NOT found.' >&4  ;;
9667         esac
9668         ;;
9669 esac
9670 set d_pthread_yield
9671 eval $setvar
9672
9673 case "$sched_yield" in
9674 '') sched_yield=undef ;;
9675 esac
9676
9677 $rm -f try try.*
9678
9679 : see if this is a pwd.h system
9680 set pwd.h i_pwd
9681 eval $inhdr
9682
9683 case "$i_pwd" in
9684 $define)
9685         xxx=`./findhdr pwd.h`
9686         $cppstdin $cppflags $cppminus < $xxx >$$.h
9687
9688         if $contains 'pw_quota' $$.h >/dev/null 2>&1; then
9689                 val="$define"
9690         else
9691                 val="$undef"
9692         fi
9693         set d_pwquota
9694         eval $setvar
9695
9696         if $contains 'pw_age' $$.h >/dev/null 2>&1; then
9697                 val="$define"
9698         else
9699                 val="$undef"
9700         fi
9701         set d_pwage
9702         eval $setvar
9703
9704         if $contains 'pw_change' $$.h >/dev/null 2>&1; then
9705                 val="$define"
9706         else
9707                 val="$undef"
9708         fi
9709         set d_pwchange
9710         eval $setvar
9711
9712         if $contains 'pw_class' $$.h >/dev/null 2>&1; then
9713                 val="$define"
9714         else
9715                 val="$undef"
9716         fi
9717         set d_pwclass
9718         eval $setvar
9719
9720         if $contains 'pw_expire' $$.h >/dev/null 2>&1; then
9721                 val="$define"
9722         else
9723                 val="$undef"
9724         fi
9725         set d_pwexpire
9726         eval $setvar
9727
9728         if $contains 'pw_comment' $$.h >/dev/null 2>&1; then
9729                 val="$define"
9730         else
9731                 val="$undef"
9732         fi
9733         set d_pwcomment
9734         eval $setvar
9735
9736         if $contains 'pw_gecos' $$.h >/dev/null 2>&1; then
9737                 val="$define"
9738         else
9739                 val="$undef"
9740         fi
9741         set d_pwgecos
9742         eval $setvar
9743
9744         if $contains 'pw_passwd' $$.h >/dev/null 2>&1; then
9745                 val="$define"
9746         else
9747                 val="$undef"
9748         fi
9749         set d_pwpasswd
9750         eval $setvar
9751
9752         $rm -f $$.h
9753         ;;
9754 *)
9755         val="$undef"; 
9756         set d_pwquota; eval $setvar
9757         set d_pwage; eval $setvar
9758         set d_pwchange; eval $setvar
9759         set d_pwclass; eval $setvar
9760         set d_pwexpire; eval $setvar
9761         set d_pwcomment; eval $setvar
9762         set d_pwgecos; eval $setvar
9763         set d_pwpasswd; eval $setvar
9764         ;;
9765 esac
9766
9767 : see if inttypes.h is available
9768 : we want a real compile instead of Inhdr because some systems
9769 : have an inttypes.h which includes non-existent headers
9770 echo " "
9771 $cat >try.c <<EOCP
9772 #include <inttypes.h>
9773 int main() {
9774         static int32_t foo32 = 0x12345678;
9775 }
9776 EOCP
9777 set try
9778 if eval $compile; then
9779         echo "<inttypes.h> found." >&4
9780         val="$define"
9781 else
9782         echo "<inttypes.h> NOT found." >&4
9783         val="$undef"
9784 fi
9785 $rm -f try.c try
9786 set i_inttypes
9787 eval $setvar
9788
9789 : check for int64_t
9790 echo " "
9791 $echo $n "Checking to see if your system supports int64_t...$c" >&4
9792 $cat >try.c <<EOCP
9793 #include <sys/types.h>
9794 #$i_inttypes I_INTTYPES
9795 #ifdef I_INTTYPES
9796 #include <inttypes.h>
9797 #endif
9798 int main() { int64_t x = 7; }
9799 EOCP
9800 set try
9801 if eval $compile; then
9802         val="$define"
9803         echo " Yes, it does." >&4
9804 else
9805         val="$undef"
9806         echo " No, it doesn't." >&4
9807 fi
9808 $rm -f try try.*
9809 set d_int64t
9810 eval $setvar
9811
9812
9813 echo " "
9814 echo "Checking which 64-bit integer type we could use..." >&4
9815
9816 case "$intsize" in
9817 8) val=int
9818    set quadtype
9819    eval $setvar
9820    val='"unsigned int"'
9821    set uquadtype
9822    eval $setvar
9823    quadkind=1
9824    ;;
9825 *) case "$longsize" in
9826    8) val=long
9827       set quadtype
9828       eval $setvar
9829       val='"unsigned long"'
9830       set uquadtype
9831       eval $setvar
9832       quadkind=2
9833       ;;
9834    *) case "$uselonglong:$d_longlong:$longlongsize" in
9835       define:define:8)
9836         val='"long long"'
9837         set quadtype
9838         eval $setvar
9839         val='"unsigned long long"'
9840         set uquadtype
9841         eval $setvar
9842         quadkind=3
9843         ;;
9844       *) case "$d_int64t" in
9845          define)
9846            val=int64_t
9847            set quadtype
9848            eval $setvar
9849            val=uint64_t
9850            set uquadtype
9851            eval $setvar
9852            quadkind=4
9853            ;;
9854          esac
9855          ;;
9856       esac
9857       ;;
9858    esac
9859    ;;
9860 esac
9861
9862 case "$quadtype" in
9863 '')     case "$uselonglong:$d_longlong:$longlongsize" in
9864         undef:define:8)
9865            echo "(You would have 'long long', but you are not using it.)" >&4 ;;
9866         *) echo "Alas, no 64-bit integer types in sight." >&4 ;;
9867         esac
9868         d_quad="$undef"
9869         ;;
9870 *)      if test X"$use64bits" = Xdefine -o X"$longsize" = X8; then
9871             verb="will"
9872         else
9873             verb="could"
9874         fi
9875         echo "We $verb use '$quadtype' for 64-bit integers." >&4
9876         d_quad="$define"
9877         ;;
9878 esac
9879
9880 : see if readdir and friends exist
9881 set readdir d_readdir
9882 eval $inlibc
9883 set seekdir d_seekdir
9884 eval $inlibc
9885 set telldir d_telldir
9886 eval $inlibc
9887 set rewinddir d_rewinddir
9888 eval $inlibc
9889
9890 : see if readlink exists
9891 set readlink d_readlink
9892 eval $inlibc
9893
9894 : see if rename exists
9895 set rename d_rename
9896 eval $inlibc
9897
9898 : see if rmdir exists
9899 set rmdir d_rmdir
9900 eval $inlibc
9901
9902 : see if memory.h is available.
9903 val=''
9904 set memory.h val
9905 eval $inhdr
9906
9907 : See if it conflicts with string.h
9908 case "$val" in
9909 $define)
9910         case "$strings" in
9911         '') ;;
9912         *)
9913                 $cppstdin $cppflags $cppminus < $strings > mem.h
9914                 if $contains 'memcpy' mem.h >/dev/null 2>&1; then
9915                         echo " "
9916                         echo "We won't be including <memory.h>."
9917                         val="$undef"
9918                 fi
9919                 $rm -f mem.h
9920                 ;;
9921         esac
9922 esac
9923 set i_memory
9924 eval $setvar
9925
9926 : can bcopy handle overlapping blocks?
9927 val="$undef"
9928 case "$d_bcopy" in
9929 "$define")
9930         echo " "
9931         echo "Checking to see if your bcopy() can do overlapping copies..." >&4
9932         $cat >try.c <<EOCP
9933 #$i_memory I_MEMORY
9934 #$i_stdlib I_STDLIB
9935 #$i_string I_STRING
9936 #$i_unistd I_UNISTD
9937 EOCP
9938         $cat >>try.c <<'EOCP'
9939 #include <stdio.h>
9940 #ifdef I_MEMORY
9941 #  include <memory.h>
9942 #endif
9943 #ifdef I_STDLIB
9944 #  include <stdlib.h>
9945 #endif
9946 #ifdef I_STRING
9947 #  include <string.h>
9948 #else
9949 #  include <strings.h>
9950 #endif
9951 #ifdef I_UNISTD
9952 #  include <unistd.h>  /* Needed for NetBSD */
9953 #endif
9954 int main()
9955 {
9956 char buf[128], abc[128];
9957 char *b;
9958 int len;
9959 int off;
9960 int align;
9961
9962 bcopy("abcdefghijklmnopqrstuvwxyz0123456789", abc, 36);
9963
9964 for (align = 7; align >= 0; align--) {
9965         for (len = 36; len; len--) {
9966                 b = buf+align;
9967                 bcopy(abc, b, len);
9968                 for (off = 1; off <= len; off++) {
9969                         bcopy(b, b+off, len);
9970                         bcopy(b+off, b, len);
9971                         if (bcmp(b, abc, len))
9972                                 exit(1);
9973                 }
9974         }
9975 }
9976 exit(0);
9977 }
9978 EOCP
9979         set try
9980         if eval $compile_ok; then
9981                 if ./try 2>/dev/null; then
9982                         echo "Yes, it can."
9983                         val="$define"
9984                 else
9985                         echo "It can't, sorry."
9986                         case "$d_memmove" in
9987                         "$define") echo "But that's Ok since you have memmove()." ;;
9988                         esac
9989                 fi
9990         else
9991                 echo "(I can't compile the test program, so we'll assume not...)"
9992                 case "$d_memmove" in
9993                 "$define") echo "But that's Ok since you have memmove()." ;;
9994                 esac
9995         fi
9996         ;;
9997 esac
9998 $rm -f try.* try core
9999 set d_safebcpy
10000 eval $setvar
10001
10002 : can memcpy handle overlapping blocks?
10003 val="$undef"
10004 case "$d_memcpy" in
10005 "$define")
10006         echo " "
10007         echo "Checking to see if your memcpy() can do overlapping copies..." >&4
10008         $cat >try.c <<EOCP
10009 #$i_memory I_MEMORY
10010 #$i_stdlib I_STDLIB
10011 #$i_string I_STRING
10012 #$i_unistd I_UNISTD
10013 EOCP
10014         $cat >>try.c <<'EOCP'
10015 #include <stdio.h>
10016 #ifdef I_MEMORY
10017 #  include <memory.h>
10018 #endif
10019 #ifdef I_STDLIB
10020 #  include <stdlib.h>
10021 #endif
10022 #ifdef I_STRING
10023 #  include <string.h>
10024 #else
10025 #  include <strings.h>
10026 #endif
10027 #ifdef I_UNISTD
10028 #  include <unistd.h>  /* Needed for NetBSD */
10029 #endif
10030 int main()
10031 {
10032 char buf[128], abc[128];
10033 char *b;
10034 int len;
10035 int off;
10036 int align;
10037
10038 /* Copy "abcde..." string to char abc[] so that gcc doesn't
10039    try to store the string in read-only memory. */
10040 memcpy(abc, "abcdefghijklmnopqrstuvwxyz0123456789", 36);
10041
10042 for (align = 7; align >= 0; align--) {
10043         for (len = 36; len; len--) {
10044                 b = buf+align;
10045                 memcpy(b, abc, len);
10046                 for (off = 1; off <= len; off++) {
10047                         memcpy(b+off, b, len);
10048                         memcpy(b, b+off, len);
10049                         if (memcmp(b, abc, len))
10050                                 exit(1);
10051                 }
10052         }
10053 }
10054 exit(0);
10055 }
10056 EOCP
10057         set try
10058         if eval $compile_ok; then
10059                 if ./try 2>/dev/null; then
10060                         echo "Yes, it can."
10061                         val="$define"
10062                 else
10063                         echo "It can't, sorry."
10064                         case "$d_memmove" in
10065                         "$define") echo "But that's Ok since you have memmove()." ;;
10066                         esac
10067                 fi
10068         else
10069                 echo "(I can't compile the test program, so we'll assume not...)"
10070                 case "$d_memmove" in
10071                 "$define") echo "But that's Ok since you have memmove()." ;;
10072                 esac
10073         fi
10074         ;;
10075 esac
10076 $rm -f try.* try core
10077 set d_safemcpy
10078 eval $setvar
10079
10080 : can memcmp be trusted to compare relative magnitude?
10081 val="$undef"
10082 case "$d_memcmp" in
10083 "$define")
10084         echo " "
10085         echo "Checking if your memcmp() can compare relative magnitude..." >&4
10086         $cat >try.c <<EOCP
10087 #$i_memory I_MEMORY
10088 #$i_stdlib I_STDLIB
10089 #$i_string I_STRING
10090 #$i_unistd I_UNISTD
10091 EOCP
10092         $cat >>try.c <<'EOCP'
10093 #include <stdio.h>
10094 #ifdef I_MEMORY
10095 #  include <memory.h>
10096 #endif
10097 #ifdef I_STDLIB
10098 #  include <stdlib.h>
10099 #endif
10100 #ifdef I_STRING
10101 #  include <string.h>
10102 #else
10103 #  include <strings.h>
10104 #endif
10105 #ifdef I_UNISTD
10106 #  include <unistd.h>  /* Needed for NetBSD */
10107 #endif
10108 int main()
10109 {
10110 char a = -1;
10111 char b = 0;
10112 if ((a < b) && memcmp(&a, &b, 1) < 0)
10113         exit(1);
10114 exit(0);
10115 }
10116 EOCP
10117         set try
10118         if eval $compile_ok; then
10119                 if ./try 2>/dev/null; then
10120                         echo "Yes, it can."
10121                         val="$define"
10122                 else
10123                         echo "No, it can't (it uses signed chars)."
10124                 fi
10125         else
10126                 echo "(I can't compile the test program, so we'll assume not...)"
10127         fi
10128         ;;
10129 esac
10130 $rm -f try.* try core
10131 set d_sanemcmp
10132 eval $setvar
10133
10134 : see if select exists
10135 set select d_select
10136 eval $inlibc
10137
10138 : see if semctl exists
10139 set semctl d_semctl
10140 eval $inlibc
10141
10142 : see if semget exists
10143 set semget d_semget
10144 eval $inlibc
10145
10146 : see if semop exists
10147 set semop d_semop
10148 eval $inlibc
10149
10150 : see how much of the 'sem*(2)' library is present.
10151 h_sem=true
10152 echo " "
10153 case "$d_semctl$d_semget$d_semop" in
10154 *"$undef"*) h_sem=false;;
10155 esac
10156 case "$osname" in
10157 freebsd)
10158     case "`ipcs 2>&1`" in
10159     "SVID messages"*"not configured"*)
10160         echo "Your $osname does not have the sem*(2) configured." >&4
10161         h_sem=false
10162         val="$undef"
10163         set semctl d_semctl
10164         eval $setvar
10165         set semget d_semget
10166         eval $setvar
10167         set semop d_semop
10168         eval $setvar
10169         ;;
10170     esac
10171     ;;
10172 esac
10173 : we could also check for sys/ipc.h ...
10174 if $h_sem && $test `./findhdr sys/sem.h`; then
10175         echo "You have the full sem*(2) library." >&4
10176         val="$define"
10177 else
10178         echo "You don't have the full sem*(2) library." >&4
10179         val="$undef"
10180 fi
10181 set d_sem
10182 eval $setvar
10183
10184 : see whether sys/sem.h defines union semun
10185 echo " "
10186 $cat > try.c <<'END'
10187 #include <sys/types.h>
10188 #include <sys/ipc.h>
10189 #include <sys/sem.h>
10190 int main () { union semun semun; semun.buf = 0; }
10191 END
10192 set try
10193 if eval $compile; then
10194     echo "You have union semun in <sys/sem.h>." >&4
10195     val="$define"
10196 else
10197     echo "You do not have union semun in <sys/sem.h>." >&4
10198     val="$undef"
10199 fi
10200 $rm -f try try.c try.h
10201 set d_union_semun
10202 eval $setvar
10203
10204 : see how to do semctl IPC_STAT
10205 case "$d_sem" in
10206 $define)
10207     : see whether semctl IPC_STAT can use union semun
10208     echo " "
10209     $cat > try.h <<END
10210 #ifndef S_IRUSR
10211 #   ifdef S_IREAD
10212 #       define S_IRUSR S_IREAD
10213 #       define S_IWUSR S_IWRITE
10214 #       define S_IXUSR S_IEXEC
10215 #   else
10216 #       define S_IRUSR 0400
10217 #       define S_IWUSR 0200
10218 #       define S_IXUSR 0100
10219 #   endif
10220 #   define S_IRGRP (S_IRUSR>>3)
10221 #   define S_IWGRP (S_IWUSR>>3)
10222 #   define S_IXGRP (S_IXUSR>>3)
10223 #   define S_IROTH (S_IRUSR>>6)
10224 #   define S_IWOTH (S_IWUSR>>6)
10225 #   define S_IXOTH (S_IXUSR>>6)
10226 #endif
10227 #ifndef S_IRWXU
10228 #   define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
10229 #   define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
10230 #   define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
10231 #endif
10232 END
10233
10234     $cat > try.c <<END
10235 #include <sys/types.h>
10236 #include <sys/ipc.h>
10237 #include <sys/sem.h>
10238 #include <sys/stat.h>
10239 #include <stdio.h>
10240 #include <errno.h>
10241 #include "try.h"
10242 #ifndef errno
10243 extern int errno;
10244 #endif
10245 #$d_union_semun HAS_UNION_SEMUN
10246 int main() {
10247     union semun
10248 #ifndef HAS_UNION_SEMUN
10249     {
10250         int val;
10251         struct semid_ds *buf;
10252         unsigned short *array;
10253     }
10254 #endif
10255     arg;
10256     int sem, st;
10257
10258 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) && defined(S_IRWXO) && defined(IPC_CREAT)
10259     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
10260     if (sem > -1) {
10261         struct semid_ds argbuf;
10262         arg.buf = &argbuf;
10263 #       ifdef IPC_STAT
10264         st = semctl(sem, 0, IPC_STAT, arg);
10265         if (st == 0)
10266             printf("semun\n");
10267         else
10268 #       endif /* IPC_STAT */
10269             printf("semctl IPC_STAT failed: errno = %d\n", errno);
10270 #       ifdef IPC_RMID
10271         if (semctl(sem, 0, IPC_RMID, arg) != 0)
10272 #       endif /* IPC_RMID */
10273             printf("semctl IPC_RMID failed: errno = %d\n", errno);
10274     } else
10275 #endif /* IPC_PRIVATE && ... */
10276         printf("semget failed: errno = %d\n", errno);
10277   return 0;
10278 }
10279 END
10280     val="$undef"
10281     set try
10282     if eval $compile; then
10283         xxx=`./try`
10284         case "$xxx" in
10285         semun) val="$define" ;;
10286         esac
10287     fi
10288     $rm -f try try.c
10289     set d_semctl_semun
10290     eval $setvar
10291     case "$d_semctl_semun" in
10292     $define)
10293         echo "You can use union semun for semctl IPC_STAT." >&4
10294         also='also'
10295         ;;
10296     *)  echo "You cannot use union semun for semctl IPC_STAT." >&4
10297         also=''
10298         ;;
10299     esac
10300
10301     : see whether semctl IPC_STAT can use struct semid_ds pointer
10302     $cat > try.c <<'END'
10303 #include <sys/types.h>
10304 #include <sys/ipc.h>
10305 #include <sys/sem.h>
10306 #include <sys/stat.h>
10307 #include "try.h"
10308 #include <stdio.h>
10309 #include <errno.h>
10310 #ifndef errno
10311 extern int errno;
10312 #endif
10313 int main() {
10314     struct semid_ds arg;
10315     int sem, st;
10316
10317 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) &&  defined(S_IRWXO) && defined(IPC_CREAT)
10318     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
10319     if (sem > -1) {
10320 #       ifdef IPC_STAT
10321         st = semctl(sem, 0, IPC_STAT, &arg);
10322         if (st == 0)
10323             printf("semid_ds\n");
10324         else
10325 #       endif /* IPC_STAT */
10326             printf("semctl IPC_STAT failed: errno = %d\n", errno);
10327 #       ifdef IPC_RMID
10328         if (semctl(sem, 0, IPC_RMID, &arg) != 0)
10329 #       endif /* IPC_RMID */
10330             printf("semctl IPC_RMID failed: errno = %d\n", errno);
10331     } else
10332 #endif /* IPC_PRIVATE && ... */
10333         printf("semget failed: errno = %d\n", errno);
10334
10335     return 0;
10336 }
10337 END
10338     val="$undef"
10339     set try
10340     if eval $compile; then
10341         xxx=`./try`
10342         case "$xxx" in
10343         semid_ds) val="$define" ;;
10344         esac
10345     fi
10346     $rm -f try try.c
10347     set d_semctl_semid_ds
10348     eval $setvar
10349     case "$d_semctl_semid_ds" in
10350     $define)
10351         echo "You can $also use struct semid_ds* for semctl IPC_STAT." >&4
10352         ;;
10353     *)  echo "You cannot use struct semid_ds* for semctl IPC_STAT." >&4
10354         ;;
10355     esac
10356     $rm -f try.h
10357     ;;
10358 *)  val="$undef"
10359
10360     # We do not have the full sem*(2) library, so assume we can not
10361     # use either.
10362
10363     set d_semctl_semun
10364     eval $setvar
10365
10366     set d_semctl_semid_ds
10367     eval $setvar
10368     ;;
10369 esac
10370
10371 : see if setegid exists
10372 set setegid d_setegid
10373 eval $inlibc
10374
10375 : see if seteuid exists
10376 set seteuid d_seteuid
10377 eval $inlibc
10378
10379 : see if setgrent exists
10380 set setgrent d_setgrent
10381 eval $inlibc
10382
10383 : see if sethostent exists
10384 set sethostent d_sethent
10385 eval $inlibc
10386
10387 : see if setlinebuf exists
10388 set setlinebuf d_setlinebuf
10389 eval $inlibc
10390
10391 : see if setlocale exists
10392 set setlocale d_setlocale
10393 eval $inlibc
10394
10395 : see if setnetent exists
10396 set setnetent d_setnent
10397 eval $inlibc
10398
10399 : see if setprotoent exists
10400 set setprotoent d_setpent
10401 eval $inlibc
10402
10403 : see if setpgid exists
10404 set setpgid d_setpgid
10405 eval $inlibc
10406
10407 : see if setpgrp2 exists
10408 set setpgrp2 d_setpgrp2
10409 eval $inlibc
10410
10411 : see if setpriority exists
10412 set setpriority d_setprior
10413 eval $inlibc
10414
10415 : see if setpwent exists
10416 set setpwent d_setpwent
10417 eval $inlibc
10418
10419 : see if setregid exists
10420 set setregid d_setregid
10421 eval $inlibc
10422 set setresgid d_setresgid
10423 eval $inlibc
10424
10425 : see if setreuid exists
10426 set setreuid d_setreuid
10427 eval $inlibc
10428 set setresuid d_setresuid
10429 eval $inlibc
10430
10431 : see if setrgid exists
10432 set setrgid d_setrgid
10433 eval $inlibc
10434
10435 : see if setruid exists
10436 set setruid d_setruid
10437 eval $inlibc
10438
10439 : see if setservent exists
10440 set setservent d_setsent
10441 eval $inlibc
10442
10443 : see if setsid exists
10444 set setsid d_setsid
10445 eval $inlibc
10446
10447 : see if setspent exists
10448 set setspent d_setspent
10449 eval $inlibc
10450
10451 : see if setvbuf exists
10452 set setvbuf d_setvbuf
10453 eval $inlibc
10454
10455 : see if sfio.h is available
10456 set sfio.h i_sfio
10457 eval $inhdr
10458
10459
10460 : see if sfio library is available
10461 case "$i_sfio" in
10462 $define)
10463         val=''
10464         set sfreserve val
10465         eval $inlibc
10466         ;;
10467 *)
10468         val="$undef"
10469         ;;
10470 esac
10471 : Ok, but do we want to use it.
10472 case "$val" in
10473 $define)
10474         case "$usesfio" in
10475         true|$define|[yY]*) dflt='y';;
10476         *) dflt='n';;
10477         esac
10478         echo "$package can use the sfio library, but it is experimental."
10479         rp="You seem to have sfio available, do you want to try using it?"
10480         . ./myread
10481         case "$ans" in
10482         y|Y) ;;
10483         *)      echo "Ok, avoiding sfio this time.  I'll use stdio instead."
10484                 val="$undef"
10485                 : Remove sfio from list of libraries to use
10486                 set `echo X $libs | $sed -e 's/-lsfio / /' -e 's/-lsfio$//'`
10487                 shift
10488                 libs="$*"
10489                 echo "libs = $libs" >&4
10490                 ;;
10491         esac
10492         ;;
10493 *)      case "$usesfio" in
10494         true|$define|[yY]*)
10495                 echo "Sorry, cannot find sfio on this machine" >&4
10496                 echo "Ignoring your setting of usesfio=$usesfio" >&4
10497                 ;;
10498         esac
10499         ;;
10500 esac
10501 set d_sfio
10502 eval $setvar
10503 case "$d_sfio" in
10504 $define) usesfio='true';;
10505 *) usesfio='false';;
10506 esac
10507
10508 : see if shmctl exists
10509 set shmctl d_shmctl
10510 eval $inlibc
10511
10512 : see if shmget exists
10513 set shmget d_shmget
10514 eval $inlibc
10515
10516 : see if shmat exists
10517 set shmat d_shmat
10518 eval $inlibc
10519 : see what shmat returns
10520 case "$d_shmat" in
10521 "$define")
10522         $cat >shmat.c <<'END'
10523 #include <sys/shm.h>
10524 void *shmat();
10525 END
10526         if $cc $ccflags -c shmat.c >/dev/null 2>&1; then
10527                 shmattype='void *'
10528         else
10529                 shmattype='char *'
10530         fi
10531         echo "and it returns ($shmattype)." >&4
10532         : see if a prototype for shmat is available
10533         xxx=`./findhdr sys/shm.h`
10534         $cppstdin $cppflags $cppminus < $xxx > shmat.c 2>/dev/null
10535         if $contains 'shmat.*(' shmat.c >/dev/null 2>&1; then
10536                 val="$define"
10537         else
10538                 val="$undef"
10539         fi
10540         $rm -f shmat.[co]
10541         ;;
10542 *)
10543         val="$undef"
10544         ;;
10545 esac
10546 set d_shmatprototype
10547 eval $setvar
10548
10549 : see if shmdt exists
10550 set shmdt d_shmdt
10551 eval $inlibc
10552
10553 : see how much of the 'shm*(2)' library is present.
10554 h_shm=true
10555 echo " "
10556 case "$d_shmctl$d_shmget$d_shmat$d_shmdt" in
10557 *"$undef"*) h_shm=false;;
10558 esac
10559 case "$osname" in
10560 freebsd)
10561     case "`ipcs 2>&1`" in
10562     "SVID shared memory"*"not configured"*)
10563         echo "Your $osname does not have the shm*(2) configured." >&4
10564         h_shm=false
10565         val="$undef"
10566         set shmctl d_shmctl
10567         evat $setvar
10568         set shmget d_shmget
10569         evat $setvar
10570         set shmat d_shmat
10571         evat $setvar
10572         set shmdt d_shmdt
10573         evat $setvar
10574         ;;
10575     esac
10576     ;;
10577 esac
10578 : we could also check for sys/ipc.h ...
10579 if $h_shm && $test `./findhdr sys/shm.h`; then
10580         echo "You have the full shm*(2) library." >&4
10581         val="$define"
10582 else
10583         echo "You don't have the full shm*(2) library." >&4
10584         val="$undef"
10585 fi
10586 set d_shm
10587 eval $setvar
10588
10589 echo " "
10590 : see if we have sigaction
10591 if set sigaction val -f d_sigaction; eval $csym; $val; then
10592         echo 'sigaction() found.' >&4
10593         $cat > try.c <<'EOP'
10594 #include <stdio.h>
10595 #include <sys/types.h>
10596 #include <signal.h>
10597 int main()
10598 {
10599     struct sigaction act, oact;
10600     act.sa_flags = 0;
10601     oact.sa_handler = 0;
10602     /* so that act and oact are used */
10603     exit(act.sa_flags == 0 &&  oact.sa_handler == 0);
10604 }
10605 EOP
10606         set try
10607         if eval $compile_ok; then
10608                 val="$define"
10609         else
10610                 echo "But you don't seem to have a useable struct sigaction." >&4
10611                 val="$undef"
10612         fi
10613 else
10614         echo 'sigaction NOT found.' >&4
10615         val="$undef"
10616 fi
10617 set d_sigaction; eval $setvar
10618 $rm -f try try$_o try.c
10619
10620 : see if sigsetjmp exists
10621 echo " "
10622 case "$d_sigsetjmp" in
10623 '')
10624         $cat >try.c <<'EOP'
10625 #include <setjmp.h>
10626 sigjmp_buf env;
10627 int set = 1;
10628 int main()
10629 {
10630         if (sigsetjmp(env,1))
10631                 exit(set);
10632         set = 0;
10633         siglongjmp(env, 1);
10634         exit(1);
10635 }
10636 EOP
10637         set try
10638         if eval $compile; then
10639                 if ./try >/dev/null 2>&1; then
10640                         echo "POSIX sigsetjmp found." >&4
10641                         val="$define"
10642                 else
10643                         $cat >&4 <<EOM
10644 Uh-Oh! You have POSIX sigsetjmp and siglongjmp, but they do not work properly!!
10645 I'll ignore them.
10646 EOM
10647                         val="$undef"
10648                 fi
10649         else
10650                 echo "sigsetjmp not found." >&4
10651                 val="$undef"
10652         fi
10653         ;;
10654 *) val="$d_sigsetjmp"
10655         case "$d_sigsetjmp" in
10656         $define) echo "POSIX sigsetjmp found." >&4;;
10657         $undef) echo "sigsetjmp not found." >&4;;
10658         esac
10659         ;;
10660 esac
10661 set d_sigsetjmp
10662 eval $setvar
10663 $rm -f try.c try
10664
10665 : see if sqrtl exists
10666 set sqrtl d_sqrtl
10667 eval $inlibc
10668
10669 : see if sys/stat.h is available
10670 set sys/stat.h i_sysstat
10671 eval $inhdr
10672
10673
10674 : see if stat knows about block sizes
10675 echo " "
10676 echo "Checking to see if your struct stat has st_blocks field..." >&4
10677 set d_statblks stat st_blocks $i_sysstat sys/stat.h
10678 eval $hasfield
10679
10680
10681 : see if this is a sys/vfs.h system
10682 set sys/vfs.h i_sysvfs
10683 eval $inhdr
10684
10685
10686 : see if this is a sys/statfs.h system
10687 set sys/statfs.h i_sysstatfs
10688 eval $inhdr
10689
10690
10691 echo " "
10692 echo "Checking to see if your system supports struct statfs..." >&4
10693 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
10694 eval $hasstruct
10695 case "$d_statfs_s" in
10696 "$define")      echo "Yes, it does."   ;;
10697 *)              echo "No, it doesn't." ;;
10698 esac
10699
10700
10701
10702 : see if struct statfs knows about f_flags
10703 case "$d_statfs_s" in
10704 define) 
10705         echo " "
10706         echo "Checking to see if your struct statfs has f_flags field..." >&4
10707         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
10708         eval $hasfield
10709         ;;
10710 *)      val="$undef"
10711         set d_statfs_f_flags
10712         eval $setvar
10713         ;;
10714 esac
10715 case "$d_statfs_f_flags" in
10716 "$define")      echo "Yes, it does."   ;;
10717 *)              echo "No, it doesn't." ;;
10718 esac
10719
10720 : see if _ptr and _cnt from stdio act std
10721 echo " "
10722 if $contains '_IO_fpos_t' `./findhdr stdio.h` `./findhdr libio.h` >/dev/null 2>&1 ; then
10723         echo "(Looks like you have stdio.h from Linux.)"
10724         case "$stdio_ptr" in
10725         '') stdio_ptr='((fp)->_IO_read_ptr)'
10726                 ptr_lval=$define
10727                 ;;
10728         *)      ptr_lval=$d_stdio_ptr_lval;;
10729         esac
10730         case "$stdio_cnt" in
10731         '') stdio_cnt='((fp)->_IO_read_end - (fp)->_IO_read_ptr)'
10732                 cnt_lval=$undef
10733                 ;;
10734         *)      cnt_lval=$d_stdio_cnt_lval;;
10735         esac
10736         case "$stdio_base" in
10737         '') stdio_base='((fp)->_IO_read_base)';;
10738         esac
10739         case "$stdio_bufsiz" in
10740         '') stdio_bufsiz='((fp)->_IO_read_end - (fp)->_IO_read_base)';;
10741         esac
10742 else
10743         case "$stdio_ptr" in
10744         '') stdio_ptr='((fp)->_ptr)'
10745                 ptr_lval=$define
10746                 ;;
10747         *)      ptr_lval=$d_stdio_ptr_lval;;
10748         esac
10749         case "$stdio_cnt" in
10750         '') stdio_cnt='((fp)->_cnt)'
10751                 cnt_lval=$define
10752                 ;;
10753         *)      cnt_lval=$d_stdio_cnt_lval;;
10754         esac
10755         case "$stdio_base" in
10756         '') stdio_base='((fp)->_base)';;
10757         esac
10758         case "$stdio_bufsiz" in
10759         '') stdio_bufsiz='((fp)->_cnt + (fp)->_ptr - (fp)->_base)';;
10760         esac
10761 fi
10762 : test whether _ptr and _cnt really work
10763 echo "Checking how std your stdio is..." >&4
10764 $cat >try.c <<EOP
10765 #include <stdio.h>
10766 #define FILE_ptr(fp)    $stdio_ptr
10767 #define FILE_cnt(fp)    $stdio_cnt
10768 int main() {
10769         FILE *fp = fopen("try.c", "r");
10770         char c = getc(fp);
10771         if (
10772                 18 <= FILE_cnt(fp) &&
10773                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
10774         )
10775                 exit(0);
10776         exit(1);
10777 }
10778 EOP
10779 val="$undef"
10780 set try
10781 if eval $compile; then
10782         if ./try; then
10783                 echo "Your stdio acts pretty std."
10784                 val="$define"
10785         else
10786                 echo "Your stdio isn't very std."
10787         fi
10788 else
10789         echo "Your stdio doesn't appear very std."
10790 fi
10791 $rm -f try.c try
10792 set d_stdstdio
10793 eval $setvar
10794
10795 : Can _ptr be used as an lvalue?
10796 case "$d_stdstdio$ptr_lval" in
10797 $define$define) val=$define ;;
10798 *) val=$undef ;;
10799 esac
10800 set d_stdio_ptr_lval
10801 eval $setvar
10802
10803 : Can _cnt be used as an lvalue?
10804 case "$d_stdstdio$cnt_lval" in
10805 $define$define) val=$define ;;
10806 *) val=$undef ;;
10807 esac
10808 set d_stdio_cnt_lval
10809 eval $setvar
10810
10811 : see if _base is also standard
10812 val="$undef"
10813 case "$d_stdstdio" in
10814 $define)
10815         $cat >try.c <<EOP
10816 #include <stdio.h>
10817 #define FILE_base(fp)   $stdio_base
10818 #define FILE_bufsiz(fp) $stdio_bufsiz
10819 int main() {
10820         FILE *fp = fopen("try.c", "r");
10821         char c = getc(fp);
10822         if (
10823                 19 <= FILE_bufsiz(fp) &&
10824                 strncmp(FILE_base(fp), "#include <stdio.h>\n", 19) == 0
10825         )
10826                 exit(0);
10827         exit(1);
10828 }
10829 EOP
10830         set try
10831         if eval $compile; then
10832                 if ./try; then
10833                         echo "And its _base field acts std."
10834                         val="$define"
10835                 else
10836                         echo "But its _base field isn't std."
10837                 fi
10838         else
10839                 echo "However, it seems to be lacking the _base field."
10840         fi
10841         $rm -f try.c try
10842         ;;
10843 esac
10844 set d_stdiobase
10845 eval $setvar
10846
10847 $cat >&4 <<EOM
10848 Checking how to access stdio streams by file descriptor number...
10849 EOM
10850 case "$stdio_stream_array" in
10851 '')     $cat >try.c <<EOCP
10852 #include <stdio.h>
10853 int main() {
10854   if (&STDIO_STREAM_ARRAY[fileno(stdin)] == stdin)
10855     printf("yes\n");
10856 }
10857 EOCP
10858         for s in _iob __iob __sF
10859         do
10860                 set try -DSTDIO_STREAM_ARRAY=$s
10861                 if eval $compile; then
10862                         case "`./try$exe_ext`" in
10863                         yes)    stdio_stream_array=$s; break ;;
10864                         esac
10865                 fi
10866         done
10867         $rm -f try.* try$exe_ext
10868 esac
10869 case "$stdio_stream_array" in
10870 '')     $cat >&4 <<EOM
10871 I can't figure out how to access stdio streams by file descriptor number.
10872 EOM
10873         d_stdio_stream_array="$undef"
10874         ;;
10875 *)      $cat >&4 <<EOM
10876 You can access stdio streams by file descriptor number by the $stdio_stream_array array.
10877 EOM
10878         d_stdio_stream_array="$define"
10879         ;;
10880 esac
10881
10882 : see if strcoll exists
10883 set strcoll d_strcoll
10884 eval $inlibc
10885
10886 : check for structure copying
10887 echo " "
10888 echo "Checking to see if your C compiler can copy structs..." >&4
10889 $cat >try.c <<'EOCP'
10890 int main()
10891 {
10892         struct blurfl {
10893                 int dyick;
10894         } foo, bar;
10895
10896         foo = bar;
10897 }
10898 EOCP
10899 if $cc -c try.c >/dev/null 2>&1 ; then
10900         val="$define"
10901         echo "Yup, it can."
10902 else
10903         val="$undef"
10904         echo "Nope, it can't."
10905 fi
10906 set d_strctcpy
10907 eval $setvar
10908 $rm -f try.*
10909
10910 : see if strerror and/or sys_errlist[] exist
10911 echo " "
10912 if test "X$d_strerror" = X -o "X$d_syserrlst" = X; then
10913     if set strerror val -f d_strerror; eval $csym; $val; then
10914                 echo 'strerror() found.' >&4
10915                 d_strerror="$define"
10916                 d_strerrm='strerror(e)'
10917                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
10918                         echo "(You also have sys_errlist[], so we could roll our own strerror.)" 
10919                         d_syserrlst="$define"
10920                 else
10921                         echo "(Since you don't have sys_errlist[], sterror() is welcome.)"
10922                         d_syserrlst="$undef"
10923                 fi
10924     elif xxx=`./findhdr string.h`; test "$xxx" || xxx=`./findhdr strings.h`; \
10925                         $contains '#[   ]*define.*strerror' "$xxx" >/dev/null 2>&1; then
10926                 echo 'strerror() found in string header.' >&4
10927                 d_strerror="$define"
10928                 d_strerrm='strerror(e)'
10929                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
10930                         echo "(Most probably, strerror() uses sys_errlist[] for descriptions.)"
10931                                 d_syserrlst="$define"
10932                 else
10933                         echo "(You don't appear to have any sys_errlist[], how can this be?)"
10934                         d_syserrlst="$undef"
10935                 fi
10936     elif set sys_errlist val -a d_syserrlst; eval $csym; $val; then
10937                 echo "strerror() not found, but you have sys_errlist[] so we'll use that." >&4
10938                 d_strerror="$undef"
10939                 d_syserrlst="$define"
10940                 d_strerrm='((e)<0||(e)>=sys_nerr?"unknown":sys_errlist[e])'
10941     else
10942                 echo 'strerror() and sys_errlist[] NOT found.' >&4
10943                 d_strerror="$undef"
10944                 d_syserrlst="$undef"
10945                 d_strerrm='"unknown"'
10946     fi
10947 fi
10948
10949 : see if strtod exists
10950 set strtod d_strtod
10951 eval $inlibc
10952
10953 : see if strtol exists
10954 set strtol d_strtol
10955 eval $inlibc
10956
10957 : see if strtold exists
10958 set strtold d_strtold
10959 eval $inlibc
10960
10961 : see if strtoul exists
10962 set strtoul d_strtoul
10963 eval $inlibc
10964
10965 : see if strtoull exists
10966 set strtoull d_strtoull
10967 eval $inlibc
10968
10969 : see if strtouq exists
10970 set strtouq d_strtouq
10971 eval $inlibc
10972
10973 : see if strxfrm exists
10974 set strxfrm d_strxfrm
10975 eval $inlibc
10976
10977 : see if symlink exists
10978 set symlink d_symlink
10979 eval $inlibc
10980
10981 : see if syscall exists
10982 set syscall d_syscall
10983 eval $inlibc
10984
10985 : see if sysconf exists
10986 set sysconf d_sysconf
10987 eval $inlibc
10988
10989 : see if system exists
10990 set system d_system
10991 eval $inlibc
10992
10993 : see if tcgetpgrp exists
10994 set tcgetpgrp d_tcgetpgrp
10995 eval $inlibc
10996
10997 : see if tcsetpgrp exists
10998 set tcsetpgrp d_tcsetpgrp
10999 eval $inlibc
11000
11001 : see if prototype for telldir is available
11002 echo " "
11003 set d_telldirproto telldir $i_systypes sys/types.h $i_dirent dirent.h
11004 eval $hasproto
11005
11006 : see if this is a sys/times.h system
11007 set sys/times.h i_systimes
11008 eval $inhdr
11009
11010 : see if times exists
11011 echo " "
11012 if set times val -f d_times; eval $csym; $val; then
11013         echo 'times() found.' >&4
11014         d_times="$define"
11015         inc=''
11016         case "$i_systimes" in
11017         "$define") inc='sys/times.h';;
11018         esac
11019         rp="What is the type returned by times() on this system?"
11020         set clock_t clocktype long stdio.h sys/types.h $inc
11021         eval $typedef_ask
11022 else
11023         echo 'times() NOT found, hope that will do.' >&4
11024         d_times="$undef"
11025         clocktype='int'
11026 fi
11027
11028 : see if truncate exists
11029 set truncate d_truncate
11030 eval $inlibc
11031
11032 : see if tzname[] exists
11033 echo " "
11034 if set tzname val -a d_tzname; eval $csym; $val; then
11035         val="$define"
11036         echo 'tzname[] found.' >&4
11037 else
11038         val="$undef"
11039         echo 'tzname[] NOT found.' >&4
11040 fi
11041 set d_tzname
11042 eval $setvar
11043
11044 : see if umask exists
11045 set umask d_umask
11046 eval $inlibc
11047
11048 : see if ustat exists
11049 set ustat d_ustat
11050 eval $inlibc
11051
11052 : backward compatibility for d_hvfork
11053 if test X$d_hvfork != X; then
11054         d_vfork="$d_hvfork"
11055         d_hvfork=''
11056 fi
11057 : see if there is a vfork
11058 val=''
11059 set vfork val
11060 eval $inlibc
11061
11062 : Ok, but do we want to use it. vfork is reportedly unreliable in 
11063 : perl on Solaris 2.x, and probably elsewhere.
11064 case "$val" in
11065 $define)
11066         echo " "
11067         case "$usevfork" in
11068         false) dflt='n';;
11069         *) dflt='y';;
11070         esac
11071         cat <<'EOM'
11072  
11073 Perl can only use a vfork() that doesn't suffer from strict
11074 restrictions on calling functions or modifying global data in
11075 the child.  For example, glibc-2.1 contains such a vfork()
11076 that is unsuitable.  If your system provides a proper fork()
11077 call, chances are that you do NOT want perl to use vfork().
11078
11079 EOM
11080         rp="Do you still want to use vfork()?"
11081         . ./myread
11082         case "$ans" in
11083         y|Y) ;;
11084         *)
11085                 echo "Ok, we won't use vfork()."
11086                 val="$undef"
11087                 ;;
11088         esac
11089         ;;
11090 esac
11091 set d_vfork
11092 eval $setvar
11093 case "$d_vfork" in
11094 $define) usevfork='true';;
11095 *) usevfork='false';;
11096 esac
11097
11098 : see if this is an sysdir system
11099 set sys/dir.h i_sysdir
11100 eval $inhdr
11101
11102 : see if this is an sysndir system
11103 set sys/ndir.h i_sysndir
11104 eval $inhdr
11105
11106 : see if closedir exists
11107 set closedir d_closedir
11108 eval $inlibc
11109
11110 case "$d_closedir" in
11111 "$define")
11112         echo " "
11113         echo "Checking whether closedir() returns a status..." >&4
11114         cat > closedir.c <<EOM
11115 #$i_dirent I_DIRENT             /**/
11116 #$i_sysdir I_SYS_DIR            /**/
11117 #$i_sysndir I_SYS_NDIR          /**/
11118 #$i_systypes I_SYS_TYPES        /**/
11119
11120 #if defined(I_SYS_TYPES)
11121 #include <sys/types.h>
11122 #endif
11123 #if defined(I_DIRENT)
11124 #include <dirent.h>
11125 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
11126 #include <sys/dir.h>
11127 #endif
11128 #else
11129 #ifdef I_SYS_NDIR
11130 #include <sys/ndir.h>
11131 #else
11132 #ifdef I_SYS_DIR
11133 #ifdef hp9000s500
11134 #include <ndir.h>       /* may be wrong in the future */
11135 #else
11136 #include <sys/dir.h>
11137 #endif
11138 #endif
11139 #endif
11140 #endif 
11141 int main() { return closedir(opendir(".")); }
11142 EOM
11143         set closedir
11144         if eval $compile_ok; then
11145                 if ./closedir > /dev/null 2>&1 ; then
11146                         echo "Yes, it does."
11147                         val="$undef"
11148                 else
11149                         echo "No, it doesn't."
11150                         val="$define"
11151                 fi
11152         else
11153                 echo "(I can't seem to compile the test program--assuming it doesn't)"
11154                 val="$define"
11155         fi
11156         ;;
11157 *)
11158         val="$undef";
11159         ;;
11160 esac
11161 set d_void_closedir
11162 eval $setvar
11163 $rm -f closedir*
11164 : check for volatile keyword
11165 echo " "
11166 echo 'Checking to see if your C compiler knows about "volatile"...' >&4
11167 $cat >try.c <<'EOCP'
11168 int main()
11169 {
11170         typedef struct _goo_struct goo_struct;
11171         goo_struct * volatile goo = ((goo_struct *)0);
11172         struct _goo_struct {
11173                 long long_int;
11174                 int reg_int;
11175                 char char_var;
11176         };
11177         typedef unsigned short foo_t;
11178         char *volatile foo;
11179         volatile int bar;
11180         volatile foo_t blech;
11181         foo = foo;
11182 }
11183 EOCP
11184 if $cc -c $ccflags try.c >/dev/null 2>&1 ; then
11185         val="$define"
11186         echo "Yup, it does."
11187 else
11188         val="$undef"
11189         echo "Nope, it doesn't."
11190 fi
11191 set d_volatile
11192 eval $setvar
11193 $rm -f try.*
11194
11195 : see if there is a wait4
11196 set wait4 d_wait4
11197 eval $inlibc
11198
11199 : see if waitpid exists
11200 set waitpid d_waitpid
11201 eval $inlibc
11202
11203 : see if wcstombs exists
11204 set wcstombs d_wcstombs
11205 eval $inlibc
11206
11207 : see if wctomb exists
11208 set wctomb d_wctomb
11209 eval $inlibc
11210
11211 : preserve RCS keywords in files with variable substitution, grrr
11212 Date='$Date'
11213 Id='$Id'
11214 Log='$Log'
11215 RCSfile='$RCSfile'
11216 Revision='$Revision'
11217
11218 case "$crosscompile" in
11219 ''|[nN]*) crosscompile="$undef" ;;
11220 esac
11221
11222 case "$osname" in
11223 next|rhapsody) multiarch="$define" ;;
11224 esac
11225 case "$multiarch" in
11226 ''|[nN]*) multiarch="$undef" ;;
11227 esac
11228
11229 : check for alignment requirements
11230 echo " "
11231 case "$crosscompile$multiarch" in
11232 *$define*)
11233         $cat <<EOM
11234 You seem to be either cross-compiling or doing a multiarchitecture build,
11235 skipping the memory alignment check.
11236
11237 EOM
11238         case "$alignbytes" in
11239         '') alignbytes=8 ;;
11240         esac
11241         ;;
11242 *)
11243         case "$alignbytes" in
11244         '') echo "Checking alignment constraints..." >&4
11245                 $cat >try.c <<'EOCP'
11246 #include <stdio.h>
11247 struct foobar {
11248         char foo;
11249         double bar;
11250 } try_algn;
11251 int main()
11252 {
11253     printf("%d\n", (int)((char *)&try_algn.bar - (char *)&try_algn.foo));
11254     return(0);
11255 }
11256 EOCP
11257                 set try
11258                 if eval $compile_ok; then
11259                         dflt=`./try`
11260                 else
11261                         dflt='8'
11262                         echo "(I can't seem to compile the test program...)"
11263                 fi
11264                 ;;
11265         *) dflt="$alignbytes"
11266                 ;;
11267         esac
11268         rp="Doubles must be aligned on a how-many-byte boundary?"
11269         . ./myread
11270         alignbytes="$ans"
11271         $rm -f try.c try
11272         ;;
11273 esac
11274
11275
11276 : check for ordering of bytes in a long
11277 echo " "
11278 case "$crosscompile$multiarch" in
11279 *$define*)
11280         $cat <<EOM
11281 You seem to be either cross-compiling or doing a multiarchitecture build,
11282 skipping the byteorder check.
11283
11284 EOM
11285         byteorder='0xffff'
11286         ;;
11287 *)
11288         case "$byteorder" in
11289         '')
11290                 $cat <<'EOM'
11291 In the following, larger digits indicate more significance.  A big-endian
11292 machine like a Pyramid or a Motorola 680?0 chip will come out to 4321. A
11293 little-endian machine like a Vax or an Intel 80?86 chip would be 1234. Other
11294 machines may have weird orders like 3412.  A Cray will report 87654321,
11295 an Alpha will report 12345678. If the test program works the default is
11296 probably right.
11297 I'm now running the test program...
11298 EOM
11299                 $cat >try.c <<'EOCP'
11300 #include <stdio.h>
11301 int main()
11302 {
11303         int i;
11304         union {
11305                 unsigned long l;
11306                 char c[sizeof(long)];
11307         } u;
11308
11309         if (sizeof(long) > 4)
11310                 u.l = (0x08070605L << 32) | 0x04030201L;
11311         else
11312                 u.l = 0x04030201L;
11313         for (i = 0; i < sizeof(long); i++)
11314                 printf("%c", u.c[i]+'0');
11315         printf("\n");
11316         exit(0);
11317 }
11318 EOCP
11319                 xxx_prompt=y
11320                 set try
11321                 if eval $compile && ./try > /dev/null; then
11322                         dflt=`./try`
11323                         case "$dflt" in
11324                         [1-4][1-4][1-4][1-4]|12345678|87654321)
11325                                 echo "(The test program ran ok.)"
11326                                 echo "byteorder=$dflt"
11327                                 xxx_prompt=n
11328                         ;;
11329                         ????|????????) echo "(The test program ran ok.)" ;;
11330                         *) echo "(The test program didn't run right for some reason.)" ;;
11331                         esac
11332                 else
11333                         dflt='4321'
11334                         cat <<'EOM'
11335 (I can't seem to compile the test program.  Guessing big-endian...)
11336 EOM
11337                 fi
11338                 case "$xxx_prompt" in
11339                 y)
11340                         rp="What is the order of bytes in a long?"
11341                         . ./myread
11342                         byteorder="$ans"
11343                         ;;
11344                 *)      byteorder=$dflt
11345                         ;;
11346                 esac
11347                 ;;
11348         esac
11349         $rm -f try.c try
11350         ;;
11351 esac
11352
11353
11354 : how do we catenate cpp tokens here?
11355 echo " "
11356 echo "Checking to see how your cpp does stuff like catenate tokens..." >&4
11357 $cat >cpp_stuff.c <<'EOCP'
11358 #define RCAT(a,b)a/**/b
11359 #define ACAT(a,b)a ## b
11360 RCAT(Rei,ser)
11361 ACAT(Cir,cus)
11362 EOCP
11363 $cppstdin $cppflags $cppminus <cpp_stuff.c >cpp_stuff.out 2>&1
11364 if $contains 'Circus' cpp_stuff.out >/dev/null 2>&1; then
11365         echo "Oh!  Smells like ANSI's been here." >&4
11366         echo "We can catify or stringify, separately or together!"
11367         cpp_stuff=42
11368 elif $contains 'Reiser' cpp_stuff.out >/dev/null 2>&1; then
11369         echo "Ah, yes!  The good old days!" >&4
11370         echo "However, in the good old days we don't know how to stringify and"
11371         echo "catify at the same time."
11372         cpp_stuff=1
11373 else
11374         $cat >&4 <<EOM
11375 Hmm, I don't seem to be able to catenate tokens with your cpp.  You're going
11376 to have to edit the values of CAT[2-5] in config.h...
11377 EOM
11378         cpp_stuff="/* Help! How do we handle cpp_stuff? */*/"
11379 fi
11380 $rm -f cpp_stuff.*
11381
11382 : see if this is a db.h system
11383 set db.h i_db
11384 eval $inhdr
11385
11386 case "$i_db" in
11387 $define)
11388         : Check db version.
11389         echo " "
11390         echo "Checking Berkeley DB version ..." >&4
11391         $cat >try.c <<EOCP
11392 #$d_const HASCONST
11393 #ifndef HASCONST
11394 #define const
11395 #endif
11396 #include <sys/types.h>
11397 #include <stdio.h>
11398 #include <db.h>
11399 int main()
11400 {
11401 #ifdef DB_VERSION_MAJOR /* DB version >= 2 */
11402     int Major, Minor, Patch ;
11403     unsigned long Version ;
11404     (void)db_version(&Major, &Minor, &Patch) ;
11405     printf("You have Berkeley DB Version 2 or greater\n");
11406
11407     printf("db.h is from Berkeley DB Version %d.%d.%d\n",
11408                 DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH);
11409     printf("libdb is from Berkeley DB Version %d.%d.%d\n",
11410                 Major, Minor, Patch) ;
11411
11412     /* check that db.h & libdb are compatible */
11413     if (DB_VERSION_MAJOR != Major || DB_VERSION_MINOR != Minor || DB_VERSION_PATCH != Patch) {
11414         printf("db.h and libdb are incompatible\n") ;
11415         exit(3);        
11416     }
11417
11418     printf("db.h and libdb are compatible\n") ;
11419
11420     Version = DB_VERSION_MAJOR * 1000000 + DB_VERSION_MINOR * 1000
11421                 + DB_VERSION_PATCH ;
11422
11423     /* needs to be >= 2.3.4 */
11424     if (Version < 2003004) {
11425     /* if (DB_VERSION_MAJOR == 2 && DB_VERSION_MINOR == 0 && DB_VERSION_PATCH < 5) { */
11426         printf("but Perl needs Berkeley DB 2.3.4 or greater\n") ;
11427         exit(2);        
11428     }
11429
11430     exit(0);
11431 #else
11432 #if defined(_DB_H_) && defined(BTREEMAGIC) && defined(HASHMAGIC)
11433     printf("You have Berkeley DB Version 1\n");
11434     exit(0);    /* DB version < 2: the coast is clear. */
11435 #else
11436     exit(1);    /* <db.h> not Berkeley DB? */
11437 #endif
11438 #endif
11439 }
11440 EOCP
11441         set try
11442         if eval $compile_ok && ./try; then
11443                 echo 'Looks OK.' >&4
11444         else
11445                 echo "I can't use Berkeley DB with your <db.h>.  I'll disable Berkeley DB." >&4
11446                 i_db=$undef
11447                 case " $libs " in
11448                 *"-ldb "*)
11449                         : Remove db from list of libraries to use
11450                         echo "Removing unusable -ldb from library list" >&4
11451                         set `echo X $libs | $sed -e 's/-ldb / /' -e 's/-ldb$//'`
11452                         shift
11453                         libs="$*"
11454                         echo "libs = $libs" >&4
11455                         ;;
11456                 esac
11457         fi
11458         $rm -f try.*
11459         ;;
11460 esac
11461
11462 case "$i_db" in
11463 define)
11464         : Check the return type needed for hash 
11465         echo " "
11466         echo "Checking return type needed for hash for Berkeley DB ..." >&4
11467         $cat >try.c <<EOCP
11468 #$d_const HASCONST
11469 #ifndef HASCONST
11470 #define const
11471 #endif
11472 #include <sys/types.h>
11473 #include <db.h>
11474
11475 #ifndef DB_VERSION_MAJOR
11476 u_int32_t hash_cb (ptr, size)
11477 const void *ptr;
11478 size_t size;
11479 {
11480 }
11481 HASHINFO info;
11482 int main()
11483 {
11484         info.hash = hash_cb;
11485 }
11486 #endif
11487 EOCP
11488         if $cc $ccflags -c try.c >try.out 2>&1 ; then
11489                 if $contains warning try.out >>/dev/null 2>&1 ; then
11490                         db_hashtype='int'
11491                 else
11492                         db_hashtype='u_int32_t'
11493                 fi
11494         else
11495                 : XXX Maybe we should just give up here.
11496                 db_hashtype=u_int32_t
11497                 $cat try.out >&4
11498                 echo "Help:  I can't seem to compile the db test program." >&4
11499                 echo "Something's wrong, but I'll assume you use $db_hashtype." >&4
11500         fi
11501         $rm -f try.*
11502         echo "Your version of Berkeley DB uses $db_hashtype for hash."
11503         ;;
11504 *)      db_hashtype=u_int32_t
11505         ;;
11506 esac
11507 case "$i_db" in
11508 define)
11509         : Check the return type needed for prefix 
11510         echo " "
11511         echo "Checking return type needed for prefix for Berkeley DB ..." >&4
11512         cat >try.c <<EOCP
11513 #$d_const HASCONST
11514 #ifndef HASCONST
11515 #define const
11516 #endif
11517 #include <sys/types.h>
11518 #include <db.h>
11519
11520 #ifndef DB_VERSION_MAJOR
11521 size_t prefix_cb (key1, key2)
11522 const DBT *key1;
11523 const DBT *key2;
11524 {
11525 }
11526 BTREEINFO info;
11527 int main()
11528 {
11529         info.prefix = prefix_cb;
11530 }
11531 #endif
11532 EOCP
11533         if $cc $ccflags -c try.c  >try.out 2>&1 ; then
11534                 if $contains warning try.out >>/dev/null 2>&1 ; then
11535                         db_prefixtype='int'
11536                 else
11537                         db_prefixtype='size_t'
11538                 fi
11539         else
11540                 db_prefixtype='size_t'
11541                 : XXX Maybe we should just give up here.
11542                 $cat try.out >&4
11543                 echo "Help:  I can't seem to compile the db test program." >&4
11544                 echo "Something's wrong, but I'll assume you use $db_prefixtype." >&4
11545         fi
11546         $rm -f try.*
11547         echo "Your version of Berkeley DB uses $db_prefixtype for prefix."
11548         ;;
11549 *)      db_prefixtype='size_t'
11550         ;;
11551 esac
11552
11553 : check for void type
11554 echo " "
11555 echo "Checking to see how well your C compiler groks the void type..." >&4
11556 case "$voidflags" in
11557 '')
11558         $cat >try.c <<'EOCP'
11559 #if TRY & 1
11560 void sub() {
11561 #else
11562 sub() {
11563 #endif
11564         extern void moo();      /* function returning void */
11565         void (*goo)();          /* ptr to func returning void */
11566 #if TRY & 8
11567         void *hue;              /* generic ptr */
11568 #endif
11569 #if TRY & 2
11570         void (*foo[10])();
11571 #endif
11572
11573 #if TRY & 4
11574         if(goo == moo) {
11575                 exit(0);
11576         }
11577 #endif
11578         exit(0);
11579 }
11580 int main() { sub(); }
11581 EOCP
11582         if $cc $ccflags -c -DTRY=$defvoidused try.c >.out 2>&1 ; then
11583                 voidflags=$defvoidused
11584         echo "Good.  It appears to support void to the level $package wants.">&4
11585                 if $contains warning .out >/dev/null 2>&1; then
11586                         echo "However, you might get some warnings that look like this:"
11587                         $cat .out
11588                 fi
11589         else
11590 echo "Hmm, your compiler has some difficulty with void. Checking further..." >&4
11591                 if $cc $ccflags -c -DTRY=1 try.c >/dev/null 2>&1; then
11592                         echo "It supports 1..."
11593                         if $cc $ccflags -c -DTRY=3 try.c >/dev/null 2>&1; then
11594                                 echo "It also supports 2..."
11595                                 if $cc $ccflags -c -DTRY=7 try.c >/dev/null 2>&1; then
11596                                         voidflags=7
11597                                         echo "And it supports 4 but not 8 definitely."
11598                                 else
11599                                         echo "It doesn't support 4..."
11600                                         if $cc $ccflags -c -DTRY=11 try.c >/dev/null 2>&1; then
11601                                                 voidflags=11
11602                                                 echo "But it supports 8."
11603                                         else
11604                                                 voidflags=3
11605                                                 echo "Neither does it support 8."
11606                                         fi
11607                                 fi
11608                         else
11609                                 echo "It does not support 2..."
11610                                 if $cc $ccflags -c -DTRY=13 try.c >/dev/null 2>&1; then
11611                                         voidflags=13
11612                                         echo "But it supports 4 and 8."
11613                                 else
11614                                         if $cc $ccflags -c -DTRY=5 try.c >/dev/null 2>&1; then
11615                                                 voidflags=5
11616                                                 echo "And it supports 4 but has not heard about 8."
11617                                         else
11618                                                 echo "However it supports 8 but not 4."
11619                                         fi
11620                                 fi
11621                         fi
11622                 else
11623                         echo "There is no support at all for void."
11624                         voidflags=0
11625                 fi
11626         fi
11627 esac
11628 case "$voidflags" in
11629 "$defvoidused") ;;
11630 *)      $cat >&4 <<'EOM'
11631   Support flag bits are:
11632     1: basic void declarations.
11633     2: arrays of pointers to functions returning void.
11634     4: operations between pointers to and addresses of void functions.
11635     8: generic void pointers.
11636 EOM
11637         dflt="$voidflags";
11638         rp="Your void support flags add up to what?"
11639         . ./myread
11640         voidflags="$ans"
11641         ;;
11642 esac
11643 $rm -f try.* .out
11644
11645
11646 : How can we generate normalized random numbers ?
11647 echo " "
11648 echo "Looking for a random number function..." >&4
11649 case "$randfunc" in
11650 '')
11651         if set drand48 val -f; eval $csym; $val; then
11652                 dflt="drand48"
11653                 echo "Good, found drand48()." >&4
11654         elif set random val -f; eval $csym; $val; then
11655                 dflt="random"
11656                 echo "OK, found random()." >&4
11657         else
11658                 dflt="rand"
11659                 echo "Yick, looks like I have to use rand()." >&4
11660         fi
11661         echo " "
11662         ;;
11663 *)
11664         dflt="$randfunc"
11665         ;;
11666 esac
11667 cont=true
11668
11669 case "$ccflags" in
11670 *-Dmy_rand=*|*-Dmy_srand=*)
11671         echo "Removing obsolete -Dmy_rand, -Dmy_srand, and -Drandbits from ccflags." >&4
11672         ccflags="`echo $ccflags | sed -e 's/-Dmy_rand=random/ /'`"
11673         ccflags="`echo $ccflags | sed -e 's/-Dmy_srand=srandom/ /'`"
11674         ccflags="`echo $ccflags | sed -e 's/-Drandbits=[0-9][0-9]*/ /'`"
11675         ;;
11676 esac
11677
11678 while $test "$cont"; do
11679         rp="Use which function to generate random numbers?"
11680         . ./myread
11681         if $test "$ans" = "$dflt"; then
11682                 : null
11683         else
11684                 randbits=''
11685         fi
11686         randfunc="$ans"
11687         if set $ans val -f; eval $csym; $val; then
11688                 cont=''
11689         else
11690                 dflt=y
11691                 rp="I cannot find function $ans. Use that name anyway?"
11692                 . ./myread
11693                 dflt=rand
11694                 case "$ans" in
11695                         [yY]*) cont='';;
11696                 esac
11697         fi
11698         case "$cont" in
11699         '')
11700                 case "$randfunc" in
11701                 drand48)
11702                         drand01="drand48()"
11703                         seedfunc="srand48"
11704                         randbits=48
11705                         randseedtype=long
11706                         ;;
11707                 rand|random)
11708                         case "$randbits" in
11709                         '')
11710 echo "Checking to see how many bits your $randfunc() function produces..." >&4
11711                                 $cat >try.c <<EOCP
11712 #$i_unistd I_UNISTD
11713 #$i_stdlib I_STDLIB
11714 #include <stdio.h>
11715 #ifdef I_UNISTD
11716 #  include <unistd.h>
11717 #endif
11718 #ifdef I_STDLIB
11719 #  include <stdlib.h>
11720 #endif
11721 int main()
11722 {
11723         register int i;
11724         register unsigned long tmp;
11725         register unsigned long max = 0L;
11726
11727         for (i = 1000; i; i--) {
11728                 tmp = (unsigned long) $randfunc();
11729                 if (tmp > max) max = tmp;
11730         }
11731         for (i = 0; max; i++)
11732                 max /= 2;
11733         printf("%d\n",i);
11734 }
11735 EOCP
11736                                 set try
11737                                 if eval $compile_ok; then
11738                                         dflt=`try`
11739                                 else
11740                                         dflt='?'
11741                                         echo "(I can't seem to compile the test program...)"
11742                                 fi
11743                                 ;;
11744                         *)
11745                                 dflt="$randbits"
11746                                 ;;
11747                         esac
11748                         rp="How many bits does your $randfunc() function produce?"
11749                         . ./myread
11750                         randbits="$ans"
11751                         $rm -f try.c try
11752                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
11753                         seedfunc="s$randfunc"
11754                         randseedtype=unsigned
11755                         ;;
11756                 *)
11757                         dflt="31"
11758                         rp="How many bits does your $randfunc() function produce?"
11759                         . ./myread
11760                         randbits="$ans"
11761                         seedfunc="s$randfunc"
11762                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
11763                         if set $seedfunc val -f; eval $csym; $val; then
11764                                 echo "(Using $seedfunc() to seed random generator)"
11765                         else
11766                                 echo "(Warning: no $seedfunc() to seed random generator)"
11767                                 seedfunc=rand
11768                         fi
11769                         randseedtype=unsigned
11770                         ;;
11771                 esac
11772                 ;;
11773         esac
11774 done
11775
11776 echo " "
11777 echo "Determining whether or not we are on an EBCDIC system..." >&4
11778 $cat >tebcdic.c <<'EOM'
11779 int main()
11780 {
11781   if ('M'==0xd4) return 0;
11782   return 1;
11783 }
11784 EOM
11785
11786 val=$undef
11787 set tebcdic
11788 if eval $compile_ok; then
11789         if ./tebcdic; then
11790                 echo "You have EBCDIC." >&4
11791                 val="$define"
11792         else
11793                 echo "Nope, no EBCDIC, probably ASCII or some ISO Latin." >&4
11794         fi
11795 else
11796         echo "I'm unable to compile the test program." >&4
11797         echo "I'll assume ASCII or some ISO Latin." >&4
11798 fi
11799 $rm -f tebcdic.c tebcdic
11800 set ebcdic
11801 eval $setvar
11802
11803 echo " "
11804 $cat >&4 <<EOM
11805 Checking how to flush all pending stdio output...
11806 EOM
11807 # I only know how to find the first 32 possibly open files on SunOS.
11808 # See also hints/sunos_4_1.sh and util.c  --AD
11809 case "$osname" in
11810 sunos) $echo '#define PERL_FFLUSH_ALL_FOPEN_MAX 32' > try.c ;;
11811 esac
11812 $cat >>try.c <<EOCP
11813 #include <stdio.h>
11814 #$i_unistd I_UNISTD
11815 #ifdef I_UNISTD
11816 # include <unistd.h>
11817 #endif
11818 #$d_sysconf HAS_SYSCONF
11819 #$d_stdio_stream_array HAS_STDIO_STREAM_ARRAY
11820 #ifdef HAS_STDIO_STREAM_ARRAY
11821 # define STDIO_STREAM_ARRAY $stdio_stream_array
11822 #endif
11823 int main() {
11824   FILE* p = fopen("try.out", "w");
11825 #ifdef TRY_FPUTC
11826   fputc('x', p);
11827 #else
11828 # ifdef TRY_FPRINTF
11829   fprintf(p, "x");
11830 # endif
11831 #endif
11832 #ifdef TRY_FFLUSH_NULL
11833   fflush(NULL);
11834 #endif
11835 #ifdef TRY_FFLUSH_ALL
11836   {
11837     long open_max = -1;
11838 # ifdef PERL_FFLUSH_ALL_FOPEN_MAX
11839     open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
11840 # else
11841 #  if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
11842     open_max = sysconf(_SC_OPEN_MAX);
11843 #  else
11844 #   ifdef FOPEN_MAX
11845     open_max = FOPEN_MAX;
11846 #   else
11847 #    ifdef OPEN_MAX
11848     open_max = OPEN_MAX;
11849 #    else
11850 #     ifdef _NFILE
11851     open_max = _NFILE;
11852 #     endif
11853 #    endif
11854 #   endif
11855 #  endif
11856 # endif 
11857 # ifdef HAS_STDIO_STREAM_ARRAY
11858     if (open_max > 0) {
11859       long i;
11860       for (i = 0; i < open_max; i++)
11861             if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
11862                 STDIO_STREAM_ARRAY[i]._file < open_max &&
11863                 STDIO_STREAM_ARRAY[i]._flag)
11864                 fflush(&STDIO_STREAM_ARRAY[i]);
11865     }   
11866   }
11867 # endif
11868 #endif
11869   _exit(42);
11870 }
11871 EOCP
11872 : first we have to find out how _not_ to flush
11873 if $test "X$fflushNULL" = X -o "X$fflushall" = X; then
11874     output=''
11875     set try -DTRY_FPUTC
11876     if eval $compile; then
11877             $rm -f try.out
11878             ./try$exe_ext 2>/dev/null
11879             if $test ! -s try.out -a "X$?" = X42; then
11880                 output=-DTRY_FPUTC
11881             fi
11882     fi
11883     case "$output" in
11884     '')
11885             set try -DTRY_FPRINTF
11886             $rm -f try.out
11887             if eval $compile; then
11888                     $rm -f try.out
11889                     ./try$exe_ext 2>/dev/null
11890                     if $test ! -s try.out -a "X$?" = X42; then
11891                         output=-DTRY_FPRINTF
11892                     fi
11893             fi
11894         ;;
11895     esac
11896 fi
11897 : check for fflush NULL behaviour
11898 case "$fflushNULL" in
11899 '')     set try -DTRY_FFLUSH_NULL $output
11900         if eval $compile; then
11901                 $rm -f try.out
11902                 ./try$exe_ext 2>/dev/null
11903                 code="$?"
11904                 if $test -s try.out -a "X$code" = X42; then
11905                         fflushNULL="`$cat try.out`"
11906                 else
11907                         if $test "X$code" != X42; then
11908                                 $cat >&4 <<EOM
11909 (If this test failed, don't worry, we'll try another method shortly.)
11910 EOM
11911                         fi
11912                 fi
11913         fi
11914         $rm -f core try.core core.try.*
11915         case "$fflushNULL" in
11916         x)      $cat >&4 <<EOM
11917 Your fflush(NULL) works okay.
11918 EOM
11919                 fflushNULL="$define"
11920                 ;;
11921         '')     $cat >&4 <<EOM
11922 Your fflush(NULL) isn't working (contrary to ANSI C).
11923 EOM
11924                 fflushNULL="$undef"
11925                 ;;
11926         *)      $cat >&4 <<EOM
11927 Cannot figure out whether your fflush(NULL) works or not.
11928 I'm assuming it doesn't (contrary to ANSI C).
11929 EOM
11930                 fflushNULL="$undef"
11931                 ;;
11932         esac
11933         ;;
11934 $define|true|[yY]*)
11935         fflushNULL="$define"
11936         ;;
11937 *)
11938         fflushNULL="$undef"
11939         ;;
11940 esac
11941 : check explicit looping only if NULL did not work
11942 case "$fflushNULL" in
11943 "$undef")
11944         : check for fflush all behaviour
11945         case "$fflushall" in
11946         '')     set try -DTRY_FFLUSH_ALL $output
11947                 if eval $compile; then
11948                         $cat >&4 <<EOM
11949 (Now testing the other method--but note that also this may fail.)
11950 EOM
11951                         $rm -f try.out
11952                         ./try$exe_ext 2>/dev/null
11953                         if $test -s try.out -a "X$?" = X42; then
11954                                 fflushall="`$cat try.out`"
11955                         fi
11956                 fi
11957                 $rm -f core try.core core.try.*
11958                 case "$fflushall" in
11959                 x)      $cat >&4 <<EOM
11960 Whew. Flushing explicitly all the stdio streams works.
11961 EOM
11962                         fflushall="$define"
11963                         ;;
11964                 '')     $cat >&4 <<EOM
11965 Sigh. Flushing explicitly all the stdio streams doesn't work.
11966 EOM
11967                         fflushall="$undef"
11968                         ;;
11969                 *)      $cat >&4 <<EOM
11970 Cannot figure out whether flushing stdio streams explicitly works or not.
11971 I'm assuming it doesn't.
11972 EOM
11973                         fflushall="$undef"
11974                         ;;
11975                 esac
11976                 ;;
11977         "$define"|true|[yY]*)
11978                 fflushall="$define"
11979                 ;;
11980         *)
11981                 fflushall="$undef"
11982                 ;;
11983         esac
11984         ;;
11985 *)      fflushall="$undef"      
11986         ;;
11987 esac
11988 case "$fflushNULL$fflushall" in
11989 undefundef)
11990         $cat <<EOM
11991 I cannot figure out how to flush pending stdio output.
11992 EOM
11993         ;;
11994 esac
11995 $rm -f try.* try$exe_ext
11996
11997 : Store the full pathname to the ar program for use in the C program
11998 : Respect a hint or command line value for full_ar.
11999 case "$full_ar" in
12000 '') full_ar=$ar ;;
12001 esac
12002
12003 : Store the full pathname to the sed program for use in the C program
12004 full_sed=$sed
12005
12006 : see what type gids are declared as in the kernel
12007 echo " "
12008 echo "Looking for the type for group ids returned by getgid()."
12009 set gid_t gidtype xxx stdio.h sys/types.h
12010 eval $typedef
12011 case "$gidtype" in
12012 xxx)
12013         xxx=`./findhdr sys/user.h`
12014         set `grep 'groups\[NGROUPS\];' "$xxx" 2>/dev/null` unsigned short
12015         case $1 in
12016         unsigned) dflt="$1 $2" ;;
12017         *) dflt="$1" ;;
12018         esac
12019         ;;
12020 *) dflt="$gidtype";;
12021 esac
12022 case "$gidtype" in
12023 gid_t) echo "gid_t found." ;;
12024 *)      rp="What is the type for group ids returned by getgid()?"
12025         . ./myread
12026         gidtype="$ans"
12027         ;;
12028 esac
12029
12030 echo " "
12031 case "$gidtype" in
12032 *_t) zzz="$gidtype"     ;;
12033 *)   zzz="gid"          ;;
12034 esac
12035 echo "Checking the size of $zzz..." >&4 
12036 cat > try.c <<EOCP
12037 #include <sys/types.h>
12038 #include <stdio.h>
12039 int main() {
12040     printf("%d\n", (int)sizeof($gidtype));
12041     exit(0);
12042 }
12043 EOCP
12044 set try
12045 if eval $compile_ok; then
12046         yyy=`./try`
12047         case "$yyy" in
12048         '')     gidsize=4
12049                 echo "(I can't execute the test program--guessing $gidsize.)" >&4
12050                 ;;
12051         *)      gidsize=$yyy
12052                 echo "Your $zzz size is $gidsize bytes."
12053                 ;;
12054         esac
12055 else
12056         gidsize=4
12057         echo "(I can't compile the test program--guessing $gidsize.)" >&4
12058 fi
12059
12060
12061 echo " "
12062 case "$gidtype" in
12063 *_t) zzz="$gidtype"     ;;
12064 *)   zzz="gid"          ;;
12065 esac
12066 echo "Checking the sign of $zzz..." >&4 
12067 cat > try.c <<EOCP
12068 #include <sys/types.h>
12069 #include <stdio.h>
12070 int main() {
12071         $gidtype foo = -1;
12072         if (foo < 0)
12073                 printf("-1\n");
12074         else
12075                 printf("1\n");
12076 }
12077 EOCP
12078 set try
12079 if eval $compile; then
12080         yyy=`./try`
12081         case "$yyy" in
12082         '')     gidsign=1
12083                 echo "(I can't execute the test program--guessing unsigned.)" >&4
12084                 ;;
12085         *)      gidsign=$yyy
12086                 case "$gidsign" in
12087                  1) echo "Your $zzz is unsigned." ;;
12088                 -1) echo "Your $zzz is signed."   ;;
12089                 esac
12090                 ;;
12091         esac
12092 else
12093         gidsign=1
12094         echo "(I can't compile the test program--guessing unsigned.)" >&4
12095 fi
12096
12097
12098 : check for length of character
12099 echo " "
12100 case "$charsize" in
12101 '')
12102         echo "Checking to see how big your characters are (hey, you never know)..." >&4
12103         $cat >try.c <<'EOCP'
12104 #include <stdio.h>
12105 int main()
12106 {
12107     printf("%d\n", (int)sizeof(char));
12108     exit(0);
12109 }
12110 EOCP
12111         set try
12112         if eval $compile_ok; then
12113                 dflt=`./try`
12114         else
12115                 dflt='1'
12116                 echo "(I can't seem to compile the test program.  Guessing...)"
12117         fi
12118         ;;
12119 *)
12120         dflt="$charsize"
12121         ;;
12122 esac
12123 rp="What is the size of a character (in bytes)?"
12124 . ./myread
12125 charsize="$ans"
12126 $rm -f try.c try
12127
12128
12129 echo " "
12130 $echo "Choosing the C types to be used for Perl's internal types..." >&4
12131
12132 case "$use64bits:$d_quad:$quadtype" in
12133 define:define:?*)
12134         ivtype="$quadtype"
12135         uvtype="$uquadtype"
12136         ivsize=8
12137         uvsize=8
12138         ;;
12139 *)      ivtype="long"
12140         uvtype="unsigned long"
12141         ivsize=$longsize
12142         uvsize=$longsize
12143         ;;
12144 esac
12145
12146 case "$uselongdouble:$d_longdbl" in
12147 define:define)
12148         nvtype="long double"
12149         nvsize=$longdblsize
12150         ;;
12151 *)      nvtype=double
12152         nvsize=$doublesize
12153         ;;
12154 esac
12155
12156 echo "(IV will be "$ivtype", $ivsize bytes)"
12157 echo "(UV will be "$uvtype", $uvsize bytes)"
12158 echo "(NV will be "$nvtype", $nvsize bytes)"
12159
12160 $cat >try.c <<EOCP
12161 #$i_inttypes I_INTTYPES
12162 #ifdef I_INTTYPES
12163 #include <inttypes.h>
12164 #endif
12165 #include <stdio.h>
12166 int main() {
12167 #ifdef INT8
12168    int8_t i =  INT8_MAX;
12169   uint8_t u = UINT8_MAX;
12170   printf("int8_t\n");
12171 #endif
12172 #ifdef INT16
12173    int16_t i =  INT16_MAX;
12174   uint16_t i = UINT16_MAX;
12175   printf("int16_t\n");
12176 #endif
12177 #ifdef INT32
12178    int32_t i =  INT32_MAX;
12179   uint32_t u = UINT32_MAX;
12180   printf("int32_t\n");
12181 #endif
12182 }
12183 EOCP
12184
12185 case "$i8type" in
12186 '')     case "$charsize" in
12187         1)      i8type=char
12188                 u8type="unsigned char"
12189                 i8size=$charsize
12190                 u8size=$charsize
12191                 ;;
12192         esac
12193         ;;
12194 esac
12195 case "$i8type" in
12196 '')     set try -DINT8
12197         if eval $compile; then
12198                 case "`./try$exe_ext`" in
12199                 int8_t) i8type=int8_t
12200                         u8type=uint8_t
12201                         i8size=1
12202                         u8size=1
12203                         ;;
12204                 esac
12205         fi
12206         ;;
12207 esac
12208 case "$i8type" in
12209 '')     if $test $charsize -ge 1; then
12210                 i8type=char
12211                 u8type="unsigned char"
12212                 i8size=$charsize
12213                 u8size=$charsize
12214         fi
12215         ;;
12216 esac
12217
12218 case "$i16type" in
12219 '')     case "$shortsize" in
12220         2)      i16type=short
12221                 u16type="unsigned short"
12222                 i16size=$shortsize
12223                 u16size=$shortsize
12224                 ;;
12225         esac
12226         ;;
12227 esac
12228 case "$i16type" in
12229 '')     set try -DINT16
12230         if eval $compile; then
12231                 case "`./try$exe_ext`" in
12232                 int16_t)
12233                         i16type=int16_t
12234                         u16type=uint16_t
12235                         i16size=2
12236                         u16size=2
12237                         ;;
12238                 esac
12239         fi
12240         ;;
12241 esac
12242 case "$i16type" in
12243 '')     if $test $shortsize -ge 2; then
12244                 i16type=short
12245                 u16type="unsigned short"
12246                 i16size=$shortsize
12247                 u16size=$shortsize
12248         fi
12249         ;;
12250 esac
12251
12252 case "$i32type" in
12253 '')     case "$longsize" in
12254         4)      i32type=long
12255                 u32type="unsigned long"
12256                 i32size=$longsize
12257                 u32size=$longsize
12258                 ;;
12259         *)      case "$intsize" in
12260                 4)      i32type=int
12261                         u32type="unsigned int"
12262                         i32size=$intsize
12263                         u32size=$intsize
12264                         ;;
12265                 esac
12266                 ;;
12267         esac
12268         ;;
12269 esac
12270 case "$i32type" in
12271 '')     set try -DINT32
12272         if eval $compile; then
12273                 case "`./try$exe_ext`" in
12274                 int32_t)
12275                         i32type=int32_t
12276                         u32type=uint32_t
12277                         i32size=4
12278                         u32size=4
12279                         ;;
12280                 esac
12281         fi
12282         ;;
12283 esac
12284 case "$i32type" in
12285 '')     if $test $intsize -ge 4; then
12286                 i32type=int
12287                 u32type="unsigned int"
12288                 i32size=$intsize
12289                 u32size=$intsize
12290         fi
12291         ;;
12292 esac
12293
12294 case "$i64type" in
12295 '')     case "$d_quad:$quadtype" in
12296         define:?*)
12297                 i64type="$quadtype"
12298                 u64type="$uquadtype"
12299                 i64size=8
12300                 u64size=8
12301                 ;;
12302         esac
12303         ;;
12304 esac
12305
12306 $rm -f try.* try
12307
12308 echo " "
12309
12310 if $test X"$quadtype" != X; then
12311
12312 echo "Checking how to print 64-bit integers..." >&4
12313
12314 if $test X"$sPRId64" = X -a X"$quadtype" = Xint; then
12315         $cat >try.c <<'EOCP'
12316 #include <sys/types.h>
12317 #include <stdio.h>
12318 int main() {
12319   int q = 12345678901;
12320   printf("%ld\n", q);
12321 }
12322 EOCP
12323         set try
12324         if eval $compile; then
12325                 yyy=`./try$exe_ext`
12326                 case "$yyy" in
12327                 12345678901)
12328                         sPRId64='"d"'; sPRIi64='"i"'; sPRIu64='"u"';
12329                         sPRIo64='"o"'; sPRIx64='"x"'; sPRIX64='"X"';
12330                         echo "We will use %d."
12331                         ;;
12332                 esac
12333         fi
12334 fi
12335
12336 if $test X"$sPRId64" = X -a X"$quadtype" = Xlong; then
12337         $cat >try.c <<'EOCP'
12338 #include <sys/types.h>
12339 #include <stdio.h>
12340 int main() {
12341   long q = 12345678901;
12342   printf("%ld\n", q);
12343 }
12344 EOCP
12345         set try
12346         if eval $compile; then
12347                 yyy=`./try$exe_ext`
12348                 case "$yyy" in
12349                 12345678901)
12350                         sPRId64='"ld"'; sPRIi64='"li"'; sPRIu64='"lu"';
12351                         sPRIo64='"lo"'; sPRIx64='"lx"'; sPRIX64='"lX"';
12352                         echo "We will use %ld."
12353                         ;;
12354                 esac
12355         fi
12356 fi
12357
12358 if $test X"$sPRId64" = X -a X"$i_inttypes.h" = X"$define" -a X"$quadtype" = Xint64_t; then
12359         $cat >try.c <<'EOCP'
12360 #include <sys/types.h>
12361 #include <inttypes.h>
12362 #include <stdio.h>
12363 int main() {
12364   int64_t q = 12345678901;
12365   printf("%" PRId64 "\n", q);
12366 }
12367 EOCP
12368         set try
12369         if eval $compile; then
12370                 yyy=`./try$exe_ext`
12371                 case "$yyy" in
12372                 12345678901)
12373                         sPRId64=PRId64; sPRIi64=PRIi64; sPRIu64=PRIu64;
12374                         sPRIo64=PRIo64; sPRIx64=PRIx64; sPRIX64=PRIX64;
12375                         echo "We will use the C9X style."
12376                         ;;
12377                 esac
12378         fi
12379 fi
12380
12381 if $test X"$sPRId64" = X -a X"$quadtype" = X"long long"; then
12382         $cat >try.c <<'EOCP'
12383 #include <sys/types.h>
12384 #include <stdio.h>
12385 int main() {
12386   long long q = 12345678901LL; /* AIX cc requires the LL prefix. */
12387   printf("%lld\n", q);
12388 }
12389 EOCP
12390         set try
12391         if eval $compile; then
12392                 yyy=`./try$exe_ext`
12393                 case "$yyy" in
12394                 12345678901)
12395                         sPRId64='"lld"'; sPRIi64='"lli"'; sPRIu64='"llu"';
12396                         sPRIo64='"llo"'; sPRIx64='"llx"'; sPRIX64='"llX"';
12397                         echo "We will use the %lld style."
12398                         ;;
12399                 esac
12400         fi
12401 fi
12402
12403 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
12404         $cat >try.c <<EOCP
12405 #include <sys/types.h>
12406 #include <stdio.h>
12407 int main() {
12408   $quadtype q = 12345678901;
12409   printf("%Ld\n", q);
12410 }
12411 EOCP
12412         set try
12413         if eval $compile; then
12414                 yyy=`./try$exe_ext`
12415                 case "$yyy" in
12416                 12345678901)
12417                         sPRId64='"Ld"'; sPRIi64='"Li"'; sPRIu64='"Lu"';
12418                         sPRIo64='"Lo"'; sPRIx64='"Lx"'; sPRIX64='"LX"';
12419                         echo "We will use %Ld."
12420                         ;;
12421                 esac
12422         fi
12423 fi
12424
12425 if $test X"$sPRId64" = X -a X"$quadtype" != X; then
12426         $cat >try.c <<EOCP
12427 #include <sys/types.h>
12428 #include <stdio.h>
12429 int main() {
12430   $quadtype q = 12345678901;
12431   printf("%qd\n", q);
12432 }
12433 EOCP
12434         set try
12435         if eval $compile; then
12436                 yyy=`./try$exe_ext`
12437                 case "$yyy" in
12438                 12345678901)
12439                         sPRId64='"qd"'; sPRIi64='"qi"'; sPRIu64='"qu"';
12440                         sPRIo64='"qo"'; sPRIx64='"qx"'; sPRIX64='"qX"';
12441                         echo "We will use %qd."
12442                         ;;
12443                 esac
12444         fi
12445 fi
12446
12447 if $test X"$sPRId64" = X; then
12448         echo "Cannot figure out how to print 64-bit integers." >&4
12449 fi
12450
12451 $rm -f try try.*
12452
12453 fi
12454
12455 case "$sPRId64" in
12456 '')     d_PRId64="$undef"; d_PRIi64="$undef"; d_PRIu64="$undef"; 
12457         d_PRIo64="$undef"; d_PRIx64="$undef"; d_PRIX64="$undef"; 
12458         ;;
12459 *)      d_PRId64="$define"; d_PRIi64="$define"; d_PRIu64="$define"; 
12460         d_PRIo64="$define"; d_PRIx64="$define"; d_PRIX64="$define"; 
12461         ;;
12462 esac
12463
12464
12465 echo " "
12466 $echo "Checking the format strings to be used for Perl's internal types..." >&4
12467
12468 if $test X"$ivsize" = X8; then
12469         ivdformat="$sPRId64"
12470         uvuformat="$sPRIu64"
12471         uvoformat="$sPRIo64"
12472         uvxformat="$sPRIx64"
12473 else
12474         if $test X"$ivsize" = X"$longsize"; then
12475                 ivdformat='"ld"'
12476                 uvuformat='"lu"'
12477                 uvoformat='"lo"'
12478                 uvxformat='"lx"'
12479         else
12480                 if $test X"$ivsize" = X"$intsize"; then
12481                         ivdformat='"d"'
12482                         uvuformat='"u"'
12483                         uvoformat='"o"'
12484                         uvxformat='"x"'
12485                 else
12486                         : far out
12487                         if $test X"$ivsize" = X"$shortsize"; then
12488                                 ivdformat='"hd"'
12489                                 uvuformat='"hu"'
12490                                 uvoformat='"ho"'
12491                                 uvxformat='"hx"'
12492                         fi
12493                 fi
12494         fi
12495 fi
12496
12497 case "$ivdformat" in
12498 '') echo "$0: Fatal: failed to find format strings, cannot continue." >& 4
12499     exit 1
12500     ;;
12501 esac
12502
12503
12504 echo " "
12505 $echo "Checking the format string to be used for gids..." >&4
12506
12507 case "$gidsign" in
12508 -1)     if $test X"$gidsize" = X"$ivsize"; then
12509                 gidformat="$ivdformat"
12510         else
12511                 if $test X"$gidsize" = X"$longsize"; then
12512                         gidformat='"ld"'
12513                 else
12514                         if $test X"$gidsize" = X"$intsize"; then
12515                                 gidformat='"d"'
12516                         else
12517                                 if $test X"$gidsize" = X"$shortsize"; then
12518                                         gidformat='"hd"'
12519                                 fi
12520                         fi
12521                 fi
12522         fi
12523         ;;
12524 *)      if $test X"$gidsize" = X"$uvsize"; then
12525                 gidformat="$uvuformat"
12526         else
12527                 if $test X"$gidsize" = X"$longsize"; then
12528                         gidformat='"lu"'
12529                 else
12530                         if $test X"$gidsize" = X"$intsize"; then
12531                                 gidformat='"u"'
12532                         else
12533                                 if $test X"$gidsize" = X"$shortsize"; then
12534                                         gidformat='"hu"'
12535                                 fi
12536                         fi
12537                 fi
12538         fi
12539         ;;
12540 esac
12541
12542 : see if getgroups exists
12543 set getgroups d_getgrps
12544 eval $inlibc
12545
12546 : see if setgroups exists
12547 set setgroups d_setgrps
12548 eval $inlibc
12549
12550
12551 : Find type of 2nd arg to 'getgroups()' and 'setgroups()'
12552 echo " "
12553 case "$d_getgrps$d_setgrps" in
12554 *define*)
12555         case "$groupstype" in
12556         '') dflt="$gidtype" ;;
12557         *)  dflt="$groupstype" ;;
12558         esac
12559         $cat <<EOM
12560 What type of pointer is the second argument to getgroups() and setgroups()?
12561 Usually this is the same as group ids, $gidtype, but not always.
12562
12563 EOM
12564         rp='What type pointer is the second argument to getgroups() and setgroups()?'
12565         . ./myread
12566         groupstype="$ans"
12567         ;;
12568 *)  groupstype="$gidtype";;
12569 esac
12570
12571 echo " "
12572 echo "Checking if your $make program sets \$(MAKE)..." >&4
12573 case "$make_set_make" in
12574 '')
12575         $sed 's/^X //' > testmake.mak << 'EOF'
12576 Xall:
12577 X       @echo 'maketemp="$(MAKE)"'
12578 EOF
12579         case "`$make -f testmake.mak 2>/dev/null`" in
12580         *maketemp=*) make_set_make='#' ;;
12581         *)      make_set_make="MAKE=$make" ;;
12582         esac
12583         $rm -f testmake.mak
12584         ;;
12585 esac
12586 case "$make_set_make" in
12587 '#') echo "Yup, it does.";;
12588 *) echo "Nope, it doesn't.";;
12589 esac
12590
12591 : see what type is used for mode_t
12592 rp="What is the type used for file modes for system calls (e.g. fchmod())?"
12593 set mode_t modetype int stdio.h sys/types.h
12594 eval $typedef_ask
12595
12596 : define a fucntion to check prototypes
12597 $cat > protochk <<EOSH
12598 $startsh
12599 cc="$cc"
12600 optimize="$optimize"
12601 ccflags="$ccflags"
12602 prototype="$prototype"
12603 define="$define"
12604 rm=$rm
12605 EOSH
12606
12607 $cat >> protochk <<'EOSH'
12608
12609 $rm -f try.c
12610 foo="$1"
12611 shift
12612 while test $# -ge 2; do
12613         case "$1" in
12614                 $define) echo "#include <$2>" >> try.c ;;
12615                 literal) echo "$2" >> try.c ;;
12616         esac
12617     shift 2
12618 done
12619 test "$prototype" = "$define"  && echo '#define CAN_PROTOTYPE' >> try.c
12620 cat >> try.c <<'EOCP'
12621 #ifdef CAN_PROTOTYPE
12622 #define _(args) args
12623 #else
12624 #define _(args) ()
12625 #endif
12626 EOCP
12627 echo "$foo" >> try.c
12628 echo 'int no_real_function_has_this_name _((void)) { return 0; }' >> try.c
12629 $cc $optimize $ccflags -c try.c > /dev/null 2>&1
12630 status=$?
12631 $rm -f try.[co]
12632 exit $status
12633 EOSH
12634 chmod +x protochk
12635 $eunicefix protochk
12636
12637 : see what type is used for size_t
12638 rp="What is the type used for the length parameter for string functions?"
12639 set size_t sizetype 'unsigned int' stdio.h sys/types.h
12640 eval $typedef_ask
12641
12642 : check for type of arguments to gethostbyaddr. 
12643 if test "X$netdb_host_type" = X -o "X$netdb_hlen_type" = X; then
12644         case "$d_gethbyaddr" in
12645         $define)
12646                 $cat <<EOM
12647
12648 Checking to see what type of arguments are accepted by gethostbyaddr().
12649 EOM
12650                 hdrs="$define sys/types.h
12651                         $d_socket sys/socket.h 
12652                         $i_niin netinet/in.h 
12653                         $i_netdb netdb.h
12654                         $i_unistd unistd.h"
12655                 : The first arg can 'char *' or 'void *'
12656                 : The second arg is some of integral type
12657                 for xxx in in_addr_t 'const void *' 'const char *' 'void *' 'char *'; do
12658                         for yyy in size_t long int; do
12659                                 case "$netdb_host_type" in
12660                                 '')     try="extern struct hostent *gethostbyaddr($xxx, $yyy, int);"
12661                                         if ./protochk "$try" $hdrs; then
12662                                                 echo "Your system accepts $xxx for the first arg."
12663                                                 echo "...and $yyy for the second arg."
12664                                                 netdb_host_type="$xxx"
12665                                                 netdb_hlen_type="$yyy"
12666                                         fi
12667                                         ;;
12668                                 esac
12669                         done
12670                 done
12671                 : In case none of those worked, prompt the user.
12672                 case "$netdb_host_type" in
12673                 '')     rp='What is the type for the 1st argument to gethostbyaddr?'
12674                         dflt='char *'
12675                         . ./myread
12676                         netdb_host_type=$ans
12677                         rp='What is the type for the 2nd argument to gethostbyaddr?'
12678                         dflt="$sizetype"
12679                         . ./myread
12680                         netdb_hlen_type=$ans
12681                         ;;
12682                 esac
12683                 ;;
12684         *)      : no gethostbyaddr, so pick harmless defaults
12685                 netdb_host_type='char *'
12686                 netdb_hlen_type="$sizetype"
12687                 ;;
12688         esac
12689         # Remove the "const" if needed. -- but then we'll have a 
12690         # prototype clash!
12691         # netdb_host_type=`echo "$netdb_host_type" | sed 's/^const //'`
12692 fi
12693
12694 : check for type of argument to gethostbyname. 
12695 if test "X$netdb_name_type" = X ; then
12696         case "$d_gethbyname" in
12697         $define)
12698                 $cat <<EOM
12699
12700 Checking to see what type of argument is accepted by gethostbyname().
12701 EOM
12702                 hdrs="$define sys/types.h
12703                         $d_socket sys/socket.h 
12704                         $i_niin netinet/in.h 
12705                         $i_netdb netdb.h
12706                         $i_unistd unistd.h"
12707                 for xxx in "const char *" "char *"; do
12708                         case "$netdb_name_type" in
12709                         '')     try="extern struct hostent *gethostbyname($xxx);"
12710                                 if ./protochk "$try" $hdrs; then
12711                                         echo "Your system accepts $xxx."
12712                                         netdb_name_type="$xxx"
12713                                 fi
12714                                 ;;
12715                         esac
12716                 done
12717                 : In case none of those worked, prompt the user.
12718                 case "$netdb_name_type" in
12719                 '')     rp='What is the type for the 1st argument to gethostbyname?'
12720                         dflt='char *'
12721                         . ./myread
12722                         netdb_name_type=$ans
12723                         ;;
12724                 esac
12725                 ;;
12726         *)      : no gethostbyname, so pick harmless default
12727                 netdb_name_type='char *'
12728                 ;;
12729         esac
12730 fi
12731
12732 : check for type of 1st argument to getnetbyaddr. 
12733 if test "X$netdb_net_type" = X ; then
12734         case "$d_getnbyaddr" in
12735         $define)
12736                 $cat <<EOM
12737
12738 Checking to see what type of 1st argument is accepted by getnetbyaddr().
12739 EOM
12740                 hdrs="$define sys/types.h
12741                         $d_socket sys/socket.h 
12742                         $i_niin netinet/in.h 
12743                         $i_netdb netdb.h
12744                         $i_unistd unistd.h"
12745                 for xxx in in_addr_t "unsigned long" long "unsigned int" int; do
12746                         case "$netdb_net_type" in
12747                         '')     try="extern struct netent *getnetbyaddr($xxx, int);"
12748                                 if ./protochk "$try" $hdrs; then
12749                                         echo "Your system accepts $xxx."
12750                                         netdb_net_type="$xxx"
12751                                 fi
12752                                 ;;
12753                         esac
12754                 done
12755                 : In case none of those worked, prompt the user.
12756                 case "$netdb_net_type" in
12757                 '')     rp='What is the type for the 1st argument to getnetbyaddr?'
12758                         dflt='long'
12759                         . ./myread
12760                         netdb_net_type=$ans
12761                         ;;
12762                 esac
12763                 ;;
12764         *)      : no getnetbyaddr, so pick harmless default
12765                 netdb_net_type='long'
12766                 ;;
12767         esac
12768 fi
12769 : locate the preferred pager for this system
12770 case "$pager" in
12771 '')
12772         dflt=''
12773         case "$pg" in
12774         /*) dflt=$pg;;
12775         esac
12776         case "$more" in
12777         /*) dflt=$more;;
12778         esac
12779         case "$less" in
12780         /*) dflt=$less;;
12781         esac
12782         case "$dflt" in
12783         '') dflt=/usr/ucb/more;;
12784         esac
12785         ;;
12786 *) dflt="$pager";;
12787 esac
12788 echo " "
12789 fn=f/
12790 rp='What pager is used on your system?'
12791 . ./getfile
12792 pager="$ans"
12793
12794 : see what type pids are declared as in the kernel
12795 rp="What is the type of process ids on this system?"
12796 set pid_t pidtype int stdio.h sys/types.h
12797 eval $typedef_ask
12798
12799 : check for length of pointer
12800 echo " "
12801 case "$ptrsize" in
12802 '')
12803         $echo $n "Checking to see how big your pointers are...$c" >&4
12804         if test "$voidflags" -gt 7; then
12805                 echo '#define VOID_PTR char *' > try.c
12806         else
12807                 echo '#define VOID_PTR void *' > try.c
12808         fi
12809         $cat >>try.c <<'EOCP'
12810 #include <stdio.h>
12811 int main()
12812 {
12813     printf("%d\n", (int)sizeof(VOID_PTR));
12814     exit(0);
12815 }
12816 EOCP
12817         set try
12818         if eval $compile_ok; then
12819                 ptrsize=`./try`
12820                 $echo " $ptrsize bytes." >&4
12821         else
12822                 dflt='4'
12823                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
12824                 rp="What is the size of a pointer (in bytes)?"
12825                 . ./myread
12826                 ptrsize="$ans"
12827         fi
12828         ;;
12829 esac
12830 $rm -f try.c try
12831
12832 : see if ar generates random libraries by itself
12833 echo " "
12834 echo "Checking how to generate random libraries on your machine..." >&4
12835 echo 'int bar1() { return bar2(); }' > bar1.c
12836 echo 'int bar2() { return 2; }' > bar2.c
12837 $cat > foo.c <<'EOP'
12838 int main() { printf("%d\n", bar1()); exit(0); }
12839 EOP
12840 $cc $ccflags -c bar1.c >/dev/null 2>&1
12841 $cc $ccflags -c bar2.c >/dev/null 2>&1
12842 $cc $ccflags -c foo.c >/dev/null 2>&1
12843 $ar rc bar$_a bar2$_o bar1$_o >/dev/null 2>&1
12844 if $cc $ccflags $ldflags -o foobar foo$_o bar$_a $libs > /dev/null 2>&1 &&
12845         ./foobar >/dev/null 2>&1; then
12846         echo "$ar appears to generate random libraries itself."
12847         orderlib=false
12848         ranlib=":"
12849 elif $ar ts bar$_a >/dev/null 2>&1 &&
12850         $cc $ccflags $ldflags -o foobar foo$_o bar$_a $libs > /dev/null 2>&1 &&
12851         ./foobar >/dev/null 2>&1; then
12852                 echo "a table of contents needs to be added with '$ar ts'."
12853                 orderlib=false
12854                 ranlib="$ar ts"
12855 else
12856         case "$ranlib" in
12857         :) ranlib='';;
12858         '')
12859                 ranlib=`./loc ranlib X /usr/bin /bin /usr/local/bin`
12860                 $test -f $ranlib || ranlib=''
12861                 ;;
12862         esac
12863         if $test -n "$ranlib"; then
12864                 echo "your system has '$ranlib'; we'll use that."
12865                 orderlib=false
12866         else
12867                 echo "your system doesn't seem to support random libraries"
12868                 echo "so we'll use lorder and tsort to order the libraries."
12869                 orderlib=true
12870                 ranlib=":"
12871         fi
12872 fi
12873 $rm -f foo* bar* 
12874
12875 : check for type of arguments to select. 
12876 case "$selecttype" in
12877 '') case "$d_select" in
12878         $define)
12879                 $cat <<EOM
12880 Checking to see what type of arguments are accepted by select().
12881 EOM
12882                 hdrs="$define sys/types.h
12883                         $i_systime sys/time.h 
12884                         $i_sysselct sys/select.h
12885                         $d_socket sys/socket.h"
12886                 : The first arg can be int, unsigned, or size_t
12887                 : The last arg may or may not be 'const'
12888                 val=''
12889                 : void pointer has been seen but using that
12890                 : breaks the selectminbits test
12891                 for xxx in 'fd_set *' 'int *'; do
12892                         for nfd in 'int' 'size_t' 'unsigned long' 'unsigned' ; do
12893                                 for tmo in 'struct timeval *' 'const struct timeval *'; do
12894                                         case "$val" in
12895                                         '')     try="extern select _(($nfd, $xxx, $xxx, $xxx, $tmo));"
12896                                                 if ./protochk "$try" $hdrs; then
12897                                                         echo "Your system accepts $xxx."
12898                                                         val="$xxx"
12899                                                 fi
12900                                                 ;;
12901                                         esac
12902                                 done
12903                         done
12904                 done
12905                 case "$val" in
12906                 '')     rp='What is the type for the 2nd, 3rd, and 4th arguments to select?'
12907                         case "$d_fd_set" in
12908                                 $define) dflt="fd_set *" ;;
12909                                 *)              dflt="int *" ;;
12910                         esac
12911                         . ./myread
12912                         val=$ans
12913                         ;;
12914                 esac
12915                 selecttype="$val"
12916                 ;;
12917         *)      : no select, so pick a harmless default
12918                 selecttype='int *'
12919                 ;;
12920         esac
12921         ;;
12922 esac
12923
12924 : check for the select 'width'
12925 case "$selectminbits" in
12926 '') case "$d_select" in
12927         $define)
12928                 $cat <<EOM
12929
12930 Checking to see on how many bits at a time your select() operates...
12931 EOM
12932                 $cat >try.c <<EOCP
12933 #include <sys/types.h>
12934 #$i_time I_TIME
12935 #$i_systime I_SYS_TIME
12936 #$i_systimek I_SYS_TIME_KERNEL
12937 #ifdef I_TIME
12938 #   include <time.h>
12939 #endif
12940 #ifdef I_SYS_TIME
12941 #   ifdef I_SYS_TIME_KERNEL
12942 #       define KERNEL
12943 #   endif
12944 #   include <sys/time.h>
12945 #   ifdef I_SYS_TIME_KERNEL
12946 #       undef KERNEL
12947 #   endif
12948 #endif
12949 #$i_sysselct I_SYS_SELECT
12950 #ifdef I_SYS_SELECT
12951 #include <sys/select.h>
12952 #endif
12953 #$d_socket HAS_SOCKET
12954 #ifdef HAS_SOCKET
12955 #   include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
12956 #endif
12957 #include <stdio.h>
12958 $selecttype b;
12959 #define S sizeof(*(b))
12960 #define MINBITS 64
12961 #define NBYTES (S * 8 > MINBITS ? S : MINBITS/8)
12962 #define NBITS  (NBYTES * 8)
12963 int main() {
12964     char s[NBYTES];
12965     struct timeval t;
12966     int i;
12967     FILE* fp;
12968     int fd;
12969
12970     fclose(stdin);
12971     fp = fopen("try.c", "r");
12972     if (fp == 0)
12973       exit(1);
12974     fd = fileno(fp);
12975     if (fd < 0)
12976       exit(2);
12977     b = ($selecttype)s;
12978     for (i = 0; i < NBITS; i++)
12979         FD_SET(i, b);
12980     t.tv_sec  = 0;
12981     t.tv_usec = 0;
12982     select(fd + 1, b, 0, 0, &t);
12983     for (i = NBITS - 1; i > fd && FD_ISSET(i, b); i--);
12984     printf("%d\n", i + 1);
12985     return 0;
12986 }
12987 EOCP
12988                 set try
12989                 if eval $compile_ok; then
12990                         selectminbits=`./try`
12991                         case "$selectminbits" in
12992                         '')     cat >&4 <<EOM
12993 Cannot figure out on how many bits at a time your select() operates.
12994 I'll play safe and guess it is 32 bits.
12995 EOM
12996                                 selectminbits=32
12997                                 bits="32 bits"
12998                                 ;;
12999                         1)      bits="1 bit" ;;
13000                         *)      bits="$selectminbits bits" ;;
13001                         esac
13002                         echo "Your select() operates on $bits at a time." >&4
13003                 else
13004                         rp='What is the minimum number of bits your select() operates on?'
13005                         case "$byteorder" in
13006                         1234|12345678)  dflt=32 ;;
13007                         *)              dflt=1  ;;
13008                         esac
13009                         . ./myread
13010                         val=$ans
13011                         selectminbits="$val"
13012                 fi
13013                 $rm -f try.* try
13014                 ;;
13015         *)      : no select, so pick a harmless default
13016                 selectminbits='32'
13017                 ;;
13018         esac
13019         ;;
13020 esac
13021
13022 : Trace out the files included by signal.h, then look for SIGxxx names.
13023 : Remove SIGARRAYSIZE used by HPUX.
13024 : Remove SIGSTKSIZE used by Linux.
13025 : Remove SIGSTKSZ used by Posix.
13026 : Remove SIGTYP void lines used by OS2.
13027 : Some cpps, like os390, dont give the file name anywhere
13028 if [ "X$fieldn" = X ]; then
13029         : Just make some guesses.  We check them later.
13030         xxx='/usr/include/signal.h /usr/include/sys/signal.h'
13031 else
13032         xxx=`echo '#include <signal.h>' |
13033         $cppstdin $cppminus $cppflags 2>/dev/null |
13034         $grep '^[       ]*#.*include' | 
13035         $awk "{print \\$$fieldn}" | $sed 's!"!!g' | $sort | $uniq`
13036 fi
13037 : Check this list of files to be sure we have parsed the cpp output ok.
13038 : This will also avoid potentially non-existent files, such 
13039 : as ../foo/bar.h
13040 xxxfiles=''
13041 for xx in $xxx /dev/null ; do
13042         $test -f "$xx" && xxxfiles="$xxxfiles $xx"
13043 done
13044 : If we have found no files, at least try signal.h
13045 case "$xxxfiles" in
13046 '')     xxxfiles=`./findhdr signal.h` ;;
13047 esac
13048 xxx=`awk '
13049 $1 ~ /^#define$/ && $2 ~ /^SIG[A-Z0-9]*$/ && $2 !~ /SIGARRAYSIZE/ && $2 !~ /SIGSTKSIZE/ && $2 !~ /SIGSTKSZ/ && $3 !~ /void/ {
13050         print substr($2, 4, 20)
13051 }
13052 $1 == "#" && $2 ~ /^define$/ && $3 ~ /^SIG[A-Z0-9]*$/ && $3 !~ /SIGARRAYSIZE/ && $4 !~ /void/ {
13053         print substr($3, 4, 20)
13054 }' $xxxfiles`
13055 : Append some common names just in case the awk scan failed.
13056 xxx="$xxx ABRT ALRM BUS CANCEL CHLD CLD CONT DIL EMT FPE"
13057 xxx="$xxx FREEZE HUP ILL INT IO IOT KILL LOST LWP PHONE"
13058 xxx="$xxx PIPE POLL PROF PWR QUIT RTMAX RTMIN SEGV STKFLT STOP"
13059 xxx="$xxx SYS TERM THAW TRAP TSTP TTIN TTOU URG USR1 USR2"
13060 xxx="$xxx USR3 USR4 VTALRM WAITING WINCH WIND WINDOW XCPU XFSZ"
13061
13062 : generate a few handy files for later
13063 $cat > signal.c <<'EOCP'
13064 #include <sys/types.h>
13065 #include <signal.h>
13066 #include <stdio.h>
13067 int main() {
13068
13069 /* Strange style to avoid deeply-nested #if/#else/#endif */
13070 #ifndef NSIG
13071 #  ifdef _NSIG
13072 #    define NSIG (_NSIG)
13073 #  endif
13074 #endif
13075
13076 #ifndef NSIG
13077 #  ifdef SIGMAX
13078 #    define NSIG (SIGMAX+1)
13079 #  endif
13080 #endif
13081
13082 #ifndef NSIG
13083 #  ifdef SIG_MAX
13084 #    define NSIG (SIG_MAX+1)
13085 #  endif
13086 #endif
13087
13088 #ifndef NSIG
13089 #  ifdef MAXSIG
13090 #    define NSIG (MAXSIG+1)
13091 #  endif
13092 #endif
13093
13094 #ifndef NSIG
13095 #  ifdef MAX_SIG
13096 #    define NSIG (MAX_SIG+1)
13097 #  endif
13098 #endif
13099
13100 #ifndef NSIG
13101 #  ifdef SIGARRAYSIZE
13102 #    define NSIG (SIGARRAYSIZE+1) /* Not sure of the +1 */
13103 #  endif
13104 #endif
13105
13106 #ifndef NSIG
13107 #  ifdef _sys_nsig
13108 #    define NSIG (_sys_nsig) /* Solaris 2.5 */
13109 #  endif
13110 #endif
13111
13112 /* Default to some arbitrary number that's big enough to get most
13113    of the common signals.
13114 */
13115 #ifndef NSIG
13116 #    define NSIG 50
13117 #endif
13118
13119 printf("NSIG %d\n", NSIG);
13120
13121 #ifndef JUST_NSIG
13122
13123 EOCP
13124
13125 echo $xxx | $tr ' ' $trnl | $sort | $uniq | $awk '
13126 {
13127         printf "#ifdef SIG"; printf $1; printf "\n"
13128         printf "printf(\""; printf $1; printf " %%d\\n\",SIG";
13129         printf $1; printf ");\n"
13130         printf "#endif\n"
13131 }
13132 END {
13133         printf "#endif /* JUST_NSIG */\n";
13134         printf "exit(0);\n}\n";
13135 }
13136 ' >>signal.c
13137 $cat >signal.awk <<'EOP'
13138 BEGIN { ndups = 0 }
13139 $1 ~ /^NSIG$/ { nsig = $2 }
13140 ($1 !~ /^NSIG$/) && (NF == 2) {
13141     if ($2 > maxsig) { maxsig = $2 }
13142     if (sig_name[$2]) {
13143         dup_name[ndups] = $1
13144         dup_num[ndups] = $2
13145         ndups++ 
13146     }
13147     else {
13148         sig_name[$2] = $1
13149         sig_num[$2] = $2
13150     }
13151 }
13152 END { 
13153     if (nsig == 0) {
13154         nsig = maxsig + 1
13155     }
13156     printf("NSIG %d\n", nsig);
13157     for (n = 1; n < nsig; n++) {
13158         if (sig_name[n]) {
13159             printf("%s %d\n", sig_name[n], sig_num[n])
13160         }
13161         else {
13162             printf("NUM%d %d\n", n, n) 
13163         }
13164     }
13165     for (n = 0; n < ndups; n++) {
13166         printf("%s %d\n", dup_name[n], dup_num[n])
13167     }
13168 }
13169 EOP
13170 $cat >signal_cmd <<EOS
13171 $startsh
13172 if $test -s signal.lst; then
13173     echo "Using your existing signal.lst file"
13174         exit 0
13175 fi
13176 xxx="$xxx"
13177 EOS
13178 $cat >>signal_cmd <<'EOS'
13179
13180 set signal
13181 if eval $compile_ok; then
13182         ./signal$_exe | $sort -n +1 | $uniq | $awk -f signal.awk >signal.lst
13183 else
13184         echo "(I can't seem be able to compile the whole test program)" >&4
13185         echo "(I'll try it in little pieces.)" >&4
13186         set signal -DJUST_NSIG
13187         if eval $compile_ok; then
13188                 ./signal$_exe > signal.nsg
13189                 $cat signal.nsg
13190         else
13191                 echo "I can't seem to figure out how many signals you have." >&4
13192                 echo "Guessing 50." >&4
13193                 echo 'NSIG 50' > signal.nsg
13194         fi
13195         : Now look at all the signal names, one at a time.
13196         for xx in `echo $xxx | $tr ' ' $trnl | $sort | $uniq`; do
13197                 $cat > signal.c <<EOCP
13198 #include <sys/types.h>
13199 #include <signal.h>
13200 #include <stdio.h>
13201 int main() {
13202 printf("$xx %d\n", SIG${xx});
13203 return 0;
13204 }
13205 EOCP
13206                 set signal
13207                 if eval $compile; then
13208                         echo "SIG${xx} found."
13209                         ./signal$_exe  >> signal.ls1
13210                 else
13211                         echo "SIG${xx} NOT found."
13212                 fi
13213         done
13214         if $test -s signal.ls1; then
13215                 $cat signal.nsg signal.ls1 |
13216                         $sort -n +1 | $uniq | $awk -f signal.awk >signal.lst
13217         fi
13218
13219 fi
13220 if $test -s signal.lst; then
13221         :
13222 else
13223         echo "(AAK! I can't compile the test programs -- Guessing)" >&4
13224         echo 'kill -l' >signal
13225         set X `csh -f <signal`
13226         $rm -f signal
13227         shift
13228         case $# in
13229         0) set HUP INT QUIT ILL TRAP ABRT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM;;
13230         esac
13231         echo $@ | $tr ' ' $trnl | \
13232             $awk '{ printf "%s %d\n", $1, ++s; }
13233                   END { printf "NSIG %d\n", ++s }' >signal.lst
13234 fi
13235 $rm -f signal.c signal$_exe signal$_o signal.nsg signal.ls1
13236 EOS
13237 chmod a+x signal_cmd
13238 $eunicefix signal_cmd
13239
13240 : generate list of signal names
13241 echo " "
13242 case "$sig_name_init" in
13243 '') doinit=yes ;;
13244 *)  case "$sig_num_init" in
13245     ''|*,*) doinit=yes ;;
13246     esac ;;
13247 esac
13248 case "$doinit" in
13249 yes)
13250         echo "Generating a list of signal names and numbers..." >&4
13251         . ./signal_cmd
13252         sig_count=`$awk '/^NSIG/ { printf "%d", $2 }' signal.lst`
13253         sig_name=`$awk 'BEGIN { printf "ZERO " }
13254                         !/^NSIG/ { printf "%s ", $1 }' signal.lst`
13255         sig_num=`$awk  'BEGIN { printf "0 " }
13256                         !/^NSIG/ { printf "%d ", $2 }' signal.lst`
13257         sig_name_init=`$awk 'BEGIN      { printf "\"ZERO\", " }
13258                              !/^NSIG/   { printf "\"%s\", ", $1 }
13259                              END        { printf "0\n" }' signal.lst`
13260         sig_num_init=`$awk  'BEGIN      { printf "0, " }
13261                              !/^NSIG/   { printf "%d, ", $2}
13262                              END        { printf "0\n"}' signal.lst`
13263         ;;
13264 esac
13265 echo "The following $sig_count signals are available:"
13266 echo " "
13267 echo $sig_name | $awk \
13268 'BEGIN { linelen = 0 }
13269 {
13270         for (i = 1; i <= NF; i++) {
13271                 name = "SIG" $i " "
13272                 linelen = linelen + length(name)
13273                 if (linelen > 70) {
13274                         printf "\n"
13275                         linelen = length(name)
13276                 }
13277                 printf "%s", name
13278         }
13279         printf "\n"
13280 }'
13281 $rm -f signal signal.c signal.awk signal.lst signal_cmd 
13282
13283 : see what type is used for signed size_t
13284 set ssize_t ssizetype int stdio.h sys/types.h
13285 eval $typedef
13286 dflt="$ssizetype"
13287 $cat > ssize.c <<EOM
13288 #include <stdio.h>
13289 #include <sys/types.h>
13290 #define Size_t $sizetype
13291 #define SSize_t $dflt
13292 int main()
13293 {
13294         if (sizeof(Size_t) == sizeof(SSize_t))
13295                 printf("$dflt\n");
13296         else if (sizeof(Size_t) == sizeof(int))
13297                 printf("int\n");
13298         else 
13299                 printf("long\n");
13300         exit(0);
13301 }
13302 EOM
13303 echo " "
13304 set ssize
13305 if eval $compile_ok && ./ssize > /dev/null; then
13306         ssizetype=`./ssize`
13307         echo "I'll be using $ssizetype for functions returning a byte count." >&4
13308 else
13309         $cat >&4 <<EOM
13310 Help! I can't compile and run the ssize_t test program: please enlighten me!
13311 (This is probably a misconfiguration in your system or libraries, and
13312 you really ought to fix it.  Still, I'll try anyway.)
13313
13314 I need a type that is the same size as $sizetype, but is guaranteed to
13315 be signed.  Common values are ssize_t, int and long.
13316
13317 EOM
13318         rp="What signed type is the same size as $sizetype?"
13319         . ./myread
13320         ssizetype="$ans"
13321 fi
13322 $rm -f ssize ssize.*
13323
13324 : see what type of char stdio uses.
13325 echo " "
13326 if $contains 'unsigned.*char.*_ptr;' `./findhdr stdio.h` >/dev/null 2>&1 ; then
13327         echo "Your stdio uses unsigned chars." >&4
13328         stdchar="unsigned char"
13329 else
13330         echo "Your stdio uses signed chars." >&4
13331         stdchar="char"
13332 fi
13333
13334 : see if time exists
13335 echo " "
13336 if test "X$d_time" = X -o X"$timetype" = X; then
13337     if set time val -f d_time; eval $csym; $val; then
13338                 echo 'time() found.' >&4
13339                 val="$define"
13340                 rp="What is the type returned by time() on this system?"
13341                 set time_t timetype long stdio.h sys/types.h
13342                 eval $typedef_ask
13343     else
13344                 echo 'time() not found, hope that will do.' >&4
13345                 val="$undef"
13346                 timetype='int';
13347     fi
13348     set d_time
13349     eval $setvar
13350 fi
13351
13352 : see what type uids are declared as in the kernel
13353 echo " "
13354 echo "Looking for the type for user ids returned by getuid()."
13355 set uid_t uidtype xxx stdio.h sys/types.h
13356 eval $typedef
13357 case "$uidtype" in
13358 xxx)
13359         xxx=`./findhdr sys/user.h`
13360         set `grep '_ruid;' "$xxx" 2>/dev/null` unsigned short
13361         case $1 in
13362         unsigned) dflt="$1 $2" ;;
13363         *) dflt="$1" ;;
13364         esac
13365         ;;
13366 *) dflt="$uidtype";;
13367 esac
13368 case "$uidtype" in
13369 uid_t)  echo "uid_t found." ;;
13370 *)      rp="What is the type for user ids returned by getuid()?"
13371         . ./myread
13372         uidtype="$ans"
13373         ;;
13374 esac
13375
13376 echo " "
13377 case "$uidtype" in
13378 *_t) zzz="$uidtype"     ;;
13379 *)   zzz="uid"          ;;
13380 esac
13381 echo "Checking the size of $zzz..." >&4 
13382 cat > try.c <<EOCP
13383 #include <sys/types.h>
13384 #include <stdio.h>
13385 int main() {
13386     printf("%d\n", (int)sizeof($uidtype));
13387     exit(0);
13388 }
13389 EOCP
13390 set try
13391 if eval $compile_ok; then
13392         yyy=`./try`
13393         case "$yyy" in
13394         '')     uidsize=4
13395                 echo "(I can't execute the test program--guessing $uidsize.)" >&4
13396                 ;;
13397         *)      uidsize=$yyy
13398                 echo "Your $zzz size is $uidsize bytes."
13399                 ;;
13400         esac
13401 else
13402         uidsize=4
13403         echo "(I can't compile the test program--guessing $uidsize.)" >&4
13404 fi
13405
13406 echo " "
13407 case "$uidtype" in
13408 *_t) zzz="$uidtype"     ;;
13409 *)   zzz="uid"          ;;
13410 esac
13411 echo "Checking the sign of $zzz..." >&4
13412 cat > try.c <<EOCP
13413 #include <sys/types.h>
13414 #include <stdio.h>
13415 int main() {
13416         $uidtype foo = -1;
13417         if (foo < 0)
13418                 printf("-1\n");
13419         else
13420                 printf("1\n");
13421 }
13422 EOCP
13423 set try
13424 if eval $compile; then
13425         yyy=`./try`
13426         case "$yyy" in
13427         '')     uidsign=1
13428                 echo "(I can't execute the test program--guessing unsigned.)" >&4
13429                 ;;
13430         *)      uidsign=$yyy
13431                 case "$uidsign" in
13432                  1) echo "Your $zzz is unsigned." ;;
13433                 -1) echo "Your $zzz is signed."   ;;
13434                 esac
13435                 ;;
13436         esac
13437 else
13438         uidsign=1
13439         echo "(I can't compile the test program--guessing unsigned.)" >&4
13440 fi
13441
13442
13443
13444 echo " "
13445 $echo "Checking the format string to be used for uids..." >&4
13446
13447 case "$uidsign" in
13448 -1)     if $test X"$uidsize" = X"$ivsize"; then
13449                 uidformat="$ivdformat"
13450         else
13451                 if $test X"$uidsize" = X"$longsize"; then
13452                         uidformat='"ld"'
13453                 else
13454                         if $test X"$uidsize" = X"$intsize"; then
13455                                 uidformat='"d"'
13456                         else
13457                                 if $test X"$uidsize" = X"$shortsize"; then
13458                                         uidformat='"hd"'
13459                                 fi
13460                         fi
13461                 fi
13462         fi
13463         ;;
13464 *)      if $test X"$uidsize" = X"$uvsize"; then
13465                 uidformat="$uvuformat"
13466         else
13467                 if $test X"$uidsize" = X"$longsize"; then
13468                         uidformat='"lu"'
13469                 else
13470                         if $test X"$uidsize" = X"$intsize"; then
13471                                 uidformat='"u"'
13472                         else
13473                                 if $test X"$uidsize" = X"$shortsize"; then
13474                                         uidformat='"hu"'
13475                                 fi
13476                         fi
13477                 fi
13478         fi
13479         ;;
13480 esac
13481
13482 : see if dbm.h is available
13483 : see if dbmclose exists
13484 set dbmclose d_dbmclose
13485 eval $inlibc
13486
13487 case "$d_dbmclose" in
13488 $define)
13489         set dbm.h i_dbm
13490         eval $inhdr
13491         case "$i_dbm" in
13492         $define)
13493                 val="$undef"
13494                 set i_rpcsvcdbm
13495                 eval $setvar
13496                 ;;
13497         *)      set rpcsvc/dbm.h i_rpcsvcdbm
13498                 eval $inhdr
13499                 ;;
13500         esac
13501         ;;
13502 *)      echo "We won't be including <dbm.h>"
13503         val="$undef"
13504         set i_dbm
13505         eval $setvar
13506         val="$undef"
13507         set i_rpcsvcdbm
13508         eval $setvar
13509         ;;
13510 esac
13511
13512 : see if this is a sys/file.h system
13513 val=''
13514 set sys/file.h val
13515 eval $inhdr
13516
13517 : do we need to include sys/file.h ?
13518 case "$val" in
13519 "$define")
13520         echo " "
13521         if $h_sysfile; then
13522                 val="$define"
13523                 echo "We'll be including <sys/file.h>." >&4
13524         else
13525                 val="$undef"
13526                 echo "We won't be including <sys/file.h>." >&4
13527         fi
13528         ;;
13529 *)
13530         h_sysfile=false
13531         ;;
13532 esac
13533 set i_sysfile
13534 eval $setvar
13535
13536 : see if fcntl.h is there
13537 val=''
13538 set fcntl.h val
13539 eval $inhdr
13540
13541 : see if we can include fcntl.h
13542 case "$val" in
13543 "$define")
13544         echo " "
13545         if $h_fcntl; then
13546                 val="$define"
13547                 echo "We'll be including <fcntl.h>." >&4
13548         else
13549                 val="$undef"
13550                 if $h_sysfile; then
13551         echo "We don't need to include <fcntl.h> if we include <sys/file.h>." >&4
13552                 else
13553                         echo "We won't be including <fcntl.h>." >&4
13554                 fi
13555         fi
13556         ;;
13557 *)
13558         h_fcntl=false
13559         val="$undef"
13560         ;;
13561 esac
13562 set i_fcntl
13563 eval $setvar
13564
13565 : see if locale.h is available
13566 set locale.h i_locale
13567 eval $inhdr
13568
13569 : see if mach cthreads are available
13570 if test "X$usethreads" = "X$define"; then
13571         set mach/cthreads.h i_machcthr
13572         eval $inhdr
13573 else
13574         i_machcthr="$undef"
13575 fi
13576
13577
13578
13579 : see if this is a math.h system
13580 set math.h i_math
13581 eval $inhdr
13582
13583 : see if this is a mntent.h system
13584 set mntent.h i_mntent
13585 eval $inhdr
13586
13587 : see if ndbm.h is available
13588 set ndbm.h t_ndbm
13589 eval $inhdr
13590 case "$t_ndbm" in
13591 $define)
13592         : see if dbm_open exists
13593         set dbm_open d_dbm_open
13594         eval $inlibc
13595         case "$d_dbm_open" in
13596         $undef)
13597                 t_ndbm="$undef"
13598                 echo "We won't be including <ndbm.h>"
13599                 ;;
13600         esac
13601         ;;
13602 esac
13603 val="$t_ndbm"
13604 set i_ndbm
13605 eval $setvar
13606
13607 : see if net/errno.h is available
13608 val=''
13609 set net/errno.h val
13610 eval $inhdr
13611
13612 : Unfortunately, it causes problems on some systems.  Arrgh.
13613 case "$val" in
13614 $define)
13615         cat > try.c <<'EOM'
13616 #include <stdio.h>
13617 #include <errno.h>
13618 #include <net/errno.h>
13619 int func()
13620 {
13621         return ENOTSOCK;
13622 }
13623 EOM
13624         if $cc $ccflags -c try.c >/dev/null 2>&1; then
13625                 echo "We'll be including <net/errno.h>." >&4
13626         else
13627                 echo "We won't be including <net/errno.h>." >&4
13628                 val="$undef"
13629         fi
13630         $rm -f try.* try
13631         ;;
13632 esac
13633 set i_neterrno
13634 eval $setvar
13635
13636 : see if netinet/tcp.h is available
13637 set netinet/tcp.h i_netinettcp
13638 eval $inhdr
13639
13640 : see if this is a poll.h system
13641 set poll.h i_poll
13642 eval $inhdr
13643
13644 : get C preprocessor symbols handy
13645 echo " "
13646 $echo $n "Hmm... $c"
13647 echo $al | $tr ' ' $trnl >Cppsym.know
13648 $cat <<EOSS >Cppsym
13649 $startsh
13650 case "\$1" in
13651 -l) list=true
13652         shift
13653         ;;
13654 esac
13655 unknown=''
13656 case "\$list\$#" in
13657 1|2)
13658         for sym do
13659                 if $contains "^\$1$" Cppsym.true >/dev/null 2>&1; then
13660                         exit 0
13661                 elif $contains "^\$1$" Cppsym.know >/dev/null 2>&1; then
13662                         :
13663                 else
13664                         unknown="\$unknown \$sym"
13665                 fi
13666         done
13667         set X \$unknown
13668         shift
13669         ;;
13670 esac
13671 case \$# in
13672 0) exit 1;;
13673 esac
13674 echo \$* | $tr ' ' '$trnl' | $sed -e 's/\(.*\)/\\
13675 #ifdef \1\\
13676 exit 0; _ _ _ _\1\\      \1\\
13677 #endif\\
13678 /' >Cppsym\$\$
13679 echo "exit 1; _ _ _" >>Cppsym\$\$
13680 $cppstdin $cppminus <Cppsym\$\$ | $grep '^exit [01]; _ _'  >Cppsym2\$\$
13681 case "\$list" in
13682 true) $awk 'NF > 5 {print substr(\$6,2,100)}' <Cppsym2\$\$ ;;
13683 *)
13684         sh Cppsym2\$\$
13685         status=\$?
13686         ;;
13687 esac
13688 $rm -f Cppsym\$\$ Cppsym2\$\$
13689 exit \$status
13690 EOSS
13691 chmod +x Cppsym
13692 $eunicefix Cppsym
13693 ./Cppsym -l $al | $sort | $grep -v '^$' >Cppsym.true
13694
13695 : now check the C compiler for additional symbols
13696 postprocess_cc_v=''
13697 case "$osname" in
13698 aix) postprocess_cc_v="|$tr , ' '" ;;
13699 esac
13700 $cat >ccsym <<EOS
13701 $startsh
13702 $cat >tmp.c <<EOF
13703 extern int foo;
13704 EOF
13705 for i in \`$cc -v -c tmp.c 2>&1 $postprocess_cc_v\`
13706 do
13707         case "\$i" in
13708         -D*) echo "\$i" | $sed 's/^-D//';;
13709         -A*) $test "$gccversion" && echo "\$i" | $sed 's/^-A\(.*\)(\(.*\))/\1=\2/';;
13710         esac
13711 done
13712 $rm -f try.c
13713 EOS
13714 postprocess_cc_v=''
13715 chmod +x ccsym
13716 $eunicefix ccsym
13717 ./ccsym > ccsym1.raw
13718 if $test -s ccsym1.raw; then
13719        $sort ccsym1.raw | $uniq >ccsym.raw
13720 else
13721        mv ccsym1.raw ccsym.raw
13722 fi
13723
13724 $awk '/\=/ { print $0; next }
13725         { print $0"=1" }' ccsym.raw >ccsym.list
13726 $awk '{ print $0"=1" }' Cppsym.true >ccsym.true
13727 $comm -13 ccsym.true ccsym.list >ccsym.own
13728 $comm -12 ccsym.true ccsym.list >ccsym.com
13729 $comm -23 ccsym.true ccsym.list >ccsym.cpp
13730 also=''
13731 if $test -z ccsym.raw; then
13732         echo "Your C compiler doesn't seem to define any symbols!" >&4
13733         echo " "
13734         echo "However, your C preprocessor defines the following symbols:"
13735         $cat Cppsym.true
13736         ccsymbols=''
13737         cppsymbols=`$cat Cppsym.true`
13738         cppsymbols=`echo $cppsymbols`
13739         cppccsymbols="$cppsymbols"
13740 else
13741         if $test -s ccsym.com; then
13742                 echo "Your C compiler and pre-processor define these symbols:"
13743                 $sed -e 's/\(.*\)=.*/\1/' ccsym.com
13744                 also='also '
13745                 symbols='ones'
13746                 cppccsymbols=`$cat ccsym.com`
13747                 cppccsymbols=`echo $cppccsymbols`
13748                 $test "$silent" || sleep 1
13749         fi
13750         if $test -s ccsym.cpp; then
13751                 $test "$also" && echo " "
13752                 echo "Your C pre-processor ${also}defines the following symbols:"
13753                 $sed -e 's/\(.*\)=.*/\1/' ccsym.cpp
13754                 also='further '
13755                 cppsymbols=`$cat ccsym.cpp`
13756                 cppsymbols=`echo $cppsymbols`
13757                 $test "$silent" || sleep 1
13758         fi
13759         if $test -s ccsym.own; then
13760                 $test "$also" && echo " "
13761                 echo "Your C compiler ${also}defines the following cpp symbols:"
13762                 $sed -e 's/\(.*\)=1/\1/' ccsym.own
13763                 $sed -e 's/\(.*\)=.*/\1/' ccsym.own | $uniq >>Cppsym.true
13764                 ccsymbols=`$cat ccsym.own`
13765                 ccsymbols=`echo $ccsymbols`
13766                 $test "$silent" || sleep 1
13767         fi
13768 fi
13769 $rm -f ccsym*
13770
13771 : see if this is a termio system
13772 val="$undef"
13773 val2="$undef"
13774 val3="$undef"
13775 if $test `./findhdr termios.h`; then
13776         set tcsetattr i_termios
13777         eval $inlibc
13778         val3="$i_termios"
13779 fi
13780 echo " "
13781 case "$val3" in
13782 "$define") echo "You have POSIX termios.h... good!" >&4;;
13783 *) if ./Cppsym pyr; then
13784                 case "`/bin/universe`" in
13785                 ucb) if $test `./findhdr sgtty.h`; then
13786                                 val2="$define"
13787                                 echo "<sgtty.h> found." >&4
13788                         else
13789                                 echo "System is pyramid with BSD universe."
13790                                 echo "<sgtty.h> not found--you could have problems." >&4
13791                         fi;;
13792                 *) if $test `./findhdr termio.h`; then
13793                                 val="$define"
13794                                 echo "<termio.h> found." >&4
13795                         else
13796                                 echo "System is pyramid with USG universe."
13797                                 echo "<termio.h> not found--you could have problems." >&4
13798                         fi;;
13799                 esac
13800         elif ./usg; then
13801                 if $test `./findhdr termio.h`; then
13802                         echo "<termio.h> found." >&4
13803                         val="$define"
13804                 elif $test `./findhdr sgtty.h`; then
13805                         echo "<sgtty.h> found." >&4
13806                         val2="$define"
13807                 else
13808 echo "Neither <termio.h> nor <sgtty.h> found--you could have problems." >&4
13809                 fi
13810         else
13811                 if $test `./findhdr sgtty.h`; then
13812                         echo "<sgtty.h> found." >&4
13813                         val2="$define"
13814                 elif $test `./findhdr termio.h`; then
13815                         echo "<termio.h> found." >&4
13816                         val="$define"
13817                 else
13818 echo "Neither <sgtty.h> nor <termio.h> found--you could have problems." >&4
13819                 fi
13820         fi;;
13821 esac
13822 set i_termio; eval $setvar
13823 val=$val2; set i_sgtty; eval $setvar
13824 val=$val3; set i_termios; eval $setvar
13825
13826 : see if this is a shadow.h system
13827 set shadow.h i_shadow
13828 eval $inhdr
13829
13830 : see if this is a socks.h system
13831 set socks.h i_socks
13832 eval $inhdr
13833
13834 : see if stdarg is available
13835 echo " "
13836 if $test `./findhdr stdarg.h`; then
13837         echo "<stdarg.h> found." >&4
13838         valstd="$define"
13839 else
13840         echo "<stdarg.h> NOT found." >&4
13841         valstd="$undef"
13842 fi
13843
13844 : see if varags is available
13845 echo " "
13846 if $test `./findhdr varargs.h`; then
13847         echo "<varargs.h> found." >&4
13848 else
13849         echo "<varargs.h> NOT found, but that's ok (I hope)." >&4
13850 fi
13851
13852 : set up the varargs testing programs
13853 $cat > varargs.c <<EOP
13854 #ifdef I_STDARG
13855 #include <stdarg.h>
13856 #endif
13857 #ifdef I_VARARGS
13858 #include <varargs.h>
13859 #endif
13860
13861 #ifdef I_STDARG
13862 int f(char *p, ...)
13863 #else
13864 int f(va_alist)
13865 va_dcl
13866 #endif
13867 {
13868         va_list ap;
13869 #ifndef I_STDARG
13870         char *p;
13871 #endif
13872 #ifdef I_STDARG
13873         va_start(ap,p);
13874 #else
13875         va_start(ap);
13876         p = va_arg(ap, char *);
13877 #endif
13878         va_end(ap);
13879 }
13880 EOP
13881 $cat > varargs <<EOP
13882 $startsh
13883 if $cc -c $ccflags -D\$1 varargs.c >/dev/null 2>&1; then
13884         echo "true"
13885 else
13886         echo "false"
13887 fi
13888 $rm -f varargs$_o
13889 EOP
13890 chmod +x varargs
13891
13892 : now check which varargs header should be included
13893 echo " "
13894 i_varhdr=''
13895 case "$valstd" in
13896 "$define")
13897         if `./varargs I_STDARG`; then
13898                 val='stdarg.h'
13899         elif `./varargs I_VARARGS`; then
13900                 val='varargs.h'
13901         fi
13902         ;;
13903 *)
13904         if `./varargs I_VARARGS`; then
13905                 val='varargs.h'
13906         fi
13907         ;;
13908 esac
13909 case "$val" in
13910 '')
13911 echo "I could not find the definition for va_dcl... You have problems..." >&4
13912         val="$undef"; set i_stdarg; eval $setvar
13913         val="$undef"; set i_varargs; eval $setvar
13914         ;;
13915 *) 
13916         set i_varhdr
13917         eval $setvar
13918         case "$i_varhdr" in
13919         stdarg.h)
13920                 val="$define"; set i_stdarg; eval $setvar
13921                 val="$undef"; set i_varargs; eval $setvar
13922                 ;;
13923         varargs.h)
13924                 val="$undef"; set i_stdarg; eval $setvar
13925                 val="$define"; set i_varargs; eval $setvar
13926                 ;;
13927         esac
13928         echo "We'll include <$i_varhdr> to get va_dcl definition." >&4;;
13929 esac
13930 $rm -f varargs*
13931
13932 : see if stddef is available
13933 set stddef.h i_stddef
13934 eval $inhdr
13935
13936 : see if sys/access.h is available
13937 set sys/access.h i_sysaccess
13938 eval $inhdr
13939
13940 : see if ioctl defs are in sgtty, termio, sys/filio or sys/ioctl
13941 set sys/filio.h i_sysfilio
13942 eval $inhdr
13943 echo " "
13944 if $test `./findhdr sys/ioctl.h`; then
13945         val="$define"
13946         echo '<sys/ioctl.h> found.' >&4
13947 else
13948         val="$undef"
13949         if $test $i_sysfilio = "$define"; then
13950             echo '<sys/ioctl.h> NOT found.' >&4
13951         else
13952                 $test $i_sgtty = "$define" && xxx="sgtty.h"
13953                 $test $i_termio = "$define" && xxx="termio.h"
13954                 $test $i_termios = "$define" && xxx="termios.h"
13955 echo "No <sys/ioctl.h> found, assuming ioctl args are defined in <$xxx>." >&4
13956         fi
13957 fi
13958 set i_sysioctl
13959 eval $setvar
13960
13961 : see if sys/resource.h has to be included
13962 set sys/resource.h i_sysresrc
13963 eval $inhdr
13964
13965 : see if sys/security.h is available
13966 set sys/security.h i_syssecrt
13967 eval $inhdr
13968
13969 : see if this is a sys/statvfs.h system
13970 set sys/statvfs.h i_sysstatvfs
13971 eval $inhdr
13972
13973 : see if this is a sys/uio.h system
13974 set sys/uio.h i_sysuio
13975 eval $inhdr
13976
13977 : see if this is a sys/un.h system
13978 set sys/un.h i_sysun
13979 eval $inhdr
13980
13981 : see if this is a syswait system
13982 set sys/wait.h i_syswait
13983 eval $inhdr
13984
13985 : see if this is a ustat.h system
13986 set ustat.h i_ustat
13987 eval $inhdr
13988
13989 : see if this is an utime system
13990 set utime.h i_utime
13991 eval $inhdr
13992
13993 : see if this is a values.h system
13994 set values.h i_values
13995 eval $inhdr
13996
13997 : see if this is a vfork system
13998 case "$d_vfork" in
13999 "$define")
14000         set vfork.h i_vfork
14001         eval $inhdr
14002         ;;
14003 *)
14004         i_vfork="$undef"
14005         ;;
14006 esac
14007
14008 : see if gdbm.h is available
14009 set gdbm.h t_gdbm
14010 eval $inhdr
14011 case "$t_gdbm" in
14012 $define)
14013         : see if gdbm_open exists
14014         set gdbm_open d_gdbm_open
14015         eval $inlibc
14016         case "$d_gdbm_open" in
14017         $undef)
14018                 t_gdbm="$undef"
14019                 echo "We won't be including <gdbm.h>"
14020                 ;;
14021         esac
14022         ;;
14023 esac
14024 val="$t_gdbm"
14025 set i_gdbm
14026 eval $setvar
14027
14028 echo " "
14029 echo "Looking for extensions..." >&4
14030 : If we are using the old config.sh, known_extensions may contain
14031 : old or inaccurate or duplicate values.
14032 known_extensions=''
14033 nonxs_extensions=''
14034 : We do not use find because it might not be available.
14035 : We do not just use MANIFEST because the user may have dropped
14036 : some additional extensions into the source tree and expect them
14037 : to be built.
14038
14039 : Function to recursively find available extensions, ignoring DynaLoader
14040 : NOTE: recursion limit of 10 to prevent runaway in case of symlink madness
14041 find_extensions='
14042     for xxx in *; do
14043        case "$xxx" in
14044            DynaLoader|dynaload) ;;
14045            *)
14046            if $test -f $xxx/$xxx.xs; then
14047                known_extensions="$known_extensions $1$xxx";
14048            elif $test -f $xxx/Makefile.PL; then
14049                nonxs_extensions="$nonxs_extensions $1$xxx";
14050            else
14051                if $test -d $xxx -a $# -lt 10; then
14052                    set $1$xxx/ $*;
14053                    cd $xxx;
14054                    eval $find_extensions;
14055                    cd ..;
14056                    shift;
14057                fi;
14058            fi
14059            ;;
14060        esac;
14061     done'
14062 tdir=`pwd`
14063 cd $rsrc/ext
14064 set X
14065 shift
14066 eval $find_extensions
14067 set X $nonxs_extensions
14068 shift
14069 nonxs_extensions="$*"
14070 set X $known_extensions
14071 shift
14072 known_extensions="$*"
14073 cd $tdir
14074
14075 : Now see which are supported on this system.
14076 avail_ext=''
14077 for xxx in $known_extensions ; do
14078         case "$xxx" in
14079         DB_File|db_file)
14080                 case "$i_db" in
14081                 $define) avail_ext="$avail_ext $xxx" ;;
14082                 esac
14083                 ;;
14084         GDBM_File|gdbm_fil)
14085                 case "$i_gdbm" in 
14086                 $define) avail_ext="$avail_ext $xxx" ;;
14087                 esac
14088                 ;;
14089         NDBM_File|ndbm_fil)
14090                 case "$i_ndbm" in
14091                 $define) avail_ext="$avail_ext $xxx" ;;
14092                 esac
14093                 ;;
14094         ODBM_File|odbm_fil) 
14095                 case "${i_dbm}${i_rpcsvcdbm}" in
14096                 *"${define}"*) avail_ext="$avail_ext $xxx" ;;
14097                 esac
14098                 ;;
14099         POSIX|posix)
14100                 case "$useposix" in
14101                 true|define|y) avail_ext="$avail_ext $xxx" ;;
14102                 esac
14103                 ;;
14104         Opcode|opcode)
14105                 case "$useopcode" in
14106                 true|define|y) avail_ext="$avail_ext $xxx" ;;
14107                 esac
14108                 ;;
14109         Socket|socket)
14110                 case "$d_socket" in 
14111                 true|$define|y) avail_ext="$avail_ext $xxx" ;;
14112                 esac
14113                 ;;
14114         Thread|thread)
14115                 case "$usethreads" in 
14116                 true|$define|y) avail_ext="$avail_ext $xxx" ;;
14117                 esac
14118                 ;;
14119         IPC/SysV|ipc/sysv)
14120                 : XXX Do we need a useipcsysv variable here
14121                 case "${d_msg}${d_sem}${d_shm}" in 
14122                 *"${define}"*) avail_ext="$avail_ext $xxx" ;;
14123                 esac
14124                 ;;
14125         *)      avail_ext="$avail_ext $xxx"
14126                 ;;
14127         esac
14128 done
14129
14130 set X $avail_ext
14131 shift
14132 avail_ext="$*"
14133
14134 : Now see which nonxs extensions are supported on this system.
14135 : For now assume all are.
14136 nonxs_ext=''
14137 for xxx in $nonxs_extensions ; do
14138         case "$xxx" in
14139         *)      nonxs_ext="$nonxs_ext $xxx"
14140                 ;;
14141         esac
14142 done
14143
14144 set X $nonxs_ext
14145 shift
14146 nonxs_ext="$*"
14147
14148 case $usedl in
14149 $define)
14150         $cat <<EOM
14151 A number of extensions are supplied with $package.  You may choose to
14152 compile these extensions for dynamic loading (the default), compile
14153 them into the $package executable (static loading), or not include
14154 them at all.  Answer "none" to include no extensions.
14155 Note that DynaLoader is always built and need not be mentioned here.
14156
14157 EOM
14158         case "$dynamic_ext" in
14159         '') dflt="$avail_ext" ;;
14160         *)      dflt="$dynamic_ext"
14161                 # Perhaps we are reusing an old out-of-date config.sh.
14162                 case "$hint" in
14163                 previous)
14164                         if test X"$dynamic_ext" != X"$avail_ext"; then
14165                                 $cat <<EOM
14166 NOTICE:  Your previous config.sh list may be incorrect. 
14167 The extensions now available to you are 
14168         ${avail_ext}
14169 but the default list from your previous config.sh is
14170         ${dynamic_ext} 
14171
14172 EOM
14173                         fi
14174                         ;;
14175                 esac
14176                 ;;
14177         esac
14178         case "$dflt" in
14179         '')     dflt=none;;
14180         esac
14181         rp="What extensions do you wish to load dynamically?"
14182         . ./myread
14183         case "$ans" in
14184         none) dynamic_ext=' ' ;;
14185         *) dynamic_ext="$ans" ;;
14186         esac
14187
14188         case "$static_ext" in
14189         '')
14190                 : Exclude those already listed in dynamic linking
14191                 dflt=''
14192                 for xxx in $avail_ext; do
14193                         case " $dynamic_ext " in
14194                         *" $xxx "*) ;;
14195                         *) dflt="$dflt $xxx" ;;
14196                         esac
14197                 done
14198                 set X $dflt
14199                 shift
14200                 dflt="$*"
14201                 ;;
14202         *)  dflt="$static_ext" 
14203                 ;;
14204         esac
14205
14206         case "$dflt" in
14207         '')     dflt=none;;
14208         esac
14209         rp="What extensions do you wish to load statically?"
14210         . ./myread
14211         case "$ans" in
14212         none) static_ext=' ' ;;
14213         *) static_ext="$ans" ;;
14214         esac
14215         ;;
14216 *)
14217         $cat <<EOM
14218 A number of extensions are supplied with $package.  Answer "none" 
14219 to include no extensions. 
14220 Note that DynaLoader is always built and need not be mentioned here.
14221
14222 EOM
14223         case "$static_ext" in
14224         '') dflt="$avail_ext" ;;
14225         *)      dflt="$static_ext"
14226                 # Perhaps we are reusing an old out-of-date config.sh.
14227                 case "$hint" in
14228                 previous)
14229                         if test X"$static_ext" != X"$avail_ext"; then
14230                                 $cat <<EOM
14231 NOTICE:  Your previous config.sh list may be incorrect. 
14232 The extensions now available to you are 
14233         ${avail_ext}
14234 but the default list from your previous config.sh is
14235         ${static_ext} 
14236
14237 EOM
14238                         fi
14239                         ;;
14240                 esac
14241                 ;;
14242         esac
14243         : Exclude those that are not xs extensions
14244         case "$dflt" in
14245         '')     dflt=none;;
14246         esac
14247         rp="What extensions do you wish to include?"
14248         . ./myread
14249         case "$ans" in
14250         none) static_ext=' ' ;;
14251         *) static_ext="$ans" ;;
14252         esac
14253         ;;
14254 esac
14255
14256 set X $dynamic_ext $static_ext $nonxs_ext
14257 shift
14258 extensions="$*"
14259
14260 : Remove build directory name from cppstdin so it can be used from
14261 : either the present location or the final installed location.
14262 echo " "
14263 : Get out of the UU directory to get correct path name.
14264 cd ..
14265 case "$cppstdin" in
14266 `pwd`/cppstdin)
14267         echo "Stripping down cppstdin path name"
14268         cppstdin=cppstdin
14269         ;;
14270 esac
14271 cd UU
14272
14273 : end of configuration questions
14274 echo " "
14275 echo "End of configuration questions."
14276 echo " "
14277
14278 : back to where it started
14279 if test -d ../UU; then
14280         cd ..
14281 fi
14282
14283 : configuration may be patched via a 'config.over' file
14284 if $test -f config.over; then
14285         echo " "
14286         dflt=y
14287         rp='I see a config.over file.  Do you wish to load it?'
14288         . UU/myread
14289         case "$ans" in
14290         n*) echo "OK, I'll ignore it.";;
14291         *)      . ./config.over
14292                 echo "Configuration override changes have been loaded."
14293                 ;;
14294         esac
14295 fi
14296
14297 : in case they want portability, strip down executable paths
14298 case "$d_portable" in
14299 "$define")
14300         echo " "
14301         echo "Stripping down executable paths..." >&4
14302         for file in $loclist $trylist; do
14303                 eval temp=\$$file
14304                 eval $file=`basename $temp`
14305         done
14306         ;;
14307 esac
14308
14309 : create config.sh file
14310 echo " "
14311 echo "Creating config.sh..." >&4
14312 $spitshell <<EOT >config.sh
14313 $startsh
14314 #
14315 # This file was produced by running the Configure script. It holds all the
14316 # definitions figured out by Configure. Should you modify one of these values,
14317 # do not forget to propagate your changes by running "Configure -der". You may
14318 # instead choose to run each of the .SH files by yourself, or "Configure -S".
14319 #
14320
14321 # Package name      : $package
14322 # Source directory  : $src
14323 # Configuration time: $cf_time
14324 # Configured by     : $cf_by
14325 # Target system     : $myuname
14326
14327 Author='$Author'
14328 Date='$Date'
14329 Header='$Header'
14330 Id='$Id'
14331 Locker='$Locker'
14332 Log='$Log'
14333 Mcc='$Mcc'
14334 RCSfile='$RCSfile'
14335 Revision='$Revision'
14336 Source='$Source'
14337 State='$State'
14338 _a='$_a'
14339 _exe='$_exe'
14340 _o='$_o'
14341 afs='$afs'
14342 alignbytes='$alignbytes'
14343 ansi2knr='$ansi2knr'
14344 aphostname='$aphostname'
14345 api_revision='$api_revision'
14346 api_subversion='$api_subversion'
14347 api_version='$api_version'
14348 api_versionstring='$api_versionstring'
14349 ar='$ar'
14350 archlib='$archlib'
14351 archlibexp='$archlibexp'
14352 archname64='$archname64'
14353 archname='$archname'
14354 archobjs='$archobjs'
14355 awk='$awk'
14356 baserev='$baserev'
14357 bash='$bash'
14358 bin='$bin'
14359 bincompat5005='$bincompat5005'
14360 binexp='$binexp'
14361 bison='$bison'
14362 byacc='$byacc'
14363 byteorder='$byteorder'
14364 c='$c'
14365 castflags='$castflags'
14366 cat='$cat'
14367 cc='$cc'
14368 cccdlflags='$cccdlflags'
14369 ccdlflags='$ccdlflags'
14370 ccflags='$ccflags'
14371 ccsymbols='$ccsymbols'
14372 cf_by='$cf_by'
14373 cf_email='$cf_email'
14374 cf_time='$cf_time'
14375 charsize='$charsize'
14376 chgrp='$chgrp'
14377 chmod='$chmod'
14378 chown='$chown'
14379 clocktype='$clocktype'
14380 comm='$comm'
14381 compress='$compress'
14382 contains='$contains'
14383 cp='$cp'
14384 cpio='$cpio'
14385 cpp='$cpp'
14386 cpp_stuff='$cpp_stuff'
14387 cppccsymbols='$cppccsymbols'
14388 cppflags='$cppflags'
14389 cpplast='$cpplast'
14390 cppminus='$cppminus'
14391 cpprun='$cpprun'
14392 cppstdin='$cppstdin'
14393 cppsymbols='$cppsymbols'
14394 crosscompile='$crosscompile'
14395 cryptlib='$cryptlib'
14396 csh='$csh'
14397 d_Gconvert='$d_Gconvert'
14398 d_PRIEldbl='$d_PRIEldbl'
14399 d_PRIFldbl='$d_PRIFldbl'
14400 d_PRIGldbl='$d_PRIGldbl'
14401 d_PRIX64='$d_PRIX64'
14402 d_PRId64='$d_PRId64'
14403 d_PRIeldbl='$d_PRIeldbl'
14404 d_PRIfldbl='$d_PRIfldbl'
14405 d_PRIgldbl='$d_PRIgldbl'
14406 d_PRIi64='$d_PRIi64'
14407 d_PRIo64='$d_PRIo64'
14408 d_PRIu64='$d_PRIu64'
14409 d_PRIx64='$d_PRIx64'
14410 d_access='$d_access'
14411 d_accessx='$d_accessx'
14412 d_alarm='$d_alarm'
14413 d_archlib='$d_archlib'
14414 d_atolf='$d_atolf'
14415 d_atoll='$d_atoll'
14416 d_attribut='$d_attribut'
14417 d_bcmp='$d_bcmp'
14418 d_bcopy='$d_bcopy'
14419 d_bincompat5005='$d_bincompat5005'
14420 d_bsd='$d_bsd'
14421 d_bsdgetpgrp='$d_bsdgetpgrp'
14422 d_bsdsetpgrp='$d_bsdsetpgrp'
14423 d_bzero='$d_bzero'
14424 d_casti32='$d_casti32'
14425 d_castneg='$d_castneg'
14426 d_charvspr='$d_charvspr'
14427 d_chown='$d_chown'
14428 d_chroot='$d_chroot'
14429 d_chsize='$d_chsize'
14430 d_closedir='$d_closedir'
14431 d_const='$d_const'
14432 d_crypt='$d_crypt'
14433 d_csh='$d_csh'
14434 d_cuserid='$d_cuserid'
14435 d_dbl_dig='$d_dbl_dig'
14436 d_difftime='$d_difftime'
14437 d_dirnamlen='$d_dirnamlen'
14438 d_dlerror='$d_dlerror'
14439 d_dlopen='$d_dlopen'
14440 d_dlsymun='$d_dlsymun'
14441 d_dosuid='$d_dosuid'
14442 d_drand48proto='$d_drand48proto'
14443 d_dup2='$d_dup2'
14444 d_eaccess='$d_eaccess'
14445 d_endgrent='$d_endgrent'
14446 d_endhent='$d_endhent'
14447 d_endnent='$d_endnent'
14448 d_endpent='$d_endpent'
14449 d_endpwent='$d_endpwent'
14450 d_endsent='$d_endsent'
14451 d_endspent='$d_endspent'
14452 d_eofnblk='$d_eofnblk'
14453 d_eunice='$d_eunice'
14454 d_fchmod='$d_fchmod'
14455 d_fchown='$d_fchown'
14456 d_fcntl='$d_fcntl'
14457 d_fd_macros='$d_fd_macros'
14458 d_fd_set='$d_fd_set'
14459 d_fds_bits='$d_fds_bits'
14460 d_fgetpos='$d_fgetpos'
14461 d_flexfnam='$d_flexfnam'
14462 d_flock='$d_flock'
14463 d_fork='$d_fork'
14464 d_fpathconf='$d_fpathconf'
14465 d_fpos64_t='$d_fpos64_t'
14466 d_fs_data_s='$d_fs_data_s'
14467 d_fseeko='$d_fseeko'
14468 d_fsetpos='$d_fsetpos'
14469 d_fstatfs='$d_fstatfs'
14470 d_fstatvfs='$d_fstatvfs'
14471 d_ftello='$d_ftello'
14472 d_ftime='$d_ftime'
14473 d_getgrent='$d_getgrent'
14474 d_getgrps='$d_getgrps'
14475 d_gethbyaddr='$d_gethbyaddr'
14476 d_gethbyname='$d_gethbyname'
14477 d_gethent='$d_gethent'
14478 d_gethname='$d_gethname'
14479 d_gethostprotos='$d_gethostprotos'
14480 d_getlogin='$d_getlogin'
14481 d_getmnt='$d_getmnt'
14482 d_getmntent='$d_getmntent'
14483 d_getnbyaddr='$d_getnbyaddr'
14484 d_getnbyname='$d_getnbyname'
14485 d_getnent='$d_getnent'
14486 d_getnetprotos='$d_getnetprotos'
14487 d_getpbyname='$d_getpbyname'
14488 d_getpbynumber='$d_getpbynumber'
14489 d_getpent='$d_getpent'
14490 d_getpgid='$d_getpgid'
14491 d_getpgrp2='$d_getpgrp2'
14492 d_getpgrp='$d_getpgrp'
14493 d_getppid='$d_getppid'
14494 d_getprior='$d_getprior'
14495 d_getprotoprotos='$d_getprotoprotos'
14496 d_getpwent='$d_getpwent'
14497 d_getsbyname='$d_getsbyname'
14498 d_getsbyport='$d_getsbyport'
14499 d_getsent='$d_getsent'
14500 d_getservprotos='$d_getservprotos'
14501 d_getspent='$d_getspent'
14502 d_getspnam='$d_getspnam'
14503 d_gettimeod='$d_gettimeod'
14504 d_gnulibc='$d_gnulibc'
14505 d_grpasswd='$d_grpasswd'
14506 d_hasmntopt='$d_hasmntopt'
14507 d_htonl='$d_htonl'
14508 d_index='$d_index'
14509 d_inetaton='$d_inetaton'
14510 d_int64t='$d_int64t'
14511 d_isascii='$d_isascii'
14512 d_killpg='$d_killpg'
14513 d_lchown='$d_lchown'
14514 d_ldbl_dig='$d_ldbl_dig'
14515 d_link='$d_link'
14516 d_locconv='$d_locconv'
14517 d_lockf='$d_lockf'
14518 d_longdbl='$d_longdbl'
14519 d_longlong='$d_longlong'
14520 d_lstat='$d_lstat'
14521 d_mblen='$d_mblen'
14522 d_mbstowcs='$d_mbstowcs'
14523 d_mbtowc='$d_mbtowc'
14524 d_memchr='$d_memchr'
14525 d_memcmp='$d_memcmp'
14526 d_memcpy='$d_memcpy'
14527 d_memmove='$d_memmove'
14528 d_memset='$d_memset'
14529 d_mkdir='$d_mkdir'
14530 d_mkfifo='$d_mkfifo'
14531 d_mktime='$d_mktime'
14532 d_msg='$d_msg'
14533 d_msg_ctrunc='$d_msg_ctrunc'
14534 d_msg_dontroute='$d_msg_dontroute'
14535 d_msg_oob='$d_msg_oob'
14536 d_msg_peek='$d_msg_peek'
14537 d_msg_proxy='$d_msg_proxy'
14538 d_msgctl='$d_msgctl'
14539 d_msgget='$d_msgget'
14540 d_msgrcv='$d_msgrcv'
14541 d_msgsnd='$d_msgsnd'
14542 d_mymalloc='$d_mymalloc'
14543 d_nice='$d_nice'
14544 d_off64_t='$d_off64_t'
14545 d_old_pthread_create_joinable='$d_old_pthread_create_joinable'
14546 d_oldpthreads='$d_oldpthreads'
14547 d_oldsock='$d_oldsock'
14548 d_open3='$d_open3'
14549 d_pathconf='$d_pathconf'
14550 d_pause='$d_pause'
14551 d_phostname='$d_phostname'
14552 d_pipe='$d_pipe'
14553 d_poll='$d_poll'
14554 d_portable='$d_portable'
14555 d_pthread_yield='$d_pthread_yield'
14556 d_pwage='$d_pwage'
14557 d_pwchange='$d_pwchange'
14558 d_pwclass='$d_pwclass'
14559 d_pwcomment='$d_pwcomment'
14560 d_pwexpire='$d_pwexpire'
14561 d_pwgecos='$d_pwgecos'
14562 d_pwpasswd='$d_pwpasswd'
14563 d_pwquota='$d_pwquota'
14564 d_qgcvt='$d_qgcvt'
14565 d_quad='$d_quad'
14566 d_readdir='$d_readdir'
14567 d_readlink='$d_readlink'
14568 d_rename='$d_rename'
14569 d_rewinddir='$d_rewinddir'
14570 d_rmdir='$d_rmdir'
14571 d_safebcpy='$d_safebcpy'
14572 d_safemcpy='$d_safemcpy'
14573 d_sanemcmp='$d_sanemcmp'
14574 d_sched_yield='$d_sched_yield'
14575 d_scm_rights='$d_scm_rights'
14576 d_seekdir='$d_seekdir'
14577 d_select='$d_select'
14578 d_sem='$d_sem'
14579 d_semctl='$d_semctl'
14580 d_semctl_semid_ds='$d_semctl_semid_ds'
14581 d_semctl_semun='$d_semctl_semun'
14582 d_semget='$d_semget'
14583 d_semop='$d_semop'
14584 d_setegid='$d_setegid'
14585 d_seteuid='$d_seteuid'
14586 d_setgrent='$d_setgrent'
14587 d_setgrps='$d_setgrps'
14588 d_sethent='$d_sethent'
14589 d_setlinebuf='$d_setlinebuf'
14590 d_setlocale='$d_setlocale'
14591 d_setnent='$d_setnent'
14592 d_setpent='$d_setpent'
14593 d_setpgid='$d_setpgid'
14594 d_setpgrp2='$d_setpgrp2'
14595 d_setpgrp='$d_setpgrp'
14596 d_setprior='$d_setprior'
14597 d_setpwent='$d_setpwent'
14598 d_setregid='$d_setregid'
14599 d_setresgid='$d_setresgid'
14600 d_setresuid='$d_setresuid'
14601 d_setreuid='$d_setreuid'
14602 d_setrgid='$d_setrgid'
14603 d_setruid='$d_setruid'
14604 d_setsent='$d_setsent'
14605 d_setsid='$d_setsid'
14606 d_setspent='$d_setspent'
14607 d_setvbuf='$d_setvbuf'
14608 d_sfio='$d_sfio'
14609 d_shm='$d_shm'
14610 d_shmat='$d_shmat'
14611 d_shmatprototype='$d_shmatprototype'
14612 d_shmctl='$d_shmctl'
14613 d_shmdt='$d_shmdt'
14614 d_shmget='$d_shmget'
14615 d_sigaction='$d_sigaction'
14616 d_sigsetjmp='$d_sigsetjmp'
14617 d_socket='$d_socket'
14618 d_sockpair='$d_sockpair'
14619 d_sqrtl='$d_sqrtl'
14620 d_statblks='$d_statblks'
14621 d_statfs_f_flags='$d_statfs_f_flags'
14622 d_statfs_s='$d_statfs_s'
14623 d_statvfs='$d_statvfs'
14624 d_stdio_cnt_lval='$d_stdio_cnt_lval'
14625 d_stdio_ptr_lval='$d_stdio_ptr_lval'
14626 d_stdio_stream_array='$d_stdio_stream_array'
14627 d_stdiobase='$d_stdiobase'
14628 d_stdstdio='$d_stdstdio'
14629 d_strchr='$d_strchr'
14630 d_strcoll='$d_strcoll'
14631 d_strctcpy='$d_strctcpy'
14632 d_strerrm='$d_strerrm'
14633 d_strerror='$d_strerror'
14634 d_strtod='$d_strtod'
14635 d_strtol='$d_strtol'
14636 d_strtold='$d_strtold'
14637 d_strtoul='$d_strtoul'
14638 d_strtoull='$d_strtoull'
14639 d_strtouq='$d_strtouq'
14640 d_strxfrm='$d_strxfrm'
14641 d_suidsafe='$d_suidsafe'
14642 d_symlink='$d_symlink'
14643 d_syscall='$d_syscall'
14644 d_sysconf='$d_sysconf'
14645 d_sysernlst='$d_sysernlst'
14646 d_syserrlst='$d_syserrlst'
14647 d_system='$d_system'
14648 d_tcgetpgrp='$d_tcgetpgrp'
14649 d_tcsetpgrp='$d_tcsetpgrp'
14650 d_telldir='$d_telldir'
14651 d_telldirproto='$d_telldirproto'
14652 d_time='$d_time'
14653 d_times='$d_times'
14654 d_truncate='$d_truncate'
14655 d_tzname='$d_tzname'
14656 d_umask='$d_umask'
14657 d_uname='$d_uname'
14658 d_union_semun='$d_union_semun'
14659 d_ustat='$d_ustat'
14660 d_vendorbin='$d_vendorbin'
14661 d_vendorlib='$d_vendorlib'
14662 d_vfork='$d_vfork'
14663 d_void_closedir='$d_void_closedir'
14664 d_voidsig='$d_voidsig'
14665 d_voidtty='$d_voidtty'
14666 d_volatile='$d_volatile'
14667 d_vprintf='$d_vprintf'
14668 d_wait4='$d_wait4'
14669 d_waitpid='$d_waitpid'
14670 d_wcstombs='$d_wcstombs'
14671 d_wctomb='$d_wctomb'
14672 d_xenix='$d_xenix'
14673 date='$date'
14674 db_hashtype='$db_hashtype'
14675 db_prefixtype='$db_prefixtype'
14676 defvoidused='$defvoidused'
14677 direntrytype='$direntrytype'
14678 dlext='$dlext'
14679 dlsrc='$dlsrc'
14680 doublesize='$doublesize'
14681 drand01='$drand01'
14682 dynamic_ext='$dynamic_ext'
14683 eagain='$eagain'
14684 ebcdic='$ebcdic'
14685 echo='$echo'
14686 egrep='$egrep'
14687 emacs='$emacs'
14688 eunicefix='$eunicefix'
14689 exe_ext='$exe_ext'
14690 expr='$expr'
14691 extensions='$extensions'
14692 fflushNULL='$fflushNULL'
14693 fflushall='$fflushall'
14694 find='$find'
14695 firstmakefile='$firstmakefile'
14696 flex='$flex'
14697 fpossize='$fpossize'
14698 fpostype='$fpostype'
14699 freetype='$freetype'
14700 full_ar='$full_ar'
14701 full_csh='$full_csh'
14702 full_sed='$full_sed'
14703 gccversion='$gccversion'
14704 gidformat='$gidformat'
14705 gidsign='$gidsign'
14706 gidsize='$gidsize'
14707 gidtype='$gidtype'
14708 glibpth='$glibpth'
14709 grep='$grep'
14710 groupcat='$groupcat'
14711 groupstype='$groupstype'
14712 gzip='$gzip'
14713 h_fcntl='$h_fcntl'
14714 h_sysfile='$h_sysfile'
14715 hint='$hint'
14716 hostcat='$hostcat'
14717 huge='$huge'
14718 i16size='$i16size'
14719 i16type='$i16type'
14720 i32size='$i32size'
14721 i32type='$i32type'
14722 i64size='$i64size'
14723 i64type='$i64type'
14724 i8size='$i8size'
14725 i8type='$i8type'
14726 i_arpainet='$i_arpainet'
14727 i_bsdioctl='$i_bsdioctl'
14728 i_db='$i_db'
14729 i_dbm='$i_dbm'
14730 i_dirent='$i_dirent'
14731 i_dld='$i_dld'
14732 i_dlfcn='$i_dlfcn'
14733 i_fcntl='$i_fcntl'
14734 i_float='$i_float'
14735 i_gdbm='$i_gdbm'
14736 i_grp='$i_grp'
14737 i_inttypes='$i_inttypes'
14738 i_limits='$i_limits'
14739 i_locale='$i_locale'
14740 i_machcthr='$i_machcthr'
14741 i_malloc='$i_malloc'
14742 i_math='$i_math'
14743 i_memory='$i_memory'
14744 i_mntent='$i_mntent'
14745 i_ndbm='$i_ndbm'
14746 i_netdb='$i_netdb'
14747 i_neterrno='$i_neterrno'
14748 i_netinettcp='$i_netinettcp'
14749 i_niin='$i_niin'
14750 i_poll='$i_poll'
14751 i_pthread='$i_pthread'
14752 i_pwd='$i_pwd'
14753 i_rpcsvcdbm='$i_rpcsvcdbm'
14754 i_sfio='$i_sfio'
14755 i_sgtty='$i_sgtty'
14756 i_shadow='$i_shadow'
14757 i_socks='$i_socks'
14758 i_stdarg='$i_stdarg'
14759 i_stddef='$i_stddef'
14760 i_stdlib='$i_stdlib'
14761 i_string='$i_string'
14762 i_sysaccess='$i_sysaccess'
14763 i_sysdir='$i_sysdir'
14764 i_sysfile='$i_sysfile'
14765 i_sysfilio='$i_sysfilio'
14766 i_sysin='$i_sysin'
14767 i_sysioctl='$i_sysioctl'
14768 i_sysmount='$i_sysmount'
14769 i_sysndir='$i_sysndir'
14770 i_sysparam='$i_sysparam'
14771 i_sysresrc='$i_sysresrc'
14772 i_syssecrt='$i_syssecrt'
14773 i_sysselct='$i_sysselct'
14774 i_syssockio='$i_syssockio'
14775 i_sysstat='$i_sysstat'
14776 i_sysstatfs='$i_sysstatfs'
14777 i_sysstatvfs='$i_sysstatvfs'
14778 i_systime='$i_systime'
14779 i_systimek='$i_systimek'
14780 i_systimes='$i_systimes'
14781 i_systypes='$i_systypes'
14782 i_sysuio='$i_sysuio'
14783 i_sysun='$i_sysun'
14784 i_sysvfs='$i_sysvfs'
14785 i_syswait='$i_syswait'
14786 i_termio='$i_termio'
14787 i_termios='$i_termios'
14788 i_time='$i_time'
14789 i_unistd='$i_unistd'
14790 i_ustat='$i_ustat'
14791 i_utime='$i_utime'
14792 i_values='$i_values'
14793 i_varargs='$i_varargs'
14794 i_varhdr='$i_varhdr'
14795 i_vfork='$i_vfork'
14796 ignore_versioned_solibs='$ignore_versioned_solibs'
14797 inc_version_list='$inc_version_list'
14798 incpath='$incpath'
14799 inews='$inews'
14800 installarchlib='$installarchlib'
14801 installbin='$installbin'
14802 installman1dir='$installman1dir'
14803 installman3dir='$installman3dir'
14804 installprefix='$installprefix'
14805 installprefixexp='$installprefixexp'
14806 installprivlib='$installprivlib'
14807 installscript='$installscript'
14808 installsitearch='$installsitearch'
14809 installsitebin='$installsitebin'
14810 installsitelib='$installsitelib'
14811 installstyle='$installstyle'
14812 installusrbinperl='$installusrbinperl'
14813 installvendorbin='$installvendorbin'
14814 installvendorlib='$installvendorlib'
14815 intsize='$intsize'
14816 ivdformat='$ivdformat'
14817 ivsize='$ivsize'
14818 ivtype='$ivtype'
14819 known_extensions='$known_extensions'
14820 ksh='$ksh'
14821 large='$large'
14822 ld='$ld'
14823 lddlflags='$lddlflags'
14824 ldflags='$ldflags'
14825 ldlibpthname='$ldlibpthname'
14826 less='$less'
14827 lib_ext='$lib_ext'
14828 libc='$libc'
14829 libperl='$libperl'
14830 libpth='$libpth'
14831 libs='$libs'
14832 libswanted='$libswanted'
14833 line='$line'
14834 lint='$lint'
14835 lkflags='$lkflags'
14836 ln='$ln'
14837 lns='$lns'
14838 locincpth='$locincpth'
14839 loclibpth='$loclibpth'
14840 longdblsize='$longdblsize'
14841 longlongsize='$longlongsize'
14842 longsize='$longsize'
14843 lp='$lp'
14844 lpr='$lpr'
14845 ls='$ls'
14846 lseeksize='$lseeksize'
14847 lseektype='$lseektype'
14848 mail='$mail'
14849 mailx='$mailx'
14850 make='$make'
14851 make_set_make='$make_set_make'
14852 mallocobj='$mallocobj'
14853 mallocsrc='$mallocsrc'
14854 malloctype='$malloctype'
14855 man1dir='$man1dir'
14856 man1direxp='$man1direxp'
14857 man1ext='$man1ext'
14858 man3dir='$man3dir'
14859 man3direxp='$man3direxp'
14860 man3ext='$man3ext'
14861 medium='$medium'
14862 mips_type='$mips_type'
14863 mkdir='$mkdir'
14864 models='$models'
14865 modetype='$modetype'
14866 more='$more'
14867 multiarch='$multiarch'
14868 mv='$mv'
14869 myarchname='$myarchname'
14870 mydomain='$mydomain'
14871 myhostname='$myhostname'
14872 myuname='$myuname'
14873 n='$n'
14874 netdb_hlen_type='$netdb_hlen_type'
14875 netdb_host_type='$netdb_host_type'
14876 netdb_name_type='$netdb_name_type'
14877 netdb_net_type='$netdb_net_type'
14878 nm='$nm'
14879 nm_opt='$nm_opt'
14880 nm_so_opt='$nm_so_opt'
14881 nonxs_ext='$nonxs_ext'
14882 nroff='$nroff'
14883 nvsize='$nvsize'
14884 nvtype='$nvtype'
14885 o_nonblock='$o_nonblock'
14886 obj_ext='$obj_ext'
14887 old_pthread_create_joinable='$old_pthread_create_joinable'
14888 optimize='$optimize'
14889 orderlib='$orderlib'
14890 osname='$osname'
14891 osvers='$osvers'
14892 package='$package'
14893 pager='$pager'
14894 passcat='$passcat'
14895 patchlevel='$patchlevel'
14896 path_sep='$path_sep'
14897 perl='$perl'
14898 perladmin='$perladmin'
14899 perlpath='$perlpath'
14900 pg='$pg'
14901 phostname='$phostname'
14902 pidtype='$pidtype'
14903 plibpth='$plibpth'
14904 pmake='$pmake'
14905 pr='$pr'
14906 prefix='$prefix'
14907 prefixexp='$prefixexp'
14908 privlib='$privlib'
14909 privlibexp='$privlibexp'
14910 prototype='$prototype'
14911 ptrsize='$ptrsize'
14912 quadkind='$quadkind'
14913 quadtype='$quadtype'
14914 randbits='$randbits'
14915 randfunc='$randfunc'
14916 randseedtype='$randseedtype'
14917 ranlib='$ranlib'
14918 rd_nodata='$rd_nodata'
14919 rm='$rm'
14920 rmail='$rmail'
14921 runnm='$runnm'
14922 sPRIEldbl='$sPRIEldbl'
14923 sPRIFldbl='$sPRIFldbl'
14924 sPRIGldbl='$sPRIGldbl'
14925 sPRIX64='$sPRIX64'
14926 sPRId64='$sPRId64'
14927 sPRIeldbl='$sPRIeldbl'
14928 sPRIfldbl='$sPRIfldbl'
14929 sPRIgldbl='$sPRIgldbl'
14930 sPRIi64='$sPRIi64'
14931 sPRIo64='$sPRIo64'
14932 sPRIu64='$sPRIu64'
14933 sPRIx64='$sPRIx64'
14934 sched_yield='$sched_yield'
14935 scriptdir='$scriptdir'
14936 scriptdirexp='$scriptdirexp'
14937 sed='$sed'
14938 seedfunc='$seedfunc'
14939 selectminbits='$selectminbits'
14940 selecttype='$selecttype'
14941 sendmail='$sendmail'
14942 sh='$sh'
14943 shar='$shar'
14944 sharpbang='$sharpbang'
14945 shmattype='$shmattype'
14946 shortsize='$shortsize'
14947 shrpenv='$shrpenv'
14948 shsharp='$shsharp'
14949 sig_count='$sig_count'
14950 sig_name='$sig_name'
14951 sig_name_init='$sig_name_init'
14952 sig_num='$sig_num'
14953 sig_num_init='$sig_num_init'
14954 signal_t='$signal_t'
14955 sitearch='$sitearch'
14956 sitearchexp='$sitearchexp'
14957 sitebin='$sitebin'
14958 sitebinexp='$sitebinexp'
14959 sitelib='$sitelib'
14960 sitelibexp='$sitelibexp'
14961 siteprefix='$siteprefix'
14962 siteprefixexp='$siteprefixexp'
14963 sizetype='$sizetype'
14964 sleep='$sleep'
14965 smail='$smail'
14966 small='$small'
14967 so='$so'
14968 sockethdr='$sockethdr'
14969 socketlib='$socketlib'
14970 sort='$sort'
14971 spackage='$spackage'
14972 spitshell='$spitshell'
14973 split='$split'
14974 src='$src'
14975 ssizetype='$ssizetype'
14976 startperl='$startperl'
14977 startsh='$startsh'
14978 static_ext='$static_ext'
14979 stdchar='$stdchar'
14980 stdio_base='$stdio_base'
14981 stdio_bufsiz='$stdio_bufsiz'
14982 stdio_cnt='$stdio_cnt'
14983 stdio_filbuf='$stdio_filbuf'
14984 stdio_ptr='$stdio_ptr'
14985 stdio_stream_array='$stdio_stream_array'
14986 strings='$strings'
14987 submit='$submit'
14988 subversion='$subversion'
14989 sysman='$sysman'
14990 tail='$tail'
14991 tar='$tar'
14992 tbl='$tbl'
14993 tee='$tee'
14994 test='$test'
14995 timeincl='$timeincl'
14996 timetype='$timetype'
14997 touch='$touch'
14998 tr='$tr'
14999 trnl='$trnl'
15000 troff='$troff'
15001 u16size='$u16size'
15002 u16type='$u16type'
15003 u32size='$u32size'
15004 u32type='$u32type'
15005 u64size='$u64size'
15006 u64type='$u64type'
15007 u8size='$u8size'
15008 u8type='$u8type'
15009 uidformat='$uidformat'
15010 uidsign='$uidsign'
15011 uidsize='$uidsize'
15012 uidtype='$uidtype'
15013 uname='$uname'
15014 uniq='$uniq'
15015 uquadtype='$uquadtype'
15016 use5005threads='$use5005threads'
15017 use64bits='$use64bits'
15018 usedl='$usedl'
15019 useithreads='$useithreads'
15020 uselargefiles='$uselargefiles'
15021 uselongdouble='$uselongdouble'
15022 uselonglong='$uselonglong'
15023 usemorebits='$usemorebits'
15024 usemultiplicity='$usemultiplicity'
15025 usemymalloc='$usemymalloc'
15026 usenm='$usenm'
15027 useopcode='$useopcode'
15028 useperlio='$useperlio'
15029 useposix='$useposix'
15030 usesfio='$usesfio'
15031 useshrplib='$useshrplib'
15032 usesocks='$usesocks'
15033 usethreads='$usethreads'
15034 usevendorprefix='$usevendorprefix'
15035 usevfork='$usevfork'
15036 usrinc='$usrinc'
15037 uuname='$uuname'
15038 uvoformat='$uvoformat'
15039 uvsize='$uvsize'
15040 uvtype='$uvtype'
15041 uvuformat='$uvuformat'
15042 uvxformat='$uvxformat'
15043 vendorbin='$vendorbin'
15044 vendorbinexp='$vendorbinexp'
15045 vendorlib='$vendorlib'
15046 vendorlibexp='$vendorlibexp'
15047 vendorprefix='$vendorprefix'
15048 vendorprefixexp='$vendorprefixexp'
15049 version='$version'
15050 vi='$vi'
15051 voidflags='$voidflags'
15052 xlibpth='$xlibpth'
15053 zcat='$zcat'
15054 zip='$zip'
15055 EOT
15056
15057 : Add in command line options if available
15058 $test -f UU/cmdline.opt && $cat UU/cmdline.opt >> config.sh
15059
15060 : add special variables
15061 $test -f $src/patchlevel.h && \
15062 awk '/^#define[         ]+PERL_/ {printf "%s=%s\n",$2,$3}' $src/patchlevel.h >>config.sh
15063 echo "CONFIGDOTSH=true" >>config.sh
15064
15065 : propagate old symbols
15066 if $test -f UU/config.sh; then
15067         <UU/config.sh sort | uniq >UU/oldconfig.sh
15068         sed -n 's/^\([a-zA-Z_0-9]*\)=.*/\1/p' config.sh config.sh UU/oldconfig.sh |\
15069         sort | uniq -u >UU/oldsyms
15070         set X `cat UU/oldsyms`
15071         shift
15072         case $# in
15073         0) ;;
15074         *)
15075                 cat <<EOM
15076 Hmm...You had some extra variables I don't know about...I'll try to keep 'em...
15077 EOM
15078                 echo "# Variables propagated from previous config.sh file." >>config.sh
15079                 for sym in `cat UU/oldsyms`; do
15080                         echo "    Propagating $hint variable "'$'"$sym..."
15081                         eval 'tmp="$'"${sym}"'"'
15082                         echo "$tmp" | \
15083                                 sed -e "s/'/'\"'\"'/g" -e "s/^/$sym='/" -e "s/$/'/" >>config.sh
15084                 done
15085                 ;;
15086         esac
15087 fi
15088
15089 : Finish up by extracting the .SH files
15090 case "$alldone" in
15091 exit)
15092         $rm -rf UU
15093         echo "Done."
15094         exit 0
15095         ;;
15096 cont)
15097         ;;
15098 '')
15099         dflt=''
15100         nostick=true
15101         $cat <<EOM
15102
15103 If you'd like to make any changes to the config.sh file before I begin
15104 to configure things, do it as a shell escape now (e.g. !vi config.sh).
15105
15106 EOM
15107         rp="Press return or use a shell escape to edit config.sh:"
15108         . UU/myread
15109         nostick=''
15110         case "$ans" in
15111         '') ;;
15112         *) : in case they cannot read
15113                 sh 1>&4 -c "$ans";;
15114         esac
15115         ;;
15116 esac
15117
15118 : if this fails, just run all the .SH files by hand
15119 . ./config.sh
15120
15121 echo " "
15122 exec 1>&4
15123 . ./UU/extract
15124
15125 if $contains '^depend:' [Mm]akefile >/dev/null 2>&1; then
15126         dflt=y
15127         case "$silent" in
15128         true) ;;
15129         *)
15130                 $cat <<EOM
15131
15132 Now you need to generate make dependencies by running "$make depend".
15133 You might prefer to run it in background: "$make depend > makedepend.out &"
15134 It can take a while, so you might not want to run it right now.
15135
15136 EOM
15137                 ;;
15138         esac
15139         rp="Run $make depend now?"
15140         . UU/myread
15141         case "$ans" in
15142         y*)
15143                 $make depend && echo "Now you must run a $make."
15144                 ;;
15145         *)
15146                 echo "You must run '$make depend' then '$make'."
15147                 ;;
15148         esac
15149 elif test -f [Mm]akefile; then
15150         echo " "
15151         echo "Now you must run a $make."
15152 else
15153         echo "Done."
15154 fi
15155
15156 if $test -f Policy.sh; then
15157     $cat <<EOM
15158
15159 If you compile $package on a different machine or from a different object
15160 directory, copy the Policy.sh file from this object directory to the
15161 new one before you run Configure -- this will help you with most of
15162 the policy defaults.
15163
15164 EOM
15165 fi
15166 if $test -f config.msg; then
15167     echo "Hmm.  I also noted the following information while running:"
15168     echo " "
15169     $cat config.msg >&4
15170     $rm -f config.msg
15171 fi
15172 $rm -f kit*isdone ark*isdone
15173 $rm -rf UU
15174
15175 : End of Configure
15176