Change#2284 aid: allow also for plain old MSG_ and SCM_ #defines.
[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 Sun Nov 22 19:12:18 EET 1998 [metaconfig 3.0 PL70]
24 # (with additional metaconfig patches by jhi@iki.fi)
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 case "$inksh/$needksh" in
112 /[a-z]*)
113                 ENV=''
114                 changesh=true
115                 reason="$needksh"
116         ;;
117 esac
118 case "$inksh/$avoidksh" in
119 true/[a-z]*)
120         changesh=true
121         reason="$avoidksh"
122         ;;
123 esac
124 case "$inksh/$needksh-$avoidksh-" in
125 true/--)
126                 cat <<EOM
127 (I see you are using the Korn shell.  Some ksh's blow up on $me,
128 mainly on older exotic systems.  If yours does, try the Bourne shell instead.)
129 EOM
130         ;;
131 esac
132 case "$changesh" in
133 true)
134         echo "(Feeding myself to $newsh $reason.)"
135         case "$0" in
136         Configure|*/Configure) exec $newsh $0 "$@";;
137         *) exec $newsh Configure "$@";;
138         esac
139         ;;
140 esac
141
142 : if needed set CDPATH to a harmless value that is not chatty
143 : avoid bash 2.02 problems with empty CDPATH.
144 case "$CDPATH" in
145 '')     ;;
146 *)      case "$SHELL" in
147         *bash*) CDPATH='.' ;;
148         *)              CDPATH='' ;;
149         esac
150         ;;
151 esac
152 : Configure runs within the UU subdirectory
153 test -d UU || mkdir UU
154 cd UU && rm -f ./*
155
156 dynamic_ext=''
157 extensions=''
158 known_extensions=''
159 nonxs_ext=''
160 static_ext=''
161 useopcode=''
162 useposix=''
163 d_bsd=''
164 d_eunice=''
165 d_xenix=''
166 eunicefix=''
167 Mcc=''
168 ar=''
169 awk=''
170 bash=''
171 bison=''
172 byacc=''
173 cat=''
174 chgrp=''
175 chmod=''
176 chown=''
177 comm=''
178 compress=''
179 cp=''
180 cpio=''
181 cpp=''
182 csh=''
183 date=''
184 echo=''
185 egrep=''
186 emacs=''
187 expr=''
188 find=''
189 flex=''
190 grep=''
191 gzip=''
192 inews=''
193 ksh=''
194 less=''
195 line=''
196 lint=''
197 ln=''
198 lp=''
199 lpr=''
200 ls=''
201 mail=''
202 mailx=''
203 make=''
204 mkdir=''
205 more=''
206 mv=''
207 nm=''
208 nroff=''
209 perl=''
210 pg=''
211 pmake=''
212 pr=''
213 rm=''
214 rmail=''
215 sed=''
216 sendmail=''
217 shar=''
218 sleep=''
219 smail=''
220 sort=''
221 submit=''
222 tail=''
223 tar=''
224 tbl=''
225 tee=''
226 test=''
227 touch=''
228 tr=''
229 troff=''
230 uname=''
231 uniq=''
232 uuname=''
233 vi=''
234 zcat=''
235 zip=''
236 full_sed=''
237 libswanted=''
238 hint=''
239 myuname=''
240 osname=''
241 osvers=''
242 Author=''
243 Date=''
244 Header=''
245 Id=''
246 Locker=''
247 Log=''
248 RCSfile=''
249 Revision=''
250 Source=''
251 State=''
252 _a=''
253 _exe=''
254 _o=''
255 archobjs=''
256 exe_ext=''
257 firstmakefile=''
258 lib_ext=''
259 obj_ext=''
260 path_sep=''
261 afs=''
262 alignbytes=''
263 ansi2knr=''
264 archlib=''
265 archlibexp=''
266 d_archlib=''
267 installarchlib=''
268 archname=''
269 myarchname=''
270 baserev=''
271 bin=''
272 binexp=''
273 installbin=''
274 byteorder=''
275 cc=''
276 gccversion=''
277 ccflags=''
278 cppflags=''
279 ldflags=''
280 lkflags=''
281 locincpth=''
282 optimize=''
283 cf_email=''
284 cf_by=''
285 cf_time=''
286 contains=''
287 cpp_stuff=''
288 cpplast=''
289 cppminus=''
290 cpprun=''
291 cppstdin=''
292 d_access=''
293 d_accessx=''
294 d_alarm=''
295 d_attribut=''
296 d_bcmp=''
297 d_bcopy=''
298 d_bzero=''
299 d_casti32=''
300 castflags=''
301 d_castneg=''
302 d_chown=''
303 d_chroot=''
304 d_chsize=''
305 d_closedir=''
306 d_void_closedir=''
307 d_const=''
308 cryptlib=''
309 d_crypt=''
310 d_csh=''
311 full_csh=''
312 d_cuserid=''
313 d_dbl_dig=''
314 d_difftime=''
315 d_dlerror=''
316 d_dlopen=''
317 d_dlsymun=''
318 d_dosuid=''
319 d_suidsafe=''
320 d_drand48proto=''
321 d_dup2=''
322 d_eaccess=''
323 d_endgrent=''
324 d_endhent=''
325 d_endnent=''
326 d_endpent=''
327 d_endpwent=''
328 d_endsent=''
329 d_fchmod=''
330 d_fchown=''
331 d_fcntl=''
332 d_fd_macros=''
333 d_fd_set=''
334 d_fds_bits=''
335 d_fgetpos=''
336 d_flexfnam=''
337 d_flock=''
338 d_fork=''
339 d_fseeko=''
340 d_fsetpos=''
341 d_ftello=''
342 d_ftime=''
343 d_gettimeod=''
344 d_Gconvert=''
345 d_getgrent=''
346 d_getgrps=''
347 d_gethbyaddr=''
348 d_gethbyname=''
349 d_gethent=''
350 aphostname=''
351 d_gethname=''
352 d_phostname=''
353 d_uname=''
354 d_gethostprotos=''
355 d_getlogin=''
356 d_getnbyaddr=''
357 d_getnbyname=''
358 d_getnent=''
359 d_getnetprotos=''
360 d_getpent=''
361 d_getpgid=''
362 d_getpgrp2=''
363 d_bsdgetpgrp=''
364 d_getpgrp=''
365 d_getppid=''
366 d_getprior=''
367 d_getpbyname=''
368 d_getpbynumber=''
369 d_getprotoprotos=''
370 d_getpwent=''
371 d_getsent=''
372 d_getservprotos=''
373 d_getsbyname=''
374 d_getsbyport=''
375 d_gnulibc=''
376 d_htonl=''
377 d_inetaton=''
378 d_isascii=''
379 d_killpg=''
380 d_lchown=''
381 d_link=''
382 d_locconv=''
383 d_lockf=''
384 d_longdbl=''
385 longdblsize=''
386 d_longlong=''
387 longlongsize=''
388 d_lstat=''
389 d_mblen=''
390 d_mbstowcs=''
391 d_mbtowc=''
392 d_memcmp=''
393 d_memcpy=''
394 d_memmove=''
395 d_memset=''
396 d_mkdir=''
397 d_mkfifo=''
398 d_mktime=''
399 d_msg=''
400 d_msgctl=''
401 d_msgget=''
402 d_msgrcv=''
403 d_msgsnd=''
404 d_nice=''
405 d_open3=''
406 d_fpathconf=''
407 d_pathconf=''
408 d_pause=''
409 d_pipe=''
410 d_poll=''
411 d_portable=''
412 d_pthread_create_joinable=''
413 pthread_create_joinable=''
414 d_pthread_yield=''
415 d_sched_yield=''
416 sched_yield=''
417 d_readdir=''
418 d_rewinddir=''
419 d_seekdir=''
420 d_telldir=''
421 d_readlink=''
422 d_readv=''
423 d_rename=''
424 d_rmdir=''
425 d_safebcpy=''
426 d_safemcpy=''
427 d_sanemcmp=''
428 d_select=''
429 d_sem=''
430 d_semctl=''
431 d_semget=''
432 d_semop=''
433 d_setegid=''
434 d_seteuid=''
435 d_setgrent=''
436 d_setgrps=''
437 d_sethent=''
438 d_setlinebuf=''
439 d_setlocale=''
440 d_setnent=''
441 d_setpent=''
442 d_setpgid=''
443 d_setpgrp2=''
444 d_bsdsetpgrp=''
445 d_setpgrp=''
446 d_setprior=''
447 d_setpwent=''
448 d_setregid=''
449 d_setresgid=''
450 d_setresuid=''
451 d_setreuid=''
452 d_setrgid=''
453 d_setruid=''
454 d_setsent=''
455 d_setsid=''
456 d_setvbuf=''
457 d_sfio=''
458 usesfio=''
459 d_shm=''
460 d_shmat=''
461 d_shmatprototype=''
462 shmattype=''
463 d_shmctl=''
464 d_shmdt=''
465 d_shmget=''
466 d_sigaction=''
467 d_sigsetjmp=''
468 d_cmsghdr_s=''
469 d_msg_ctrunc=''
470 d_msg_dontroute=''
471 d_msg_oob=''
472 d_msg_peek=''
473 d_msg_proxy=''
474 d_msghdr_s=''
475 d_oldsock=''
476 d_recvmsg=''
477 d_scm_rights=''
478 d_sendmsg=''
479 d_socket=''
480 d_sockpair=''
481 sockethdr=''
482 socketlib=''
483 d_statblks=''
484 d_stdio_cnt_lval=''
485 d_stdio_ptr_lval=''
486 d_stdiobase=''
487 d_stdstdio=''
488 stdio_base=''
489 stdio_bufsiz=''
490 stdio_cnt=''
491 stdio_filbuf=''
492 stdio_ptr=''
493 d_index=''
494 d_strchr=''
495 d_strcoll=''
496 d_strctcpy=''
497 d_strerrm=''
498 d_strerror=''
499 d_sysernlst=''
500 d_syserrlst=''
501 d_strtod=''
502 d_strtol=''
503 d_strtoul=''
504 d_strxfrm=''
505 d_symlink=''
506 d_syscall=''
507 d_sysconf=''
508 d_system=''
509 d_tcgetpgrp=''
510 d_tcsetpgrp=''
511 d_time=''
512 timetype=''
513 clocktype=''
514 d_times=''
515 d_truncate=''
516 d_tzname=''
517 d_umask=''
518 d_semctl_semid_ds=''
519 d_semctl_semun=''
520 d_union_semun=''
521 d_vfork=''
522 usevfork=''
523 d_voidsig=''
524 signal_t=''
525 d_volatile=''
526 d_charvspr=''
527 d_vprintf=''
528 d_wait4=''
529 d_waitpid=''
530 d_wcstombs=''
531 d_wctomb=''
532 d_writev=''
533 d_dbmclose64=''
534 d_dbminit64=''
535 d_delete64=''
536 d_fetch64=''
537 d_firstkey64=''
538 d_nextkey64=''
539 d_store64=''
540 dlext=''
541 cccdlflags=''
542 ccdlflags=''
543 dlsrc=''
544 ld=''
545 lddlflags=''
546 usedl=''
547 doublesize=''
548 ebcdic=''
549 fpostype=''
550 gidtype=''
551 groupstype=''
552 h_fcntl=''
553 h_sysfile=''
554 i_arpainet=''
555 db_hashtype=''
556 db_prefixtype=''
557 i_db=''
558 i_dbm=''
559 i_rpcsvcdbm=''
560 d_dirnamlen=''
561 direntrytype=''
562 i_dirent=''
563 i_dld=''
564 i_dlfcn=''
565 i_fcntl=''
566 i_float=''
567 i_gdbm=''
568 d_grpasswd=''
569 i_grp=''
570 d_int64t=''
571 i_inttypes=''
572 i_limits=''
573 i_locale=''
574 i_machcthr=''
575 i_malloc=''
576 i_math=''
577 i_memory=''
578 i_ndbm=''
579 i_netdb=''
580 i_neterrno=''
581 i_niin=''
582 i_sysin=''
583 d_pwage=''
584 d_pwchange=''
585 d_pwclass=''
586 d_pwcomment=''
587 d_pwexpire=''
588 d_pwgecos=''
589 d_pwpasswd=''
590 d_pwquota=''
591 i_pwd=''
592 i_sfio=''
593 i_stddef=''
594 i_stdlib=''
595 i_string=''
596 strings=''
597 i_sysaccess=''
598 i_sysdir=''
599 i_sysfile=''
600 d_voidtty=''
601 i_bsdioctl=''
602 i_sysfilio=''
603 i_sysioctl=''
604 i_syssockio=''
605 i_sysndir=''
606 i_sysparam=''
607 i_sysresrc=''
608 i_syssecrt=''
609 i_sysselct=''
610 i_sysstat=''
611 i_systimes=''
612 i_systypes=''
613 d_iovec_s=''
614 i_sysuio=''
615 i_sysun=''
616 i_syswait=''
617 i_sgtty=''
618 i_termio=''
619 i_termios=''
620 i_systime=''
621 i_systimek=''
622 i_time=''
623 timeincl=''
624 i_unistd=''
625 i_utime=''
626 i_values=''
627 i_stdarg=''
628 i_varargs=''
629 i_varhdr=''
630 i_vfork=''
631 intsize=''
632 longsize=''
633 shortsize=''
634 d_dirent64_s=''
635 d_flock64_s=''
636 d_fstat64=''
637 d_ftruncate64=''
638 d_ino64t=''
639 d_lockf64=''
640 d_lseek64=''
641 d_lstat64=''
642 d_off64t=''
643 d_open64=''
644 d_opendir64=''
645 d_readdir64=''
646 d_seekdir64=''
647 d_stat64=''
648 d_telldir64=''
649 d_truncate64=''
650 libc=''
651 libperl=''
652 shrpenv=''
653 useshrplib=''
654 glibpth=''
655 libpth=''
656 loclibpth=''
657 plibpth=''
658 xlibpth=''
659 ignore_versioned_solibs=''
660 libs=''
661 lns=''
662 lseeksize=''
663 lseektype=''
664 make_set_make=''
665 d_mymalloc=''
666 freetype=''
667 mallocobj=''
668 mallocsrc=''
669 malloctype=''
670 usemymalloc=''
671 installman1dir=''
672 man1dir=''
673 man1direxp=''
674 man1ext=''
675 installman3dir=''
676 man3dir=''
677 man3direxp=''
678 man3ext=''
679 huge=''
680 large=''
681 medium=''
682 models=''
683 small=''
684 split=''
685 modetype=''
686 mydomain=''
687 myhostname=''
688 phostname=''
689 c=''
690 n=''
691 d_eofnblk=''
692 eagain=''
693 o_nonblock=''
694 rd_nodata=''
695 netdb_hlen_type=''
696 netdb_host_type=''
697 netdb_name_type=''
698 netdb_net_type=''
699 groupcat=''
700 hostcat=''
701 passcat=''
702 orderlib=''
703 ranlib=''
704 package=''
705 spackage=''
706 pager=''
707 apiversion=''
708 patchlevel=''
709 subversion=''
710 version=''
711 perladmin=''
712 perlpath=''
713 pidtype=''
714 prefix=''
715 prefixexp=''
716 installprivlib=''
717 privlib=''
718 privlibexp=''
719 prototype=''
720 ptrsize=''
721 drand01=''
722 randbits=''
723 randfunc=''
724 randseedtype=''
725 seedfunc=''
726 installscript=''
727 scriptdir=''
728 scriptdirexp=''
729 selectminbits=''
730 selecttype=''
731 sh=''
732 sig_name=''
733 sig_name_init=''
734 sig_num=''
735 sig_num_init=''
736 installsitearch=''
737 sitearch=''
738 sitearchexp=''
739 installsitelib=''
740 sitelib=''
741 sitelibexp=''
742 sizetype=''
743 so=''
744 sharpbang=''
745 shsharp=''
746 spitshell=''
747 src=''
748 ssizetype=''
749 startperl=''
750 startsh=''
751 stdchar=''
752 d_fgetpos64=''
753 d_fopen64=''
754 d_freopen64=''
755 d_fseek64=''
756 d_fseeko64=''
757 d_fsetpos64=''
758 d_ftell64=''
759 d_ftello64=''
760 d_tmpfile64=''
761 sysman=''
762 trnl=''
763 uidtype=''
764 archname64=''
765 use64bits=''
766 usemultiplicity=''
767 nm_opt=''
768 nm_so_opt=''
769 runnm=''
770 usenm=''
771 useperlio=''
772 d_oldpthreads=''
773 usethreads=''
774 incpath=''
775 mips=''
776 mips_type=''
777 usrinc=''
778 defvoidused=''
779 voidflags=''
780 CONFIG=''
781
782 define='define'
783 undef='undef'
784 smallmach='pdp11 i8086 z8000 i80286 iAPX286'
785 rmlist=''
786
787 : We must find out about Eunice early
788 eunicefix=':'
789 if test -f /etc/unixtovms; then
790         eunicefix=/etc/unixtovms
791 fi
792 if test -f /etc/unixtovms.exe; then
793         eunicefix=/etc/unixtovms.exe
794 fi
795
796 i_whoami=''
797 : change the next line if compiling for Xenix/286 on Xenix/386
798 xlibpth='/usr/lib/386 /lib/386'
799
800 : Possible local library directories to search.
801 loclibpth="/usr/local/lib /opt/local/lib /usr/gnu/lib"
802 loclibpth="$loclibpth /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib"
803
804 : general looking path for locating libraries
805 glibpth="/shlib /usr/shlib /lib/pa1.1 /usr/lib/large"
806 glibpth="$glibpth /lib /usr/lib $xlibpth"
807 glibpth="$glibpth /lib/large /usr/lib/small /lib/small"
808 glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/local/lib"
809
810 : Private path used by Configure to find libraries.  Its value
811 : is prepended to libpth. This variable takes care of special
812 : machines, like the mips.  Usually, it should be empty.
813 plibpth=''
814
815 : Possible local include directories to search.
816 : Set locincpth to "" in a hint file to defeat local include searches.
817 locincpth="/usr/local/include /opt/local/include /usr/gnu/include"
818 locincpth="$locincpth /opt/gnu/include /usr/GNU/include /opt/GNU/include"
819 :
820 : no include file wanted by default
821 inclwanted=''
822
823 : list of known cpp symbols, sorted alphabetically
824 al="AMIX BIT_MSF BSD BSD4_3 BSD_NET2 CMU CRAY DGUX DOLPHIN DPX2"
825 al="$al GO32 GOULD_PN HP700 I386 I80960 I960 Lynx M68000 M68K MACH"
826 al="$al MIPSEB MIPSEL MSDOS MTXINU MULTIMAX MVS"
827 al="$al M_COFF M_I186 M_I286 M_I386 M_I8086 M_I86 M_I86SM"
828 al="$al M_SYS3 M_SYS5 M_SYSIII M_SYSV M_UNIX M_XENIX"
829 al="$al NeXT OCS88 OSF1 PARISC PC532 PORTAR POSIX"
830 al="$al PWB R3000 RES RISC6000 RT Sun386i SVR3 SVR4"
831 al="$al SYSTYPE_BSD SYSTYPE_SVR4 SYSTYPE_SYSV Tek4132 Tek4300"
832 al="$al UMAXV USGr4 USGr4_2 UTEK UTS UTek UnicomPBB UnicomPBD Utek"
833 al="$al VMS Xenix286"
834 al="$al _AIX _AIX32 _AIX370 _AIX41 _AM29000 _COFF _CRAY _CX_UX _EPI"
835 al="$al _IBMESA _IBMR2 _M88K _M88KBCS_TARGET _POWER"
836 al="$al _MIPSEB _MIPSEL _M_COFF _M_I86 _M_I86SM _M_SYS3"
837 al="$al _M_SYS5 _M_SYSIII _M_SYSV _M_UNIX _M_XENIX _NLS _PGC_ _R3000"
838 al="$al _SYSTYPE_BSD _SYSTYPE_BSD43 _SYSTYPE_SVR4"
839 al="$al _SYSTYPE_SYSV _SYSV3 _U370 _UNICOS"
840 al="$al __386BSD__ __BIG_ENDIAN __BIG_ENDIAN__ __BSD_4_4__"
841 al="$al __DGUX__ __DPX2__ __H3050R __H3050RX"
842 al="$al __LITTLE_ENDIAN __LITTLE_ENDIAN__ __MACH__"
843 al="$al __MIPSEB __MIPSEB__ __MIPSEL __MIPSEL__"
844 al="$al __Next__ __OSF1__ __PARAGON__ __PGC__ __PWB __STDC__"
845 al="$al __SVR4_2__ __UMAXV__"
846 al="$al ____386BSD____ __alpha __alpha__ __amiga"
847 al="$al __bsd4_2 __bsd4_2__ __bsdi__ __convex__"
848 al="$al __host_mips__"
849 al="$al __hp9000s200 __hp9000s300 __hp9000s400 __hp9000s500"
850 al="$al __hp9000s500 __hp9000s700 __hp9000s800"
851 al="$al __hppa __hpux __hp_osf __i286 __i286__ __i386 __i386__"
852 al="$al __i486 __i486__ __i860 __i860__ __ibmesa __ksr1__ __linux__"
853 al="$al __m68k __m68k__ __m88100__ __m88k __m88k__"
854 al="$al __mc68000 __mc68000__ __mc68020 __mc68020__"
855 al="$al __mc68030 __mc68030__ __mc68040 __mc68040__"
856 al="$al __mc88100 __mc88100__ __mips __mips__"
857 al="$al __motorola__ __osf__ __pa_risc __sparc__ __stdc__"
858 al="$al __sun __sun__ __svr3__ __svr4__ __ultrix __ultrix__"
859 al="$al __unix __unix__ __uxpm__ __uxps__ __vax __vax__"
860 al="$al _host_mips _mips _unix"
861 al="$al a29k aegis aix aixpc alliant alpha am29000 amiga ansi ardent"
862 al="$al apollo ardent att386 att3b"
863 al="$al bsd bsd43 bsd4_2 bsd4_3 bsd4_4 bsdi bull"
864 al="$al cadmus clipper concurrent convex cray ctix"
865 al="$al dmert encore gcos gcx gimpel gould"
866 al="$al hbullx20 hcx host_mips hp200 hp300 hp700 hp800"
867 al="$al hp9000 hp9000s300 hp9000s400 hp9000s500"
868 al="$al hp9000s700 hp9000s800 hp9k8 hppa hpux"
869 al="$al i186 i286 i386 i486 i8086"
870 al="$al i80960 i860 iAPX286 ibm ibm032 ibmrt interdata is68k"
871 al="$al ksr1 linux luna luna88k m68k m88100 m88k"
872 al="$al mc300 mc500 mc68000 mc68010 mc68020 mc68030"
873 al="$al mc68040 mc68060 mc68k mc68k32 mc700"
874 al="$al mc88000 mc88100 merlin mert mips mvs n16"
875 al="$al ncl_el ncl_mr"
876 al="$al news1500 news1700 news1800 news1900 news3700"
877 al="$al news700 news800 news900 ns16000 ns32000"
878 al="$al ns32016 ns32332 ns32k nsc32000 os osf"
879 al="$al parisc pc532 pdp11 plexus posix pyr"
880 al="$al riscix riscos scs sequent sgi sinix sony sony_news"
881 al="$al sonyrisc sparc sparclite spectrum stardent stratos"
882 al="$al sun sun3 sun386 svr4 sysV68 sysV88"
883 al="$al titan tower tower32 tower32_200 tower32_600 tower32_700"
884 al="$al tower32_800 tower32_850 tss u370 u3b u3b2 u3b20 u3b200"
885 al="$al u3b20d u3b5 ultrix unix unixpc unos vax venix vms"
886 al="$al xenix z8000"
887
888 : Trailing extension.  Override this in a hint file, if needed.
889 _exe=''
890 : Extra object files, if any, needed on this platform.
891 archobjs=''
892 groupstype=''
893 : default library list
894 libswanted=''
895 : some systems want to use only the non-versioned libso:s
896 ignore_versioned_solibs=''
897 : full support for void wanted by default
898 defvoidused=15
899
900 : set useposix=false in your hint file to disable the POSIX extension.
901 useposix=true
902 : set useopcode=false in your hint file to disable the Opcode extension.
903 useopcode=true
904 : set usemultiplicity on the Configure command line to enable multiplicity.
905 : set usethreads on the Configure command line to enable threads.
906 : List of libraries we want.
907 : If anyone needs -lnet, put it in a hint file.
908 libswanted='sfio socket inet nsl nm ndbm gdbm dbm db malloc dl'
909 libswanted="$libswanted dld ld sun m c cposix posix ndir dir crypt"
910 libswanted="$libswanted ucb bsd BSD PW x"
911 : We probably want to search /usr/shlib before most other libraries.
912 : This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist.
913 glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'`
914 glibpth="/usr/shlib $glibpth"
915 : Do not use vfork unless overridden by a hint file.
916 usevfork=false
917
918 : Find the basic shell for Bourne shell scripts
919 case "$sh" in
920 '')
921         case "$SYSTYPE" in
922         *bsd*|sys5*) xxx="/$SYSTYPE/bin/sh";;
923         *) xxx='/bin/sh';;
924         esac
925         if test -f "$xxx"; then
926                 sh="$xxx"
927         else
928                 : Build up a list and do a single loop so we can 'break' out.
929                 pth=`echo $PATH | sed -e "s/$p_/ /g"`
930                 for xxx in sh bash ksh pdksh ash; do
931                         for p in $pth; do
932                                 try="$try ${p}/${xxx}"
933                         done
934                 done
935                 for xxx in $try; do
936                         if test -f "$xxx"; then
937                                 sh="$xxx";
938                                 break
939                         elif test -f "$xxx.exe"; then
940                                 sh="$xxx";
941                                 break
942                         fi
943                 done
944         fi
945         ;;
946 esac
947
948 case "$sh" in
949 '')     cat <<EOM >&2
950 $me:  Fatal Error:  I can't find a Bourne Shell anywhere.  
951
952 Usually it's in /bin/sh.  How did you even get this far?
953 Please contact me (Jarkko Hietaniemi) at jhi@iki.fi and 
954 we'll try to straighten this all out.
955 EOM
956         exit 1
957         ;;
958 esac
959
960 : see if sh knows # comments
961 if `$sh -c '#' >/dev/null 2>&1`; then
962         shsharp=true
963         spitshell=cat
964         xcat=/bin/cat
965         test -f $xcat || xcat=/usr/bin/cat
966         echo "#!$xcat" >try
967         $eunicefix try
968         chmod +x try
969         ./try > today
970         if test -s today; then
971                 sharpbang='#!'
972         else
973                 echo "#! $xcat" > try
974                 $eunicefix try
975                 chmod +x try
976                 ./try > today
977                 if test -s today; then
978                         sharpbang='#! '
979                 else
980                         sharpbang=': use '
981                 fi
982         fi
983 else
984         echo " "
985         echo "Your $sh doesn't grok # comments--I will strip them later on."
986         shsharp=false
987         cd ..
988         echo "exec grep -v '^[  ]*#'" >spitshell
989         chmod +x spitshell
990         $eunicefix spitshell
991         spitshell=`pwd`/spitshell
992         cd UU
993         echo "I presume that if # doesn't work, #! won't work either!"
994         sharpbang=': use '
995 fi
996 rm -f try today
997
998 : figure out how to guarantee sh startup
999 case "$startsh" in
1000 '') startsh=${sharpbang}${sh} ;;
1001 *)
1002 esac
1003 cat >try <<EOSS
1004 $startsh
1005 set abc
1006 test "$?abc" != 1
1007 EOSS
1008
1009 chmod +x try
1010 $eunicefix try
1011 if ./try; then
1012         : echo "Yup, it does."
1013 else
1014         echo "Hmm... '$startsh' does not guarantee sh startup..."
1015         echo "You may have to fix up the shell scripts to make sure $sh runs them."
1016 fi
1017 rm -f try
1018
1019
1020 : Save command line options in file UU/cmdline.opt for later use in
1021 : generating config.sh.
1022 cat > cmdline.opt <<EOSH
1023 # Configure command line arguments.
1024 config_arg0='$0'
1025 config_args='$*'
1026 config_argc=$#
1027 EOSH
1028 argn=1
1029 for arg in "$@"; do
1030         cat >>cmdline.opt <<EOSH
1031 config_arg$argn='$arg'
1032 EOSH
1033         argn=`expr $argn + 1`
1034 done
1035
1036 : produce awk script to parse command line options
1037 cat >options.awk <<'EOF'
1038 BEGIN {
1039         optstr = "dD:eEf:hKOrsSU:V";    # getopt-style specification
1040
1041         len = length(optstr);
1042         for (i = 1; i <= len; i++) {
1043                 c = substr(optstr, i, 1);
1044                 if (i < len) a = substr(optstr, i + 1, 1); else a = "";
1045                 if (a == ":") {
1046                         arg[c] = 1;
1047                         i++;
1048                 }
1049                 opt[c] = 1;
1050         }
1051 }
1052 {
1053         expect = 0;
1054         str = $0;
1055         if (substr(str, 1, 1) != "-") {
1056                 printf("'%s'\n", str);
1057                 next;
1058         }
1059         len = length($0);
1060         for (i = 2; i <= len; i++) {
1061                 c = substr(str, i, 1);
1062                 if (!opt[c]) {
1063                         printf("-%s\n", substr(str, i));
1064                         next;
1065                 }
1066                 printf("-%s\n", c);
1067                 if (arg[c]) {
1068                         if (i < len)
1069                                 printf("'%s'\n", substr(str, i + 1));
1070                         else
1071                                 expect = 1;
1072                         next;
1073                 }
1074         }
1075 }
1076 END {
1077         if (expect)
1078                 print "?";
1079 }
1080 EOF
1081
1082 : process the command line options
1083 set X `for arg in "$@"; do echo "X$arg"; done |
1084         sed -e s/X// | awk -f options.awk`
1085 eval "set $*"
1086 shift
1087 rm -f options.awk
1088
1089 : set up default values
1090 fastread=''
1091 reuseval=false
1092 config_sh=''
1093 alldone=''
1094 error=''
1095 silent=''
1096 extractsh=''
1097 override=''
1098 knowitall=''
1099 rm -f optdef.sh
1100 cat >optdef.sh <<EOS
1101 $startsh
1102 EOS
1103
1104
1105 : option parsing
1106 while test $# -gt 0; do
1107         case "$1" in
1108         -d) shift; fastread=yes;;
1109         -e) shift; alldone=cont;;
1110         -f)
1111                 shift
1112                 cd ..
1113                 if test -r "$1"; then
1114                         config_sh="$1"
1115                 else
1116                         echo "$me: cannot read config file $1." >&2
1117                         error=true
1118                 fi
1119                 cd UU
1120                 shift;;
1121         -h) shift; error=true;;
1122         -r) shift; reuseval=true;;
1123         -s) shift; silent=true; realsilent=true;;
1124         -E) shift; alldone=exit;;
1125         -K) shift; knowitall=true;;
1126         -O) shift; override=true;;
1127         -S) shift; silent=true; extractsh=true;;
1128         -D)
1129                 shift
1130                 case "$1" in
1131                 *=)
1132                         echo "$me: use '-U symbol=', not '-D symbol='." >&2
1133                         echo "$me: ignoring -D $1" >&2
1134                         ;;
1135                 *=*) echo "$1" | \
1136                                 sed -e "s/'/'\"'\"'/g" -e "s/=\(.*\)/='\1'/" >> optdef.sh;;
1137                 *) echo "$1='define'" >> optdef.sh;;
1138                 esac
1139                 shift
1140                 ;;
1141         -U)
1142                 shift
1143                 case "$1" in
1144                 *=) echo "$1" >> optdef.sh;;
1145                 *=*)
1146                         echo "$me: use '-D symbol=val', not '-U symbol=val'." >&2
1147                         echo "$me: ignoring -U $1" >&2
1148                         ;;
1149                 *) echo "$1='undef'" >> optdef.sh;;
1150                 esac
1151                 shift
1152                 ;;
1153         -V) echo "$me generated by metaconfig 3.0 PL70." >&2
1154                 exit 0;;
1155         --) break;;
1156         -*) echo "$me: unknown option $1" >&2; shift; error=true;;
1157         *) break;;
1158         esac
1159 done
1160
1161 case "$error" in
1162 true)
1163         cat >&2 <<EOM
1164 Usage: $me [-dehrsEKOSV] [-f config.sh] [-D symbol] [-D symbol=value]
1165                  [-U symbol] [-U symbol=]
1166   -d : use defaults for all answers.
1167   -e : go on without questioning past the production of config.sh.
1168   -f : specify an alternate default configuration file.
1169   -h : print this help message and exit (with an error status).
1170   -r : reuse C symbols value if possible (skips costly nm extraction).
1171   -s : silent mode, only echoes questions and essential information.
1172   -D : define symbol to have some value:
1173          -D symbol         symbol gets the value 'define'
1174          -D symbol=value   symbol gets the value 'value'
1175   -E : stop at the end of questions, after having produced config.sh.
1176   -K : do not use unless you know what you are doing.
1177   -O : let -D and -U override definitions from loaded configuration file.
1178   -S : perform variable substitutions on all .SH files (can mix with -f)
1179   -U : undefine symbol:
1180          -U symbol    symbol gets the value 'undef'
1181          -U symbol=   symbol gets completely empty
1182   -V : print version number and exit (with a zero status).
1183 EOM
1184         exit 1
1185         ;;
1186 esac
1187
1188 : Sanity checks
1189 case "$fastread$alldone" in
1190 yescont|yesexit) ;;
1191 *)
1192         if test ! -t 0; then
1193                 echo "Say 'sh Configure', not 'sh <Configure'"
1194                 exit 1
1195         fi
1196         ;;
1197 esac
1198
1199 exec 4>&1
1200 case "$silent" in
1201 true) exec 1>/dev/null;;
1202 esac
1203
1204 : run the defines and the undefines, if any, but leave the file out there...
1205 touch optdef.sh
1206 . ./optdef.sh
1207
1208 : set package name
1209 package=perl5
1210 first=`echo $package | sed -e 's/^\(.\).*/\1/'`
1211 last=`echo $package | sed -e 's/^.\(.*\)/\1/'`
1212 case "`echo AbyZ | tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
1213 ABYZ) spackage=`echo $first | tr '[:lower:]' '[:upper:]'`$last;;
1214 *) spackage=`echo $first | tr '[a-z]' '[A-Z]'`$last;;
1215 esac
1216
1217 : Some greps do not return status, grrr.
1218 echo "grimblepritz" >grimble
1219 if grep blurfldyick grimble >/dev/null 2>&1 ; then
1220         contains=contains
1221 elif grep grimblepritz grimble >/dev/null 2>&1 ; then
1222         contains=grep
1223 else
1224         contains=contains
1225 fi
1226 rm -f grimble
1227 : the following should work in any shell
1228 case "$contains" in
1229 contains*)
1230         echo " "
1231         echo "AGH!  Grep doesn't return a status.  Attempting remedial action."
1232         cat >contains <<'EOSS'
1233 grep "$1" "$2" >.greptmp && cat .greptmp && test -s .greptmp
1234 EOSS
1235 chmod +x contains
1236 esac
1237
1238 : Find the path to the source tree
1239 case "$src" in
1240 '') case "$0" in
1241     */*) src=`echo $0 | sed -e 's%/[^/][^/]*$%%'`;;
1242     *)   src='.';;
1243     esac;;
1244 esac
1245 case "$src" in
1246 '')     src=/
1247         rsrc=/
1248         ;;
1249 /*) rsrc="$src";;
1250 *) rsrc="../$src";;
1251 esac
1252 if test -f $rsrc/Configure && \
1253         $contains "^package=$package$" $rsrc/Configure >/dev/null 2>&1
1254 then
1255    : found it, so we are ok.
1256 else
1257         rsrc=''
1258         for src in . .. ../.. ../../.. ../../../..; do
1259                 if test -f ../$src/Configure && \
1260                         $contains "^package=$package$" ../$src/Configure >/dev/null 2>&1
1261                 then
1262                         rsrc=../$src
1263                         break
1264                 fi
1265         done
1266 fi
1267 case "$rsrc" in
1268 '')
1269         cat <<EOM >&4
1270
1271 Sorry, I can't seem to locate the source dir for $package.  Please start
1272 Configure with an explicit path -- i.e. /some/path/Configure.
1273
1274 EOM
1275         exit 1
1276         ;;
1277 ../.)   rsrc='..';;
1278 *)
1279         echo " "
1280         echo "Sources for $package found in \"$src\"." >&4
1281         ;;
1282 esac
1283
1284 : script used to extract .SH files with variable substitutions
1285 cat >extract <<'EOS'
1286 CONFIG=true
1287 echo "Doing variable substitutions on .SH files..."
1288 if test -f $src/MANIFEST; then
1289         set x `awk '{print $1}' <$src/MANIFEST | grep '\.SH$'`
1290 else
1291         echo "(Looking for .SH files under the source directory.)"
1292         set x `(cd $src; find . -name "*.SH" -print)`
1293 fi
1294 shift
1295 case $# in
1296 0) set x `(cd $src; echo *.SH)`; shift;;
1297 esac
1298 if test ! -f $src/$1; then
1299         shift
1300 fi
1301 mkdir_p='
1302 name=$1;
1303 create="";
1304 while test $name; do
1305         if test ! -d "$name"; then
1306                 create="$name $create";
1307                 name=`echo $name | sed -e "s|^[^/]*$||"`;
1308                 name=`echo $name | sed -e "s|\(.*\)/.*|\1|"`;
1309         else
1310                 name="";
1311         fi;
1312 done;
1313 for file in $create; do
1314         mkdir $file;
1315 done
1316 '
1317 for file in $*; do
1318         case "$src" in
1319         ".")
1320                 case "$file" in
1321                 */*)
1322                         dir=`expr X$file : 'X\(.*\)/'`
1323                         file=`expr X$file : 'X.*/\(.*\)'`
1324                         (cd $dir && . ./$file)
1325                         ;;
1326                 *)
1327                         . ./$file
1328                         ;;
1329                 esac
1330                 ;;
1331         *)
1332                 case "$file" in
1333                 */*)
1334                         dir=`expr X$file : 'X\(.*\)/'`
1335                         file=`expr X$file : 'X.*/\(.*\)'`
1336                         (set x $dir; shift; eval $mkdir_p)
1337                         sh <$src/$dir/$file
1338                         ;;
1339                 *)
1340                         sh <$src/$file
1341                         ;;
1342                 esac
1343                 ;;
1344         esac
1345 done
1346 if test -f $src/config_h.SH; then
1347         if test ! -f config.h; then
1348         : oops, they left it out of MANIFEST, probably, so do it anyway.
1349         . $src/config_h.SH
1350         fi
1351 fi
1352 EOS
1353
1354 : extract files and exit if asked to do so
1355 case "$extractsh" in
1356 true)
1357         case "$realsilent" in
1358         true) ;;
1359         *) exec 1>&4;;
1360         esac
1361         case "$config_sh" in
1362         '') config_sh='config.sh';;
1363         esac
1364         echo " "
1365         echo "Fetching answers from $config_sh..."
1366         cd ..
1367         . $config_sh
1368         test "$override" && . ./optdef.sh
1369         echo " "
1370         . UU/extract
1371         rm -rf UU
1372         echo "Done."
1373         exit 0
1374         ;;
1375 esac
1376
1377 : Eunice requires " " instead of "", can you believe it
1378 echo " "
1379 : Here we go...
1380 echo "Beginning of configuration questions for $package."
1381
1382 trap 'echo " "; test -d ../UU && rm -rf X $rmlist; exit 1' 1 2 3 15
1383
1384 : first determine how to suppress newline on echo command
1385 echo " "
1386 echo "Checking echo to see how to suppress newlines..."
1387 (echo "hi there\c" ; echo " ") >.echotmp
1388 if $contains c .echotmp >/dev/null 2>&1 ; then
1389         echo "...using -n."
1390         n='-n'
1391         c=''
1392 else
1393         cat <<'EOM'
1394 ...using \c
1395 EOM
1396         n=''
1397         c='\c'
1398 fi
1399 echo $n "The star should be here-->$c"
1400 echo '*'
1401 rm -f .echotmp
1402
1403 : Now test for existence of everything in MANIFEST
1404 echo " "
1405 if test -f $rsrc/MANIFEST; then
1406         echo "First let's make sure your kit is complete.  Checking..." >&4
1407         awk '$1 !~ /PACK[A-Z]+/ {print $1}' $rsrc/MANIFEST | split -50
1408         rm -f missing
1409         tmppwd=`pwd`
1410         for filelist in x??; do
1411                 (cd $rsrc; ls `cat $tmppwd/$filelist` >/dev/null 2>>$tmppwd/missing)
1412         done
1413         if test -s missing; then
1414                 cat missing >&4
1415                 cat >&4 <<'EOM'
1416
1417 THIS PACKAGE SEEMS TO BE INCOMPLETE.
1418
1419 You have the option of continuing the configuration process, despite the
1420 distinct possibility that your kit is damaged, by typing 'y'es.  If you
1421 do, don't blame me if something goes wrong.  I advise you to type 'n'o
1422 and contact the author (jhi@iki.fi).
1423
1424 EOM
1425                 echo $n "Continue? [n] $c" >&4
1426                 read ans
1427                 case "$ans" in
1428                 y*)
1429                         echo "Continuing..." >&4
1430                         rm -f missing
1431                         ;;
1432                 *)
1433                         echo "ABORTING..." >&4
1434                         kill $$
1435                         ;;
1436                 esac
1437         else
1438                 echo "Looks good..."
1439         fi
1440 else
1441         echo "There is no MANIFEST file.  I hope your kit is complete !"
1442 fi
1443 rm -f missing x??
1444
1445 echo " "
1446 : Find the appropriate value for a newline for tr
1447 if test -n "$DJGPP"; then
1448        trnl='\012'
1449 fi
1450 if test X"$trnl" = X; then
1451         case "`echo foo|tr '\n' x 2>/dev/null`" in
1452         foox) trnl='\n' ;;
1453         esac
1454 fi
1455 if test X"$trnl" = X; then
1456         case "`echo foo|tr '\012' x 2>/dev/null`" in
1457         foox) trnl='\012' ;;
1458         esac
1459 fi
1460 if test X"$trnl" = X; then
1461         cat <<EOM >&2
1462
1463 $me: Fatal Error: cannot figure out how to translate newlines with 'tr'.
1464
1465 EOM
1466         exit 1
1467 fi
1468
1469 : compute the number of columns on the terminal for proper question formatting
1470 case "$COLUMNS" in
1471 '') COLUMNS='80';;
1472 esac
1473
1474 : set up the echo used in my read
1475 myecho="case \"\$xxxm\" in
1476 '') echo $n \"\$rp $c\" >&4;;
1477 *) case \"\$rp\" in
1478         '') echo $n \"[\$xxxm] $c\";;
1479         *)
1480                 if test \`echo \"\$rp [\$xxxm]  \" | wc -c\` -ge $COLUMNS; then
1481                         echo \"\$rp\" >&4
1482                         echo $n \"[\$xxxm] $c\" >&4
1483                 else
1484                         echo $n \"\$rp [\$xxxm] $c\" >&4
1485                 fi
1486                 ;;
1487         esac;;
1488 esac"
1489
1490 : now set up to do reads with possible shell escape and default assignment
1491 cat <<EOSC >myread
1492 $startsh
1493 xxxm=\$dflt
1494 $myecho
1495 ans='!'
1496 case "\$fastread" in
1497 yes) case "\$dflt" in
1498         '') ;;
1499         *) ans='';
1500                 case "\$silent-\$rp" in
1501                 true-) ;;
1502                 *) echo " " >&4;;
1503                 esac;;
1504         esac;;
1505 *) case "\$silent" in
1506         true) case "\$rp" in
1507                 '') ans='';;
1508                 esac;;
1509         esac;;
1510 esac
1511 while expr "X\$ans" : "X!" >/dev/null; do
1512         read answ
1513         set x \$xxxm
1514         shift
1515         aok=''; eval "ans=\\"\$answ\\"" && aok=y
1516         case  "\$answ" in
1517         "!")
1518                 sh 1>&4
1519                 echo " "
1520                 $myecho
1521                 ;;
1522         !*)
1523                 set x \`expr "X\$ans" : "X!\(.*\)\$"\`
1524                 shift
1525                 sh 1>&4 -c "\$*"
1526                 echo " "
1527                 $myecho
1528                 ;;
1529         "\$ans")
1530                 case "\$ans" in
1531                 \\&*)
1532                         set x \`expr "X\$ans" : "X&\(.*\)\$"\`
1533                         shift
1534                         case "\$1" in
1535                         -d)
1536                                 fastread=yes
1537                                 echo "(OK, I'll run with -d after this question.)" >&4
1538                                 ;;
1539                         -*)
1540                                 echo "*** Sorry, \$1 not supported yet." >&4
1541                                 ;;
1542                         esac
1543                         $myecho
1544                         ans=!
1545                         ;;
1546                 esac;;
1547         *)
1548                 case "\$aok" in
1549                 y)
1550                         echo "*** Substitution done -- please confirm."
1551                         xxxm="\$ans"
1552                         ans=\`echo $n "\$ans$c" | tr '$trnl' ' '\`
1553                         xxxm="\$ans"
1554                         ans=!
1555                         ;;
1556                 *)
1557                         echo "*** Error -- try again."
1558                         ans=!
1559                         ;;
1560                 esac
1561                 $myecho
1562                 ;;
1563         esac
1564         case "\$ans\$xxxm\$nostick" in
1565         '')
1566                 ans=!
1567                 $myecho
1568                 ;;
1569         esac
1570 done
1571 case "\$ans" in
1572 '') ans="\$xxxm";;
1573 esac
1574 EOSC
1575
1576 : create .config dir to save info across Configure sessions
1577 test -d ../.config || mkdir ../.config
1578 cat >../.config/README <<EOF
1579 This directory created by Configure to save information that should
1580 persist across sessions for $package.
1581
1582 You may safely delete it if you wish.
1583 EOF
1584
1585 : general instructions
1586 needman=true
1587 firsttime=true
1588 user=`(logname) 2>/dev/null`
1589 case "$user" in
1590 '') user=`whoami 2>&1`;;
1591 esac
1592 if $contains "^$user\$" ../.config/instruct >/dev/null 2>&1; then
1593         firsttime=false
1594         echo " "
1595         rp='Would you like to see the instructions?'
1596         dflt=n
1597         . ./myread
1598         case "$ans" in
1599         [yY]*) ;;
1600         *) needman=false;;
1601         esac
1602 fi
1603 if $needman; then
1604         cat <<EOH
1605
1606 This installation shell script will examine your system and ask you questions
1607 to determine how the perl5 package should be installed. If you get
1608 stuck on a question, you may use a ! shell escape to start a subshell or
1609 execute a command.  Many of the questions will have default answers in square
1610 brackets; typing carriage return will give you the default.
1611
1612 On some of the questions which ask for file or directory names you are allowed
1613 to use the ~name construct to specify the login directory belonging to "name",
1614 even if you don't have a shell which knows about that.  Questions where this is
1615 allowed will be marked "(~name ok)".
1616
1617 EOH
1618         rp=''
1619         dflt='Type carriage return to continue'
1620         . ./myread
1621         cat <<'EOH'
1622
1623 The prompter used in this script allows you to use shell variables and
1624 backticks in your answers.  You may use $1, $2, etc...  to refer to the words
1625 in the default answer, as if the default line was a set of arguments given to a
1626 script shell.  This means you may also use $* to repeat the whole default line,
1627 so you do not have to re-type everything to add something to the default.
1628
1629 Everytime there is a substitution, you will have to confirm.  If there is an
1630 error (e.g. an unmatched backtick), the default answer will remain unchanged
1631 and you will be prompted again.
1632
1633 If you are in a hurry, you may run 'Configure -d'.  This will bypass nearly all
1634 the questions and use the computed defaults (or the previous answers if there
1635 was already a config.sh file). Type 'Configure -h' for a list of options.
1636 You may also start interactively and then answer '& -d' at any prompt to turn
1637 on the non-interactive behaviour for the remainder of the execution.
1638
1639 EOH
1640         . ./myread
1641         cat <<EOH
1642
1643 Much effort has been expended to ensure that this shell script will run on any
1644 Unix system.  If despite that it blows up on yours, your best bet is to edit
1645 Configure and run it again.  If you can't run Configure for some reason,
1646 you'll have to generate a config.sh file by hand.  Whatever problems you
1647 have, let me (jhi@iki.fi) know how I blew it.
1648
1649 This installation script affects things in two ways:
1650
1651 1) it may do direct variable substitutions on some of the files included
1652    in this kit.
1653 2) it builds a config.h file for inclusion in C programs.  You may edit
1654    any of these files as the need arises after running this script.
1655
1656 If you make a mistake on a question, there is no easy way to back up to it
1657 currently.  The easiest thing to do is to edit config.sh and rerun all the SH
1658 files.  Configure will offer to let you do this before it runs the SH files.
1659
1660 EOH
1661         dflt='Type carriage return to continue'
1662         . ./myread
1663         case "$firsttime" in
1664         true) echo $user >>../.config/instruct;;
1665         esac
1666 fi
1667
1668 : find out where common programs are
1669 echo " "
1670 echo "Locating common programs..." >&4
1671 cat <<EOSC >loc
1672 $startsh
1673 case \$# in
1674 0) exit 1;;
1675 esac
1676 thing=\$1
1677 shift
1678 dflt=\$1
1679 shift
1680 for dir in \$*; do
1681         case "\$thing" in
1682         .)
1683         if test -d \$dir/\$thing; then
1684                 echo \$dir
1685                 exit 0
1686         fi
1687         ;;
1688         *)
1689         for thisthing in \$dir/\$thing; do
1690                 : just loop through to pick last item
1691         done
1692         if test -f \$thisthing; then
1693                 echo \$thisthing
1694                 exit 0
1695         elif test -f \$dir/\$thing.exe; then
1696                 if test -n "$DJGPP"; then
1697                         echo \$dir/\$thing.exe
1698                 else
1699                         : on Eunice apparently
1700                         echo \$dir/\$thing
1701                 fi
1702                 exit 0
1703         fi
1704         ;;
1705         esac
1706 done
1707 echo \$dflt
1708 exit 1
1709 EOSC
1710 chmod +x loc
1711 $eunicefix loc
1712 loclist="
1713 awk
1714 cat
1715 comm
1716 cp
1717 echo
1718 expr
1719 grep
1720 ls
1721 make
1722 mkdir
1723 rm
1724 sed
1725 sort
1726 touch
1727 tr
1728 uniq
1729 "
1730 trylist="
1731 Mcc
1732 ar
1733 byacc
1734 cpp
1735 csh
1736 date
1737 egrep
1738 gzip
1739 less
1740 ln
1741 more
1742 nm
1743 nroff
1744 pg
1745 tee
1746 test
1747 uname
1748 zip
1749 "
1750 pth=`echo $PATH | sed -e "s/$p_/ /g"`
1751 pth="$pth /lib /usr/lib"
1752 for file in $loclist; do
1753         eval xxx=\$$file
1754         case "$xxx" in
1755         /*|?:[\\/]*)
1756                 if test -f "$xxx"; then
1757                         : ok
1758                 else
1759                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
1760                         xxx=`./loc $file $file $pth`
1761                 fi
1762                 ;;
1763         '') xxx=`./loc $file $file $pth`;;
1764         *) xxx=`./loc $xxx $xxx $pth`;;
1765         esac
1766         eval $file=$xxx
1767         eval _$file=$xxx
1768         case "$xxx" in
1769         /*)
1770                 echo $file is in $xxx.
1771                 ;;
1772         ?:[\\/]*)
1773                 echo $file is in $xxx.
1774                 ;;
1775         *)
1776                 echo "I don't know where '$file' is, and my life depends on it." >&4
1777                 echo "Go find a public domain implementation or fix your PATH setting!" >&4
1778                 exit 1
1779                 ;;
1780         esac
1781 done
1782 echo " "
1783 echo "Don't worry if any of the following aren't found..."
1784 say=offhand
1785 for file in $trylist; do
1786         eval xxx=\$$file
1787         case "$xxx" in
1788         /*|?:[\\/]*)
1789                 if test -f "$xxx"; then
1790                         : ok
1791                 else
1792                         echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
1793                         xxx=`./loc $file $file $pth`
1794                 fi
1795                 ;;
1796         '') xxx=`./loc $file $file $pth`;;
1797         *) xxx=`./loc $xxx $xxx $pth`;;
1798         esac
1799         eval $file=$xxx
1800         eval _$file=$xxx
1801         case "$xxx" in
1802         /*)
1803                 echo $file is in $xxx.
1804                 ;;
1805         ?:[\\/]*)
1806                 echo $file is in $xxx.
1807                 ;;
1808         *)
1809                 echo "I don't see $file out there, $say."
1810                 say=either
1811                 ;;
1812         esac
1813 done
1814 case "$egrep" in
1815 egrep)
1816         echo "Substituting grep for egrep."
1817         egrep=$grep
1818         ;;
1819 esac
1820 case "$ln" in
1821 ln)
1822         echo "Substituting cp for ln."
1823         ln=$cp
1824         ;;
1825 esac
1826 case "$test" in
1827 test)
1828         echo "Hopefully test is built into your sh."
1829         ;;
1830 *)
1831         if `sh -c "PATH= test true" >/dev/null 2>&1`; then
1832                 echo "Using the test built into your sh."
1833                 test=test
1834                 _test=test
1835         fi
1836         ;;
1837 esac
1838 case "$echo" in
1839 echo)
1840         echo "Hopefully echo is built into your sh."
1841         ;;
1842 '') ;;
1843 *)
1844         echo " "
1845 echo "Checking compatibility between $echo and builtin echo (if any)..." >&4
1846         $echo $n "hi there$c" >foo1
1847         echo $n "hi there$c" >foo2
1848         if cmp foo1 foo2 >/dev/null 2>&1; then
1849                 echo "They are compatible.  In fact, they may be identical."
1850         else
1851                 case "$n" in
1852                 '-n') n='' c='\c';;
1853                 *) n='-n' c='';;
1854                 esac
1855                 cat <<FOO
1856 They are not compatible!  You are probably running ksh on a non-USG system.
1857 I'll have to use $echo instead of the builtin, since Bourne shell doesn't
1858 have echo built in and we may have to run some Bourne shell scripts.  That
1859 means I'll have to use '$n$c' to suppress newlines now.  Life is ridiculous.
1860
1861 FOO
1862                 $echo $n "The star should be here-->$c"
1863                 $echo "*"
1864         fi
1865         $rm -f foo1 foo2
1866         ;;
1867 esac
1868
1869 : determine whether symbolic links are supported
1870 echo " "
1871 $touch blurfl
1872 if $ln -s blurfl sym > /dev/null 2>&1 ; then
1873         echo "Symbolic links are supported." >&4
1874         lns="$ln -s"
1875 else
1876         echo "Symbolic links are NOT supported." >&4
1877         lns="$ln"
1878 fi
1879 $rm -f blurfl sym
1880
1881 : see whether [:lower:] and [:upper:] are supported character classes
1882 echo " "
1883 case "`echo AbyZ | $tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
1884 ABYZ)
1885         echo "Good, your tr supports [:lower:] and [:upper:] to convert case." >&4
1886         up='[:upper:]'
1887         low='[:lower:]'
1888         ;;
1889 *)      # There is a discontinuity in EBCDIC between 'I' and 'J'
1890         # (0xc9 and 0xd1), therefore that is a nice testing point.
1891         if test "X$up" = X -o "X$low" = X; then
1892             case "`echo IJ | $tr '[I-J]' '[i-j]' 2>/dev/null`" in
1893             ij) up='[A-Z]'
1894                 low='[a-z]'
1895                 ;;
1896             esac
1897         fi
1898         if test "X$up" = X -o "X$low" = X; then
1899             case "`echo IJ | $tr I-J i-j 2>/dev/null`" in
1900             ij) up='A-Z'
1901                 low='a-z'
1902                 ;;
1903             esac
1904         fi
1905         if test "X$up" = X -o "X$low" = X; then
1906             case "`echo IJ | od -x 2>/dev/null`" in
1907             *C9D1*|*c9d1*)
1908                 echo "Hey, this might be EBCDIC." >&4
1909                 if test "X$up" = X -o "X$low" = X; then
1910                     case "`echo IJ | $tr '[A-IJ-RS-Z]' '[a-ij-rs-z]' 2>/dev/null`" in
1911                     ij) up='[A-IJ-RS-Z]'
1912                         low='[a-ij-rs-z]'
1913                         ;;
1914                     esac
1915                 fi
1916                 if test "X$up" = X -o "X$low" = X; then
1917                     case "`echo IJ | $tr A-IJ-RS-Z a-ij-rs-z 2>/dev/null`" in
1918                     ij) up='A-IJ-RS-Z'
1919                         low='a-ij-rs-z'
1920                         ;;
1921                     esac
1922                 fi
1923                 ;;
1924             esac
1925         fi
1926 esac
1927 case "`echo IJ | $tr \"$up\" \"$low\" 2>/dev/null`" in
1928 ij)
1929     echo "Using $up and $low to convert case." >&4
1930     ;;
1931 *)
1932     echo "I don't know how to translate letters from upper to lower case." >&4
1933     echo "Your tr is not acting any way I know of." >&4
1934     exit 1
1935     ;;
1936 esac
1937 : set up the translation script tr, must be called with ./tr of course
1938 cat >tr <<EOSC
1939 $startsh
1940 case "\$1\$2" in
1941 '[A-Z][a-z]') exec $tr '$up' '$low';;
1942 '[a-z][A-Z]') exec $tr '$low' '$up';;
1943 esac
1944 exec $tr "\$@"
1945 EOSC
1946 chmod +x tr
1947 $eunicefix tr
1948
1949 : Try to determine whether config.sh was made on this system
1950 case "$config_sh" in
1951 '')
1952 myuname=`( ($uname -a) 2>/dev/null || hostname) 2>&1`
1953 # tr '[A-Z]' '[a-z]' would not work in EBCDIC
1954 # because the A-Z/a-z are not consecutive.
1955 myuname=`echo $myuname | $sed -e 's/^[^=]*=//' -e 's/\///g' | \
1956         ./tr '[A-Z]' '[a-z]' | $tr $trnl ' '`
1957 newmyuname="$myuname"
1958 dflt=n
1959 case "$knowitall" in
1960 '')
1961         if test -f ../config.sh; then
1962                 if $contains myuname= ../config.sh >/dev/null 2>&1; then
1963                         eval "`grep myuname= ../config.sh`"
1964                 fi
1965                 if test "X$myuname" = "X$newmyuname"; then
1966                         dflt=y
1967                 fi
1968         fi
1969         ;;
1970 *) dflt=y;;
1971 esac
1972
1973 : Get old answers from old config file if Configure was run on the
1974 : same system, otherwise use the hints.
1975 hint=default
1976 cd ..
1977 if test -f config.sh; then
1978         echo " "
1979         rp="I see a config.sh file.  Shall I use it to set the defaults?"
1980         . UU/myread
1981         case "$ans" in
1982         n*|N*) echo "OK, I'll ignore it."; mv config.sh config.sh.old;;
1983         *)  echo "Fetching default answers from your old config.sh file..." >&4
1984                 tmp_n="$n"
1985                 tmp_c="$c"
1986                 tmp_sh="$sh"
1987                 . ./config.sh
1988                 cp config.sh UU
1989                 n="$tmp_n"
1990                 c="$tmp_c"
1991                 : Older versions did not always set $sh.  Catch re-use of such
1992                 : an old config.sh.
1993                 case "$sh" in
1994                 '') sh="$tmp_sh" ;;
1995                 esac
1996                 hint=previous
1997                 ;;
1998         esac
1999 fi
2000 if test ! -f config.sh; then
2001         $cat <<EOM
2002
2003 First time through, eh?  I have some defaults handy for some systems
2004 that need some extra help getting the Configure answers right:
2005
2006 EOM
2007         (cd $src/hints; ls -C *.sh) | $sed 's/\.sh/   /g' >&4
2008         dflt=''
2009         : Half the following guesses are probably wrong... If you have better
2010         : tests or hints, please send them to jhi@iki.fi
2011         : The metaconfig authors would also appreciate a copy...
2012         $test -f /irix && osname=irix
2013         $test -f /xenix && osname=sco_xenix
2014         $test -f /dynix && osname=dynix
2015         $test -f /dnix && osname=dnix
2016         $test -f /lynx.os && osname=lynxos
2017         $test -f /unicos && osname=unicos && osvers=`$uname -r`
2018         $test -f /unicosmk.ar && osname=unicosmk && osvers=`$uname -r`
2019         $test -f /bin/mips && /bin/mips && osname=mips
2020         $test -d /NextApps && set X `hostinfo | grep 'NeXT Mach.*:' | \
2021                 $sed -e 's/://' -e 's/\./_/'` && osname=next && osvers=$4
2022         $test -d /usr/apollo/bin && osname=apollo
2023         $test -f /etc/saf/_sactab && osname=svr4
2024         $test -d /usr/include/minix && osname=minix
2025         if $test -d /MachTen -o -d /MachTen_Folder; then
2026                 osname=machten
2027                 if $test -x /sbin/version; then
2028                         osvers=`/sbin/version | $awk '{print $2}' |
2029                         $sed -e 's/[A-Za-z]$//'`
2030                 elif $test -x /usr/etc/version; then
2031                         osvers=`/usr/etc/version | $awk '{print $2}' |
2032                         $sed -e 's/[A-Za-z]$//'`
2033                 else
2034                         osvers="$2.$3"
2035                 fi
2036         fi
2037        $test -f /sys/posix.dll &&
2038                $test -f /usr/bin/what &&
2039                set X `/usr/bin/what /sys/posix.dll` &&
2040                $test "$3" = UWIN &&
2041                osname=uwin &&
2042                osvers="$5"
2043         if $test -f $uname; then
2044                 set X $myuname
2045                 shift
2046
2047                 case "$5" in
2048                 fps*) osname=fps ;;
2049                 mips*)
2050                         case "$4" in
2051                         umips) osname=umips ;;
2052                         *) osname=mips ;;
2053                         esac;;
2054                 [23]100) osname=mips ;;
2055                 next*) osname=next ;;
2056                 i386*)
2057                         if $test -f /etc/kconfig; then
2058                                 osname=isc
2059                                 if test "$lns" = "ln -s"; then
2060                                         osvers=4
2061                                 elif $contains _SYSV3 /usr/include/stdio.h > /dev/null 2>&1 ; then
2062                                         osvers=3
2063                                 elif $contains _POSIX_SOURCE /usr/include/stdio.h > /dev/null 2>&1 ; then
2064                                         osvers=2
2065                                 fi
2066                         fi
2067                         ;;
2068                 pc*)
2069                         if test -n "$DJGPP"; then
2070                                 osname=dos
2071                                 osvers=djgpp
2072                         fi
2073                         ;;
2074                 esac
2075
2076                 case "$1" in
2077                 aix) osname=aix
2078                         tmp=`( (oslevel) 2>/dev/null || echo "not found") 2>&1`
2079                         case "$tmp" in
2080                         'not found') osvers="$4"."$3" ;;
2081                         '<3240'|'<>3240') osvers=3.2.0 ;;
2082                         '=3240'|'>3240'|'<3250'|'<>3250') osvers=3.2.4 ;;
2083                         '=3250'|'>3250') osvers=3.2.5 ;;
2084                         *) osvers=$tmp;;
2085                         esac
2086                         ;;
2087                 *dc.osx) osname=dcosx
2088                         osvers="$3"
2089                         ;;
2090                 dnix) osname=dnix
2091                         osvers="$3"
2092                         ;;
2093                 domainos) osname=apollo
2094                         osvers="$3"
2095                         ;;
2096                 dgux) osname=dgux 
2097                         osvers="$3"
2098                         ;;
2099                 dynixptx*) osname=dynixptx
2100                         osvers=`echo "$4"|sed 's/^v//'`
2101                         ;;
2102                 freebsd) osname=freebsd 
2103                         osvers="$3" ;;
2104                 genix) osname=genix ;;
2105                 hp*) osname=hpux 
2106                         osvers=`echo "$3" | $sed 's,.*\.\([0-9]*\.[0-9]*\),\1,'`
2107                         ;;
2108                 irix*) osname=irix
2109                         case "$3" in
2110                         4*) osvers=4 ;;
2111                         5*) osvers=5 ;;
2112                         *)      osvers="$3" ;;
2113                         esac
2114                         ;;
2115                 linux) osname=linux
2116                         case "$3" in
2117                         *)      osvers="$3" ;;
2118                         esac
2119                         ;;
2120                 MiNT) osname=mint
2121                         ;;
2122                 netbsd*) osname=netbsd
2123                         osvers="$3"
2124                         ;;
2125                 news-os) osvers="$3"
2126                         case "$3" in
2127                         4*) osname=newsos4 ;;
2128                         *) osname=newsos ;;
2129                         esac
2130                         ;;
2131                 bsd386) osname=bsd386
2132                         osvers=`$uname -r`
2133                         ;;
2134                 POSIX-BC | posix-bc ) osname=posix-bc
2135                         osvers="$3"
2136                         ;;
2137                 powerux | power_ux | powermax_os | powermaxos | \
2138                 powerunix | power_unix) osname=powerux
2139                         osvers="$3"
2140                         ;;
2141                 next*) osname=next ;;
2142                 solaris) osname=solaris
2143                         case "$3" in
2144                         5*) osvers=`echo $3 | $sed 's/^5/2/g'` ;;
2145                         *)      osvers="$3" ;;
2146                         esac
2147                         ;;
2148                 sunos) osname=sunos
2149                         case "$3" in
2150                         5*) osname=solaris
2151                                 osvers=`echo $3 | $sed 's/^5/2/g'` ;;
2152                         *)      osvers="$3" ;;
2153                         esac
2154                         ;;
2155                 titanos) osname=titanos
2156                         case "$3" in
2157                         1*) osvers=1 ;;
2158                         2*) osvers=2 ;;
2159                         3*) osvers=3 ;;
2160                         4*) osvers=4 ;;
2161                         *)      osvers="$3" ;;
2162                         esac
2163                         ;;
2164                 ultrix) osname=ultrix
2165                         osvers="$3"
2166                         ;;
2167                 osf1|mls+)      case "$5" in
2168                                 alpha)
2169                                         osname=dec_osf
2170                                         osvers=`echo "$3" | sed 's/^[xvt]//'`
2171                                         ;;
2172                         hp*)    osname=hp_osf1  ;;
2173                         mips)   osname=mips_osf1 ;;
2174                         esac
2175                         ;;
2176                 uts) osname=uts 
2177                         osvers="$3"
2178                         ;;
2179                 qnx) osname=qnx
2180                         osvers="$4"
2181                         ;;
2182                 $2) case "$osname" in
2183                         *isc*) ;;
2184                         *freebsd*) ;;
2185                         svr*)
2186                                 : svr4.x or possibly later
2187                                 case "svr$3" in 
2188                                 ${osname}*)
2189                                         osname=svr$3
2190                                         osvers=$4
2191                                         ;;
2192                                 esac
2193                                 case "$osname" in
2194                                 svr4.0)
2195                                         : Check for ESIX
2196                                         if test -f /stand/boot ; then
2197                                                 eval `grep '^INITPROG=[a-z/0-9]*$' /stand/boot`
2198                                                 if test -n "$INITPROG" -a -f "$INITPROG"; then
2199                         isesix=`strings -a $INITPROG|grep 'ESIX SYSTEM V/386 Release 4.0'`
2200                                                         if test -n "$isesix"; then
2201                                                                 osname=esix4
2202                                                         fi
2203                                                 fi
2204                                         fi
2205                                         ;;
2206                                 esac
2207                                 ;;
2208                         *)      if test -f /etc/systemid; then
2209                                         osname=sco
2210                                         set `echo $3 | $sed 's/\./ /g'` $4
2211                                         if $test -f $src/hints/sco_$1_$2_$3.sh; then
2212                                                 osvers=$1.$2.$3
2213                                         elif $test -f $src/hints/sco_$1_$2.sh; then
2214                                                 osvers=$1.$2
2215                                         elif $test -f $src/hints/sco_$1.sh; then
2216                                                 osvers=$1
2217                                         fi
2218                                 else
2219                                         case "$osname" in
2220                                         '') : Still unknown.  Probably a generic Sys V.
2221                                                 osname="sysv"
2222                                                 osvers="$3"
2223                                                 ;;
2224                                         esac
2225                                 fi
2226                                 ;;
2227                         esac
2228                         ;;
2229                 *)      case "$osname" in
2230                         '') : Still unknown.  Probably a generic BSD.
2231                                 osname="$1"
2232                                 osvers="$3"
2233                                 ;;
2234                         esac
2235                         ;;
2236                 esac
2237         else
2238                 if test -f /vmunix -a -f $src/hints/news_os.sh; then
2239                         (what /vmunix | UU/tr '[A-Z]' '[a-z]') > UU/kernel.what 2>&1
2240                         if $contains news-os UU/kernel.what >/dev/null 2>&1; then
2241                                 osname=news_os
2242                         fi
2243                         $rm -f UU/kernel.what
2244                 elif test -d c:/.; then
2245                         set X $myuname
2246                         osname=os2
2247                         osvers="$5"
2248                 fi
2249         fi
2250         
2251         : Now look for a hint file osname_osvers, unless one has been
2252         : specified already.
2253         case "$hintfile" in
2254         ''|' ')
2255                 file=`echo "${osname}_${osvers}" | $sed -e 's@\.@_@g' -e 's@_$@@'`
2256                 : Also try without trailing minor version numbers.
2257                 xfile=`echo $file | $sed -e 's@_[^_]*$@@'`
2258                 xxfile=`echo $xfile | $sed -e 's@_[^_]*$@@'`
2259                 xxxfile=`echo $xxfile | $sed -e 's@_[^_]*$@@'`
2260                 xxxxfile=`echo $xxxfile | $sed -e 's@_[^_]*$@@'`
2261                 case "$file" in
2262                 '') dflt=none ;;
2263                 *)  case "$osvers" in
2264                         '') dflt=$file
2265                                 ;;
2266                         *)  if $test -f $src/hints/$file.sh ; then
2267                                         dflt=$file
2268                                 elif $test -f $src/hints/$xfile.sh ; then
2269                                         dflt=$xfile
2270                                 elif $test -f $src/hints/$xxfile.sh ; then
2271                                         dflt=$xxfile
2272                                 elif $test -f $src/hints/$xxxfile.sh ; then
2273                                         dflt=$xxxfile
2274                                 elif $test -f $src/hints/$xxxxfile.sh ; then
2275                                         dflt=$xxxxfile
2276                                 elif $test -f "$src/hints/${osname}.sh" ; then
2277                                         dflt="${osname}"
2278                                 else
2279                                         dflt=none
2280                                 fi
2281                                 ;;
2282                         esac
2283                         ;;
2284                 esac
2285                 if $test -f Policy.sh ; then
2286                         case "$dflt" in
2287                         *Policy*) ;;
2288                         none) dflt="Policy" ;;
2289                         *) dflt="Policy $dflt" ;;
2290                         esac
2291                 fi
2292                 ;;
2293         *)
2294                 dflt=`echo $hintfile | $sed 's/\.sh$//'`
2295                 ;;
2296         esac
2297
2298         if $test -f Policy.sh ; then
2299                 $cat <<EOM
2300
2301 There's also a Policy hint file available, which should make the
2302 site-specific (policy) questions easier to answer.
2303 EOM
2304
2305         fi
2306
2307         $cat <<EOM
2308
2309 You may give one or more space-separated answers, or "none" if appropriate.
2310 A well-behaved OS will have no hints, so answering "none" or just "Policy"
2311 is a good thing.  DO NOT give a wrong version.
2312
2313 EOM
2314
2315         rp="Which of these apply, if any?"
2316         . UU/myread
2317         tans=$ans
2318         for file in $tans; do
2319                 if $test X$file = XPolicy -a -f Policy.sh; then
2320                         . Policy.sh
2321                         $cat Policy.sh >> UU/config.sh
2322                 elif $test -f $src/hints/$file.sh; then
2323                         . $src/hints/$file.sh
2324                         $cat $src/hints/$file.sh >> UU/config.sh
2325                 elif $test X$tans = X -o X$tans = Xnone ; then
2326                         : nothing
2327                 else
2328                         : Give one chance to correct a possible typo.
2329                         echo "$file.sh does not exist"
2330                         dflt=$file
2331                         rp="hint to use instead?"
2332                         . UU/myread
2333                         for file in $ans; do
2334                                 if $test -f "$src/hints/$file.sh"; then
2335                                         . $src/hints/$file.sh
2336                                         $cat $src/hints/$file.sh >> UU/config.sh
2337                                 elif $test X$ans = X -o X$ans = Xnone ; then
2338                                         : nothing
2339                                 else
2340                                         echo "$file.sh does not exist -- ignored."
2341                                 fi
2342                         done
2343                 fi
2344         done
2345
2346         hint=recommended
2347         : Remember our hint file for later.
2348         if $test -f "$src/hints/$file.sh" ; then
2349                 hintfile="$file"
2350         else
2351                 hintfile=''
2352         fi
2353 fi
2354 cd UU
2355 ;;
2356 *)
2357         echo " "
2358         echo "Fetching default answers from $config_sh..." >&4
2359         tmp_n="$n"
2360         tmp_c="$c"
2361         cd ..
2362         cp $config_sh config.sh 2>/dev/null
2363         chmod +w config.sh
2364         . ./config.sh
2365         cd UU
2366         cp ../config.sh .
2367         n="$tmp_n"
2368         c="$tmp_c"
2369         hint=previous
2370         ;;
2371 esac
2372 test "$override" && . ./optdef.sh
2373 myuname="$newmyuname"
2374
2375 : Restore computed paths
2376 for file in $loclist $trylist; do
2377         eval $file="\$_$file"
2378 done
2379
2380 cat << EOM
2381
2382 Configure uses the operating system name and version to set some defaults.
2383 The default value is probably right if the name rings a bell. Otherwise,
2384 since spelling matters for me, either accept the default or answer "none"
2385 to leave it blank.
2386
2387 EOM
2388 case "$osname" in
2389         ''|' ')
2390                 case "$hintfile" in
2391                 ''|' '|none) dflt=none ;;
2392                 *)  dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/_.*$//'` ;;
2393                 esac
2394                 ;;
2395         *) dflt="$osname" ;;
2396 esac
2397 rp="Operating system name?"
2398 . ./myread
2399 case "$ans" in
2400 none)  osname='' ;;
2401 *) osname=`echo "$ans" | $sed -e 's/[   ][      ]*/_/g' | ./tr '[A-Z]' '[a-z]'`;;
2402 esac
2403 echo " "
2404 case "$osvers" in
2405         ''|' ')
2406                 case "$hintfile" in
2407                 ''|' '|none) dflt=none ;;
2408                 *)      dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/^[^_]*//'`
2409                         dflt=`echo $dflt | $sed -e 's/^_//' -e 's/_/./g'`
2410                         case "$dflt" in
2411                         ''|' ') dflt=none ;;
2412                         esac
2413                         ;;
2414                 esac
2415                 ;;
2416         *) dflt="$osvers" ;;
2417 esac
2418 rp="Operating system version?"
2419 . ./myread
2420 case "$ans" in
2421 none)  osvers='' ;;
2422 *) osvers="$ans" ;;
2423 esac
2424
2425 : who configured the system
2426 cf_time=`LC_ALL=C; export LC_ALL; $date 2>&1`
2427 cf_by=`(logname) 2>/dev/null`
2428 case "$cf_by" in
2429 "")
2430         cf_by=`(whoami) 2>/dev/null`
2431         case "$cf_by" in
2432         "") cf_by=unknown ;;
2433         esac ;;
2434 esac
2435
2436 : set up the script used to warn in case of inconsistency
2437 cat <<EOS >whoa
2438 $startsh
2439 EOS
2440 cat <<'EOSC' >>whoa
2441 dflt=y
2442 echo " "
2443 echo "*** WHOA THERE!!! ***" >&4
2444 echo "    The $hint value for \$$var on this machine was \"$was\"!" >&4
2445 rp="    Keep the $hint value?"
2446 . ./myread
2447 case "$ans" in
2448 y) td=$was; tu=$was;;
2449 esac
2450 EOSC
2451
2452 : function used to set $1 to $val
2453 setvar='var=$1; eval "was=\$$1"; td=$define; tu=$undef;
2454 case "$val$was" in
2455 $define$undef) . ./whoa; eval "$var=\$td";;
2456 $undef$define) . ./whoa; eval "$var=\$tu";;
2457 *) eval "$var=$val";;
2458 esac'
2459
2460 cat <<EOM
2461
2462 Perl can be built to take advantage of threads, on some systems.
2463 To do so, Configure must be run with -Dusethreads.
2464 (See README.threads for details.)
2465 EOM
2466 case "$usethreads" in
2467 $define|true|[yY]*)     dflt='y';;
2468 *) dflt='n';;
2469 esac
2470 rp='Build a threading Perl?'
2471 . ./myread
2472 case "$ans" in
2473 y|Y)    val="$define" ;;     
2474 *)      val="$undef" ;;
2475 esac
2476 set usethreads
2477 eval $setvar 
2478 : Look for a hint-file generated 'call-back-unit'.  Now that the
2479 : user has specified if a threading perl is to be built, we may need 
2480 : to set or change some other defaults.
2481 if $test -f usethreads.cbu; then
2482     . ./usethreads.cbu
2483 fi
2484 case "$d_oldpthreads" in
2485 '')     : Configure tests would be welcome here.  For now, assume undef.
2486         val="$undef" ;;
2487 *)      val="$d_oldpthreads" ;;
2488 esac
2489 set d_oldpthreads
2490 eval $setvar
2491
2492 cat <<EOM
2493
2494 Perl can be built so that multiple Perl interpreters can coexist
2495 within the same Perl executable.  To do so, Configure must be run with
2496 -Dusemultiplicity.
2497
2498 Normally you do not need this and you should answer no.
2499
2500 EOM
2501 case "$usemultiplicity" in
2502 $define|true|[yY]*)     dflt='y';;
2503 *) dflt='n';;
2504 esac
2505 rp='Build Perl for multiplicity?'
2506 . ./myread
2507 case "$ans" in
2508 y|Y)    val="$define" ;;     
2509 *)      val="$undef" ;;
2510 esac
2511 set usemultiplicity
2512 eval $setvar 
2513
2514 cat <<EOM
2515
2516 Perl can be built to take advantage of explicit 64-bit interfaces,
2517 on some systems.  To do so, Configure must be run with -Duse64bits.
2518
2519 If this doesn't make any sense to you, just accept the default 'n'.
2520 EOM
2521 case "$use64bits" in
2522 $define|true|[yY]*)     dflt='y';;
2523 *) dflt='n';;
2524 esac
2525 rp='Try to use explicit 64-bit interfaces, if available?'
2526 . ./myread
2527 case "$ans" in
2528 y|Y) 
2529         val="$define"
2530         ;;     
2531 *)      
2532         val="$undef"
2533         ;;
2534 esac
2535 set use64bits
2536 eval $setvar
2537
2538 archname64=''
2539
2540 : determine the architecture name
2541 echo " "
2542 if xxx=`./loc arch blurfl $pth`; $test -f "$xxx"; then
2543         tarch=`arch`"-$osname"
2544 elif xxx=`./loc uname blurfl $pth`; $test -f "$xxx" ; then
2545         if uname -m > tmparch 2>&1 ; then
2546                 tarch=`$sed -e 's/ *$//' -e 's/ /_/g' \
2547                         -e 's/$/'"-$osname/" tmparch`
2548         else
2549                 tarch="$osname"
2550         fi
2551         $rm -f tmparch
2552 else
2553         tarch="$osname"
2554 fi
2555 case "$myarchname" in
2556 ''|"$tarch") ;;
2557 *)
2558         echo "(Your architecture name used to be $myarchname.)"
2559         archname=''
2560         ;;
2561 esac
2562 myarchname="$tarch"
2563 case "$archname" in
2564 '') dflt="$tarch";;
2565 *) dflt="$archname";;
2566 esac
2567 rp='What is your architecture name'
2568 . ./myread
2569 archname="$ans"
2570 case "$usethreads" in
2571 $define)
2572         echo "Threads selected." >&4
2573         case "$archname" in
2574         *-thread*) echo "...and architecture name already has -thread." >&4
2575                 ;;
2576         *)      archname="$archname-thread"
2577                 echo "...setting architecture name to $archname." >&4
2578                 ;;
2579         esac
2580         ;;
2581 esac
2582 case "$usemultiplicity" in
2583 $define)
2584         echo "Multiplicity selected." >&4
2585         case "$archname" in
2586         *-multi*) echo "...and architecture name already has -multi." >&4
2587                 ;;
2588         *)      archname="$archname-multi"
2589                 echo "...setting architecture name to $archname." >&4
2590                 ;;
2591         esac
2592         ;;
2593 esac
2594 case "$use64bits" in
2595 $define)
2596         echo "Explicit 64-bitness selected." >&4
2597         case "$archname64" in
2598         '')
2599                 ;;
2600         *)
2601                 case "$archname" in
2602                 *-$archname64*) echo "...and architecture name already has $archname64." >&4
2603                         ;;
2604                 *)      archname="$archname-$archname64"
2605                         echo "...setting architecture name to $archname." >&4
2606                         ;;
2607                 esac
2608                 ;;
2609         esac
2610 esac
2611
2612 : is AFS running?
2613 echo " "
2614 case "$afs" in
2615 $define|true)   afs=true ;;
2616 $undef|false)   afs=false ;;
2617 *)      if test -d /afs; then
2618                 afs=true
2619         else
2620                 afs=false
2621         fi
2622         ;;
2623 esac
2624 if $afs; then
2625         echo "AFS may be running... I'll be extra cautious then..." >&4
2626 else
2627         echo "AFS does not seem to be running..." >&4
2628 fi
2629
2630 : decide how portable to be.  Allow command line overrides.
2631 case "$d_portable" in
2632 "$undef") ;;
2633 *)      d_portable="$define" ;;
2634 esac
2635
2636 : set up shell script to do ~ expansion
2637 cat >filexp <<EOSS
2638 $startsh
2639 : expand filename
2640 case "\$1" in
2641  ~/*|~)
2642         echo \$1 | $sed "s|~|\${HOME-\$LOGDIR}|"
2643         ;;
2644  ~*)
2645         if $test -f /bin/csh; then
2646                 /bin/csh -f -c "glob \$1"
2647                 failed=\$?
2648                 echo ""
2649                 exit \$failed
2650         else
2651                 name=\`$expr x\$1 : '..\([^/]*\)'\`
2652                 dir=\`$sed -n -e "/^\${name}:/{s/^[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:\([^:]*\).*"'\$'"/\1/" -e p -e q -e '}' </etc/passwd\`
2653                 if $test ! -d "\$dir"; then
2654                         me=\`basename \$0\`
2655                         echo "\$me: can't locate home directory for: \$name" >&2
2656                         exit 1
2657                 fi
2658                 case "\$1" in
2659                 */*)
2660                         echo \$dir/\`$expr x\$1 : '..[^/]*/\(.*\)'\`
2661                         ;;
2662                 *)
2663                         echo \$dir
2664                         ;;
2665                 esac
2666         fi
2667         ;;
2668 *)
2669         echo \$1
2670         ;;
2671 esac
2672 EOSS
2673 chmod +x filexp
2674 $eunicefix filexp
2675
2676 : now set up to get a file name
2677 cat <<EOS >getfile
2678 $startsh
2679 EOS
2680 cat <<'EOSC' >>getfile
2681 tilde=''
2682 fullpath=''
2683 already=''
2684 skip=''
2685 none_ok=''
2686 exp_file=''
2687 nopath_ok=''
2688 orig_rp="$rp"
2689 orig_dflt="$dflt"
2690
2691 case "$fn" in
2692 *\(*)
2693         expr $fn : '.*(\(.*\)).*' | tr ',' $trnl >getfile.ok
2694         fn=`echo $fn | sed 's/(.*)//'`
2695         ;;
2696 esac
2697
2698 case "$fn" in
2699 *:*)
2700         loc_file=`expr $fn : '.*:\(.*\)'`
2701         fn=`expr $fn : '\(.*\):.*'`
2702         ;;
2703 esac
2704
2705 case "$fn" in
2706 *~*) tilde=true;;
2707 esac
2708 case "$fn" in
2709 */*) fullpath=true;;
2710 esac
2711 case "$fn" in
2712 *+*) skip=true;;
2713 esac
2714 case "$fn" in
2715 *n*) none_ok=true;;
2716 esac
2717 case "$fn" in
2718 *e*) exp_file=true;;
2719 esac
2720 case "$fn" in
2721 *p*) nopath_ok=true;;
2722 esac
2723
2724 case "$fn" in
2725 *f*) type='File';;
2726 *d*) type='Directory';;
2727 *l*) type='Locate';;
2728 esac
2729
2730 what="$type"
2731 case "$what" in
2732 Locate) what='File';;
2733 esac
2734
2735 case "$exp_file" in
2736 '')
2737         case "$d_portable" in
2738         "$define") ;;
2739         *) exp_file=true;;
2740         esac
2741         ;;
2742 esac
2743
2744 cd ..
2745 while test "$type"; do
2746         redo=''
2747         rp="$orig_rp"
2748         dflt="$orig_dflt"
2749         case "$tilde" in
2750         true) rp="$rp (~name ok)";;
2751         esac
2752         . UU/myread
2753         if test -f UU/getfile.ok && \
2754                 $contains "^$ans\$" UU/getfile.ok >/dev/null 2>&1
2755         then
2756                 value="$ans"
2757                 ansexp="$ans"
2758                 break
2759         fi
2760         case "$ans" in
2761         none)
2762                 value=''
2763                 ansexp=''
2764                 case "$none_ok" in
2765                 true) type='';;
2766                 esac
2767                 ;;
2768         *)
2769                 case "$tilde" in
2770                 '') value="$ans"
2771                         ansexp="$ans";;
2772                 *)
2773                         value=`UU/filexp $ans`
2774                         case $? in
2775                         0)
2776                                 if test "$ans" != "$value"; then
2777                                         echo "(That expands to $value on this system.)"
2778                                 fi
2779                                 ;;
2780                         *) value="$ans";;
2781                         esac
2782                         ansexp="$value"
2783                         case "$exp_file" in
2784                         '') value="$ans";;
2785                         esac
2786                         ;;
2787                 esac
2788                 case "$fullpath" in
2789                 true)
2790                         case "$ansexp" in
2791                         /*) value="$ansexp" ;;
2792                         *)
2793                                 redo=true
2794                                 case "$already" in
2795                                 true)
2796                                 echo "I shall only accept a full path name, as in /bin/ls." >&4
2797                                 echo "Use a ! shell escape if you wish to check pathnames." >&4
2798                                         ;;
2799                                 *)
2800                                 echo "Please give a full path name, starting with slash." >&4
2801                                         case "$tilde" in
2802                                         true)
2803                                 echo "Note that using ~name is ok provided it expands well." >&4
2804                                                 already=true
2805                                                 ;;
2806                                         esac
2807                                 esac
2808                                 ;;
2809                         esac
2810                         ;;
2811                 esac
2812                 case "$redo" in
2813                 '')
2814                         case "$type" in
2815                         File)
2816                                 if test -f "$ansexp"; then
2817                                         type=''
2818                                 elif test -r "$ansexp" || (test -h "$ansexp") >/dev/null 2>&1
2819                                 then
2820                                         echo "($value is not a plain file, but that's ok.)"
2821                                         type=''
2822                                 fi
2823                                 ;;
2824                         Directory)
2825                                 if test -d "$ansexp"; then
2826                                         type=''
2827                                 fi
2828                                 ;;
2829                         Locate)
2830                                 if test -d "$ansexp"; then
2831                                         echo "(Looking for $loc_file in directory $value.)"
2832                                         value="$value/$loc_file"
2833                                         ansexp="$ansexp/$loc_file"
2834                                 fi
2835                                 if test -f "$ansexp"; then
2836                                         type=''
2837                                 fi
2838                                 case "$nopath_ok" in
2839                                 true)   case "$value" in
2840                                         */*) ;;
2841                                         *)      echo "Assuming $value will be in people's path."
2842                                                 type=''
2843                                                 ;;
2844                                         esac
2845                                         ;;
2846                                 esac
2847                                 ;;
2848                         esac
2849
2850                         case "$skip" in
2851                         true) type='';
2852                         esac
2853
2854                         case "$type" in
2855                         '') ;;
2856                         *)
2857                                 if test "$fastread" = yes; then
2858                                         dflt=y
2859                                 else
2860                                         dflt=n
2861                                 fi
2862                                 rp="$what $value doesn't exist.  Use that name anyway?"
2863                                 . UU/myread
2864                                 dflt=''
2865                                 case "$ans" in
2866                                 y*) type='';;
2867                                 *) echo " ";;
2868                                 esac
2869                                 ;;
2870                         esac
2871                         ;;
2872                 esac
2873                 ;;
2874         esac
2875 done
2876 cd UU
2877 ans="$value"
2878 rp="$orig_rp"
2879 dflt="$orig_dflt"
2880 rm -f getfile.ok
2881 EOSC
2882
2883 : determine root of directory hierarchy where package will be installed.
2884 case "$prefix" in
2885 '')
2886         dflt=`./loc . /usr/local /usr/local /local /opt /usr`
2887         ;;
2888 *)
2889         dflt="$prefix"
2890         ;;
2891 esac
2892 $cat <<EOM
2893
2894 By default, $package will be installed in $dflt/bin, manual
2895 pages under $dflt/man, etc..., i.e. with $dflt as prefix for
2896 all installation directories. Typically set to /usr/local, but you
2897 may choose /usr if you wish to install $package among your system
2898 binaries. If you wish to have binaries under /bin but manual pages
2899 under /usr/local/man, that's ok: you will be prompted separately
2900 for each of the installation directories, the prefix being only used
2901 to set the defaults.
2902
2903 EOM
2904 fn=d~
2905 rp='Installation prefix to use?'
2906 . ./getfile
2907 oldprefix=''
2908 case "$prefix" in
2909 '') ;;
2910 *)
2911         case "$ans" in
2912         "$prefix") ;;
2913         *) oldprefix="$prefix";;
2914         esac
2915         ;;
2916 esac
2917 prefix="$ans"
2918 prefixexp="$ansexp"
2919
2920 : set the prefixit variable, to compute a suitable default value
2921 prefixit='case "$3" in
2922 ""|none)
2923         case "$oldprefix" in
2924         "") eval "$1=\"\$$2\"";;
2925         *)
2926                 case "$3" in
2927                 "") eval "$1=";;
2928                 none)
2929                         eval "tp=\"\$$2\"";
2930                         case "$tp" in
2931                         ""|" ") eval "$1=\"\$$2\"";;
2932                         *) eval "$1=";;
2933                         esac;;
2934                 esac;;
2935         esac;;
2936 *)
2937         eval "tp=\"$oldprefix-\$$2-\""; eval "tp=\"$tp\"";
2938         case "$tp" in
2939         --|/*--|\~*--) eval "$1=\"$prefix/$3\"";;
2940         /*-$oldprefix/*|\~*-$oldprefix/*)
2941                 eval "$1=\`echo \$$2 | sed \"s,^$oldprefix,$prefix,\"\`";;
2942         *) eval "$1=\"\$$2\"";;
2943         esac;;
2944 esac'
2945
2946 : set the base revision
2947 baserev=5.0
2948
2949 : get the patchlevel
2950 echo " "
2951 echo "Getting the current patchlevel..." >&4
2952 if $test -r $rsrc/patchlevel.h;then
2953         patchlevel=`awk '/define[       ]+PATCHLEVEL/ {print $3}' $rsrc/patchlevel.h`
2954         subversion=`awk '/define[       ]+SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
2955 else
2956         patchlevel=0
2957         subversion=0
2958 fi
2959 $echo $n "(You have $package" $c
2960 case "$package" in
2961 "*$baserev")    ;;
2962 *)              $echo $n " $baserev" $c ;;
2963 esac
2964 $echo $n " patchlevel $patchlevel" $c
2965 test 0 -eq "$subversion" || $echo $n " subversion $subversion" $c
2966 echo ".)"
2967
2968 if test 0 -eq "$subversion"; then
2969         version=`LC_ALL=C; export LC_ALL; \
2970                  echo $baserev $patchlevel | \
2971                  $awk '{ printf "%.3f\n", $1 + $2/1000.0 }'`
2972 else
2973         version=`LC_ALL=C; export LC_ALL; \
2974                  echo $baserev $patchlevel $subversion | \
2975                  $awk '{ printf "%.5f\n", $1 + $2/1000.0 + $3/100000.0 }'`
2976 fi
2977 : Figure out perl API version.  Perhaps this should be in patchlevel.h
2978 if test "$subversion" -lt 50; then
2979         apiversion=`LC_ALL=C; export LC_ALL; \
2980                  echo $baserev $patchlevel | \
2981                  $awk '{ printf "%.3f\n", $1 + $2/1000.0 }'`
2982 else
2983         apiversion="$version"
2984 fi
2985
2986 : determine where private library files go
2987 : Usual default is /usr/local/lib/perl5/$version.
2988 : Also allow things like /opt/perl/lib/$version, since 
2989 : /opt/perl/lib/perl5... would be redundant.
2990 case "$prefix" in
2991 *perl*) set dflt privlib lib/$version ;;
2992 *)       set dflt privlib lib/$package/$version ;;
2993 esac
2994 eval $prefixit
2995 $cat <<EOM
2996
2997 There are some auxiliary files for $package that need to be put into a
2998 private library directory that is accessible by everyone.
2999
3000 EOM
3001 fn=d~+
3002 rp='Pathname where the private library files will reside?'
3003 . ./getfile
3004 if $test "X$privlibexp" != "X$ansexp"; then
3005         installprivlib=''
3006 fi
3007 privlib="$ans"
3008 privlibexp="$ansexp"
3009 if $afs; then
3010         $cat <<EOM
3011
3012 Since you are running AFS, I need to distinguish the directory in which
3013 private files reside from the directory in which they are installed (and from
3014 which they are presumably copied to the former directory by occult means).
3015
3016 EOM
3017         case "$installprivlib" in
3018         '') dflt=`echo $privlibexp | sed 's#^/afs/#/afs/.#'`;;
3019         *) dflt="$installprivlib";;
3020         esac
3021         fn=de~
3022         rp='Where will private files be installed?'
3023         . ./getfile
3024         installprivlib="$ans"
3025 else
3026         installprivlib="$privlibexp"
3027 fi
3028
3029 : set the prefixup variable, to restore leading tilda escape
3030 prefixup='case "$prefixexp" in
3031 "$prefix") ;;
3032 *) eval "$1=\`echo \$$1 | sed \"s,^$prefixexp,$prefix,\"\`";;
3033 esac'
3034
3035 : determine where public architecture dependent libraries go
3036 set archlib archlib
3037 eval $prefixit
3038 : privlib default is /usr/local/lib/$package/$version
3039 : archlib default is /usr/local/lib/$package/$version/$archname
3040 : privlib may have an optional trailing /share.
3041 tdflt=`echo $privlib | $sed 's,/share$,,'`
3042 tdflt=$tdflt/$archname
3043 case "$archlib" in
3044 '')     dflt=$tdflt
3045         ;;
3046 *)      dflt="$archlib"
3047     ;;
3048 esac
3049 cat <<EOM
3050
3051 $spackage contains architecture-dependent library files.  If you are
3052 sharing libraries in a heterogeneous environment, you might store
3053 these files in a separate location.  Otherwise, you can just include
3054 them with the rest of the public library files.
3055
3056 EOM
3057 fn=d+~
3058 rp='Where do you want to put the public architecture-dependent libraries?'
3059 . ./getfile
3060 archlib="$ans"
3061 archlibexp="$ansexp"
3062
3063 if $afs; then
3064         $cat <<EOM
3065
3066 Since you are running AFS, I need to distinguish the directory in
3067 which architecture-dependent library files reside from the directory
3068 in which they are installed (and from which they are presumably copied
3069 to the former directory by occult means).
3070
3071 EOM
3072         case "$installarchlib" in
3073         '') dflt=`echo $archlibexp | sed 's#^/afs/#/afs/.#'`;;
3074         *) dflt="$installarchlib";;
3075         esac
3076         fn=de~
3077         rp='Where will architecture-dependent library files be installed?'
3078         . ./getfile
3079         installarchlib="$ans"
3080 else
3081         installarchlib="$archlibexp"
3082 fi
3083 if $test X"$archlib" = X"$privlib"; then
3084         d_archlib="$undef"
3085 else
3086         d_archlib="$define"
3087 fi
3088
3089 : make some quick guesses about what we are up against
3090 echo " "
3091 $echo $n "Hmm...  $c"
3092 echo exit 1 >bsd
3093 echo exit 1 >usg
3094 echo exit 1 >v7
3095 echo exit 1 >osf1
3096 echo exit 1 >eunice
3097 echo exit 1 >xenix
3098 echo exit 1 >venix
3099 echo exit 1 >os2
3100 d_bsd="$undef"
3101 $cat /usr/include/signal.h /usr/include/sys/signal.h >foo 2>/dev/null
3102 if test -f /osf_boot || $contains 'OSF/1' /usr/include/ctype.h >/dev/null 2>&1
3103 then
3104         echo "Looks kind of like an OSF/1 system, but we'll see..."
3105         echo exit 0 >osf1
3106 elif test `echo abc | tr a-z A-Z` = Abc ; then
3107         xxx=`./loc addbib blurfl $pth`
3108         if $test -f $xxx; then
3109         echo "Looks kind of like a USG system with BSD features, but we'll see..."
3110                 echo exit 0 >bsd
3111                 echo exit 0 >usg
3112         else
3113                 if $contains SIGTSTP foo >/dev/null 2>&1 ; then
3114                         echo "Looks kind of like an extended USG system, but we'll see..."
3115                 else
3116                         echo "Looks kind of like a USG system, but we'll see..."
3117                 fi
3118                 echo exit 0 >usg
3119         fi
3120 elif $contains SIGTSTP foo >/dev/null 2>&1 ; then
3121         echo "Looks kind of like a BSD system, but we'll see..."
3122         d_bsd="$define"
3123         echo exit 0 >bsd
3124 else
3125         echo "Looks kind of like a Version 7 system, but we'll see..."
3126         echo exit 0 >v7
3127 fi
3128 case "$eunicefix" in
3129 *unixtovms*)
3130         $cat <<'EOI'
3131 There is, however, a strange, musty smell in the air that reminds me of
3132 something...hmm...yes...I've got it...there's a VMS nearby, or I'm a Blit.
3133 EOI
3134         echo exit 0 >eunice
3135         d_eunice="$define"
3136 : it so happens the Eunice I know will not run shell scripts in Unix format
3137         ;;
3138 *)
3139         echo " "
3140         echo "Congratulations.  You aren't running Eunice."
3141         d_eunice="$undef"
3142         ;;
3143 esac
3144 : Detect OS2.  The p_ variable is set above in the Head.U unit.
3145 case "$p_" in
3146 :) ;;
3147 *)
3148         $cat <<'EOI'
3149 I have the feeling something is not exactly right, however...don't tell me...
3150 lemme think...does HAL ring a bell?...no, of course, you're only running OS/2!
3151 EOI
3152         echo exit 0 >os2
3153         ;;
3154 esac
3155 if test -f /xenix; then
3156         echo "Actually, this looks more like a XENIX system..."
3157         echo exit 0 >xenix
3158         d_xenix="$define"
3159 else
3160         echo " "
3161         echo "It's not Xenix..."
3162         d_xenix="$undef"
3163 fi
3164 chmod +x xenix
3165 $eunicefix xenix
3166 if test -f /venix; then
3167         echo "Actually, this looks more like a VENIX system..."
3168         echo exit 0 >venix
3169 else
3170         echo " "
3171         if ./xenix; then
3172                 : null
3173         else
3174                 echo "Nor is it Venix..."
3175         fi
3176 fi
3177 chmod +x bsd usg v7 osf1 eunice xenix venix os2
3178 $eunicefix bsd usg v7 osf1 eunice xenix venix os2
3179 $rm -f foo
3180
3181 : see if setuid scripts can be secure
3182 $cat <<EOM
3183
3184 Some kernels have a bug that prevents setuid #! scripts from being
3185 secure.  Some sites have disabled setuid #! scripts because of this.
3186
3187 First let's decide if your kernel supports secure setuid #! scripts.
3188 (If setuid #! scripts would be secure but have been disabled anyway,
3189 don't say that they are secure if asked.)
3190
3191 EOM
3192
3193 val="$undef"
3194 if $test -d /dev/fd; then
3195         echo "#!$ls" >reflect
3196         chmod +x,u+s reflect
3197         ./reflect >flect 2>&1
3198         if $contains "/dev/fd" flect >/dev/null; then
3199                 echo "Congratulations, your kernel has secure setuid scripts!" >&4
3200                 val="$define"
3201         else
3202                 $cat <<EOM
3203 If you are not sure if they are secure, I can check but I'll need a
3204 username and password different from the one you are using right now.
3205 If you don't have such a username or don't want me to test, simply
3206 enter 'none'.
3207
3208 EOM
3209                 rp='Other username to test security of setuid scripts with?'
3210                 dflt='none'
3211                 . ./myread
3212                 case "$ans" in
3213                 n|none)
3214                         case "$d_suidsafe" in
3215                         '')     echo "I'll assume setuid scripts are *not* secure." >&4
3216                                 dflt=n;;
3217                         "$undef")
3218                                 echo "Well, the $hint value is *not* secure." >&4
3219                                 dflt=n;;
3220                         *)      echo "Well, the $hint value *is* secure." >&4
3221                                 dflt=y;;
3222                         esac
3223                         ;;
3224                 *)
3225                         $rm -f reflect flect
3226                         echo "#!$ls" >reflect
3227                         chmod +x,u+s reflect
3228                         echo >flect
3229                         chmod a+w flect
3230                         echo '"su" will (probably) prompt you for '"$ans's password."
3231                         su $ans -c './reflect >flect'
3232                         if $contains "/dev/fd" flect >/dev/null; then
3233                                 echo "Okay, it looks like setuid scripts are secure." >&4
3234                                 dflt=y
3235                         else
3236                                 echo "I don't think setuid scripts are secure." >&4
3237                                 dflt=n
3238                         fi
3239                         ;;
3240                 esac
3241                 rp='Does your kernel have *secure* setuid scripts?'
3242                 . ./myread
3243                 case "$ans" in
3244                 [yY]*)  val="$define";;
3245                 *)      val="$undef";;
3246                 esac
3247         fi
3248 else
3249         echo "I don't think setuid scripts are secure (no /dev/fd directory)." >&4
3250         echo "(That's for file descriptors, not floppy disks.)"
3251         val="$undef"
3252 fi
3253 set d_suidsafe
3254 eval $setvar
3255
3256 $rm -f reflect flect
3257
3258 : now see if they want to do setuid emulation
3259 echo " "
3260 val="$undef"
3261 case "$d_suidsafe" in
3262 "$define")
3263         val="$undef"
3264         echo "No need to emulate SUID scripts since they are secure here." >& 4
3265         ;;
3266 *)
3267         $cat <<EOM
3268 Some systems have disabled setuid scripts, especially systems where
3269 setuid scripts cannot be secure.  On systems where setuid scripts have
3270 been disabled, the setuid/setgid bits on scripts are currently
3271 useless.  It is possible for $package to detect those bits and emulate
3272 setuid/setgid in a secure fashion.  This emulation will only work if
3273 setuid scripts have been disabled in your kernel.
3274
3275 EOM
3276         case "$d_dosuid" in
3277         "$define") dflt=y ;;
3278         *) dflt=n ;;
3279         esac
3280         rp="Do you want to do setuid/setgid emulation?"
3281         . ./myread
3282         case "$ans" in
3283         [yY]*)  val="$define";;
3284         *)      val="$undef";;
3285         esac
3286         ;;
3287 esac
3288 set d_dosuid
3289 eval $setvar
3290
3291 : determine where manual pages are on this system
3292 echo " "
3293 case "$sysman" in
3294 '') 
3295         syspath='/usr/man/man1 /usr/man/mann /usr/man/manl /usr/man/local/man1'
3296         syspath="$syspath /usr/man/u_man/man1 /usr/share/man/man1"
3297         syspath="$syspath /usr/catman/u_man/man1 /usr/man/l_man/man1"
3298         syspath="$syspath /usr/local/man/u_man/man1 /usr/local/man/l_man/man1"
3299         syspath="$syspath /usr/man/man.L /local/man/man1 /usr/local/man/man1"
3300         sysman=`./loc . /usr/man/man1 $syspath`
3301         ;;
3302 esac
3303 if $test -d "$sysman"; then
3304         echo "System manual is in $sysman." >&4
3305 else
3306         echo "Could not find manual pages in source form." >&4
3307 fi
3308
3309 : see what memory models we can support
3310 case "$models" in
3311 '')
3312         $cat >pdp11.c <<'EOP'
3313 main() {
3314 #ifdef pdp11
3315         exit(0);
3316 #else
3317         exit(1);
3318 #endif
3319 }
3320 EOP
3321         ( cc -o pdp11 pdp11.c ) >/dev/null 2>&1
3322         if $test -f pdp11 && ./pdp11 2>/dev/null; then
3323                 dflt='unsplit split'
3324         else
3325                 tans=`./loc . X /lib/small /lib/large /usr/lib/small /usr/lib/large /lib/medium /usr/lib/medium /lib/huge`
3326                 case "$tans" in
3327                 X) dflt='none';;
3328                 *) if $test -d /lib/small || $test -d /usr/lib/small; then
3329                                 dflt='small'
3330                         else
3331                                 dflt=''
3332                         fi
3333                         if $test -d /lib/medium || $test -d /usr/lib/medium; then
3334                                 dflt="$dflt medium"
3335                         fi
3336                         if $test -d /lib/large || $test -d /usr/lib/large; then
3337                                 dflt="$dflt large"
3338                         fi
3339                         if $test -d /lib/huge || $test -d /usr/lib/huge; then
3340                                 dflt="$dflt huge"
3341                         fi
3342                 esac
3343         fi;;
3344 *) dflt="$models";;
3345 esac
3346 $cat <<EOM
3347  
3348 Some systems have different model sizes.  On most systems they are called
3349 small, medium, large, and huge.  On the PDP11 they are called unsplit and
3350 split.  If your system doesn't support different memory models, say "none".
3351 If you wish to force everything to one memory model, say "none" here and
3352 put the appropriate flags later when it asks you for other cc and ld flags.
3353 Venix systems may wish to put "none" and let the compiler figure things out.
3354 (In the following question multiple model names should be space separated.)
3355
3356 The default for most systems is "none".
3357
3358 EOM
3359 rp="Which memory models are supported?"
3360 . ./myread
3361 models="$ans"
3362
3363 case "$models" in
3364 none)
3365         small=''
3366         medium=''
3367         large=''
3368         huge=''
3369         unsplit=''
3370         split=''
3371         ;;
3372 *split)
3373         case "$split" in
3374         '') if $contains '\-i' $sysman/ld.1 >/dev/null 2>&1 || \
3375                          $contains '\-i' $sysman/cc.1 >/dev/null 2>&1; then
3376                         dflt='-i'
3377                 else
3378                         dflt='none'
3379                 fi;;
3380         *) dflt="$split";;
3381         esac
3382         rp="What flag indicates separate I and D space?"
3383         . ./myread
3384         tans="$ans"
3385         case "$tans" in
3386         none) tans='';;
3387         esac
3388         split="$tans"
3389         unsplit='';;
3390 *large*|*small*|*medium*|*huge*)
3391         case "$models" in
3392         *large*)
3393                 case "$large" in
3394                 '') dflt='-Ml';;
3395                 *) dflt="$large";;
3396                 esac
3397         rp="What flag indicates large model?"
3398         . ./myread
3399         tans="$ans"
3400         case "$tans" in
3401         none) tans='';
3402         esac
3403         large="$tans";;
3404         *) large='';;
3405         esac
3406         case "$models" in
3407         *huge*) case "$huge" in
3408                 '') dflt='-Mh';;
3409                 *) dflt="$huge";;
3410                 esac
3411                 rp="What flag indicates huge model?"
3412                 . ./myread
3413                 tans="$ans"
3414                 case "$tans" in
3415                 none) tans='';
3416                 esac
3417                 huge="$tans";;
3418         *) huge="$large";;
3419         esac
3420         case "$models" in
3421         *medium*) case "$medium" in
3422                 '') dflt='-Mm';;
3423                 *) dflt="$medium";;
3424                 esac
3425                 rp="What flag indicates medium model?"
3426                 . ./myread
3427                 tans="$ans"
3428                 case "$tans" in
3429                 none) tans='';
3430                 esac
3431                 medium="$tans";;
3432         *) medium="$large";;
3433         esac
3434         case "$models" in
3435         *small*) case "$small" in
3436                 '') dflt='none';;
3437                 *) dflt="$small";;
3438                 esac
3439                 rp="What flag indicates small model?"
3440                 . ./myread
3441                 tans="$ans"
3442                 case "$tans" in
3443                 none) tans='';
3444                 esac
3445                 small="$tans";;
3446         *) small='';;
3447         esac
3448         ;;
3449 *)
3450         echo "Unrecognized memory models--you may have to edit Makefile.SH" >&4
3451         ;;
3452 esac
3453 $rm -f pdp11.* pdp11
3454
3455 : see if we need a special compiler
3456 echo " "
3457 if ./usg; then
3458         case "$cc" in
3459         '') case "$Mcc" in
3460                 /*) dflt='Mcc';;
3461                 *) case "$large" in
3462                         -M*) dflt='cc';;
3463                         *)      if $contains '\-M' $sysman/cc.1 >/dev/null 2>&1 ; then
3464                                         if $contains '\-M' $sysman/cpp.1 >/dev/null 2>&1; then
3465                                                 dflt='cc'
3466                                         else
3467                                                 dflt='cc -M'
3468                                         fi
3469                                 else
3470                                         dflt='cc'
3471                                 fi;;
3472                         esac;;
3473                 esac;;
3474         *)  dflt="$cc";;
3475         esac
3476         case "$dflt" in
3477         *M*)    $cat <<'EOM'
3478 On some older systems the default C compiler will not resolve multiple global
3479 references that happen to have the same name.  On some such systems the "Mcc"
3480 command may be used to force these to be resolved.  On other systems a "cc -M"
3481 command is required.  (Note that the -M flag on other systems indicates a
3482 memory model to use!) If you have the Gnu C compiler, you might wish to use
3483 that instead.
3484
3485 EOM
3486         ;;
3487         esac
3488         rp="Use which C compiler?"
3489         . ./myread
3490         cc="$ans"
3491 else
3492         case "$cc" in
3493         '') dflt=cc;;
3494         *) dflt="$cc";;
3495         esac
3496         rp="Use which C compiler?"
3497         . ./myread
3498         cc="$ans"
3499 fi
3500 : Look for a hint-file generated 'call-back-unit'.  Now that the
3501 : user has specified the compiler, we may need to set or change some
3502 : other defaults.
3503 if $test -f cc.cbu; then
3504     . ./cc.cbu
3505 fi
3506 echo " "
3507 echo "Checking for GNU cc in disguise and/or its version number..." >&4
3508 $cat >gccvers.c <<EOM
3509 #include <stdio.h>
3510 int main() {
3511 #ifdef __GNUC__
3512 #ifdef __VERSION__
3513         printf("%s\n", __VERSION__);
3514 #else
3515         printf("%s\n", "1");
3516 #endif
3517 #endif
3518         exit(0);
3519 }
3520 EOM
3521 if $cc -o gccvers gccvers.c >/dev/null 2>&1; then
3522         gccversion=`./gccvers`
3523         case "$gccversion" in
3524         '') echo "You are not using GNU cc." ;;
3525         *)  echo "You are using GNU cc $gccversion." ;;
3526         esac
3527 else
3528         echo " "
3529         echo "*** WHOA THERE!!! ***" >&4
3530         echo "    Your C compiler \"$cc\" doesn't seem to be working!" >&4
3531         case "$knowitall" in
3532         '')
3533         echo "    You'd better start hunting for one and let me know about it." >&4
3534                 exit 1
3535                 ;;
3536         esac
3537 fi
3538 $rm -f gccvers*
3539 case "$gccversion" in
3540 1*) cpp=`./loc gcc-cpp $cpp $pth` ;;
3541 esac
3542
3543 : What should the include directory be ?
3544 echo " "
3545 $echo $n "Hmm...  $c"
3546 dflt='/usr/include'
3547 incpath=''
3548 mips_type=''
3549 if $test -f /bin/mips && /bin/mips; then
3550         echo "Looks like a MIPS system..."
3551         $cat >usr.c <<'EOCP'
3552 #ifdef SYSTYPE_BSD43
3553 /bsd43
3554 #endif
3555 EOCP
3556         if $cc -E usr.c > usr.out && $contains / usr.out >/dev/null 2>&1; then
3557                 dflt='/bsd43/usr/include'
3558                 incpath='/bsd43'
3559                 mips_type='BSD 4.3'
3560         else
3561                 mips_type='System V'
3562         fi
3563         $rm -f usr.c usr.out
3564         echo "and you're compiling with the $mips_type compiler and libraries."
3565         xxx_prompt=y
3566         echo "exit 0" >mips
3567 else
3568         echo "Doesn't look like a MIPS system."
3569         xxx_prompt=n
3570         echo "exit 1" >mips
3571 fi
3572 chmod +x mips
3573 $eunicefix mips
3574 case "$usrinc" in
3575 '') ;;
3576 *) dflt="$usrinc";;
3577 esac
3578 case "$xxx_prompt" in
3579 y)      fn=d/
3580         echo " "
3581         rp='Where are the include files you want to use?'
3582         . ./getfile
3583         usrinc="$ans"
3584         ;;
3585 *)      usrinc="$dflt"
3586         ;;
3587 esac
3588
3589 : see how we invoke the C preprocessor
3590 echo " "
3591 echo "Now, how can we feed standard input to your C preprocessor..." >&4
3592 cat <<'EOT' >testcpp.c
3593 #define ABC abc
3594 #define XYZ xyz
3595 ABC.XYZ
3596 EOT
3597 cd ..
3598 if test ! -f cppstdin; then
3599         echo 'cat >.$$.c; '"$cc"' -E ${1+"$@"} .$$.c; rm .$$.c' >cppstdin
3600 else
3601         echo "Keeping your $hint cppstdin wrapper."
3602 fi
3603 chmod 755 cppstdin
3604 wrapper=`pwd`/cppstdin
3605 ok='false'
3606 cd UU
3607
3608 if $test "X$cppstdin" != "X" && \
3609         $cppstdin $cppminus <testcpp.c >testcpp.out 2>&1 && \
3610         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
3611 then
3612         echo "You used to use $cppstdin $cppminus so we'll use that again."
3613         case "$cpprun" in
3614         '') echo "But let's see if we can live without a wrapper..." ;;
3615         *)
3616                 if $cpprun $cpplast <testcpp.c >testcpp.out 2>&1 && \
3617                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
3618                 then
3619                         echo "(And we'll use $cpprun $cpplast to preprocess directly.)"
3620                         ok='true'
3621                 else
3622                         echo "(However, $cpprun $cpplast does not work, let's see...)"
3623                 fi
3624                 ;;
3625         esac
3626 else
3627         case "$cppstdin" in
3628         '') ;;
3629         *)
3630                 echo "Good old $cppstdin $cppminus does not seem to be of any help..."
3631                 ;;
3632         esac
3633 fi
3634
3635 if $ok; then
3636         : nothing
3637 elif echo 'Maybe "'"$cc"' -E" will work...'; \
3638         $cc -E <testcpp.c >testcpp.out 2>&1; \
3639         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
3640         echo "Yup, it does."
3641         x_cpp="$cc -E"
3642         x_minus='';
3643 elif echo 'Nope...maybe "'"$cc"' -E -" will work...'; \
3644         $cc -E - <testcpp.c >testcpp.out 2>&1; \
3645         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
3646         echo "Yup, it does."
3647         x_cpp="$cc -E"
3648         x_minus='-';
3649 elif echo 'Nope...maybe "'"$cc"' -P" will work...'; \
3650         $cc -P <testcpp.c >testcpp.out 2>&1; \
3651         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
3652         echo "Yipee, that works!"
3653         x_cpp="$cc -P"
3654         x_minus='';
3655 elif echo 'Nope...maybe "'"$cc"' -P -" will work...'; \
3656         $cc -P - <testcpp.c >testcpp.out 2>&1; \
3657         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
3658         echo "At long last!"
3659         x_cpp="$cc -P"
3660         x_minus='-';
3661 elif echo 'No such luck, maybe "'$cpp'" will work...'; \
3662         $cpp <testcpp.c >testcpp.out 2>&1; \
3663         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
3664         echo "It works!"
3665         x_cpp="$cpp"
3666         x_minus='';
3667 elif echo 'Nixed again...maybe "'$cpp' -" will work...'; \
3668         $cpp - <testcpp.c >testcpp.out 2>&1; \
3669         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
3670         echo "Hooray, it works!  I was beginning to wonder."
3671         x_cpp="$cpp"
3672         x_minus='-';
3673 elif echo 'Uh-uh.  Time to get fancy.  Trying a wrapper...'; \
3674         $wrapper <testcpp.c >testcpp.out 2>&1; \
3675         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
3676         x_cpp="$wrapper"
3677         x_minus=''
3678         echo "Eureka!"
3679 else
3680         dflt=''
3681         rp="No dice.  I can't find a C preprocessor.  Name one:"
3682         . ./myread
3683         x_cpp="$ans"
3684         x_minus=''
3685         $x_cpp <testcpp.c >testcpp.out 2>&1
3686         if $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
3687                 echo "OK, that will do." >&4
3688         else
3689 echo "Sorry, I can't get that to work.  Go find one and rerun Configure." >&4
3690                 exit 1
3691         fi
3692 fi
3693
3694 case "$ok" in
3695 false)
3696         cppstdin="$x_cpp"
3697         cppminus="$x_minus"
3698         cpprun="$x_cpp"
3699         cpplast="$x_minus"
3700         set X $x_cpp
3701         shift
3702         case "$1" in
3703         "$cpp")
3704                 echo "Perhaps can we force $cc -E using a wrapper..."
3705                 if $wrapper <testcpp.c >testcpp.out 2>&1; \
3706                         $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
3707                 then
3708                         echo "Yup, we can."
3709                         cppstdin="$wrapper"
3710                         cppminus='';
3711                 else
3712                         echo "Nope, we'll have to live without it..."
3713                 fi
3714                 ;;
3715         esac
3716         case "$cpprun" in
3717         "$wrapper")
3718                 cpprun=''
3719                 cpplast=''
3720                 ;;
3721         esac
3722         ;;
3723 esac
3724
3725 case "$cppstdin" in
3726 "$wrapper") ;;
3727 *) $rm -f $wrapper;;
3728 esac
3729 $rm -f testcpp.c testcpp.out
3730
3731 : Set private lib path
3732 case "$plibpth" in
3733 '') if ./mips; then
3734                 plibpth="$incpath/usr/lib /usr/local/lib /usr/ccs/lib"
3735         fi;;
3736 esac
3737 case "$libpth" in
3738 ' ') dlist='';;
3739 '') dlist="$loclibpth $plibpth $glibpth";;
3740 *) dlist="$libpth";;
3741 esac
3742
3743 : Now check and see which directories actually exist, avoiding duplicates
3744 libpth=''
3745 for xxx in $dlist
3746 do
3747     if $test -d $xxx; then
3748                 case " $libpth " in
3749                 *" $xxx "*) ;;
3750                 *) libpth="$libpth $xxx";;
3751                 esac
3752     fi
3753 done
3754 $cat <<'EOM'
3755
3756 Some systems have incompatible or broken versions of libraries.  Among
3757 the directories listed in the question below, please remove any you
3758 know not to be holding relevant libraries, and add any that are needed.
3759 Say "none" for none.
3760
3761 EOM
3762 case "$libpth" in
3763 '') dflt='none';;
3764 *)
3765         set X $libpth
3766         shift
3767         dflt=${1+"$@"}
3768         ;;
3769 esac
3770 rp="Directories to use for library searches?"
3771 . ./myread
3772 case "$ans" in
3773 none) libpth=' ';;
3774 *) libpth="$ans";;
3775 esac
3776
3777 : compute shared library extension
3778 case "$so" in
3779 '')
3780         if xxx=`./loc libc.sl X $libpth`; $test -f "$xxx"; then
3781                 dflt='sl'
3782         else
3783                 dflt='so'
3784         fi
3785         ;;
3786 *) dflt="$so";;
3787 esac
3788 $cat <<EOM
3789
3790 On some systems, shared libraries may be available.  Answer 'none' if
3791 you want to suppress searching of shared libraries for the remaining
3792 of this configuration.
3793
3794 EOM
3795 rp='What is the file extension used for shared libraries?'
3796 . ./myread
3797 so="$ans"
3798
3799 : Define several unixisms.
3800 : Hints files or command line option can be used to override them.
3801 : The convoluted testing is in case hints files set either the old
3802 : or the new name.
3803 case "$_exe" in
3804 '')     case "$exe_ext" in
3805     '') ;;
3806         *)      _exe="$exe_ext" ;;
3807         esac
3808         ;;
3809 esac
3810 case "$_a" in
3811 '')     case "$lib_ext" in
3812     '') _a='.a';;
3813         *)      _a="$lib_ext" ;;
3814         esac
3815         ;;
3816 esac
3817 case "$_o" in
3818 '') case "$obj_ext" in
3819         '')     _o='.o';;
3820         *)      _o="$obj_ext";;
3821         esac
3822         ;;
3823 esac
3824 case "$p_" in
3825 '') case "$path_sep" in
3826         '')     p_=':';;
3827         *)      p_="$path_sep";;
3828         esac
3829         ;;
3830 esac
3831 exe_ext=$_exe
3832 lib_ext=$_a
3833 obj_ext=$_o
3834 path_sep=$p_
3835
3836 : Which makefile gets called first.  This is used by make depend.
3837 case "$firstmakefile" in
3838 '') firstmakefile='makefile';;
3839 esac
3840
3841 : Looking for optional libraries
3842 echo " "
3843 echo "Checking for optional libraries..." >&4
3844 case "$libs" in
3845 ' '|'') dflt='';;
3846 *) dflt="$libs";;
3847 esac
3848 case "$libswanted" in
3849 '') libswanted='c_s';;
3850 esac
3851 for thislib in $libswanted; do
3852         
3853         if xxx=`./loc lib$thislib.$so.[0-9]'*' X $libpth`;
3854                 $test -f "$xxx" -a "X$ignore_versioned_solibs" = "X"; then
3855                 echo "Found -l$thislib (shared)."
3856                 case " $dflt " in
3857                 *"-l$thislib "*);;
3858                 *) dflt="$dflt -l$thislib";;
3859                 esac
3860         elif xxx=`./loc lib$thislib.$so X $libpth` ; $test -f "$xxx"; then
3861                 echo "Found -l$thislib (shared)."
3862                 case " $dflt " in
3863                 *"-l$thislib "*);;
3864                 *) dflt="$dflt -l$thislib";;
3865                 esac
3866         elif xxx=`./loc lib$thislib$_a X $libpth`; $test -f "$xxx"; then
3867                 echo "Found -l$thislib."
3868                 case " $dflt " in
3869                 *"-l$thislib "*);;
3870                 *) dflt="$dflt -l$thislib";;
3871                 esac
3872         elif xxx=`./loc $thislib$_a X $libpth`; $test -f "$xxx"; then
3873                 echo "Found -l$thislib."
3874                 case " $dflt " in
3875                 *"-l$thislib "*);;
3876                 *) dflt="$dflt -l$thislib";;
3877                 esac
3878         elif xxx=`./loc lib${thislib}_s$_a X $libpth`; $test -f "$xxx"; then
3879                 echo "Found -l${thislib}_s."
3880                 case " $dflt " in
3881                 *"-l$thislib "*);;
3882                 *) dflt="$dflt -l${thislib}_s";;
3883                 esac
3884         elif xxx=`./loc Slib$thislib$_a X $xlibpth`; $test -f "$xxx"; then
3885                 echo "Found -l$thislib."
3886                 case " $dflt " in
3887                 *"-l$thislib "*);;
3888                 *) dflt="$dflt -l$thislib";;
3889                 esac
3890         else
3891                 echo "No -l$thislib."
3892         fi
3893 done
3894 set X $dflt
3895 shift
3896 dflt="$*"
3897 case "$libs" in
3898 '') dflt="$dflt";;
3899 *) dflt="$libs";;
3900 esac
3901 case "$dflt" in
3902 ' '|'') dflt='none';;
3903 esac
3904
3905 $cat <<EOM
3906  
3907 Some versions of Unix support shared libraries, which make executables smaller
3908 but make load time slightly longer.
3909
3910 On some systems, mostly System V Release 3's, the shared library is included
3911 by putting the option "-lc_s" as the last thing on the cc command line when
3912 linking.  Other systems use shared libraries by default.  There may be other
3913 libraries needed to compile $package on your machine as well.  If your system
3914 needs the "-lc_s" option, include it here.  Include any other special libraries
3915 here as well.  Say "none" for none.
3916 EOM
3917
3918 echo " "
3919 rp="Any additional libraries?"
3920 . ./myread
3921 case "$ans" in
3922 none) libs=' ';;
3923 *) libs="$ans";;
3924 esac
3925
3926 : determine optimize, if desired, or use for debug flag also
3927 case "$optimize" in
3928 ' '|$undef) dflt='none';;
3929 '') dflt='-O';;
3930 *) dflt="$optimize";;
3931 esac
3932 $cat <<EOH
3933
3934 Some C compilers have problems with their optimizers.  By default, $package
3935 compiles with the -O flag to use the optimizer.  Alternately, you might want
3936 to use the symbolic debugger, which uses the -g flag (on traditional Unix
3937 systems).  Either flag can be specified here.  To use neither flag, specify
3938 the word "none".
3939
3940 EOH
3941 rp="What optimizer/debugger flag should be used?"
3942 . ./myread
3943 optimize="$ans"
3944 case "$optimize" in
3945 'none') optimize=" ";;
3946 esac
3947
3948 dflt=''
3949 : We will not override a previous value, but we might want to
3950 : augment a hint file
3951 case "$hint" in
3952 none|recommended)
3953         case "$gccversion" in
3954         1*) dflt='-fpcc-struct-return' ;;
3955         esac
3956         case "$optimize" in
3957         *-g*) dflt="$dflt -DDEBUGGING";;
3958         esac
3959         case "$gccversion" in
3960         2*) if test -d /etc/conf/kconfig.d &&
3961                         $contains _POSIX_VERSION $usrinc/sys/unistd.h >/dev/null 2>&1
3962                 then
3963                         dflt="$dflt -posix"
3964                 fi
3965                 ;;
3966         esac
3967         ;;
3968 esac
3969
3970 case "$mips_type" in
3971 *BSD*|'') inclwanted="$locincpth $usrinc";;
3972 *) inclwanted="$locincpth $inclwanted $usrinc/bsd";;
3973 esac
3974 for thisincl in $inclwanted; do
3975         if $test -d $thisincl; then
3976                 if $test x$thisincl != x$usrinc; then
3977                         case "$dflt" in
3978                         *$thisincl*);;
3979                         *) dflt="$dflt -I$thisincl";;
3980                         esac
3981                 fi
3982         fi
3983 done
3984
3985 inctest='if $contains $2 $usrinc/$1 >/dev/null 2>&1; then
3986         xxx=true;
3987 elif $contains $2 $usrinc/sys/$1 >/dev/null 2>&1; then
3988         xxx=true;
3989 else
3990         xxx=false;
3991 fi;
3992 if $xxx; then
3993         case "$dflt" in
3994         *$2*);;
3995         *) dflt="$dflt -D$2";;
3996         esac;
3997 fi'
3998
3999 if ./osf1; then
4000         set signal.h __LANGUAGE_C__; eval $inctest
4001 else
4002         set signal.h LANGUAGE_C; eval $inctest
4003 fi
4004
4005 case "$hint" in
4006 none|recommended) dflt="$ccflags $dflt" ;;
4007 *) dflt="$ccflags";;
4008 esac
4009
4010 case "$dflt" in
4011 ''|' ') dflt=none;;
4012 esac
4013 $cat <<EOH
4014
4015 Your C compiler may want other flags.  For this question you should include
4016 -I/whatever and -DWHATEVER flags and any other flags used by the C compiler,
4017 but you should NOT include libraries or ld flags like -lwhatever.  If you
4018 want $package to honor its debug switch, you should include -DDEBUGGING here.
4019 Your C compiler might also need additional flags, such as -D_POSIX_SOURCE.
4020
4021 To use no flags, specify the word "none".
4022
4023 EOH
4024 set X $dflt
4025 shift
4026 dflt=${1+"$@"}
4027 rp="Any additional cc flags?"
4028 . ./myread
4029 case "$ans" in
4030 none) ccflags='';;
4031 *) ccflags="$ans";;
4032 esac
4033
4034 : the following weeds options from ccflags that are of no interest to cpp
4035 cppflags="$ccflags"
4036 case "$gccversion" in
4037 1*) cppflags="$cppflags -D__GNUC__"
4038 esac
4039 case "$mips_type" in
4040 '');;
4041 *BSD*) cppflags="$cppflags -DSYSTYPE_BSD43";;
4042 esac
4043 case "$cppflags" in
4044 '');;
4045 *)
4046         echo " "
4047         echo "Let me guess what the preprocessor flags are..." >&4
4048         set X $cppflags
4049         shift
4050         cppflags=''
4051         $cat >cpp.c <<'EOM'
4052 #define BLURFL foo
4053
4054 BLURFL xx LFRULB
4055 EOM
4056         previous=''
4057         for flag in $*
4058         do
4059                 case "$flag" in
4060                 -*) ftry="$flag";;
4061                 *) ftry="$previous $flag";;
4062                 esac
4063                 if $cppstdin -DLFRULB=bar $cppflags $ftry $cppminus <cpp.c \
4064                         >cpp1.out 2>/dev/null && \
4065                         $cpprun -DLFRULB=bar $cppflags $ftry $cpplast <cpp.c \
4066                         >cpp2.out 2>/dev/null && \
4067                         $contains 'foo.*xx.*bar' cpp1.out >/dev/null 2>&1 && \
4068                         $contains 'foo.*xx.*bar' cpp2.out >/dev/null 2>&1
4069                 then
4070                         cppflags="$cppflags $ftry"
4071                         previous=''
4072                 else
4073                         previous="$flag"
4074                 fi
4075         done
4076         set X $cppflags
4077         shift
4078         cppflags=${1+"$@"}
4079         case "$cppflags" in
4080         *-*)  echo "They appear to be: $cppflags";;
4081         esac
4082         $rm -f cpp.c cpp?.out
4083         ;;
4084 esac
4085
4086 : flags used in final linking phase
4087 case "$ldflags" in
4088 '') if ./venix; then
4089                 dflt='-i -z'
4090         else
4091                 dflt=''
4092         fi
4093         case "$ccflags" in
4094         *-posix*) dflt="$dflt -posix" ;;
4095         esac
4096         ;;
4097 *) dflt="$ldflags";;
4098 esac
4099
4100 : Try to guess additional flags to pick up local libraries.
4101 for thislibdir in $libpth; do
4102         case " $loclibpth " in
4103         *" $thislibdir "*)
4104                 case "$dflt " in 
4105                 *"-L$thislibdir "*) ;;
4106                 *)  dflt="$dflt -L$thislibdir" ;;
4107                 esac
4108                 ;;
4109         esac
4110 done
4111
4112 case "$dflt" in
4113 '') dflt='none' ;;
4114 esac
4115
4116 $cat <<EOH
4117
4118 Your C linker may need flags.  For this question you should
4119 include -L/whatever and any other flags used by the C linker, but you
4120 should NOT include libraries like -lwhatever.
4121
4122 Make sure you include the appropriate -L/path flags if your C linker
4123 does not normally search all of the directories you specified above,
4124 namely
4125         $libpth
4126 To use no flags, specify the word "none".
4127
4128 EOH
4129
4130 rp="Any additional ld flags (NOT including libraries)?"
4131 . ./myread
4132 case "$ans" in
4133 none) ldflags='';;
4134 *) ldflags="$ans";;
4135 esac
4136 rmlist="$rmlist pdp11"
4137
4138 : coherency check
4139 echo " "
4140 echo "Checking your choice of C compiler and flags for coherency..." >&4
4141 $cat > try.c <<'EOF'
4142 #include <stdio.h>
4143 main() { printf("Ok\n"); exit(0); }
4144 EOF
4145 set X $cc $optimize $ccflags -o try $ldflags try.c $libs
4146 shift
4147 $cat >try.msg <<'EOM'
4148 I've tried to compile and run the following simple program:
4149
4150 EOM
4151 $cat try.c
4152
4153 $cat >> try.msg <<EOM
4154
4155 I used the command:
4156
4157         $*
4158         ./try
4159
4160 and I got the following output:
4161
4162 EOM
4163 dflt=y
4164 if sh -c "$cc $optimize $ccflags -o try $ldflags try.c $libs" >>try.msg 2>&1; then
4165         if sh -c './try' >>try.msg 2>&1; then
4166                 xxx=`./try`
4167                 case "$xxx" in
4168                 "Ok") dflt=n ;;
4169                 *)      echo 'The program compiled OK, but produced no output.' >> try.msg
4170                         case " $libs " in
4171                         *" -lsfio "*)
4172                                 cat >> try.msg <<'EOQS'
4173 If $libs contains -lsfio, and sfio is mis-configured, then it
4174 sometimes (apparently) runs and exits with a 0 status, but with no
4175 output!  It may have to do with sfio's use of _exit vs. exit.
4176
4177 EOQS
4178                                 rp="You have a big problem.  Shall I abort Configure"
4179                                 dflt=y
4180                                 ;;
4181                         esac
4182                         ;;
4183                 esac
4184         else
4185                 echo "The program compiled OK, but exited with status $?." >>try.msg
4186                 rp="You have a problem.  Shall I abort Configure"
4187                 dflt=y
4188         fi
4189 else
4190         echo "I can't compile the test program." >>try.msg
4191         rp="You have a BIG problem.  Shall I abort Configure"
4192         dflt=y
4193 fi
4194 case "$dflt" in
4195 y)
4196         $cat try.msg >&4
4197         case "$knowitall" in
4198         '')
4199                 echo "(The supplied flags or libraries might be incorrect.)"
4200                 ;;
4201         *) dflt=n;;
4202         esac
4203         echo " "
4204         . ./myread
4205         case "$ans" in
4206         n*|N*) ;;
4207         *)      echo "Ok.  Stopping Configure." >&4
4208                 exit 1
4209                 ;;
4210         esac
4211         ;;
4212 n) echo "OK, that should do.";;
4213 esac
4214 $rm -f try try.* core
4215
4216 : determine filename position in cpp output
4217 echo " "
4218 echo "Computing filename position in cpp output for #include directives..." >&4
4219 echo '#include <stdio.h>' > foo.c
4220 $cat >fieldn <<EOF
4221 $startsh
4222 $cppstdin $cppflags $cppminus <foo.c 2>/dev/null | \
4223 $grep '^[       ]*#.*stdio\.h' | \
4224 while read cline; do
4225         pos=1
4226         set \$cline
4227         while $test \$# -gt 0; do
4228                 if $test -r \`echo \$1 | $tr -d '"'\`; then
4229                         echo "\$pos"
4230                         exit 0
4231                 fi
4232                 shift
4233                 pos=\`expr \$pos + 1\`
4234         done
4235 done
4236 EOF
4237 chmod +x fieldn
4238 fieldn=`./fieldn`
4239 $rm -f foo.c fieldn
4240 case $fieldn in
4241 '') pos='???';;
4242 1) pos=first;;
4243 2) pos=second;;
4244 3) pos=third;;
4245 *) pos="${fieldn}th";;
4246 esac
4247 echo "Your cpp writes the filename in the $pos field of the line."
4248
4249 : locate header file
4250 $cat >findhdr <<EOF
4251 $startsh
4252 wanted=\$1
4253 name=''
4254 if test -f $usrinc/\$wanted; then
4255         echo "$usrinc/\$wanted"
4256         exit 0
4257 fi
4258 awkprg='{ print \$$fieldn }'
4259 echo "#include <\$wanted>" > foo\$\$.c
4260 $cppstdin $cppminus $cppflags < foo\$\$.c 2>/dev/null | \
4261 $grep "^[       ]*#.*\$wanted" | \
4262 while read cline; do
4263         name=\`echo \$cline | $awk "\$awkprg" | $tr -d '"'\`
4264         case "\$name" in
4265         */\$wanted) echo "\$name"; exit 0;;
4266         *) name='';;
4267         esac;
4268 done;
4269 $rm -f foo\$\$.c;
4270 case "\$name" in
4271 '') exit 1;;
4272 esac
4273 EOF
4274 chmod +x findhdr
4275
4276 : define an alternate in-header-list? function
4277 inhdr='echo " "; td=$define; tu=$undef; yyy=$@;
4278 cont=true; xxf="echo \"<\$1> found.\" >&4";
4279 case $# in 2) xxnf="echo \"<\$1> NOT found.\" >&4";;
4280 *) xxnf="echo \"<\$1> NOT found, ...\" >&4";;
4281 esac;
4282 case $# in 4) instead=instead;; *) instead="at last";; esac;
4283 while $test "$cont"; do
4284         xxx=`./findhdr $1`
4285         var=$2; eval "was=\$$2";
4286         if $test "$xxx" && $test -r "$xxx";
4287         then eval $xxf;
4288         eval "case \"\$$var\" in $undef) . ./whoa; esac"; eval "$var=\$td";
4289                 cont="";
4290         else eval $xxnf;
4291         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu"; fi;
4292         set $yyy; shift; shift; yyy=$@;
4293         case $# in 0) cont="";;
4294         2) xxf="echo \"but I found <\$1> $instead.\" >&4";
4295                 xxnf="echo \"and I did not find <\$1> either.\" >&4";;
4296         *) xxf="echo \"but I found <\$1\> instead.\" >&4";
4297                 xxnf="echo \"there is no <\$1>, ...\" >&4";;
4298         esac;
4299 done;
4300 while $test "$yyy";
4301 do set $yyy; var=$2; eval "was=\$$2";
4302         eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu";
4303         set $yyy; shift; shift; yyy=$@;
4304 done'
4305
4306 : see if this is a malloc.h system
4307 set malloc.h i_malloc
4308 eval $inhdr
4309
4310 : see if stdlib is available
4311 set stdlib.h i_stdlib
4312 eval $inhdr
4313
4314 : determine which malloc to compile in
4315 echo " "
4316 case "$usemymalloc" in
4317 ''|[yY]*|true|$define)  dflt='y' ;;
4318 *)      dflt='n' ;;
4319 esac
4320 rp="Do you wish to attempt to use the malloc that comes with $package?"
4321 . ./myread
4322 usemymalloc="$ans"
4323 case "$ans" in
4324 y*|true)
4325         usemymalloc='y'
4326         mallocsrc='malloc.c'
4327         mallocobj="malloc$_o"
4328         d_mymalloc="$define"
4329         case "$libs" in
4330         *-lmalloc*)
4331                 : Remove malloc from list of libraries to use
4332                 echo "Removing unneeded -lmalloc from library list" >&4
4333                 set `echo X $libs | $sed -e 's/-lmalloc / /' -e 's/-lmalloc$//'`
4334                 shift
4335                 libs="$*"
4336                 echo "libs = $libs" >&4
4337                 ;;
4338         esac
4339         ;;
4340 *)
4341         usemymalloc='n'
4342         mallocsrc=''
4343         mallocobj=''
4344         d_mymalloc="$undef"
4345         ;;
4346 esac
4347
4348 : compute the return types of malloc and free
4349 echo " "
4350 $cat >malloc.c <<END
4351 #$i_malloc I_MALLOC
4352 #$i_stdlib I_STDLIB
4353 #include <stdio.h>
4354 #include <sys/types.h>
4355 #ifdef I_MALLOC
4356 #include <malloc.h>
4357 #endif
4358 #ifdef I_STDLIB
4359 #include <stdlib.h>
4360 #endif
4361 #ifdef TRY_MALLOC
4362 void *malloc();
4363 #endif
4364 #ifdef TRY_FREE
4365 void free();
4366 #endif
4367 END
4368 case "$malloctype" in
4369 '')
4370         if $cc $ccflags -c -DTRY_MALLOC malloc.c >/dev/null 2>&1; then
4371                 malloctype='void *'
4372         else
4373                 malloctype='char *'
4374         fi
4375         ;;
4376 esac
4377 echo "Your system wants malloc to return '$malloctype', it would seem." >&4
4378
4379 case "$freetype" in
4380 '')
4381         if $cc $ccflags -c -DTRY_FREE malloc.c >/dev/null 2>&1; then
4382                 freetype='void'
4383         else
4384                 freetype='int'
4385         fi
4386         ;;
4387 esac
4388 echo "Your system uses $freetype free(), it would seem." >&4
4389 $rm -f malloc.[co]
4390 : Cruising for prototypes
4391 echo " "
4392 echo "Checking out function prototypes..." >&4
4393 $cat >prototype.c <<'EOCP'
4394 main(int argc, char *argv[]) {
4395         exit(0);}
4396 EOCP
4397 if $cc $ccflags -c prototype.c >prototype.out 2>&1 ; then
4398         echo "Your C compiler appears to support function prototypes."
4399         val="$define"
4400 else
4401         echo "Your C compiler doesn't seem to understand function prototypes."
4402         val="$undef"
4403 fi
4404 set prototype
4405 eval $setvar
4406 $rm -f prototype*
4407
4408 case "$prototype" in
4409 "$define") ;;
4410 *)      ansi2knr='ansi2knr'
4411         echo " "
4412         cat <<EOM >&4
4413
4414 $me:  FATAL ERROR:
4415 This version of $package can only be compiled by a compiler that 
4416 understands function prototypes.  Unfortunately, your C compiler 
4417         $cc $ccflags
4418 doesn't seem to understand them.  Sorry about that.
4419
4420 If GNU cc is available for your system, perhaps you could try that instead.  
4421
4422 Eventually, we hope to support building Perl with pre-ANSI compilers.
4423 If you would like to help in that effort, please contact <perlbug@perl.org>.
4424
4425 Aborting Configure now.
4426 EOM
4427         exit 2
4428         ;;
4429 esac
4430
4431 : determine where public executables go
4432 echo " "
4433 set dflt bin bin
4434 eval $prefixit
4435 fn=d~
4436 rp='Pathname where the public executables will reside?'
4437 . ./getfile
4438 if $test "X$ansexp" != "X$binexp"; then
4439         installbin=''
4440 fi
4441 bin="$ans"
4442 binexp="$ansexp"
4443 if $afs; then
4444         $cat <<EOM
4445
4446 Since you are running AFS, I need to distinguish the directory in which
4447 executables reside from the directory in which they are installed (and from
4448 which they are presumably copied to the former directory by occult means).
4449
4450 EOM
4451         case "$installbin" in
4452         '') dflt=`echo $binexp | sed 's#^/afs/#/afs/.#'`;;
4453         *) dflt="$installbin";;
4454         esac
4455         fn=de~
4456         rp='Where will public executables be installed?'
4457         . ./getfile
4458         installbin="$ans"
4459 else
4460         installbin="$binexp"
4461 fi
4462
4463 : define a shorthand compile call
4464 compile='
4465 mc_file=$1;
4466 shift;
4467 $cc $optimize $ccflags $ldflags -o ${mc_file} $* ${mc_file}.c $libs > /dev/null 2>&1;'
4468 : define a shorthand compile call for compilations that should be ok.
4469 compile_ok='
4470 mc_file=$1;
4471 shift;
4472 $cc $optimize $ccflags $ldflags -o ${mc_file} $* ${mc_file}.c $libs;'
4473
4474 echo " "
4475 echo "Checking for GNU C Library..." >&4
4476 cat >gnulibc.c <<EOM
4477 #include <stdio.h>
4478 int
4479 main()
4480 {
4481 #ifdef __GLIBC__
4482     exit(0);
4483 #else
4484     exit(1);
4485 #endif
4486 }
4487 EOM
4488 set gnulibc
4489 if eval $compile_ok && ./gnulibc; then
4490         val="$define"
4491         echo "You are using the GNU C Library"
4492 else
4493         val="$undef"
4494         echo "You are not using the GNU C Library"
4495 fi
4496 $rm -f gnulibc*
4497 set d_gnulibc
4498 eval $setvar
4499
4500 : see if nm is to be used to determine whether a symbol is defined or not
4501 case "$usenm" in
4502 '')
4503         dflt=''
4504         case "$d_gnulibc" in
4505         "$define")
4506                 echo " "
4507                 echo "nm probably won't work on the GNU C Library." >&4
4508                 dflt=n
4509                 ;;
4510         esac
4511         case "$dflt" in
4512         '') 
4513                 if $test "$osname" = aix -a ! -f /lib/syscalls.exp; then
4514                         echo " "
4515                         echo "Whoops!  This is an AIX system without /lib/syscalls.exp!" >&4
4516                         echo "'nm' won't be sufficient on this sytem." >&4
4517                         dflt=n
4518                 fi
4519                 ;;
4520         esac
4521         case "$dflt" in
4522         '') dflt=`$egrep 'inlibc|csym' $rsrc/Configure | wc -l 2>/dev/null`
4523                 if $test $dflt -gt 20; then
4524                         dflt=y
4525                 else
4526                         dflt=n
4527                 fi
4528                 ;;
4529         esac
4530         ;;
4531 *)
4532         case "$usenm" in
4533         true|$define) dflt=y;;
4534         *) dflt=n;;
4535         esac
4536         ;;
4537 esac
4538 $cat <<EOM
4539
4540 I can use $nm to extract the symbols from your C libraries. This
4541 is a time consuming task which may generate huge output on the disk (up
4542 to 3 megabytes) but that should make the symbols extraction faster. The
4543 alternative is to skip the 'nm' extraction part and to compile a small
4544 test program instead to determine whether each symbol is present. If
4545 you have a fast C compiler and/or if your 'nm' output cannot be parsed,
4546 this may be the best solution.
4547
4548 You probably shouldn't let me use 'nm' if you are using the GNU C Library.
4549
4550 EOM
4551 rp="Shall I use $nm to extract C symbols from the libraries?"
4552 . ./myread
4553 case "$ans" in
4554 [Nn]*) usenm=false;;
4555 *) usenm=true;;
4556 esac
4557
4558 runnm=$usenm
4559 case "$reuseval" in
4560 true) runnm=false;;
4561 esac
4562
4563 : nm options which may be necessary
4564 case "$nm_opt" in
4565 '') if $test -f /mach_boot; then
4566                 nm_opt=''       # Mach
4567         elif $test -d /usr/ccs/lib; then
4568                 nm_opt='-p'     # Solaris (and SunOS?)
4569         elif $test -f /dgux; then
4570                 nm_opt='-p'     # DG-UX
4571         elif $test -f /lib64/rld; then
4572                 nm_opt='-p'     # 64-bit Irix
4573         else
4574                 nm_opt=''
4575         fi;;
4576 esac
4577
4578 : nm options which may be necessary for shared libraries but illegal
4579 : for archive libraries.  Thank you, Linux.
4580 case "$nm_so_opt" in
4581 '')     case "$myuname" in
4582         *linux*)
4583                 if $nm --help | $grep 'dynamic' > /dev/null 2>&1; then
4584                         nm_so_opt='--dynamic'
4585                 fi
4586                 ;;
4587         esac
4588         ;;
4589 esac
4590
4591 case "$runnm" in
4592 true)
4593 : get list of predefined functions in a handy place
4594 echo " "
4595 case "$libc" in
4596 '') libc=unknown
4597         case "$libs" in
4598         *-lc_s*) libc=`./loc libc_s$_a $libc $libpth`
4599         esac
4600         ;;
4601 esac
4602 libnames='';
4603 case "$libs" in
4604 '') ;;
4605 *)  for thislib in $libs; do
4606         case "$thislib" in
4607         -lc|-lc_s)
4608                 : Handle C library specially below.
4609                 ;;
4610         -l*)
4611                 thislib=`echo $thislib | $sed -e 's/^-l//'`
4612                 if try=`./loc lib$thislib.$so.'*' X $libpth`; $test -f "$try"; then
4613                         :
4614                 elif try=`./loc lib$thislib.$so X $libpth`; $test -f "$try"; then
4615                         :
4616                 elif try=`./loc lib$thislib$_a X $libpth`; $test -f "$try"; then
4617                         :
4618                 elif try=`./loc $thislib$_a X $libpth`; $test -f "$try"; then
4619                         :
4620                 elif try=`./loc lib$thislib X $libpth`; $test -f "$try"; then
4621                         :
4622                 elif try=`./loc $thislib X $libpth`; $test -f "$try"; then
4623                         :
4624                 elif try=`./loc Slib$thislib$_a X $xlibpth`; $test -f "$try"; then
4625                         :
4626                 else
4627                         try=''
4628                 fi
4629                 libnames="$libnames $try"
4630                 ;;
4631         *) libnames="$libnames $thislib" ;;
4632         esac
4633         done
4634         ;;
4635 esac
4636 xxx=normal
4637 case "$libc" in
4638 unknown)
4639         set /lib/libc.$so
4640         for xxx in $libpth; do
4641                 $test -r $1 || set $xxx/libc.$so
4642                 : The messy sed command sorts on library version numbers.
4643                 $test -r $1 || \
4644                         set `echo blurfl; echo $xxx/libc.$so.[0-9]* | \
4645                         tr ' ' $trnl | egrep -v '\.[A-Za-z]*$' | $sed -e '
4646                                 h
4647                                 s/[0-9][0-9]*/0000&/g
4648                                 s/0*\([0-9][0-9][0-9][0-9][0-9]\)/\1/g
4649                                 G
4650                                 s/\n/ /' | \
4651                          sort | $sed -e 's/^.* //'`
4652                 eval set \$$#
4653         done
4654         $test -r $1 || set /usr/ccs/lib/libc.$so
4655         $test -r $1 || set /lib/libsys_s$_a
4656         ;;
4657 *)
4658         set blurfl
4659         ;;
4660 esac
4661 if $test -r "$1"; then
4662         echo "Your (shared) C library seems to be in $1."
4663         libc="$1"
4664 elif $test -r /lib/libc && $test -r /lib/clib; then
4665         echo "Your C library seems to be in both /lib/clib and /lib/libc."
4666         xxx=apollo
4667         libc='/lib/clib /lib/libc'
4668         if $test -r /lib/syslib; then
4669                 echo "(Your math library is in /lib/syslib.)"
4670                 libc="$libc /lib/syslib"
4671         fi
4672 elif $test -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
4673         echo "Your C library seems to be in $libc, as you said before."
4674 elif $test -r $incpath/usr/lib/libc$_a; then
4675         libc=$incpath/usr/lib/libc$_a;
4676         echo "Your C library seems to be in $libc.  That's fine."
4677 elif $test -r /lib/libc$_a; then
4678         libc=/lib/libc$_a;
4679         echo "Your C library seems to be in $libc.  You're normal."
4680 else
4681         if tans=`./loc libc$_a blurfl/dyick $libpth`; $test -r "$tans"; then
4682                 :
4683         elif tans=`./loc libc blurfl/dyick $libpth`; $test -r "$tans"; then
4684                 libnames="$libnames "`./loc clib blurfl/dyick $libpth`
4685         elif tans=`./loc clib blurfl/dyick $libpth`; $test -r "$tans"; then
4686                 :
4687         elif tans=`./loc Slibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
4688                 :
4689         elif tans=`./loc Mlibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
4690                 :
4691         else
4692                 tans=`./loc Llibc$_a blurfl/dyick $xlibpth`
4693         fi
4694         if $test -r "$tans"; then
4695                 echo "Your C library seems to be in $tans, of all places."
4696                 libc=$tans
4697         else
4698                 libc='blurfl'
4699         fi
4700 fi
4701 if $test $xxx = apollo -o -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
4702         dflt="$libc"
4703         cat <<EOM
4704
4705 If the guess above is wrong (which it might be if you're using a strange
4706 compiler, or your machine supports multiple models), you can override it here.
4707
4708 EOM
4709 else
4710         dflt=''
4711         echo $libpth | tr ' ' $trnl | sort | uniq > libpath
4712         cat >&4 <<EOM
4713 I can't seem to find your C library.  I've looked in the following places:
4714
4715 EOM
4716         $sed 's/^/      /' libpath
4717         cat <<EOM
4718
4719 None of these seems to contain your C library. I need to get its name...
4720
4721 EOM
4722 fi
4723 fn=f
4724 rp='Where is your C library?'
4725 . ./getfile
4726 libc="$ans"
4727
4728 echo " "
4729 echo $libc $libnames | tr ' ' $trnl | sort | uniq > libnames
4730 set X `cat libnames`
4731 shift
4732 xxx=files
4733 case $# in 1) xxx=file; esac
4734 echo "Extracting names from the following $xxx for later perusal:" >&4
4735 echo " "
4736 $sed 's/^/      /' libnames >&4
4737 echo " "
4738 $echo $n "This may take a while...$c" >&4
4739
4740 for file in $*; do
4741         case $file in
4742         *$so*) $nm $nm_so_opt $nm_opt $file 2>/dev/null;;
4743         *) $nm $nm_opt $file 2>/dev/null;;
4744         esac
4745 done >libc.tmp
4746
4747 $echo $n ".$c"
4748 $grep fprintf libc.tmp > libc.ptf
4749 xscan='eval "<libc.ptf $com >libc.list"; $echo $n ".$c" >&4'
4750 xrun='eval "<libc.tmp $com >libc.list"; echo "done" >&4'
4751 xxx='[ADTSIW]'
4752 if com="$sed -n -e 's/__IO//' -e 's/^.* $xxx  *_[_.]*//p' -e 's/^.* $xxx  *//p'";\
4753         eval $xscan;\
4754         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
4755                 eval $xrun
4756 elif com="$sed -n -e 's/^__*//' -e 's/^\([a-zA-Z_0-9$]*\).*xtern.*/\1/p'";\
4757         eval $xscan;\
4758         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
4759                 eval $xrun
4760 elif com="$sed -n -e '/|UNDEF/d' -e '/FUNC..GL/s/^.*|__*//p'";\
4761         eval $xscan;\
4762         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
4763                 eval $xrun
4764 elif com="$sed -n -e 's/^.* D __*//p' -e 's/^.* D //p'";\
4765         eval $xscan;\
4766         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
4767                 eval $xrun
4768 elif com="$sed -n -e 's/^_//' -e 's/^\([a-zA-Z_0-9]*\).*xtern.*text.*/\1/p'";\
4769         eval $xscan;\
4770         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
4771                 eval $xrun
4772 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p'";\
4773         eval $xscan;\
4774         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
4775                 eval $xrun
4776 elif com="$grep '|' | $sed -n -e '/|COMMON/d' -e '/|DATA/d' \
4777                                 -e '/ file/d' -e 's/^\([^       ]*\).*/\1/p'";\
4778         eval $xscan;\
4779         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
4780                 eval $xrun
4781 elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p' -e 's/^.*|FUNC |WEAK .*|//p'";\
4782         eval $xscan;\
4783         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
4784                 eval $xrun
4785 elif com="$sed -n -e 's/^__//' -e '/|Undef/d' -e '/|Proc/s/ .*//p'";\
4786         eval $xscan;\
4787         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
4788                 eval $xrun
4789 elif com="$sed -n -e 's/^.*|Proc .*|Text *| *//p'";\
4790         eval $xscan;\
4791         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
4792                 eval $xrun
4793 elif com="$sed -n -e '/Def. Text/s/.* \([^ ]*\)\$/\1/p'";\
4794         eval $xscan;\
4795         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
4796                 eval $xrun
4797 elif com="$sed -n -e 's/^[-0-9a-f ]*_\(.*\)=.*/\1/p'";\
4798         eval $xscan;\
4799         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
4800                 eval $xrun
4801 elif com="$sed -n -e 's/.*\.text n\ \ \ \.//p'";\
4802         eval $xscan;\
4803         $contains '^fprintf$' libc.list >/dev/null 2>&1; then
4804                 eval $xrun
4805 else
4806         $nm -p $* 2>/dev/null >libc.tmp
4807         $grep fprintf libc.tmp > libc.ptf
4808         if com="$sed -n -e 's/^.* [ADTSIW]  *_[_.]*//p' -e 's/^.* [ADTSIW] //p'";\
4809                 eval $xscan; $contains '^fprintf$' libc.list >/dev/null 2>&1
4810         then
4811                 nm_opt='-p'
4812                 eval $xrun
4813         else
4814                 echo " "
4815                 echo "$nm didn't seem to work right. Trying $ar instead..." >&4
4816                 com=''
4817                 if $ar t $libc > libc.tmp && $contains '^fprintf$' libc.tmp >/dev/null 2>&1; then
4818                         for thisname in $libnames $libc; do
4819                                 $ar t $thisname >>libc.tmp
4820                         done
4821                         $sed -e "s/\\$_o\$//" < libc.tmp > libc.list
4822                         echo "Ok." >&4
4823                 elif test "X$osname" = "Xos2" && $ar tv $libc > libc.tmp; then
4824                         # Repeat libc to extract forwarders to DLL entries too
4825                         for thisname in $libnames $libc; do
4826                                 $ar tv $thisname >>libc.tmp
4827                                 # Revision 50 of EMX has bug in $ar.
4828                                 # it will not extract forwarders to DLL entries
4829                                 # Use emximp which will extract exactly them.
4830                                 emximp -o tmp.imp $thisname \
4831                                     2>/dev/null && \
4832                                     $sed -e 's/^\([_a-zA-Z0-9]*\) .*$/\1/p' \
4833                                     < tmp.imp >>libc.tmp
4834                                 $rm tmp.imp
4835                         done
4836                         $sed -e "s/\\$_o\$//" -e 's/^ \+//' < libc.tmp > libc.list
4837                         echo "Ok." >&4
4838                 else
4839                         echo "$ar didn't seem to work right." >&4
4840                         echo "Maybe this is a Cray...trying bld instead..." >&4
4841                         if bld t $libc | $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" > libc.list
4842                         then
4843                                 for thisname in $libnames; do
4844                                         bld t $libnames | \
4845                                         $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" >>libc.list
4846                                         $ar t $thisname >>libc.tmp
4847                                 done
4848                                 echo "Ok." >&4
4849                         else
4850                                 echo "That didn't work either.  Giving up." >&4
4851                                 exit 1
4852                         fi
4853                 fi
4854         fi
4855 fi
4856 nm_extract="$com"
4857 if $test -f /lib/syscalls.exp; then
4858         echo " "
4859         echo "Also extracting names from /lib/syscalls.exp for good ole AIX..." >&4
4860         $sed -n 's/^\([^        ]*\)[   ]*syscall$/\1/p' /lib/syscalls.exp >>libc.list
4861 fi
4862 ;;
4863 esac
4864 $rm -f libnames libpath
4865
4866 : see if dld is available
4867 set dld.h i_dld
4868 eval $inhdr
4869
4870 : is a C symbol defined?
4871 csym='tlook=$1;
4872 case "$3" in
4873 -v) tf=libc.tmp; tc=""; tdc="";;
4874 -a) tf=libc.tmp; tc="[0]"; tdc="[]";;
4875 *) tlook="^$1\$"; tf=libc.list; tc="()"; tdc="()";;
4876 esac;
4877 tx=yes;
4878 case "$reuseval-$4" in
4879 true-) ;;
4880 true-*) tx=no; eval "tval=\$$4"; case "$tval" in "") tx=yes;; esac;;
4881 esac;
4882 case "$tx" in
4883 yes)
4884         case "$runnm" in
4885         true)
4886                 if $contains $tlook $tf >/dev/null 2>&1;
4887                 then tval=true;
4888                 else tval=false;
4889                 fi;;
4890         *)
4891                 echo "main() { extern short $1$tdc; printf(\"%hd\", $1$tc); }" > t.c;
4892                 if $cc $optimize $ccflags $ldflags -o t t.c $libs >/dev/null 2>&1;
4893                 then tval=true;
4894                 else tval=false;
4895                 fi;
4896                 $rm -f t t.c;;
4897         esac;;
4898 *)
4899         case "$tval" in
4900         $define) tval=true;;
4901         *) tval=false;;
4902         esac;;
4903 esac;
4904 eval "$2=$tval"'
4905
4906 : define an is-in-libc? function
4907 inlibc='echo " "; td=$define; tu=$undef;
4908 sym=$1; var=$2; eval "was=\$$2";
4909 tx=yes;
4910 case "$reuseval$was" in
4911 true) ;;
4912 true*) tx=no;;
4913 esac;
4914 case "$tx" in
4915 yes)
4916         set $sym tres -f;
4917         eval $csym;
4918         case "$tres" in
4919         true)
4920                 echo "$sym() found." >&4;
4921                 case "$was" in $undef) . ./whoa; esac; eval "$var=\$td";;
4922         *)
4923                 echo "$sym() NOT found." >&4;
4924                 case "$was" in $define) . ./whoa; esac; eval "$var=\$tu";;
4925         esac;;
4926 *)
4927         case "$was" in
4928         $define) echo "$sym() found." >&4;;
4929         *) echo "$sym() NOT found." >&4;;
4930         esac;;
4931 esac'
4932
4933 : see if dlopen exists
4934 xxx_runnm="$runnm"
4935 runnm=false
4936 set dlopen d_dlopen
4937 eval $inlibc
4938 runnm="$xxx_runnm"
4939
4940 : determine which dynamic loading, if any, to compile in
4941 echo " "
4942 dldir="ext/DynaLoader"
4943 case "$usedl" in
4944 $define|y|true)
4945         dflt='y'
4946         usedl="$define"
4947         ;;
4948 $undef|n|false)
4949         dflt='n'
4950         usedl="$undef"
4951         ;;
4952 *) 
4953         dflt='n'
4954         case "$d_dlopen" in
4955             $define) dflt='y' ;;
4956         esac
4957         case "$i_dld" in
4958             $define) dflt='y' ;;
4959         esac
4960         : Does a dl_xxx.xs file exist for this operating system
4961         $test -f $rsrc/$dldir/dl_${osname}.xs && dflt='y'
4962         ;;
4963 esac
4964 rp="Do you wish to use dynamic loading?"
4965 . ./myread
4966 usedl="$ans"
4967 case "$ans" in
4968 y*) usedl="$define"
4969         case "$dlsrc" in
4970         '')
4971                 if $test -f $rsrc/$dldir/dl_${osname}.xs ; then
4972                         dflt="$dldir/dl_${osname}.xs"
4973                 elif $test "$d_dlopen" = "$define" ; then
4974                         dflt="$dldir/dl_dlopen.xs"
4975                 elif $test "$i_dld" = "$define" ; then
4976                         dflt="$dldir/dl_dld.xs"
4977                 else
4978                         dflt=''
4979                 fi
4980                 ;;
4981         *)      dflt="$dldir/$dlsrc"
4982                 ;;
4983         esac
4984     echo "The following dynamic loading files are available:"
4985         : Can not go over to $dldir because getfile has path hard-coded in.
4986         tdir=`pwd`; cd $rsrc; $ls -C $dldir/dl*.xs; cd $tdir
4987         rp="Source file to use for dynamic loading"
4988         fn="fne"
4989         # XXX This getfile call will fail the existence check if you try 
4990         # building away from $src (this is not supported yet).
4991         . ./getfile
4992         usedl="$define"
4993         : emulate basename
4994         dlsrc=`echo $ans | $sed -e 's@.*/\([^/]*\)$@\1@'`
4995
4996         $cat << EOM
4997
4998 Some systems may require passing special flags to $cc -c to
4999 compile modules that will be used to create a shared library.
5000 To use no flags, say "none".
5001
5002 EOM
5003     case "$cccdlflags" in
5004     '') case "$gccversion" in
5005                 '') case "$osname" in
5006                         hpux)   dflt='+z' ;;
5007                         next)   dflt='none' ;;
5008                         irix*)  dflt='-KPIC' ;;
5009                         svr4*|esix*|solaris) dflt='-KPIC' ;;
5010                         sunos)  dflt='-pic' ;;
5011                         *)      dflt='none' ;;
5012                     esac
5013                         ;;
5014                 *)  case "$osname" in
5015                         svr4*|esix*|solaris) dflt='-fPIC' ;;
5016                         *)      dflt='-fpic' ;;
5017                     esac ;;
5018             esac ;;
5019         ' ') dflt='none' ;;
5020     *)  dflt="$cccdlflags" ;;
5021     esac
5022     rp="Any special flags to pass to $cc -c to compile shared library modules?"
5023     . ./myread
5024     case "$ans" in
5025     none) cccdlflags=' ' ;;
5026     *) cccdlflags="$ans" ;;
5027     esac
5028
5029     cat << EOM
5030
5031 Some systems use ld to create libraries that can be dynamically loaded,
5032 while other systems (such as those using ELF) use $cc.
5033
5034 EOM
5035         case "$ld" in
5036         '')     $cat >try.c <<'EOM'
5037 /* Test for whether ELF binaries are produced */
5038 #include <fcntl.h>
5039 #include <stdlib.h>
5040 main() {
5041         char b[4];
5042         int i = open("a.out",O_RDONLY);
5043         if(i == -1) 
5044                 exit(1); /* fail */
5045         if(read(i,b,4)==4 && b[0]==127 && b[1]=='E' && b[2]=='L' && b[3]=='F')
5046                 exit(0); /* succeed (yes, it's ELF) */
5047         else
5048                 exit(1); /* fail */
5049 }
5050 EOM
5051                 if $cc $ccflags try.c >/dev/null 2>&1 && ./a.out; then
5052                         cat <<EOM
5053 You appear to have ELF support.  I'll use $cc to build dynamic libraries.
5054 EOM
5055                         dflt="$cc"
5056                 else
5057                         echo "I'll use ld to build dynamic libraries."
5058                         dflt='ld'
5059                 fi
5060                 rm -f try.c a.out
5061                 ;;
5062         *)      dflt="$ld"
5063                 ;;
5064         esac
5065
5066     rp="What command should be used to create dynamic libraries?"
5067     . ./myread
5068         ld="$ans"
5069
5070     cat << EOM
5071
5072 Some systems may require passing special flags to $ld to create a
5073 library that can be dynamically loaded.  If your ld flags include
5074 -L/other/path options to locate libraries outside your loader's normal
5075 search path, you may need to specify those -L options here as well.  To
5076 use no flags, say "none".
5077
5078 EOM
5079     case "$lddlflags" in
5080     '') case "$osname" in
5081                         hpux)  dflt='-b' ;;
5082                         linux|irix*)    dflt='-shared' ;;
5083                         next)  dflt='none' ;;
5084                         solaris) dflt='-G' ;;
5085                         sunos) dflt='-assert nodefinitions' ;;
5086                         svr4*|esix*) dflt="-G $ldflags" ;;
5087                 *)     dflt='none' ;;
5088                         esac
5089                         ;;
5090     *) dflt="$lddlflags" ;;
5091     esac
5092
5093         : Try to guess additional flags to pick up local libraries.
5094         for thisflag in $ldflags; do
5095                 case "$thisflag" in
5096                 -L*)
5097                         case " $dflt " in
5098                         *" $thisflag "*) ;;
5099                         *) dflt="$dflt $thisflag" ;;
5100                         esac
5101                         ;;
5102                 esac
5103         done
5104
5105         case "$dflt" in
5106         ''|' ') dflt='none' ;;
5107         esac
5108
5109     rp="Any special flags to pass to $ld to create a dynamically loaded library?"
5110     . ./myread
5111     case "$ans" in
5112     none) lddlflags=' ' ;;
5113     *) lddlflags="$ans" ;;
5114     esac
5115
5116         cat <<EOM
5117
5118 Some systems may require passing special flags to $cc to indicate that
5119 the resulting executable will use dynamic linking.  To use no flags,
5120 say "none".
5121
5122 EOM
5123     case "$ccdlflags" in
5124     '') case "$osname" in
5125                 hpux)   dflt='-Wl,-E' ;;
5126                 linux)  dflt='-rdynamic' ;;
5127                 next)   dflt='none' ;;
5128                 sunos)  dflt='none' ;;
5129                 *)      dflt='none' ;;
5130             esac ;;
5131     ' ')  dflt='none' ;;
5132     *)  dflt="$ccdlflags" ;;
5133     esac
5134     rp="Any special flags to pass to $cc to use dynamic loading?"
5135     . ./myread
5136     case "$ans" in
5137     none) ccdlflags=' ' ;;
5138     *) ccdlflags="$ans" ;;
5139     esac
5140     ;;
5141 *)  usedl="$undef"
5142         ld='ld'
5143     dlsrc='dl_none.xs'
5144     lddlflags=''
5145     ccdlflags=''
5146     ;;
5147 esac
5148
5149 also=''
5150 case "$usedl" in
5151 $undef)
5152         # No dynamic loading being used, so don't bother even to prompt.
5153         useshrplib='false'
5154         ;;
5155 *)      case "$useshrplib" in
5156         '')     case "$osname" in
5157                 svr4*|dgux|dynixptx|esix|powerux)
5158                         dflt=y
5159                         also='Building a shared libperl is required for dynamic loading to work on your system.'
5160                         ;;
5161                 next*)
5162                         case "$osvers" in
5163                         4*)     dflt=y
5164                                 also='Building a shared libperl is needed for MAB support.'
5165                                 ;;
5166                         *)      dflt=n
5167                                 ;;
5168                         esac
5169                         ;;
5170                 *)      dflt=n
5171                         ;;
5172                 esac
5173                 ;;
5174         $define|true|[Yy]*)
5175                 dflt=y
5176                 ;;
5177         *)      dflt=n
5178                 ;;
5179         esac
5180         $cat << EOM
5181
5182 The perl executable is normally obtained by linking perlmain.c with
5183 libperl${_a}, any static extensions (usually just DynaLoader), and
5184 any other libraries needed on this system (such as -lm, etc.).  Since
5185 your system supports dynamic loading, it is probably possible to build
5186 a shared libperl.$so.  If you will have more than one executable linked
5187 to libperl.$so, this will significantly reduce the size of each
5188 executable, but it may have a noticeable affect on performance.  The
5189 default is probably sensible for your system.
5190 $also
5191
5192 EOM
5193         rp="Build a shared libperl.$so (y/n)"
5194         . ./myread
5195         case "$ans" in
5196         true|$define|[Yy]*)
5197                 useshrplib='true'
5198                 # Why does next4 have to be so different?
5199                 case "${osname}${osvers}" in
5200                 next4*) xxx='DYLD_LIBRARY_PATH' ;;
5201                 os2*)   xxx='' ;; # Nothing special needed.
5202                 *)              xxx='LD_LIBRARY_PATH' ;;
5203                 esac
5204                 if test X"$xxx" != "X"; then
5205                         $cat <<EOM  | $tee -a ../config.msg >&4
5206
5207 To build perl, you must add the current working directory to your
5208 $xxx environment variable before running make.  You can do
5209 this with
5210    $xxx=\`pwd\`; export $xxx
5211 for Bourne-style shells, or
5212    setenv $xxx \`pwd\`
5213 for Csh-style shells.  You *MUST* do this before running make.
5214
5215 EOM
5216                 fi
5217                 ;;
5218         *)      useshrplib='false' ;;
5219         esac
5220         ;;
5221 esac
5222
5223 case "$useshrplib" in
5224 true)
5225         case "$libperl" in
5226         '')
5227                 # Figure out a good name for libperl.so.  Since it gets stored in
5228                 # a version-specific architecture-dependent library, the version
5229                 # number isn't really that important, except for making cc/ld happy.
5230                 #
5231                 # A name such as libperl.so.3.1
5232                 majmin="libperl.$so.$patchlevel.$subversion"
5233                 # A name such as libperl.so.301
5234                 majonly=`echo $patchlevel $subversion |
5235                         $awk '{printf "%d%02d", $1, $2}'`
5236                 majonly=libperl.$so.$majonly
5237                 # I'd prefer to keep the os-specific stuff here to a minimum, and
5238                 # rely on figuring it out from the naming of libc.
5239                 case "${osname}${osvers}" in
5240                 next4*)
5241                         dflt=libperl.5.$so
5242                         # XXX How handle the --version stuff for MAB?
5243                         ;;
5244                 linux*)  # ld won't link with a bare -lperl otherwise.
5245                         dflt=libperl.$so
5246                         ;;
5247                 *)      # Try to guess based on whether libc has major.minor.
5248                         case "$libc" in
5249                         *libc.$so.[0-9]*.[0-9]*) dflt=$majmin ;;
5250                         *libc.$so.[0-9]*) dflt=$majonly ;;
5251                         *)      dflt=libperl.$so ;;
5252                         esac
5253                         ;;
5254                 esac
5255                 ;;
5256         *)      dflt=$libperl
5257                 ;;
5258         esac
5259         cat << EOM
5260
5261 I need to select a good name for the shared libperl.  If your system uses
5262 library names with major and minor numbers, then you might want something
5263 like $majmin.  Alternatively, if your system uses a single version
5264 number for shared libraries, then you might want to use $majonly.
5265 Or, your system might be quite happy with a simple libperl.$so.
5266
5267 Since the shared libperl will get installed into a version-specific
5268 architecture-dependent directory, the version number of the shared perl
5269 library probably isn't important, so the default should be o.k.
5270
5271 EOM
5272         rp='What name do you want to give to the shared libperl?'
5273         . ./myread
5274         libperl=$ans
5275         echo "Ok, I'll use $libperl"
5276         ;;
5277 *)
5278         libperl="libperl${_a}"
5279         ;;
5280 esac
5281
5282 # Detect old use of shrpdir via undocumented Configure -Dshrpdir
5283 case "$shrpdir" in
5284 '') ;;
5285 *)      $cat >&4 <<EOM
5286 WARNING:  Use of the shrpdir variable for the installation location of
5287 the shared $libperl is not supported.  It was never documented and
5288 will not work in this version.  Let me (jhi@iki.fi)
5289 know of any problems this may cause.
5290
5291 EOM
5292         case "$shrpdir" in
5293         "$archlibexp/CORE")
5294                 $cat >&4 <<EOM
5295 But your current setting of $shrpdir is
5296 the default anyway, so it's harmless.
5297 EOM
5298                 ;;
5299         *)
5300                 $cat >&4 <<EOM
5301 Further, your current attempted setting of $shrpdir
5302 conflicts with the value of $archlibexp/CORE
5303 that installperl will use.
5304 EOM
5305                 ;;
5306         esac
5307         ;;
5308 esac
5309
5310 # How will the perl executable find the installed shared $libperl?
5311 # Add $xxx to ccdlflags.
5312 # If we can't figure out a command-line option, use $shrpenv to
5313 # set env LD_RUN_PATH.  The main perl makefile uses this.
5314 shrpdir=$archlibexp/CORE
5315 xxx=''
5316 tmp_shrpenv=''
5317 if "$useshrplib"; then
5318     case "$osname" in 
5319         aix)
5320                 # We'll set it in Makefile.SH...
5321                 ;;
5322         solaris|netbsd)
5323                 xxx="-R $shrpdir"
5324                 ;;
5325         freebsd)
5326                 xxx="-Wl,-R$shrpdir"
5327                 ;;
5328         linux|irix*|dec_osf)
5329                 xxx="-Wl,-rpath,$shrpdir"
5330                 ;;
5331         next)
5332                 # next doesn't like the default...
5333                 ;;
5334         *)
5335                 tmp_shrpenv="env LD_RUN_PATH=$shrpdir"
5336                 ;;
5337         esac
5338         case "$xxx" in
5339         '') ;;
5340         *)      
5341                 # Only add $xxx if it isn't already in ccdlflags.
5342                 case " $ccdlflags " in
5343                 *" $xxx "*)     ;;
5344                 *)      ccdlflags="$ccdlflags $xxx"
5345                         cat <<EOM >&4
5346
5347 Adding $xxx to the flags
5348 passed to $ld so that the perl executable will find the 
5349 installed shared $libperl.
5350
5351 EOM
5352                         ;;
5353                 esac
5354                 ;;
5355         esac
5356 fi
5357 # Respect a hint or command-line value.
5358 case "$shrpenv" in
5359 '') shrpenv="$tmp_shrpenv" ;;
5360 esac
5361
5362 : determine where manual pages go
5363 set man1dir man1dir none
5364 eval $prefixit
5365 $cat <<EOM
5366
5367 $spackage has manual pages available in source form.
5368 EOM
5369 case "$nroff" in
5370 nroff)
5371         echo "However, you don't have nroff, so they're probably useless to you."
5372         case "$man1dir" in
5373         '') man1dir="none";;
5374         esac;;
5375 esac
5376 echo "If you don't want the manual sources installed, answer 'none'."
5377 case "$man1dir" in
5378 ' ') dflt=none
5379         ;;
5380 '')
5381         lookpath="$prefixexp/man/man1 $prefixexp/man/l_man/man1"
5382         lookpath="$lookpath $prefixexp/man/p_man/man1"
5383         lookpath="$lookpath $prefixexp/man/u_man/man1"
5384         lookpath="$lookpath $prefixexp/man/man.1"
5385         case "$sysman" in
5386         */?_man*)       dflt=`./loc . $prefixexp/l_man/man1 $lookpath` ;;
5387         *)      dflt=`./loc . $prefixexp/man/man1 $lookpath` ;;
5388         esac
5389         set dflt
5390         eval $prefixup
5391         ;;
5392 *)  dflt="$man1dir"
5393         ;;
5394 esac
5395 echo " "
5396 fn=dn+~
5397 rp="Where do the main $spackage manual pages (source) go?"
5398 . ./getfile
5399 if $test "X$man1direxp" != "X$ansexp"; then
5400         installman1dir=''
5401 fi
5402 man1dir="$ans"
5403 man1direxp="$ansexp"
5404 case "$man1dir" in
5405 '') man1dir=' '
5406         installman1dir='';;
5407 esac
5408 if $afs; then
5409         $cat <<EOM
5410
5411 Since you are running AFS, I need to distinguish the directory in which
5412 manual pages reside from the directory in which they are installed (and from
5413 which they are presumably copied to the former directory by occult means).
5414
5415 EOM
5416         case "$installman1dir" in
5417         '') dflt=`echo $man1direxp | sed 's#^/afs/#/afs/.#'`;;
5418         *) dflt="$installman1dir";;
5419         esac
5420         fn=de~
5421         rp='Where will man pages be installed?'
5422         . ./getfile
5423         installman1dir="$ans"
5424 else
5425         installman1dir="$man1direxp"
5426 fi
5427
5428 : What suffix to use on installed man pages
5429
5430 case "$man1dir" in
5431 ' ')
5432         man1ext='0'
5433         ;;
5434 *)
5435         rp="What suffix should be used for the main $spackage man pages?"
5436         case "$man1ext" in
5437         '')     case "$man1dir" in
5438                 *1)  dflt=1 ;;
5439                 *1p) dflt=1p ;;
5440                 *1pm) dflt=1pm ;;
5441                 *l) dflt=l;;
5442                 *n) dflt=n;;
5443                 *o) dflt=o;;
5444                 *p) dflt=p;;
5445                 *C) dflt=C;;
5446                 *L) dflt=L;;
5447                 *L1) dflt=L1;;
5448                 *) dflt=1;;
5449                 esac
5450                 ;;
5451         *)      dflt="$man1ext";;
5452         esac
5453         . ./myread
5454         man1ext="$ans"
5455         ;;
5456 esac
5457
5458 : see if we can have long filenames
5459 echo " "
5460 rmlist="$rmlist /tmp/cf$$"
5461 $test -d /tmp/cf$$ || mkdir /tmp/cf$$
5462 first=123456789abcdef
5463 second=/tmp/cf$$/$first
5464 $rm -f $first $second
5465 if (echo hi >$first) 2>/dev/null; then
5466         if $test -f 123456789abcde; then
5467                 echo 'You cannot have filenames longer than 14 characters.  Sigh.' >&4
5468                 val="$undef"
5469         else
5470                 if (echo hi >$second) 2>/dev/null; then
5471                         if $test -f /tmp/cf$$/123456789abcde; then
5472                                 $cat <<'EOM'
5473 That's peculiar... You can have filenames longer than 14 characters, but only
5474 on some of the filesystems.  Maybe you are using NFS.  Anyway, to avoid problems
5475 I shall consider your system cannot support long filenames at all.
5476 EOM
5477                                 val="$undef"
5478                         else
5479                                 echo 'You can have filenames longer than 14 characters.' >&4
5480                                 val="$define"
5481                         fi
5482                 else
5483                         $cat <<'EOM'
5484 How confusing! Some of your filesystems are sane enough to allow filenames
5485 longer than 14 characters but some others like /tmp can't even think about them.
5486 So, for now on, I shall assume your kernel does not allow them at all.
5487 EOM
5488                         val="$undef"
5489                 fi
5490         fi
5491 else
5492         $cat <<'EOM'
5493 You can't have filenames longer than 14 chars.  You can't even think about them!
5494 EOM
5495         val="$undef"
5496 fi 
5497 set d_flexfnam
5498 eval $setvar
5499 $rm -rf /tmp/cf$$ 123456789abcde*
5500
5501 : determine where library module manual pages go
5502 set man3dir man3dir none
5503 eval $prefixit
5504 $cat <<EOM
5505
5506 $spackage has manual pages for many of the library modules.
5507 EOM
5508
5509 case "$nroff" in
5510 nroff)
5511         $cat <<'EOM'
5512 However, you don't have nroff, so they're probably useless to you.
5513 EOM
5514         case "$man3dir" in
5515         '') man3dir="none";;
5516         esac;;
5517 esac
5518
5519 case "$d_flexfnam" in
5520 undef)
5521         $cat <<'EOM'
5522 However, your system can't handle the long file names like File::Basename.3. 
5523 EOM
5524         case "$man3dir" in
5525         '') man3dir="none";;
5526         esac;;
5527 esac
5528
5529 echo "If you don't want the manual sources installed, answer 'none'."
5530 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
5531 case "$man3dir" in
5532 '')     case "$prefix" in 
5533         *$prog*) dflt=`echo $man1dir | 
5534                         $sed -e 's/man1/man3/g' -e 's/man\.1/man\.3/g'` ;;
5535         *)      dflt="$privlib/man/man3" ;;
5536         esac
5537         ;;
5538 ' ') dflt=none;;
5539 *)      dflt="$man3dir" ;;
5540 esac
5541 echo " "
5542
5543 fn=dn+~
5544 rp="Where do the $package library man pages (source) go?"
5545 . ./getfile
5546 if test "X$man3direxp" != "X$ansexp"; then
5547         installman3dir=''
5548 fi
5549
5550 man3dir="$ans"
5551 man3direxp="$ansexp"
5552 case "$man3dir" in
5553 '') man3dir=' '
5554         installman3dir='';;
5555 esac
5556 if $afs; then
5557         $cat <<EOM
5558
5559 Since you are running AFS, I need to distinguish the directory in which
5560 manual pages reside from the directory in which they are installed (and from
5561 which they are presumably copied to the former directory by occult means).
5562
5563 EOM
5564         case "$installman3dir" in
5565         '') dflt=`echo $man3direxp | sed 's#^/afs/#/afs/.#'`;;
5566         *) dflt="$installman3dir";;
5567         esac
5568         fn=de~
5569         rp='Where will man pages be installed?'
5570         . ./getfile
5571         installman3dir="$ans"
5572 else
5573         installman3dir="$man3direxp"
5574 fi
5575
5576 : What suffix to use on installed man pages
5577
5578 case "$man3dir" in
5579 ' ')
5580         man3ext='0'
5581         ;;
5582 *)
5583         rp="What suffix should be used for the $package library man pages?"
5584         case "$man3ext" in
5585         '')     case "$man3dir" in
5586                 *3)  dflt=3 ;;
5587                 *3p) dflt=3p ;;
5588                 *3pm) dflt=3pm ;;
5589                 *l) dflt=l;;
5590                 *n) dflt=n;;
5591                 *o) dflt=o;;
5592                 *p) dflt=p;;
5593                 *C) dflt=C;;
5594                 *L) dflt=L;;
5595                 *L3) dflt=L3;;
5596                 *) dflt=3;;
5597                 esac
5598                 ;;
5599         *)      dflt="$man3ext";;
5600         esac
5601         . ./myread
5602         man3ext="$ans"
5603         ;;
5604 esac
5605
5606 : see if we have to deal with yellow pages, now NIS.
5607 if $test -d /usr/etc/yp || $test -d /etc/yp; then
5608         if $test -f /usr/etc/nibindd; then
5609                 echo " "
5610                 echo "I'm fairly confident you're on a NeXT."
5611                 echo " "
5612                 rp='Do you get the hosts file via NetInfo?'
5613                 dflt=y
5614                 case "$hostcat" in
5615                 nidump*) ;;
5616                 '') ;;
5617                 *) dflt=n;;
5618                 esac
5619                 . ./myread
5620                 case "$ans" in
5621                 y*) hostcat='nidump hosts .';;
5622                 *)      case "$hostcat" in
5623                         nidump*) hostcat='';;
5624                         esac
5625                         ;;
5626                 esac
5627         fi
5628         case "$hostcat" in
5629         nidump*) ;;
5630         *)
5631                 case "$hostcat" in
5632                 *ypcat*) dflt=y;;
5633                 '') if $contains '^\+' /etc/passwd >/dev/null 2>&1; then
5634                                 dflt=y
5635                         else
5636                                 dflt=n
5637                         fi;;
5638                 *) dflt=n;;
5639                 esac
5640                 echo " "
5641                 rp='Are you getting the hosts file via yellow pages?'
5642                 . ./myread
5643                 case "$ans" in
5644                 y*) hostcat='ypcat hosts';;
5645                 *) hostcat='cat /etc/hosts';;
5646                 esac
5647                 ;;
5648         esac
5649 fi
5650 case "$hostcat" in
5651 '') hostcat='cat /etc/hosts';;
5652 esac
5653 case "$groupcat" in
5654 '') groupcat='cat /etc/group';;
5655 esac
5656 case "$passcat" in
5657 '') passcat='cat /etc/passwd';;
5658 esac
5659
5660 : now get the host name
5661 echo " "
5662 echo "Figuring out host name..." >&4
5663 case "$myhostname" in
5664 '') cont=true
5665         echo 'Maybe "hostname" will work...'
5666         if tans=`sh -c hostname 2>&1` ; then
5667                 myhostname=$tans
5668                 phostname=hostname
5669                 cont=''
5670         fi
5671         ;;
5672 *) cont='';;
5673 esac
5674 if $test "$cont"; then
5675         if ./xenix; then
5676                 echo 'Oh, dear.  Maybe "/etc/systemid" is the key...'
5677                 if tans=`cat /etc/systemid 2>&1` ; then
5678                         myhostname=$tans
5679                         phostname='cat /etc/systemid'
5680                         echo "Whadyaknow.  Xenix always was a bit strange..."
5681                         cont=''
5682                 fi
5683         elif $test -r /etc/systemid; then
5684                 echo "(What is a non-Xenix system doing with /etc/systemid?)"
5685         fi
5686 fi
5687 if $test "$cont"; then
5688         echo 'No, maybe "uuname -l" will work...'
5689         if tans=`sh -c 'uuname -l' 2>&1` ; then
5690                 myhostname=$tans
5691                 phostname='uuname -l'
5692         else
5693                 echo 'Strange.  Maybe "uname -n" will work...'
5694                 if tans=`sh -c 'uname -n' 2>&1` ; then
5695                         myhostname=$tans
5696                         phostname='uname -n'
5697                 else
5698                         echo 'Oh well, maybe I can mine it out of whoami.h...'
5699                         if tans=`sh -c $contains' sysname $usrinc/whoami.h' 2>&1` ; then
5700                                 myhostname=`echo "$tans" | $sed 's/^.*"\(.*\)"/\1/'`
5701                                 phostname="sed -n -e '"'/sysname/s/^.*\"\\(.*\\)\"/\1/{'"' -e p -e q -e '}' <$usrinc/whoami.h"
5702                         else
5703                                 case "$myhostname" in
5704                                 '') echo "Does this machine have an identity crisis or something?"
5705                                         phostname='';;
5706                                 *)
5707                                         echo "Well, you said $myhostname before..."
5708                                         phostname='echo $myhostname';;
5709                                 esac
5710                         fi
5711                 fi
5712         fi
5713 fi
5714 : you do not want to know about this
5715 set $myhostname
5716 myhostname=$1
5717
5718 : verify guess
5719 if $test "$myhostname" ; then
5720         dflt=y
5721         rp='Your host name appears to be "'$myhostname'".'" Right?"
5722         . ./myread
5723         case "$ans" in
5724         y*) ;;
5725         *) myhostname='';;
5726         esac
5727 fi
5728
5729 : bad guess or no guess
5730 while $test "X$myhostname" = X ; do
5731         dflt=''
5732         rp="Please type the (one word) name of your host:"
5733         . ./myread
5734         myhostname="$ans"
5735 done
5736
5737 : translate upper to lower if necessary
5738 case "$myhostname" in
5739 *[A-Z]*)
5740         echo "(Normalizing case in your host name)"
5741         myhostname=`echo $myhostname | ./tr '[A-Z]' '[a-z]'`
5742         ;;
5743 esac
5744
5745 case "$myhostname" in
5746 *.*)
5747         dflt=`expr "X$myhostname" : "X[^.]*\(\..*\)"`
5748         myhostname=`expr "X$myhostname" : "X\([^.]*\)\."`
5749         echo "(Trimming domain name from host name--host name is now $myhostname)"
5750         ;;
5751 *) case "$mydomain" in
5752         '')
5753                 {
5754                         test "X$hostcat" = "Xypcat hosts" &&
5755                         ypmatch "$myhostname" hosts 2>/dev/null |\
5756                                 $sed -e 's/[     ]*#.*//; s/$/ /' > hosts && \
5757                         $test -s hosts
5758                 } || {
5759                         $hostcat | $sed -n -e "s/[       ]*#.*//; s/\$/ /
5760                                         /[       ]$myhostname[  . ]/p" > hosts
5761                 }
5762                 tmp_re="[       . ]"
5763                 $test x`$awk "/[0-9].*[  ]$myhostname$tmp_re/ { sum++ }
5764                              END { print sum }" hosts` = x1 || tmp_re="[         ]"
5765                 dflt=.`$awk "/[0-9].*[   ]$myhostname$tmp_re/ {for(i=2; i<=NF;i++) print \\\$i}" \
5766                         hosts | $sort | $uniq | \
5767                         $sed -n -e "s/$myhostname\.\([-a-zA-Z0-9_.]\)/\1/p"`
5768                 case `$echo X$dflt` in
5769                 X*\ *)  echo "(Several hosts in /etc/hosts matched hostname)"
5770                         dflt=.
5771                         ;;
5772                 X.) echo "(You do not have fully-qualified names in /etc/hosts)"
5773                         ;;
5774                 esac
5775                 case "$dflt" in
5776                 .)
5777                         tans=`./loc resolv.conf X /etc /usr/etc`
5778                         if $test -f "$tans"; then
5779                                 echo "(Attempting domain name extraction from $tans)"
5780                                 dflt=.`$sed -n -e 's/   / /g' \
5781                                   -e 's/^search  *\([^ ]*\).*/\1/p' $tans \
5782                                   | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
5783                                 case "$dflt" in
5784                                 .) dflt=.`$sed -n -e 's/        / /g' \
5785                                      -e 's/^domain  *\([^ ]*\).*/\1/p' $tans \
5786                                      | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
5787                                         ;;
5788                                 esac
5789                         fi
5790                         ;;
5791                 esac
5792                 case "$dflt" in
5793                 .) echo "(No help from resolv.conf either -- attempting clever guess)"
5794                         dflt=.`sh -c domainname 2>/dev/null`
5795                         case "$dflt" in
5796                         '') dflt='.';;
5797                         .nis.*|.yp.*|.main.*) dflt=`echo $dflt | $sed -e 's/^\.[^.]*//'`;;
5798                         esac
5799                         ;;
5800                 esac
5801                 case "$dflt" in
5802                 .) echo "(Lost all hope -- silly guess then)"
5803                         dflt='.uucp'
5804                         ;;
5805                 esac
5806                 $rm -f hosts
5807                 ;;
5808         *) dflt="$mydomain";;
5809         esac;;
5810 esac
5811 echo " "
5812 rp="What is your domain name?"
5813 . ./myread
5814 tans="$ans"
5815 case "$ans" in
5816 '') ;;
5817 .*) ;;
5818 *) tans=".$tans";;
5819 esac
5820 mydomain="$tans"
5821
5822 : translate upper to lower if necessary
5823 case "$mydomain" in
5824 *[A-Z]*)
5825         echo "(Normalizing case in your domain name)"
5826         mydomain=`echo $mydomain | ./tr '[A-Z]' '[a-z]'`
5827         ;;
5828 esac
5829
5830 : a little sanity check here
5831 case "$phostname" in
5832 '') ;;
5833 *)
5834         case `$phostname | ./tr '[A-Z]' '[a-z]'` in
5835         $myhostname$mydomain|$myhostname) ;;
5836         *)
5837                 case "$phostname" in
5838                 sed*)
5839                         echo "(That doesn't agree with your whoami.h file, by the way.)"
5840                         ;;
5841                 *)
5842                         echo "(That doesn't agree with your $phostname command, by the way.)"
5843                         ;;
5844                 esac
5845         ;;
5846         esac
5847         ;;
5848 esac
5849
5850 $cat <<EOM
5851
5852 I need to get your e-mail address in Internet format if possible, i.e.
5853 something like user@host.domain. Please answer accurately since I have
5854 no easy means to double check it. The default value provided below
5855 is most probably close to the reality but may not be valid from outside
5856 your organization...
5857
5858 EOM
5859 cont=x
5860 while test "$cont"; do
5861         case "$cf_email" in
5862         '') dflt="$cf_by@$myhostname$mydomain";;
5863         *) dflt="$cf_email";;
5864         esac
5865         rp='What is your e-mail address?'
5866         . ./myread
5867         cf_email="$ans"
5868         case "$cf_email" in
5869         *@*.*) cont='' ;;
5870         *)
5871                 rp='Address does not look like an Internet one.  Use it anyway?'
5872                 case "$fastread" in
5873                 yes) dflt=y ;;
5874                 *) dflt=n ;;
5875                 esac
5876                 . ./myread
5877                 case "$ans" in
5878                 y*) cont='' ;;
5879                 *) echo " " ;;
5880                 esac
5881                 ;;
5882         esac
5883 done
5884
5885 $cat <<EOM
5886
5887 If you or somebody else will be maintaining perl at your site, please
5888 fill in the correct e-mail address here so that they may be contacted
5889 if necessary. Currently, the "perlbug" program included with perl
5890 will send mail to this address in addition to perlbug@perl.com. You may
5891 enter "none" for no administrator.
5892
5893 EOM
5894 case "$perladmin" in
5895 '') dflt="$cf_email";;
5896 *) dflt="$perladmin";;
5897 esac
5898 rp='Perl administrator e-mail address'
5899 . ./myread
5900 perladmin="$ans"
5901
5902 : figure out how to guarantee perl startup
5903 case "$startperl" in
5904 '')
5905         case "$sharpbang" in
5906         *!)
5907                 $cat <<EOH
5908
5909 I can use the #! construct to start perl on your system. This will
5910 make startup of perl scripts faster, but may cause problems if you
5911 want to share those scripts and perl is not in a standard place
5912 ($binexp/perl) on all your platforms. The alternative is to force
5913 a shell by starting the script with a single ':' character.
5914
5915 EOH
5916                 dflt="$binexp/perl"
5917                 rp='What shall I put after the #! to start up perl ("none" to not use #!)?'
5918                 . ./myread
5919                 case "$ans" in
5920                 none)   startperl=": # use perl";;
5921                 *)      startperl="#!$ans"
5922                         if $test 30 -lt `echo "$ans" | wc -c`; then
5923                                 $cat >&4 <<EOM
5924
5925 WARNING:  Some systems limit the #! command to 32 characters.
5926 If you experience difficulty running Perl scripts with #!, try
5927 installing Perl in a directory with a shorter pathname.
5928
5929 EOM
5930                         fi ;;
5931                 esac
5932                 ;;
5933         *) startperl=": # use perl"
5934                 ;;
5935         esac
5936         ;;
5937 esac
5938 echo "I'll use $startperl to start perl scripts."
5939
5940 : figure best path for perl in scripts
5941 case "$perlpath" in
5942 '')
5943         perlpath="$binexp/perl"
5944         case "$startperl" in
5945         *!*) ;;
5946         *)
5947                 $cat <<EOH
5948
5949 I will use the "eval 'exec'" idiom to start Perl on your system.
5950 I can use the full path of your Perl binary for this purpose, but
5951 doing so may cause problems if you want to share those scripts and
5952 Perl is not always in a standard place ($binexp/perl).
5953
5954 EOH
5955                 dflt="$binexp/perl"
5956                 rp="What path shall I use in \"eval 'exec'\"?"
5957                 . ./myread
5958                 perlpath="$ans"
5959                 ;;
5960         esac
5961         ;;
5962 esac
5963 case "$startperl" in
5964 *!*)    ;;
5965 *)      echo "I'll use $perlpath in \"eval 'exec'\"" ;;
5966 esac
5967
5968 : determine where public executable scripts go
5969 set scriptdir scriptdir
5970 eval $prefixit
5971 case "$scriptdir" in
5972 '')
5973         dflt="$bin"
5974         : guess some guesses
5975         $test -d /usr/share/scripts && dflt=/usr/share/scripts
5976         $test -d /usr/share/bin && dflt=/usr/share/bin
5977         $test -d /usr/local/script && dflt=/usr/local/script
5978         $test -d $prefixexp/script && dflt=$prefixexp/script
5979         set dflt
5980         eval $prefixup
5981         ;;
5982 *)  dflt="$scriptdir"
5983         ;;
5984 esac
5985 $cat <<EOM
5986  
5987 Some installations have a separate directory just for executable scripts so
5988 that they can mount it across multiple architectures but keep the scripts in
5989 one spot.  You might, for example, have a subdirectory of /usr/share for this.
5990 Or you might just lump your scripts in with all your other executables.
5991  
5992 EOM
5993 fn=d~
5994 rp='Where do you keep publicly executable scripts?'
5995 . ./getfile
5996 if $test "X$ansexp" != "X$scriptdirexp"; then
5997         installscript=''
5998 fi
5999 scriptdir="$ans"
6000 scriptdirexp="$ansexp"
6001 if $afs; then
6002         $cat <<EOM
6003
6004 Since you are running AFS, I need to distinguish the directory in which
6005 scripts reside from the directory in which they are installed (and from
6006 which they are presumably copied to the former directory by occult means).
6007
6008 EOM
6009         case "$installscript" in
6010         '') dflt=`echo $scriptdirexp | sed 's#^/afs/#/afs/.#'`;;
6011         *) dflt="$installscript";;
6012         esac
6013         fn=de~
6014         rp='Where will public scripts be installed?'
6015         . ./getfile
6016         installscript="$ans"
6017 else
6018         installscript="$scriptdirexp"
6019 fi
6020
6021 : determine where site specific libraries go.
6022 : Usual default is /usr/local/lib/perl5/site_perl/$apiversion
6023 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6024 case "$prefix" in
6025 *perl*) set dflt sitelib lib/site_$prog/$apiversion ;;
6026 *)       set dflt sitelib lib/$package/site_$prog/$apiversion ;;
6027 esac
6028 eval $prefixit
6029 $cat <<EOM
6030
6031 The installation process will also create a directory for
6032 site-specific extensions and modules.  Some users find it convenient
6033 to place all local files in this directory rather than in the main
6034 distribution directory.
6035
6036 EOM
6037 fn=d~+
6038 rp='Pathname for the site-specific library files?'
6039 . ./getfile
6040 if $test "X$sitelibexp" != "X$ansexp"; then
6041         installsitelib=''
6042 fi
6043 sitelib="$ans"
6044 sitelibexp="$ansexp"
6045 if $afs; then
6046         $cat <<EOM
6047
6048 Since you are running AFS, I need to distinguish the directory in
6049 which site-specific files reside from the directory in which they are
6050 installed (and from which they are presumably copied to the former
6051 directory by occult means).
6052
6053 EOM
6054         case "$installsitelib" in
6055         '') dflt=`echo $sitelibexp | sed 's#^/afs/#/afs/.#'`;;
6056         *) dflt="$installsitelib";;
6057         esac
6058         fn=de~
6059         rp='Where will site-specific files be installed?'
6060         . ./getfile
6061         installsitelib="$ans"
6062 else
6063         installsitelib="$sitelibexp"
6064 fi
6065
6066 : determine where site specific architecture-dependent libraries go.
6067 : sitelib  default is /usr/local/lib/perl5/site_perl/$apiversion
6068 : sitearch default is /usr/local/lib/perl5/site_perl/$apiversion/$archname
6069 : sitelib may have an optional trailing /share.
6070 tdflt=`echo $sitelib | $sed 's,/share$,,'`
6071 tdflt="$tdflt/$archname"
6072 set sitearch sitearch none
6073 eval $prefixit
6074 case "$sitearch" in
6075 '')     dflt="$tdflt" ;;
6076 *)      dflt="$sitearch" ;;
6077 esac
6078 $cat <<EOM
6079
6080 The installation process will also create a directory for
6081 architecture-dependent site-specific extensions and modules.
6082
6083 EOM
6084 fn=nd~+
6085 rp='Pathname for the site-specific architecture-dependent library files?'
6086 . ./getfile
6087 if $test "X$sitearchexp" != "X$ansexp"; then
6088         installsitearch=''
6089 fi
6090 sitearch="$ans"
6091 sitearchexp="$ansexp"
6092 if $afs; then
6093         $cat <<EOM
6094
6095 Since you are running AFS, I need to distinguish the directory in
6096 which site-specific architecture-dependent library files reside from
6097 the directory in which they are installed (and from which they are
6098 presumably copied to the former directory by occult means).
6099
6100 EOM
6101         case "$installsitearch" in
6102         '') dflt=`echo $sitearchexp | sed 's#^/afs/#/afs/.#'`;;
6103         *) dflt="$installsitearch";;
6104         esac
6105         fn=de~
6106         rp='Where will site-specific architecture-dependent files be installed?'
6107         . ./getfile
6108         installsitearch="$ans"
6109 else
6110         installsitearch="$sitearchexp"
6111 fi
6112
6113 cat <<EOM
6114
6115 Previous version of $package used the standard IO mechanisms as defined
6116 in <stdio.h>.  Versions 5.003_02 and later of perl allow alternate IO
6117 mechanisms via a "PerlIO" abstraction, but the stdio mechanism is still
6118 the default.  This abstraction layer can use AT&T's sfio (if you already
6119 have sfio installed) or regular stdio.  Using PerlIO with sfio may cause
6120 problems with some extension modules.  Using PerlIO with stdio is safe,
6121 but it is slower than plain stdio and therefore is not the default.
6122
6123 If this doesn't make any sense to you, just accept the default 'n'.
6124 EOM
6125 case "$useperlio" in
6126 $define|true|[yY]*)     dflt='y';;
6127 *) dflt='n';;
6128 esac
6129 rp='Use the experimental PerlIO abstraction layer?'
6130 . ./myread
6131 case "$ans" in
6132 y|Y) 
6133         val="$define"
6134         ;;     
6135 *)      
6136         echo "Ok, doing things the stdio way"
6137         val="$undef"
6138         ;;
6139 esac
6140 set useperlio
6141 eval $setvar 
6142
6143 : Check how to convert floats to strings.
6144 if test "X$d_Gconvert" = X; then
6145         echo " "
6146         echo "Checking for an efficient way to convert floats to strings."
6147         $cat >try.c <<'EOP'
6148 #ifdef TRY_gconvert
6149 #define Gconvert(x,n,t,b) gconvert((x),(n),(t),(b))
6150 char *myname = "gconvert";
6151 #endif
6152 #ifdef TRY_gcvt
6153 #define Gconvert(x,n,t,b) gcvt((x),(n),(b))
6154 char *myname = "gcvt";
6155 #endif
6156 #ifdef TRY_sprintf
6157 #define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))
6158 char *myname = "sprintf";
6159 #endif
6160
6161 #include <stdio.h>
6162
6163 int
6164 checkit(expect, got)
6165 char *expect;
6166 char *got;
6167 {
6168     if (strcmp(expect, got)) {
6169                 printf("%s oddity:  Expected %s, got %s\n",
6170                         myname, expect, got);
6171                 exit(1);
6172         }
6173 }
6174
6175 int
6176 main()
6177
6178         char buf[64]; 
6179         buf[63] = '\0';
6180
6181         /* This must be 1st test on (which?) platform */
6182         /* Alan Burlison <AlanBurlsin@unn.unisys.com> */
6183         Gconvert(0.1, 8, 0, buf);
6184         checkit("0.1", buf);
6185
6186         Gconvert(1.0, 8, 0, buf); 
6187         checkit("1", buf);
6188
6189         Gconvert(0.0, 8, 0, buf); 
6190         checkit("0", buf);
6191
6192         Gconvert(-1.0, 8, 0, buf); 
6193         checkit("-1", buf);
6194
6195         /* Some Linux gcvt's give 1.e+5 here. */
6196         Gconvert(100000.0, 8, 0, buf); 
6197         checkit("100000", buf);
6198         
6199         /* Some Linux gcvt's give -1.e+5 here. */
6200         Gconvert(-100000.0, 8, 0, buf); 
6201         checkit("-100000", buf);
6202
6203         exit(0);
6204 }
6205 EOP
6206         case "$d_Gconvert" in
6207         gconvert*) xxx_list='gconvert gcvt sprintf' ;;
6208         gcvt*) xxx_list='gcvt gconvert sprintf' ;;
6209         sprintf*) xxx_list='sprintf gconvert gcvt' ;;
6210         *) xxx_list='gconvert gcvt sprintf' ;;
6211         esac
6212
6213         for xxx_convert in $xxx_list; do
6214                 echo "Trying $xxx_convert"
6215                 $rm -f try try$_o
6216                 set try -DTRY_$xxx_convert
6217                 if eval $compile; then
6218                         echo "$xxx_convert" found. >&4
6219                         if ./try; then
6220                                 echo "I'll use $xxx_convert to convert floats into a string." >&4
6221                                 break;
6222                         else
6223                                 echo "...But $xxx_convert didn't work as I expected."
6224                         fi
6225                 else
6226                         echo "$xxx_convert NOT found." >&4
6227                 fi
6228         done
6229                 
6230         case "$xxx_convert" in
6231         gconvert) d_Gconvert='gconvert((x),(n),(t),(b))' ;;
6232         gcvt) d_Gconvert='gcvt((x),(n),(b))' ;;
6233         *) d_Gconvert='sprintf((b),"%.*g",(n),(x))' ;;
6234         esac
6235 fi
6236
6237 : Initialize h_fcntl
6238 h_fcntl=false
6239
6240 : Initialize h_sysfile
6241 h_sysfile=false
6242
6243 : access call always available on UNIX
6244 set access d_access
6245 eval $inlibc
6246
6247 : locate the flags for 'access()'
6248 case "$d_access" in
6249 "$define")
6250         echo " "
6251         $cat >access.c <<'EOCP'
6252 #include <sys/types.h>
6253 #ifdef I_FCNTL
6254 #include <fcntl.h>
6255 #endif
6256 #ifdef I_SYS_FILE
6257 #include <sys/file.h>
6258 #endif
6259 #ifdef I_UNISTD
6260 #include <unistd.h>
6261 #endif
6262 main() {
6263         exit(R_OK);
6264 }
6265 EOCP
6266         : check sys/file.h first, no particular reason here
6267         if $test `./findhdr sys/file.h` && \
6268                 $cc $cppflags -DI_SYS_FILE -o access access.c >/dev/null 2>&1 ; then
6269                 h_sysfile=true;
6270                 echo "<sys/file.h> defines the *_OK access constants." >&4
6271         elif $test `./findhdr fcntl.h` && \
6272                 $cc $cppflags -DI_FCNTL -o access access.c >/dev/null 2>&1 ; then
6273                 h_fcntl=true;
6274                 echo "<fcntl.h> defines the *_OK access constants." >&4
6275         elif $test `./findhdr unistd.h` && \
6276                 $cc $cppflags -DI_UNISTD -o access access.c >/dev/null 2>&1 ; then
6277                 echo "<unistd.h> defines the *_OK access constants." >&4
6278         else
6279                 echo "I can't find the four *_OK access constants--I'll use mine." >&4
6280         fi
6281         ;;
6282 esac
6283 $rm -f access*
6284
6285 : see if accessx exists
6286 set accessx d_accessx
6287 eval $inlibc
6288
6289 : see if alarm exists
6290 set alarm d_alarm
6291 eval $inlibc
6292
6293 : Look for GNU-cc style attribute checking
6294 echo " "
6295 echo "Checking whether your compiler can handle __attribute__ ..." >&4
6296 $cat >attrib.c <<'EOCP'
6297 #include <stdio.h>
6298 void croak (char* pat,...) __attribute__((format(printf,1,2),noreturn));
6299 EOCP
6300 if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
6301         if $contains 'warning' attrib.out >/dev/null 2>&1; then
6302                 echo "Your C compiler doesn't fully support __attribute__."
6303                 val="$undef"
6304         else
6305                 echo "Your C compiler supports __attribute__."
6306                 val="$define"
6307         fi
6308 else
6309         echo "Your C compiler doesn't seem to understand __attribute__ at all."
6310         val="$undef"
6311 fi
6312 set d_attribut
6313 eval $setvar
6314 $rm -f attrib*
6315
6316 : see if bcmp exists
6317 set bcmp d_bcmp
6318 eval $inlibc
6319
6320 : see if bcopy exists
6321 set bcopy d_bcopy
6322 eval $inlibc
6323
6324 : see if this is a unistd.h system
6325 set unistd.h i_unistd
6326 eval $inhdr
6327
6328 : see if getpgrp exists
6329 set getpgrp d_getpgrp
6330 eval $inlibc
6331
6332 case "$d_getpgrp" in
6333 "$define")
6334         echo " "
6335         echo "Checking to see which flavor of getpgrp is in use..."
6336         $cat >set.c <<EOP
6337 #$i_unistd I_UNISTD
6338 #include <sys/types.h>
6339 #ifdef I_UNISTD
6340 #  include <unistd.h>
6341 #endif
6342 main()
6343 {
6344         if (getuid() == 0) {
6345                 printf("(I see you are running Configure as super-user...)\n");
6346                 setuid(1);
6347         }
6348 #ifdef TRY_BSD_PGRP
6349         if (getpgrp(1) == 0)
6350                 exit(0);
6351 #else
6352         if (getpgrp() > 0)
6353                 exit(0);
6354 #endif
6355         exit(1);
6356 }
6357 EOP
6358         if $cc -DTRY_BSD_PGRP $ccflags $ldflags -o set set.c $libs >/dev/null 2>&1 && ./set; then
6359                 echo "You have to use getpgrp(pid) instead of getpgrp()." >&4
6360                 val="$define"
6361         elif $cc $ccflags $ldflags -o set set.c $libs >/dev/null 2>&1 && ./set; then
6362                 echo "You have to use getpgrp() instead of getpgrp(pid)." >&4
6363                 val="$undef"
6364         else
6365                 echo "I can't seem to compile and run the test program."
6366                 if ./usg; then
6367                         xxx="a USG one, i.e. you use getpgrp()."
6368                 else
6369                         # SVR4 systems can appear rather BSD-ish.
6370                         case "$i_unistd" in
6371                         $undef)
6372                                 xxx="a BSD one, i.e. you use getpgrp(pid)."
6373                                 val="$define"
6374                                 ;;
6375                         $define)
6376                                 xxx="probably a USG one, i.e. you use getpgrp()."
6377                                 val="$undef"
6378                                 ;;
6379                         esac
6380                 fi
6381                 echo "Assuming your getpgrp is $xxx" >&4
6382         fi
6383         ;;
6384 *) val="$undef";;
6385 esac
6386 set d_bsdgetpgrp
6387 eval $setvar
6388 $rm -f set set.c
6389
6390 : see if setpgrp exists
6391 set setpgrp d_setpgrp
6392 eval $inlibc
6393
6394 case "$d_setpgrp" in
6395 "$define")
6396         echo " "
6397         echo "Checking to see which flavor of setpgrp is in use..."
6398         $cat >set.c <<EOP
6399 #$i_unistd I_UNISTD
6400 #include <sys/types.h>
6401 #ifdef I_UNISTD
6402 #  include <unistd.h>
6403 #endif
6404 main()
6405 {
6406         if (getuid() == 0) {
6407                 printf("(I see you are running Configure as super-user...)\n");
6408                 setuid(1);
6409         }
6410 #ifdef TRY_BSD_PGRP
6411         if (-1 == setpgrp(1, 1))
6412                 exit(0);
6413 #else
6414         if (setpgrp() != -1)
6415                 exit(0);
6416 #endif
6417         exit(1);
6418 }
6419 EOP
6420         if $cc -DTRY_BSD_PGRP $ccflags $ldflags -o set set.c $libs >/dev/null 2>&1 && ./set; then
6421                 echo 'You have to use setpgrp(pid,pgrp) instead of setpgrp().' >&4
6422                 val="$define"
6423         elif $cc $ccflags $ldflags -o set set.c $libs >/dev/null 2>&1 && ./set; then
6424                 echo 'You have to use setpgrp() instead of setpgrp(pid,pgrp).' >&4
6425                 val="$undef"
6426         else
6427                 echo "(I can't seem to compile and run the test program.)"
6428                 if ./usg; then
6429                         xxx="a USG one, i.e. you use setpgrp()."
6430                 else
6431                         # SVR4 systems can appear rather BSD-ish.
6432                         case "$i_unistd" in
6433                         $undef)
6434                                 xxx="a BSD one, i.e. you use setpgrp(pid,pgrp)."
6435                                 val="$define"
6436                                 ;;
6437                         $define)
6438                                 xxx="probably a USG one, i.e. you use setpgrp()."
6439                                 val="$undef"
6440                                 ;;
6441                         esac
6442                 fi
6443                 echo "Assuming your setpgrp is $xxx" >&4
6444         fi
6445         ;;
6446 *) val="$undef";;
6447 esac
6448 set d_bsdsetpgrp
6449 eval $setvar
6450 $rm -f set set.c
6451 : see if bzero exists
6452 set bzero d_bzero
6453 eval $inlibc
6454
6455 : check for lengths of integral types
6456 echo " "
6457 case "$intsize" in
6458 '')
6459         echo "Checking to see how big your integers are..." >&4
6460         $cat >intsize.c <<'EOCP'
6461 #include <stdio.h>
6462 main()
6463 {
6464         printf("intsize=%d;\n", sizeof(int));
6465         printf("longsize=%d;\n", sizeof(long));
6466         printf("shortsize=%d;\n", sizeof(short));
6467         exit(0);
6468 }
6469 EOCP
6470         set intsize
6471         if eval $compile_ok && ./intsize > /dev/null; then
6472                 eval `./intsize`
6473                 echo "Your integers are $intsize bytes long."
6474                 echo "Your long integers are $longsize bytes long."
6475                 echo "Your short integers are $shortsize bytes long."
6476         else
6477                 $cat >&4 <<EOM
6478 !
6479 Help! I can't compile and run the intsize test program: please enlighten me!
6480 (This is probably a misconfiguration in your system or libraries, and
6481 you really ought to fix it.  Still, I'll try anyway.)
6482 !
6483 EOM
6484                 dflt=4
6485                 rp="What is the size of an integer (in bytes)?"
6486                 . ./myread
6487                 intsize="$ans"
6488                 dflt=$intsize
6489                 rp="What is the size of a long integer (in bytes)?"
6490                 . ./myread
6491                 longsize="$ans"
6492                 dflt=2
6493                 rp="What is the size of a short integer (in bytes)?"
6494                 . ./myread
6495                 shortsize="$ans"
6496         fi
6497         ;;
6498 esac
6499 $rm -f intsize intsize.*
6500
6501 : see if signal is declared as pointer to function returning int or void
6502 echo " "
6503 xxx=`./findhdr signal.h`
6504 $test "$xxx" && $cppstdin $cppminus $cppflags < $xxx >$$.tmp 2>/dev/null
6505 if $contains 'int.*\*[  ]*signal' $$.tmp >/dev/null 2>&1 ; then
6506         echo "You have int (*signal())() instead of void." >&4
6507         val="$undef"
6508 elif $contains 'void.*\*[       ]*signal' $$.tmp >/dev/null 2>&1 ; then
6509         echo "You have void (*signal())()." >&4
6510         val="$define"
6511 elif $contains 'extern[         ]*[(\*]*signal' $$.tmp >/dev/null 2>&1 ; then
6512         echo "You have int (*signal())() instead of void." >&4
6513         val="$undef"
6514 elif $contains 'void.*\*.*sig' $$.tmp >/dev/null 2>&1 ; then
6515         echo "You have void (*signal())()." >&4
6516         val="$define"
6517 else
6518         case "$d_voidsig" in
6519         '')
6520         echo "I can't determine whether signal handler returns void or int..." >&4
6521                 dflt=void
6522                 rp="What type does your signal handler return?"
6523                 . ./myread
6524                 case "$ans" in
6525                 v*) val="$define";;
6526                 *) val="$undef";;
6527                 esac;;
6528         "$define")
6529                 echo "As you already told me, signal handler returns void." >&4
6530                 val="$define"
6531                 ;;
6532         *)      echo "As you already told me, signal handler returns int." >&4
6533                 val="$undef"
6534                 ;;
6535         esac
6536 fi
6537 set d_voidsig
6538 eval $setvar
6539 case "$d_voidsig" in
6540 "$define") signal_t="void";;
6541 *) signal_t="int";;
6542 esac
6543 $rm -f $$.tmp
6544
6545 : check for ability to cast large floats to 32-bit ints.
6546 echo " "
6547 echo 'Checking whether your C compiler can cast large floats to int32.' >&4
6548 if $test "$intsize" -ge 4; then
6549         xxx=int
6550 else
6551         xxx=long
6552 fi
6553 $cat >try.c <<EOCP
6554 #include <stdio.h>
6555 #include <sys/types.h>
6556 #include <signal.h>
6557 $signal_t blech(s) int s; { exit(3); }
6558 main()
6559 {
6560         $xxx i32;
6561         double f, g;
6562         int result = 0;
6563         char str[16];
6564         signal(SIGFPE, blech);
6565
6566         /* Don't let compiler optimize the test away.  Store the number 
6567            in a writable string for gcc to pass to sscanf under HP/UX.
6568         */
6569         sprintf(str, "2147483647");
6570         sscanf(str, "%lf", &f); /* f = (double) 0x7fffffff; */
6571         g = 10 * f;
6572         i32  = ($xxx) g;
6573
6574         /* x86 processors will probably give 0x8000 0000, which is a
6575        sign change.  We don't want that.  We want to mimic SPARC
6576            behavior here, which is to preserve the sign and give
6577            back 0x7fff ffff.
6578         */
6579         if (i32 != ($xxx) f)
6580                 result |= 1;
6581         exit(result);
6582 }
6583 EOCP
6584 set try
6585 if eval $compile_ok; then
6586         ./try
6587         yyy=$?
6588 else
6589         echo "(I can't seem to compile the test program--assuming it can't)"
6590         yyy=1
6591 fi
6592 case "$yyy" in
6593 0)      val="$define"
6594         echo "Yup, it can."
6595         ;;
6596 *)      val="$undef"
6597         echo "Nope, it can't."
6598         ;;
6599 esac
6600 set d_casti32
6601 eval $setvar
6602 $rm -f try try.*
6603
6604 : check for ability to cast negative floats to unsigned
6605 echo " "
6606 echo 'Checking whether your C compiler can cast negative float to unsigned.' >&4
6607 $cat >try.c <<EOCP
6608 #include <stdio.h>
6609 #include <sys/types.h>
6610 #include <signal.h>
6611 $signal_t blech(s) int s; { exit(7); }
6612 $signal_t blech_in_list(s) int s; { exit(4); }
6613 unsigned long dummy_long(p) unsigned long p; { return p; }
6614 unsigned int dummy_int(p) unsigned int p; { return p; }
6615 unsigned short dummy_short(p) unsigned short p; { return p; }
6616 main()
6617 {
6618         double f;
6619         unsigned long along;
6620         unsigned int aint;
6621         unsigned short ashort;
6622         int result = 0;
6623         char str[16];
6624         
6625         /* Frustrate gcc-2.7.2's optimizer which failed this test with
6626            a direct f = -123. assignment.  gcc-2.8.0 reportedly
6627            optimized the whole file away
6628         */
6629         /* Store the number in a writable string for gcc to pass to 
6630            sscanf under HP/UX.
6631         */
6632         sprintf(str, "-123");
6633         sscanf(str, "%lf", &f);  /* f = -123.; */
6634
6635         signal(SIGFPE, blech);
6636         along = (unsigned long)f;
6637         aint = (unsigned int)f;
6638         ashort = (unsigned short)f;
6639         if (along != (unsigned long)-123)
6640                 result |= 1;
6641         if (aint != (unsigned int)-123)
6642                 result |= 1;
6643         if (ashort != (unsigned short)-123)
6644                 result |= 1;
6645         sprintf(str, "1073741824.");
6646         sscanf(str, "%lf", &f); /* f = (double)0x40000000; */
6647         f = f + f;
6648         along = 0;
6649         along = (unsigned long)f;
6650         if (along != 0x80000000)
6651                 result |= 2;
6652         f -= 1.;
6653         along = 0;
6654         along = (unsigned long)f;
6655         if (along != 0x7fffffff)
6656                 result |= 1;
6657         f += 2.;
6658         along = 0;
6659         along = (unsigned long)f;
6660         if (along != 0x80000001)
6661                 result |= 2;
6662         if (result)
6663                 exit(result);
6664         signal(SIGFPE, blech_in_list);
6665         sprintf(str, "123.");
6666         sscanf(str, "%lf", &f);  /* f = 123.; */
6667         along = dummy_long((unsigned long)f);
6668         aint = dummy_int((unsigned int)f);
6669         ashort = dummy_short((unsigned short)f);
6670         if (along != (unsigned long)123)
6671                 result |= 4;
6672         if (aint != (unsigned int)123)
6673                 result |= 4;
6674         if (ashort != (unsigned short)123)
6675                 result |= 4;
6676         exit(result);
6677
6678 }
6679 EOCP
6680 set try
6681 if eval $compile_ok; then
6682         ./try
6683         castflags=$?
6684 else
6685         echo "(I can't seem to compile the test program--assuming it can't)"
6686         castflags=7
6687 fi
6688 case "$castflags" in
6689 0)      val="$define"
6690         echo "Yup, it can."
6691         ;;
6692 *)      val="$undef"
6693         echo "Nope, it can't."
6694         ;;
6695 esac
6696 set d_castneg
6697 eval $setvar
6698 $rm -f try.*
6699
6700 : see if vprintf exists
6701 echo " "
6702 if set vprintf val -f d_vprintf; eval $csym; $val; then
6703         echo 'vprintf() found.' >&4
6704         val="$define"
6705         $cat >vprintf.c <<'EOF'
6706 #include <varargs.h>
6707
6708 main() { xxx("foo"); }
6709
6710 xxx(va_alist)
6711 va_dcl
6712 {
6713         va_list args;
6714         char buf[10];
6715
6716         va_start(args);
6717         exit((unsigned long)vsprintf(buf,"%s",args) > 10L);
6718 }
6719 EOF
6720         set vprintf
6721         if eval $compile && ./vprintf; then
6722                 echo "Your vsprintf() returns (int)." >&4
6723                 val2="$undef"
6724         else
6725                 echo "Your vsprintf() returns (char*)." >&4
6726                 val2="$define"
6727         fi
6728 else
6729         echo 'vprintf() NOT found.' >&4
6730                 val="$undef"
6731                 val2="$undef"
6732 fi
6733 set d_vprintf
6734 eval $setvar
6735 val=$val2
6736 set d_charvspr
6737 eval $setvar
6738
6739 : see if chown exists
6740 set chown d_chown
6741 eval $inlibc
6742
6743 : see if chroot exists
6744 set chroot d_chroot
6745 eval $inlibc
6746
6747 : see if chsize exists
6748 set chsize d_chsize
6749 eval $inlibc
6750
6751 hasfield='varname=$1; struct=$2; field=$3; shift; shift; shift;
6752 while $test $# -ge 2; do
6753         case "$1" in
6754         $define) echo "#include <$2>";;
6755         esac ;
6756     shift 2;
6757 done > try.c;
6758 echo "int main () { struct $struct foo; foo.$field = 0; }" >> try.c;
6759 if eval $cc $optimize $ccflags -c try.c >/dev/null 2>&1; then
6760         val="$define";
6761 else
6762         val="$undef";
6763 fi;
6764 set $varname;
6765 eval $setvar;
6766 $rm -f try.c try.o'
6767
6768 : see if this is a sys/uio.h system
6769 set sys/uio.h i_sysuio
6770 eval $inhdr
6771
6772 echo "Checking to see if your system supports struct iovec..." >&4
6773 set d_iovec_s iovec iov_base $i_sysuio sys/uio.h
6774 eval $hasfield
6775 case "$d_iovec_s" in
6776 "$define")      echo "Yup, it does." >&4
6777                 ;;
6778 *)              echo "Nope, it doesn't." >&4
6779                 ;;
6780 esac
6781
6782 socketlib=''
6783 sockethdr=''
6784 : see whether socket exists
6785 echo " "
6786 $echo $n "Hmm... $c" >&4
6787 if set socket val -f d_socket; eval $csym; $val; then
6788         echo "Looks like you have Berkeley networking support." >&4
6789         d_socket="$define"
6790         if set setsockopt val -f; eval $csym; $val; then
6791                 d_oldsock="$undef"
6792         else
6793                 echo "...but it uses the old BSD 4.1c interface, rather than 4.2." >&4
6794                 d_oldsock="$define"
6795         fi
6796 else
6797         if $contains socklib libc.list >/dev/null 2>&1; then
6798                 echo "Looks like you have Berkeley networking support." >&4
6799                 d_socket="$define"
6800                 : we will have to assume that it supports the 4.2 BSD interface
6801                 d_oldsock="$undef"
6802         else
6803                 echo "You don't have Berkeley networking in libc$_a..." >&4
6804                 if test "X$d_socket" = "X$define"; then
6805                    echo "...but you seem to believe that you have sockets." >&4
6806                 else
6807                         for net in net socket
6808                         do
6809                                 if test -f /usr/lib/lib$net$_a; then
6810                                         ( ($nm $nm_opt /usr/lib/lib$net$_a | eval $nm_extract) ||  \
6811                                         $ar t /usr/lib/lib$net$_a) 2>/dev/null >> libc.list
6812                                         if $contains socket libc.list >/dev/null 2>&1; then
6813                                                 d_socket="$define"
6814                                                 socketlib="-l$net"
6815                                                 case "$net" in
6816                                                 net)
6817                                                         echo "...but the Wollongong group seems to have hacked it in." >&4
6818                                                         sockethdr="-I/usr/netinclude"
6819                                                         ;;
6820                                                 esac
6821                                                 echo "Found Berkeley sockets interface in lib$net." >& 4 
6822                                                 if $contains setsockopt libc.list >/dev/null 2>&1; then
6823                                                         d_oldsock="$undef"
6824                                                 else
6825                                                         echo "...using the old BSD 4.1c interface, rather than 4.2." >&4
6826                                                         d_oldsock="$define"
6827                                                 fi
6828                                                 break
6829                                         fi
6830                                 fi
6831                         done
6832                         if test "X$d_socket" != "X$define"; then
6833                            echo "or anywhere else I see." >&4
6834                            d_socket="$undef"
6835                            d_oldsock="$undef"
6836                         fi
6837                 fi
6838         fi
6839 fi
6840
6841 : see if socketpair exists
6842 set socketpair d_sockpair
6843 eval $inlibc
6844
6845
6846 echo "Checking the availability of certain socket constants..." >& 4
6847 for ENUM in MSG_CTRUNC MSG_DONTROUTE MSG_OOB MSG_PEEK MSG_PROXY SCM_RIGHTS; do
6848         enum=`$echo $ENUM|./tr '[A-Z]' '[a-z]'`
6849         $cat >try.c <<EOF
6850 #include <sys/socket.h>
6851 int main() {
6852     int i = $ENUM;
6853 }
6854 EOF
6855         val="$undef"
6856         set try; if eval $compile; then
6857                 val="$define"
6858         fi
6859         set d_${enum}; eval $setvar
6860         $rm -f try.c try
6861 done
6862
6863 set sendmsg d_sendmsg
6864 eval $inlibc
6865
6866 set recvmsg d_recvmsg
6867 eval $inlibc
6868
6869 echo " "
6870 $echo $n "Checking to see if your system supports struct msghdr...$c" >&4
6871 set d_msghdr_s msghdr msg_name define sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
6872 eval $hasfield
6873 case "$d_msghdr_s" in
6874 "$define")      echo "Yup, it does." >&4
6875                 ;;
6876 *)              echo "Nope, it doesn't." >&4
6877                 ;;
6878 esac
6879
6880 $echo $n "Checking to see if your system supports struct cmsghdr...$c" >&4
6881 set d_cmsghdr_s cmsghdr cmsg_len define sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
6882 eval $hasfield
6883 case "$d_cmsghdr_s" in
6884 "$define")      echo "Yup, it does." >&4
6885                 ;;
6886 *)              echo "Nope, it doesn't." >&4
6887                 ;;
6888 esac
6889
6890 : check for const keyword
6891 echo " "
6892 echo 'Checking to see if your C compiler knows about "const"...' >&4
6893 $cat >const.c <<'EOCP'
6894 typedef struct spug { int drokk; } spug;
6895 main()
6896 {
6897         const char *foo;
6898         const spug y;
6899 }
6900 EOCP
6901 if $cc -c $ccflags const.c >/dev/null 2>&1 ; then
6902         val="$define"
6903         echo "Yup, it does."
6904 else
6905         val="$undef"
6906         echo "Nope, it doesn't."
6907 fi
6908 set d_const
6909 eval $setvar
6910
6911 : see if crypt exists
6912 echo " "
6913 if set crypt val -f d_crypt; eval $csym; $val; then
6914         echo 'crypt() found.' >&4
6915         val="$define"
6916         cryptlib=''
6917 else
6918         cryptlib=`./loc Slibcrypt$_a "" $xlibpth`
6919         if $test -z "$cryptlib"; then
6920                 cryptlib=`./loc Mlibcrypt$_a "" $xlibpth`
6921         else
6922                 cryptlib=-lcrypt
6923         fi
6924         if $test -z "$cryptlib"; then
6925                 cryptlib=`./loc Llibcrypt$_a "" $xlibpth`
6926         else
6927                 cryptlib=-lcrypt
6928         fi
6929         if $test -z "$cryptlib"; then
6930                 cryptlib=`./loc libcrypt$_a "" $libpth`
6931         else
6932                 cryptlib=-lcrypt
6933         fi
6934         if $test -z "$cryptlib"; then
6935                 echo 'crypt() NOT found.' >&4
6936                 val="$undef"
6937         else
6938                 val="$define"
6939         fi
6940 fi
6941 set d_crypt
6942 eval $setvar
6943
6944 : get csh whereabouts
6945 case "$csh" in
6946 'csh') val="$undef" ;;
6947 *) val="$define" ;;
6948 esac
6949 set d_csh
6950 eval $setvar
6951 : Respect a hint or command line value for full_csh.
6952 case "$full_csh" in
6953 '') full_csh=$csh ;;
6954 esac
6955
6956 : see if cuserid exists
6957 set cuserid d_cuserid
6958 eval $inlibc
6959
6960 : see if this is a limits.h system
6961 set limits.h i_limits
6962 eval $inhdr
6963
6964 : see if this is a float.h system
6965 set float.h i_float
6966 eval $inhdr
6967
6968 : See if number of significant digits in a double precision number is known
6969 echo " "
6970 $cat >dbl_dig.c <<EOM
6971 #$i_limits I_LIMITS
6972 #$i_float I_FLOAT
6973 #ifdef I_LIMITS
6974 #include <limits.h>
6975 #endif
6976 #ifdef I_FLOAT
6977 #include <float.h>
6978 #endif
6979 #ifdef DBL_DIG
6980 printf("Contains DBL_DIG");
6981 #endif
6982 EOM
6983 $cppstdin $cppflags $cppminus < dbl_dig.c >dbl_dig.E 2>/dev/null
6984 if $contains 'DBL_DIG' dbl_dig.E >/dev/null 2>&1; then
6985         echo "DBL_DIG found." >&4
6986         val="$define"
6987 else
6988         echo "DBL_DIG NOT found." >&4
6989         val="$undef"
6990 fi
6991 $rm -f dbl_dig.?
6992 set d_dbl_dig
6993 eval $setvar
6994
6995
6996 if $test X"$use64bits" = X"$define"; then
6997         : see if dbminit64 exists
6998         set dbminit64 d_dbminit64
6999         eval $inlibc
7000
7001         : see if dbmclose64 exists
7002         set dbmclose64 d_dbmclose64
7003         eval $inlibc
7004
7005         : see if fetch64 exists
7006         set fetch64 d_fetch64
7007         eval $inlibc
7008
7009         : see if store64 exists
7010         set store64 d_store64
7011         eval $inlibc
7012
7013         : see if delete64 exists
7014         set delete64 d_delete64
7015         eval $inlibc
7016
7017         : see if firstkey64 exists
7018         set firstkey64 d_firstkey64
7019         eval $inlibc
7020
7021         : see if nextkey64 exists
7022         set nextkey64 d_nextkey64
7023         eval $inlibc
7024 else
7025         val="$undef"
7026         for xxx in d_dbminit64 d_dbmclose64 d_fetch64 d_store64 d_delete64 d_firstkey64 d_nextkey64
7027         do
7028                 set $xxx
7029                 eval $setvar
7030         done
7031 fi
7032
7033 : see if difftime exists
7034 set difftime d_difftime
7035 eval $inlibc
7036
7037 : see if sys/stat.h is available
7038 set sys/stat.h i_sysstat
7039 eval $inhdr
7040
7041 : see if this is a dirent system
7042 echo " "
7043 if xinc=`./findhdr dirent.h`; $test "$xinc"; then
7044         val="$define"
7045         echo "<dirent.h> found." >&4
7046 else
7047         val="$undef"
7048         if xinc=`./findhdr sys/dir.h`; $test "$xinc"; then
7049                 echo "<sys/dir.h> found." >&4
7050                 echo " "
7051         else
7052                 xinc=`./findhdr sys/ndir.h`
7053         fi
7054         echo "<dirent.h> NOT found." >&4
7055 fi
7056 set i_dirent
7057 eval $setvar
7058
7059 : Look for type of directory structure.
7060 echo " "
7061 $cppstdin $cppflags $cppminus < "$xinc" > try.c
7062
7063 case "$direntrytype" in
7064 ''|' ')
7065         case "$i_dirent" in
7066         $define) guess1='struct dirent' ;;
7067         *) guess1='struct direct'  ;;
7068         esac
7069         ;;
7070 *)      guess1="$direntrytype"
7071         ;;
7072 esac
7073
7074 case "$guess1" in
7075 'struct dirent') guess2='struct direct' ;;
7076 *) guess2='struct dirent' ;;
7077 esac
7078                 
7079 if $contains "$guess1" try.c >/dev/null 2>&1; then
7080         direntrytype="$guess1"
7081         echo "Your directory entries are $direntrytype." >&4
7082 elif $contains "$guess2" try.c >/dev/null 2>&1; then
7083         direntrytype="$guess2"
7084         echo "Your directory entries seem to be $direntrytype." >&4
7085 else
7086         echo "I don't recognize your system's directory entries." >&4
7087         rp="What type is used for directory entries on this system?"
7088         dflt="$guess1"
7089         . ./myread
7090         direntrytype="$ans"
7091 fi
7092 $rm -f try.c
7093
7094
7095 : see if the directory entry stores field length
7096 echo " "
7097 $cppstdin $cppflags $cppminus < "$xinc" > try.c
7098 if $contains 'd_namlen' try.c >/dev/null 2>&1; then
7099         echo "Good, your directory entry keeps length information in d_namlen." >&4
7100         val="$define"
7101 else
7102         echo "Your directory entry does not know about the d_namlen field." >&4
7103         val="$undef"
7104 fi
7105 set d_dirnamlen
7106 eval $setvar
7107 $rm -f try.c
7108
7109
7110 if $test X"$use64bits" = X"$define"; then
7111         : see if fstat64 exists
7112         set fstat64 d_fstat64
7113         eval $inlibc
7114
7115         : see if ftruncate64 exists
7116         set ftruncate64 d_ftruncate64
7117         eval $inlibc
7118
7119         : see if lockf64 exists
7120         set lockf64 d_lockf64
7121         eval $inlibc
7122
7123         : see if lseek64 exists
7124         set lseek64 d_lseek64
7125         eval $inlibc
7126
7127         : see if lstat64 exists
7128         set lstat64 d_lstat64
7129         eval $inlibc
7130
7131         : see if open64 exists
7132         set open64 d_open64
7133         eval $inlibc
7134
7135         : see if opendir64 exists
7136         set opendir64 d_opendir64
7137         eval $inlibc
7138
7139         : see if readdir64 exists
7140         set readdir64 d_readdir64
7141         eval $inlibc
7142
7143         : see if seekdir64 exists
7144         set seekdir64 d_seekdir64
7145         eval $inlibc
7146
7147         : see if stat64 exists
7148         set stat64 d_stat64
7149         eval $inlibc
7150
7151         : see if telldir64 exists
7152         set telldir64 d_telldir64
7153         eval $inlibc
7154
7155         : see if truncate64 exists
7156         set truncate64 d_truncate64
7157         eval $inlibc
7158
7159         : check for off64_t
7160         echo " "
7161         echo $n "Checking to see if your system supports off64_t...$c" >&4
7162         $cat >try.c <<EOCP
7163 #include <sys/types.h>
7164 off64_t foo() { off64_t x; x = 7; return x; }'
7165 EOCP
7166         if $cc $optimize $ccflags -c try.c >/dev/null 2>&1; then
7167                 val="$define"
7168                 echo " Yup, it does." >&4
7169         else
7170                 val="$undef"
7171                 echo " Nope, it doesn't." >&4
7172         fi
7173         $rm -f try.*
7174         set d_off64t
7175         eval $setvar
7176
7177         : check for ino64_t
7178         echo " "
7179         echo $n "Checking to see if your system supports ino64_t...$c" >&4
7180         val="$undef"
7181         case "$i_sysstat" in
7182         "$define" )
7183                 $cat >try.c <<EOCP
7184 #include <sys/types.h>
7185 #include <sys/stat.h>
7186 ino64_t foo() { ino64_t x; x = 7; return x; }'
7187 EOCP
7188                 if $cc $optimize $ccflags -c try.c >/dev/null 2>&1; then
7189                         val="$define"
7190                 fi
7191                 $rm -f try.*
7192                 ;;
7193         esac
7194         if $test "X$val" = X"$define"; then
7195                 echo " Yup, it does." >&4
7196         else
7197                 echo " Nope, it doesn't." >&4
7198         fi
7199         set d_ino64t
7200         eval $setvar
7201
7202         : check for struct flock64
7203         echo " "
7204         echo "Checking to see if your system supports struct flock64..." >&4
7205         if $h_fcntl; then
7206                 set d_flock64_s flock64 l_len define fcntl.h
7207                 eval $hasfield
7208         else
7209                 val="$undef"
7210                 set d_flock64_s
7211                 eval $setvar
7212         fi
7213         case "$d_flock64_s" in
7214         "$define")      echo "Yup, it does." >&4
7215                         ;;
7216         *)              echo "Nope, it doesn't." >&4
7217                         ;;
7218         esac
7219
7220         : check for struct dirent64
7221         echo " "
7222         echo "Checking to see if your system supports struct dirent64..." >&4
7223         set d_dirent64_s dirent64 d_off $i_dirent dirent.h
7224         eval $hasfield
7225         case "$d_dirent64_s" in
7226         "$define")      echo "Yup, it does." >&4
7227                         ;;
7228         *)              echo "Nope, it doesn't." >&4
7229                         ;;
7230         esac
7231
7232 else
7233         val="$undef"
7234         for xxx in d_fstat64 d_ftruncate64 d_lockf64 d_lseek64 d_lstat64 d_open64 d_opendir64 d_readdir64 d_seekdir64 d_stat64 d_telldir64 d_truncate64 d_off64t d_ino64t d_flock64_s d_dirent64_s
7235         do
7236                 set $xxx
7237                 eval $setvar
7238         done
7239 fi
7240
7241 : see if dlerror exists
7242 xxx_runnm="$runnm"
7243 runnm=false
7244 set dlerror d_dlerror
7245 eval $inlibc
7246 runnm="$xxx_runnm"
7247
7248 : see if dlfcn is available
7249 set dlfcn.h i_dlfcn
7250 eval $inhdr
7251
7252 case "$usedl" in
7253 $define|y|true)
7254         $cat << EOM
7255
7256 On a few systems, the dynamically loaded modules that perl generates and uses
7257 will need a different extension than shared libs. The default will probably
7258 be appropriate.
7259
7260 EOM
7261         case "$dlext" in
7262         '')     dflt="$so" ;;
7263         *)      dflt="$dlext" ;;
7264         esac
7265         rp='What is the extension of dynamically loaded modules'
7266         . ./myread
7267         dlext="$ans"
7268         ;;
7269 *)
7270         dlext="none"
7271         ;;
7272 esac
7273
7274 : Check if dlsym need a leading underscore
7275 echo " "
7276 val="$undef"
7277
7278 case "$dlsrc" in
7279 dl_dlopen.xs)
7280         echo "Checking whether your dlsym() needs a leading underscore ..." >&4
7281         $cat >dyna.c <<'EOM'
7282 fred () { }
7283 EOM
7284
7285 $cat >fred.c<<EOM
7286
7287 #include <stdio.h>
7288 #$i_dlfcn I_DLFCN
7289 #ifdef I_DLFCN
7290 #include <dlfcn.h>      /* the dynamic linker include file for Sunos/Solaris */
7291 #else
7292 #include <sys/types.h>
7293 #include <nlist.h>
7294 #include <link.h>
7295 #endif
7296
7297 extern int fred() ;
7298
7299 main()
7300 {
7301     void * handle ;
7302     void * symbol ;
7303 #ifndef RTLD_LAZY
7304     int mode = 1 ;
7305 #else
7306     int mode = RTLD_LAZY ;
7307 #endif
7308     handle = dlopen("./dyna.$dlext", mode) ;
7309     if (handle == NULL) {
7310         printf ("1\n") ;
7311         fflush (stdout) ;
7312         exit(0);
7313     }
7314     symbol = dlsym(handle, "fred") ;
7315     if (symbol == NULL) {
7316         /* try putting a leading underscore */
7317         symbol = dlsym(handle, "_fred") ;
7318         if (symbol == NULL) {
7319             printf ("2\n") ;
7320             fflush (stdout) ;
7321             exit(0);
7322         }
7323         printf ("3\n") ;
7324     }
7325     else
7326         printf ("4\n") ;
7327     fflush (stdout) ;
7328     exit(0);
7329 }
7330 EOM
7331         : Call the object file tmp-dyna.o in case dlext=o.
7332         if $cc $ccflags $cccdlflags -c dyna.c > /dev/null 2>&1 && 
7333                 mv dyna${_o} tmp-dyna${_o} > /dev/null 2>&1 && 
7334                 $ld $lddlflags -o dyna.$dlext tmp-dyna${_o} > /dev/null 2>&1 && 
7335                 $cc $ccflags -o fred $ldflags $cccdlflags $ccdlflags fred.c $libs > /dev/null 2>&1; then
7336                 xxx=`./fred`
7337                 case $xxx in
7338                 1)      echo "Test program failed using dlopen." >&4
7339                         echo "Perhaps you should not use dynamic loading." >&4;;
7340                 2)      echo "Test program failed using dlsym." >&4
7341                         echo "Perhaps you should not use dynamic loading." >&4;;
7342                 3)      echo "dlsym needs a leading underscore" >&4
7343                         val="$define" ;;
7344                 4)      echo "dlsym doesn't need a leading underscore." >&4;;
7345                 esac
7346         else
7347                 echo "I can't compile and run the test program." >&4
7348         fi
7349         ;;
7350 esac
7351                 
7352 $rm -f fred fred.? dyna.$dlext dyna.? tmp-dyna.?
7353
7354 set d_dlsymun
7355 eval $setvar
7356
7357 hasproto='varname=$1; func=$2; shift; shift;
7358 while $test $# -ge 2; do
7359         case "$1" in
7360         $define) echo "#include <$2>";;
7361         esac ;
7362     shift 2;
7363 done > try.c;
7364 $cppstdin $cppflags $cppminus < try.c > tryout.c 2>/dev/null;
7365 if $contains "$func.*(" tryout.c >/dev/null 2>&1; then
7366         echo "$func() prototype found.";
7367         val="$define";
7368 else
7369         echo "$func() prototype NOT found.";
7370         val="$undef";
7371 fi;
7372 set $varname;
7373 eval $setvar;
7374 $rm -f try.c tryout.c'
7375
7376 : see if prototype for drand48 is available
7377 echo " "
7378 set d_drand48proto drand48 $i_stdlib stdlib.h $i_unistd unistd.h
7379 eval $hasproto
7380
7381 : see if dup2 exists
7382 set dup2 d_dup2
7383 eval $inlibc
7384
7385 : see if eaccess exists
7386 set eaccess d_eaccess
7387 eval $inlibc
7388
7389 : see if endgrent exists
7390 set endgrent d_endgrent
7391 eval $inlibc
7392
7393 : see if endhostent exists
7394 set endhostent d_endhent
7395 eval $inlibc
7396
7397 : see if endnetent exists
7398 set endnetent d_endnent
7399 eval $inlibc
7400
7401 : see if endprotoent exists
7402 set endprotoent d_endpent
7403 eval $inlibc
7404
7405 : see if endpwent exists
7406 set endpwent d_endpwent
7407 eval $inlibc
7408
7409 : see if endservent exists
7410 set endservent d_endsent
7411 eval $inlibc
7412
7413 : Locate the flags for 'open()'
7414 echo " "
7415 $cat >open3.c <<'EOCP'
7416 #include <sys/types.h>
7417 #ifdef I_FCNTL
7418 #include <fcntl.h>
7419 #endif
7420 #ifdef I_SYS_FILE
7421 #include <sys/file.h>
7422 #endif
7423 main() {
7424         if(O_RDONLY);
7425 #ifdef O_TRUNC
7426         exit(0);
7427 #else
7428         exit(1);
7429 #endif
7430 }
7431 EOCP
7432 : check sys/file.h first to get FREAD on Sun
7433 if $test `./findhdr sys/file.h` && \
7434                 set open3 -DI_SYS_FILE && eval $compile; then
7435         h_sysfile=true;
7436         echo "<sys/file.h> defines the O_* constants..." >&4
7437         if ./open3; then
7438                 echo "and you have the 3 argument form of open()." >&4
7439                 val="$define"
7440         else
7441                 echo "but not the 3 argument form of open().  Oh, well." >&4
7442                 val="$undef"
7443         fi
7444 elif $test `./findhdr fcntl.h` && \
7445                 set open3 -DI_FCNTL && eval $compile; then
7446         h_fcntl=true;
7447         echo "<fcntl.h> defines the O_* constants..." >&4
7448         if ./open3; then
7449                 echo "and you have the 3 argument form of open()." >&4
7450                 val="$define"
7451         else
7452                 echo "but not the 3 argument form of open().  Oh, well." >&4
7453                 val="$undef"
7454         fi
7455 else
7456         val="$undef"
7457         echo "I can't find the O_* constant definitions!  You got problems." >&4
7458 fi
7459 set d_open3
7460 eval $setvar
7461 $rm -f open3*
7462
7463 : check for non-blocking I/O stuff
7464 case "$h_sysfile" in
7465 true) echo "#include <sys/file.h>" > head.c;;
7466 *)
7467         case "$h_fcntl" in
7468         true) echo "#include <fcntl.h>" > head.c;;
7469         *) echo "#include <sys/fcntl.h>" > head.c;;
7470         esac
7471         ;;
7472 esac
7473 echo " "
7474 echo "Figuring out the flag used by open() for non-blocking I/O..." >&4
7475 case "$o_nonblock" in
7476 '')
7477         $cat head.c > try.c
7478         $cat >>try.c <<'EOCP'
7479 main() {
7480 #ifdef O_NONBLOCK
7481         printf("O_NONBLOCK\n");
7482         exit(0);
7483 #endif
7484 #ifdef O_NDELAY
7485         printf("O_NDELAY\n");
7486         exit(0);
7487 #endif
7488 #ifdef FNDELAY
7489         printf("FNDELAY\n");
7490         exit(0);
7491 #endif
7492         exit(0);
7493 }
7494 EOCP
7495         set try
7496         if eval $compile_ok; then
7497                 o_nonblock=`./try`
7498                 case "$o_nonblock" in
7499                 '') echo "I can't figure it out, assuming O_NONBLOCK will do.";;
7500                 *) echo "Seems like we can use $o_nonblock.";;
7501                 esac
7502         else
7503                 echo "(I can't compile the test program; pray O_NONBLOCK is right!)"
7504         fi
7505         ;;
7506 *) echo "Using $hint value $o_nonblock.";;
7507 esac
7508 $rm -f try try.* .out core
7509
7510 echo " "
7511 echo "Let's see what value errno gets from read() on a $o_nonblock file..." >&4
7512 case "$eagain" in
7513 '')
7514         $cat head.c > try.c
7515         $cat >>try.c <<EOCP
7516 #include <errno.h>
7517 #include <sys/types.h>
7518 #include <signal.h>
7519 #define MY_O_NONBLOCK $o_nonblock
7520 #ifndef errno  /* XXX need better Configure test */
7521 extern int errno;
7522 #endif
7523 $signal_t blech(x) int x; { exit(3); }
7524 EOCP
7525         $cat >> try.c <<'EOCP'
7526 main()
7527 {
7528         int pd[2];
7529         int pu[2];
7530         char buf[1];
7531         char string[100];
7532
7533         pipe(pd);       /* Down: child -> parent */
7534         pipe(pu);       /* Up: parent -> child */
7535         if (0 != fork()) {
7536                 int ret;
7537                 close(pd[1]);   /* Parent reads from pd[0] */
7538                 close(pu[0]);   /* Parent writes (blocking) to pu[1] */
7539                 if (-1 == fcntl(pd[0], F_SETFL, MY_O_NONBLOCK))
7540                         exit(1);
7541                 signal(SIGALRM, blech);
7542                 alarm(5);
7543                 if ((ret = read(pd[0], buf, 1)) > 0)    /* Nothing to read! */
7544                         exit(2);
7545                 sprintf(string, "%d\n", ret);
7546                 write(2, string, strlen(string));
7547                 alarm(0);
7548 #ifdef EAGAIN
7549                 if (errno == EAGAIN) {
7550                         printf("EAGAIN\n");
7551                         goto ok;
7552                 }
7553 #endif
7554 #ifdef EWOULDBLOCK
7555                 if (errno == EWOULDBLOCK)
7556                         printf("EWOULDBLOCK\n");
7557 #endif
7558         ok:
7559                 write(pu[1], buf, 1);   /* Unblocks child, tell it to close our pipe */
7560                 sleep(2);                               /* Give it time to close our pipe */
7561                 alarm(5);
7562                 ret = read(pd[0], buf, 1);      /* Should read EOF */
7563                 alarm(0);
7564                 sprintf(string, "%d\n", ret);
7565                 write(3, string, strlen(string));
7566                 exit(0);
7567         }
7568
7569         close(pd[0]);                   /* We write to pd[1] */
7570         close(pu[1]);                   /* We read from pu[0] */
7571         read(pu[0], buf, 1);    /* Wait for parent to signal us we may continue */
7572         close(pd[1]);                   /* Pipe pd is now fully closed! */
7573         exit(0);                                /* Bye bye, thank you for playing! */
7574 }
7575 EOCP
7576         set try
7577         if eval $compile_ok; then
7578                 echo "$startsh" >mtry
7579                 echo "./try >try.out 2>try.ret 3>try.err || exit 4" >>mtry
7580                 chmod +x mtry
7581                 ./mtry >/dev/null 2>&1
7582                 case $? in
7583                 0) eagain=`$cat try.out`;;
7584                 1) echo "Could not perform non-blocking setting!";;
7585                 2) echo "I did a successful read() for something that was not there!";;
7586                 3) echo "Hmm... non-blocking I/O does not seem to be working!";;
7587                 *) echo "Something terribly wrong happened during testing.";;
7588                 esac
7589                 rd_nodata=`$cat try.ret`
7590                 echo "A read() system call with no data present returns $rd_nodata."
7591                 case "$rd_nodata" in
7592                 0|-1) ;;
7593                 *)
7594                         echo "(That's peculiar, fixing that to be -1.)"
7595                         rd_nodata=-1
7596                         ;;
7597                 esac
7598                 case "$eagain" in
7599                 '')
7600                         echo "Forcing errno EAGAIN on read() with no data available."
7601                         eagain=EAGAIN
7602                         ;;
7603                 *)
7604                         echo "Your read() sets errno to $eagain when no data is available."
7605                         ;;
7606                 esac
7607                 status=`$cat try.err`
7608                 case "$status" in
7609                 0) echo "And it correctly returns 0 to signal EOF.";;
7610                 -1) echo "But it also returns -1 to signal EOF, so be careful!";;
7611                 *) echo "However, your read() returns '$status' on EOF??";;
7612                 esac
7613                 val="$define"
7614                 if test "$status" = "$rd_nodata"; then
7615                         echo "WARNING: you can't distinguish between EOF and no data!"
7616                         val="$undef"
7617                 fi
7618         else
7619                 echo "I can't compile the test program--assuming errno EAGAIN will do."
7620                 eagain=EAGAIN
7621         fi
7622         set d_eofnblk
7623         eval $setvar
7624         ;;
7625 *)
7626         echo "Using $hint value $eagain."
7627         echo "Your read() returns $rd_nodata when no data is present."
7628         case "$d_eofnblk" in
7629         "$define") echo "And you can see EOF because read() returns 0.";;
7630         "$undef") echo "But you can't see EOF status from read() returned value.";;
7631         *)
7632                 echo "(Assuming you can't see EOF status from read anyway.)"
7633                 d_eofnblk=$undef
7634                 ;;
7635         esac
7636         ;;
7637 esac
7638 $rm -f try try.* .out core head.c mtry
7639
7640 : see if fchmod exists
7641 set fchmod d_fchmod
7642 eval $inlibc
7643
7644 : see if fchown exists
7645 set fchown d_fchown
7646 eval $inlibc
7647
7648 : see if this is an fcntl system
7649 set fcntl d_fcntl
7650 eval $inlibc
7651
7652 : see if sys/select.h has to be included
7653 set sys/select.h i_sysselct
7654 eval $inhdr
7655
7656 : see if we should include time.h, sys/time.h, or both
7657 echo " "
7658 if test "X$timeincl" = X; then
7659         echo "Testing to see if we should include <time.h>, <sys/time.h> or both." >&4
7660         $echo $n "I'm now running the test program...$c"
7661         $cat >try.c <<'EOCP'
7662 #include <sys/types.h>
7663 #ifdef I_TIME
7664 #include <time.h>
7665 #endif
7666 #ifdef I_SYSTIME
7667 #ifdef SYSTIMEKERNEL
7668 #define KERNEL
7669 #endif
7670 #include <sys/time.h>
7671 #endif
7672 #ifdef I_SYSSELECT
7673 #include <sys/select.h>
7674 #endif
7675 main()
7676 {
7677         struct tm foo;
7678 #ifdef S_TIMEVAL
7679         struct timeval bar;
7680 #endif
7681 #ifdef S_TIMEZONE
7682         struct timezone tzp;
7683 #endif
7684         if (foo.tm_sec == foo.tm_sec)
7685                 exit(0);
7686 #ifdef S_TIMEVAL
7687         if (bar.tv_sec == bar.tv_sec)
7688                 exit(0);
7689 #endif
7690         exit(1);
7691 }
7692 EOCP
7693         flags=''
7694         for s_timezone in '-DS_TIMEZONE' ''; do
7695         sysselect=''
7696         for s_timeval in '-DS_TIMEVAL' ''; do
7697         for i_systimek in '' '-DSYSTIMEKERNEL'; do
7698         for i_time in '' '-DI_TIME'; do
7699         for i_systime in '-DI_SYSTIME' ''; do
7700                 case "$flags" in
7701                 '') $echo $n ".$c"
7702                         set try $i_time $i_systime $i_systimek $sysselect $s_timeval $s_timezone
7703                         if eval $compile; then
7704                                 set X $i_time $i_systime $i_systimek $sysselect $s_timeval
7705                                 shift
7706                                 flags="$*"
7707                                 echo " "
7708                                 $echo $n "Succeeded with $flags$c"
7709                         fi
7710                         ;;
7711                 esac
7712         done
7713         done
7714         done
7715         done
7716         done
7717         timeincl=''
7718         echo " "
7719         case "$flags" in
7720         *SYSTIMEKERNEL*) i_systimek="$define"
7721                 timeincl=`./findhdr sys/time.h`
7722                 echo "We'll include <sys/time.h> with KERNEL defined." >&4;;
7723         *) i_systimek="$undef";;
7724         esac
7725         case "$flags" in
7726         *I_TIME*) i_time="$define"
7727                 timeincl=`./findhdr time.h`" $timeincl"
7728                 echo "We'll include <time.h>." >&4;;
7729         *) i_time="$undef";;
7730         esac
7731         case "$flags" in
7732         *I_SYSTIME*) i_systime="$define"
7733                 timeincl=`./findhdr sys/time.h`" $timeincl"
7734                 echo "We'll include <sys/time.h>." >&4;;
7735         *) i_systime="$undef";;
7736         esac
7737         $rm -f try.c try
7738 fi
7739
7740 : check for fd_set items
7741 $cat <<EOM
7742
7743 Checking to see how well your C compiler handles fd_set and friends ...
7744 EOM
7745 $cat >fd_set.c <<EOCP
7746 #$i_systime I_SYS_TIME
7747 #$i_sysselct I_SYS_SELECT
7748 #$d_socket HAS_SOCKET
7749 #include <sys/types.h>
7750 #ifdef HAS_SOCKET
7751 #include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
7752 #endif
7753 #ifdef I_SYS_TIME
7754 #include <sys/time.h>
7755 #endif
7756 #ifdef I_SYS_SELECT
7757 #include <sys/select.h>
7758 #endif
7759 main() {
7760         fd_set fds;
7761
7762 #ifdef TRYBITS
7763         if(fds.fds_bits);
7764 #endif
7765
7766 #if defined(FD_SET) && defined(FD_CLR) && defined(FD_ISSET) && defined(FD_ZERO)
7767         exit(0);
7768 #else
7769         exit(1);
7770 #endif
7771 }
7772 EOCP
7773 set fd_set -DTRYBITS
7774 if eval $compile; then
7775         d_fds_bits="$define"
7776         d_fd_set="$define"
7777         echo "Well, your system knows about the normal fd_set typedef..." >&4
7778         if ./fd_set; then
7779                 echo "and you have the normal fd_set macros (just as I'd expect)." >&4
7780                 d_fd_macros="$define"
7781         else
7782                 $cat >&4 <<'EOM'
7783 but not the normal fd_set macros!  Gaaack!  I'll have to cover for you.
7784 EOM
7785                 d_fd_macros="$undef"
7786         fi
7787 else
7788         $cat <<'EOM'
7789 Hmm, your compiler has some difficulty with fd_set.  Checking further...
7790 EOM
7791         set fd_set
7792         if eval $compile; then
7793                 d_fds_bits="$undef"
7794                 d_fd_set="$define"
7795                 echo "Well, your system has some sort of fd_set available..." >&4
7796                 if ./fd_set; then
7797                         echo "and you have the normal fd_set macros." >&4
7798                         d_fd_macros="$define"
7799                 else
7800                         $cat <<'EOM'
7801 but not the normal fd_set macros!  Gross!  More work for me...
7802 EOM
7803                         d_fd_macros="$undef"
7804                 fi
7805         else
7806         echo "Well, you got zip.  That's OK, I can roll my own fd_set stuff." >&4
7807                 d_fd_set="$undef"
7808                 d_fds_bits="$undef"
7809                 d_fd_macros="$undef"
7810         fi
7811 fi
7812 $rm -f fd_set*
7813
7814 : see if fgetpos exists
7815 set fgetpos d_fgetpos
7816 eval $inlibc
7817
7818
7819 if $test X"$use64bits" = X"$define"; then
7820         : see if fgetpos64 exists
7821         set fgetpos64 d_fgetpos64
7822         eval $inlibc
7823
7824         : see if fopen64 exists
7825         set freopen64 d_fopen64
7826         eval $inlibc
7827
7828         : see if freopen64 exists
7829         set freopen64 d_freopen64
7830         eval $inlibc
7831
7832         : see if fseek64 exists
7833         set fseek64 d_fseek64
7834         eval $inlibc
7835
7836         : see if fseeko64 exists
7837         set fseeko64 d_fseeko64
7838         eval $inlibc
7839
7840         : see if fsetpos64 exists
7841         set fsetpos64 d_fsetpos64
7842         eval $inlibc
7843
7844         : see if ftell64 exists
7845         set ftell64 d_ftell64
7846         eval $inlibc
7847
7848         : see if ftello64 exists
7849         set ftello64 d_ftello64
7850         eval $inlibc
7851
7852         : see if tmpfile64 exists
7853         set tmpfile64 d_tmpfile64
7854         eval $inlibc
7855 else
7856         val="$undef"
7857         for xxx in d_fgetpos64 d_fopen64 d_freopen64 d_fseek64 d_fseeko64 d_fsetpos64 d_ftell64 d_ftello64 d_tmpfile64
7858         do
7859                 set $xxx
7860                 eval $setvar
7861         done
7862 fi
7863
7864 : see if flock exists
7865 set flock d_flock
7866 eval $inlibc
7867
7868 : see if fork exists
7869 set fork d_fork
7870 eval $inlibc
7871
7872 : see if pathconf exists
7873 set pathconf d_pathconf
7874 eval $inlibc
7875
7876 : see if fpathconf exists
7877 set fpathconf d_fpathconf
7878 eval $inlibc
7879
7880 : see if fseeko exists
7881 set fseeko d_fseeko
7882 eval $inlibc
7883
7884 : see if fsetpos exists
7885 set fsetpos d_fsetpos
7886 eval $inlibc
7887
7888 : see if ftello exists
7889 set ftello d_ftello
7890 eval $inlibc
7891
7892 : see if getgrent exists
7893 set getgrent d_getgrent
7894 eval $inlibc
7895
7896 : see if gethostbyaddr exists
7897 set gethostbyaddr d_gethbyaddr
7898 eval $inlibc
7899
7900 : see if gethostbyname exists
7901 set gethostbyname d_gethbyname
7902 eval $inlibc
7903
7904 : see if gethostent exists
7905 set gethostent d_gethent
7906 eval $inlibc
7907
7908 : see how we will look up host name
7909 echo " "
7910 if false; then
7911         : dummy stub to allow use of elif
7912 elif set gethostname val -f d_gethname; eval $csym; $val; then
7913         echo 'gethostname() found.' >&4
7914         d_gethname="$define"
7915         call=gethostname
7916 elif set uname val -f d_uname; eval $csym; $val; then
7917         if ./xenix; then
7918                 $cat <<'EOM'
7919 uname() was found, but you're running xenix, and older versions of xenix
7920 have a broken uname(). If you don't really know whether your xenix is old
7921 enough to have a broken system call, use the default answer.
7922
7923 EOM
7924                 dflt=y
7925                 case "$d_uname" in
7926                 "$define") dflt=n;;
7927                 esac
7928                 rp='Is your uname() broken?'
7929                 . ./myread
7930                 case "$ans" in
7931                 n*) d_uname="$define"; call=uname;;
7932                 esac
7933         else
7934                 echo 'uname() found.' >&4
7935                 d_uname="$define"
7936                 call=uname
7937         fi
7938 fi
7939 case "$d_gethname" in
7940 '') d_gethname="$undef";;
7941 esac
7942 case "$d_uname" in
7943 '') d_uname="$undef";;
7944 esac
7945 case "$d_uname$d_gethname" in
7946 *define*)
7947         dflt=n
7948         cat <<EOM
7949  
7950 Every now and then someone has a $call() that lies about the hostname
7951 but can't be fixed for political or economic reasons.  If you wish, I can
7952 pretend $call() isn't there and maybe compute hostname at run-time
7953 thanks to the '$phostname' command.
7954
7955 EOM
7956         rp="Shall I ignore $call() from now on?"
7957         . ./myread
7958         case "$ans" in
7959         y*) d_uname="$undef" d_gethname="$undef"; $echo $n "Okay...$c";;
7960         esac;;
7961 esac
7962 case "$phostname" in
7963 '') aphostname='';;
7964 *) case "$aphostname" in
7965         /*) ;;
7966         *) set X $phostname
7967                 shift
7968                 file=$1
7969                 shift
7970                 file=`./loc $file $file $pth`
7971                 aphostname=`echo $file $*`
7972                 ;;
7973         esac
7974         ;;
7975 esac
7976 case "$d_uname$d_gethname" in
7977 *define*) ;;
7978 *)
7979         case "$phostname" in
7980         '')
7981                 echo "There will be no way for $package to get your hostname." >&4;;
7982         *)
7983         echo "I'll use 'popen("'"'$aphostname'", "r")'"' to get your hostname." >&4
7984                 ;;
7985         esac;;
7986 esac
7987 case "$d_phostname" in
7988 '') d_phostname="$undef";;
7989 esac
7990
7991 : see if this is a netdb.h system
7992 set netdb.h i_netdb
7993 eval $inhdr
7994
7995 : see if prototypes for various gethostxxx netdb.h functions are available
7996 echo " "
7997 set d_gethostprotos gethostent $i_netdb netdb.h
7998 eval $hasproto
7999
8000 : see if getlogin exists
8001 set getlogin d_getlogin
8002 eval $inlibc
8003
8004 : see if getnetbyaddr exists
8005 set getnetbyaddr d_getnbyaddr
8006 eval $inlibc
8007
8008 : see if getnetbyname exists
8009 set getnetbyname d_getnbyname
8010 eval $inlibc
8011
8012 : see if getnetent exists
8013 set getnetent d_getnent
8014 eval $inlibc
8015
8016 : see if prototypes for various getnetxxx netdb.h functions are available
8017 echo " "
8018 set d_getnetprotos getnetent $i_netdb netdb.h
8019 eval $hasproto
8020
8021
8022 : see if getprotobyname exists
8023 set getprotobyname d_getpbyname
8024 eval $inlibc
8025
8026 : see if getprotobynumber exists
8027 set getprotobynumber d_getpbynumber
8028 eval $inlibc
8029
8030 : see if getprotoent exists
8031 set getprotoent d_getpent
8032 eval $inlibc
8033
8034 : see if getpgid exists
8035 set getpgid d_getpgid
8036 eval $inlibc
8037
8038 : see if getpgrp2 exists
8039 set getpgrp2 d_getpgrp2
8040 eval $inlibc
8041
8042 : see if getppid exists
8043 set getppid d_getppid
8044 eval $inlibc
8045
8046 : see if getpriority exists
8047 set getpriority d_getprior
8048 eval $inlibc
8049
8050 : see if prototypes for various getprotoxxx netdb.h functions are available
8051 echo " "
8052 set d_getprotoprotos getprotoent $i_netdb netdb.h
8053 eval $hasproto
8054
8055 : see if getpwent exists
8056 set getpwent d_getpwent
8057 eval $inlibc
8058
8059
8060 : see if getservbyname exists
8061 set getservbyname d_getsbyname
8062 eval $inlibc
8063
8064 : see if getservbyport exists
8065 set getservbyport d_getsbyport
8066 eval $inlibc
8067
8068 : see if getservent exists
8069 set getservent d_getsent
8070 eval $inlibc
8071
8072 : see if prototypes for various getservxxx netdb.h functions are available
8073 echo " "
8074 set d_getservprotos getservent $i_netdb netdb.h
8075 eval $hasproto
8076
8077 : see if gettimeofday or ftime exists
8078 set gettimeofday d_gettimeod
8079 eval $inlibc
8080 case "$d_gettimeod" in
8081 "$undef")
8082         set ftime d_ftime 
8083         eval $inlibc
8084         ;;
8085 *)
8086         val="$undef"; set d_ftime; eval $setvar
8087         ;;
8088 esac
8089 case "$d_gettimeod$d_ftime" in
8090 "$undef$undef")
8091         echo " "
8092         echo 'No ftime() nor gettimeofday() -- timing may be less accurate.' >&4
8093         ;;
8094 esac
8095
8096 : see if this is an grp system
8097 set grp.h i_grp
8098 eval $inhdr
8099
8100 case "$i_grp" in
8101 $define)
8102         xxx=`./findhdr grp.h`
8103         $cppstdin $cppflags $cppminus < $xxx >$$.h
8104
8105         if $contains 'gr_passwd' $$.h >/dev/null 2>&1; then
8106                 val="$define"
8107         else
8108                 val="$undef"
8109         fi
8110         set d_grpasswd
8111         eval $setvar
8112
8113         $rm -f $$.h
8114         ;;
8115 *)
8116         val="$undef";
8117         set d_grpasswd; eval $setvar
8118         ;;
8119 esac
8120
8121 : see if this is a netinet/in.h or sys/in.h system
8122 set netinet/in.h i_niin sys/in.h i_sysin
8123 eval $inhdr
8124
8125 : see if arpa/inet.h has to be included
8126 set arpa/inet.h i_arpainet
8127 eval $inhdr
8128
8129 : see if htonl --and friends-- exists
8130 val=''
8131 set htonl val
8132 eval $inlibc
8133
8134 : Maybe they are macros.
8135 case "$val" in
8136 $undef)
8137         $cat >htonl.c <<EOM
8138 #include <stdio.h>
8139 #include <sys/types.h>
8140 #$i_niin I_NETINET_IN
8141 #$i_sysin I_SYS_IN
8142 #$i_arpainet I_ARPA_INET
8143 #ifdef I_NETINET_IN
8144 #include <netinet/in.h>
8145 #endif
8146 #ifdef I_SYS_IN
8147 #include <sys/in.h>
8148 #endif
8149 #ifdef I_ARPA_INET
8150 #include <arpa/inet.h>
8151 #endif
8152 #ifdef htonl
8153 printf("Defined as a macro.");
8154 #endif
8155 EOM
8156         $cppstdin $cppflags $cppminus < htonl.c >htonl.E 2>/dev/null
8157         if $contains 'Defined as a macro' htonl.E >/dev/null 2>&1; then
8158                 val="$define"
8159                 echo "But it seems to be defined as a macro." >&4
8160         fi
8161         $rm -f htonl.?
8162         ;;
8163 esac
8164 set d_htonl
8165 eval $setvar
8166
8167 : see which of string.h or strings.h is needed
8168 echo " "
8169 strings=`./findhdr string.h`
8170 if $test "$strings" && $test -r "$strings"; then
8171         echo "Using <string.h> instead of <strings.h>." >&4
8172         val="$define"
8173 else
8174         val="$undef"
8175         strings=`./findhdr strings.h`
8176         if $test "$strings" && $test -r "$strings"; then
8177                 echo "Using <strings.h> instead of <string.h>." >&4
8178         else
8179                 echo "No string header found -- You'll surely have problems." >&4
8180         fi
8181 fi
8182 set i_string
8183 eval $setvar
8184 case "$i_string" in
8185 "$undef") strings=`./findhdr strings.h`;;
8186 *)        strings=`./findhdr string.h`;;
8187 esac
8188
8189 : index or strchr
8190 echo " "
8191 if set index val -f; eval $csym; $val; then
8192         if set strchr val -f d_strchr; eval $csym; $val; then
8193                 if $contains strchr "$strings" >/dev/null 2>&1 ; then
8194                         val="$define"
8195                         vali="$undef"
8196                         echo "strchr() found." >&4
8197                 else
8198                         val="$undef"
8199                         vali="$define"
8200                         echo "index() found." >&4
8201                 fi
8202         else
8203                 val="$undef"
8204                 vali="$define"
8205                 echo "index() found." >&4
8206         fi
8207 else
8208         if set strchr val -f d_strchr; eval $csym; $val; then
8209                 val="$define"
8210                 vali="$undef"
8211                 echo "strchr() found." >&4
8212         else
8213                 echo "No index() or strchr() found!" >&4
8214                 val="$undef"
8215                 vali="$undef"
8216         fi
8217 fi
8218 set d_strchr; eval $setvar
8219 val="$vali"
8220 set d_index; eval $setvar
8221
8222 : check whether inet_aton exists
8223 set inet_aton d_inetaton
8224 eval $inlibc
8225
8226 : see if inttypes.h is available
8227 : we want a real compile instead of Inhdr because some systems
8228 : have an inttypes.h which includes non-existent headers
8229 echo " "
8230 $cat >try.c <<EOCP
8231 #include <inttypes.h>
8232 main() {
8233         static int32_t foo32 = 0x12345678;
8234 }
8235 EOCP
8236 set try
8237 if eval $compile; then
8238         echo "<inttypes.h> found." >&4
8239         val="$define"
8240 else
8241         echo "<inttypes.h> NOT found." >&4
8242         val="$undef"
8243 fi
8244 $rm -f try.c try
8245 set i_inttypes
8246 eval $setvar
8247
8248 : check for int64_t
8249 case "$use64bits" in
8250 "$define" )
8251         echo " "
8252         echo $n "Checking to see if your system supports int64_t...$c" >&4
8253         $cat >try.c <<EOCP
8254 #include <sys/types.h>
8255 #$i_inttypes I_INTTYPES
8256 #ifdef I_INTTYPES
8257 #include <inttypes.h>
8258 #endif
8259 int64_t foo() { int64_t x; x = 7; return x; }
8260 EOCP
8261         if $cc $optimize $ccflags -c try.c >/dev/null 2>&1; then
8262                 val="$define"
8263                 echo " Yup, it does." >&4
8264         else
8265                 val="$undef"
8266                 echo " Nope, it doesn't." >&4
8267         fi
8268         $rm -f try.*
8269         ;;
8270 *)      val="$undef"
8271         ;;
8272 esac
8273 set d_int64t
8274 eval $setvar
8275
8276
8277 : Look for isascii
8278 echo " "
8279 $cat >isascii.c <<'EOCP'
8280 #include <stdio.h>
8281 #include <ctype.h>
8282 main() {
8283         int c = 'A';
8284         if (isascii(c))
8285                 exit(0);
8286         else
8287                 exit(1);
8288 }
8289 EOCP
8290 set isascii
8291 if eval $compile; then
8292         echo "isascii() found." >&4
8293         val="$define"
8294 else
8295         echo "isascii() NOT found." >&4
8296         val="$undef"
8297 fi
8298 set d_isascii
8299 eval $setvar
8300 $rm -f isascii*
8301
8302 : see if killpg exists
8303 set killpg d_killpg
8304 eval $inlibc
8305
8306 : see if lchown exists
8307 echo " "
8308 $cat > try.c <<'EOCP'
8309 /* System header to define __stub macros and hopefully few prototypes,
8310     which can conflict with char lchown(); below.  */
8311 #include <assert.h>
8312 /* Override any gcc2 internal prototype to avoid an error.  */
8313 /* We use char because int might match the return type of a gcc2
8314    builtin and then its argument prototype would still apply.  */
8315 char lchown();
8316 int main() {
8317     /*  The GNU C library defines this for functions which it implements
8318         to always fail with ENOSYS.  Some functions are actually named
8319         something starting with __ and the normal name is an alias.  */
8320 #if defined (__stub_lchown) || defined (__stub___lchown)
8321 choke me
8322 #else
8323 lchown();
8324 #endif
8325 ; return 0; }
8326 EOCP
8327 set try
8328 if eval $compile; then
8329     $echo "lchown() found." >&4
8330     val="$define"
8331 else
8332     $echo "lchown() NOT found." >&4
8333     val="$undef"
8334 fi
8335 set d_lchown
8336 eval $setvar
8337
8338 : see if link exists
8339 set link d_link
8340 eval $inlibc
8341
8342 : see if localeconv exists
8343 set localeconv d_locconv
8344 eval $inlibc
8345
8346 : see if lockf exists
8347 set lockf d_lockf
8348 eval $inlibc
8349
8350 : check for length of double
8351 echo " "
8352 case "$doublesize" in
8353 '')
8354         $echo $n "Checking to see how big your double precision numbers are...$c" >&4
8355         $cat >try.c <<'EOCP'
8356 #include <stdio.h>
8357 main()
8358 {
8359         printf("%d\n", sizeof(double));
8360 }
8361 EOCP
8362         set try
8363         if eval $compile_ok; then
8364                 doublesize=`./try`
8365                 $echo " $doublesize bytes." >&4
8366         else
8367                 dflt='8'
8368                 echo "(I can't seem to compile the test program.  Guessing...)"
8369                 rp="What is the size of a double precision number (in bytes)?"
8370                 . ./myread
8371                 doublesize="$ans"
8372         fi
8373         ;;
8374 esac
8375 $rm -f try.c try
8376
8377 : check for long doubles
8378 echo " "
8379 echo $n "Checking to see if your system supports long doubles...$c" >&4
8380 echo 'long double foo() { long double x; x = 7.0; return x; }' > try.c
8381 if $cc $optimize $ccflags -c try.c >/dev/null 2>&1; then
8382         val="$define"
8383         echo " Yup, it does." >&4
8384 else
8385         val="$undef"
8386         echo " Nope, it doesn't." >&4
8387 fi
8388 $rm try.*
8389 set d_longdbl
8390 eval $setvar
8391
8392 : check for length of long double
8393 case "${d_longdbl}${longdblsize}" in
8394 $define)
8395         echo " "
8396         $echo $n "Checking to see how big your long doubles are...$c" >&4
8397         $cat >try.c <<'EOCP'
8398 #include <stdio.h>
8399 main()
8400 {
8401         printf("%d\n", sizeof(long double));
8402 }
8403 EOCP
8404         set try
8405         if eval $compile; then
8406                 longdblsize=`./try`
8407                 $echo " $longdblsize bytes." >&4
8408         else
8409                 dflt='8'
8410                 echo " "
8411                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
8412                 rp="What is the size of a long double (in bytes)?"
8413                 . ./myread
8414                 longdblsize="$ans"
8415         fi
8416         if $test "X$doublesize" = "X$longdblsize"; then
8417                 echo "(That isn't any different from an ordinary double.)"
8418         fi      
8419         ;;
8420 esac
8421 $rm -f try.c try
8422
8423 : check for long long
8424 echo " "
8425 echo $n "Checking to see if your system supports long long...$c" >&4
8426 echo 'long long foo() { long long x; x = 7; return x; }' > try.c
8427 if $cc $optimize $ccflags -c try.c >/dev/null 2>&1; then
8428         val="$define"
8429         echo " Yup, it does." >&4
8430 else
8431         val="$undef"
8432         echo " Nope, it doesn't." >&4
8433 fi
8434 $rm try.*
8435 set d_longlong
8436 eval $setvar
8437
8438 : check for length of long long
8439 case "${d_longlong}${longlongsize}" in
8440 $define)
8441         echo " "
8442         $echo $n "Checking to see how big your long longs are...$c" >&4
8443         $cat >try.c <<'EOCP'
8444 #include <stdio.h>
8445 main()
8446 {
8447         printf("%d\n", sizeof(long long));
8448 }
8449 EOCP
8450         set try
8451         if eval $compile_ok; then
8452                 longlongsize=`./try`
8453                 $echo " $longlongsize bytes." >&4
8454         else
8455                 dflt='8'
8456                 echo " "
8457                 echo "(I can't seem to compile the test program.  Guessing...)"
8458                 rp="What is the size of a long long (in bytes)?"
8459                 . ./myread
8460                 longlongsize="$ans"
8461         fi
8462         if $test "X$longsize" = "X$longlongsize"; then
8463                 echo "(That isn't any different from an ordinary long.)"
8464         fi      
8465         ;;
8466 esac
8467 $rm -f try.c try
8468
8469 : see if lstat exists
8470 set lstat d_lstat
8471 eval $inlibc
8472
8473 : see if mblen exists
8474 set mblen d_mblen
8475 eval $inlibc
8476
8477 : see if mbstowcs exists
8478 set mbstowcs d_mbstowcs
8479 eval $inlibc
8480
8481 : see if mbtowc exists
8482 set mbtowc d_mbtowc
8483 eval $inlibc
8484
8485 : see if memcmp exists
8486 set memcmp d_memcmp
8487 eval $inlibc
8488
8489 : see if memcpy exists
8490 set memcpy d_memcpy
8491 eval $inlibc
8492
8493 : see if memmove exists
8494 set memmove d_memmove
8495 eval $inlibc
8496
8497 : see if memset exists
8498 set memset d_memset
8499 eval $inlibc
8500
8501 : see if mkdir exists
8502 set mkdir d_mkdir
8503 eval $inlibc
8504
8505 : see if mkfifo exists
8506 set mkfifo d_mkfifo
8507 eval $inlibc
8508
8509 : see if mktime exists
8510 set mktime d_mktime
8511 eval $inlibc
8512
8513 : see if msgctl exists
8514 set msgctl d_msgctl
8515 eval $inlibc
8516
8517 : see if msgget exists
8518 set msgget d_msgget
8519 eval $inlibc
8520
8521 : see if msgsnd exists
8522 set msgsnd d_msgsnd
8523 eval $inlibc
8524
8525 : see if msgrcv exists
8526 set msgrcv d_msgrcv
8527 eval $inlibc
8528
8529 : see how much of the 'msg*(2)' library is present.
8530 h_msg=true
8531 echo " "
8532 case "$d_msgctl$d_msgget$d_msgsnd$d_msgrcv" in
8533 *"$undef"*) h_msg=false;;
8534 esac
8535 case "$osname" in
8536 freebsd)
8537     case "`ipcs 2>&1`" in
8538     "SVID messages"*"not configured"*)
8539         echo "Your $osname does not have the msg*(2) configured." >&4
8540         h_msg=false
8541         val="$undef"
8542         set msgctl d_msgctl
8543         eval $setvar
8544         set msgget d_msgget
8545         eval $setvar
8546         set msgsnd d_msgsnd
8547         eval $setvar
8548         set msgrcv d_msgrcv
8549         eval $setvar
8550         ;;
8551     esac
8552     ;;
8553 esac
8554 : we could also check for sys/ipc.h ...
8555 if $h_msg && $test `./findhdr sys/msg.h`; then
8556         echo "You have the full msg*(2) library." >&4
8557         val="$define"
8558 else
8559         echo "You don't have the full msg*(2) library." >&4
8560         val="$undef"
8561 fi
8562 set d_msg
8563 eval $setvar
8564
8565 : see if nice exists
8566 set nice d_nice
8567 eval $inlibc
8568
8569 : see if pause exists
8570 set pause d_pause
8571 eval $inlibc
8572
8573 : see if pipe exists
8574 set pipe d_pipe
8575 eval $inlibc
8576
8577 : see if poll exists
8578 set poll d_poll
8579 eval $inlibc
8580
8581 : how to create joinable pthreads
8582 if test "X$usethreads" = "X$define"; then
8583         echo " "
8584         echo "Checking what constant to use for creating joinable pthreads..." >&4 
8585         $cat >try.c <<'EOCP'
8586 #include <pthread.h>
8587 int main() {
8588     int detachstate = JOINABLE;
8589 }
8590 EOCP
8591         set try -DJOINABLE=PTHREAD_CREATE_JOINABLE
8592         if eval $compile; then
8593                 echo "You seem to use PTHREAD_CREATE_JOINABLE." >&2
8594                 val="$undef"
8595                 set d_pthread_create_joinable
8596                 eval $setvar
8597                 val=0
8598                 set pthread_create_joinable
8599                 eval $setvar
8600         else
8601                 set try -DJOINABLE=PTHREAD_CREATE_UNDETACHED
8602                 if eval $compile; then
8603                         echo "You seem to use PTHREAD_CREATE_UNDETACHED." >&2
8604                         val="$define"
8605                         set d_pthread_create_joinable
8606                         eval $setvar
8607                         val=PTHREAD_CREATE_UNDETACHED
8608                         set pthread_create_joinable
8609                         eval $setvar
8610                 else            
8611                         set try -DJOINABLE=__UNDETACHED
8612                         if eval $compile; then
8613                                 echo "You seem to use __UNDETACHED." >&2
8614                                 val="$define"
8615                                 set d_pthread_create_joinable
8616                                 eval $setvar
8617                                 val=__UNDETACHED
8618                                 set pthread_create_joinable
8619                                 eval $setvar
8620                         else
8621                                 echo "Egads, nothing obvious found.  Guessing that you use 0." >&2
8622                                 val="$define"
8623                                 set d_pthread_create_joinable
8624                                 eval $setvar
8625                                 val=0
8626                                 set pthread_create_joinable
8627                                 eval $setvar
8628                         fi
8629                 fi
8630         fi
8631         $rm -f try try.*
8632 else
8633     d_pthread_create_joinable="$undef"
8634     pthread_create_joinable=0
8635 fi
8636
8637
8638 : see whether the various POSIXish _yields exist
8639 $cat >try.c <<EOP
8640 #include <pthread.h>
8641 #include <stdio.h>
8642 main() {
8643 #ifdef SCHED_YIELD
8644         sched_yield();
8645 #else
8646 #ifdef PTHREAD_YIELD
8647         pthread_yield();
8648 #else
8649 #ifdef PTHREAD_YIELD_NULL
8650         pthread_yield(NULL);
8651 #endif
8652 #endif
8653 #endif
8654 }
8655 EOP
8656 : see if sched_yield exists
8657 set try -DSCHED_YIELD
8658 if eval $compile; then
8659     val="$define"
8660     sched_yield='sched_yield()'
8661 else
8662     val="$undef"
8663 fi
8664 case "$usethreads" in
8665 $define)
8666         case "$val" in
8667         $define) echo 'sched_yield() found.' >&4        ;;
8668         *)       echo 'sched_yield() NOT found.' >&4    ;;
8669         esac
8670 esac
8671 set d_sched_yield
8672 eval $setvar
8673
8674 : see if pthread_yield exists
8675 set try -DPTHREAD_YIELD
8676 if eval $compile; then
8677     val="$define"
8678     case "$sched_yield" in
8679     '') sched_yield='pthread_yield()' ;;
8680     esac
8681 else
8682     set try -DPTHREAD_YIELD_NULL
8683     if eval $compile; then
8684         val="$define"
8685         case "$sched_yield" in
8686         '') sched_yield='pthread_yield(NULL)' ;;
8687         esac
8688     else
8689         val="$undef"
8690     fi
8691 fi
8692 case "$usethreads" in
8693 $define)
8694         case "$val" in
8695         $define) echo 'pthread_yield() found.' >&4      ;;
8696         *)       echo 'pthread_yield() NOT found.' >&4  ;;
8697         esac
8698         ;;
8699 esac
8700 set d_pthread_yield
8701 eval $setvar
8702
8703 case "$sched_yield" in
8704 '') sched_yield=undef ;;
8705 esac
8706
8707 $rm -f try try.*
8708
8709 : see if this is a pwd.h system
8710 set pwd.h i_pwd
8711 eval $inhdr
8712
8713 case "$i_pwd" in
8714 $define)
8715         xxx=`./findhdr pwd.h`
8716         $cppstdin $cppflags $cppminus < $xxx >$$.h
8717
8718         if $contains 'pw_quota' $$.h >/dev/null 2>&1; then
8719                 val="$define"
8720         else
8721                 val="$undef"
8722         fi
8723         set d_pwquota
8724         eval $setvar
8725
8726         if $contains 'pw_age' $$.h >/dev/null 2>&1; then
8727                 val="$define"
8728         else
8729                 val="$undef"
8730         fi
8731         set d_pwage
8732         eval $setvar
8733
8734         if $contains 'pw_change' $$.h >/dev/null 2>&1; then
8735                 val="$define"
8736         else
8737                 val="$undef"
8738         fi
8739         set d_pwchange
8740         eval $setvar
8741
8742         if $contains 'pw_class' $$.h >/dev/null 2>&1; then
8743                 val="$define"
8744         else
8745                 val="$undef"
8746         fi
8747         set d_pwclass
8748         eval $setvar
8749
8750         if $contains 'pw_expire' $$.h >/dev/null 2>&1; then
8751                 val="$define"
8752         else
8753                 val="$undef"
8754         fi
8755         set d_pwexpire
8756         eval $setvar
8757
8758         if $contains 'pw_comment' $$.h >/dev/null 2>&1; then
8759                 val="$define"
8760         else
8761                 val="$undef"
8762         fi
8763         set d_pwcomment
8764         eval $setvar
8765
8766         if $contains 'pw_gecos' $$.h >/dev/null 2>&1; then
8767                 val="$define"
8768         else
8769                 val="$undef"
8770         fi
8771         set d_pwgecos
8772         eval $setvar
8773
8774         if $contains 'pw_passwd' $$.h >/dev/null 2>&1; then
8775                 val="$define"
8776         else
8777                 val="$undef"
8778         fi
8779         set d_pwpasswd
8780         eval $setvar
8781
8782         $rm -f $$.h
8783         ;;
8784 *)
8785         val="$undef"; 
8786         set d_pwquota; eval $setvar
8787         set d_pwage; eval $setvar
8788         set d_pwchange; eval $setvar
8789         set d_pwclass; eval $setvar
8790         set d_pwexpire; eval $setvar
8791         set d_pwcomment; eval $setvar
8792         set d_pwgecos; eval $setvar
8793         set d_pwpasswd; eval $setvar
8794         ;;
8795 esac
8796
8797 : see if readdir and friends exist
8798 set readdir d_readdir
8799 eval $inlibc
8800 set seekdir d_seekdir
8801 eval $inlibc
8802 set telldir d_telldir
8803 eval $inlibc
8804 set rewinddir d_rewinddir
8805 eval $inlibc
8806
8807 : see if readlink exists
8808 set readlink d_readlink
8809 eval $inlibc
8810
8811 : see if readv exists
8812 set readv d_readv
8813 eval $inlibc
8814
8815 : see if rename exists
8816 set rename d_rename
8817 eval $inlibc
8818
8819 : see if rmdir exists
8820 set rmdir d_rmdir
8821 eval $inlibc
8822
8823 : see if memory.h is available.
8824 val=''
8825 set memory.h val
8826 eval $inhdr
8827
8828 : See if it conflicts with string.h
8829 case "$val" in
8830 $define)
8831         case "$strings" in
8832         '') ;;
8833         *)
8834                 $cppstdin $cppflags $cppminus < $strings > mem.h
8835                 if $contains 'memcpy' mem.h >/dev/null 2>&1; then
8836                         echo " "
8837                         echo "We won't be including <memory.h>."
8838                         val="$undef"
8839                 fi
8840                 $rm -f mem.h
8841                 ;;
8842         esac
8843 esac
8844 set i_memory
8845 eval $setvar
8846
8847 : can bcopy handle overlapping blocks?
8848 val="$undef"
8849 case "$d_bcopy" in
8850 "$define")
8851         echo " "
8852         echo "Checking to see if your bcopy() can do overlapping copies..." >&4
8853         $cat >try.c <<EOCP
8854 #$i_memory I_MEMORY
8855 #$i_stdlib I_STDLIB
8856 #$i_string I_STRING
8857 #$i_unistd I_UNISTD
8858 EOCP
8859         $cat >>try.c <<'EOCP'
8860 #include <stdio.h>
8861 #ifdef I_MEMORY
8862 #  include <memory.h>
8863 #endif
8864 #ifdef I_STDLIB
8865 #  include <stdlib.h>
8866 #endif
8867 #ifdef I_STRING
8868 #  include <string.h>
8869 #else
8870 #  include <strings.h>
8871 #endif
8872 #ifdef I_UNISTD
8873 #  include <unistd.h>  /* Needed for NetBSD */
8874 #endif
8875 main()
8876 {
8877 char buf[128], abc[128];
8878 char *b;
8879 int len;
8880 int off;
8881 int align;
8882
8883 bcopy("abcdefghijklmnopqrstuvwxyz0123456789", abc, 36);
8884
8885 for (align = 7; align >= 0; align--) {
8886         for (len = 36; len; len--) {
8887                 b = buf+align;
8888                 bcopy(abc, b, len);
8889                 for (off = 1; off <= len; off++) {
8890                         bcopy(b, b+off, len);
8891                         bcopy(b+off, b, len);
8892                         if (bcmp(b, abc, len))
8893                                 exit(1);
8894                 }
8895         }
8896 }
8897 exit(0);
8898 }
8899 EOCP
8900         set try
8901         if eval $compile_ok; then
8902                 if ./try 2>/dev/null; then
8903                         echo "Yes, it can."
8904                         val="$define"
8905                 else
8906                         echo "It can't, sorry."
8907                         case "$d_memmove" in
8908                         "$define") echo "But that's Ok since you have memmove()." ;;
8909                         esac
8910                 fi
8911         else
8912                 echo "(I can't compile the test program, so we'll assume not...)"
8913                 case "$d_memmove" in
8914                 "$define") echo "But that's Ok since you have memmove()." ;;
8915                 esac
8916         fi
8917         ;;
8918 esac
8919 $rm -f try.* try core
8920 set d_safebcpy
8921 eval $setvar
8922
8923 : can memcpy handle overlapping blocks?
8924 val="$undef"
8925 case "$d_memcpy" in
8926 "$define")
8927         echo " "
8928         echo "Checking to see if your memcpy() can do overlapping copies..." >&4
8929         $cat >try.c <<EOCP
8930 #$i_memory I_MEMORY
8931 #$i_stdlib I_STDLIB
8932 #$i_string I_STRING
8933 #$i_unistd I_UNISTD
8934 EOCP
8935         $cat >>try.c <<'EOCP'
8936 #include <stdio.h>
8937 #ifdef I_MEMORY
8938 #  include <memory.h>
8939 #endif
8940 #ifdef I_STDLIB
8941 #  include <stdlib.h>
8942 #endif
8943 #ifdef I_STRING
8944 #  include <string.h>
8945 #else
8946 #  include <strings.h>
8947 #endif
8948 #ifdef I_UNISTD
8949 #  include <unistd.h>  /* Needed for NetBSD */
8950 #endif
8951 main()
8952 {
8953 char buf[128], abc[128];
8954 char *b;
8955 int len;
8956 int off;
8957 int align;
8958
8959 /* Copy "abcde..." string to char abc[] so that gcc doesn't
8960    try to store the string in read-only memory. */
8961 memcpy(abc, "abcdefghijklmnopqrstuvwxyz0123456789", 36);
8962
8963 for (align = 7; align >= 0; align--) {
8964         for (len = 36; len; len--) {
8965                 b = buf+align;
8966                 memcpy(b, abc, len);
8967                 for (off = 1; off <= len; off++) {
8968                         memcpy(b+off, b, len);
8969                         memcpy(b, b+off, len);
8970                         if (memcmp(b, abc, len))
8971                                 exit(1);
8972                 }
8973         }
8974 }
8975 exit(0);
8976 }
8977 EOCP
8978         set try
8979         if eval $compile_ok; then
8980                 if ./try 2>/dev/null; then
8981                         echo "Yes, it can."
8982                         val="$define"
8983                 else
8984                         echo "It can't, sorry."
8985                         case "$d_memmove" in
8986                         "$define") echo "But that's Ok since you have memmove()." ;;
8987                         esac
8988                 fi
8989         else
8990                 echo "(I can't compile the test program, so we'll assume not...)"
8991                 case "$d_memmove" in
8992                 "$define") echo "But that's Ok since you have memmove()." ;;
8993                 esac
8994         fi
8995         ;;
8996 esac
8997 $rm -f try.* try core
8998 set d_safemcpy
8999 eval $setvar
9000
9001 : can memcmp be trusted to compare relative magnitude?
9002 val="$undef"
9003 case "$d_memcmp" in
9004 "$define")
9005         echo " "
9006         echo "Checking if your memcmp() can compare relative magnitude..." >&4
9007         $cat >try.c <<EOCP
9008 #$i_memory I_MEMORY
9009 #$i_stdlib I_STDLIB
9010 #$i_string I_STRING
9011 #$i_unistd I_UNISTD
9012 EOCP
9013         $cat >>try.c <<'EOCP'
9014 #include <stdio.h>
9015 #ifdef I_MEMORY
9016 #  include <memory.h>
9017 #endif
9018 #ifdef I_STDLIB
9019 #  include <stdlib.h>
9020 #endif
9021 #ifdef I_STRING
9022 #  include <string.h>
9023 #else
9024 #  include <strings.h>
9025 #endif
9026 #ifdef I_UNISTD
9027 #  include <unistd.h>  /* Needed for NetBSD */
9028 #endif
9029 main()
9030 {
9031 char a = -1;
9032 char b = 0;
9033 if ((a < b) && memcmp(&a, &b, 1) < 0)
9034         exit(1);
9035 exit(0);
9036 }
9037 EOCP
9038         set try
9039         if eval $compile_ok; then
9040                 if ./try 2>/dev/null; then
9041                         echo "Yes, it can."
9042                         val="$define"
9043                 else
9044                         echo "No, it can't (it uses signed chars)."
9045                 fi
9046         else
9047                 echo "(I can't compile the test program, so we'll assume not...)"
9048         fi
9049         ;;
9050 esac
9051 $rm -f try.* try core
9052 set d_sanemcmp
9053 eval $setvar
9054
9055 : see if select exists
9056 set select d_select
9057 eval $inlibc
9058
9059 : see if semctl exists
9060 set semctl d_semctl
9061 eval $inlibc
9062
9063 : see if semget exists
9064 set semget d_semget
9065 eval $inlibc
9066
9067 : see if semop exists
9068 set semop d_semop
9069 eval $inlibc
9070
9071 : see how much of the 'sem*(2)' library is present.
9072 h_sem=true
9073 echo " "
9074 case "$d_semctl$d_semget$d_semop" in
9075 *"$undef"*) h_sem=false;;
9076 esac
9077 case "$osname" in
9078 freebsd)
9079     case "`ipcs 2>&1`" in
9080     "SVID messages"*"not configured"*)
9081         echo "Your $osname does not have the sem*(2) configured." >&4
9082         h_sem=false
9083         val="$undef"
9084         set semctl d_semctl
9085         eval $setvar
9086         set semget d_semget
9087         eval $setvar
9088         set semop d_semop
9089         eval $setvar
9090         ;;
9091     esac
9092     ;;
9093 esac
9094 : we could also check for sys/ipc.h ...
9095 if $h_sem && $test `./findhdr sys/sem.h`; then
9096         echo "You have the full sem*(2) library." >&4
9097         val="$define"
9098 else
9099         echo "You don't have the full sem*(2) library." >&4
9100         val="$undef"
9101 fi
9102 set d_sem
9103 eval $setvar
9104
9105 : see whether sys/sem.h defines union semun
9106 echo " "
9107 $cat > try.c <<'END'
9108 #include <sys/types.h>
9109 #include <sys/ipc.h>
9110 #include <sys/sem.h>
9111 int main () { union semun semun; semun.buf = 0; }
9112 END
9113 set try
9114 if eval $compile; then
9115     echo "You have union semun in <sys/sem.h>." >&4
9116     val="$define"
9117 else
9118     echo "You do not have union semun in <sys/sem.h>." >&4
9119     val="$undef"
9120 fi
9121 $rm -f try try.c try.h
9122 set d_union_semun
9123 eval $setvar
9124
9125 : see how to do semctl IPC_STAT
9126 case "$d_sem" in
9127 $define)
9128     : see whether semctl IPC_STAT can use union semun
9129     echo " "
9130     $cat > try.h <<END
9131 #ifndef S_IRUSR
9132 #   ifdef S_IREAD
9133 #       define S_IRUSR S_IREAD
9134 #       define S_IWUSR S_IWRITE
9135 #       define S_IXUSR S_IEXEC
9136 #   else
9137 #       define S_IRUSR 0400
9138 #       define S_IWUSR 0200
9139 #       define S_IXUSR 0100
9140 #   endif
9141 #   define S_IRGRP (S_IRUSR>>3)
9142 #   define S_IWGRP (S_IWUSR>>3)
9143 #   define S_IXGRP (S_IXUSR>>3)
9144 #   define S_IROTH (S_IRUSR>>6)
9145 #   define S_IWOTH (S_IWUSR>>6)
9146 #   define S_IXOTH (S_IXUSR>>6)
9147 #endif
9148 #ifndef S_IRWXU
9149 #   define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
9150 #   define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
9151 #   define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
9152 #endif
9153 END
9154
9155     $cat > try.c <<END
9156 #include <sys/types.h>
9157 #include <sys/ipc.h>
9158 #include <sys/sem.h>
9159 #include <sys/stat.h>
9160 #include <stdio.h>
9161 #include <errno.h>
9162 #include "try.h"
9163 #ifndef errno
9164 extern int errno;
9165 #endif
9166 #$d_union_semun HAS_UNION_SEMUN
9167 int main() {
9168     union semun
9169 #ifndef HAS_UNION_SEMUN
9170     {
9171         int val;
9172         struct semid_ds *buf;
9173         unsigned short *array;
9174     }
9175 #endif
9176     arg;
9177     int sem, st;
9178
9179 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) && defined(S_IRWXO) && defined(IPC_CREAT)
9180     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
9181     if (sem > -1) {
9182         struct semid_ds argbuf;
9183         arg.buf = &argbuf;
9184 #       ifdef IPC_STAT
9185         st = semctl(sem, 0, IPC_STAT, arg);
9186         if (st == 0)
9187             printf("semun\n");
9188         else
9189 #       endif /* IPC_STAT */
9190             printf("semctl IPC_STAT failed: errno = %d\n", errno);
9191 #       ifdef IPC_RMID
9192         if (semctl(sem, 0, IPC_RMID, arg) != 0)
9193 #       endif /* IPC_RMID */
9194             printf("semctl IPC_RMID failed: errno = %d\n", errno);
9195     } else
9196 #endif /* IPC_PRIVATE && ... */
9197         printf("semget failed: errno = %d\n", errno);
9198   return 0;
9199 }
9200 END
9201     val="$undef"
9202     set try
9203     if eval $compile; then
9204         xxx=`./try`
9205         case "$xxx" in
9206         semun) val="$define" ;;
9207         esac
9208     fi
9209     $rm -f try try.c
9210     set d_semctl_semun
9211     eval $setvar
9212     case "$d_semctl_semun" in
9213     $define)
9214         echo "You can use union semun for semctl IPC_STAT." >&4
9215         also='also'
9216         ;;
9217     *)  echo "You cannot use union semun for semctl IPC_STAT." >&4
9218         also=''
9219         ;;
9220     esac
9221
9222     : see whether semctl IPC_STAT can use struct semid_ds pointer
9223     $cat > try.c <<'END'
9224 #include <sys/types.h>
9225 #include <sys/ipc.h>
9226 #include <sys/sem.h>
9227 #include <sys/stat.h>
9228 #include "try.h"
9229 #include <stdio.h>
9230 #include <errno.h>
9231 #ifndef errno
9232 extern int errno;
9233 #endif
9234 int main() {
9235     struct semid_ds arg;
9236     int sem, st;
9237
9238 #if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) &&  defined(S_IRWXO) && defined(IPC_CREAT)
9239     sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
9240     if (sem > -1) {
9241 #       ifdef IPC_STAT
9242         st = semctl(sem, 0, IPC_STAT, &arg);
9243         if (st == 0)
9244             printf("semid_ds\n");
9245         else
9246 #       endif /* IPC_STAT */
9247             printf("semctl IPC_STAT failed: errno = %d\n", errno);
9248 #       ifdef IPC_RMID
9249         if (semctl(sem, 0, IPC_RMID, &arg) != 0)
9250 #       endif /* IPC_RMID */
9251             printf("semctl IPC_RMID failed: errno = %d\n", errno);
9252     } else
9253 #endif /* IPC_PRIVATE && ... */
9254         printf("semget failed: errno = %d\n", errno);
9255
9256     return 0;
9257 }
9258 END
9259     val="$undef"
9260     set try
9261     if eval $compile; then
9262         xxx=`./try`
9263         case "$xxx" in
9264         semid_ds) val="$define" ;;
9265         esac
9266     fi
9267     $rm -f try try.c
9268     set d_semctl_semid_ds
9269     eval $setvar
9270     case "$d_semctl_semid_ds" in
9271     $define)
9272         echo "You can $also use struct semid_ds* for semctl IPC_STAT." >&4
9273         ;;
9274     *)  echo "You cannot use struct semid_ds* for semctl IPC_STAT." >&4
9275         ;;
9276     esac
9277     $rm -f try.h
9278     ;;
9279 *)  val="$undef"
9280
9281     # We do not have the full sem*(2) library, so assume we can not
9282     # use either.
9283
9284     set d_semctl_semun
9285     eval $setvar
9286
9287     set d_semctl_semid_ds
9288     eval $setvar
9289     ;;
9290 esac
9291
9292 : see if setegid exists
9293 set setegid d_setegid
9294 eval $inlibc
9295
9296 : see if seteuid exists
9297 set seteuid d_seteuid
9298 eval $inlibc
9299
9300 : see if setgrent exists
9301 set setgrent d_setgrent
9302 eval $inlibc
9303
9304 : see if sethostent exists
9305 set sethostent d_sethent
9306 eval $inlibc
9307
9308 : see if setlinebuf exists
9309 set setlinebuf d_setlinebuf
9310 eval $inlibc
9311
9312 : see if setlocale exists
9313 set setlocale d_setlocale
9314 eval $inlibc
9315
9316 : see if setnetent exists
9317 set setnetent d_setnent
9318 eval $inlibc
9319
9320 : see if setprotoent exists
9321 set setprotoent d_setpent
9322 eval $inlibc
9323
9324 : see if setpgid exists
9325 set setpgid d_setpgid
9326 eval $inlibc
9327
9328 : see if setpgrp2 exists
9329 set setpgrp2 d_setpgrp2
9330 eval $inlibc
9331
9332 : see if setpriority exists
9333 set setpriority d_setprior
9334 eval $inlibc
9335
9336 : see if setpwent exists
9337 set setpwent d_setpwent
9338 eval $inlibc
9339
9340 : see if setregid exists
9341 set setregid d_setregid
9342 eval $inlibc
9343 set setresgid d_setresgid
9344 eval $inlibc
9345
9346 : see if setreuid exists
9347 set setreuid d_setreuid
9348 eval $inlibc
9349 set setresuid d_setresuid
9350 eval $inlibc
9351
9352 : see if setrgid exists
9353 set setrgid d_setrgid
9354 eval $inlibc
9355
9356 : see if setruid exists
9357 set setruid d_setruid
9358 eval $inlibc
9359
9360 : see if setservent exists
9361 set setservent d_setsent
9362 eval $inlibc
9363
9364 : see if setsid exists
9365 set setsid d_setsid
9366 eval $inlibc
9367
9368 : see if setvbuf exists
9369 set setvbuf d_setvbuf
9370 eval $inlibc
9371
9372 : see if sfio.h is available
9373 set sfio.h i_sfio
9374 eval $inhdr
9375
9376
9377 : see if sfio library is available
9378 case "$i_sfio" in
9379 $define)
9380         val=''
9381         set sfreserve val
9382         eval $inlibc
9383         ;;
9384 *)
9385         val="$undef"
9386         ;;
9387 esac
9388 : Ok, but do we want to use it.
9389 case "$val" in
9390 $define)
9391         case "$usesfio" in
9392         true|$define|[yY]*) dflt='y';;
9393         *) dflt='n';;
9394         esac
9395         echo "$package can use the sfio library, but it is experimental."
9396         rp="You seem to have sfio available, do you want to try using it?"
9397         . ./myread
9398         case "$ans" in
9399         y|Y) ;;
9400         *)      echo "Ok, avoiding sfio this time.  I'll use stdio instead."
9401                 val="$undef"
9402                 : Remove sfio from list of libraries to use
9403                 set `echo X $libs | $sed -e 's/-lsfio / /' -e 's/-lsfio$//'`
9404                 shift
9405                 libs="$*"
9406                 echo "libs = $libs" >&4
9407                 ;;
9408         esac
9409         ;;
9410 *)      case "$usesfio" in
9411         true|$define|[yY]*)
9412                 echo "Sorry, cannot find sfio on this machine" >&4
9413                 echo "Ignoring your setting of usesfio=$usesfio" >&4
9414                 ;;
9415         esac
9416         ;;
9417 esac
9418 set d_sfio
9419 eval $setvar
9420 case "$d_sfio" in
9421 $define) usesfio='true';;
9422 *) usesfio='false';;
9423 esac
9424
9425 : see if shmctl exists
9426 set shmctl d_shmctl
9427 eval $inlibc
9428
9429 : see if shmget exists
9430 set shmget d_shmget
9431 eval $inlibc
9432
9433 : see if shmat exists
9434 set shmat d_shmat
9435 eval $inlibc
9436 : see what shmat returns
9437 case "$d_shmat" in
9438 "$define")
9439         $cat >shmat.c <<'END'
9440 #include <sys/shm.h>
9441 void *shmat();
9442 END
9443         if $cc $ccflags -c shmat.c >/dev/null 2>&1; then
9444                 shmattype='void *'
9445         else
9446                 shmattype='char *'
9447         fi
9448         echo "and it returns ($shmattype)." >&4
9449         : see if a prototype for shmat is available
9450         xxx=`./findhdr sys/shm.h`
9451         $cppstdin $cppflags $cppminus < $xxx > shmat.c 2>/dev/null
9452         if $contains 'shmat.*(' shmat.c >/dev/null 2>&1; then
9453                 val="$define"
9454         else
9455                 val="$undef"
9456         fi
9457         $rm -f shmat.[co]
9458         ;;
9459 *)
9460         val="$undef"
9461         ;;
9462 esac
9463 set d_shmatprototype
9464 eval $setvar
9465
9466 : see if shmdt exists
9467 set shmdt d_shmdt
9468 eval $inlibc
9469
9470 : see how much of the 'shm*(2)' library is present.
9471 h_shm=true
9472 echo " "
9473 case "$d_shmctl$d_shmget$d_shmat$d_shmdt" in
9474 *"$undef"*) h_shm=false;;
9475 esac
9476 case "$osname" in
9477 freebsd)
9478     case "`ipcs 2>&1`" in
9479     "SVID shared memory"*"not configured"*)
9480         echo "Your $osname does not have the shm*(2) configured." >&4
9481         h_shm=false
9482         val="$undef"
9483         set shmctl d_shmctl
9484         evat $setvar
9485         set shmget d_shmget
9486         evat $setvar
9487         set shmat d_shmat
9488         evat $setvar
9489         set shmdt d_shmdt
9490         evat $setvar
9491         ;;
9492     esac
9493     ;;
9494 esac
9495 : we could also check for sys/ipc.h ...
9496 if $h_shm && $test `./findhdr sys/shm.h`; then
9497         echo "You have the full shm*(2) library." >&4
9498         val="$define"
9499 else
9500         echo "You don't have the full shm*(2) library." >&4
9501         val="$undef"
9502 fi
9503 set d_shm
9504 eval $setvar
9505
9506 echo " "
9507 : see if we have sigaction
9508 if set sigaction val -f d_sigaction; eval $csym; $val; then
9509         echo 'sigaction() found.' >&4
9510         $cat > try.c <<'EOP'
9511 #include <stdio.h>
9512 #include <sys/types.h>
9513 #include <signal.h>
9514 main()
9515 {
9516     struct sigaction act, oact;
9517 }
9518 EOP
9519         set try
9520         if eval $compile_ok; then
9521                 val="$define"
9522         else
9523                 echo "But you don't seem to have a useable struct sigaction." >&4
9524                 val="$undef"
9525         fi
9526 else
9527         echo 'sigaction NOT found.' >&4
9528         val="$undef"
9529 fi
9530 set d_sigaction; eval $setvar
9531 $rm -f try try$_o try.c
9532
9533 : see if sigsetjmp exists
9534 echo " "
9535 case "$d_sigsetjmp" in
9536 '')
9537         $cat >try.c <<'EOP'
9538 #include <setjmp.h>
9539 sigjmp_buf env;
9540 int set = 1;
9541 main()
9542 {
9543         if (sigsetjmp(env,1))
9544                 exit(set);
9545         set = 0;
9546         siglongjmp(env, 1);
9547         exit(1);
9548 }
9549 EOP
9550         set try
9551         if eval $compile; then
9552                 if ./try >/dev/null 2>&1; then
9553                         echo "POSIX sigsetjmp found." >&4
9554                         val="$define"
9555                 else
9556                         $cat >&4 <<EOM
9557 Uh-Oh! You have POSIX sigsetjmp and siglongjmp, but they do not work properly!!
9558 I'll ignore them.
9559 EOM
9560                         val="$undef"
9561                 fi
9562         else
9563                 echo "sigsetjmp not found." >&4
9564                 val="$undef"
9565         fi
9566         ;;
9567 *) val="$d_sigsetjmp"
9568         case "$d_sigsetjmp" in
9569         $define) echo "POSIX sigsetjmp found." >&4;;
9570         $undef) echo "sigsetjmp not found." >&4;;
9571         esac
9572         ;;
9573 esac
9574 set d_sigsetjmp
9575 eval $setvar
9576 $rm -f try.c try
9577
9578 : see if stat knows about block sizes
9579 echo " "
9580 set d_statblks stat st_blocks $i_sysstat sys/stat.h
9581 eval $hasfield
9582
9583 : see if _ptr and _cnt from stdio act std
9584 echo " "
9585 if $contains '_IO_fpos_t' `./findhdr stdio.h` >/dev/null 2>&1 ; then
9586         echo "(Looks like you have stdio.h from Linux.)"
9587         case "$stdio_ptr" in
9588         '') stdio_ptr='((fp)->_IO_read_ptr)'
9589                 ptr_lval=$define
9590                 ;;
9591         *)      ptr_lval=$d_stdio_ptr_lval;;
9592         esac
9593         case "$stdio_cnt" in
9594         '') stdio_cnt='((fp)->_IO_read_end - (fp)->_IO_read_ptr)'
9595                 cnt_lval=$undef
9596                 ;;
9597         *)      cnt_lval=$d_stdio_cnt_lval;;
9598         esac
9599         case "$stdio_base" in
9600         '') stdio_base='((fp)->_IO_read_base)';;
9601         esac
9602         case "$stdio_bufsiz" in
9603         '') stdio_bufsiz='((fp)->_IO_read_end - (fp)->_IO_read_base)';;
9604         esac
9605 else
9606         case "$stdio_ptr" in
9607         '') stdio_ptr='((fp)->_ptr)'
9608                 ptr_lval=$define
9609                 ;;
9610         *)      ptr_lval=$d_stdio_ptr_lval;;
9611         esac
9612         case "$stdio_cnt" in
9613         '') stdio_cnt='((fp)->_cnt)'
9614                 cnt_lval=$define
9615                 ;;
9616         *)      cnt_lval=$d_stdio_cnt_lval;;
9617         esac
9618         case "$stdio_base" in
9619         '') stdio_base='((fp)->_base)';;
9620         esac
9621         case "$stdio_bufsiz" in
9622         '') stdio_bufsiz='((fp)->_cnt + (fp)->_ptr - (fp)->_base)';;
9623         esac
9624 fi
9625 : test whether _ptr and _cnt really work
9626 echo "Checking how std your stdio is..." >&4
9627 $cat >try.c <<EOP
9628 #include <stdio.h>
9629 #define FILE_ptr(fp)    $stdio_ptr
9630 #define FILE_cnt(fp)    $stdio_cnt
9631 main() {
9632         FILE *fp = fopen("try.c", "r");
9633         char c = getc(fp);
9634         if (
9635                 18 <= FILE_cnt(fp) &&
9636                 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
9637         )
9638                 exit(0);
9639         exit(1);
9640 }
9641 EOP
9642 val="$undef"
9643 set try
9644 if eval $compile; then
9645         if ./try; then
9646                 echo "Your stdio acts pretty std."
9647                 val="$define"
9648         else
9649                 echo "Your stdio isn't very std."
9650         fi
9651 else
9652         echo "Your stdio doesn't appear very std."
9653 fi
9654 $rm -f try.c try
9655 set d_stdstdio
9656 eval $setvar
9657
9658 : Can _ptr be used as an lvalue?
9659 case "$d_stdstdio$ptr_lval" in
9660 $define$define) val=$define ;;
9661 *) val=$undef ;;
9662 esac
9663 set d_stdio_ptr_lval
9664 eval $setvar
9665
9666 : Can _cnt be used as an lvalue?
9667 case "$d_stdstdio$cnt_lval" in
9668 $define$define) val=$define ;;
9669 *) val=$undef ;;
9670 esac
9671 set d_stdio_cnt_lval
9672 eval $setvar
9673
9674 : see if _base is also standard
9675 val="$undef"
9676 case "$d_stdstdio" in
9677 $define)
9678         $cat >try.c <<EOP
9679 #include <stdio.h>
9680 #define FILE_base(fp)   $stdio_base
9681 #define FILE_bufsiz(fp) $stdio_bufsiz
9682 main() {
9683         FILE *fp = fopen("try.c", "r");
9684         char c = getc(fp);
9685         if (
9686                 19 <= FILE_bufsiz(fp) &&
9687                 strncmp(FILE_base(fp), "#include <stdio.h>\n", 19) == 0
9688         )
9689                 exit(0);
9690         exit(1);
9691 }
9692 EOP
9693         set try
9694         if eval $compile; then
9695                 if ./try; then
9696                         echo "And its _base field acts std."
9697                         val="$define"
9698                 else
9699                         echo "But its _base field isn't std."
9700                 fi
9701         else
9702                 echo "However, it seems to be lacking the _base field."
9703         fi
9704         $rm -f try.c try
9705         ;;
9706 esac
9707 set d_stdiobase
9708 eval $setvar
9709
9710 : see if strcoll exists
9711 set strcoll d_strcoll
9712 eval $inlibc
9713
9714 : check for structure copying
9715 echo " "
9716 echo "Checking to see if your C compiler can copy structs..." >&4
9717 $cat >try.c <<'EOCP'
9718 main()
9719 {
9720         struct blurfl {
9721                 int dyick;
9722         } foo, bar;
9723
9724         foo = bar;
9725 }
9726 EOCP
9727 if $cc -c try.c >/dev/null 2>&1 ; then
9728         val="$define"
9729         echo "Yup, it can."
9730 else
9731         val="$undef"
9732         echo "Nope, it can't."
9733 fi
9734 set d_strctcpy
9735 eval $setvar
9736 $rm -f try.*
9737
9738 : see if strerror and/or sys_errlist[] exist
9739 echo " "
9740 if test "X$d_strerror" = X -o "X$d_syserrlst" = X; then
9741     if set strerror val -f d_strerror; eval $csym; $val; then
9742                 echo 'strerror() found.' >&4
9743                 d_strerror="$define"
9744                 d_strerrm='strerror(e)'
9745                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
9746                         echo "(You also have sys_errlist[], so we could roll our own strerror.)" 
9747                         d_syserrlst="$define"
9748                 else
9749                         echo "(Since you don't have sys_errlist[], sterror() is welcome.)"
9750                         d_syserrlst="$undef"
9751                 fi
9752     elif xxx=`./findhdr string.h`; test "$xxx" || xxx=`./findhdr strings.h`; \
9753                         $contains '#[   ]*define.*strerror' "$xxx" >/dev/null 2>&1; then
9754                 echo 'strerror() found in string header.' >&4
9755                 d_strerror="$define"
9756                 d_strerrm='strerror(e)'
9757                 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then   
9758                         echo "(Most probably, strerror() uses sys_errlist[] for descriptions.)"
9759                                 d_syserrlst="$define"
9760                 else
9761                         echo "(You don't appear to have any sys_errlist[], how can this be?)"
9762                         d_syserrlst="$undef"
9763                 fi
9764     elif set sys_errlist val -a d_syserrlst; eval $csym; $val; then
9765                 echo "strerror() not found, but you have sys_errlist[] so we'll use that." >&4
9766                 d_strerror="$undef"
9767                 d_syserrlst="$define"
9768                 d_strerrm='((e)<0||(e)>=sys_nerr?"unknown":sys_errlist[e])'
9769     else
9770                 echo 'strerror() and sys_errlist[] NOT found.' >&4
9771                 d_strerror="$undef"
9772                 d_syserrlst="$undef"
9773                 d_strerrm='"unknown"'
9774     fi
9775 fi
9776
9777 : see if strtod exists
9778 set strtod d_strtod
9779 eval $inlibc
9780
9781 : see if strtol exists
9782 set strtol d_strtol
9783 eval $inlibc
9784
9785 : see if strtoul exists
9786 set strtoul d_strtoul
9787 eval $inlibc
9788
9789 : see if strxfrm exists
9790 set strxfrm d_strxfrm
9791 eval $inlibc
9792
9793 : see if symlink exists
9794 set symlink d_symlink
9795 eval $inlibc
9796
9797 : see if syscall exists
9798 set syscall d_syscall
9799 eval $inlibc
9800
9801 : see if sysconf exists
9802 set sysconf d_sysconf
9803 eval $inlibc
9804
9805 : see if system exists
9806 set system d_system
9807 eval $inlibc
9808
9809 : see if tcgetpgrp exists
9810 set tcgetpgrp d_tcgetpgrp
9811 eval $inlibc
9812
9813 : see if tcsetpgrp exists
9814 set tcsetpgrp d_tcsetpgrp
9815 eval $inlibc
9816
9817 : define an is-a-typedef? function
9818 typedef='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
9819 case "$inclist" in
9820 "") inclist="sys/types.h";;
9821 esac;
9822 eval "varval=\$$var";
9823 case "$varval" in
9824 "")
9825         $rm -f temp.c;
9826         for inc in $inclist; do
9827                 echo "#include <$inc>" >>temp.c;
9828         done;
9829         echo "#ifdef $type" >> temp.c;
9830         echo "printf(\"We have $type\");" >> temp.c;
9831         echo "#endif" >> temp.c;
9832         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
9833         if $contains $type temp.E >/dev/null 2>&1; then
9834                 eval "$var=\$type";
9835         else
9836                 eval "$var=\$def";
9837         fi;
9838         $rm -f temp.?;;
9839 *) eval "$var=\$varval";;
9840 esac'
9841
9842 : define an is-a-typedef? function that prompts if the type is not available.
9843 typedef_ask='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
9844 case "$inclist" in
9845 "") inclist="sys/types.h";;
9846 esac;
9847 eval "varval=\$$var";
9848 case "$varval" in
9849 "")
9850         $rm -f temp.c;
9851         for inc in $inclist; do
9852                 echo "#include <$inc>" >>temp.c;
9853         done;
9854         echo "#ifdef $type" >> temp.c;
9855         echo "printf(\"We have $type\");" >> temp.c;
9856         echo "#endif" >> temp.c;
9857         $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
9858         echo " " ;
9859         echo "$rp" | $sed -e "s/What is/Looking for/" -e "s/?/./";
9860         if $contains $type temp.E >/dev/null 2>&1; then
9861                 echo "$type found." >&4;
9862                 eval "$var=\$type";
9863         else
9864                 echo "$type NOT found." >&4;
9865                 dflt="$def";
9866                 . ./myread ;
9867                 eval "$var=\$ans";
9868         fi;
9869         $rm -f temp.?;;
9870 *) eval "$var=\$varval";;
9871 esac'
9872
9873 : see if this is a sys/times.h system
9874 set sys/times.h i_systimes
9875 eval $inhdr
9876
9877 : see if times exists
9878 echo " "
9879 if set times val -f d_times; eval $csym; $val; then
9880         echo 'times() found.' >&4
9881         d_times="$define"
9882         inc=''
9883         case "$i_systimes" in
9884         "$define") inc='sys/times.h';;
9885         esac
9886         rp="What is the type returned by times() on this system?"
9887         set clock_t clocktype long stdio.h sys/types.h $inc
9888         eval $typedef_ask
9889 else
9890         echo 'times() NOT found, hope that will do.' >&4
9891         d_times="$undef"
9892         clocktype='int'
9893 fi
9894
9895 : see if truncate exists
9896 set truncate d_truncate
9897 eval $inlibc
9898
9899 : see if tzname[] exists
9900 echo " "
9901 if set tzname val -a d_tzname; eval $csym; $val; then
9902         val="$define"
9903         echo 'tzname[] found.' >&4
9904 else
9905         val="$undef"
9906         echo 'tzname[] NOT found.' >&4
9907 fi
9908 set d_tzname
9909 eval $setvar
9910
9911 : see if umask exists
9912 set umask d_umask
9913 eval $inlibc
9914
9915 : backward compatibility for d_hvfork
9916 if test X$d_hvfork != X; then
9917         d_vfork="$d_hvfork"
9918         d_hvfork=''
9919 fi
9920 : see if there is a vfork
9921 val=''
9922 set vfork val
9923 eval $inlibc
9924
9925 : Ok, but do we want to use it. vfork is reportedly unreliable in 
9926 : perl on Solaris 2.x, and probably elsewhere.
9927 case "$val" in
9928 $define)
9929         echo " "
9930         case "$usevfork" in
9931         false) dflt='n';;
9932         *) dflt='y';;
9933         esac
9934         rp="Some systems have problems with vfork().  Do you want to use it?"
9935         . ./myread
9936         case "$ans" in
9937         y|Y) ;;
9938         *)
9939                 echo "Ok, we won't use vfork()."
9940                 val="$undef"
9941                 ;;
9942         esac
9943         ;;
9944 esac
9945 set d_vfork
9946 eval $setvar
9947 case "$d_vfork" in
9948 $define) usevfork='true';;
9949 *) usevfork='false';;
9950 esac
9951
9952 : see if this is an sysdir system
9953 set sys/dir.h i_sysdir
9954 eval $inhdr
9955
9956 : see if this is an sysndir system
9957 set sys/ndir.h i_sysndir
9958 eval $inhdr
9959
9960 : see if sys/types.h has to be included
9961 set sys/types.h i_systypes
9962 eval $inhdr
9963
9964 : see if closedir exists
9965 set closedir d_closedir
9966 eval $inlibc
9967
9968 case "$d_closedir" in
9969 "$define")
9970         echo " "
9971         echo "Checking whether closedir() returns a status..." >&4
9972         cat > closedir.c <<EOM
9973 #$i_dirent I_DIRENT             /**/
9974 #$i_sysdir I_SYS_DIR            /**/
9975 #$i_sysndir I_SYS_NDIR          /**/
9976 #$i_systypes I_SYS_TYPES        /**/
9977
9978 #if defined(I_SYS_TYPES)
9979 #include <sys/types.h>
9980 #endif
9981 #if defined(I_DIRENT)
9982 #include <dirent.h>
9983 #if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
9984 #include <sys/dir.h>
9985 #endif
9986 #else
9987 #ifdef I_SYS_NDIR
9988 #include <sys/ndir.h>
9989 #else
9990 #ifdef I_SYS_DIR
9991 #ifdef hp9000s500
9992 #include <ndir.h>       /* may be wrong in the future */
9993 #else
9994 #include <sys/dir.h>
9995 #endif
9996 #endif
9997 #endif
9998 #endif 
9999 int main() { return closedir(opendir(".")); }
10000 EOM
10001         set closedir
10002         if eval $compile_ok; then
10003                 if ./closedir > /dev/null 2>&1 ; then
10004                         echo "Yes, it does."
10005                         val="$undef"
10006                 else
10007                         echo "No, it doesn't."
10008                         val="$define"
10009                 fi
10010         else
10011                 echo "(I can't seem to compile the test program--assuming it doesn't)"
10012                 val="$define"
10013         fi
10014         ;;
10015 *)
10016         val="$undef";
10017         ;;
10018 esac
10019 set d_void_closedir
10020 eval $setvar
10021 $rm -f closedir*
10022 : check for volatile keyword
10023 echo " "
10024 echo 'Checking to see if your C compiler knows about "volatile"...' >&4
10025 $cat >try.c <<'EOCP'
10026 main()
10027 {
10028         typedef struct _goo_struct goo_struct;
10029         goo_struct * volatile goo = ((goo_struct *)0);
10030         struct _goo_struct {
10031                 long long_int;
10032                 int reg_int;
10033                 char char_var;
10034         };
10035         typedef unsigned short foo_t;
10036         char *volatile foo;
10037         volatile int bar;
10038         volatile foo_t blech;
10039         foo = foo;
10040 }
10041 EOCP
10042 if $cc -c $ccflags try.c >/dev/null 2>&1 ; then
10043         val="$define"
10044         echo "Yup, it does."
10045 else
10046         val="$undef"
10047         echo "Nope, it doesn't."
10048 fi
10049 set d_volatile
10050 eval $setvar
10051 $rm -f try.*
10052
10053 : see if there is a wait4
10054 set wait4 d_wait4
10055 eval $inlibc
10056
10057 : see if waitpid exists
10058 set waitpid d_waitpid
10059 eval $inlibc
10060
10061 : see if wcstombs exists
10062 set wcstombs d_wcstombs
10063 eval $inlibc
10064
10065 : see if wctomb exists
10066 set wctomb d_wctomb
10067 eval $inlibc
10068
10069 : see if writev exists
10070 set writev d_writev
10071 eval $inlibc
10072
10073 : preserve RCS keywords in files with variable substitution, grrr
10074 Date='$Date'
10075 Id='$Id'
10076 Log='$Log'
10077 RCSfile='$RCSfile'
10078 Revision='$Revision'
10079
10080 : check for alignment requirements
10081 echo " "
10082 case "$alignbytes" in
10083 '') echo "Checking alignment constraints..." >&4
10084         $cat >try.c <<'EOCP'
10085 struct foobar {
10086         char foo;
10087         double bar;
10088 } try;
10089 main()
10090 {
10091         printf("%d\n", (char *)&try.bar - (char *)&try.foo);
10092 }
10093 EOCP
10094         set try
10095         if eval $compile_ok; then
10096                 dflt=`./try`
10097         else
10098                 dflt='8'
10099                 echo "(I can't seem to compile the test program...)"
10100         fi
10101         ;;
10102 *) dflt="$alignbytes"
10103         ;;
10104 esac
10105 rp="Doubles must be aligned on a how-many-byte boundary?"
10106 . ./myread
10107 alignbytes="$ans"
10108 $rm -f try.c try
10109
10110 : check for ordering of bytes in a long
10111 case "$byteorder" in
10112 '')
10113         $cat <<'EOM'
10114   
10115 In the following, larger digits indicate more significance.  A big-endian
10116 machine like a Pyramid or a Motorola 680?0 chip will come out to 4321. A
10117 little-endian machine like a Vax or an Intel 80?86 chip would be 1234. Other
10118 machines may have weird orders like 3412.  A Cray will report 87654321. If
10119 the test program works the default is probably right.
10120 I'm now running the test program...
10121 EOM
10122         $cat >try.c <<'EOCP'
10123 #include <stdio.h>
10124 main()
10125 {
10126         int i;
10127         union {
10128                 unsigned long l;
10129                 char c[sizeof(long)];
10130         } u;
10131
10132         if (sizeof(long) > 4)
10133                 u.l = (0x08070605L << 32) | 0x04030201L;
10134         else
10135                 u.l = 0x04030201L;
10136         for (i = 0; i < sizeof(long); i++)
10137                 printf("%c", u.c[i]+'0');
10138         printf("\n");
10139         exit(0);
10140 }
10141 EOCP
10142         xxx_prompt=y
10143         set try
10144         if eval $compile && ./try > /dev/null; then
10145                 dflt=`./try`
10146                 case "$dflt" in
10147                 [1-4][1-4][1-4][1-4]|12345678|87654321)
10148                         echo "(The test program ran ok.)"
10149                         echo "byteorder=$dflt"
10150                         xxx_prompt=n
10151                         ;;
10152                 ????|????????) echo "(The test program ran ok.)" ;;
10153                 *) echo "(The test program didn't run right for some reason.)" ;;
10154                 esac
10155         else
10156                 dflt='4321'
10157                 cat <<'EOM'
10158 (I can't seem to compile the test program.  Guessing big-endian...)
10159 EOM
10160         fi
10161         case "$xxx_prompt" in
10162         y)
10163                 rp="What is the order of bytes in a long?"
10164                 . ./myread
10165                 byteorder="$ans"
10166                 ;;
10167         *)      byteorder=$dflt
10168                 ;;
10169         esac
10170         ;;
10171 esac
10172 $rm -f try.c try
10173
10174 : how do we catenate cpp tokens here?
10175 echo " "
10176 echo "Checking to see how your cpp does stuff like catenate tokens..." >&4
10177 $cat >cpp_stuff.c <<'EOCP'
10178 #define RCAT(a,b)a/**/b
10179 #define ACAT(a,b)a ## b
10180 RCAT(Rei,ser)
10181 ACAT(Cir,cus)
10182 EOCP
10183 $cppstdin $cppflags $cppminus <cpp_stuff.c >cpp_stuff.out 2>&1
10184 if $contains 'Circus' cpp_stuff.out >/dev/null 2>&1; then
10185         echo "Oh!  Smells like ANSI's been here." >&4
10186         echo "We can catify or stringify, separately or together!"
10187         cpp_stuff=42
10188 elif $contains 'Reiser' cpp_stuff.out >/dev/null 2>&1; then
10189         echo "Ah, yes!  The good old days!" >&4
10190         echo "However, in the good old days we don't know how to stringify and"
10191         echo "catify at the same time."
10192         cpp_stuff=1
10193 else
10194         $cat >&4 <<EOM
10195 Hmm, I don't seem to be able to catenate tokens with your cpp.  You're going
10196 to have to edit the values of CAT[2-5] in config.h...
10197 EOM
10198         cpp_stuff="/* Help! How do we handle cpp_stuff? */*/"
10199 fi
10200 $rm -f cpp_stuff.*
10201
10202 : see if this is a db.h system
10203 set db.h i_db
10204 eval $inhdr
10205
10206 case "$i_db" in
10207 $define)
10208         : Check db version.
10209         echo " "
10210         echo "Checking Berkeley DB version ..." >&4
10211         $cat >try.c <<EOCP
10212 #$d_const HASCONST
10213 #ifndef HASCONST
10214 #define const
10215 #endif
10216 #include <sys/types.h>
10217 #include <stdio.h>
10218 #include <db.h>
10219 main()
10220 {
10221 #ifdef DB_VERSION_MAJOR /* DB version >= 2 */
10222     int Major, Minor, Patch ;
10223     unsigned long Version ;
10224     (void)db_version(&Major, &Minor, &Patch) ;
10225     printf("You have Berkeley DB Version 2 or greater\n");
10226
10227     printf("db.h is from Berkeley DB Version %d.%d.%d\n",
10228                 DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH);
10229     printf("libdb is from Berkeley DB Version %d.%d.%d\n",
10230                 Major, Minor, Patch) ;
10231
10232     /* check that db.h & libdb are compatible */
10233     if (DB_VERSION_MAJOR != Major || DB_VERSION_MINOR != Minor || DB_VERSION_PATCH != Patch) {
10234         printf("db.h and libdb are incompatible\n") ;
10235         exit(3);        
10236     }
10237
10238     printf("db.h and libdb are compatible\n") ;
10239
10240     Version = DB_VERSION_MAJOR * 1000000 + DB_VERSION_MINOR * 1000
10241                 + DB_VERSION_PATCH ;
10242
10243     /* needs to be >= 2.3.4 */
10244     if (Version < 2003004) {
10245     /* if (DB_VERSION_MAJOR == 2 && DB_VERSION_MINOR == 0 && DB_VERSION_PATCH < 5) { */
10246         printf("but Perl needs Berkeley DB 2.3.4 or greater\n") ;
10247         exit(2);        
10248     }
10249
10250     exit(0);
10251 #else
10252 #if defined(_DB_H_) && defined(BTREEMAGIC) && defined(HASHMAGIC)
10253     printf("You have Berkeley DB Version 1\n");
10254     exit(0);    /* DB version < 2: the coast is clear. */
10255 #else
10256     exit(1);    /* <db.h> not Berkeley DB? */
10257 #endif
10258 #endif
10259 }
10260 EOCP
10261         set try
10262         if eval $compile && ./try; then
10263                 echo 'Looks OK.' >&4
10264         else
10265                 echo "I can't use Berkeley DB with your <db.h>.  I'll disable Berkeley DB." >&4
10266                 i_db=$undef
10267                 case " $libs " in
10268                 *"-ldb "*)
10269                         : Remove db from list of libraries to use
10270                         echo "Removing unusable -ldb from library list" >&4
10271                         set `echo X $libs | $sed -e 's/-ldb / /' -e 's/-ldb$//'`
10272                         shift
10273                         libs="$*"
10274                         echo "libs = $libs" >&4
10275                         ;;
10276                 esac
10277         fi
10278         $rm -f try.*
10279         ;;
10280 esac
10281
10282 case "$i_db" in
10283 define)
10284         : Check the return type needed for hash 
10285         echo " "
10286         echo "Checking return type needed for hash for Berkeley DB ..." >&4
10287         $cat >try.c <<EOCP
10288 #$d_const HASCONST
10289 #ifndef HASCONST
10290 #define const
10291 #endif
10292 #include <sys/types.h>
10293 #include <db.h>
10294
10295 #ifndef DB_VERSION_MAJOR
10296 u_int32_t hash_cb (ptr, size)
10297 const void *ptr;
10298 size_t size;
10299 {
10300 }
10301 HASHINFO info;
10302 main()
10303 {
10304         info.hash = hash_cb;
10305 }
10306 #endif
10307 EOCP
10308         if $cc $ccflags -c try.c >try.out 2>&1 ; then
10309                 if $contains warning try.out >>/dev/null 2>&1 ; then
10310                         db_hashtype='int'
10311                 else
10312                         db_hashtype='u_int32_t'
10313                 fi
10314         else
10315                 : XXX Maybe we should just give up here.
10316                 db_hashtype=u_int32_t
10317                 $cat try.out >&4
10318                 echo "Help:  I can't seem to compile the db test program." >&4
10319                 echo "Something's wrong, but I'll assume you use $db_hashtype." >&4
10320         fi
10321         $rm -f try.*
10322         echo "Your version of Berkeley DB uses $db_hashtype for hash."
10323         ;;
10324 *)      db_hashtype=u_int32_t
10325         ;;
10326 esac
10327 case "$i_db" in
10328 define)
10329         : Check the return type needed for prefix 
10330         echo " "
10331         echo "Checking return type needed for prefix for Berkeley DB ..." >&4
10332         cat >try.c <<EOCP
10333 #$d_const HASCONST
10334 #ifndef HASCONST
10335 #define const
10336 #endif
10337 #include <sys/types.h>
10338 #include <db.h>
10339
10340 #ifndef DB_VERSION_MAJOR
10341 size_t prefix_cb (key1, key2)
10342 const DBT *key1;
10343 const DBT *key2;
10344 {
10345 }
10346 BTREEINFO info;
10347 main()
10348 {
10349         info.prefix = prefix_cb;
10350 }
10351 #endif
10352 EOCP
10353         if $cc $ccflags -c try.c  >try.out 2>&1 ; then
10354                 if $contains warning try.out >>/dev/null 2>&1 ; then
10355                         db_prefixtype='int'
10356                 else
10357                         db_prefixtype='size_t'
10358                 fi
10359         else
10360                 db_prefixtype='size_t'
10361                 : XXX Maybe we should just give up here.
10362                 $cat try.out >&4
10363                 echo "Help:  I can't seem to compile the db test program." >&4
10364                 echo "Something's wrong, but I'll assume you use $db_prefixtype." >&4
10365         fi
10366         $rm -f try.*
10367         echo "Your version of Berkeley DB uses $db_prefixtype for prefix."
10368         ;;
10369 *)      db_prefixtype='size_t'
10370         ;;
10371 esac
10372
10373 : check for void type
10374 echo " "
10375 echo "Checking to see how well your C compiler groks the void type..." >&4
10376 case "$voidflags" in
10377 '')
10378         $cat >try.c <<'EOCP'
10379 #if TRY & 1
10380 void sub() {
10381 #else
10382 sub() {
10383 #endif
10384         extern void moo();      /* function returning void */
10385         void (*goo)();          /* ptr to func returning void */
10386 #if TRY & 8
10387         void *hue;              /* generic ptr */
10388 #endif
10389 #if TRY & 2
10390         void (*foo[10])();
10391 #endif
10392
10393 #if TRY & 4
10394         if(goo == moo) {
10395                 exit(0);
10396         }
10397 #endif
10398         exit(0);
10399 }
10400 main() { sub(); }
10401 EOCP
10402         if $cc $ccflags -c -DTRY=$defvoidused try.c >.out 2>&1 ; then
10403                 voidflags=$defvoidused
10404         echo "Good.  It appears to support void to the level $package wants.">&4
10405                 if $contains warning .out >/dev/null 2>&1; then
10406                         echo "However, you might get some warnings that look like this:"
10407                         $cat .out
10408                 fi
10409         else
10410 echo "Hmm, your compiler has some difficulty with void. Checking further..." >&4
10411                 if $cc $ccflags -c -DTRY=1 try.c >/dev/null 2>&1; then
10412                         echo "It supports 1..."
10413                         if $cc $ccflags -c -DTRY=3 try.c >/dev/null 2>&1; then
10414                                 echo "It also supports 2..."
10415                                 if $cc $ccflags -c -DTRY=7 try.c >/dev/null 2>&1; then
10416                                         voidflags=7
10417                                         echo "And it supports 4 but not 8 definitely."
10418                                 else
10419                                         echo "It doesn't support 4..."
10420                                         if $cc $ccflags -c -DTRY=11 try.c >/dev/null 2>&1; then
10421                                                 voidflags=11
10422                                                 echo "But it supports 8."
10423                                         else
10424                                                 voidflags=3
10425                                                 echo "Neither does it support 8."
10426                                         fi
10427                                 fi
10428                         else
10429                                 echo "It does not support 2..."
10430                                 if $cc $ccflags -c -DTRY=13 try.c >/dev/null 2>&1; then
10431                                         voidflags=13
10432                                         echo "But it supports 4 and 8."
10433                                 else
10434                                         if $cc $ccflags -c -DTRY=5 try.c >/dev/null 2>&1; then
10435                                                 voidflags=5
10436                                                 echo "And it supports 4 but has not heard about 8."
10437                                         else
10438                                                 echo "However it supports 8 but not 4."
10439                                         fi
10440                                 fi
10441                         fi
10442                 else
10443                         echo "There is no support at all for void."
10444                         voidflags=0
10445                 fi
10446         fi
10447 esac
10448 case "$voidflags" in
10449 "$defvoidused") ;;
10450 *)      $cat >&4 <<'EOM'
10451   Support flag bits are:
10452     1: basic void declarations.
10453     2: arrays of pointers to functions returning void.
10454     4: operations between pointers to and addresses of void functions.
10455     8: generic void pointers.
10456 EOM
10457         dflt="$voidflags";
10458         rp="Your void support flags add up to what?"
10459         . ./myread
10460         voidflags="$ans"
10461         ;;
10462 esac
10463 $rm -f try.* .out
10464
10465
10466 : How can we generate normalized random numbers ?
10467 echo " "
10468 echo "Looking for a random number function..." >&4
10469 case "$randfunc" in
10470 '')
10471         if set drand48 val -f; eval $csym; $val; then
10472                 dflt="drand48"
10473                 echo "Good, found drand48()." >&4
10474         elif set random val -f; eval $csym; $val; then
10475                 dflt="random"
10476                 echo "OK, found random()." >&4
10477         else
10478                 dflt="rand"
10479                 echo "Yick, looks like I have to use rand()." >&4
10480         fi
10481         echo " "
10482         ;;
10483 *)
10484         dflt="$randfunc"
10485         ;;
10486 esac
10487 cont=true
10488
10489 case "$ccflags" in
10490 *-Dmy_rand=*|*-Dmy_srand=*)
10491         echo "Removing obsolete -Dmy_rand, -Dmy_srand, and -Drandbits from ccflags." >&4
10492         ccflags="`echo $ccflags | sed -e 's/-Dmy_rand=random/ /'`"
10493         ccflags="`echo $ccflags | sed -e 's/-Dmy_srand=srandom/ /'`"
10494         ccflags="`echo $ccflags | sed -e 's/-Drandbits=[0-9][0-9]*/ /'`"
10495         ;;
10496 esac
10497
10498 while $test "$cont"; do
10499         rp="Use which function to generate random numbers?"
10500         . ./myread
10501         if $test "$ans" = "$dflt"; then
10502                 : null
10503         else
10504                 randbits=''
10505         fi
10506         randfunc="$ans"
10507         if set $ans val -f; eval $csym; $val; then
10508                 cont=''
10509         else
10510                 dflt=n
10511                 rp="Function $ans does not exist. Use that name anyway?"
10512                 . ./myread
10513                 dflt=rand
10514                 case "$ans" in
10515                         [yY]*) cont='';;
10516                 esac
10517         fi
10518         case "$cont" in
10519         '')
10520                 case "$randfunc" in
10521                 drand48)
10522                         drand01="drand48()"
10523                         seedfunc="srand48"
10524                         randbits=48
10525                         randseedtype=long
10526                         ;;
10527                 rand|random)
10528                         case "$randbits" in
10529                         '')
10530 echo "Checking to see how many bits your $randfunc() function produces..." >&4
10531                                 $cat >try.c <<EOCP
10532 #$i_unistd I_UNISTD
10533 #$i_stdlib I_STDLIB
10534 #include <stdio.h>
10535 #ifdef I_UNISTD
10536 #  include <unistd.h>
10537 #endif
10538 #ifdef I_STDLIB
10539 #  include <stdlib.h>
10540 #endif
10541 main()
10542 {
10543         register int i;
10544         register unsigned long tmp;
10545         register unsigned long max = 0L;
10546
10547         for (i = 1000; i; i--) {
10548                 tmp = (unsigned long) $randfunc();
10549                 if (tmp > max) max = tmp;
10550         }
10551         for (i = 0; max; i++)
10552                 max /= 2;
10553         printf("%d\n",i);
10554 }
10555 EOCP
10556                                 set try
10557                                 if eval $compile_ok; then
10558                                         dflt=`try`
10559                                 else
10560                                         dflt='?'
10561                                         echo "(I can't seem to compile the test program...)"
10562                                 fi
10563                                 ;;
10564                         *)
10565                                 dflt="$randbits"
10566                                 ;;
10567                         esac
10568                         rp="How many bits does your $randfunc() function produce?"
10569                         . ./myread
10570                         randbits="$ans"
10571                         $rm -f try.c try
10572                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
10573                         seedfunc="s$randfunc"
10574                         randseedtype=unsigned
10575                         ;;
10576                 *)
10577                         dflt="31"
10578                         rp="How many bits does your $randfunc() function produce?"
10579                         . ./myread
10580                         randbits="$ans"
10581                         seedfunc="s$randfunc"
10582                         drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
10583                         if set $seedfunc val -f; eval $csym; $val; then
10584                                 echo "(Using $seedfunc() to seed random generator)"
10585                         else
10586                                 echo "(Warning: no $seedfunc() to seed random generator)"
10587                                 seedfunc=rand
10588                         fi
10589                         randseedtype=unsigned
10590                         ;;
10591                 esac
10592                 ;;
10593         esac
10594 done
10595
10596 echo " "
10597 echo "Determining whether or not we are on an EBCDIC system..." >&4
10598 $cat >tebcdic.c <<'EOM'
10599 int main()
10600 {
10601   if ('M'==0xd4) return 0;
10602   return 1;
10603 }
10604 EOM
10605
10606 val=$undef
10607 set tebcdic
10608 if eval $compile_ok; then
10609         if ./tebcdic; then
10610                 echo "You have EBCDIC." >&4
10611                 val="$define"
10612         else
10613                 echo "Nope, no EBCDIC.  Assuming ASCII or some ISO Latin." >&4
10614         fi
10615 else
10616         echo "I'm unable to compile the test program." >&4
10617         echo "I'll assume ASCII or some ISO Latin." >&4
10618 fi
10619 $rm -f tebcdic.c tebcdic
10620 set ebcdic
10621 eval $setvar
10622
10623 : see what type file positions are declared as in the library
10624 rp="What is the type for file position used by fsetpos()?"
10625 set fpos_t fpostype long stdio.h sys/types.h
10626 eval $typedef_ask
10627
10628 : Store the full pathname to the sed program for use in the C program
10629 full_sed=$sed
10630
10631 : see what type gids are declared as in the kernel
10632 echo " "
10633 echo "Looking for the type for group ids returned by getgid()."
10634 set gid_t gidtype xxx stdio.h sys/types.h
10635 eval $typedef
10636 case "$gidtype" in
10637 xxx)
10638         xxx=`./findhdr sys/user.h`
10639         set `grep 'groups\[NGROUPS\];' "$xxx" 2>/dev/null` unsigned short
10640         case $1 in
10641         unsigned) dflt="$1 $2" ;;
10642         *) dflt="$1" ;;
10643         esac
10644         ;;
10645 *) dflt="$gidtype";;
10646 esac
10647 case "$gidtype" in
10648 gid_t) echo "gid_t found." ;;
10649 *)      rp="What is the type for group ids returned by getgid()?"
10650         . ./myread
10651         gidtype="$ans"
10652         ;;
10653 esac
10654
10655 : see if getgroups exists
10656 set getgroups d_getgrps
10657 eval $inlibc
10658
10659 : see if setgroups exists
10660 set setgroups d_setgrps
10661 eval $inlibc
10662
10663
10664 : Find type of 2nd arg to 'getgroups()' and 'setgroups()'
10665 echo " "
10666 case "$d_getgrps$d_setgrps" in
10667 *define*)
10668         case "$groupstype" in
10669         '') dflt="$gidtype" ;;
10670         *)  dflt="$groupstype" ;;
10671         esac
10672         $cat <<EOM
10673 What type of pointer is the second argument to getgroups() and setgroups()?
10674 Usually this is the same as group ids, $gidtype, but not always.
10675
10676 EOM
10677         rp='What type pointer is the second argument to getgroups() and setgroups()?'
10678         . ./myread
10679         groupstype="$ans"
10680         ;;
10681 *)  groupstype="$gidtype";;
10682 esac
10683
10684 : see what type lseek is declared as in the kernel
10685 rp="What is the type used for lseek's offset on this system?"
10686 set off_t lseektype long stdio.h sys/types.h
10687 eval $typedef_ask
10688
10689 echo " "
10690 $echo $n "Checking to see how big your file offsets are...$c" >&4
10691 $cat >try.c <<EOCP
10692 #include <sys/types.h>
10693 #include <stdio.h>
10694 main()
10695 {
10696         printf("%d\n", sizeof($lseektype));
10697 }
10698 EOCP
10699 set try
10700 if eval $compile_ok; then
10701         lseeksize=`./try`
10702         $echo " $lseeksize bytes." >&4
10703 else
10704         dflt='4'
10705         echo " "
10706         echo "(I can't seem to compile the test program.  Guessing...)"
10707         rp="What is the size of your file offsets (in bytes)?"
10708         . ./myread
10709         lseeksize="$ans"
10710 fi
10711 $rm -f try.c try
10712
10713 echo " "
10714 echo "Checking if your $make program sets \$(MAKE)..." >&4
10715 case "$make_set_make" in
10716 '')
10717         $sed 's/^X //' > testmake.mak << 'EOF'
10718 Xall:
10719 X       @echo 'maketemp="$(MAKE)"'
10720 EOF
10721         case "`$make -f testmake.mak 2>/dev/null`" in
10722         *maketemp=*) make_set_make='#' ;;
10723         *)      make_set_make="MAKE=$make" ;;
10724         esac
10725         $rm -f testmake.mak
10726         ;;
10727 esac
10728 case "$make_set_make" in
10729 '#') echo "Yup, it does.";;
10730 *) echo "Nope, it doesn't.";;
10731 esac
10732
10733 : see what type is used for mode_t
10734 rp="What is the type used for file modes for system calls (e.g. fchmod())?"
10735 set mode_t modetype int stdio.h sys/types.h
10736 eval $typedef_ask
10737
10738 : define a fucntion to check prototypes
10739 $cat > protochk <<EOSH
10740 $startsh
10741 cc="$cc"
10742 optimize="$optimize"
10743 ccflags="$ccflags"
10744 prototype="$prototype"
10745 define="$define"
10746 rm=$rm
10747 EOSH
10748
10749 $cat >> protochk <<'EOSH'
10750
10751 $rm -f try.c
10752 foo="$1"
10753 shift
10754 while test $# -ge 2; do
10755         case "$1" in
10756                 $define) echo "#include <$2>" >> try.c ;;
10757                 literal) echo "$2" >> try.c ;;
10758         esac
10759     shift 2
10760 done
10761 test "$prototype" = "$define"  && echo '#define CAN_PROTOTYPE' >> try.c
10762 cat >> try.c <<'EOCP'
10763 #ifdef CAN_PROTOTYPE
10764 #define _(args) args
10765 #else
10766 #define _(args) ()
10767 #endif
10768 EOCP
10769 echo "$foo" >> try.c
10770 echo 'int no_real_function_has_this_name _((void)) { return 0; }' >> try.c
10771 $cc $optimize $ccflags -c try.c > /dev/null 2>&1
10772 status=$?
10773 $rm -f try.[co]
10774 exit $status
10775 EOSH
10776 chmod +x protochk
10777 $eunicefix protochk
10778
10779 : see what type is used for size_t
10780 rp="What is the type used for the length parameter for string functions?"
10781 set size_t sizetype 'unsigned int' stdio.h sys/types.h
10782 eval $typedef_ask
10783
10784 : check for type of arguments to gethostbyaddr. 
10785 if test "X$netdb_host_type" = X -o "X$netdb_hlen_type" = X; then
10786         case "$d_gethbyaddr" in
10787         $define)
10788                 $cat <<EOM
10789
10790 Checking to see what type of arguments are accepted by gethostbyaddr().
10791 EOM
10792                 hdrs="$define sys/types.h
10793                         $d_socket sys/socket.h 
10794                         $i_niin netinet/in.h 
10795                         $i_netdb netdb.h
10796                         $i_unistd unistd.h"
10797                 : The first arg can 'char *' or 'void *'
10798                 : The second arg is some of integral type
10799                 for xxx in in_addr_t 'const void *' 'const char *' 'void *' 'char *'; do
10800                         for yyy in size_t long int; do
10801                                 case "$netdb_host_type" in
10802                                 '')     try="extern struct hostent *gethostbyaddr($xxx, $yyy, int);"
10803                                         if ./protochk "$try" $hdrs; then
10804                                                 echo "Your system accepts $xxx for the first arg."
10805                                                 echo "...and $yyy for the second arg."
10806                                                 netdb_host_type="$xxx"
10807                                                 netdb_hlen_type="$yyy"
10808                                         fi
10809                                         ;;
10810                                 esac
10811                         done
10812                 done
10813                 : In case none of those worked, prompt the user.
10814                 case "$netdb_host_type" in
10815                 '')     rp='What is the type for the 1st argument to gethostbyaddr?'
10816                         dflt='char *'
10817                         . ./myread
10818                         netdb_host_type=$ans
10819                         rp='What is the type for the 2nd argument to gethostbyaddr?'
10820                         dflt="$sizetype"
10821                         . ./myread
10822                         netdb_hlen_type=$ans
10823                         ;;
10824                 esac
10825                 ;;
10826         *)      : no gethostbyaddr, so pick harmless defaults
10827                 netdb_host_type='char *'
10828                 netdb_hlen_type="$sizetype"
10829                 ;;
10830         esac
10831         # Remove the "const" if needed. -- but then we'll have a 
10832         # prototype clash!
10833         # netdb_host_type=`echo "$netdb_host_type" | sed 's/^const //'`
10834 fi
10835
10836 : check for type of argument to gethostbyname. 
10837 if test "X$netdb_name_type" = X ; then
10838         case "$d_gethbyname" in
10839         $define)
10840                 $cat <<EOM
10841
10842 Checking to see what type of argument is accepted by gethostbyname().
10843 EOM
10844                 hdrs="$define sys/types.h
10845                         $d_socket sys/socket.h 
10846                         $i_niin netinet/in.h 
10847                         $i_netdb netdb.h
10848                         $i_unistd unistd.h"
10849                 for xxx in "const char *" "char *"; do
10850                         case "$netdb_name_type" in
10851                         '')     try="extern struct hostent *gethostbyname($xxx);"
10852                                 if ./protochk "$try" $hdrs; then
10853                                         echo "Your system accepts $xxx."
10854                                         netdb_name_type="$xxx"
10855                                 fi
10856                                 ;;
10857                         esac
10858                 done
10859                 : In case none of those worked, prompt the user.
10860                 case "$netdb_name_type" in
10861                 '')     rp='What is the type for the 1st argument to gethostbyname?'
10862                         dflt='char *'
10863                         . ./myread
10864                         netdb_name_type=$ans
10865                         ;;
10866                 esac
10867                 ;;
10868         *)      : no gethostbyname, so pick harmless default
10869                 netdb_name_type='char *'
10870                 ;;
10871         esac
10872 fi
10873
10874 : check for type of 1st argument to getnetbyaddr. 
10875 if test "X$netdb_net_type" = X ; then
10876         case "$d_getnbyaddr" in
10877         $define)
10878                 $cat <<EOM
10879
10880 Checking to see what type of 1st argument is accepted by getnetbyaddr().
10881 EOM
10882                 hdrs="$define sys/types.h
10883                         $d_socket sys/socket.h 
10884                         $i_niin netinet/in.h 
10885                         $i_netdb netdb.h
10886                         $i_unistd unistd.h"
10887                 for xxx in in_addr_t "unsigned long" long "unsigned int" int; do
10888                         case "$netdb_net_type" in
10889                         '')     try="extern struct netent *getnetbyaddr($xxx, int);"
10890                                 if ./protochk "$try" $hdrs; then
10891                                         echo "Your system accepts $xxx."
10892                                         netdb_net_type="$xxx"
10893                                 fi
10894                                 ;;
10895                         esac
10896                 done
10897                 : In case none of those worked, prompt the user.
10898                 case "$netdb_net_type" in
10899                 '')     rp='What is the type for the 1st argument to getnetbyaddr?'
10900                         dflt='long'
10901                         . ./myread
10902                         netdb_net_type=$ans
10903                         ;;
10904                 esac
10905                 ;;
10906         *)      : no getnetbyaddr, so pick harmless default
10907                 netdb_net_type='long'
10908                 ;;
10909         esac
10910 fi
10911 : locate the preferred pager for this system
10912 case "$pager" in
10913 '')
10914         dflt=''
10915         case "$pg" in
10916         /*) dflt=$pg;;
10917         esac
10918         case "$more" in
10919         /*) dflt=$more;;
10920         esac
10921         case "$less" in
10922         /*) dflt=$less;;
10923         esac
10924         case "$dflt" in
10925         '') dflt=/usr/ucb/more;;
10926         esac
10927         ;;
10928 *) dflt="$pager";;
10929 esac
10930 echo " "
10931 fn=f/
10932 rp='What pager is used on your system?'
10933 . ./getfile
10934 pager="$ans"
10935
10936 : see what type pids are declared as in the kernel
10937 rp="What is the type of process ids on this system?"
10938 set pid_t pidtype int stdio.h sys/types.h
10939 eval $typedef_ask
10940
10941 : check for length of pointer
10942 echo " "
10943 case "$ptrsize" in
10944 '')
10945         $echo $n "Checking to see how big your pointers are...$c" >&4
10946         if test "$voidflags" -gt 7; then
10947                 echo '#define VOID_PTR char *' > try.c
10948         else
10949                 echo '#define VOID_PTR void *' > try.c
10950         fi
10951         $cat >>try.c <<'EOCP'
10952 #include <stdio.h>
10953 main()
10954 {
10955         printf("%d\n", sizeof(VOID_PTR));
10956         exit(0);
10957 }
10958 EOCP
10959         set try
10960         if eval $compile_ok; then
10961                 ptrsize=`./try`
10962                 $echo " $ptrsize bytes." >&4
10963         else
10964                 dflt='4'
10965                 echo "(I can't seem to compile the test program.  Guessing...)" >&4
10966                 rp="What is the size of a pointer (in bytes)?"
10967                 . ./myread
10968                 ptrsize="$ans"
10969         fi
10970         ;;
10971 esac
10972 $rm -f try.c try
10973
10974 : see if ar generates random libraries by itself
10975 echo " "
10976 echo "Checking how to generate random libraries on your machine..." >&4
10977 echo 'int bar1() { return bar2(); }' > bar1.c
10978 echo 'int bar2() { return 2; }' > bar2.c
10979 $cat > foo.c <<'EOP'
10980 main() { printf("%d\n", bar1()); exit(0); }
10981 EOP
10982 $cc $ccflags -c bar1.c >/dev/null 2>&1
10983 $cc $ccflags -c bar2.c >/dev/null 2>&1
10984 $cc $ccflags -c foo.c >/dev/null 2>&1
10985 $ar rc bar$_a bar2$_o bar1$_o >/dev/null 2>&1
10986 if $cc $ccflags $ldflags -o foobar foo$_o bar$_a $libs > /dev/null 2>&1 &&
10987         ./foobar >/dev/null 2>&1; then
10988         echo "$ar appears to generate random libraries itself."
10989         orderlib=false
10990         ranlib=":"
10991 elif $ar ts bar$_a >/dev/null 2>&1 &&
10992         $cc $ccflags $ldflags -o foobar foo$_o bar$_a $libs > /dev/null 2>&1 &&
10993         ./foobar >/dev/null 2>&1; then
10994                 echo "a table of contents needs to be added with '$ar ts'."
10995                 orderlib=false
10996                 ranlib="$ar ts"
10997 else
10998         case "$ranlib" in
10999         :) ranlib='';;
11000         '')
11001                 ranlib=`./loc ranlib X /usr/bin /bin /usr/local/bin`
11002                 $test -f $ranlib || ranlib=''
11003                 ;;
11004         esac
11005         if $test -n "$ranlib"; then
11006                 echo "your system has '$ranlib'; we'll use that."
11007                 orderlib=false
11008         else
11009                 echo "your system doesn't seem to support random libraries"
11010                 echo "so we'll use lorder and tsort to order the libraries."
11011                 orderlib=true
11012                 ranlib=":"
11013         fi
11014 fi
11015 $rm -f foo* bar* 
11016
11017 : check for type of arguments to select. 
11018 case "$selecttype" in
11019 '') case "$d_select" in
11020         $define)
11021                 $cat <<EOM
11022 Checking to see what type of arguments are accepted by select().
11023 EOM
11024                 hdrs="$define sys/types.h
11025                         $i_systime sys/time.h 
11026                         $i_sysselct sys/select.h
11027                         $d_socket sys/socket.h"
11028                 : The first arg can be int, unsigned, or size_t
11029                 : The last arg may or may not be 'const'
11030                 val=''
11031                 : void pointer has been seen but using that
11032                 : breaks the selectminbits test
11033                 for xxx in 'fd_set *' 'int *'; do
11034                         for nfd in 'int' 'size_t' 'unsigned long' 'unsigned' ; do
11035                                 for tmo in 'struct timeval *' 'const struct timeval *'; do
11036                                         case "$val" in
11037                                         '')     try="extern select _(($nfd, $xxx, $xxx, $xxx, $tmo));"
11038                                                 if ./protochk "$try" $hdrs; then
11039                                                         echo "Your system accepts $xxx."
11040                                                         val="$xxx"
11041                                                 fi
11042                                                 ;;
11043                                         esac
11044                                 done
11045                         done
11046                 done
11047                 case "$val" in
11048                 '')     rp='What is the type for the 2nd, 3rd, and 4th arguments to select?'
11049                         case "$d_fd_set" in
11050                                 $define) dflt="fd_set *" ;;
11051                                 *)              dflt="int *" ;;
11052                         esac
11053                         . ./myread
11054                         val=$ans
11055                         ;;
11056                 esac
11057                 selecttype="$val"
11058                 ;;
11059         *)      : no select, so pick a harmless default
11060                 selecttype='int *'
11061                 ;;
11062         esac
11063         ;;
11064 esac
11065
11066 : check for the select 'width'
11067 case "$selectminbits" in
11068 '') case "$d_select" in
11069         $define)
11070                 $cat <<EOM
11071
11072 Checking to see on how many bits at a time your select() operates...
11073 EOM
11074                 $cat >try.c <<EOCP
11075 #include <sys/types.h>
11076 #$i_time I_TIME
11077 #$i_systime I_SYS_TIME
11078 #$i_systimek I_SYS_TIME_KERNEL
11079 #ifdef I_TIME
11080 #   include <time.h>
11081 #endif
11082 #ifdef I_SYS_TIME
11083 #   ifdef I_SYS_TIME_KERNEL
11084 #       define KERNEL
11085 #   endif
11086 #   include <sys/time.h>
11087 #   ifdef I_SYS_TIME_KERNEL
11088 #       undef KERNEL
11089 #   endif
11090 #endif
11091 #$i_sysselct I_SYS_SELECT
11092 #ifdef I_SYS_SELECT
11093 #include <sys/select.h>
11094 #endif
11095 #include <stdio.h>
11096 $selecttype b;
11097 #define S sizeof(*(b))
11098 #define MINBITS 64
11099 #define NBYTES (S * 8 > MINBITS ? S : MINBITS/8)
11100 #define NBITS  (NBYTES * 8)
11101 int main() {
11102     char s[NBYTES];
11103     struct timeval t;
11104     int i;
11105     FILE* fp;
11106     int fd;
11107
11108     fclose(stdin);
11109     fp = fopen("try.c", "r");
11110     if (fp == 0)
11111       exit(1);
11112     fd = fileno(fp);
11113     if (fd < 0)
11114       exit(2);
11115     b = ($selecttype)s;
11116     for (i = 0; i < NBITS; i++)
11117         FD_SET(i, b);
11118     t.tv_sec  = 0;
11119     t.tv_usec = 0;
11120     select(fd + 1, b, 0, 0, &t);
11121     for (i = NBITS - 1; i > fd && FD_ISSET(i, b); i--);
11122     printf("%d\n", i + 1);
11123     return 0;
11124 }
11125 EOCP
11126                 set try
11127                 if eval $compile_ok; then
11128                         selectminbits=`./try`
11129                         case "$selectminbits" in
11130                         '')     cat >&4 <<EOM
11131 Cannot figure out on how many bits at a time your select() operates.
11132 I'll play safe and guess it is 32 bits.
11133 EOM
11134                                 selectminbits=32
11135                                 bits="32 bits"
11136                                 ;;
11137                         1)      bits="1 bit" ;;
11138                         *)      bits="$selectminbits bits" ;;
11139                         esac
11140                         echo "Your select() operates on $bits at a time." >&4
11141                 else
11142                         rp='What is the minimum number of bits your select() operates on?'
11143                         case "$byteorder" in
11144                         1234|12345678)  dflt=32 ;;
11145                         *)              dflt=1  ;;
11146                         esac
11147                         . ./myread
11148                         val=$ans
11149                         selectminbits="$val"
11150                 fi
11151                 $rm -f try.* try
11152                 ;;
11153         *)      : no select, so pick a harmless default
11154                 selectminbits='32'
11155                 ;;
11156         esac
11157         ;;
11158 esac
11159
11160 : Trace out the files included by signal.h, then look for SIGxxx names.
11161 : Remove SIGARRAYSIZE used by HPUX.
11162 : Remove SIGTYP void lines used by OS2.
11163 xxx=`echo '#include <signal.h>' |
11164         $cppstdin $cppminus $cppflags 2>/dev/null |
11165         $grep '^[       ]*#.*include' | 
11166         $awk "{print \\$$fieldn}" | $sed 's!"!!g' | $sort | $uniq`
11167 : Check this list of files to be sure we have parsed the cpp output ok.
11168 : This will also avoid potentially non-existent files, such 
11169 : as ../foo/bar.h
11170 xxxfiles=''
11171 for xx in $xxx /dev/null ; do
11172         $test -f "$xx" && xxxfiles="$xxxfiles $xx"
11173 done
11174 : If we have found no files, at least try signal.h
11175 case "$xxxfiles" in
11176 '')     xxxfiles=`./findhdr signal.h` ;;
11177 esac
11178 xxx=`awk '
11179 $1 ~ /^#define$/ && $2 ~ /^SIG[A-Z0-9]*$/ && $2 !~ /SIGARRAYSIZE/ && $3 !~ /void/ {
11180         print substr($2, 4, 20)
11181 }
11182 $1 == "#" && $2 ~ /^define$/ && $3 ~ /^SIG[A-Z0-9]*$/ && $3 !~ /SIGARRAYSIZE/ && $4 !~ /void/ {
11183         print substr($3, 4, 20)
11184 }' $xxxfiles`
11185 : Append some common names just in case the awk scan failed.
11186 xxx="$xxx ABRT ALRM BUS CHLD CLD CONT DIL EMT FPE HUP ILL INT IO IOT KILL"
11187 xxx="$xxx LOST PHONE PIPE POLL PROF PWR QUIT SEGV STKFLT STOP SYS TERM TRAP"
11188 xxx="$xxx TSTP TTIN TTOU URG USR1 USR2 USR3 USR4 VTALRM"
11189 xxx="$xxx WINCH WIND WINDOW XCPU XFSZ"
11190 : generate a few handy files for later
11191 $cat > signal.c <<'EOCP'
11192 #include <sys/types.h>
11193 #include <signal.h>
11194 #include <stdio.h>
11195 int main() {
11196
11197 /* Strange style to avoid deeply-nested #if/#else/#endif */
11198 #ifndef NSIG
11199 #  ifdef _NSIG
11200 #    define NSIG (_NSIG)
11201 #  endif
11202 #endif
11203
11204 #ifndef NSIG
11205 #  ifdef SIGMAX
11206 #    define NSIG (SIGMAX+1)
11207 #  endif
11208 #endif
11209
11210 #ifndef NSIG
11211 #  ifdef SIG_MAX
11212 #    define NSIG (SIG_MAX+1)
11213 #  endif
11214 #endif
11215
11216 #ifndef NSIG
11217 #  ifdef MAXSIG
11218 #    define NSIG (MAXSIG+1)
11219 #  endif
11220 #endif
11221
11222 #ifndef NSIG
11223 #  ifdef MAX_SIG
11224 #    define NSIG (MAX_SIG+1)
11225 #  endif
11226 #endif
11227
11228 #ifndef NSIG
11229 #  ifdef SIGARRAYSIZE
11230 #    define NSIG (SIGARRAYSIZE+1) /* Not sure of the +1 */
11231 #  endif
11232 #endif
11233
11234 #ifndef NSIG
11235 #  ifdef _sys_nsig
11236 #    define NSIG (_sys_nsig) /* Solaris 2.5 */
11237 #  endif
11238 #endif
11239
11240 /* Default to some arbitrary number that's big enough to get most
11241    of the common signals.
11242 */
11243 #ifndef NSIG
11244 #    define NSIG 50
11245 #endif
11246
11247 printf("NSIG %d\n", NSIG);
11248
11249 #ifndef JUST_NSIG
11250
11251 EOCP
11252
11253 echo $xxx | $tr ' ' $trnl | $sort | $uniq | $awk '
11254 {
11255         printf "#ifdef SIG"; printf $1; printf "\n"
11256         printf "printf(\""; printf $1; printf " %%d\\n\",SIG";
11257         printf $1; printf ");\n"
11258         printf "#endif\n"
11259 }
11260 END {
11261         printf "#endif /* JUST_NSIG */\n";
11262         printf "}\n";
11263 }
11264 ' >>signal.c
11265 $cat >signal.awk <<'EOP'
11266 BEGIN { ndups = 0 }
11267 $1 ~ /^NSIG$/ { nsig = $2 }
11268 ($1 !~ /^NSIG$/) && (NF == 2) {
11269     if ($2 > maxsig) { maxsig = $2 }
11270     if (sig_name[$2]) {
11271         dup_name[ndups] = $1
11272         dup_num[ndups] = $2
11273         ndups++ 
11274     }
11275     else {
11276         sig_name[$2] = $1
11277         sig_num[$2] = $2
11278     }
11279
11280 }
11281 END { 
11282     if (nsig == 0) { nsig = maxsig + 1 }
11283         for (n = 1; n < nsig; n++) {
11284                 if (sig_name[n]) {
11285                         printf("%s %d\n", sig_name[n], sig_num[n])
11286                 }
11287                 else {
11288                         printf("NUM%d %d\n", n, n) 
11289                 }
11290         }
11291     for (n = 0; n < ndups; n++) {
11292                 printf("%s %d\n", dup_name[n], dup_num[n])
11293     }
11294 }
11295 EOP
11296 $cat >signal_cmd <<EOS
11297 $startsh
11298 if $test -s signal.lst; then
11299     echo "Using your existing signal.lst file"
11300         exit 0
11301 fi
11302 xxx="$xxx"
11303 EOS
11304 $cat >>signal_cmd <<'EOS'
11305
11306 set signal
11307 if eval $compile_ok; then
11308         ./signal$_exe | $sort -n +1 | $uniq | $awk -f signal.awk >signal.lst
11309 else
11310         echo "(I can't seem be able to compile the whole test program)" >&4
11311         echo "(I'll try it in little pieces.)" >&4
11312         set signal -DJUST_NSIG
11313         if eval $compile_ok; then
11314                 ./signal$_exe > signal.nsg
11315                 $cat signal.nsg
11316         else
11317                 echo "I can't seem to figure out how many signals you have." >&4
11318                 echo "Guessing 50." >&4
11319                 echo 'NSIG 50' > signal.nsg
11320         fi
11321         : Now look at all the signal names, one at a time.
11322         for xx in `echo $xxx | $tr ' ' $trnl | $sort | $uniq`; do
11323                 $cat > signal.c <<EOCP
11324 #include <sys/types.h>
11325 #include <signal.h>
11326 #include <stdio.h>
11327 int main() {
11328 printf("$xx %d\n", SIG${xx});
11329 return 0;
11330 }
11331 EOCP
11332                 set signal
11333                 if eval $compile; then
11334                         echo "SIG${xx} found."
11335                         ./signal$_exe  >> signal.ls1
11336                 else
11337                         echo "SIG${xx} NOT found."
11338                 fi
11339         done
11340         if $test -s signal.ls1; then
11341                 $cat signal.nsg signal.ls1 |
11342                         $sort -n +1 | $uniq | $awk -f signal.awk >signal.lst
11343         fi
11344
11345 fi
11346 if $test -s signal.lst; then
11347         :
11348 else
11349         echo "(AAK! I can't compile the test programs -- Guessing)" >&4
11350         echo 'kill -l' >signal
11351         set X `csh -f <signal`
11352         $rm -f signal
11353         shift
11354         case $# in
11355         0) set HUP INT QUIT ILL TRAP ABRT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM;;
11356         esac
11357         echo $@ | $tr ' ' $trnl | \
11358                 $awk '{ printf $1; printf " %d\n", ++s; }' >signal.lst
11359 fi
11360 $rm -f signal.c signal$_exe signal$_o signal.nsg signal.ls1
11361 EOS
11362 chmod a+x signal_cmd
11363 $eunicefix signal_cmd
11364
11365 : generate list of signal names
11366 echo " "
11367 case "$sig_name_init" in
11368 '') doinit=yes ;;
11369 *)  case "$sig_num_init" in
11370     ''|*,*) doinit=yes ;;
11371     esac ;;
11372 esac
11373 case "$doinit" in
11374 yes)
11375         echo "Generating a list of signal names and numbers..." >&4
11376         . ./signal_cmd
11377         sig_name=`$awk '{printf "%s ", $1}' signal.lst`
11378         sig_name="ZERO $sig_name"
11379         sig_name_init=`$awk 'BEGIN { printf "\"ZERO\", " }
11380                                                 { printf "\"%s\", ", $1 }
11381                                                 END { printf "0\n" }' signal.lst`
11382         sig_num=`$awk '{printf "%d ", $2}' signal.lst`
11383         sig_num="0 $sig_num"
11384         sig_num_init=`$awk 'BEGIN { printf "0, " }
11385                                         { printf "%d, ", $2}
11386                                         END { printf "0\n"}' signal.lst`
11387         ;;
11388 esac
11389 echo "The following signals are available:"
11390 echo " "
11391 echo $sig_name | $awk \
11392 'BEGIN { linelen = 0 }
11393 {
11394         for (i = 1; i <= NF; i++) {
11395                 name = "SIG" $i " "
11396                 linelen = linelen + length(name)
11397                 if (linelen > 70) {
11398                         printf "\n"
11399                         linelen = length(name)
11400                 }
11401                 printf "%s", name
11402         }
11403         printf "\n"
11404 }'
11405 $rm -f signal signal.c signal.awk signal.lst signal_cmd 
11406
11407 : see what type is used for signed size_t
11408 set ssize_t ssizetype int stdio.h sys/types.h
11409 eval $typedef
11410 dflt="$ssizetype"
11411 $cat > ssize.c <<EOM
11412 #include <stdio.h>
11413 #include <sys/types.h>
11414 #define Size_t $sizetype
11415 #define SSize_t $dflt
11416 main()
11417 {
11418         if (sizeof(Size_t) == sizeof(SSize_t))
11419                 printf("$dflt\n");
11420         else if (sizeof(Size_t) == sizeof(int))
11421                 printf("int\n");
11422         else 
11423                 printf("long\n");
11424         exit(0);
11425 }
11426 EOM
11427 echo " "
11428 set ssize
11429 if eval $compile_ok && ./ssize > /dev/null; then
11430         ssizetype=`./ssize`
11431         echo "I'll be using $ssizetype for functions returning a byte count." >&4
11432 else
11433         $cat >&4 <<EOM
11434 Help! I can't compile and run the ssize_t test program: please enlighten me!
11435 (This is probably a misconfiguration in your system or libraries, and
11436 you really ought to fix it.  Still, I'll try anyway.)
11437
11438 I need a type that is the same size as $sizetype, but is guaranteed to
11439 be signed.  Common values are ssize_t, int and long.
11440
11441 EOM
11442         rp="What signed type is the same size as $sizetype?"
11443         . ./myread
11444         ssizetype="$ans"
11445 fi
11446 $rm -f ssize ssize.*
11447
11448 : see what type of char stdio uses.
11449 echo " "
11450 if $contains 'unsigned.*char.*_ptr;' `./findhdr stdio.h` >/dev/null 2>&1 ; then
11451         echo "Your stdio uses unsigned chars." >&4
11452         stdchar="unsigned char"
11453 else
11454         echo "Your stdio uses signed chars." >&4
11455         stdchar="char"
11456 fi
11457
11458 : see if time exists
11459 echo " "
11460 if test "X$d_time" = X -o X"$timetype" = X; then
11461     if set time val -f d_time; eval $csym; $val; then
11462                 echo 'time() found.' >&4
11463                 val="$define"
11464                 rp="What is the type returned by time() on this system?"
11465                 set time_t timetype long stdio.h sys/types.h
11466                 eval $typedef_ask
11467     else
11468                 echo 'time() not found, hope that will do.' >&4
11469                 val="$undef"
11470                 timetype='int';
11471     fi
11472     set d_time
11473     eval $setvar
11474 fi
11475
11476 : see what type uids are declared as in the kernel
11477 echo " "
11478 echo "Looking for the type for user ids returned by getuid()."
11479 set uid_t uidtype xxx stdio.h sys/types.h
11480 eval $typedef
11481 case "$uidtype" in
11482 xxx)
11483         xxx=`./findhdr sys/user.h`
11484         set `grep '_ruid;' "$xxx" 2>/dev/null` unsigned short
11485         case $1 in
11486         unsigned) dflt="$1 $2" ;;
11487         *) dflt="$1" ;;
11488         esac
11489         ;;
11490 *) dflt="$uidtype";;
11491 esac
11492 case "$uidtype" in
11493 uid_t)  echo "uid_t found." ;;
11494 *)      rp="What is the type for user ids returned by getuid()?"
11495         . ./myread
11496         uidtype="$ans"
11497         ;;
11498 esac
11499
11500 : see if dbm.h is available
11501 : see if dbmclose exists
11502 set dbmclose d_dbmclose
11503 eval $inlibc
11504
11505 case "$d_dbmclose" in
11506 $define)
11507         set dbm.h i_dbm
11508         eval $inhdr
11509         case "$i_dbm" in
11510         $define)
11511                 val="$undef"
11512                 set i_rpcsvcdbm
11513                 eval $setvar
11514                 ;;
11515         *)      set rpcsvc/dbm.h i_rpcsvcdbm
11516                 eval $inhdr
11517                 ;;
11518         esac
11519         ;;
11520 *)      echo "We won't be including <dbm.h>"
11521         val="$undef"
11522         set i_dbm
11523         eval $setvar
11524         val="$undef"
11525         set i_rpcsvcdbm
11526         eval $setvar
11527         ;;
11528 esac
11529
11530 : see if this is a sys/file.h system
11531 val=''
11532 set sys/file.h val
11533 eval $inhdr
11534
11535 : do we need to include sys/file.h ?
11536 case "$val" in
11537 "$define")
11538         echo " "
11539         if $h_sysfile; then
11540                 val="$define"
11541                 echo "We'll be including <sys/file.h>." >&4
11542         else
11543                 val="$undef"
11544                 echo "We won't be including <sys/file.h>." >&4
11545         fi
11546         ;;
11547 *)
11548         h_sysfile=false
11549         ;;
11550 esac
11551 set i_sysfile
11552 eval $setvar
11553
11554 : see if fcntl.h is there
11555 val=''
11556 set fcntl.h val
11557 eval $inhdr
11558
11559 : see if we can include fcntl.h
11560 case "$val" in
11561 "$define")
11562         echo " "
11563         if $h_fcntl; then
11564                 val="$define"
11565                 echo "We'll be including <fcntl.h>." >&4
11566         else
11567                 val="$undef"
11568                 if $h_sysfile; then
11569         echo "We don't need to include <fcntl.h> if we include <sys/file.h>." >&4
11570                 else
11571                         echo "We won't be including <fcntl.h>." >&4
11572                 fi
11573         fi
11574         ;;
11575 *)
11576         h_fcntl=false
11577         val="$undef"
11578         ;;
11579 esac
11580 set i_fcntl
11581 eval $setvar
11582
11583 : see if locale.h is available
11584 set locale.h i_locale
11585 eval $inhdr
11586
11587 : see if mach cthreads are available
11588 if test "X$usethreads" = "X$define"; then
11589         set mach/cthreads.h i_machcthr
11590         eval $inhdr
11591 else
11592         i_machcthr="$undef"
11593 fi
11594
11595
11596
11597 : see if this is a math.h system
11598 set math.h i_math
11599 eval $inhdr
11600
11601 : see if ndbm.h is available
11602 set ndbm.h t_ndbm
11603 eval $inhdr
11604 case "$t_ndbm" in
11605 $define)
11606         : see if dbm_open exists
11607         set dbm_open d_dbm_open
11608         eval $inlibc
11609         case "$d_dbm_open" in
11610         $undef)
11611                 t_ndbm="$undef"
11612                 echo "We won't be including <ndbm.h>"
11613                 ;;
11614         esac
11615         ;;
11616 esac
11617 val="$t_ndbm"
11618 set i_ndbm
11619 eval $setvar
11620
11621 : see if net/errno.h is available
11622 val=''
11623 set net/errno.h val
11624 eval $inhdr
11625
11626 : Unfortunately, it causes problems on some systems.  Arrgh.
11627 case "$val" in
11628 $define)
11629         cat > try.c <<'EOM'
11630 #include <stdio.h>
11631 #include <errno.h>
11632 #include <net/errno.h>
11633 int func()
11634 {
11635         return ENOTSOCK;
11636 }
11637 EOM
11638         if $cc $ccflags -c try.c >/dev/null 2>&1; then
11639                 echo "We'll be including <net/errno.h>." >&4
11640         else
11641                 echo "We won't be including <net/errno.h>." >&4
11642                 val="$undef"
11643         fi
11644         $rm -f try.* try
11645         ;;
11646 esac
11647 set i_neterrno
11648 eval $setvar
11649
11650 : get C preprocessor symbols handy
11651 echo " "
11652 $echo $n "Hmm... $c"
11653 echo $al | $tr ' ' $trnl >Cppsym.know
11654 $cat <<EOSS >Cppsym
11655 $startsh
11656 case "\$1" in
11657 -l) list=true
11658         shift
11659         ;;
11660 esac
11661 unknown=''
11662 case "\$list\$#" in
11663 1|2)
11664         for sym do
11665                 if $contains "^\$1$" Cppsym.true >/dev/null 2>&1; then
11666                         exit 0
11667                 elif $contains "^\$1$" Cppsym.know >/dev/null 2>&1; then
11668                         :
11669                 else
11670                         unknown="\$unknown \$sym"
11671                 fi
11672         done
11673         set X \$unknown
11674         shift
11675         ;;
11676 esac
11677 case \$# in
11678 0) exit 1;;
11679 esac
11680 echo \$* | $tr ' ' '$trnl' | $sed -e 's/\(.*\)/\\
11681 #ifdef \1\\
11682 exit 0; _ _ _ _\1\\      \1\\
11683 #endif\\
11684 /' >Cppsym\$\$
11685 echo "exit 1; _ _ _" >>Cppsym\$\$
11686 $cppstdin $cppminus <Cppsym\$\$ | $grep '^exit [01]; _ _'  >Cppsym2\$\$
11687 case "\$list" in
11688 true) $awk 'NF > 5 {print substr(\$6,2,100)}' <Cppsym2\$\$ ;;
11689 *)
11690         sh Cppsym2\$\$
11691         status=\$?
11692         ;;
11693 esac
11694 $rm -f Cppsym\$\$ Cppsym2\$\$
11695 exit \$status
11696 EOSS
11697 chmod +x Cppsym
11698 $eunicefix Cppsym
11699 ./Cppsym -l $al | $sort | $grep -v '^$' >Cppsym.true
11700
11701 : now check the C compiler for additional symbols
11702 $cat >ccsym <<EOS
11703 $startsh
11704 $cat >tmp.c <<EOF
11705 extern int foo;
11706 EOF
11707 for i in \`$cc -v -c tmp.c 2>&1\`
11708 do
11709         case "\$i" in
11710         -D*) echo "\$i" | $sed 's/^-D//';;
11711         -A*) $test "$gccversion" && echo "\$i" | $sed 's/^-A\(.*\)(\(.*\))/\1=\2/';;
11712         esac
11713 done
11714 $rm -f try.c
11715 EOS
11716 chmod +x ccsym
11717 $eunicefix ccsym
11718 ./ccsym > ccsym1.raw
11719 if $test -s ccsym1.raw; then
11720        $sort ccsym1.raw | $uniq >ccsym.raw
11721 else
11722        mv ccsym1.raw ccsym.raw
11723 fi
11724
11725 $awk '/\=/ { print $0; next }
11726         { print $0"=1" }' ccsym.raw >ccsym.list
11727 $awk '{ print $0"=1" }' Cppsym.true >ccsym.true
11728 $comm -13 ccsym.true ccsym.list >ccsym.own
11729 $comm -12 ccsym.true ccsym.list >ccsym.com
11730 $comm -23 ccsym.true ccsym.list >ccsym.cpp
11731 also=''
11732 symbols='symbols'
11733 if $test -z ccsym.raw; then
11734         echo "Your C compiler doesn't seem to define any symbol!" >&4
11735         echo " "
11736         echo "However, your C preprocessor defines the following ones:"
11737         $cat Cppsym.true
11738 else
11739         if $test -s ccsym.com; then
11740                 echo "Your C compiler and pre-processor define these symbols:"
11741                 $sed -e 's/\(.*\)=.*/\1/' ccsym.com
11742                 also='also '
11743                 symbols='ones'
11744                 $test "$silent" || sleep 1
11745         fi
11746         if $test -s ccsym.cpp; then
11747                 $test "$also" && echo " "
11748                 echo "Your C pre-processor ${also}defines the following $symbols:"
11749                 $sed -e 's/\(.*\)=.*/\1/' ccsym.cpp
11750                 also='further '
11751                 $test "$silent" || sleep 1
11752         fi
11753         if $test -s ccsym.own; then
11754                 $test "$also" && echo " "
11755                 echo "Your C compiler ${also}defines the following cpp variables:"
11756                 $sed -e 's/\(.*\)=1/\1/' ccsym.own
11757                 $sed -e 's/\(.*\)=.*/\1/' ccsym.own | $uniq >>Cppsym.true
11758                 $test "$silent" || sleep 1
11759         fi
11760 fi
11761 $rm -f ccsym*
11762
11763 : see if this is a termio system
11764 val="$undef"
11765 val2="$undef"
11766 val3="$undef"
11767 if $test `./findhdr termios.h`; then
11768         set tcsetattr i_termios
11769         eval $inlibc
11770         val3="$i_termios"
11771 fi
11772 echo " "
11773 case "$val3" in
11774 "$define") echo "You have POSIX termios.h... good!" >&4;;
11775 *) if ./Cppsym pyr; then
11776                 case "`/bin/universe`" in
11777                 ucb) if $test `./findhdr sgtty.h`; then
11778                                 val2="$define"
11779                                 echo "<sgtty.h> found." >&4
11780                         else
11781                                 echo "System is pyramid with BSD universe."
11782                                 echo "<sgtty.h> not found--you could have problems." >&4
11783                         fi;;
11784                 *) if $test `./findhdr termio.h`; then
11785                                 val="$define"
11786                                 echo "<termio.h> found." >&4
11787                         else
11788                                 echo "System is pyramid with USG universe."
11789                                 echo "<termio.h> not found--you could have problems." >&4
11790                         fi;;
11791                 esac
11792         elif ./usg; then
11793                 if $test `./findhdr termio.h`; then
11794                         echo "<termio.h> found." >&4
11795                         val="$define"
11796                 elif $test `./findhdr sgtty.h`; then
11797                         echo "<sgtty.h> found." >&4
11798                         val2="$define"
11799                 else
11800 echo "Neither <termio.h> nor <sgtty.h> found--you could have problems." >&4
11801                 fi
11802         else
11803                 if $test `./findhdr sgtty.h`; then
11804                         echo "<sgtty.h> found." >&4
11805                         val2="$define"
11806                 elif $test `./findhdr termio.h`; then
11807                         echo "<termio.h> found." >&4
11808                         val="$define"
11809                 else
11810 echo "Neither <sgtty.h> nor <termio.h> found--you could have problems." >&4
11811                 fi
11812         fi;;
11813 esac
11814 set i_termio; eval $setvar
11815 val=$val2; set i_sgtty; eval $setvar
11816 val=$val3; set i_termios; eval $setvar
11817
11818 : see if stdarg is available
11819 echo " "
11820 if $test `./findhdr stdarg.h`; then
11821         echo "<stdarg.h> found." >&4
11822         valstd="$define"
11823 else
11824         echo "<stdarg.h> NOT found." >&4
11825         valstd="$undef"
11826 fi
11827
11828 : see if varags is available
11829 echo " "
11830 if $test `./findhdr varargs.h`; then
11831         echo "<varargs.h> found." >&4
11832 else
11833         echo "<varargs.h> NOT found, but that's ok (I hope)." >&4
11834 fi
11835
11836 : set up the varargs testing programs
11837 $cat > varargs.c <<EOP
11838 #ifdef I_STDARG
11839 #include <stdarg.h>
11840 #endif
11841 #ifdef I_VARARGS
11842 #include <varargs.h>
11843 #endif
11844
11845 #ifdef I_STDARG
11846 int f(char *p, ...)
11847 #else
11848 int f(va_alist)
11849 va_dcl
11850 #endif
11851 {
11852         va_list ap;
11853 #ifndef I_STDARG
11854         char *p;
11855 #endif
11856 #ifdef I_STDARG
11857         va_start(ap,p);
11858 #else
11859         va_start(ap);
11860         p = va_arg(ap, char *);
11861 #endif
11862         va_end(ap);
11863 }
11864 EOP
11865 $cat > varargs <<EOP
11866 $startsh
11867 if $cc -c $ccflags -D\$1 varargs.c >/dev/null 2>&1; then
11868         echo "true"
11869 else
11870         echo "false"
11871 fi
11872 $rm -f varargs$_o
11873 EOP
11874 chmod +x varargs
11875
11876 : now check which varargs header should be included
11877 echo " "
11878 i_varhdr=''
11879 case "$valstd" in
11880 "$define")
11881         if `./varargs I_STDARG`; then
11882                 val='stdarg.h'
11883         elif `./varargs I_VARARGS`; then
11884                 val='varargs.h'
11885         fi
11886         ;;
11887 *)
11888         if `./varargs I_VARARGS`; then
11889                 val='varargs.h'
11890         fi
11891         ;;
11892 esac
11893 case "$val" in
11894 '')
11895 echo "I could not find the definition for va_dcl... You have problems..." >&4
11896         val="$undef"; set i_stdarg; eval $setvar
11897         val="$undef"; set i_varargs; eval $setvar
11898         ;;
11899 *) 
11900         set i_varhdr
11901         eval $setvar
11902         case "$i_varhdr" in
11903         stdarg.h)
11904                 val="$define"; set i_stdarg; eval $setvar
11905                 val="$undef"; set i_varargs; eval $setvar
11906                 ;;
11907         varargs.h)
11908                 val="$undef"; set i_stdarg; eval $setvar
11909                 val="$define"; set i_varargs; eval $setvar
11910                 ;;
11911         esac
11912         echo "We'll include <$i_varhdr> to get va_dcl definition." >&4;;
11913 esac
11914 $rm -f varargs*
11915
11916 : see if stddef is available
11917 set stddef.h i_stddef
11918 eval $inhdr
11919
11920 : see if sys/access.h is available
11921 set sys/access.h i_sysaccess
11922 eval $inhdr
11923
11924 : see if ioctl defs are in sgtty, termio, sys/filio or sys/ioctl
11925 set sys/filio.h i_sysfilio
11926 eval $inhdr
11927 echo " "
11928 if $test `./findhdr sys/ioctl.h`; then
11929         val="$define"
11930         echo '<sys/ioctl.h> found.' >&4
11931 else
11932         val="$undef"
11933         if $test $i_sysfilio = "$define"; then
11934             echo '<sys/ioctl.h> NOT found.' >&4
11935         else
11936                 $test $i_sgtty = "$define" && xxx="sgtty.h"
11937                 $test $i_termio = "$define" && xxx="termio.h"
11938                 $test $i_termios = "$define" && xxx="termios.h"
11939 echo "No <sys/ioctl.h> found, assuming ioctl args are defined in <$xxx>." >&4
11940         fi
11941 fi
11942 set i_sysioctl
11943 eval $setvar
11944
11945 : see if this is a sys/param system
11946 set sys/param.h i_sysparam
11947 eval $inhdr
11948
11949 : see if sys/resource.h has to be included
11950 set sys/resource.h i_sysresrc
11951 eval $inhdr
11952
11953 : see if sys/security.h is available
11954 set sys/security.h i_syssecrt
11955 eval $inhdr
11956
11957 : see if this is a sys/un.h system
11958 set sys/un.h i_sysun
11959 eval $inhdr
11960
11961 : see if this is a syswait system
11962 set sys/wait.h i_syswait
11963 eval $inhdr
11964
11965 : see if this is an utime system
11966 set utime.h i_utime
11967 eval $inhdr
11968
11969 : see if this is a values.h system
11970 set values.h i_values
11971 eval $inhdr
11972
11973 : see if this is a vfork system
11974 case "$d_vfork" in
11975 "$define")
11976         set vfork.h i_vfork
11977         eval $inhdr
11978         ;;
11979 *)
11980         i_vfork="$undef"
11981         ;;
11982 esac
11983
11984 : see if gdbm.h is available
11985 set gdbm.h t_gdbm
11986 eval $inhdr
11987 case "$t_gdbm" in
11988 $define)
11989         : see if gdbm_open exists
11990         set gdbm_open d_gdbm_open
11991         eval $inlibc
11992         case "$d_gdbm_open" in
11993         $undef)
11994                 t_gdbm="$undef"
11995                 echo "We won't be including <gdbm.h>"
11996                 ;;
11997         esac
11998         ;;
11999 esac
12000 val="$t_gdbm"
12001 set i_gdbm
12002 eval $setvar
12003
12004 echo " "
12005 echo "Looking for extensions..." >&4
12006 tdir=`pwd`
12007 cd $rsrc/ext
12008 : If we are using the old config.sh, known_extensions may contain
12009 : old or inaccurate or duplicate values.
12010 known_extensions=''
12011 nonxs_extensions=''
12012 : We do not use find because it might not be available.
12013 : We do not just use MANIFEST because the user may have dropped
12014 : some additional extensions into the source tree and expect them
12015 : to be built.
12016 for xxx in * ; do
12017         case "$xxx" in
12018         DynaLoader|dynaload) ;;
12019         *)      if $test -f $xxx/$xxx.xs; then
12020                         known_extensions="$known_extensions $xxx"
12021                 elif $test -f $xxx/Makefile.PL; then
12022                         nonxs_extensions="$nonxs_extensions $xxx"
12023                 else
12024                         if $test -d $xxx; then
12025                                 # Look for nested extensions, eg. Devel/Dprof.
12026                                 cd $xxx
12027                                 for yyy in * ; do
12028                                 if $test -f $yyy/$yyy.xs; then
12029                                         known_extensions="$known_extensions $xxx/$yyy"
12030                                 elif $test -f $yyy/Makefile.PL; then
12031                                         nonxs_extensions="$nonxs_extensions $xxx/$yyy"
12032                                 fi
12033                                 done
12034                                 cd ..
12035                         fi
12036                 fi 
12037                 ;;
12038         esac
12039 done
12040 set X $nonxs_extensions
12041 shift
12042 nonxs_extensions="$*"
12043 set X $known_extensions
12044 shift
12045 known_extensions="$*"
12046 cd $tdir
12047
12048 : Now see which are supported on this system.
12049 avail_ext=''
12050 for xxx in $known_extensions ; do
12051         case "$xxx" in
12052         DB_File|db_file)
12053                 case "$i_db" in
12054                 $define) avail_ext="$avail_ext $xxx" ;;
12055                 esac
12056                 ;;
12057         GDBM_File|gdbm_fil)
12058                 case "$i_gdbm" in 
12059                 $define) avail_ext="$avail_ext $xxx" ;;
12060                 esac
12061                 ;;
12062         NDBM_File|ndbm_fil)
12063                 case "$i_ndbm" in
12064                 $define) avail_ext="$avail_ext $xxx" ;;
12065                 esac
12066                 ;;
12067         ODBM_File|odbm_fil) 
12068                 case "${i_dbm}${i_rpcsvcdbm}" in
12069                 *"${define}"*) avail_ext="$avail_ext $xxx" ;;
12070                 esac
12071                 ;;
12072         POSIX|posix)
12073                 case "$useposix" in
12074                 true|define|y) avail_ext="$avail_ext $xxx" ;;
12075                 esac
12076                 ;;
12077         Opcode|opcode)
12078                 case "$useopcode" in
12079                 true|define|y) avail_ext="$avail_ext $xxx" ;;
12080                 esac
12081                 ;;
12082         Socket|socket)
12083                 case "$d_socket" in 
12084                 true|$define|y) avail_ext="$avail_ext $xxx" ;;
12085                 esac
12086                 ;;
12087         Thread|thread)
12088                 case "$usethreads" in 
12089                 true|$define|y) avail_ext="$avail_ext $xxx" ;;
12090                 esac
12091                 ;;
12092         IPC/SysV|ipc/sysv)
12093                 : XXX Do we need a useipcsysv variable here
12094                 case "${d_msg}${d_sem}${d_shm}" in 
12095                 *"${define}"*) avail_ext="$avail_ext $xxx" ;;
12096                 esac
12097                 ;;
12098         *)      avail_ext="$avail_ext $xxx"
12099                 ;;
12100         esac
12101 done
12102
12103 set X $avail_ext
12104 shift
12105 avail_ext="$*"
12106
12107 : Now see which nonxs extensions are supported on this system.
12108 : For now assume all are.
12109 nonxs_ext=''
12110 for xxx in $nonxs_extensions ; do
12111         case "$xxx" in
12112         *)      nonxs_ext="$nonxs_ext $xxx"
12113                 ;;
12114         esac
12115 done
12116
12117 set X $nonxs_ext
12118 shift
12119 nonxs_ext="$*"
12120
12121 case $usedl in
12122 $define)
12123         $cat <<EOM
12124 A number of extensions are supplied with $package.  You may choose to
12125 compile these extensions for dynamic loading (the default), compile
12126 them into the $package executable (static loading), or not include
12127 them at all.  Answer "none" to include no extensions.
12128 Note that DynaLoader is always built and need not be mentioned here.
12129
12130 EOM
12131         case "$dynamic_ext" in
12132         '') dflt="$avail_ext" ;;
12133         *)      dflt="$dynamic_ext"
12134                 # Perhaps we are reusing an old out-of-date config.sh.
12135                 case "$hint" in
12136                 previous)
12137                         if test X"$dynamic_ext" != X"$avail_ext"; then
12138                                 $cat <<EOM
12139 NOTICE:  Your previous config.sh list may be incorrect. 
12140 The extensions now available to you are 
12141         ${avail_ext}
12142 but the default list from your previous config.sh is
12143         ${dynamic_ext} 
12144
12145 EOM
12146                         fi
12147                         ;;
12148                 esac
12149                 ;;
12150         esac
12151         case "$dflt" in
12152         '')     dflt=none;;
12153         esac
12154         rp="What extensions do you wish to load dynamically?"
12155         . ./myread
12156         case "$ans" in
12157         none) dynamic_ext=' ' ;;
12158         *) dynamic_ext="$ans" ;;
12159         esac
12160
12161         case "$static_ext" in
12162         '')
12163                 : Exclude those already listed in dynamic linking
12164                 dflt=''
12165                 for xxx in $avail_ext; do
12166                         case " $dynamic_ext " in
12167                         *" $xxx "*) ;;
12168                         *) dflt="$dflt $xxx" ;;
12169                         esac
12170                 done
12171                 set X $dflt
12172                 shift
12173                 dflt="$*"
12174                 ;;
12175         *)  dflt="$static_ext" 
12176                 ;;
12177         esac
12178
12179         case "$dflt" in
12180         '')     dflt=none;;
12181         esac
12182         rp="What extensions do you wish to load statically?"
12183         . ./myread
12184         case "$ans" in
12185         none) static_ext=' ' ;;
12186         *) static_ext="$ans" ;;
12187         esac
12188         ;;
12189 *)
12190         $cat <<EOM
12191 A number of extensions are supplied with $package.  Answer "none" 
12192 to include no extensions. 
12193 Note that DynaLoader is always built and need not be mentioned here.
12194
12195 EOM
12196         case "$static_ext" in
12197         '') dflt="$avail_ext" ;;
12198         *)      dflt="$static_ext"
12199                 # Perhaps we are reusing an old out-of-date config.sh.
12200                 case "$hint" in
12201                 previous)
12202                         if test X"$static_ext" != X"$avail_ext"; then
12203                                 $cat <<EOM
12204 NOTICE:  Your previous config.sh list may be incorrect. 
12205 The extensions now available to you are 
12206         ${avail_ext}
12207 but the default list from your previous config.sh is
12208         ${static_ext} 
12209
12210 EOM
12211                         fi
12212                         ;;
12213                 esac
12214                 ;;
12215         esac
12216         : Exclude those that are not xs extensions
12217         case "$dflt" in
12218         '')     dflt=none;;
12219         esac
12220         rp="What extensions do you wish to include?"
12221         . ./myread
12222         case "$ans" in
12223         none) static_ext=' ' ;;
12224         *) static_ext="$ans" ;;
12225         esac
12226         ;;
12227 esac
12228
12229 set X $dynamic_ext $static_ext $nonxs_ext
12230 shift
12231 extensions="$*"
12232
12233 : Remove build directory name from cppstdin so it can be used from
12234 : either the present location or the final installed location.
12235 echo " "
12236 : Get out of the UU directory to get correct path name.
12237 cd ..
12238 case "$cppstdin" in
12239 `pwd`/cppstdin)
12240         echo "Stripping down cppstdin path name"
12241         cppstdin=cppstdin
12242         ;;
12243 esac
12244 cd UU
12245
12246 : end of configuration questions
12247 echo " "
12248 echo "End of configuration questions."
12249 echo " "
12250
12251 : back to where it started
12252 if test -d ../UU; then
12253         cd ..
12254 fi
12255
12256 : configuration may be patched via a 'config.over' file
12257 if $test -f config.over; then
12258         echo " "
12259         dflt=y
12260         rp='I see a config.over file.  Do you wish to load it?'
12261         . UU/myread
12262         case "$ans" in
12263         n*) echo "OK, I'll ignore it.";;
12264         *)      . ./config.over
12265                 echo "Configuration override changes have been loaded."
12266                 ;;
12267         esac
12268 fi
12269
12270 : in case they want portability, strip down executable paths
12271 case "$d_portable" in
12272 "$define")
12273         echo " "
12274         echo "Stripping down executable paths..." >&4
12275         for file in $loclist $trylist; do
12276                 if test X$file != Xln -a X$file != Xar -o X$osname != Xos2; then
12277                         eval $file="\$file"
12278                 fi
12279         done
12280         ;;
12281 esac
12282
12283 : create config.sh file
12284 echo " "
12285 echo "Creating config.sh..." >&4
12286 $spitshell <<EOT >config.sh
12287 $startsh
12288 #
12289 # This file was produced by running the Configure script. It holds all the
12290 # definitions figured out by Configure. Should you modify one of these values,
12291 # do not forget to propagate your changes by running "Configure -der". You may
12292 # instead choose to run each of the .SH files by yourself, or "Configure -S".
12293 #
12294
12295 # Package name      : $package
12296 # Source directory  : $src
12297 # Configuration time: $cf_time
12298 # Configured by     : $cf_by
12299 # Target system     : $myuname
12300
12301 Author='$Author'
12302 Date='$Date'
12303 Header='$Header'
12304 Id='$Id'
12305 Locker='$Locker'
12306 Log='$Log'
12307 Mcc='$Mcc'
12308 RCSfile='$RCSfile'
12309 Revision='$Revision'
12310 Source='$Source'
12311 State='$State'
12312 _a='$_a'
12313 _exe='$_exe'
12314 _o='$_o'
12315 afs='$afs'
12316 alignbytes='$alignbytes'
12317 ansi2knr='$ansi2knr'
12318 aphostname='$aphostname'
12319 apiversion='$apiversion'
12320 ar='$ar'
12321 archlib='$archlib'
12322 archlibexp='$archlibexp'
12323 archname64='$archname64'
12324 archname='$archname'
12325 archobjs='$archobjs'
12326 awk='$awk'
12327 baserev='$baserev'
12328 bash='$bash'
12329 bin='$bin'
12330 binexp='$binexp'
12331 bison='$bison'
12332 byacc='$byacc'
12333 byteorder='$byteorder'
12334 c='$c'
12335 castflags='$castflags'
12336 cat='$cat'
12337 cc='$cc'
12338 cccdlflags='$cccdlflags'
12339 ccdlflags='$ccdlflags'
12340 ccflags='$ccflags'
12341 cf_by='$cf_by'
12342 cf_email='$cf_email'
12343 cf_time='$cf_time'
12344 chgrp='$chgrp'
12345 chmod='$chmod'
12346 chown='$chown'
12347 clocktype='$clocktype'
12348 comm='$comm'
12349 compress='$compress'
12350 contains='$contains'
12351 cp='$cp'
12352 cpio='$cpio'
12353 cpp='$cpp'
12354 cpp_stuff='$cpp_stuff'
12355 cppflags='$cppflags'
12356 cpplast='$cpplast'
12357 cppminus='$cppminus'
12358 cpprun='$cpprun'
12359 cppstdin='$cppstdin'
12360 cryptlib='$cryptlib'
12361 csh='$csh'
12362 d_Gconvert='$d_Gconvert'
12363 d_access='$d_access'
12364 d_accessx='$d_accessx'
12365 d_alarm='$d_alarm'
12366 d_archlib='$d_archlib'
12367 d_attribut='$d_attribut'
12368 d_bcmp='$d_bcmp'
12369 d_bcopy='$d_bcopy'
12370 d_bsd='$d_bsd'
12371 d_bsdgetpgrp='$d_bsdgetpgrp'
12372 d_bsdsetpgrp='$d_bsdsetpgrp'
12373 d_bzero='$d_bzero'
12374 d_casti32='$d_casti32'
12375 d_castneg='$d_castneg'
12376 d_charvspr='$d_charvspr'
12377 d_chown='$d_chown'
12378 d_chroot='$d_chroot'
12379 d_chsize='$d_chsize'
12380 d_closedir='$d_closedir'
12381 d_cmsghdr_s='$d_cmsghdr_s'
12382 d_const='$d_const'
12383 d_crypt='$d_crypt'
12384 d_csh='$d_csh'
12385 d_cuserid='$d_cuserid'
12386 d_dbl_dig='$d_dbl_dig'
12387 d_dbmclose64='$d_dbmclose64'
12388 d_dbminit64='$d_dbminit64'
12389 d_delete64='$d_delete64'
12390 d_difftime='$d_difftime'
12391 d_dirent64_s='$d_dirent64_s'
12392 d_dirnamlen='$d_dirnamlen'
12393 d_dlerror='$d_dlerror'
12394 d_dlopen='$d_dlopen'
12395 d_dlsymun='$d_dlsymun'
12396 d_dosuid='$d_dosuid'
12397 d_drand48proto='$d_drand48proto'
12398 d_dup2='$d_dup2'
12399 d_eaccess='$d_eaccess'
12400 d_endgrent='$d_endgrent'
12401 d_endhent='$d_endhent'
12402 d_endnent='$d_endnent'
12403 d_endpent='$d_endpent'
12404 d_endpwent='$d_endpwent'
12405 d_endsent='$d_endsent'
12406 d_eofnblk='$d_eofnblk'
12407 d_eunice='$d_eunice'
12408 d_fchmod='$d_fchmod'
12409 d_fchown='$d_fchown'
12410 d_fcntl='$d_fcntl'
12411 d_fd_macros='$d_fd_macros'
12412 d_fd_set='$d_fd_set'
12413 d_fds_bits='$d_fds_bits'
12414 d_fetch64='$d_fetch64'
12415 d_fgetpos64='$d_fgetpos64'
12416 d_fgetpos='$d_fgetpos'
12417 d_firstkey64='$d_firstkey64'
12418 d_flexfnam='$d_flexfnam'
12419 d_flock64_s='$d_flock64_s'
12420 d_flock='$d_flock'
12421 d_fopen64='$d_fopen64'
12422 d_fork='$d_fork'
12423 d_fpathconf='$d_fpathconf'
12424 d_freopen64='$d_freopen64'
12425 d_fseek64='$d_fseek64'
12426 d_fseeko64='$d_fseeko64'
12427 d_fseeko='$d_fseeko'
12428 d_fsetpos64='$d_fsetpos64'
12429 d_fsetpos='$d_fsetpos'
12430 d_fstat64='$d_fstat64'
12431 d_ftell64='$d_ftell64'
12432 d_ftello64='$d_ftello64'
12433 d_ftello='$d_ftello'
12434 d_ftime='$d_ftime'
12435 d_ftruncate64='$d_ftruncate64'
12436 d_getgrent='$d_getgrent'
12437 d_getgrps='$d_getgrps'
12438 d_gethbyaddr='$d_gethbyaddr'
12439 d_gethbyname='$d_gethbyname'
12440 d_gethent='$d_gethent'
12441 d_gethname='$d_gethname'
12442 d_gethostprotos='$d_gethostprotos'
12443 d_getlogin='$d_getlogin'
12444 d_getnbyaddr='$d_getnbyaddr'
12445 d_getnbyname='$d_getnbyname'
12446 d_getnent='$d_getnent'
12447 d_getnetprotos='$d_getnetprotos'
12448 d_getpbyname='$d_getpbyname'
12449 d_getpbynumber='$d_getpbynumber'
12450 d_getpent='$d_getpent'
12451 d_getpgid='$d_getpgid'
12452 d_getpgrp2='$d_getpgrp2'
12453 d_getpgrp='$d_getpgrp'
12454 d_getppid='$d_getppid'
12455 d_getprior='$d_getprior'
12456 d_getprotoprotos='$d_getprotoprotos'
12457 d_getpwent='$d_getpwent'
12458 d_getsbyname='$d_getsbyname'
12459 d_getsbyport='$d_getsbyport'
12460 d_getsent='$d_getsent'
12461 d_getservprotos='$d_getservprotos'
12462 d_gettimeod='$d_gettimeod'
12463 d_gnulibc='$d_gnulibc'
12464 d_grpasswd='$d_grpasswd'
12465 d_htonl='$d_htonl'
12466 d_index='$d_index'
12467 d_inetaton='$d_inetaton'
12468 d_ino64t='$d_ino64t'
12469 d_int64t='$d_int64t'
12470 d_iovec_s='$d_iovec_s'
12471 d_isascii='$d_isascii'
12472 d_killpg='$d_killpg'
12473 d_lchown='$d_lchown'
12474 d_link='$d_link'
12475 d_locconv='$d_locconv'
12476 d_lockf64='$d_lockf64'
12477 d_lockf='$d_lockf'
12478 d_longdbl='$d_longdbl'
12479 d_longlong='$d_longlong'
12480 d_lseek64='$d_lseek64'
12481 d_lstat64='$d_lstat64'
12482 d_lstat='$d_lstat'
12483 d_mblen='$d_mblen'
12484 d_mbstowcs='$d_mbstowcs'
12485 d_mbtowc='$d_mbtowc'
12486 d_memcmp='$d_memcmp'
12487 d_memcpy='$d_memcpy'
12488 d_memmove='$d_memmove'
12489 d_memset='$d_memset'
12490 d_mkdir='$d_mkdir'
12491 d_mkfifo='$d_mkfifo'
12492 d_mktime='$d_mktime'
12493 d_msg='$d_msg'
12494 d_msg_ctrunc='$d_msg_ctrunc'
12495 d_msg_dontroute='$d_msg_dontroute'
12496 d_msg_oob='$d_msg_oob'
12497 d_msg_peek='$d_msg_peek'
12498 d_msg_proxy='$d_msg_proxy'
12499 d_msgctl='$d_msgctl'
12500 d_msgget='$d_msgget'
12501 d_msghdr_s='$d_msghdr_s'
12502 d_msgrcv='$d_msgrcv'
12503 d_msgsnd='$d_msgsnd'
12504 d_mymalloc='$d_mymalloc'
12505 d_nextkey64='$d_nextkey64'
12506 d_nice='$d_nice'
12507 d_off64t='$d_off64t'
12508 d_oldpthreads='$d_oldpthreads'
12509 d_oldsock='$d_oldsock'
12510 d_open3='$d_open3'
12511 d_open64='$d_open64'
12512 d_opendir64='$d_opendir64'
12513 d_pathconf='$d_pathconf'
12514 d_pause='$d_pause'
12515 d_phostname='$d_phostname'
12516 d_pipe='$d_pipe'
12517 d_poll='$d_poll'
12518 d_portable='$d_portable'
12519 d_pthread_create_joinable='$d_pthread_create_joinable'
12520 d_pthread_yield='$d_pthread_yield'
12521 d_pwage='$d_pwage'
12522 d_pwchange='$d_pwchange'
12523 d_pwclass='$d_pwclass'
12524 d_pwcomment='$d_pwcomment'
12525 d_pwexpire='$d_pwexpire'
12526 d_pwgecos='$d_pwgecos'
12527 d_pwpasswd='$d_pwpasswd'
12528 d_pwquota='$d_pwquota'
12529 d_readdir64='$d_readdir64'
12530 d_readdir='$d_readdir'
12531 d_readlink='$d_readlink'
12532 d_readv='$d_readv'
12533 d_recvmsg='$d_recvmsg'
12534 d_rename='$d_rename'
12535 d_rewinddir='$d_rewinddir'
12536 d_rmdir='$d_rmdir'
12537 d_safebcpy='$d_safebcpy'
12538 d_safemcpy='$d_safemcpy'
12539 d_sanemcmp='$d_sanemcmp'
12540 d_sched_yield='$d_sched_yield'
12541 d_scm_rights='$d_scm_rights'
12542 d_seekdir64='$d_seekdir64'
12543 d_seekdir='$d_seekdir'
12544 d_select='$d_select'
12545 d_sem='$d_sem'
12546 d_semctl='$d_semctl'
12547 d_semctl_semid_ds='$d_semctl_semid_ds'
12548 d_semctl_semun='$d_semctl_semun'
12549 d_semget='$d_semget'
12550 d_semop='$d_semop'
12551 d_sendmsg='$d_sendmsg'
12552 d_setegid='$d_setegid'
12553 d_seteuid='$d_seteuid'
12554 d_setgrent='$d_setgrent'
12555 d_setgrps='$d_setgrps'
12556 d_sethent='$d_sethent'
12557 d_setlinebuf='$d_setlinebuf'
12558 d_setlocale='$d_setlocale'
12559 d_setnent='$d_setnent'
12560 d_setpent='$d_setpent'
12561 d_setpgid='$d_setpgid'
12562 d_setpgrp2='$d_setpgrp2'
12563 d_setpgrp='$d_setpgrp'
12564 d_setprior='$d_setprior'
12565 d_setpwent='$d_setpwent'
12566 d_setregid='$d_setregid'
12567 d_setresgid='$d_setresgid'
12568 d_setresuid='$d_setresuid'
12569 d_setreuid='$d_setreuid'
12570 d_setrgid='$d_setrgid'
12571 d_setruid='$d_setruid'
12572 d_setsent='$d_setsent'
12573 d_setsid='$d_setsid'
12574 d_setvbuf='$d_setvbuf'
12575 d_sfio='$d_sfio'
12576 d_shm='$d_shm'
12577 d_shmat='$d_shmat'
12578 d_shmatprototype='$d_shmatprototype'
12579 d_shmctl='$d_shmctl'
12580 d_shmdt='$d_shmdt'
12581 d_shmget='$d_shmget'
12582 d_sigaction='$d_sigaction'
12583 d_sigsetjmp='$d_sigsetjmp'
12584 d_socket='$d_socket'
12585 d_sockpair='$d_sockpair'
12586 d_stat64='$d_stat64'
12587 d_statblks='$d_statblks'
12588 d_stdio_cnt_lval='$d_stdio_cnt_lval'
12589 d_stdio_ptr_lval='$d_stdio_ptr_lval'
12590 d_stdiobase='$d_stdiobase'
12591 d_stdstdio='$d_stdstdio'
12592 d_store64='$d_store64'
12593 d_strchr='$d_strchr'
12594 d_strcoll='$d_strcoll'
12595 d_strctcpy='$d_strctcpy'
12596 d_strerrm='$d_strerrm'
12597 d_strerror='$d_strerror'
12598 d_strtod='$d_strtod'
12599 d_strtol='$d_strtol'
12600 d_strtoul='$d_strtoul'
12601 d_strxfrm='$d_strxfrm'
12602 d_suidsafe='$d_suidsafe'
12603 d_symlink='$d_symlink'
12604 d_syscall='$d_syscall'
12605 d_sysconf='$d_sysconf'
12606 d_sysernlst='$d_sysernlst'
12607 d_syserrlst='$d_syserrlst'
12608 d_system='$d_system'
12609 d_tcgetpgrp='$d_tcgetpgrp'
12610 d_tcsetpgrp='$d_tcsetpgrp'
12611 d_telldir64='$d_telldir64'
12612 d_telldir='$d_telldir'
12613 d_time='$d_time'
12614 d_times='$d_times'
12615 d_tmpfile64='$d_tmpfile64'
12616 d_truncate64='$d_truncate64'
12617 d_truncate='$d_truncate'
12618 d_tzname='$d_tzname'
12619 d_umask='$d_umask'
12620 d_uname='$d_uname'
12621 d_union_semun='$d_union_semun'
12622 d_vfork='$d_vfork'
12623 d_void_closedir='$d_void_closedir'
12624 d_voidsig='$d_voidsig'
12625 d_voidtty='$d_voidtty'
12626 d_volatile='$d_volatile'
12627 d_vprintf='$d_vprintf'
12628 d_wait4='$d_wait4'
12629 d_waitpid='$d_waitpid'
12630 d_wcstombs='$d_wcstombs'
12631 d_wctomb='$d_wctomb'
12632 d_writev='$d_writev'
12633 d_xenix='$d_xenix'
12634 date='$date'
12635 db_hashtype='$db_hashtype'
12636 db_prefixtype='$db_prefixtype'
12637 defvoidused='$defvoidused'
12638 direntrytype='$direntrytype'
12639 dlext='$dlext'
12640 dlsrc='$dlsrc'
12641 doublesize='$doublesize'
12642 drand01='$drand01'
12643 dynamic_ext='$dynamic_ext'
12644 eagain='$eagain'
12645 ebcdic='$ebcdic'
12646 echo='$echo'
12647 egrep='$egrep'
12648 emacs='$emacs'
12649 eunicefix='$eunicefix'
12650 exe_ext='$exe_ext'
12651 expr='$expr'
12652 extensions='$extensions'
12653 find='$find'
12654 firstmakefile='$firstmakefile'
12655 flex='$flex'
12656 fpostype='$fpostype'
12657 freetype='$freetype'
12658 full_csh='$full_csh'
12659 full_sed='$full_sed'
12660 gccversion='$gccversion'
12661 gidtype='$gidtype'
12662 glibpth='$glibpth'
12663 grep='$grep'
12664 groupcat='$groupcat'
12665 groupstype='$groupstype'
12666 gzip='$gzip'
12667 h_fcntl='$h_fcntl'
12668 h_sysfile='$h_sysfile'
12669 hint='$hint'
12670 hostcat='$hostcat'
12671 huge='$huge'
12672 i_arpainet='$i_arpainet'
12673 i_bsdioctl='$i_bsdioctl'
12674 i_db='$i_db'
12675 i_dbm='$i_dbm'
12676 i_dirent='$i_dirent'
12677 i_dld='$i_dld'
12678 i_dlfcn='$i_dlfcn'
12679 i_fcntl='$i_fcntl'
12680 i_float='$i_float'
12681 i_gdbm='$i_gdbm'
12682 i_grp='$i_grp'
12683 i_inttypes='$i_inttypes'
12684 i_limits='$i_limits'
12685 i_locale='$i_locale'
12686 i_machcthr='$i_machcthr'
12687 i_malloc='$i_malloc'
12688 i_math='$i_math'
12689 i_memory='$i_memory'
12690 i_ndbm='$i_ndbm'
12691 i_netdb='$i_netdb'
12692 i_neterrno='$i_neterrno'
12693 i_niin='$i_niin'
12694 i_pwd='$i_pwd'
12695 i_rpcsvcdbm='$i_rpcsvcdbm'
12696 i_sfio='$i_sfio'
12697 i_sgtty='$i_sgtty'
12698 i_stdarg='$i_stdarg'
12699 i_stddef='$i_stddef'
12700 i_stdlib='$i_stdlib'
12701 i_string='$i_string'
12702 i_sysaccess='$i_sysaccess'
12703 i_sysdir='$i_sysdir'
12704 i_sysfile='$i_sysfile'
12705 i_sysfilio='$i_sysfilio'
12706 i_sysin='$i_sysin'
12707 i_sysioctl='$i_sysioctl'
12708 i_sysndir='$i_sysndir'
12709 i_sysparam='$i_sysparam'
12710 i_sysresrc='$i_sysresrc'
12711 i_syssecrt='$i_syssecrt'
12712 i_sysselct='$i_sysselct'
12713 i_syssockio='$i_syssockio'
12714 i_sysstat='$i_sysstat'
12715 i_systime='$i_systime'
12716 i_systimek='$i_systimek'
12717 i_systimes='$i_systimes'
12718 i_systypes='$i_systypes'
12719 i_sysuio='$i_sysuio'
12720 i_sysun='$i_sysun'
12721 i_syswait='$i_syswait'
12722 i_termio='$i_termio'
12723 i_termios='$i_termios'
12724 i_time='$i_time'
12725 i_unistd='$i_unistd'
12726 i_utime='$i_utime'
12727 i_values='$i_values'
12728 i_varargs='$i_varargs'
12729 i_varhdr='$i_varhdr'
12730 i_vfork='$i_vfork'
12731 ignore_versioned_solibs='$ignore_versioned_solibs'
12732 incpath='$incpath'
12733 inews='$inews'
12734 installarchlib='$installarchlib'
12735 installbin='$installbin'
12736 installman1dir='$installman1dir'
12737 installman3dir='$installman3dir'
12738 installprivlib='$installprivlib'
12739 installscript='$installscript'
12740 installsitearch='$installsitearch'
12741 installsitelib='$installsitelib'
12742 intsize='$intsize'
12743 known_extensions='$known_extensions'
12744 ksh='$ksh'
12745 large='$large'
12746 ld='$ld'
12747 lddlflags='$lddlflags'
12748 ldflags='$ldflags'
12749 less='$less'
12750 lib_ext='$lib_ext'
12751 libc='$libc'
12752 libperl='$libperl'
12753 libpth='$libpth'
12754 libs='$libs'
12755 libswanted='$libswanted'
12756 line='$line'
12757 lint='$lint'
12758 lkflags='$lkflags'
12759 ln='$ln'
12760 lns='$lns'
12761 locincpth='$locincpth'
12762 loclibpth='$loclibpth'
12763 longdblsize='$longdblsize'
12764 longlongsize='$longlongsize'
12765 longsize='$longsize'
12766 lp='$lp'
12767 lpr='$lpr'
12768 ls='$ls'
12769 lseeksize='$lseeksize'
12770 lseektype='$lseektype'
12771 mail='$mail'
12772 mailx='$mailx'
12773 make='$make'
12774 make_set_make='$make_set_make'
12775 mallocobj='$mallocobj'
12776 mallocsrc='$mallocsrc'
12777 malloctype='$malloctype'
12778 man1dir='$man1dir'
12779 man1direxp='$man1direxp'
12780 man1ext='$man1ext'
12781 man3dir='$man3dir'
12782 man3direxp='$man3direxp'
12783 man3ext='$man3ext'
12784 medium='$medium'
12785 mips='$mips'
12786 mips_type='$mips_type'
12787 mkdir='$mkdir'
12788 models='$models'
12789 modetype='$modetype'
12790 more='$more'
12791 mv='$mv'
12792 myarchname='$myarchname'
12793 mydomain='$mydomain'
12794 myhostname='$myhostname'
12795 myuname='$myuname'
12796 n='$n'
12797 netdb_hlen_type='$netdb_hlen_type'
12798 netdb_host_type='$netdb_host_type'
12799 netdb_name_type='$netdb_name_type'
12800 netdb_net_type='$netdb_net_type'
12801 nm='$nm'
12802 nm_opt='$nm_opt'
12803 nm_so_opt='$nm_so_opt'
12804 nonxs_ext='$nonxs_ext'
12805 nroff='$nroff'
12806 o_nonblock='$o_nonblock'
12807 obj_ext='$obj_ext'
12808 optimize='$optimize'
12809 orderlib='$orderlib'
12810 osname='$osname'
12811 osvers='$osvers'
12812 package='$package'
12813 pager='$pager'
12814 passcat='$passcat'
12815 patchlevel='$patchlevel'
12816 path_sep='$path_sep'
12817 perl='$perl'
12818 perladmin='$perladmin'
12819 perlpath='$perlpath'
12820 pg='$pg'
12821 phostname='$phostname'
12822 pidtype='$pidtype'
12823 plibpth='$plibpth'
12824 pmake='$pmake'
12825 pr='$pr'
12826 prefix='$prefix'
12827 prefixexp='$prefixexp'
12828 privlib='$privlib'
12829 privlibexp='$privlibexp'
12830 prototype='$prototype'
12831 pthread_create_joinable='$pthread_create_joinable'
12832 ptrsize='$ptrsize'
12833 randbits='$randbits'
12834 randfunc='$randfunc'
12835 randseedtype='$randseedtype'
12836 ranlib='$ranlib'
12837 rd_nodata='$rd_nodata'
12838 rm='$rm'
12839 rmail='$rmail'
12840 runnm='$runnm'
12841 sched_yield='$sched_yield'
12842 scriptdir='$scriptdir'
12843 scriptdirexp='$scriptdirexp'
12844 sed='$sed'
12845 seedfunc='$seedfunc'
12846 selectminbits='$selectminbits'
12847 selecttype='$selecttype'
12848 sendmail='$sendmail'
12849 sh='$sh'
12850 shar='$shar'
12851 sharpbang='$sharpbang'
12852 shmattype='$shmattype'
12853 shortsize='$shortsize'
12854 shrpenv='$shrpenv'
12855 shsharp='$shsharp'
12856 sig_name='$sig_name'
12857 sig_name_init='$sig_name_init'
12858 sig_num='$sig_num'
12859 sig_num_init='$sig_num_init'
12860 signal_t='$signal_t'
12861 sitearch='$sitearch'
12862 sitearchexp='$sitearchexp'
12863 sitelib='$sitelib'
12864 sitelibexp='$sitelibexp'
12865 sizetype='$sizetype'
12866 sleep='$sleep'
12867 smail='$smail'
12868 small='$small'
12869 so='$so'
12870 sockethdr='$sockethdr'
12871 socketlib='$socketlib'
12872 sort='$sort'
12873 spackage='$spackage'
12874 spitshell='$spitshell'
12875 split='$split'
12876 src='$src'
12877 ssizetype='$ssizetype'
12878 startperl='$startperl'
12879 startsh='$startsh'
12880 static_ext='$static_ext'
12881 stdchar='$stdchar'
12882 stdio_base='$stdio_base'
12883 stdio_bufsiz='$stdio_bufsiz'
12884 stdio_cnt='$stdio_cnt'
12885 stdio_filbuf='$stdio_filbuf'
12886 stdio_ptr='$stdio_ptr'
12887 strings='$strings'
12888 submit='$submit'
12889 subversion='$subversion'
12890 sysman='$sysman'
12891 tail='$tail'
12892 tar='$tar'
12893 tbl='$tbl'
12894 tee='$tee'
12895 test='$test'
12896 timeincl='$timeincl'
12897 timetype='$timetype'
12898 touch='$touch'
12899 tr='$tr'
12900 trnl='$trnl'
12901 troff='$troff'
12902 uidtype='$uidtype'
12903 uname='$uname'
12904 uniq='$uniq'
12905 use64bits='$use64bits'
12906 usedl='$usedl'
12907 usemultiplicity='$usemultiplicity'
12908 usemymalloc='$usemymalloc'
12909 usenm='$usenm'
12910 useopcode='$useopcode'
12911 useperlio='$useperlio'
12912 useposix='$useposix'
12913 usesfio='$usesfio'
12914 useshrplib='$useshrplib'
12915 usethreads='$usethreads'
12916 usevfork='$usevfork'
12917 usrinc='$usrinc'
12918 uuname='$uuname'
12919 version='$version'
12920 vi='$vi'
12921 voidflags='$voidflags'
12922 xlibpth='$xlibpth'
12923 zcat='$zcat'
12924 zip='$zip'
12925 EOT
12926
12927 : Add in command line options if available
12928 $test -f UU/cmdline.opt && $cat UU/cmdline.opt >> config.sh
12929
12930 : add special variables
12931 $test -f $src/patchlevel.h && \
12932 awk '/^#define/ {printf "%s=%s\n",$2,$3}' $src/patchlevel.h >>config.sh
12933 echo "CONFIG=true" >>config.sh
12934
12935 : propagate old symbols
12936 if $test -f UU/config.sh; then
12937         <UU/config.sh sort | uniq >UU/oldconfig.sh
12938         sed -n 's/^\([a-zA-Z_0-9]*\)=.*/\1/p' config.sh config.sh UU/oldconfig.sh |\
12939         sort | uniq -u >UU/oldsyms
12940         set X `cat UU/oldsyms`
12941         shift
12942         case $# in
12943         0) ;;
12944         *)
12945                 cat <<EOM
12946 Hmm...You had some extra variables I don't know about...I'll try to keep 'em...
12947 EOM
12948                 echo "# Variables propagated from previous config.sh file." >>config.sh
12949                 for sym in `cat UU/oldsyms`; do
12950                         echo "    Propagating $hint variable "'$'"$sym..."
12951                         eval 'tmp="$'"${sym}"'"'
12952                         echo "$tmp" | \
12953                                 sed -e "s/'/'\"'\"'/g" -e "s/^/$sym='/" -e "s/$/'/" >>config.sh
12954                 done
12955                 ;;
12956         esac
12957 fi
12958
12959 : Finish up by extracting the .SH files
12960 case "$alldone" in
12961 exit)
12962         $rm -rf UU
12963         echo "Done."
12964         exit 0
12965         ;;
12966 cont)
12967         ;;
12968 '')
12969         dflt=''
12970         nostick=true
12971         $cat <<EOM
12972
12973 If you'd like to make any changes to the config.sh file before I begin
12974 to configure things, do it as a shell escape now (e.g. !vi config.sh).
12975
12976 EOM
12977         rp="Press return or use a shell escape to edit config.sh:"
12978         . UU/myread
12979         nostick=''
12980         case "$ans" in
12981         '') ;;
12982         *) : in case they cannot read
12983                 sh 1>&4 -c "$ans";;
12984         esac
12985         ;;
12986 esac
12987
12988 : if this fails, just run all the .SH files by hand
12989 . ./config.sh
12990
12991 echo " "
12992 exec 1>&4
12993 . ./UU/extract
12994
12995 if $contains '^depend:' [Mm]akefile >/dev/null 2>&1; then
12996         dflt=y
12997         case "$silent" in
12998         true) ;;
12999         *)
13000                 $cat <<EOM
13001
13002 Now you need to generate make dependencies by running "$make depend".
13003 You might prefer to run it in background: "$make depend > makedepend.out &"
13004 It can take a while, so you might not want to run it right now.
13005
13006 EOM
13007                 ;;
13008         esac
13009         rp="Run $make depend now?"
13010         . UU/myread
13011         case "$ans" in
13012         y*)
13013                 $make depend && echo "Now you must run a $make."
13014                 ;;
13015         *)
13016                 echo "You must run '$make depend' then '$make'."
13017                 ;;
13018         esac
13019 elif test -f [Mm]akefile; then
13020         echo " "
13021         echo "Now you must run a $make."
13022 else
13023         echo "Done."
13024 fi
13025
13026 if $test -f Policy.sh; then
13027     $cat <<EOM
13028
13029 If you compile $package on a different machine or from a different object
13030 directory, copy the Policy.sh file from this object directory to the
13031 new one before you run Configure -- this will help you with most of
13032 the policy defaults.
13033
13034 EOM
13035 fi
13036 if $test -f config.msg; then
13037     echo "Hmm.  I also noted the following information while running:"
13038     echo " "
13039     $cat config.msg >&4
13040     $rm -f config.msg
13041 fi
13042 $rm -f kit*isdone ark*isdone
13043 $rm -rf UU
13044
13045 : End of Configure
13046