This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Somewhat less shaky relocatable @INC support. You can install things
[perl5.git] / Configure
... / ...
CommitLineData
1#! /bin/sh
2#
3# If these # comments don't work, trim them. Don't worry about any other
4# shell scripts, Configure will trim # comments from them for you.
5#
6# (If you are trying to port this package to a machine without sh,
7# I would suggest you have a look at the prototypical config_h.SH file
8# and edit it to reflect your system. Some packages may include samples
9# of config.h for certain machines, so you might look for one of those.)
10#
11# Yes, you may rip this off to use in other distribution packages. This
12# script belongs to the public domain and cannot be copyrighted.
13#
14# (Note: this Configure script was generated automatically. Rather than
15# working with this copy of Configure, you may wish to get metaconfig.
16# The dist-3.0 package (which contains metaconfig) was posted in
17# comp.sources.misc and is available on CPAN under authors/id/RAM so
18# you may fetch it yourself from your nearest archive site.)
19#
20#
21# Though this script was generated by metaconfig, it is OK to send
22# patches against it. It's up to the Configure pumpkin to backport
23# the patch to the metaunits if it is accepted.
24# See Porting/pumpkin.pod for more information on metaconfig.
25#
26
27# $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $
28#
29# Generated on Wed Mar 8 09:08:03 CET 2006 [metaconfig 3.0 PL70]
30# (with additional metaconfig patches by perlbug@perl.org)
31
32cat >c1$$ <<EOF
33ARGGGHHHH!!!!!
34
35SCO csh still thinks true is false. Write to SCO today and tell them that next
36year Configure ought to "rm /bin/csh" unless they fix their blasted shell. :-)
37
38(Actually, Configure ought to just patch csh in place. Hmm. Hmmmmm. All
39we'd have to do is go in and swap the && and || tokens, wherever they are.)
40
41[End of diatribe. We now return you to your regularly scheduled programming...]
42EOF
43cat >c2$$ <<EOF
44
45OOPS! You naughty creature! You didn't run Configure with sh!
46I will attempt to remedy the situation by running sh for you...
47EOF
48
49true || cat c1$$ c2$$
50true || exec sh $0 $argv:q
51
52(exit $?0) || cat c2$$
53(exit $?0) || exec sh $0 $argv:q
54rm -f c1$$ c2$$
55
56if test -f /dev/cputype -a -f /dev/drivers -a -f /dev/osversion; then
57 cat >&4 <<EOF
58***
59*** I'm sorry but this system looks like Plan 9 and Plan 9 doesn't do
60*** Configure that well. (Plan 9 is close to UNIX but not close enough.)
61*** Please read the README.plan9 for further instructions.
62*** Cannot continue, aborting.
63***
64EOF
65 exit 1
66fi
67
68: compute my invocation name
69me=$0
70case "$0" in
71*/*)
72 me=`echo $0 | sed -e 's!.*/\(.*\)!\1!' 2>/dev/null`
73 test "$me" || me=$0
74 ;;
75esac
76
77: Proper separator for the PATH environment variable
78p_=:
79: On OS/2 this directory should exist if this is not floppy only system :-]
80if test -d c:/. || ( uname -a | grep -i 'os\(/\|\)2' ) 2>&1 >/dev/null ; then
81 if test -n "$OS2_SHELL"; then
82 p_=\;
83 PATH=`cmd /c "echo %PATH%" | tr '\\\\' / `
84 OS2_SHELL=`cmd /c "echo %OS2_SHELL%" | tr '\\\\' / | tr '[A-Z]' '[a-z]'`
85 is_os2=yes
86 elif test -n "$DJGPP"; then
87 case "X${MACHTYPE:-nonesuchmach}" in
88 *cygwin) ;;
89 *) p_=\; ;;
90 esac
91 fi
92fi
93
94: Proper PATH setting
95paths='/bin /usr/bin /usr/local/bin /usr/ucb /usr/local /usr/lbin'
96paths="$paths /opt/bin /opt/local/bin /opt/local /opt/lbin"
97paths="$paths /usr/5bin /etc /usr/gnu/bin /usr/new /usr/new/bin /usr/nbin"
98paths="$paths /opt/gnu/bin /opt/new /opt/new/bin /opt/nbin"
99paths="$paths /sys5.3/bin /sys5.3/usr/bin /bsd4.3/bin /bsd4.3/usr/ucb"
100paths="$paths /bsd4.3/usr/bin /usr/bsd /bsd43/bin /opt/ansic/bin /usr/ccs/bin"
101paths="$paths /etc /usr/lib /usr/ucblib /lib /usr/ccs/lib"
102paths="$paths /sbin /usr/sbin /usr/libexec"
103paths="$paths /system/gnu_library/bin"
104
105for p in $paths
106do
107 case "$p_$PATH$p_" in
108 *$p_$p$p_*) ;;
109 *) test -d $p && PATH=$PATH$p_$p ;;
110 esac
111done
112
113PATH=.$p_$PATH
114export PATH
115
116: shall we be using ksh?
117inksh=''
118needksh=''
119avoidksh=''
120newsh=/bin/ksh
121changesh=''
122if (PATH=.; alias -x) >/dev/null 2>&1; then
123 inksh=true
124fi
125if test -f /hp-ux -a -f /bin/ksh; then
126 needksh='to avoid sh bug in "here document" expansion'
127fi
128if test -d /usr/lpp -a -f /usr/bin/bsh -a -f /usr/bin/uname; then
129 if test X`/usr/bin/uname -v` = X4; then
130 avoidksh="to avoid AIX 4's /bin/sh"
131 newsh=/usr/bin/bsh
132 fi
133fi
134if test -f /osf_boot -a -f /usr/sbin/setld; then
135 if test X`/usr/bin/uname -s` = XOSF1; then
136 avoidksh="to avoid Digital UNIX' ksh"
137 newsh=/bin/sh
138 unset BIN_SH # if this is 'xpg4' sh will start up ksh
139 fi
140fi
141case "$inksh/$needksh" in
142/[a-z]*)
143 ENV=''
144 changesh=true
145 reason="$needksh"
146 ;;
147esac
148case "$inksh/$avoidksh" in
149true/[a-z]*)
150 changesh=true
151 reason="$avoidksh"
152 ;;
153esac
154case "$inksh/$needksh-$avoidksh-" in
155true/--)
156 cat <<EOM
157(I see you are using the Korn shell. Some ksh's blow up on $me,
158mainly on older exotic systems. If yours does, try the Bourne shell instead.)
159EOM
160 ;;
161esac
162case "$changesh" in
163true)
164 export newsh
165 echo "(Feeding myself to $newsh $reason.)"
166 case "$0" in
167 Configure|*/Configure) exec $newsh $0 "$@";;
168 *) exec $newsh Configure "$@";;
169 esac
170 ;;
171esac
172
173: if needed set CDPATH to a harmless value that is not chatty
174: avoid bash 2.02 problems with empty CDPATH.
175case "$CDPATH" in
176'') ;;
177*) case "$SHELL" in
178 *bash*) CDPATH='.' ;;
179 *) CDPATH='' ;;
180 esac
181 ;;
182esac
183: Configure runs within the UU subdirectory
184test -d UU || mkdir UU
185cd UU && rm -f ./*
186
187ccname=''
188ccversion=''
189ccsymbols=''
190cppccsymbols=''
191cppsymbols=''
192from=''
193run=''
194targetarch=''
195to=''
196usecrosscompile=''
197mistrustnm=''
198perllibs=''
199dynamic_ext=''
200extensions=''
201known_extensions=''
202nonxs_ext=''
203static_ext=''
204useopcode=''
205useposix=''
206extras=''
207d_bsd=''
208d_eunice=''
209d_xenix=''
210eunicefix=''
211Mcc=''
212ar=''
213awk=''
214bash=''
215bison=''
216byacc=''
217cat=''
218chgrp=''
219chmod=''
220chown=''
221comm=''
222compress=''
223cp=''
224cpio=''
225cpp=''
226csh=''
227date=''
228echo=''
229egrep=''
230emacs=''
231expr=''
232find=''
233flex=''
234gmake=''
235grep=''
236gzip=''
237inews=''
238ksh=''
239less=''
240line=''
241lint=''
242ln=''
243lp=''
244lpr=''
245ls=''
246mail=''
247mailx=''
248make=''
249mkdir=''
250more=''
251mv=''
252nm=''
253nroff=''
254perl=''
255pg=''
256pmake=''
257pr=''
258rm=''
259rmail=''
260sed=''
261sendmail=''
262shar=''
263sleep=''
264smail=''
265sort=''
266submit=''
267tail=''
268tar=''
269tbl=''
270tee=''
271test=''
272touch=''
273tr=''
274troff=''
275uname=''
276uniq=''
277uuname=''
278vi=''
279zcat=''
280zip=''
281full_ar=''
282full_sed=''
283libswanted=''
284hint=''
285myuname=''
286osname=''
287osvers=''
288Author=''
289Date=''
290Header=''
291Id=''
292Locker=''
293Log=''
294RCSfile=''
295Revision=''
296Source=''
297State=''
298_a=''
299_exe=''
300_o=''
301archobjs=''
302exe_ext=''
303firstmakefile=''
304lib_ext=''
305obj_ext=''
306path_sep=''
307afs=''
308afsroot=''
309alignbytes=''
310ansi2knr=''
311archlib=''
312archlibexp=''
313d_archlib=''
314installarchlib=''
315archname=''
316myarchname=''
317d_atolf=''
318d_atoll=''
319baserev=''
320bin=''
321binexp=''
322installbin=''
323byteorder=''
324cc=''
325ccflags=''
326cppflags=''
327ldflags=''
328lkflags=''
329locincpth=''
330optimize=''
331cf_email=''
332cf_by=''
333cf_time=''
334charsize=''
335contains=''
336cpp_stuff=''
337cpplast=''
338cppminus=''
339cpprun=''
340cppstdin=''
341d__fwalk=''
342d_access=''
343d_accessx=''
344d_aintl=''
345d_alarm=''
346asctime_r_proto=''
347d_asctime_r=''
348d_attribute_format=''
349d_attribute_malloc=''
350d_attribute_nonnull=''
351d_attribute_noreturn=''
352d_attribute_pure=''
353d_attribute_unused=''
354d_attribute_warn_unused_result=''
355d_bcmp=''
356d_bcopy=''
357d_builtin_choose_expr=''
358d_builtin_expect=''
359d_bzero=''
360d_casti32=''
361castflags=''
362d_castneg=''
363d_chown=''
364d_chroot=''
365d_chsize=''
366d_class=''
367d_clearenv=''
368d_closedir=''
369d_void_closedir=''
370d_cmsghdr_s=''
371d_const=''
372d_copysignl=''
373cryptlib=''
374d_crypt=''
375crypt_r_proto=''
376d_crypt_r=''
377d_csh=''
378full_csh=''
379ctermid_r_proto=''
380d_ctermid_r=''
381ctime_r_proto=''
382d_ctime_r=''
383d_cuserid=''
384d_dbl_dig=''
385d_dbminitproto=''
386d_difftime=''
387d_dirfd=''
388d_dlerror=''
389d_dlopen=''
390d_dlsymun=''
391d_dosuid=''
392d_suidsafe=''
393d_drand48_r=''
394drand48_r_proto=''
395d_drand48proto=''
396d_dup2=''
397d_eaccess=''
398d_endgrent=''
399d_endgrent_r=''
400endgrent_r_proto=''
401d_endhent=''
402d_endhostent_r=''
403endhostent_r_proto=''
404d_endnent=''
405d_endnetent_r=''
406endnetent_r_proto=''
407d_endpent=''
408d_endprotoent_r=''
409endprotoent_r_proto=''
410d_endpwent=''
411d_endpwent_r=''
412endpwent_r_proto=''
413d_endsent=''
414d_endservent_r=''
415endservent_r_proto=''
416d_faststdio=''
417d_fchdir=''
418d_fchmod=''
419d_fchown=''
420d_fcntl=''
421d_fcntl_can_lock=''
422d_fd_macros=''
423d_fd_set=''
424d_fds_bits=''
425d_fgetpos=''
426d_finite=''
427d_finitel=''
428d_flexfnam=''
429d_flock=''
430d_flockproto=''
431d_fork=''
432d_fp_class=''
433d_fpclass=''
434d_fpclassify=''
435d_fpclassl=''
436d_fpos64_t=''
437d_frexpl=''
438d_fs_data_s=''
439d_fseeko=''
440d_fsetpos=''
441d_fstatfs=''
442d_fsync=''
443d_ftello=''
444d_ftime=''
445d_gettimeod=''
446d_futimes=''
447d_Gconvert=''
448d_getcwd=''
449d_getespwnam=''
450d_getfsstat=''
451d_getgrent=''
452d_getgrent_r=''
453getgrent_r_proto=''
454d_getgrgid_r=''
455getgrgid_r_proto=''
456d_getgrnam_r=''
457getgrnam_r_proto=''
458d_getgrps=''
459d_gethbyaddr=''
460d_gethbyname=''
461d_gethent=''
462aphostname=''
463d_gethname=''
464d_phostname=''
465d_uname=''
466d_gethostbyaddr_r=''
467gethostbyaddr_r_proto=''
468d_gethostbyname_r=''
469gethostbyname_r_proto=''
470d_gethostent_r=''
471gethostent_r_proto=''
472d_gethostprotos=''
473d_getitimer=''
474d_getlogin=''
475d_getlogin_r=''
476getlogin_r_proto=''
477d_getmnt=''
478d_getmntent=''
479d_getnbyaddr=''
480d_getnbyname=''
481d_getnent=''
482d_getnetbyaddr_r=''
483getnetbyaddr_r_proto=''
484d_getnetbyname_r=''
485getnetbyname_r_proto=''
486d_getnetent_r=''
487getnetent_r_proto=''
488d_getnetprotos=''
489d_getpagsz=''
490d_getpent=''
491d_getpgid=''
492d_getpgrp2=''
493d_bsdgetpgrp=''
494d_getpgrp=''
495d_getppid=''
496d_getprior=''
497d_getpbyname=''
498d_getpbynumber=''
499d_getprotobyname_r=''
500getprotobyname_r_proto=''
501d_getprotobynumber_r=''
502getprotobynumber_r_proto=''
503d_getprotoent_r=''
504getprotoent_r_proto=''
505d_getprotoprotos=''
506d_getprpwnam=''
507d_getpwent=''
508d_getpwent_r=''
509getpwent_r_proto=''
510d_getpwnam_r=''
511getpwnam_r_proto=''
512d_getpwuid_r=''
513getpwuid_r_proto=''
514d_getsent=''
515d_getservbyname_r=''
516getservbyname_r_proto=''
517d_getservbyport_r=''
518getservbyport_r_proto=''
519d_getservent_r=''
520getservent_r_proto=''
521d_getservprotos=''
522d_getspnam=''
523d_getspnam_r=''
524getspnam_r_proto=''
525d_getsbyname=''
526d_getsbyport=''
527d_gmtime_r=''
528gmtime_r_proto=''
529d_gnulibc=''
530gnulibc_version=''
531d_hasmntopt=''
532d_htonl=''
533d_ilogbl=''
534d_inetaton=''
535d_int64_t=''
536d_isascii=''
537d_isfinite=''
538d_isinf=''
539d_isnan=''
540d_isnanl=''
541d_killpg=''
542d_lchown=''
543d_ldbl_dig=''
544d_libm_lib_version=''
545d_link=''
546d_localtime_r=''
547localtime_r_proto=''
548d_locconv=''
549d_lockf=''
550d_longdbl=''
551longdblsize=''
552d_longlong=''
553longlongsize=''
554d_lseekproto=''
555d_lstat=''
556d_madvise=''
557d_malloc_good_size=''
558d_malloc_size=''
559d_mblen=''
560d_mbstowcs=''
561d_mbtowc=''
562d_memchr=''
563d_memcmp=''
564d_memcpy=''
565d_memmove=''
566d_memset=''
567d_mkdir=''
568d_mkdtemp=''
569d_mkfifo=''
570d_mkstemp=''
571d_mkstemps=''
572d_mktime=''
573d_mmap=''
574mmaptype=''
575d_modfl=''
576d_modfl_pow32_bug=''
577d_modflproto=''
578d_mprotect=''
579d_msg=''
580d_msgctl=''
581d_msgget=''
582d_msghdr_s=''
583d_msgrcv=''
584d_msgsnd=''
585d_msync=''
586d_munmap=''
587d_nice=''
588d_nl_langinfo=''
589d_off64_t=''
590d_open3=''
591d_fpathconf=''
592d_pathconf=''
593d_pause=''
594d_pipe=''
595d_poll=''
596d_portable=''
597d_procselfexe=''
598procselfexe=''
599d_old_pthread_create_joinable=''
600old_pthread_create_joinable=''
601d_pthread_atfork=''
602d_pthread_attr_setscope=''
603d_pthread_yield=''
604d_sched_yield=''
605sched_yield=''
606d_qgcvt=''
607d_random_r=''
608random_r_proto=''
609d_readdir64_r=''
610readdir64_r_proto=''
611d_readdir=''
612d_rewinddir=''
613d_seekdir=''
614d_telldir=''
615d_readdir_r=''
616readdir_r_proto=''
617d_readlink=''
618d_readv=''
619d_recvmsg=''
620d_rename=''
621d_rmdir=''
622d_safebcpy=''
623d_safemcpy=''
624d_sanemcmp=''
625d_sbrkproto=''
626d_scalbnl=''
627d_select=''
628d_sem=''
629d_semctl=''
630d_semget=''
631d_semop=''
632d_sendmsg=''
633d_setegid=''
634d_seteuid=''
635d_setgrent=''
636d_setgrent_r=''
637setgrent_r_proto=''
638d_setgrps=''
639d_sethent=''
640d_sethostent_r=''
641sethostent_r_proto=''
642d_setitimer=''
643d_setlinebuf=''
644d_setlocale=''
645d_setlocale_r=''
646setlocale_r_proto=''
647d_setnent=''
648d_setnetent_r=''
649setnetent_r_proto=''
650d_setpent=''
651d_setpgid=''
652d_setpgrp2=''
653d_bsdsetpgrp=''
654d_setpgrp=''
655d_setprior=''
656d_setproctitle=''
657d_setprotoent_r=''
658setprotoent_r_proto=''
659d_setpwent=''
660d_setpwent_r=''
661setpwent_r_proto=''
662d_setregid=''
663d_setresgid=''
664d_setresuid=''
665d_setreuid=''
666d_setrgid=''
667d_setruid=''
668d_setsent=''
669d_setservent_r=''
670setservent_r_proto=''
671d_setsid=''
672d_setvbuf=''
673d_sfio=''
674usesfio=''
675d_shm=''
676d_shmat=''
677d_shmatprototype=''
678shmattype=''
679d_shmctl=''
680d_shmdt=''
681d_shmget=''
682d_sigaction=''
683d_sigprocmask=''
684d_sigsetjmp=''
685usesitecustomize=''
686d_snprintf=''
687d_vsnprintf=''
688d_sockatmark=''
689d_sockatmarkproto=''
690d_msg_ctrunc=''
691d_msg_dontroute=''
692d_msg_oob=''
693d_msg_peek=''
694d_msg_proxy=''
695d_oldsock=''
696d_scm_rights=''
697d_socket=''
698d_sockpair=''
699sockethdr=''
700socketlib=''
701d_socklen_t=''
702d_socks5_init=''
703d_sprintf_returns_strlen=''
704d_sqrtl=''
705d_srand48_r=''
706srand48_r_proto=''
707d_srandom_r=''
708srandom_r_proto=''
709d_sresgproto=''
710d_sresuproto=''
711d_statblks=''
712d_statfs_f_flags=''
713d_statfs_s=''
714d_fstatvfs=''
715d_statvfs=''
716d_stdio_cnt_lval=''
717d_stdio_ptr_lval=''
718d_stdio_ptr_lval_nochange_cnt=''
719d_stdio_ptr_lval_sets_cnt=''
720d_stdiobase=''
721d_stdstdio=''
722stdio_base=''
723stdio_bufsiz=''
724stdio_cnt=''
725stdio_filbuf=''
726stdio_ptr=''
727d_index=''
728d_strchr=''
729d_strcoll=''
730d_strctcpy=''
731d_strerrm=''
732d_strerror=''
733d_sysernlst=''
734d_syserrlst=''
735d_strerror_r=''
736strerror_r_proto=''
737d_strftime=''
738d_strlcat=''
739d_strlcpy=''
740d_strtod=''
741d_strtol=''
742d_strtold=''
743d_strtoll=''
744d_strtoq=''
745d_strtoul=''
746d_strtoull=''
747d_strtouq=''
748d_strxfrm=''
749d_symlink=''
750d_syscall=''
751d_syscallproto=''
752d_sysconf=''
753d_system=''
754d_tcgetpgrp=''
755d_tcsetpgrp=''
756d_telldirproto=''
757d_time=''
758timetype=''
759clocktype=''
760d_times=''
761d_tmpnam_r=''
762tmpnam_r_proto=''
763d_truncate=''
764d_ttyname_r=''
765ttyname_r_proto=''
766d_tzname=''
767d_u32align=''
768d_ualarm=''
769d_umask=''
770d_semctl_semid_ds=''
771d_semctl_semun=''
772d_union_semun=''
773d_unordered=''
774d_unsetenv=''
775d_usleep=''
776d_usleepproto=''
777d_ustat=''
778d_vfork=''
779usevfork=''
780d_voidsig=''
781signal_t=''
782d_volatile=''
783d_charvspr=''
784d_vprintf=''
785d_wait4=''
786d_waitpid=''
787d_wcstombs=''
788d_wctomb=''
789d_writev=''
790dlext=''
791cccdlflags=''
792ccdlflags=''
793dlsrc=''
794ld=''
795lddlflags=''
796usedl=''
797doublesize=''
798ebcdic=''
799fflushNULL=''
800fflushall=''
801fpossize=''
802fpostype=''
803gccansipedantic=''
804gccosandvers=''
805gccversion=''
806gidformat=''
807gidsign=''
808gidsize=''
809gidtype=''
810groupstype=''
811h_fcntl=''
812h_sysfile=''
813html1dir=''
814html1direxp=''
815installhtml1dir=''
816html3dir=''
817html3direxp=''
818installhtml3dir=''
819i_arpainet=''
820i_crypt=''
821db_hashtype=''
822db_prefixtype=''
823db_version_major=''
824db_version_minor=''
825db_version_patch=''
826i_db=''
827i_dbm=''
828i_rpcsvcdbm=''
829d_dirnamlen=''
830direntrytype=''
831i_dirent=''
832i_dld=''
833i_dlfcn=''
834i_fcntl=''
835i_float=''
836i_fp=''
837i_fp_class=''
838i_gdbm=''
839d_grpasswd=''
840i_grp=''
841i_ieeefp=''
842i_inttypes=''
843i_langinfo=''
844i_libutil=''
845i_limits=''
846i_locale=''
847i_machcthr=''
848i_malloc=''
849i_math=''
850i_memory=''
851i_mntent=''
852i_ndbm=''
853i_netdb=''
854i_neterrno=''
855i_netinettcp=''
856i_niin=''
857i_sysin=''
858i_poll=''
859i_prot=''
860i_pthread=''
861d_pwage=''
862d_pwchange=''
863d_pwclass=''
864d_pwcomment=''
865d_pwexpire=''
866d_pwgecos=''
867d_pwpasswd=''
868d_pwquota=''
869i_pwd=''
870i_sfio=''
871i_shadow=''
872i_socks=''
873i_stddef=''
874i_stdlib=''
875i_string=''
876strings=''
877i_sunmath=''
878i_sysaccess=''
879i_sysdir=''
880i_sysfile=''
881d_voidtty=''
882i_bsdioctl=''
883i_sysfilio=''
884i_sysioctl=''
885i_syssockio=''
886i_syslog=''
887i_sysmman=''
888i_sysmode=''
889i_sysmount=''
890i_sysndir=''
891i_sysparam=''
892i_sysresrc=''
893i_syssecrt=''
894i_sysselct=''
895i_sysstat=''
896i_sysstatfs=''
897i_sysstatvfs=''
898i_systimes=''
899i_systypes=''
900i_sysuio=''
901i_sysun=''
902i_sysutsname=''
903i_sysvfs=''
904i_syswait=''
905i_sgtty=''
906i_termio=''
907i_termios=''
908d_tm_tm_gmtoff=''
909d_tm_tm_zone=''
910i_systime=''
911i_systimek=''
912i_time=''
913timeincl=''
914i_unistd=''
915i_ustat=''
916i_utime=''
917i_values=''
918i_stdarg=''
919i_varargs=''
920i_varhdr=''
921i_vfork=''
922inc_version_list=''
923inc_version_list_init=''
924installprefix=''
925installprefixexp=''
926installstyle=''
927installusrbinperl=''
928intsize=''
929longsize=''
930shortsize=''
931issymlink=''
932libc=''
933ldlibpthname=''
934libperl=''
935shrpenv=''
936useshrplib=''
937glibpth=''
938libpth=''
939loclibpth=''
940plibpth=''
941xlibpth=''
942ignore_versioned_solibs=''
943libs=''
944libsdirs=''
945libsfiles=''
946libsfound=''
947libspath=''
948lns=''
949d_PRIEUldbl=''
950d_PRIFUldbl=''
951d_PRIGUldbl=''
952d_PRIeldbl=''
953d_PRIfldbl=''
954d_PRIgldbl=''
955d_SCNfldbl=''
956sPRIEUldbl=''
957sPRIFUldbl=''
958sPRIGUldbl=''
959sPRIeldbl=''
960sPRIfldbl=''
961sPRIgldbl=''
962sSCNfldbl=''
963lseeksize=''
964lseektype=''
965mad=''
966make_set_make=''
967d_mymalloc=''
968freetype=''
969madlyh=''
970madlyobj=''
971madlysrc=''
972mallocobj=''
973mallocsrc=''
974malloctype=''
975usemallocwrap=''
976usemymalloc=''
977installman1dir=''
978man1dir=''
979man1direxp=''
980man1ext=''
981installman3dir=''
982man3dir=''
983man3direxp=''
984man3ext=''
985modetype=''
986multiarch=''
987mydomain=''
988myhostname=''
989phostname=''
990c=''
991n=''
992d_eofnblk=''
993eagain=''
994o_nonblock=''
995rd_nodata=''
996need_va_copy=''
997netdb_hlen_type=''
998netdb_host_type=''
999netdb_name_type=''
1000netdb_net_type=''
1001groupcat=''
1002hostcat=''
1003passcat=''
1004orderlib=''
1005ranlib=''
1006d_perl_otherlibdirs=''
1007otherlibdirs=''
1008package=''
1009spackage=''
1010pager=''
1011api_revision=''
1012api_subversion=''
1013api_version=''
1014api_versionstring=''
1015patchlevel=''
1016perl_patchlevel=''
1017revision=''
1018subversion=''
1019version=''
1020version_patchlevel_string=''
1021perl5=''
1022perladmin=''
1023perlpath=''
1024d_nv_preserves_uv=''
1025d_nv_zero_is_allbits_zero=''
1026i16size=''
1027i16type=''
1028i32size=''
1029i32type=''
1030i64size=''
1031i64type=''
1032i8size=''
1033i8type=''
1034ivsize=''
1035ivtype=''
1036nv_preserves_uv_bits=''
1037nvsize=''
1038nvtype=''
1039u16size=''
1040u16type=''
1041u32size=''
1042u32type=''
1043u64size=''
1044u64type=''
1045u8size=''
1046u8type=''
1047uvsize=''
1048uvtype=''
1049ivdformat=''
1050nvEUformat=''
1051nvFUformat=''
1052nvGUformat=''
1053nveformat=''
1054nvfformat=''
1055nvgformat=''
1056uvXUformat=''
1057uvoformat=''
1058uvuformat=''
1059uvxformat=''
1060pidtype=''
1061prefix=''
1062prefixexp=''
1063installprivlib=''
1064privlib=''
1065privlibexp=''
1066prototype=''
1067ptrsize=''
1068d_PRIXU64=''
1069d_PRId64=''
1070d_PRIi64=''
1071d_PRIo64=''
1072d_PRIu64=''
1073d_PRIx64=''
1074sPRIXU64=''
1075sPRId64=''
1076sPRIi64=''
1077sPRIo64=''
1078sPRIu64=''
1079sPRIx64=''
1080d_quad=''
1081quadkind=''
1082quadtype=''
1083uquadtype=''
1084drand01=''
1085randbits=''
1086randfunc=''
1087randseedtype=''
1088seedfunc=''
1089installscript=''
1090scriptdir=''
1091scriptdirexp=''
1092selectminbits=''
1093selecttype=''
1094sh=''
1095sig_count=''
1096sig_name=''
1097sig_name_init=''
1098sig_num=''
1099sig_num_init=''
1100sig_size=''
1101installsitearch=''
1102sitearch=''
1103sitearchexp=''
1104installsitebin=''
1105sitebin=''
1106sitebinexp=''
1107installsitehtml1dir=''
1108sitehtml1dir=''
1109sitehtml1direxp=''
1110installsitehtml3dir=''
1111sitehtml3dir=''
1112sitehtml3direxp=''
1113installsitelib=''
1114sitelib=''
1115sitelib_stem=''
1116sitelibexp=''
1117installsiteman1dir=''
1118siteman1dir=''
1119siteman1direxp=''
1120installsiteman3dir=''
1121siteman3dir=''
1122siteman3direxp=''
1123siteprefix=''
1124siteprefixexp=''
1125installsitescript=''
1126sitescript=''
1127sitescriptexp=''
1128sizesize=''
1129sizetype=''
1130so=''
1131socksizetype=''
1132sharpbang=''
1133shsharp=''
1134spitshell=''
1135src=''
1136ssizetype=''
1137startperl=''
1138startsh=''
1139stdchar=''
1140d_stdio_stream_array=''
1141stdio_stream_array=''
1142sysman=''
1143trnl=''
1144uidformat=''
1145uidsign=''
1146uidsize=''
1147uidtype=''
1148archname64=''
1149use64bitall=''
1150use64bitint=''
1151usefaststdio=''
1152ccflags_uselargefiles=''
1153ldflags_uselargefiles=''
1154libswanted_uselargefiles=''
1155uselargefiles=''
1156uselongdouble=''
1157usemorebits=''
1158usemultiplicity=''
1159nm_opt=''
1160nm_so_opt=''
1161runnm=''
1162usenm=''
1163useperlio=''
1164initialinstalllocation=''
1165userelocatableinc=''
1166usesocks=''
1167d_oldpthreads=''
1168use5005threads=''
1169useithreads=''
1170usereentrant=''
1171usethreads=''
1172incpath=''
1173mips_type=''
1174usrinc=''
1175d_vendorarch=''
1176installvendorarch=''
1177vendorarch=''
1178vendorarchexp=''
1179d_vendorbin=''
1180installvendorbin=''
1181vendorbin=''
1182vendorbinexp=''
1183installvendorhtml1dir=''
1184vendorhtml1dir=''
1185vendorhtml1direxp=''
1186installvendorhtml3dir=''
1187vendorhtml3dir=''
1188vendorhtml3direxp=''
1189d_vendorlib=''
1190installvendorlib=''
1191vendorlib=''
1192vendorlib_stem=''
1193vendorlibexp=''
1194installvendorman1dir=''
1195vendorman1dir=''
1196vendorman1direxp=''
1197installvendorman3dir=''
1198vendorman3dir=''
1199vendorman3direxp=''
1200usevendorprefix=''
1201vendorprefix=''
1202vendorprefixexp=''
1203d_vendorscript=''
1204installvendorscript=''
1205vendorscript=''
1206vendorscriptexp=''
1207versiononly=''
1208defvoidused=''
1209voidflags=''
1210yacc=''
1211yaccflags=''
1212CONFIG=''
1213
1214define='define'
1215undef='undef'
1216smallmach='pdp11 i8086 z8000 i80286 iAPX286'
1217rmlist=''
1218
1219: We must find out about Eunice early
1220eunicefix=':'
1221if test -f /etc/unixtovms; then
1222 eunicefix=/etc/unixtovms
1223fi
1224if test -f /etc/unixtovms.exe; then
1225 eunicefix=/etc/unixtovms.exe
1226fi
1227
1228: Set executable suffix now -- needed before hints available
1229if test -f "/libs/version.library"; then
1230: Amiga OS
1231 _exe=""
1232elif test -f "/system/gnu_library/bin/ar.pm"; then
1233: Stratus VOS
1234 _exe=".pm"
1235elif test -n "$DJGPP"; then
1236: DOS DJGPP
1237 _exe=".exe"
1238elif test -d c:/. -o -n "$is_os2" ; then
1239: OS/2 or cygwin
1240 _exe=".exe"
1241fi
1242
1243i_whoami=''
1244ccname=''
1245ccversion=''
1246perllibs=''
1247: set useposix=false in your hint file to disable the POSIX extension.
1248useposix=true
1249: set useopcode=false in your hint file to disable the Opcode extension.
1250useopcode=true
1251: Trailing extension. Override this in a hint file, if needed.
1252: Extra object files, if any, needed on this platform.
1253archobjs=''
1254archname=''
1255: Possible local include directories to search.
1256: Set locincpth to "" in a hint file to defeat local include searches.
1257locincpth="/usr/local/include /opt/local/include /usr/gnu/include"
1258locincpth="$locincpth /opt/gnu/include /usr/GNU/include /opt/GNU/include"
1259:
1260: no include file wanted by default
1261inclwanted=''
1262
1263groupstype=''
1264libnames=''
1265: change the next line if compiling for Xenix/286 on Xenix/386
1266xlibpth='/usr/lib/386 /lib/386'
1267: Possible local library directories to search.
1268loclibpth="/usr/local/lib /opt/local/lib /usr/gnu/lib"
1269loclibpth="$loclibpth /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib"
1270
1271: general looking path for locating libraries
1272glibpth="/lib /usr/lib $xlibpth"
1273glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/local/lib"
1274test -f /usr/shlib/libc.so && glibpth="/usr/shlib $glibpth"
1275test -f /shlib/libc.so && glibpth="/shlib $glibpth"
1276
1277: Private path used by Configure to find libraries. Its value
1278: is prepended to libpth. This variable takes care of special
1279: machines, like the mips. Usually, it should be empty.
1280plibpth=''
1281
1282: default library list
1283libswanted=''
1284: some systems want to use only the non-versioned libso:s
1285ignore_versioned_solibs=''
1286siteman1dir=''
1287siteman3dir=''
1288sitescript=''
1289archname64=''
1290ccflags_uselargefiles=''
1291ldflags_uselargefiles=''
1292libswanted_uselargefiles=''
1293: set usemultiplicity on the Configure command line to enable multiplicity.
1294: set usesocks on the Configure command line to enable socks.
1295: set usethreads on the Configure command line to enable threads.
1296usereentrant='undef'
1297: full support for void wanted by default
1298defvoidused=15
1299
1300: List of libraries we want.
1301: If anyone needs extra -lxxx, put those in a hint file.
1302libswanted="sfio socket bind inet nsl nm ndbm gdbm dbm db malloc dl dld ld sun"
1303libswanted="$libswanted m crypt sec util c cposix posix ucb bsd BSD"
1304: We probably want to search /usr/shlib before most other libraries.
1305: This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist.
1306glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'`
1307glibpth="/usr/shlib $glibpth"
1308: Do not use vfork unless overridden by a hint file.
1309usevfork=false
1310
1311: Find the basic shell for Bourne shell scripts
1312case "$sh" in
1313'')
1314 case "$SYSTYPE" in
1315 *bsd*|sys5*) xxx="/$SYSTYPE/bin/sh";;
1316 *) xxx='/bin/sh';;
1317 esac
1318 if test -f "$xxx"; then
1319 sh="$xxx"
1320 else
1321 : Build up a list and do a single loop so we can 'break' out.
1322 pth=`echo $PATH | sed -e "s/$p_/ /g"`
1323 for xxx in sh bash ksh pdksh ash; do
1324 for p in $pth; do
1325 try="$try ${p}/${xxx}"
1326 done
1327 done
1328 for xxx in $try; do
1329 if test -f "$xxx"; then
1330 sh="$xxx";
1331 break
1332 elif test "X$_exe" != X -a -f "$xxx$_exe"; then
1333 sh="$xxx";
1334 break
1335 elif test -f "$xxx.exe"; then
1336 sh="$xxx";
1337 break
1338 fi
1339 done
1340 fi
1341 ;;
1342esac
1343
1344case "$sh" in
1345'') cat >&2 <<EOM
1346$me: Fatal Error: I can't find a Bourne Shell anywhere.
1347
1348Usually it's in /bin/sh. How did you even get this far?
1349Please contact me (Perl Maintainers) at perlbug@perl.org and
1350we'll try to straighten this all out.
1351EOM
1352 exit 1
1353 ;;
1354esac
1355
1356: see if sh knows # comments
1357if `$sh -c '#' >/dev/null 2>&1`; then
1358 shsharp=true
1359 spitshell=cat
1360 xcat=/bin/cat
1361 test -f $xcat$_exe || xcat=/usr/bin/cat
1362 if test ! -f $xcat$_exe; then
1363 for p in `echo $PATH | sed -e "s/$p_/ /g"` $paths; do
1364 if test -f $p/cat$_exe; then
1365 xcat=$p/cat
1366 break
1367 fi
1368 done
1369 if test ! -f $xcat$_exe; then
1370 echo "Can't find cat anywhere!"
1371 exit 1
1372 fi
1373 fi
1374 echo "#!$xcat" >sharp
1375 $eunicefix sharp
1376 chmod +x sharp
1377 ./sharp > today
1378 if test -s today; then
1379 sharpbang='#!'
1380 else
1381 echo "#! $xcat" > sharp
1382 $eunicefix sharp
1383 chmod +x sharp
1384 ./sharp > today
1385 if test -s today; then
1386 sharpbang='#! '
1387 else
1388 sharpbang=': use '
1389 fi
1390 fi
1391else
1392 echo " "
1393 echo "Your $sh doesn't grok # comments--I will strip them later on."
1394 shsharp=false
1395 cd ..
1396 echo "exec grep -v '^[ ]*#'" >spitshell
1397 chmod +x spitshell
1398 $eunicefix spitshell
1399 spitshell=`pwd`/spitshell
1400 cd UU
1401 echo "I presume that if # doesn't work, #! won't work either!"
1402 sharpbang=': use '
1403fi
1404rm -f sharp today
1405
1406: figure out how to guarantee sh startup
1407case "$startsh" in
1408'') startsh=${sharpbang}${sh} ;;
1409*)
1410esac
1411cat >sharp <<EOSS
1412$startsh
1413set abc
1414test "$?abc" != 1
1415EOSS
1416
1417chmod +x sharp
1418$eunicefix sharp
1419if ./sharp; then
1420 : echo "Yup, it does."
1421else
1422 echo "Hmm... '$startsh' does not guarantee sh startup..."
1423 echo "You may have to fix up the shell scripts to make sure $sh runs them."
1424fi
1425rm -f sharp
1426
1427
1428: Save command line options in file UU/cmdline.opt for later use in
1429: generating config.sh.
1430cat > cmdline.opt <<EOSH
1431# Configure command line arguments.
1432config_arg0='$0'
1433config_args='$*'
1434config_argc=$#
1435EOSH
1436argn=1
1437args_exp=''
1438args_sep=''
1439for arg in "$@"; do
1440 cat >>cmdline.opt <<EOSH
1441config_arg$argn='$arg'
1442EOSH
1443 # Extreme backslashitis: replace each ' by '"'"'
1444 cat <<EOC | sed -e "s/'/'"'"'"'"'"'"'/g" > cmdl.opt
1445$arg
1446EOC
1447 arg_exp=`cat cmdl.opt`
1448 args_exp="$args_exp$args_sep'$arg_exp'"
1449 argn=`expr $argn + 1`
1450 args_sep=' '
1451done
1452# args_exp is good for restarting self: eval "set X $args_exp"; shift; $0 "$@"
1453# used by ./hints/os2.sh
1454rm -f cmdl.opt
1455
1456: produce awk script to parse command line options
1457cat >options.awk <<'EOF'
1458BEGIN {
1459 optstr = "A:dD:eEf:hKOrsSU:V"; # getopt-style specification
1460
1461 len = length(optstr);
1462 for (i = 1; i <= len; i++) {
1463 c = substr(optstr, i, 1);
1464 if (i < len) a = substr(optstr, i + 1, 1); else a = "";
1465 if (a == ":") {
1466 arg[c] = 1;
1467 i++;
1468 }
1469 opt[c] = 1;
1470 }
1471}
1472{
1473 expect = 0;
1474 str = $0;
1475 if (substr(str, 1, 1) != "-") {
1476 printf("'%s'\n", str);
1477 next;
1478 }
1479 len = length($0);
1480 for (i = 2; i <= len; i++) {
1481 c = substr(str, i, 1);
1482 if (!opt[c]) {
1483 printf("-%s\n", substr(str, i));
1484 next;
1485 }
1486 printf("-%s\n", c);
1487 if (arg[c]) {
1488 if (i < len)
1489 printf("'%s'\n", substr(str, i + 1));
1490 else
1491 expect = 1;
1492 next;
1493 }
1494 }
1495}
1496END {
1497 if (expect)
1498 print "?";
1499}
1500EOF
1501
1502: process the command line options
1503set X `for arg in "$@"; do echo "X$arg"; done |
1504 sed -e s/X// | awk -f options.awk`
1505eval "set $*"
1506shift
1507rm -f options.awk
1508
1509: set up default values
1510fastread=''
1511reuseval=false
1512config_sh=''
1513alldone=''
1514error=''
1515silent=''
1516extractsh=''
1517override=''
1518knowitall=''
1519rm -f optdef.sh posthint.sh
1520cat >optdef.sh <<EOS
1521$startsh
1522EOS
1523
1524
1525: option parsing
1526while test $# -gt 0; do
1527 case "$1" in
1528 -d) shift; fastread=yes;;
1529 -e) shift; alldone=cont;;
1530 -f)
1531 shift
1532 cd ..
1533 if test -r "$1"; then
1534 config_sh="$1"
1535 else
1536 echo "$me: cannot read config file $1." >&2
1537 error=true
1538 fi
1539 cd UU
1540 shift;;
1541 -h) shift; error=true;;
1542 -r) shift; reuseval=true;;
1543 -s) shift; silent=true; realsilent=true;;
1544 -E) shift; alldone=exit;;
1545 -K) shift; knowitall=true;;
1546 -O) shift; override=true;;
1547 -S) shift; silent=true; extractsh=true;;
1548 -D)
1549 shift
1550 case "$1" in
1551 *=)
1552 echo "$me: use '-U symbol=', not '-D symbol='." >&2
1553 echo "$me: ignoring -D $1" >&2
1554 ;;
1555 *=*) echo "$1" | \
1556 sed -e "s/'/'\"'\"'/g" -e "s/=\(.*\)/='\1'/" >> optdef.sh;;
1557 *) echo "$1='define'" >> optdef.sh;;
1558 esac
1559 shift
1560 ;;
1561 -U)
1562 shift
1563 case "$1" in
1564 *=) echo "$1" >> optdef.sh;;
1565 *=*)
1566 echo "$me: use '-D symbol=val', not '-U symbol=val'." >&2
1567 echo "$me: ignoring -U $1" >&2
1568 ;;
1569 *) echo "$1='undef'" >> optdef.sh;;
1570 esac
1571 shift
1572 ;;
1573 -A)
1574 shift
1575 xxx=''
1576 yyy="$1"
1577 zzz=''
1578 uuu=undef
1579 case "$yyy" in
1580 *=*) zzz=`echo "$yyy"|sed 's!=.*!!'`
1581 case "$zzz" in
1582 *:*) zzz='' ;;
1583 *) xxx=append
1584 zzz=" "`echo "$yyy"|sed 's!^[^=]*=!!'`
1585 yyy=`echo "$yyy"|sed 's!=.*!!'` ;;
1586 esac
1587 ;;
1588 esac
1589 case "$xxx" in
1590 '') case "$yyy" in
1591 *:*) xxx=`echo "$yyy"|sed 's!:.*!!'`
1592 yyy=`echo "$yyy"|sed 's!^[^:]*:!!'`
1593 zzz=`echo "$yyy"|sed 's!^[^=]*=!!'`
1594 yyy=`echo "$yyy"|sed 's!=.*!!'` ;;
1595 *) xxx=`echo "$yyy"|sed 's!:.*!!'`
1596 yyy=`echo "$yyy"|sed 's!^[^:]*:!!'` ;;
1597 esac
1598 ;;
1599 esac
1600 case "$xxx" in
1601 append)
1602 echo "$yyy=\"\${$yyy}$zzz\"" >> posthint.sh ;;
1603 clear)
1604 echo "$yyy=''" >> posthint.sh ;;
1605 define)
1606 case "$zzz" in
1607 '') zzz=define ;;
1608 esac
1609 echo "$yyy='$zzz'" >> posthint.sh ;;
1610 eval)
1611 echo "eval \"$yyy=$zzz\"" >> posthint.sh ;;
1612 prepend)
1613 echo "$yyy=\"$zzz\${$yyy}\"" >> posthint.sh ;;
1614 undef)
1615 case "$zzz" in
1616 '') zzz="$uuu" ;;
1617 esac
1618 echo "$yyy=$zzz" >> posthint.sh ;;
1619 *) echo "$me: unknown -A command '$xxx', ignoring -A $1" >&2 ;;
1620 esac
1621 shift
1622 ;;
1623 -V) echo "$me generated by metaconfig 3.0 PL70." >&2
1624 exit 0;;
1625 --) break;;
1626 -*) echo "$me: unknown option $1" >&2; shift; error=true;;
1627 *) break;;
1628 esac
1629done
1630
1631case "$error" in
1632true)
1633 cat >&2 <<EOM
1634Usage: $me [-dehrsEKOSV] [-f config.sh] [-D symbol] [-D symbol=value]
1635 [-U symbol] [-U symbol=] [-A command:symbol...]
1636 -d : use defaults for all answers.
1637 -e : go on without questioning past the production of config.sh.
1638 -f : specify an alternate default configuration file.
1639 -h : print this help message and exit (with an error status).
1640 -r : reuse C symbols value if possible (skips costly nm extraction).
1641 -s : silent mode, only echoes questions and essential information.
1642 -D : define symbol to have some value:
1643 -D symbol symbol gets the value 'define'
1644 -D symbol=value symbol gets the value 'value'
1645 -E : stop at the end of questions, after having produced config.sh.
1646 -K : do not use unless you know what you are doing.
1647 -O : let -D and -U override definitions from loaded configuration file.
1648 -S : perform variable substitutions on all .SH files (can mix with -f)
1649 -U : undefine symbol:
1650 -U symbol symbol gets the value 'undef'
1651 -U symbol= symbol gets completely empty
1652 -A : manipulate symbol after the platform specific hints have been applied:
1653 -A symbol=value append " "value to symbol
1654 -A append:symbol=value append value to symbol
1655 -A define:symbol=value define symbol to have value
1656 -A clear:symbol define symbol to be ''
1657 -A define:symbol define symbol to be 'define'
1658 -A eval:symbol=value define symbol to be eval of value
1659 -A prepend:symbol=value prepend value to symbol
1660 -A undef:symbol define symbol to be 'undef'
1661 -A undef:symbol= define symbol to be ''
1662 -V : print version number and exit (with a zero status).
1663EOM
1664 exit 1
1665 ;;
1666esac
1667
1668: Sanity checks
1669case "$fastread$alldone" in
1670yescont|yesexit) ;;
1671*)
1672 case "$extractsh" in
1673 true) ;;
1674 *)
1675 if test ! -t 0; then
1676 echo "Say 'sh Configure', not 'sh <Configure'"
1677 exit 1
1678 fi
1679 ;;
1680 esac
1681 ;;
1682esac
1683
1684exec 4>&1
1685case "$silent" in
1686true) exec 1>/dev/null;;
1687esac
1688
1689: run the defines and the undefines, if any, but leave the file out there...
1690touch optdef.sh
1691. ./optdef.sh
1692: create the posthint manipulation script and leave the file out there...
1693touch posthint.sh
1694
1695: set package name
1696package=perl5
1697first=`echo $package | sed -e 's/^\(.\).*/\1/'`
1698last=`echo $package | sed -e 's/^.\(.*\)/\1/'`
1699case "`echo AbyZ | tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
1700ABYZ) spackage=`echo $first | tr '[:lower:]' '[:upper:]'`$last;;
1701*) spackage=`echo $first | tr '[a-z]' '[A-Z]'`$last;;
1702esac
1703
1704: Some greps do not return status, grrr.
1705echo "grimblepritz" >grimble
1706if grep blurfldyick grimble >/dev/null 2>&1 ; then
1707 contains=contains
1708elif grep grimblepritz grimble >/dev/null 2>&1 ; then
1709 contains=grep
1710else
1711 contains=contains
1712fi
1713rm -f grimble
1714: the following should work in any shell
1715case "$contains" in
1716contains*)
1717 echo " "
1718 echo "AGH! Grep doesn't return a status. Attempting remedial action."
1719 cat >contains <<'EOSS'
1720grep "$1" "$2" >.greptmp && cat .greptmp && test -s .greptmp
1721EOSS
1722chmod +x contains
1723esac
1724
1725: Find the path to the source tree
1726case "$src" in
1727'') case "$0" in
1728 */*) src=`echo $0 | sed -e 's%/[^/][^/]*$%%'`
1729 case "$src" in
1730 /*) ;;
1731 .) ;;
1732 *) src=`cd ../$src && pwd` ;;
1733 esac
1734 ;;
1735 *) src='.';;
1736 esac;;
1737esac
1738case "$src" in
1739'') src=/
1740 rsrc=/
1741 ;;
1742/*) rsrc="$src";;
1743*) rsrc="../$src";;
1744esac
1745if test -f $rsrc/Configure && \
1746 $contains "^package=$package$" $rsrc/Configure >/dev/null 2>&1
1747then
1748 : found it, so we are ok.
1749else
1750 rsrc=''
1751 for src in . .. ../.. ../../.. ../../../..; do
1752 if test -f ../$src/Configure && \
1753 $contains "^package=$package$" ../$src/Configure >/dev/null 2>&1
1754 then
1755 rsrc=../$src
1756 break
1757 fi
1758 done
1759fi
1760case "$rsrc" in
1761'')
1762 cat <<EOM >&4
1763
1764Sorry, I can't seem to locate the source dir for $package. Please start
1765Configure with an explicit path -- i.e. /some/path/Configure.
1766
1767EOM
1768 exit 1
1769 ;;
1770../.) rsrc='..';;
1771*)
1772 echo " "
1773 echo "Sources for $package found in \"$src\"." >&4
1774 ;;
1775esac
1776
1777: script used to extract .SH files with variable substitutions
1778cat >extract <<'EOS'
1779PERL_CONFIG_SH=true
1780echo "Doing variable substitutions on .SH files..."
1781if test -f MANIFEST; then
1782 set x `awk '{print $1}' < MANIFEST | grep '\.SH$'`
1783else
1784 echo "(Looking for .SH files under the source directory.)"
1785 set x `(cd "$src"; find . -name "*.SH" -print)`
1786fi
1787shift
1788case $# in
17890) set x `(cd "$src"; echo *.SH)`; shift;;
1790esac
1791if test ! -f "$src/$1"; then
1792 shift
1793fi
1794mkdir_p='
1795name=$1;
1796create="";
1797while test $name; do
1798 if test ! -d "$name"; then
1799 create="$name $create";
1800 name=`echo $name | sed -e "s|^[^/]*$||"`;
1801 name=`echo $name | sed -e "s|\(.*\)/.*|\1|"`;
1802 else
1803 name="";
1804 fi;
1805done;
1806for file in $create; do
1807 mkdir $file;
1808done
1809'
1810for file in $*; do
1811 case "$src" in
1812 ".")
1813 case "$file" in
1814 */*)
1815 dir=`expr X$file : 'X\(.*\)/'`
1816 file=`expr X$file : 'X.*/\(.*\)'`
1817 (cd "$dir" && . ./$file)
1818 ;;
1819 *)
1820 . ./$file
1821 ;;
1822 esac
1823 ;;
1824 *)
1825 case "$file" in
1826 */*)
1827 dir=`expr X$file : 'X\(.*\)/'`
1828 file=`expr X$file : 'X.*/\(.*\)'`
1829 (set x $dir; shift; eval $mkdir_p)
1830 sh <"$src/$dir/$file"
1831 ;;
1832 *)
1833 sh <"$src/$file"
1834 ;;
1835 esac
1836 ;;
1837 esac
1838done
1839if test -f "$src/config_h.SH"; then
1840 if test ! -f config.h; then
1841 : oops, they left it out of MANIFEST, probably, so do it anyway.
1842 . "$src/config_h.SH"
1843 fi
1844fi
1845EOS
1846
1847: extract files and exit if asked to do so
1848case "$extractsh" in
1849true)
1850 case "$realsilent" in
1851 true) ;;
1852 *) exec 1>&4;;
1853 esac
1854 case "$config_sh" in
1855 '') config_sh='config.sh';;
1856 esac
1857 echo " "
1858 echo "Fetching answers from $config_sh..."
1859 cd ..
1860 . $config_sh
1861 test "$override" && . ./optdef.sh
1862 echo " "
1863 . UU/extract
1864 rm -rf UU
1865 echo "Extraction done."
1866 exit 0
1867 ;;
1868esac
1869
1870: Eunice requires " " instead of "", can you believe it
1871echo " "
1872: Here we go...
1873echo "Beginning of configuration questions for $package."
1874
1875trap 'echo " "; test -d ../UU && rm -rf X $rmlist; exit 1' 1 2 3 15
1876
1877: first determine how to suppress newline on echo command
1878echo " "
1879echo "Checking echo to see how to suppress newlines..."
1880(echo "hi there\c" ; echo " ") >.echotmp
1881if $contains c .echotmp >/dev/null 2>&1 ; then
1882 echo "...using -n."
1883 n='-n'
1884 c=''
1885else
1886 cat <<'EOM'
1887...using \c
1888EOM
1889 n=''
1890 c='\c'
1891fi
1892echo $n "The star should be here-->$c"
1893echo '*'
1894rm -f .echotmp
1895
1896: Now test for existence of everything in MANIFEST
1897echo " "
1898if test -f "$rsrc/MANIFEST"; then
1899 echo "First let's make sure your kit is complete. Checking..." >&4
1900 awk '$1 !~ /PACK[A-Z]+/ {print $1}' "$rsrc/MANIFEST" | (split -l 50 2>/dev/null || split -50)
1901 rm -f missing
1902 tmppwd=`pwd`
1903 for filelist in x??; do
1904 (cd "$rsrc"; ls `cat "$tmppwd/$filelist"` >/dev/null 2>>"$tmppwd/missing")
1905 done
1906 if test -s missing; then
1907 cat missing >&4
1908 cat >&4 <<'EOM'
1909
1910THIS PACKAGE SEEMS TO BE INCOMPLETE.
1911
1912You have the option of continuing the configuration process, despite the
1913distinct possibility that your kit is damaged, by typing 'y'es. If you
1914do, don't blame me if something goes wrong. I advise you to type 'n'o
1915and contact the author (perlbug@perl.org).
1916
1917EOM
1918 echo $n "Continue? [n] $c" >&4
1919 read ans
1920 case "$ans" in
1921 y*)
1922 echo "Continuing..." >&4
1923 rm -f missing
1924 ;;
1925 *)
1926 echo "ABORTING..." >&4
1927 kill $$
1928 ;;
1929 esac
1930 else
1931 echo "Looks good..."
1932 fi
1933else
1934 echo "There is no MANIFEST file. I hope your kit is complete !"
1935fi
1936rm -f missing x??
1937
1938echo " "
1939: Find the appropriate value for a newline for tr
1940if test -n "$DJGPP"; then
1941 trnl='\012'
1942fi
1943if test X"$trnl" = X; then
1944 case "`echo foo|tr '\n' x 2>/dev/null`" in
1945 foox) trnl='\n' ;;
1946 esac
1947fi
1948if test X"$trnl" = X; then
1949 case "`echo foo|tr '\012' x 2>/dev/null`" in
1950 foox) trnl='\012' ;;
1951 esac
1952fi
1953if test X"$trnl" = X; then
1954 case "`echo foo|tr '\r\n' xy 2>/dev/null`" in
1955 fooxy) trnl='\n\r' ;;
1956 esac
1957fi
1958if test X"$trnl" = X; then
1959 cat <<EOM >&2
1960
1961$me: Fatal Error: cannot figure out how to translate newlines with 'tr'.
1962
1963EOM
1964 exit 1
1965fi
1966
1967: compute the number of columns on the terminal for proper question formatting
1968case "$COLUMNS" in
1969'') COLUMNS='80';;
1970esac
1971
1972: set up the echo used in my read
1973myecho="case \"\$xxxm\" in
1974'') echo $n \"\$rp $c\" >&4;;
1975*) case \"\$rp\" in
1976 '') echo $n \"[\$xxxm] $c\";;
1977 *)
1978 if test \`echo \"\$rp [\$xxxm] \" | wc -c\` -ge $COLUMNS; then
1979 echo \"\$rp\" >&4
1980 echo $n \"[\$xxxm] $c\" >&4
1981 else
1982 echo $n \"\$rp [\$xxxm] $c\" >&4
1983 fi
1984 ;;
1985 esac;;
1986esac"
1987
1988: now set up to do reads with possible shell escape and default assignment
1989cat <<EOSC >myread
1990$startsh
1991xxxm=\$dflt
1992$myecho
1993ans='!'
1994case "\$fastread" in
1995yes) case "\$dflt" in
1996 '') ;;
1997 *) ans='';
1998 case "\$silent-\$rp" in
1999 true-) ;;
2000 *) echo " " >&4;;
2001 esac;;
2002 esac;;
2003*) case "\$silent" in
2004 true) case "\$rp" in
2005 '') ans='';;
2006 esac;;
2007 esac;;
2008esac
2009while expr "X\$ans" : "X!" >/dev/null; do
2010 read answ
2011 set x \$xxxm
2012 shift
2013 aok=''; eval "ans=\\"\$answ\\"" && aok=y
2014 case "\$answ" in
2015 "!")
2016 sh 1>&4
2017 echo " "
2018 $myecho
2019 ;;
2020 !*)
2021 set x \`expr "X\$ans" : "X!\(.*\)\$"\`
2022 shift
2023 sh 1>&4 -c "\$*"
2024 echo " "
2025 $myecho
2026 ;;
2027 "\$ans")
2028 case "\$ans" in
2029 \\&*)
2030 set x \`expr "X\$ans" : "X&\(.*\)\$"\`
2031 shift
2032 case "\$1" in
2033 -d)
2034 fastread=yes
2035 echo "(OK, I'll run with -d after this question.)" >&4
2036 ;;
2037 -*)
2038 echo "*** Sorry, \$1 not supported yet." >&4
2039 ;;
2040 esac
2041 $myecho
2042 ans=!
2043 ;;
2044 esac;;
2045 *)
2046 case "\$aok" in
2047 y)
2048 echo "*** Substitution done -- please confirm."
2049 xxxm="\$ans"
2050 ans=\`echo $n "\$ans$c" | tr '$trnl' ' '\`
2051 xxxm="\$ans"
2052 ans=!
2053 ;;
2054 *)
2055 echo "*** Error -- try again."
2056 ans=!
2057 ;;
2058 esac
2059 $myecho
2060 ;;
2061 esac
2062 case "\$ans\$xxxm\$nostick" in
2063 '')
2064 ans=!
2065 $myecho
2066 ;;
2067 esac
2068done
2069case "\$ans" in
2070'') ans="\$xxxm";;
2071esac
2072EOSC
2073
2074: create .config dir to save info across Configure sessions
2075test -d ../.config || mkdir ../.config
2076cat >../.config/README <<EOF
2077This directory created by Configure to save information that should
2078persist across sessions for $package.
2079
2080You may safely delete it if you wish.
2081EOF
2082
2083xversion=`awk '/define[ ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
2084case "$usedevel" in
2085$define|true|[yY]*) ;;
2086*) case "$xversion" in
2087 *[13579])
2088 cat >&4 <<EOH
2089*** WHOA THERE!!! ***
2090
2091 This is an UNSTABLE DEVELOPMENT release.
2092 The version of this $package distribution is $xversion, that is, odd,
2093 (as opposed to even) and that signifies a development release.
2094 If you want a maintenance release, you want an even-numbered version.
2095
2096 Do ***NOT*** install this into production use.
2097 Data corruption and crashes are possible.
2098
2099 It is most seriously suggested that you do not continue any further
2100 unless you want to help in developing and debugging Perl.
2101
2102 If you *still* want to build perl, you can answer 'y' now,
2103 or pass -Dusedevel to Configure.
2104
2105EOH
2106 rp='Do you really want to continue?'
2107 dflt='n'
2108 . ./myread
2109 case "$ans" in
2110 [yY]) echo >&4 "Okay, continuing."
2111 usedevel="$define" ;;
2112 *) echo >&4 "Okay, bye."
2113 exit 1
2114 ;;
2115 esac
2116 ;;
2117 esac
2118 ;;
2119esac
2120case "$usedevel" in
2121$define|true|[yY]*)
2122 case "$versiononly" in
2123 '') versiononly="$define" ;;
2124 esac
2125 case "$installusrbinperl" in
2126 '') installusrbinperl="$undef" ;;
2127 esac
2128 ;;
2129esac
2130
2131: general instructions
2132needman=true
2133firsttime=true
2134user=`(logname) 2>/dev/null`
2135case "$user" in
2136'') user=`whoami 2>&1`;;
2137esac
2138if $contains "^$user\$" ../.config/instruct >/dev/null 2>&1; then
2139 firsttime=false
2140 echo " "
2141 rp='Would you like to see the instructions?'
2142 dflt=n
2143 . ./myread
2144 case "$ans" in
2145 [yY]*) ;;
2146 *) needman=false;;
2147 esac
2148fi
2149if $needman; then
2150 cat <<EOH
2151
2152This installation shell script will examine your system and ask you questions
2153to determine how the perl5 package should be installed. If you get
2154stuck on a question, you may use a ! shell escape to start a subshell or
2155execute a command. Many of the questions will have default answers in square
2156brackets; typing carriage return will give you the default.
2157
2158On some of the questions which ask for file or directory names you are allowed
2159to use the ~name construct to specify the login directory belonging to "name",
2160even if you don't have a shell which knows about that. Questions where this is
2161allowed will be marked "(~name ok)".
2162
2163EOH
2164 rp=''
2165 dflt='Type carriage return to continue'
2166 . ./myread
2167 cat <<'EOH'
2168
2169The prompter used in this script allows you to use shell variables and
2170backticks in your answers. You may use $1, $2, etc... to refer to the words
2171in the default answer, as if the default line was a set of arguments given to a
2172script shell. This means you may also use $* to repeat the whole default line,
2173so you do not have to re-type everything to add something to the default.
2174
2175Everytime there is a substitution, you will have to confirm. If there is an
2176error (e.g. an unmatched backtick), the default answer will remain unchanged
2177and you will be prompted again.
2178
2179If you are in a hurry, you may run 'Configure -d'. This will bypass nearly all
2180the questions and use the computed defaults (or the previous answers if there
2181was already a config.sh file). Type 'Configure -h' for a list of options.
2182You may also start interactively and then answer '& -d' at any prompt to turn
2183on the non-interactive behaviour for the remainder of the execution.
2184
2185EOH
2186 . ./myread
2187 cat <<EOH
2188
2189Much effort has been expended to ensure that this shell script will run on any
2190Unix system. If despite that it blows up on yours, your best bet is to edit
2191Configure and run it again. If you can't run Configure for some reason,
2192you'll have to generate a config.sh file by hand. Whatever problems you
2193have, let me (perlbug@perl.org) know how I blew it.
2194
2195This installation script affects things in two ways:
2196
21971) it may do direct variable substitutions on some of the files included
2198 in this kit.
21992) it builds a config.h file for inclusion in C programs. You may edit
2200 any of these files as the need arises after running this script.
2201
2202If you make a mistake on a question, there is no easy way to back up to it
2203currently. The easiest thing to do is to edit config.sh and rerun all the SH
2204files. Configure will offer to let you do this before it runs the SH files.
2205
2206EOH
2207 dflt='Type carriage return to continue'
2208 . ./myread
2209 case "$firsttime" in
2210 true) echo $user >>../.config/instruct;;
2211 esac
2212fi
2213
2214: find out where common programs are
2215echo " "
2216echo "Locating common programs..." >&4
2217cat <<EOSC >loc
2218$startsh
2219case \$# in
22200) exit 1;;
2221esac
2222thing=\$1
2223shift
2224dflt=\$1
2225shift
2226for dir in \$*; do
2227 case "\$thing" in
2228 .)
2229 if test -d \$dir/\$thing; then
2230 echo \$dir
2231 exit 0
2232 fi
2233 ;;
2234 *)
2235 for thisthing in \$dir/\$thing; do
2236 : just loop through to pick last item
2237 done
2238 if test -f \$thisthing; then
2239 echo \$thisthing
2240 exit 0
2241 elif test "X$_exe" != X -a -f \$thisthing$_exe; then
2242 echo \$thisthing
2243 exit 0
2244 elif test -f \$dir/\$thing.exe; then
2245 if test -n "$DJGPP"; then
2246 echo \$dir/\$thing.exe
2247 elif test "$eunicefix" != ":"; then
2248 : on Eunice apparently
2249 echo \$dir/\$thing
2250 exit 0
2251 fi
2252 exit 0
2253 fi
2254 ;;
2255 esac
2256done
2257echo \$dflt
2258exit 1
2259EOSC
2260chmod +x loc
2261$eunicefix loc
2262loclist="
2263awk
2264cat
2265chmod
2266comm
2267cp
2268echo
2269expr
2270grep
2271ls
2272mkdir
2273rm
2274sed
2275sort
2276touch
2277tr
2278uniq
2279"
2280trylist="
2281Mcc
2282ar
2283bison
2284byacc
2285cpp
2286csh
2287date
2288egrep
2289gmake
2290gzip
2291less
2292ln
2293make
2294more
2295nm
2296nroff
2297pg
2298test
2299uname
2300zip
2301"
2302pth=`echo $PATH | sed -e "s/$p_/ /g"`
2303pth="$pth /lib /usr/lib"
2304for file in $loclist; do
2305 eval xxx=\$$file
2306 case "$xxx" in
2307 /*|?:[\\/]*)
2308 if test -f "$xxx"; then
2309 : ok
2310 else
2311 echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
2312 xxx=`./loc $file $file $pth`
2313 fi
2314 ;;
2315 '') xxx=`./loc $file $file $pth`;;
2316 *) xxx=`./loc $xxx $xxx $pth`;;
2317 esac
2318 eval $file=$xxx$_exe
2319 eval _$file=$xxx
2320 case "$xxx" in
2321 /*)
2322 echo $file is in $xxx.
2323 ;;
2324 ?:[\\/]*)
2325 echo $file is in $xxx.
2326 ;;
2327 *)
2328 echo "I don't know where '$file' is, and my life depends on it." >&4
2329 echo "Go find a public domain implementation or fix your PATH setting!" >&4
2330 exit 1
2331 ;;
2332 esac
2333done
2334echo " "
2335echo "Don't worry if any of the following aren't found..."
2336say=offhand
2337for file in $trylist; do
2338 eval xxx=\$$file
2339 case "$xxx" in
2340 /*|?:[\\/]*)
2341 if test -f "$xxx"; then
2342 : ok
2343 else
2344 echo "WARNING: no $xxx -- ignoring your setting for $file." >&4
2345 xxx=`./loc $file $file $pth`
2346 fi
2347 ;;
2348 '') xxx=`./loc $file $file $pth`;;
2349 *) xxx=`./loc $xxx $xxx $pth`;;
2350 esac
2351 eval $file=$xxx$_exe
2352 eval _$file=$xxx
2353 case "$xxx" in
2354 /*)
2355 echo $file is in $xxx.
2356 ;;
2357 ?:[\\/]*)
2358 echo $file is in $xxx.
2359 ;;
2360 *)
2361 echo "I don't see $file out there, $say."
2362 say=either
2363 ;;
2364 esac
2365done
2366case "$egrep" in
2367egrep)
2368 echo "Substituting grep for egrep."
2369 egrep=$grep
2370 _egrep=$grep
2371 ;;
2372esac
2373case "$ln" in
2374ln)
2375 echo "Substituting cp for ln."
2376 ln=$cp
2377 _ln=$cp
2378 ;;
2379esac
2380case "$make" in
2381make)
2382 case "$gmake" in
2383 gmake)
2384 echo "I can't find make or gmake, and my life depends on it." >&4
2385 echo "Go find a public domain implementation or fix your PATH setting!" >&4
2386 exit 1
2387 ;;
2388 esac
2389 ;;
2390esac
2391case "$gmake" in
2392gmake) ;;
2393*) # We can't have osname yet.
2394 if test -f "/system/gnu_library/bin/ar.pm"; then # Stratus VOS
2395 # Assume that gmake, if found, is definitely GNU make
2396 # and prefer it over the system make.
2397 echo "Substituting gmake for make."
2398 make=$gmake
2399 _make=$gmake
2400 fi
2401 ;;
2402esac
2403case "$test" in
2404test)
2405 echo "Hopefully test is built into your sh."
2406 ;;
2407*)
2408 if `sh -c "PATH= test true" >/dev/null 2>&1`; then
2409 echo "Using the test built into your sh."
2410 test=test
2411 _test=test
2412 fi
2413 ;;
2414esac
2415case "$echo" in
2416echo)
2417 echo "Hopefully echo is built into your sh."
2418 ;;
2419'') ;;
2420*)
2421 echo " "
2422echo "Checking compatibility between $echo and builtin echo (if any)..." >&4
2423 $echo $n "hi there$c" >foo1
2424 echo $n "hi there$c" >foo2
2425 if cmp foo1 foo2 >/dev/null 2>&1; then
2426 echo "They are compatible. In fact, they may be identical."
2427 else
2428 case "$n" in
2429 '-n') n='' c='\c';;
2430 *) n='-n' c='';;
2431 esac
2432 cat <<FOO
2433They are not compatible! You are probably running ksh on a non-USG system.
2434I'll have to use $echo instead of the builtin, since Bourne shell doesn't
2435have echo built in and we may have to run some Bourne shell scripts. That
2436means I'll have to use '$n$c' to suppress newlines now. Life is ridiculous.
2437
2438FOO
2439 $echo $n "The star should be here-->$c"
2440 $echo "*"
2441 fi
2442 $rm -f foo1 foo2
2443 ;;
2444esac
2445
2446cat <<EOS >trygcc
2447$startsh
2448EOS
2449cat <<'EOSC' >>trygcc
2450case "$cc" in
2451'') ;;
2452*) $rm -f try try.*
2453 $cat >try.c <<EOM
2454int main(int argc, char *argv[]) {
2455 return 0;
2456}
2457EOM
2458 if $cc -o try $ccflags $ldflags try.c; then
2459 :
2460 else
2461 echo "Uh-oh, the C compiler '$cc' doesn't seem to be working." >&4
2462 despair=yes
2463 trygcc=yes
2464 case "$cc" in
2465 *gcc*) trygcc=no ;;
2466 esac
2467 case "`$cc -v -c try.c 2>&1`" in
2468 *gcc*) trygcc=no ;;
2469 esac
2470 if $test X"$trygcc" = Xyes; then
2471 if gcc -o try -c try.c; then
2472 echo " "
2473 echo "You seem to have a working gcc, though." >&4
2474 rp="Would you like to use it?"
2475 dflt=y
2476 if $test -f myread; then
2477 . ./myread
2478 else
2479 if $test -f UU/myread; then
2480 . ./UU/myread
2481 else
2482 echo "Cannot find myread, sorry. Aborting." >&2
2483 exit 1
2484 fi
2485 fi
2486 case "$ans" in
2487 [yY]*) cc=gcc; ccname=gcc; ccflags=''; despair=no;
2488 if $test -f usethreads.cbu; then
2489 $cat >&4 <<EOM
2490
2491*** However, any setting of the C compiler flags (e.g. for thread support)
2492*** has been lost. It may be necessary to pass -Dcc=gcc to Configure
2493*** (together with e.g. -Dusethreads).
2494
2495EOM
2496 fi;;
2497 esac
2498 fi
2499 fi
2500 fi
2501 $rm -f try try.*
2502 ;;
2503esac
2504EOSC
2505
2506cat <<EOS >checkcc
2507$startsh
2508EOS
2509cat <<'EOSC' >>checkcc
2510case "$cc" in
2511'') ;;
2512*) $rm -f try try.*
2513 $cat >try.c <<EOM
2514int main(int argc, char *argv[]) {
2515 return 0;
2516}
2517EOM
2518 if $cc -o try $ccflags $ldflags try.c; then
2519 :
2520 else
2521 if $test X"$despair" = Xyes; then
2522 echo "Uh-oh, the C compiler '$cc' doesn't seem to be working." >&4
2523 fi
2524 $cat >&4 <<EOM
2525You need to find a working C compiler.
2526Either (purchase and) install the C compiler supplied by your OS vendor,
2527or for a free C compiler try http://gcc.gnu.org/
2528I cannot continue any further, aborting.
2529EOM
2530 exit 1
2531 fi
2532 $rm -f try try.*
2533 ;;
2534esac
2535EOSC
2536
2537: determine whether symbolic links are supported
2538echo " "
2539$touch blurfl
2540if $ln -s blurfl sym > /dev/null 2>&1 ; then
2541 echo "Symbolic links are supported." >&4
2542 lns="$ln -s"
2543else
2544 echo "Symbolic links are NOT supported." >&4
2545 lns="$ln"
2546fi
2547$rm -f blurfl sym
2548
2549: determine whether symbolic links are supported
2550echo " "
2551case "$lns" in
2552*"ln"*" -s")
2553 echo "Checking how to test for symbolic links..." >&4
2554 $lns blurfl sym
2555 if $test "X$issymlink" = X; then
2556 case "$newsh" in
2557 '') sh -c "PATH= test -h sym" >/dev/null 2>&1 ;;
2558 *) $newsh -c "PATH= test -h sym" >/dev/null 2>&1 ;;
2559 esac
2560 if test $? = 0; then
2561 issymlink="test -h"
2562 else
2563 echo "Your builtin 'test -h' may be broken." >&4
2564 case "$test" in
2565 /*) ;;
2566 *) pth=`echo $PATH | sed -e "s/$p_/ /g"`
2567 for p in $pth
2568 do
2569 if test -f "$p/$test"; then
2570 test="$p/$test"
2571 break
2572 fi
2573 done
2574 ;;
2575 esac
2576 case "$test" in
2577 /*)
2578 echo "Trying external '$test -h'." >&4
2579 issymlink="$test -h"
2580 if $test ! -h sym >/dev/null 2>&1; then
2581 echo "External '$test -h' is broken, too." >&4
2582 issymlink=''
2583 fi
2584 ;;
2585 *) issymlink='' ;;
2586 esac
2587 fi
2588 fi
2589 if $test "X$issymlink" = X; then
2590 if $test -L sym 2>/dev/null; then
2591 issymlink="$test -L"
2592 echo "The builtin '$test -L' worked." >&4
2593 fi
2594 fi
2595 if $test "X$issymlink" != X; then
2596 echo "You can test for symbolic links with '$issymlink'." >&4
2597 else
2598 echo "I do not know how you can test for symbolic links." >&4
2599 fi
2600 $rm -f blurfl sym
2601 ;;
2602*) echo "No symbolic links, so not testing for their testing..." >&4
2603 ;;
2604esac
2605echo " "
2606
2607
2608case "$mksymlinks" in
2609$define|true|[yY]*)
2610 case "$src" in
2611 ''|'.') echo "Cannot create symlinks in the original directory." >&4
2612 exit 1
2613 ;;
2614 *) case "$lns:$issymlink" in
2615 *"ln"*" -s:"*"test -"?)
2616 echo "Creating the symbolic links..." >&4
2617 echo "(First creating the subdirectories...)" >&4
2618 cd ..
2619 awk '{print $1}' $src/MANIFEST | grep / | sed 's:/[^/]*$::' | sort -u | while true; do
2620 read directory
2621 test -z "$directory" && break
2622 mkdir -p $directory
2623 done
2624 # Sanity check 1.
2625 if test ! -d t/base; then
2626 echo "Failed to create the subdirectories. Aborting." >&4
2627 exit 1
2628 fi
2629 echo "(Then creating the symlinks...)" >&4
2630 awk '{print $1}' $src/MANIFEST | while true; do
2631 read filename
2632 test -z "$filename" && break
2633 if test -f $filename; then
2634 if $issymlink $filename; then
2635 rm -f $filename
2636 fi
2637 fi
2638 if test -f $filename; then
2639 echo "$filename already exists, not symlinking."
2640 else
2641 ln -s $src/$filename $filename
2642 fi
2643 done
2644 # Sanity check 2.
2645 if test ! -f t/base/lex.t; then
2646 echo "Failed to create the symlinks (t/base/lex.t missing). Aborting." >&4
2647 exit 1
2648 fi
2649 cd UU
2650 ;;
2651 *) echo "(I cannot figure out how to do symbolic links, ignoring mksymlinks)." >&4
2652 ;;
2653 esac
2654 ;;
2655 esac
2656 ;;
2657esac
2658
2659
2660case "$usecrosscompile" in
2661$define|true|[yY]*)
2662 $echo "Cross-compiling..."
2663 croak=''
2664 case "$cc" in
2665 *-*-gcc) # A cross-compiling gcc, probably.
2666 targetarch=`$echo $cc|$sed 's/-gcc$//'`
2667 ar=$targetarch-ar
2668 # leave out ld, choosing it is more complex
2669 nm=$targetarch-nm
2670 ranlib=$targetarch-ranlib
2671 $echo 'extern int foo;' > try.c
2672 set X `$cc -v -E try.c 2>&1 | $awk '/^#include </,/^End of search /'|$grep '/include'`
2673 shift
2674 if $test $# -gt 0; then
2675 incpth="$incpth $*"
2676 incpth="`$echo $incpth|$sed 's/^ //'`"
2677 echo "Guessing incpth '$incpth'." >&4
2678 for i in $*; do
2679 j="`$echo $i|$sed 's,/include$,/lib,'`"
2680 if $test -d $j; then
2681 libpth="$libpth $j"
2682 fi
2683 done
2684 libpth="`$echo $libpth|$sed 's/^ //'`"
2685 echo "Guessing libpth '$libpth'." >&4
2686 fi
2687 $rm -f try.c
2688 ;;
2689 esac
2690 case "$targetarch" in
2691 '') echo "Targetarch not defined." >&4; croak=y ;;
2692 *) echo "Using targetarch $targetarch." >&4 ;;
2693 esac
2694 case "$incpth" in
2695 '') echo "Incpth not defined." >&4; croak=y ;;
2696 *) echo "Using incpth '$incpth'." >&4 ;;
2697 esac
2698 case "$libpth" in
2699 '') echo "Libpth not defined." >&4; croak=y ;;
2700 *) echo "Using libpth '$libpth'." >&4 ;;
2701 esac
2702 case "$usrinc" in
2703 '') for i in $incpth; do
2704 if $test -f $i/errno.h -a -f $i/stdio.h -a -f $i/time.h; then
2705 usrinc=$i
2706 echo "Guessing usrinc $usrinc." >&4
2707 break
2708 fi
2709 done
2710 case "$usrinc" in
2711 '') echo "Usrinc not defined." >&4; croak=y ;;
2712 esac
2713 ;;
2714 *) echo "Using usrinc $usrinc." >&4 ;;
2715 esac
2716 case "$targethost" in
2717 '') echo "Targethost not defined." >&4; croak=y ;;
2718 *) echo "Using targethost $targethost." >&4
2719 esac
2720 locincpth=' '
2721 loclibpth=' '
2722 case "$croak" in
2723 y) echo "Cannot continue, aborting." >&4; exit 1 ;;
2724 esac
2725 case "$src" in
2726 /*) run=$src/Cross/run
2727 targetmkdir=$src/Cross/mkdir
2728 to=$src/Cross/to
2729 from=$src/Cross/from
2730 ;;
2731 *) pwd=`$test -f ../Configure & cd ..; pwd`
2732 run=$pwd/Cross/run
2733 targetmkdir=$pwd/Cross/mkdir
2734 to=$pwd/Cross/to
2735 from=$pwd/Cross/from
2736 ;;
2737 esac
2738 case "$targetrun" in
2739 '') targetrun=ssh ;;
2740 esac
2741 case "$targetto" in
2742 '') targetto=scp ;;
2743 esac
2744 case "$targetfrom" in
2745 '') targetfrom=scp ;;
2746 esac
2747 run=$run-$targetrun
2748 to=$to-$targetto
2749 from=$from-$targetfrom
2750 case "$targetdir" in
2751 '') targetdir=/tmp
2752 echo "Guessing targetdir $targetdir." >&4
2753 ;;
2754 esac
2755 case "$targetuser" in
2756 '') targetuser=root
2757 echo "Guessing targetuser $targetuser." >&4
2758 ;;
2759 esac
2760 case "$targetfrom" in
2761 scp) q=-q ;;
2762 *) q='' ;;
2763 esac
2764 case "$targetrun" in
2765 ssh|rsh)
2766 cat >$run <<EOF
2767#!/bin/sh
2768case "\$1" in
2769-cwd)
2770 shift
2771 cwd=\$1
2772 shift
2773 ;;
2774esac
2775case "\$cwd" in
2776'') cwd=$targetdir ;;
2777esac
2778exe=\$1
2779shift
2780if $test ! -f \$exe.xok; then
2781 $to \$exe
2782 $touch \$exe.xok
2783fi
2784$targetrun -l $targetuser $targethost "cd \$cwd && ./\$exe \$@"
2785EOF
2786 ;;
2787 *) echo "Unknown targetrun '$targetrun'" >&4
2788 exit 1
2789 ;;
2790 esac
2791 case "$targetmkdir" in
2792 */Cross/mkdir)
2793 cat >$targetmkdir <<EOF
2794#!/bin/sh
2795$targetrun -l $targetuser $targethost "mkdir -p \$@"
2796EOF
2797 $chmod a+rx $targetmkdir
2798 ;;
2799 *) echo "Unknown targetmkdir '$targetmkdir'" >&4
2800 exit 1
2801 ;;
2802 esac
2803 case "$targetto" in
2804 scp|rcp)
2805 cat >$to <<EOF
2806#!/bin/sh
2807for f in \$@
2808do
2809 case "\$f" in
2810 /*)
2811 $targetmkdir \`dirname \$f\`
2812 $targetto $q \$f $targetuser@$targethost:\$f || exit 1
2813 ;;
2814 *)
2815 $targetmkdir $targetdir/\`dirname \$f\`
2816 $targetto $q \$f $targetuser@$targethost:$targetdir/\$f || exit 1
2817 ;;
2818 esac
2819done
2820exit 0
2821EOF
2822 ;;
2823 cp) cat >$to <<EOF
2824#!/bin/sh
2825for f in \$@
2826do
2827 case "\$f" in
2828 /*)
2829 $mkdir -p $targetdir/\`dirname \$f\`
2830 $cp \$f $targetdir/\$f || exit 1
2831 ;;
2832 *)
2833 $targetmkdir $targetdir/\`dirname \$f\`
2834 $cp \$f $targetdir/\$f || exit 1
2835 ;;
2836 esac
2837done
2838exit 0
2839EOF
2840 ;;
2841 *) echo "Unknown targetto '$targetto'" >&4
2842 exit 1
2843 ;;
2844 esac
2845 case "$targetfrom" in
2846 scp|rcp)
2847 cat >$from <<EOF
2848#!/bin/sh
2849for f in \$@
2850do
2851 $rm -f \$f
2852 $targetfrom $q $targetuser@$targethost:$targetdir/\$f . || exit 1
2853done
2854exit 0
2855EOF
2856 ;;
2857 cp) cat >$from <<EOF
2858#!/bin/sh
2859for f in \$@
2860do
2861 $rm -f \$f
2862 cp $targetdir/\$f . || exit 1
2863done
2864exit 0
2865EOF
2866 ;;
2867 *) echo "Unknown targetfrom '$targetfrom'" >&4
2868 exit 1
2869 ;;
2870 esac
2871 if $test ! -f $run; then
2872 echo "Target 'run' script '$run' not found." >&4
2873 else
2874 $chmod a+rx $run
2875 fi
2876 if $test ! -f $to; then
2877 echo "Target 'to' script '$to' not found." >&4
2878 else
2879 $chmod a+rx $to
2880 fi
2881 if $test ! -f $from; then
2882 echo "Target 'from' script '$from' not found." >&4
2883 else
2884 $chmod a+rx $from
2885 fi
2886 if $test ! -f $run -o ! -f $to -o ! -f $from; then
2887 exit 1
2888 fi
2889 cat >&4 <<EOF
2890Using '$run' for remote execution,
2891and '$from' and '$to'
2892for remote file transfer.
2893EOF
2894 ;;
2895*) run=''
2896 to=:
2897 from=:
2898 usecrosscompile='undef'
2899 targetarch=''
2900 ;;
2901esac
2902
2903: see whether [:lower:] and [:upper:] are supported character classes
2904echo " "
2905case "`echo AbyZ | $tr '[:lower:]' '[:upper:]' 2>/dev/null`" in
2906ABYZ)
2907 echo "Good, your tr supports [:lower:] and [:upper:] to convert case." >&4
2908 up='[:upper:]'
2909 low='[:lower:]'
2910 ;;
2911*) # There is a discontinuity in EBCDIC between 'R' and 'S'
2912 # (0xd9 and 0xe2), therefore that is a nice testing point.
2913 if test "X$up" = X -o "X$low" = X; then
2914 case "`echo RS | $tr '[R-S]' '[r-s]' 2>/dev/null`" in
2915 rs) up='[A-Z]'
2916 low='[a-z]'
2917 ;;
2918 esac
2919 fi
2920 if test "X$up" = X -o "X$low" = X; then
2921 case "`echo RS | $tr R-S r-s 2>/dev/null`" in
2922 rs) up='A-Z'
2923 low='a-z'
2924 ;;
2925 esac
2926 fi
2927 if test "X$up" = X -o "X$low" = X; then
2928 case "`echo RS | od -x 2>/dev/null`" in
2929 *D9E2*|*d9e2*)
2930 echo "Hey, this might be EBCDIC." >&4
2931 if test "X$up" = X -o "X$low" = X; then
2932 case "`echo RS | $tr '[A-IJ-RS-Z]' '[a-ij-rs-z]' 2>/dev/null`" in
2933 rs) up='[A-IJ-RS-Z]'
2934 low='[a-ij-rs-z]'
2935 ;;
2936 esac
2937 fi
2938 if test "X$up" = X -o "X$low" = X; then
2939 case "`echo RS | $tr A-IJ-RS-Z a-ij-rs-z 2>/dev/null`" in
2940 rs) up='A-IJ-RS-Z'
2941 low='a-ij-rs-z'
2942 ;;
2943 esac
2944 fi
2945 ;;
2946 esac
2947 fi
2948esac
2949case "`echo RS | $tr \"$up\" \"$low\" 2>/dev/null`" in
2950rs)
2951 echo "Using $up and $low to convert case." >&4
2952 ;;
2953*)
2954 echo "I don't know how to translate letters from upper to lower case." >&4
2955 echo "Your tr is not acting any way I know of." >&4
2956 exit 1
2957 ;;
2958esac
2959: set up the translation script tr, must be called with ./tr of course
2960cat >tr <<EOSC
2961$startsh
2962case "\$1\$2" in
2963'[A-Z][a-z]') exec $tr '$up' '$low';;
2964'[a-z][A-Z]') exec $tr '$low' '$up';;
2965esac
2966exec $tr "\$@"
2967EOSC
2968chmod +x tr
2969$eunicefix tr
2970
2971: Try to determine whether config.sh was made on this system
2972case "$config_sh" in
2973'')
2974myuname=`$uname -a 2>/dev/null`
2975$test -z "$myuname" && myuname=`hostname 2>/dev/null`
2976# tr '[A-Z]' '[a-z]' would not work in EBCDIC
2977# because the A-Z/a-z are not consecutive.
2978myuname=`echo $myuname | $sed -e 's/^[^=]*=//' -e 's/\///g' | \
2979 ./tr '[A-Z]' '[a-z]' | $tr $trnl ' '`
2980newmyuname="$myuname"
2981dflt=n
2982case "$knowitall" in
2983'')
2984 if test -f ../config.sh; then
2985 if $contains myuname= ../config.sh >/dev/null 2>&1; then
2986 eval "`grep myuname= ../config.sh`"
2987 fi
2988 if test "X$myuname" = "X$newmyuname"; then
2989 dflt=y
2990 fi
2991 fi
2992 ;;
2993*) dflt=y;;
2994esac
2995
2996: Get old answers from old config file if Configure was run on the
2997: same system, otherwise use the hints.
2998hint=default
2999cd ..
3000if test -f config.sh; then
3001 echo " "
3002 rp="I see a config.sh file. Shall I use it to set the defaults?"
3003 . UU/myread
3004 case "$ans" in
3005 n*|N*) echo "OK, I'll ignore it."
3006 mv config.sh config.sh.old
3007 myuname="$newmyuname"
3008 ;;
3009 *) echo "Fetching default answers from your old config.sh file..." >&4
3010 tmp_n="$n"
3011 tmp_c="$c"
3012 tmp_sh="$sh"
3013 . ./config.sh
3014 cp config.sh UU
3015 n="$tmp_n"
3016 c="$tmp_c"
3017 : Older versions did not always set $sh. Catch re-use of such
3018 : an old config.sh.
3019 case "$sh" in
3020 '') sh="$tmp_sh" ;;
3021 esac
3022 hint=previous
3023 ;;
3024 esac
3025fi
3026. ./UU/checkcc
3027if test ! -f config.sh; then
3028 $cat <<EOM
3029
3030First time through, eh? I have some defaults handy for some systems
3031that need some extra help getting the Configure answers right:
3032
3033EOM
3034 (cd $src/hints; ls -C *.sh) | $sed 's/\.sh/ /g' >&4
3035 dflt=''
3036 : Half the following guesses are probably wrong... If you have better
3037 : tests or hints, please send them to perlbug@perl.org
3038 : The metaconfig authors would also appreciate a copy...
3039 $test -f /irix && osname=irix
3040 $test -f /xenix && osname=sco_xenix
3041 $test -f /dynix && osname=dynix
3042 $test -f /dnix && osname=dnix
3043 $test -f /lynx.os && osname=lynxos
3044 $test -f /unicos && osname=unicos && osvers=`$uname -r`
3045 $test -f /unicosmk && osname=unicosmk && osvers=`$uname -r`
3046 $test -f /unicosmk.ar && osname=unicosmk && osvers=`$uname -r`
3047 $test -f /bin/mips && /bin/mips && osname=mips
3048 $test -d /NextApps && set X `hostinfo | grep 'NeXT Mach.*:' | \
3049 $sed -e 's/://' -e 's/\./_/'` && osname=next && osvers=$4
3050 $test -d /usr/apollo/bin && osname=apollo
3051 $test -f /etc/saf/_sactab && osname=svr4
3052 $test -d /usr/include/minix && osname=minix
3053 $test -f /system/gnu_library/bin/ar.pm && osname=vos
3054 if $test -d /MachTen -o -d /MachTen_Folder; then
3055 osname=machten
3056 if $test -x /sbin/version; then
3057 osvers=`/sbin/version | $awk '{print $2}' |
3058 $sed -e 's/[A-Za-z]$//'`
3059 elif $test -x /usr/etc/version; then
3060 osvers=`/usr/etc/version | $awk '{print $2}' |
3061 $sed -e 's/[A-Za-z]$//'`
3062 else
3063 osvers="$2.$3"
3064 fi
3065 fi
3066
3067 $test -f /sys/posix.dll &&
3068 $test -f /usr/bin/what &&
3069 set X `/usr/bin/what /sys/posix.dll` &&
3070 $test "$3" = UWIN &&
3071 osname=uwin &&
3072 osvers="$5"
3073
3074 if $test -f $uname; then
3075 set X $myuname
3076 shift
3077
3078 case "$5" in
3079 fps*) osname=fps ;;
3080 mips*)
3081 case "$4" in
3082 umips) osname=umips ;;
3083 *) osname=mips ;;
3084 esac;;
3085 [23]100) osname=mips ;;
3086 next*) osname=next ;;
3087 i386*)
3088 tmp=`/bin/uname -X 2>/dev/null|awk '/3\.2v[45]/{ print $(NF) }'`
3089 if $test "$tmp" != "" -a "$3" = "3.2" -a -f '/etc/systemid'; then
3090 osname='sco'
3091 osvers=$tmp
3092 elif $test -f /etc/kconfig; then
3093 osname=isc
3094 if test "$lns" = "$ln -s"; then
3095 osvers=4
3096 elif $contains _SYSV3 /usr/include/stdio.h > /dev/null 2>&1 ; then
3097 osvers=3
3098 elif $contains _POSIX_SOURCE /usr/include/stdio.h > /dev/null 2>&1 ; then
3099 osvers=2
3100 fi
3101 fi
3102 tmp=''
3103 ;;
3104 pc*)
3105 if test -n "$DJGPP"; then
3106 osname=dos
3107 osvers=djgpp
3108 fi
3109 ;;
3110 esac
3111
3112 case "$1" in
3113 aix) osname=aix
3114 tmp=`( (oslevel) 2>/dev/null || echo "not found") 2>&1`
3115 case "$tmp" in
3116 # oslevel can fail with:
3117 # oslevel: Unable to acquire lock.
3118 *not\ found) osvers="$4"."$3" ;;
3119 '<3240'|'<>3240') osvers=3.2.0 ;;
3120 '=3240'|'>3240'|'<3250'|'<>3250') osvers=3.2.4 ;;
3121 '=3250'|'>3250') osvers=3.2.5 ;;
3122 *) osvers=$tmp;;
3123 esac
3124 ;;
3125 bsd386) osname=bsd386
3126 osvers=`$uname -r`
3127 ;;
3128 cygwin*) osname=cygwin
3129 osvers="$3"
3130 ;;
3131 *dc.osx) osname=dcosx
3132 osvers="$3"
3133 ;;
3134 dnix) osname=dnix
3135 osvers="$3"
3136 ;;
3137 domainos) osname=apollo
3138 osvers="$3"
3139 ;;
3140 dgux) osname=dgux
3141 osvers="$3"
3142 ;;
3143 dragonfly) osname=dragonfly
3144 osvers="$3"
3145 ;;
3146 dynixptx*) osname=dynixptx
3147 osvers=`echo "$4"|sed 's/^v//'`
3148 ;;
3149 freebsd) osname=freebsd
3150 osvers="$3" ;;
3151 genix) osname=genix ;;
3152 gnu) osname=gnu
3153 osvers="$3" ;;
3154 hp*) osname=hpux
3155 osvers=`echo "$3" | $sed 's,.*\.\([0-9]*\.[0-9]*\),\1,'`
3156 ;;
3157 irix*) osname=irix
3158 case "$3" in
3159 4*) osvers=4 ;;
3160 5*) osvers=5 ;;
3161 *) osvers="$3" ;;
3162 esac
3163 ;;
3164 linux) osname=linux
3165 case "$3" in
3166 *) osvers="$3" ;;
3167 esac
3168 ;;
3169 MiNT) osname=mint
3170 ;;
3171 netbsd*) osname=netbsd
3172 osvers="$3"
3173 ;;
3174 news-os) osvers="$3"
3175 case "$3" in
3176 4*) osname=newsos4 ;;
3177 *) osname=newsos ;;
3178 esac
3179 ;;
3180 next*) osname=next ;;
3181 nonstop-ux) osname=nonstopux ;;
3182 openbsd) osname=openbsd
3183 osvers="$3"
3184 ;;
3185 os2) osname=os2
3186 osvers="$4"
3187 ;;
3188 POSIX-BC | posix-bc ) osname=posix-bc
3189 osvers="$3"
3190 ;;
3191 powerux | power_ux | powermax_os | powermaxos | \
3192 powerunix | power_unix) osname=powerux
3193 osvers="$3"
3194 ;;
3195 qnx) osname=qnx
3196 osvers="$4"
3197 ;;
3198 solaris) osname=solaris
3199 case "$3" in
3200 5*) osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3201 *) osvers="$3" ;;
3202 esac
3203 ;;
3204 sunos) osname=sunos
3205 case "$3" in
3206 5*) osname=solaris
3207 osvers=`echo $3 | $sed 's/^5/2/g'` ;;
3208 *) osvers="$3" ;;
3209 esac
3210 ;;
3211 titanos) osname=titanos
3212 case "$3" in
3213 1*) osvers=1 ;;
3214 2*) osvers=2 ;;
3215 3*) osvers=3 ;;
3216 4*) osvers=4 ;;
3217 *) osvers="$3" ;;
3218 esac
3219 ;;
3220 ultrix) osname=ultrix
3221 osvers="$3"
3222 ;;
3223 osf1|mls+) case "$5" in
3224 alpha)
3225 osname=dec_osf
3226 osvers=`sizer -v | awk -FUNIX '{print $2}' | awk '{print $1}' | tr '[A-Z]' '[a-z]' | sed 's/^[xvt]//'`
3227 case "$osvers" in
3228 [1-9].[0-9]*) ;;
3229 *) osvers=`echo "$3" | sed 's/^[xvt]//'` ;;
3230 esac
3231 ;;
3232 hp*) osname=hp_osf1 ;;
3233 mips) osname=mips_osf1 ;;
3234 esac
3235 ;;
3236 # UnixWare 7.1.2 is known as Open UNIX 8
3237 openunix|unixware) osname=svr5
3238 osvers="$4"
3239 ;;
3240 uts) osname=uts
3241 osvers="$3"
3242 ;;
3243 vos) osvers="$3"
3244 ;;
3245 $2) case "$osname" in
3246 *isc*) ;;
3247 *freebsd*) ;;
3248 svr*)
3249 : svr4.x or possibly later
3250 case "svr$3" in
3251 ${osname}*)
3252 osname=svr$3
3253 osvers=$4
3254 ;;
3255 esac
3256 case "$osname" in
3257 svr4.0)
3258 : Check for ESIX
3259 if test -f /stand/boot ; then
3260 eval `grep '^INITPROG=[a-z/0-9]*$' /stand/boot`
3261 if test -n "$INITPROG" -a -f "$INITPROG"; then
3262 isesix=`strings -a $INITPROG|grep 'ESIX SYSTEM V/386 Release 4.0'`
3263 if test -n "$isesix"; then
3264 osname=esix4
3265 fi
3266 fi
3267 fi
3268 ;;
3269 esac
3270 ;;
3271 *) if test -f /etc/systemid; then
3272 osname=sco
3273 set `echo $3 | $sed 's/\./ /g'` $4
3274 if $test -f $src/hints/sco_$1_$2_$3.sh; then
3275 osvers=$1.$2.$3
3276 elif $test -f $src/hints/sco_$1_$2.sh; then
3277 osvers=$1.$2
3278 elif $test -f $src/hints/sco_$1.sh; then
3279 osvers=$1
3280 fi
3281 else
3282 case "$osname" in
3283 '') : Still unknown. Probably a generic Sys V.
3284 osname="sysv"
3285 osvers="$3"
3286 ;;
3287 esac
3288 fi
3289 ;;
3290 esac
3291 ;;
3292 *) case "$osname" in
3293 '') : Still unknown. Probably a generic BSD.
3294 osname="$1"
3295 osvers="$3"
3296 ;;
3297 esac
3298 ;;
3299 esac
3300 else
3301 if test -f /vmunix -a -f $src/hints/news_os.sh; then
3302 (what /vmunix | UU/tr '[A-Z]' '[a-z]') > UU/kernel.what 2>&1
3303 if $contains news-os UU/kernel.what >/dev/null 2>&1; then
3304 osname=news_os
3305 fi
3306 $rm -f UU/kernel.what
3307 elif test -d c:/. -o -n "$is_os2" ; then
3308 set X $myuname
3309 osname=os2
3310 osvers="$5"
3311 fi
3312 fi
3313
3314 case "$targetarch" in
3315 '') ;;
3316 *) hostarch=$osname
3317 osname=`echo $targetarch|sed 's,^[^-]*-,,'`
3318 osvers=''
3319 ;;
3320 esac
3321
3322 : Now look for a hint file osname_osvers, unless one has been
3323 : specified already.
3324 case "$hintfile" in
3325 ''|' ')
3326 file=`echo "${osname}_${osvers}" | $sed -e 's%\.%_%g' -e 's%_$%%'`
3327 : Also try without trailing minor version numbers.
3328 xfile=`echo $file | $sed -e 's%_[^_]*$%%'`
3329 xxfile=`echo $xfile | $sed -e 's%_[^_]*$%%'`
3330 xxxfile=`echo $xxfile | $sed -e 's%_[^_]*$%%'`
3331 xxxxfile=`echo $xxxfile | $sed -e 's%_[^_]*$%%'`
3332 case "$file" in
3333 '') dflt=none ;;
3334 *) case "$osvers" in
3335 '') dflt=$file
3336 ;;
3337 *) if $test -f $src/hints/$file.sh ; then
3338 dflt=$file
3339 elif $test -f $src/hints/$xfile.sh ; then
3340 dflt=$xfile
3341 elif $test -f $src/hints/$xxfile.sh ; then
3342 dflt=$xxfile
3343 elif $test -f $src/hints/$xxxfile.sh ; then
3344 dflt=$xxxfile
3345 elif $test -f $src/hints/$xxxxfile.sh ; then
3346 dflt=$xxxxfile
3347 elif $test -f "$src/hints/${osname}.sh" ; then
3348 dflt="${osname}"
3349 else
3350 dflt=none
3351 fi
3352 ;;
3353 esac
3354 ;;
3355 esac
3356 if $test -f Policy.sh ; then
3357 case "$dflt" in
3358 *Policy*) ;;
3359 none) dflt="Policy" ;;
3360 *) dflt="Policy $dflt" ;;
3361 esac
3362 fi
3363 ;;
3364 *)
3365 dflt=`echo $hintfile | $sed 's/\.sh$//'`
3366 ;;
3367 esac
3368
3369 if $test -f Policy.sh ; then
3370 $cat <<EOM
3371
3372There's also a Policy hint file available, which should make the
3373site-specific (policy) questions easier to answer.
3374EOM
3375
3376 fi
3377
3378 $cat <<EOM
3379
3380You may give one or more space-separated answers, or "none" if appropriate.
3381A well-behaved OS will have no hints, so answering "none" or just "Policy"
3382is a good thing. DO NOT give a wrong version or a wrong OS.
3383
3384EOM
3385
3386 rp="Which of these apply, if any?"
3387 . UU/myread
3388 tans=$ans
3389 for file in $tans; do
3390 if $test X$file = XPolicy -a -f Policy.sh; then
3391 . Policy.sh
3392 $cat Policy.sh >> UU/config.sh
3393 elif $test -f $src/hints/$file.sh; then
3394 . $src/hints/$file.sh
3395 $cat $src/hints/$file.sh >> UU/config.sh
3396 elif $test X"$tans" = X -o X"$tans" = Xnone ; then
3397 : nothing
3398 else
3399 : Give one chance to correct a possible typo.
3400 echo "$file.sh does not exist"
3401 dflt=$file
3402 rp="hint to use instead?"
3403 . UU/myread
3404 for file in $ans; do
3405 if $test -f "$src/hints/$file.sh"; then
3406 . $src/hints/$file.sh
3407 $cat $src/hints/$file.sh >> UU/config.sh
3408 elif $test X$ans = X -o X$ans = Xnone ; then
3409 : nothing
3410 else
3411 echo "$file.sh does not exist -- ignored."
3412 fi
3413 done
3414 fi
3415 done
3416
3417 hint=recommended
3418 : Remember our hint file for later.
3419 if $test -f "$src/hints/$file.sh" ; then
3420 hintfile="$file"
3421 else
3422 hintfile=''
3423 fi
3424fi
3425cd UU
3426;;
3427*)
3428 echo " "
3429 echo "Fetching default answers from $config_sh..." >&4
3430 tmp_n="$n"
3431 tmp_c="$c"
3432 cd ..
3433 cp $config_sh config.sh 2>/dev/null
3434 chmod +w config.sh
3435 . ./config.sh
3436 cd UU
3437 cp ../config.sh .
3438 n="$tmp_n"
3439 c="$tmp_c"
3440 hint=previous
3441 ;;
3442esac
3443test "$override" && . ./optdef.sh
3444
3445: Restore computed paths
3446for file in $loclist $trylist; do
3447 eval $file="\$_$file"
3448done
3449
3450cat << EOM
3451
3452Configure uses the operating system name and version to set some defaults.
3453The default value is probably right if the name rings a bell. Otherwise,
3454since spelling matters for me, either accept the default or answer "none"
3455to leave it blank.
3456
3457EOM
3458case "$osname" in
3459 ''|' ')
3460 case "$hintfile" in
3461 ''|' '|none) dflt=none ;;
3462 *) dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/_.*$//'` ;;
3463 esac
3464 ;;
3465 *) dflt="$osname" ;;
3466esac
3467rp="Operating system name?"
3468. ./myread
3469case "$ans" in
3470none) osname='' ;;
3471*) osname=`echo "$ans" | $sed -e 's/[ ][ ]*/_/g' | ./tr '[A-Z]' '[a-z]'`;;
3472esac
3473echo " "
3474case "$osvers" in
3475 ''|' ')
3476 case "$hintfile" in
3477 ''|' '|none) dflt=none ;;
3478 *) dflt=`echo $hintfile | $sed -e 's/\.sh$//' -e 's/^[^_]*//'`
3479 dflt=`echo $dflt | $sed -e 's/^_//' -e 's/_/./g'`
3480 case "$dflt" in
3481 ''|' ') dflt=none ;;
3482 esac
3483 ;;
3484 esac
3485 ;;
3486 *) dflt="$osvers" ;;
3487esac
3488rp="Operating system version?"
3489. ./myread
3490case "$ans" in
3491none) osvers='' ;;
3492*) osvers="$ans" ;;
3493esac
3494
3495
3496. ./posthint.sh
3497
3498: who configured the system
3499cf_time=`LC_ALL=C; LANGUAGE=C; export LC_ALL; export LANGUAGE; $date 2>&1`
3500case "$cf_by" in
3501"")
3502 cf_by=`(logname) 2>/dev/null`
3503 case "$cf_by" in
3504 "")
3505 cf_by=`(whoami) 2>/dev/null`
3506 case "$cf_by" in
3507 "") cf_by=unknown ;;
3508 esac ;;
3509 esac ;;
3510esac
3511
3512: set up the script used to warn in case of inconsistency
3513cat <<EOS >whoa
3514$startsh
3515EOS
3516cat <<'EOSC' >>whoa
3517dflt=y
3518echo " "
3519echo "*** WHOA THERE!!! ***" >&4
3520echo " The $hint value for \$$var on this machine was \"$was\"!" >&4
3521rp=" Keep the $hint value?"
3522. ./myread
3523case "$ans" in
3524y) td=$was; tu=$was;;
3525esac
3526EOSC
3527
3528: function used to set $1 to $val
3529setvar='var=$1; eval "was=\$$1"; td=$define; tu=$undef;
3530case "$val$was" in
3531$define$undef) . ./whoa; eval "$var=\$td";;
3532$undef$define) . ./whoa; eval "$var=\$tu";;
3533*) eval "$var=$val";;
3534esac'
3535
3536case "$usesocks" in
3537$define|true|[yY]*) dflt='y';;
3538*) dflt='n';;
3539esac
3540cat <<EOM
3541
3542Perl can be built to use the SOCKS proxy protocol library. To do so,
3543Configure must be run with -Dusesocks. If you use SOCKS you also need
3544to use the PerlIO abstraction layer, this will be implicitly selected.
3545
3546If this doesn't make any sense to you, just accept the default '$dflt'.
3547EOM
3548rp='Build Perl for SOCKS?'
3549. ./myread
3550case "$ans" in
3551y|Y) val="$define" ;;
3552*) val="$undef" ;;
3553esac
3554set usesocks
3555eval $setvar
3556
3557case "$usesocks" in
3558$define|true|[yY]*) useperlio="$define";;
3559esac
3560
3561case "$useperlio" in
3562$define|true|[yY]*|'') dflt='y';;
3563*) dflt='n';;
3564esac
3565cat <<EOM
3566
3567Previous version of $package used the standard IO mechanisms as
3568defined in <stdio.h>. Versions 5.003_02 and later of $package allow
3569alternate IO mechanisms via the PerlIO abstraction layer, but the
3570stdio mechanism is still available if needed. The abstraction layer
3571can use AT&T's sfio (if you already have sfio installed) or regular stdio.
3572Using PerlIO with sfio may cause problems with some extension modules.
3573
3574If this doesn't make any sense to you, just accept the default '$dflt'.
3575EOM
3576rp='Use the PerlIO abstraction layer?'
3577. ./myread
3578case "$ans" in
3579y|Y)
3580 val="$define"
3581 ;;
3582*)
3583 echo "Ok, doing things the stdio way."
3584 val="$undef"
3585 ;;
3586esac
3587set useperlio
3588eval $setvar
3589
3590case "$usesocks" in
3591$define|true|[yY]*)
3592 case "$useperlio" in
3593 $define|true|[yY]*) ;;
3594 *) cat >&4 <<EOM
3595
3596You are using the SOCKS proxy protocol library which means that you
3597should also use the PerlIO layer. You may be headed for trouble.
3598
3599EOM
3600 ;;
3601 esac
3602 ;;
3603esac
3604
3605
3606case "$usethreads" in
3607$define|true|[yY]*) dflt='y';;
3608*) # Catch case where user specified ithreads or 5005threads but
3609 # forgot -Dusethreads (A.D. 4/2002)
3610 case "$useithreads$use5005threads" in
3611 *$define*)
3612 case "$useperlio" in
3613 "$define") dflt='y' ;;
3614 *) dflt='n' ;;
3615 esac
3616 ;;
3617 *) dflt='n';;
3618 esac
3619 ;;
3620esac
3621cat <<EOM
3622
3623Perl can be built to take advantage of threads on some systems.
3624To do so, Configure can be run with -Dusethreads.
3625
3626Note that Perl built with threading support runs slightly slower
3627and uses more memory than plain Perl. The current implementation
3628is believed to be stable, but it is fairly new, and so should be
3629treated with caution.
3630
3631If this doesn't make any sense to you, just accept the default '$dflt'.
3632EOM
3633rp='Build a threading Perl?'
3634. ./myread
3635case "$ans" in
3636y|Y) val="$define" ;;
3637*) val="$undef" ;;
3638esac
3639set usethreads
3640eval $setvar
3641
3642case "$usethreads" in
3643$define)
3644 $cat <<EOM
3645
3646Since release 5.6, Perl has had two different threading implementations,
3647the newer interpreter-based version (ithreads) with one interpreter per
3648thread, and the older 5.005 version (5005threads).
3649The 5005threads version is effectively unmaintained and will probably be
3650removed in Perl 5.10, so there should be no need to build a Perl using it
3651unless needed for backwards compatibility with some existing 5.005threads
3652code.
3653
3654EOM
3655 : Default to ithreads unless overridden on command line or with
3656 : old config.sh
3657 dflt='y'
3658 case "$use5005threads" in
3659 $define|true|[yY]*) dflt='n';;
3660 esac
3661 case "$useithreads" in
3662 $undef|false|[nN]*) dflt='n';;
3663 esac
3664 rp='Use the newer interpreter-based ithreads?'
3665 . ./myread
3666 case "$ans" in
3667 y|Y) val="$define" ;;
3668 *) val="$undef" ;;
3669 esac
3670 set useithreads
3671 eval $setvar
3672 : Now set use5005threads to the opposite value.
3673 case "$useithreads" in
3674 $define) val="$undef" ;;
3675 *) val="$define" ;;
3676 esac
3677 set use5005threads
3678 eval $setvar
3679 ;;
3680*)
3681 useithreads="$undef"
3682 use5005threads="$undef"
3683 ;;
3684esac
3685
3686case "$useithreads$use5005threads" in
3687"$define$define")
3688 $cat >&4 <<EOM
3689
3690You cannot have both the ithreads and the 5.005 threads enabled
3691at the same time. Disabling the 5.005 threads since they are
3692much less stable than the ithreads.
3693
3694EOM
3695 use5005threads="$undef"
3696 ;;
3697esac
3698
3699if test X"$usethreads" = "X$define" -a "X$useperlio" = "Xundef"; then
3700 cat >&4 <<EOF
3701***
3702*** To build with ithreads you must also use the PerlIO layer.
3703*** Cannot continue, aborting.
3704***
3705EOF
3706 exit 1
3707fi
3708
3709case "$d_oldpthreads" in
3710'') : Configure tests would be welcome here. For now, assume undef.
3711 val="$undef" ;;
3712*) val="$d_oldpthreads" ;;
3713esac
3714set d_oldpthreads
3715eval $setvar
3716
3717
3718: Look for a hint-file generated 'call-back-unit'. If the
3719: user has specified that a threading perl is to be built,
3720: we may need to set or change some other defaults.
3721if $test -f usethreads.cbu; then
3722 echo "Your platform has some specific hints regarding threaded builds, using them..."
3723 . ./usethreads.cbu
3724else
3725 case "$usethreads" in
3726 "$define"|true|[yY]*)
3727 $cat <<EOM
3728(Your platform does not have any specific hints for threaded builds.
3729 Assuming POSIX threads, then.)
3730EOM
3731 ;;
3732 esac
3733fi
3734
3735cat <<EOM
3736
3737Perl can be built so that multiple Perl interpreters can coexist
3738within the same Perl executable.
3739EOM
3740
3741case "$useithreads" in
3742$define)
3743 cat <<EOM
3744This multiple interpreter support is required for interpreter-based threads.
3745EOM
3746 val="$define"
3747 ;;
3748*) case "$usemultiplicity" in
3749 $define|true|[yY]*) dflt='y';;
3750 *) dflt='n';;
3751 esac
3752 echo " "
3753 echo "If this doesn't make any sense to you, just accept the default '$dflt'."
3754 rp='Build Perl for multiplicity?'
3755 . ./myread
3756 case "$ans" in
3757 y|Y) val="$define" ;;
3758 *) val="$undef" ;;
3759 esac
3760 ;;
3761esac
3762set usemultiplicity
3763eval $setvar
3764
3765
3766case "$usemorebits" in
3767"$define"|true|[yY]*)
3768 use64bitint="$define"
3769 uselongdouble="$define"
3770 usemorebits="$define"
3771 ;;
3772*) usemorebits="$undef"
3773 ;;
3774esac
3775
3776: make some quick guesses about what we are up against
3777echo " "
3778$echo $n "Hmm... $c"
3779echo exit 1 >bsd
3780echo exit 1 >usg
3781echo exit 1 >v7
3782echo exit 1 >osf1
3783echo exit 1 >eunice
3784echo exit 1 >xenix
3785echo exit 1 >venix
3786echo exit 1 >os2
3787d_bsd="$undef"
3788$cat /usr/include/signal.h /usr/include/sys/signal.h >foo 2>/dev/null
3789if test -f /osf_boot || $contains 'OSF/1' /usr/include/ctype.h >/dev/null 2>&1
3790then
3791 echo "Looks kind of like an OSF/1 system, but we'll see..."
3792 echo exit 0 >osf1
3793elif test `echo abc | $tr a-z A-Z` = Abc ; then
3794 xxx=`./loc addbib blurfl $pth`
3795 if $test -f $xxx; then
3796 echo "Looks kind of like a USG system with BSD features, but we'll see..."
3797 echo exit 0 >bsd
3798 echo exit 0 >usg
3799 else
3800 if $contains SIGTSTP foo >/dev/null 2>&1 ; then
3801 echo "Looks kind of like an extended USG system, but we'll see..."
3802 else
3803 echo "Looks kind of like a USG system, but we'll see..."
3804 fi
3805 echo exit 0 >usg
3806 fi
3807elif $contains SIGTSTP foo >/dev/null 2>&1 ; then
3808 echo "Looks kind of like a BSD system, but we'll see..."
3809 d_bsd="$define"
3810 echo exit 0 >bsd
3811else
3812 echo "Looks kind of like a Version 7 system, but we'll see..."
3813 echo exit 0 >v7
3814fi
3815case "$eunicefix" in
3816*unixtovms*)
3817 $cat <<'EOI'
3818There is, however, a strange, musty smell in the air that reminds me of
3819something...hmm...yes...I've got it...there's a VMS nearby, or I'm a Blit.
3820EOI
3821 echo exit 0 >eunice
3822 d_eunice="$define"
3823: it so happens the Eunice I know will not run shell scripts in Unix format
3824 ;;
3825*)
3826 echo " "
3827 echo "Congratulations. You aren't running Eunice."
3828 d_eunice="$undef"
3829 ;;
3830esac
3831: Detect OS2. The p_ variable is set above in the Head.U unit.
3832: Note that this also -- wrongly -- detects e.g. dos-djgpp, which also uses
3833: semicolon as a patch separator
3834case "$p_" in
3835:) ;;
3836*)
3837 $cat <<'EOI'
3838I have the feeling something is not exactly right, however...don't tell me...
3839lemme think...does HAL ring a bell?...no, of course, you're only running OS/2!
3840(Or you may be running DOS with DJGPP.)
3841EOI
3842 echo exit 0 >os2
3843 ;;
3844esac
3845if test -f /xenix; then
3846 echo "Actually, this looks more like a XENIX system..."
3847 echo exit 0 >xenix
3848 d_xenix="$define"
3849else
3850 echo " "
3851 echo "It's not Xenix..."
3852 d_xenix="$undef"
3853fi
3854chmod +x xenix
3855$eunicefix xenix
3856if test -f /venix; then
3857 echo "Actually, this looks more like a VENIX system..."
3858 echo exit 0 >venix
3859else
3860 echo " "
3861 if ./xenix; then
3862 : null
3863 else
3864 echo "Nor is it Venix..."
3865 fi
3866fi
3867chmod +x bsd usg v7 osf1 eunice xenix venix os2
3868$eunicefix bsd usg v7 osf1 eunice xenix venix os2
3869$rm -f foo
3870
3871case "$cc" in
3872'') dflt=cc;;
3873*) dflt="$cc";;
3874esac
3875rp="Use which C compiler?"
3876. ./myread
3877cc="$ans"
3878
3879: See if they have not cc but they do have gcc
3880. ./trygcc
3881: Look for a hint-file generated 'call-back-unit'. Now that the
3882: user has specified the compiler, we may need to set or change some
3883: other defaults.
3884if $test -f cc.cbu; then
3885 . ./cc.cbu
3886fi
3887. ./checkcc
3888
3889echo " "
3890echo "Checking for GNU cc in disguise and/or its version number..." >&4
3891$cat >try.c <<EOM
3892#include <stdio.h>
3893int main() {
3894#ifdef __GNUC__
3895#ifdef __VERSION__
3896 printf("%s\n", __VERSION__);
3897#else
3898 printf("%s\n", "1");
3899#endif
3900#endif
3901 return(0);
3902}
3903EOM
3904if $cc -o try $ccflags $ldflags try.c; then
3905 gccversion=`$run ./try`
3906 case "$gccversion" in
3907 '') echo "You are not using GNU cc." ;;
3908 *) echo "You are using GNU cc $gccversion."
3909 ccname=gcc
3910 ;;
3911 esac
3912else
3913 echo " "
3914 echo "*** WHOA THERE!!! ***" >&4
3915 echo " Your C compiler \"$cc\" doesn't seem to be working!" >&4
3916 case "$knowitall" in
3917 '')
3918 echo " You'd better start hunting for one and let me know about it." >&4
3919 exit 1
3920 ;;
3921 esac
3922fi
3923$rm -f try try.*
3924case "$gccversion" in
39251*) cpp=`./loc gcc-cpp $cpp $pth` ;;
3926esac
3927case "$gccversion" in
3928'') gccosandvers='' ;;
3929*) gccshortvers=`echo "$gccversion"|sed 's/ .*//'`
3930 gccosandvers=`$cc -v 2>&1|grep '/specs$'|sed "s!.*/[^-/]*-[^-/]*-\([^-/]*\)/$gccshortvers/specs!\1!"`
3931 gccshortvers=''
3932 case "$gccosandvers" in
3933 $osname) gccosandvers='' ;; # linux gccs seem to have no linux osvers, grr
3934 $osname$osvers) ;; # looking good
3935 $osname*) cat <<EOM >&4
3936
3937*** WHOA THERE!!! ***
3938
3939 Your gcc has not been compiled for the exact release of
3940 your operating system ($gccosandvers versus $osname$osvers).
3941
3942 In general it is a good idea to keep gcc synchronized with
3943 the operating system because otherwise serious problems
3944 may ensue when trying to compile software, like Perl.
3945
3946 I'm trying to be optimistic here, though, and will continue.
3947 If later during the configuration and build icky compilation
3948 problems appear (headerfile conflicts being the most common
3949 manifestation), I suggest reinstalling the gcc to match
3950 your operating system release.
3951
3952EOM
3953 ;;
3954 *) gccosandvers='' ;; # failed to parse, better be silent
3955 esac
3956 ;;
3957esac
3958case "$ccname" in
3959'') ccname="$cc" ;;
3960esac
3961
3962# gcc 3.* complain about adding -Idirectories that they already know about,
3963# so we will take those off from locincpth.
3964case "$gccversion" in
39653*)
3966 echo "main(){}">try.c
3967 for incdir in $locincpth; do
3968 warn=`$cc $ccflags -I$incdir -c try.c 2>&1 | \
3969 grep '^c[cp]p*[01]: warning: changing search order '`
3970 if test "X$warn" != X; then
3971 locincpth=`echo " $locincpth " | sed "s! $incdir ! !"`
3972 fi
3973 done
3974 $rm -f try try.*
3975esac
3976
3977: decide how portable to be. Allow command line overrides.
3978case "$d_portable" in
3979"$undef") ;;
3980*) d_portable="$define" ;;
3981esac
3982
3983: set up shell script to do ~ expansion
3984cat >filexp <<EOSS
3985$startsh
3986: expand filename
3987case "\$1" in
3988 ~/*|~)
3989 echo \$1 | $sed "s|~|\${HOME-\$LOGDIR}|"
3990 ;;
3991 ~*)
3992 if $test -f /bin/csh; then
3993 /bin/csh -f -c "glob \$1"
3994 failed=\$?
3995 echo ""
3996 exit \$failed
3997 else
3998 name=\`$expr x\$1 : '..\([^/]*\)'\`
3999 dir=\`$sed -n -e "/^\${name}:/{s/^[^:]*:[^:]*:[^:]*:[^:]*:[^:]*:\([^:]*\).*"'\$'"/\1/" -e p -e q -e '}' </etc/passwd\`
4000 if $test ! -d "\$dir"; then
4001 me=\`basename \$0\`
4002 echo "\$me: can't locate home directory for: \$name" >&2
4003 exit 1
4004 fi
4005 case "\$1" in
4006 */*)
4007 echo \$dir/\`$expr x\$1 : '..[^/]*/\(.*\)'\`
4008 ;;
4009 *)
4010 echo \$dir
4011 ;;
4012 esac
4013 fi
4014 ;;
4015*)
4016 echo \$1
4017 ;;
4018esac
4019EOSS
4020chmod +x filexp
4021$eunicefix filexp
4022
4023: now set up to get a file name
4024cat <<EOS >getfile
4025$startsh
4026EOS
4027cat <<'EOSC' >>getfile
4028tilde=''
4029fullpath=''
4030already=''
4031skip=''
4032none_ok=''
4033exp_file=''
4034nopath_ok=''
4035orig_rp="$rp"
4036orig_dflt="$dflt"
4037case "$gfpth" in
4038'') gfpth='.' ;;
4039esac
4040
4041case "$fn" in
4042*\(*)
4043 : getfile will accept an answer from the comma-separated list
4044 : enclosed in parentheses even if it does not meet other criteria.
4045 expr "$fn" : '.*(\(.*\)).*' | $tr ',' $trnl >getfile.ok
4046 fn=`echo $fn | sed 's/(.*)//'`
4047 ;;
4048esac
4049
4050case "$fn" in
4051*:*)
4052 loc_file=`expr $fn : '.*:\(.*\)'`
4053 fn=`expr $fn : '\(.*\):.*'`
4054 ;;
4055esac
4056
4057case "$fn" in
4058*~*) tilde=true;;
4059esac
4060case "$fn" in
4061*/*) fullpath=true;;
4062esac
4063case "$fn" in
4064*+*) skip=true;;
4065esac
4066case "$fn" in
4067*n*) none_ok=true;;
4068esac
4069case "$fn" in
4070*e*) exp_file=true;;
4071esac
4072case "$fn" in
4073*p*) nopath_ok=true;;
4074esac
4075
4076case "$fn" in
4077*f*) type='File';;
4078*d*) type='Directory';;
4079*l*) type='Locate';;
4080esac
4081
4082what="$type"
4083case "$what" in
4084Locate) what='File';;
4085esac
4086
4087case "$exp_file" in
4088'')
4089 case "$d_portable" in
4090 "$define") ;;
4091 *) exp_file=true;;
4092 esac
4093 ;;
4094esac
4095
4096cd ..
4097while test "$type"; do
4098 redo=''
4099 rp="$orig_rp"
4100 dflt="$orig_dflt"
4101 case "$tilde" in
4102 true) rp="$rp (~name ok)";;
4103 esac
4104 . UU/myread
4105 if test -f UU/getfile.ok && \
4106 $contains "^$ans\$" UU/getfile.ok >/dev/null 2>&1
4107 then
4108 value="$ans"
4109 ansexp="$ans"
4110 break
4111 fi
4112 case "$ans" in
4113 none)
4114 value=''
4115 ansexp=''
4116 case "$none_ok" in
4117 true) type='';;
4118 esac
4119 ;;
4120 *)
4121 case "$tilde" in
4122 '') value="$ans"
4123 ansexp="$ans";;
4124 *)
4125 value=`UU/filexp $ans`
4126 case $? in
4127 0)
4128 if test "$ans" != "$value"; then
4129 echo "(That expands to $value on this system.)"
4130 fi
4131 ;;
4132 *) value="$ans";;
4133 esac
4134 ansexp="$value"
4135 case "$exp_file" in
4136 '') value="$ans";;
4137 esac
4138 ;;
4139 esac
4140 case "$fullpath" in
4141 true)
4142 case "$ansexp" in
4143 /*) value="$ansexp" ;;
4144 [a-zA-Z]:/*) value="$ansexp" ;;
4145 *)
4146 redo=true
4147 case "$already" in
4148 true)
4149 echo "I shall only accept a full path name, as in /bin/ls." >&4
4150 echo "Use a ! shell escape if you wish to check pathnames." >&4
4151 ;;
4152 *)
4153 echo "Please give a full path name, starting with slash." >&4
4154 case "$tilde" in
4155 true)
4156 echo "Note that using ~name is ok provided it expands well." >&4
4157 already=true
4158 ;;
4159 esac
4160 esac
4161 ;;
4162 esac
4163 ;;
4164 esac
4165 case "$redo" in
4166 '')
4167 case "$type" in
4168 File)
4169 for fp in $gfpth; do
4170 if test "X$fp" = X.; then
4171 pf="$ansexp"
4172 else
4173 pf="$fp/$ansexp"
4174 fi
4175 if test -f "$pf"; then
4176 type=''
4177 elif test -r "$pf" || (test -h "$pf") >/dev/null 2>&1
4178 then
4179 echo "($value is not a plain file, but that's ok.)"
4180 type=''
4181 fi
4182 if test X"$type" = X; then
4183 value="$pf"
4184 break
4185 fi
4186 done
4187 ;;
4188 Directory)
4189 for fp in $gfpth; do
4190 if test "X$fp" = X.; then
4191 dir="$ans"
4192 direxp="$ansexp"
4193 else
4194 dir="$fp/$ansexp"
4195 direxp="$fp/$ansexp"
4196 fi
4197 if test -d "$direxp"; then
4198 type=''
4199 value="$dir"
4200 break
4201 fi
4202 done
4203 ;;
4204 Locate)
4205 if test -d "$ansexp"; then
4206 echo "(Looking for $loc_file in directory $value.)"
4207 value="$value/$loc_file"
4208 ansexp="$ansexp/$loc_file"
4209 fi
4210 if test -f "$ansexp"; then
4211 type=''
4212 fi
4213 case "$nopath_ok" in
4214 true) case "$value" in
4215 */*) ;;
4216 *) echo "Assuming $value will be in people's path."
4217 type=''
4218 ;;
4219 esac
4220 ;;
4221 esac
4222 ;;
4223 esac
4224
4225 case "$skip" in
4226 true) type='';
4227 esac
4228
4229 case "$type" in
4230 '') ;;
4231 *)
4232 if test "$fastread" = yes; then
4233 dflt=y
4234 else
4235 dflt=n
4236 fi
4237 rp="$what $value doesn't exist. Use that name anyway?"
4238 . UU/myread
4239 dflt=''
4240 case "$ans" in
4241 y*) type='';;
4242 *) echo " ";;
4243 esac
4244 ;;
4245 esac
4246 ;;
4247 esac
4248 ;;
4249 esac
4250done
4251cd UU
4252ans="$value"
4253rp="$orig_rp"
4254dflt="$orig_dflt"
4255rm -f getfile.ok
4256test "X$gfpthkeep" != Xy && gfpth=""
4257EOSC
4258
4259: What should the include directory be ?
4260echo " "
4261$echo $n "Hmm... $c"
4262dflt='/usr/include'
4263incpath=''
4264mips_type=''
4265if $test -f /bin/mips && /bin/mips; then
4266 echo "Looks like a MIPS system..."
4267 $cat >usr.c <<'EOCP'
4268#ifdef SYSTYPE_BSD43
4269/bsd43
4270#endif
4271EOCP
4272 if cc -E usr.c > usr.out && $contains / usr.out >/dev/null 2>&1; then
4273 dflt='/bsd43/usr/include'
4274 incpath='/bsd43'
4275 mips_type='BSD 4.3'
4276 else
4277 mips_type='System V'
4278 fi
4279 $rm -f usr.c usr.out
4280 echo "and you're compiling with the $mips_type compiler and libraries."
4281 xxx_prompt=y
4282 echo "exit 0" >mips
4283else
4284 echo "Doesn't look like a MIPS system."
4285 xxx_prompt=n
4286 echo "exit 1" >mips
4287fi
4288chmod +x mips
4289$eunicefix mips
4290case "$usrinc" in
4291'') ;;
4292*) dflt="$usrinc";;
4293esac
4294case "$xxx_prompt" in
4295y) fn=d/
4296 echo " "
4297 rp='Where are the include files you want to use?'
4298 . ./getfile
4299 usrinc="$ans"
4300 ;;
4301*) usrinc="$dflt"
4302 ;;
4303esac
4304
4305: see how we invoke the C preprocessor
4306echo " "
4307echo "Now, how can we feed standard input to your C preprocessor..." >&4
4308cat <<'EOT' >testcpp.c
4309#define ABC abc
4310#define XYZ xyz
4311ABC.XYZ
4312EOT
4313cd ..
4314if test ! -f cppstdin; then
4315 if test "X$osname" = "Xaix" -a "X$gccversion" = X; then
4316 # AIX cc -E doesn't show the absolute headerfile
4317 # locations but we'll cheat by using the -M flag.
4318 echo 'cat >.$$.c; rm -f .$$.u; '"$cc"' ${1+"$@"} -M -c .$$.c 2>/dev/null; test -s .$$.u && awk '"'"'$2 ~ /\.h$/ { print "# 0 \""$2"\"" }'"'"' .$$.u; rm -f .$$.o .$$.u; '"$cc"' -E ${1+"$@"} .$$.c; rm .$$.c' > cppstdin
4319 else
4320 echo 'cat >.$$.c; '"$cc"' -E ${1+"$@"} .$$.c; rm .$$.c' >cppstdin
4321 fi
4322else
4323 echo "Keeping your $hint cppstdin wrapper."
4324fi
4325chmod 755 cppstdin
4326wrapper=`pwd`/cppstdin
4327ok='false'
4328cd UU
4329
4330if $test "X$cppstdin" != "X" && \
4331 $cppstdin $cppminus <testcpp.c >testcpp.out 2>&1 && \
4332 $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4333then
4334 echo "You used to use $cppstdin $cppminus so we'll use that again."
4335 case "$cpprun" in
4336 '') echo "But let's see if we can live without a wrapper..." ;;
4337 *)
4338 if $cpprun $cpplast <testcpp.c >testcpp.out 2>&1 && \
4339 $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4340 then
4341 echo "(And we'll use $cpprun $cpplast to preprocess directly.)"
4342 ok='true'
4343 else
4344 echo "(However, $cpprun $cpplast does not work, let's see...)"
4345 fi
4346 ;;
4347 esac
4348else
4349 case "$cppstdin" in
4350 '') ;;
4351 *)
4352 echo "Good old $cppstdin $cppminus does not seem to be of any help..."
4353 ;;
4354 esac
4355fi
4356
4357if $ok; then
4358 : nothing
4359elif echo 'Maybe "'"$cc"' -E" will work...'; \
4360 $cc -E <testcpp.c >testcpp.out 2>&1; \
4361 $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4362 echo "Yup, it does."
4363 x_cpp="$cc -E"
4364 x_minus='';
4365elif echo 'Nope...maybe "'"$cc"' -E -" will work...'; \
4366 $cc -E - <testcpp.c >testcpp.out 2>&1; \
4367 $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4368 echo "Yup, it does."
4369 x_cpp="$cc -E"
4370 x_minus='-';
4371elif echo 'Nope...maybe "'"$cc"' -P" will work...'; \
4372 $cc -P <testcpp.c >testcpp.out 2>&1; \
4373 $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4374 echo "Yipee, that works!"
4375 x_cpp="$cc -P"
4376 x_minus='';
4377elif echo 'Nope...maybe "'"$cc"' -P -" will work...'; \
4378 $cc -P - <testcpp.c >testcpp.out 2>&1; \
4379 $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4380 echo "At long last!"
4381 x_cpp="$cc -P"
4382 x_minus='-';
4383elif echo 'No such luck, maybe "'$cpp'" will work...'; \
4384 $cpp <testcpp.c >testcpp.out 2>&1; \
4385 $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4386 echo "It works!"
4387 x_cpp="$cpp"
4388 x_minus='';
4389elif echo 'Nixed again...maybe "'$cpp' -" will work...'; \
4390 $cpp - <testcpp.c >testcpp.out 2>&1; \
4391 $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4392 echo "Hooray, it works! I was beginning to wonder."
4393 x_cpp="$cpp"
4394 x_minus='-';
4395elif echo 'Uh-uh. Time to get fancy. Trying a wrapper...'; \
4396 $wrapper <testcpp.c >testcpp.out 2>&1; \
4397 $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4398 x_cpp="$wrapper"
4399 x_minus=''
4400 echo "Eureka!"
4401else
4402 dflt=''
4403 rp="No dice. I can't find a C preprocessor. Name one:"
4404 . ./myread
4405 x_cpp="$ans"
4406 x_minus=''
4407 $x_cpp <testcpp.c >testcpp.out 2>&1
4408 if $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1 ; then
4409 echo "OK, that will do." >&4
4410 else
4411echo "Sorry, I can't get that to work. Go find one and rerun Configure." >&4
4412 exit 1
4413 fi
4414fi
4415
4416case "$ok" in
4417false)
4418 cppstdin="$x_cpp"
4419 cppminus="$x_minus"
4420 cpprun="$x_cpp"
4421 cpplast="$x_minus"
4422 set X $x_cpp
4423 shift
4424 case "$1" in
4425 "$cpp")
4426 echo "Perhaps can we force $cc -E using a wrapper..."
4427 if $wrapper <testcpp.c >testcpp.out 2>&1; \
4428 $contains 'abc.*xyz' testcpp.out >/dev/null 2>&1
4429 then
4430 echo "Yup, we can."
4431 cppstdin="$wrapper"
4432 cppminus='';
4433 else
4434 echo "Nope, we'll have to live without it..."
4435 fi
4436 ;;
4437 esac
4438 case "$cpprun" in
4439 "$wrapper")
4440 cpprun=''
4441 cpplast=''
4442 ;;
4443 esac
4444 ;;
4445esac
4446
4447case "$cppstdin" in
4448"$wrapper"|'cppstdin') ;;
4449*) $rm -f $wrapper;;
4450esac
4451$rm -f testcpp.c testcpp.out
4452
4453: Set private lib path
4454case "$plibpth" in
4455'') if ./mips; then
4456 plibpth="$incpath/usr/lib /usr/local/lib /usr/ccs/lib"
4457 fi;;
4458esac
4459case "$libpth" in
4460' ') dlist='';;
4461'') dlist="$loclibpth $plibpth $glibpth";;
4462*) dlist="$libpth";;
4463esac
4464
4465: Now check and see which directories actually exist, avoiding duplicates
4466libpth=''
4467for xxx in $dlist
4468do
4469 if $test -d $xxx; then
4470 case " $libpth " in
4471 *" $xxx "*) ;;
4472 *) libpth="$libpth $xxx";;
4473 esac
4474 fi
4475done
4476$cat <<'EOM'
4477
4478Some systems have incompatible or broken versions of libraries. Among
4479the directories listed in the question below, please remove any you
4480know not to be holding relevant libraries, and add any that are needed.
4481Say "none" for none.
4482
4483EOM
4484case "$libpth" in
4485'') dflt='none';;
4486*)
4487 set X $libpth
4488 shift
4489 dflt=${1+"$@"}
4490 ;;
4491esac
4492rp="Directories to use for library searches?"
4493. ./myread
4494case "$ans" in
4495none) libpth=' ';;
4496*) libpth="$ans";;
4497esac
4498
4499: compute shared library extension
4500case "$so" in
4501'')
4502 if xxx=`./loc libc.sl X $libpth`; $test -f "$xxx"; then
4503 dflt='sl'
4504 else
4505 dflt='so'
4506 fi
4507 ;;
4508*) dflt="$so";;
4509esac
4510$cat <<EOM
4511
4512On some systems, shared libraries may be available. Answer 'none' if
4513you want to suppress searching of shared libraries for the remainder
4514of this configuration.
4515
4516EOM
4517rp='What is the file extension used for shared libraries?'
4518. ./myread
4519so="$ans"
4520
4521: Define several unixisms.
4522: Hints files or command line option can be used to override them.
4523: The convoluted testing is in case hints files set either the old
4524: or the new name.
4525case "$_exe" in
4526'') case "$exe_ext" in
4527 '') ;;
4528 *) _exe="$exe_ext" ;;
4529 esac
4530 ;;
4531esac
4532case "$_a" in
4533'') case "$lib_ext" in
4534 '') _a='.a';;
4535 *) _a="$lib_ext" ;;
4536 esac
4537 ;;
4538esac
4539case "$_o" in
4540'') case "$obj_ext" in
4541 '') _o='.o';;
4542 *) _o="$obj_ext";;
4543 esac
4544 ;;
4545esac
4546case "$p_" in
4547'') case "$path_sep" in
4548 '') p_=':';;
4549 *) p_="$path_sep";;
4550 esac
4551 ;;
4552esac
4553exe_ext=$_exe
4554lib_ext=$_a
4555obj_ext=$_o
4556path_sep=$p_
4557
4558: Which makefile gets called first. This is used by make depend.
4559case "$firstmakefile" in
4560'') firstmakefile='makefile';;
4561esac
4562
4563case "$ccflags" in
4564*-DUSE_LONG_DOUBLE*|*-DUSE_MORE_BITS*) uselongdouble="$define" ;;
4565esac
4566
4567case "$uselongdouble" in
4568$define|true|[yY]*) dflt='y';;
4569*) dflt='n';;
4570esac
4571cat <<EOM
4572
4573Perl can be built to take advantage of long doubles which
4574(if available) may give more accuracy and range for floating point numbers.
4575
4576If this doesn't make any sense to you, just accept the default '$dflt'.
4577EOM
4578rp='Try to use long doubles if available?'
4579. ./myread
4580case "$ans" in
4581y|Y) val="$define" ;;
4582*) val="$undef" ;;
4583esac
4584set uselongdouble
4585eval $setvar
4586
4587case "$uselongdouble" in
4588true|[yY]*) uselongdouble="$define" ;;
4589esac
4590
4591: Look for a hint-file generated 'call-back-unit'. If the
4592: user has specified that long doubles should be used,
4593: we may need to set or change some other defaults.
4594if $test -f uselongdouble.cbu; then
4595 echo "Your platform has some specific hints regarding long doubles, using them..."
4596 . ./uselongdouble.cbu
4597else
4598 case "$uselongdouble" in
4599 $define)
4600 $cat <<EOM
4601(Your platform does not have any specific hints for long doubles.)
4602EOM
4603 ;;
4604 esac
4605fi
4606
4607: Looking for optional libraries
4608echo " "
4609echo "Checking for optional libraries..." >&4
4610case "$libs" in
4611' '|'') dflt='';;
4612*) dflt="$libs";;
4613esac
4614case "$libswanted" in
4615'') libswanted='c_s';;
4616esac
4617case "$usesocks" in
4618"$define") libswanted="$libswanted socks5 socks5_sh" ;;
4619esac
4620libsfound=''
4621libsfiles=''
4622libsdirs=''
4623libspath=''
4624for thisdir in $libpth $xlibpth; do
4625 test -d $thisdir && libspath="$libspath $thisdir"
4626done
4627for thislib in $libswanted; do
4628 for thisdir in $libspath; do
4629 xxx=''
4630 if $test ! -f "$xxx" -a "X$ignore_versioned_solibs" = "X"; then
4631 xxx=`ls $thisdir/lib$thislib.$so.[0-9] 2>/dev/null|sed -n '$p'`
4632 $test -f "$xxx" && eval $libscheck
4633 $test -f "$xxx" && libstyle=shared
4634 fi
4635 if test ! -f "$xxx"; then
4636 xxx=$thisdir/lib$thislib.$so
4637 $test -f "$xxx" && eval $libscheck
4638 $test -f "$xxx" && libstyle=shared
4639 fi
4640 if test ! -f "$xxx"; then
4641 xxx=$thisdir/lib$thislib$_a
4642 $test -f "$xxx" && eval $libscheck
4643 $test -f "$xxx" && libstyle=static
4644 fi
4645 if test ! -f "$xxx"; then
4646 xxx=$thisdir/$thislib$_a
4647 $test -f "$xxx" && eval $libscheck
4648 $test -f "$xxx" && libstyle=static
4649 fi
4650 if test ! -f "$xxx"; then
4651 xxx=$thisdir/lib${thislib}_s$_a
4652 $test -f "$xxx" && eval $libscheck
4653 $test -f "$xxx" && libstyle=static
4654 $test -f "$xxx" && thislib=${thislib}_s
4655 fi
4656 if test ! -f "$xxx"; then
4657 xxx=$thisdir/Slib$thislib$_a
4658 $test -f "$xxx" && eval $libscheck
4659 $test -f "$xxx" && libstyle=static
4660 fi
4661 if $test -f "$xxx"; then
4662 case "$libstyle" in
4663 shared) echo "Found -l$thislib (shared)." ;;
4664 static) echo "Found -l$thislib." ;;
4665 *) echo "Found -l$thislib ($libstyle)." ;;
4666 esac
4667 case " $dflt " in
4668 *"-l$thislib "*);;
4669 *) dflt="$dflt -l$thislib"
4670 libsfound="$libsfound $xxx"
4671 yyy=`basename $xxx`
4672 libsfiles="$libsfiles $yyy"
4673 yyy=`echo $xxx|$sed -e "s%/$yyy\\$%%"`
4674 case " $libsdirs " in
4675 *" $yyy "*) ;;
4676 *) libsdirs="$libsdirs $yyy" ;;
4677 esac
4678 ;;
4679 esac
4680 break
4681 fi
4682 done
4683 if $test ! -f "$xxx"; then
4684 echo "No -l$thislib."
4685 fi
4686done
4687set X $dflt
4688shift
4689dflt="$*"
4690case "$libs" in
4691'') dflt="$dflt";;
4692*) dflt="$libs";;
4693esac
4694case "$dflt" in
4695' '|'') dflt='none';;
4696esac
4697
4698$cat <<EOM
4699
4700In order to compile $package on your machine, a number of libraries
4701are usually needed. Include any other special libraries here as well.
4702Say "none" for none. The default list is almost always right.
4703EOM
4704
4705echo " "
4706rp="What libraries to use?"
4707. ./myread
4708case "$ans" in
4709none) libs=' ';;
4710*) libs="$ans";;
4711esac
4712
4713: determine optimization, if desired, or use for debug flag also
4714case "$optimize" in
4715' '|$undef) dflt='none';;
4716'') dflt='-O';;
4717*) dflt="$optimize";;
4718esac
4719$cat <<EOH
4720
4721By default, $package compiles with the -O flag to use the optimizer.
4722Alternately, you might want to use the symbolic debugger, which uses
4723the -g flag (on traditional Unix systems). Either flag can be
4724specified here. To use neither flag, specify the word "none".
4725
4726EOH
4727rp="What optimizer/debugger flag should be used?"
4728. ./myread
4729optimize="$ans"
4730case "$optimize" in
4731'none') optimize=" ";;
4732esac
4733
4734dflt=''
4735: We will not override a previous value, but we might want to
4736: augment a hint file
4737case "$hint" in
4738default|recommended)
4739 case "$gccversion" in
4740 1*) dflt='-fpcc-struct-return' ;;
4741 esac
4742 case "$optimize" in
4743 *-g*) dflt="$dflt -DDEBUGGING";;
4744 esac
4745 case "$gccversion" in
4746 2*) if test -d /etc/conf/kconfig.d &&
4747 $contains _POSIX_VERSION $usrinc/sys/unistd.h >/dev/null 2>&1
4748 then
4749 # Interactive Systems (ISC) POSIX mode.
4750 dflt="$dflt -posix"
4751 fi
4752 ;;
4753 esac
4754 case "$gccversion" in
4755 1*) ;;
4756 2.[0-8]*) ;;
4757 ?*) echo " "
4758 echo "Checking if your compiler accepts -fno-strict-aliasing" 2>&1
4759 echo 'int main(void) { return 0; }' > gcctest.c
4760 if $cc -O2 -fno-strict-aliasing -o gcctest gcctest.c; then
4761 echo "Yes, it does." 2>&1
4762 case "$ccflags" in
4763 *strict-aliasing*)
4764 echo "Leaving current flags $ccflags alone." 2>&1
4765 ;;
4766 *) dflt="$dflt -fno-strict-aliasing" ;;
4767 esac
4768 else
4769 echo "Nope, it doesn't, but that's ok." 2>&1
4770 fi
4771 ;;
4772 esac
4773 # For gcc, adding -pipe speeds up compilations for some, but apparently
4774 # some assemblers can't read from stdin. (It also slows down compilations
4775 # in other cases, but those are apparently rarer these days.) AD 5/2004.
4776 case "$gccversion" in
4777 ?*) echo " "
4778 echo "Checking if your compiler accepts -pipe" 2>&1
4779 echo 'int main(void) { return 0; }' > gcctest.c
4780 if $cc -pipe -o gcctest gcctest.c; then
4781 echo "Yes, it does." 2>&1
4782 case "$ccflags" in
4783 *-pipe*)
4784 echo "Leaving current flags $ccflags alone." 2>&1
4785 ;;
4786 *) dflt="$dflt -pipe" ;;
4787 esac
4788 else
4789 echo "Nope, it doesn't, but that's ok." 2>&1
4790 fi
4791
4792 echo "Checking if your compiler accepts -Wdeclaration-after-statement" 2>&1
4793 echo 'int main(void) { return 0; }' > gcctest.c
4794 if $cc -Wdeclaration-after-statement -o gcctest gcctest.c; then
4795 echo "Yes, it does." 2>&1
4796 case "$ccflags" in
4797 *-Wdeclaration-after-statement*)
4798 echo "Leaving current flags $ccflags alone." 2>&1
4799 ;;
4800 *) dflt="$dflt -Wdeclaration-after-statement" ;;
4801 esac
4802 else
4803 echo "Nope, it doesn't, but that's ok." 2>&1
4804 fi
4805 ;;
4806 esac
4807 ;;
4808esac
4809
4810case "$mips_type" in
4811*BSD*|'') inclwanted="$locincpth $usrinc";;
4812*) inclwanted="$locincpth $inclwanted $usrinc/bsd";;
4813esac
4814for thisincl in $inclwanted; do
4815 if $test -d $thisincl; then
4816 if $test x$thisincl != x$usrinc; then
4817 case "$dflt" in
4818 *" -I$thisincl "*);;
4819 *) dflt="$dflt -I$thisincl ";;
4820 esac
4821 fi
4822 fi
4823done
4824
4825inctest='if $contains $2 $usrinc/$1 >/dev/null 2>&1; then
4826 xxx=true;
4827elif $contains $2 $usrinc/sys/$1 >/dev/null 2>&1; then
4828 xxx=true;
4829else
4830 xxx=false;
4831fi;
4832if $xxx; then
4833 case "$dflt" in
4834 *$2*);;
4835 *) dflt="$dflt -D$2";;
4836 esac;
4837fi'
4838
4839set signal.h LANGUAGE_C; eval $inctest
4840
4841case "$usesocks" in
4842$define)
4843 ccflags="$ccflags -DSOCKS"
4844 ;;
4845esac
4846
4847case "$hint" in
4848default|recommended) dflt="$ccflags $dflt" ;;
4849*) dflt="$ccflags";;
4850esac
4851
4852case "$dflt" in
4853''|' ') dflt=none;;
4854esac
4855
4856$cat <<EOH
4857
4858Your C compiler may want other flags. For this question you should include
4859-I/whatever and -DWHATEVER flags and any other flags used by the C compiler,
4860but you should NOT include libraries or ld flags like -lwhatever. If you
4861want $package to honor its debug switch, you should include -DDEBUGGING here.
4862Your C compiler might also need additional flags, such as -D_POSIX_SOURCE.
4863
4864To use no flags, specify the word "none".
4865
4866EOH
4867set X $dflt
4868shift
4869dflt=${1+"$@"}
4870rp="Any additional cc flags?"
4871. ./myread
4872case "$ans" in
4873none) ccflags='';;
4874*) ccflags="$ans";;
4875esac
4876
4877: the following weeds options from ccflags that are of no interest to cpp
4878case "$cppflags" in
4879'') cppflags="$ccflags" ;;
4880*) cppflags="$cppflags $ccflags" ;;
4881esac
4882case "$gccversion" in
48831*) cppflags="$cppflags -D__GNUC__"
4884esac
4885case "$mips_type" in
4886'');;
4887*BSD*) cppflags="$cppflags -DSYSTYPE_BSD43";;
4888esac
4889case "$cppflags" in
4890'');;
4891*)
4892 echo " "
4893 echo "Let me guess what the preprocessor flags are..." >&4
4894 set X $cppflags
4895 shift
4896 cppflags=''
4897 $cat >cpp.c <<'EOM'
4898#define BLURFL foo
4899
4900BLURFL xx LFRULB
4901EOM
4902 previous=''
4903 for flag in $*
4904 do
4905 case "$flag" in
4906 -*) ftry="$flag";;
4907 *) ftry="$previous $flag";;
4908 esac
4909 if $cppstdin -DLFRULB=bar $cppflags $ftry $cppminus <cpp.c \
4910 >cpp1.out 2>/dev/null && \
4911 $cpprun -DLFRULB=bar $cppflags $ftry $cpplast <cpp.c \
4912 >cpp2.out 2>/dev/null && \
4913 $contains 'foo.*xx.*bar' cpp1.out >/dev/null 2>&1 && \
4914 $contains 'foo.*xx.*bar' cpp2.out >/dev/null 2>&1
4915 then
4916 cppflags="$cppflags $ftry"
4917 previous=''
4918 else
4919 previous="$flag"
4920 fi
4921 done
4922 set X $cppflags
4923 shift
4924 cppflags=${1+"$@"}
4925 case "$cppflags" in
4926 *-*) echo "They appear to be: $cppflags";;
4927 esac
4928 $rm -f cpp.c cpp?.out
4929 ;;
4930esac
4931
4932: flags used in final linking phase
4933case "$ldflags" in
4934'') if ./venix; then
4935 dflt='-i -z'
4936 else
4937 dflt=''
4938 fi
4939 case "$ccflags" in
4940 *-posix*) dflt="$dflt -posix" ;;
4941 esac
4942 ;;
4943*) dflt="$ldflags";;
4944esac
4945
4946: Try to guess additional flags to pick up local libraries.
4947for thislibdir in $libpth; do
4948 case " $loclibpth " in
4949 *" $thislibdir "*)
4950 case "$dflt " in
4951 *"-L$thislibdir "*) ;;
4952 *) dflt="$dflt -L$thislibdir" ;;
4953 esac
4954 ;;
4955 esac
4956done
4957
4958case "$dflt" in
4959'') dflt='none' ;;
4960esac
4961
4962$cat <<EOH
4963
4964Your C linker may need flags. For this question you should
4965include -L/whatever and any other flags used by the C linker, but you
4966should NOT include libraries like -lwhatever.
4967
4968Make sure you include the appropriate -L/path flags if your C linker
4969does not normally search all of the directories you specified above,
4970namely
4971 $libpth
4972To use no flags, specify the word "none".
4973
4974EOH
4975
4976rp="Any additional ld flags (NOT including libraries)?"
4977. ./myread
4978case "$ans" in
4979none) ldflags='';;
4980*) ldflags="$ans";;
4981esac
4982rmlist="$rmlist pdp11"
4983
4984: coherency check
4985echo " "
4986echo "Checking your choice of C compiler and flags for coherency..." >&4
4987$cat > try.c <<'EOF'
4988#include <stdio.h>
4989int main() { printf("Ok\n"); return(0); }
4990EOF
4991set X $cc -o try $optimize $ccflags $ldflags try.c $libs
4992shift
4993$cat >try.msg <<'EOM'
4994I've tried to compile and run the following simple program:
4995
4996EOM
4997$cat try.c >> try.msg
4998
4999$cat >> try.msg <<EOM
5000
5001I used the command:
5002
5003 $*
5004 $run ./try
5005
5006and I got the following output:
5007
5008EOM
5009dflt=y
5010if $sh -c "$cc -o try $optimize $ccflags $ldflags try.c $libs" >>try.msg 2>&1; then
5011 if $sh -c "$run ./try" >>try.msg 2>&1; then
5012 xxx=`$run ./try`
5013 case "$xxx" in
5014 "Ok") dflt=n ;;
5015 *) echo 'The program compiled OK, but produced no output.' >> try.msg
5016 case " $libs " in
5017 *" -lsfio "*)
5018 cat >> try.msg <<'EOQS'
5019If $libs contains -lsfio, and sfio is mis-configured, then it
5020sometimes (apparently) runs and exits with a 0 status, but with no
5021output! It may have to do with sfio's use of _exit vs. exit.
5022
5023EOQS
5024 rp="You have a big problem. Shall I abort Configure"
5025 dflt=y
5026 ;;
5027 esac
5028 ;;
5029 esac
5030 else
5031 echo "The program compiled OK, but exited with status $?." >>try.msg
5032 rp="You have a problem. Shall I abort Configure"
5033 dflt=y
5034 fi
5035else
5036 echo "I can't compile the test program." >>try.msg
5037 rp="You have a BIG problem. Shall I abort Configure"
5038 dflt=y
5039fi
5040case "$dflt" in
5041y)
5042 $cat try.msg >&4
5043 case "$knowitall" in
5044 '')
5045 echo "(The supplied flags or libraries might be incorrect.)"
5046 ;;
5047 *) dflt=n;;
5048 esac
5049 echo " "
5050 . ./myread
5051 case "$ans" in
5052 n*|N*) ;;
5053 *) echo "Ok. Stopping Configure." >&4
5054 exit 1
5055 ;;
5056 esac
5057 ;;
5058n) echo "OK, that should do.";;
5059esac
5060$rm -f try try.* core
5061
5062: define a shorthand compile call
5063compile='
5064mc_file=$1;
5065shift;
5066$cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs > /dev/null 2>&1;'
5067: define a shorthand compile call for compilations that should be ok.
5068compile_ok='
5069mc_file=$1;
5070shift;
5071$cc -o ${mc_file} $optimize $ccflags $ldflags $* ${mc_file}.c $libs;'
5072
5073: determine filename position in cpp output
5074echo " "
5075echo "Computing filename position in cpp output for #include directives..." >&4
5076case "$osname" in
5077vos) testaccess=-e ;;
5078*) testaccess=-r ;;
5079esac
5080echo '#include <stdio.h>' > foo.c
5081$cat >fieldn <<EOF
5082$startsh
5083$cppstdin $cppflags $cppminus <foo.c 2>/dev/null | \
5084$grep '^[ ]*#.*stdio\.h' | \
5085while read cline; do
5086 pos=1
5087 set \$cline
5088 while $test \$# -gt 0; do
5089 if $test $testaccess \`echo \$1 | $tr -d '"'\`; then
5090 echo "\$pos"
5091 exit 0
5092 fi
5093 shift
5094 pos=\`expr \$pos + 1\`
5095 done
5096done
5097EOF
5098chmod +x fieldn
5099fieldn=`./fieldn`
5100$rm -f foo.c fieldn
5101case $fieldn in
5102'') pos='???';;
51031) pos=first;;
51042) pos=second;;
51053) pos=third;;
5106*) pos="${fieldn}th";;
5107esac
5108echo "Your cpp writes the filename in the $pos field of the line."
5109
5110case "$osname" in
5111vos) cppfilter="tr '\\\\>' '/' |" ;; # path component separator is >
5112os2) cppfilter="sed -e 's|\\\\\\\\|/|g' |" ;; # path component separator is \
5113*) cppfilter='' ;;
5114esac
5115: locate header file
5116$cat >findhdr <<EOF
5117$startsh
5118wanted=\$1
5119name=''
5120for usrincdir in $usrinc
5121do
5122 if test -f \$usrincdir/\$wanted; then
5123 echo "\$usrincdir/\$wanted"
5124 exit 0
5125 fi
5126done
5127awkprg='{ print \$$fieldn }'
5128echo "#include <\$wanted>" > foo\$\$.c
5129$cppstdin $cppminus $cppflags < foo\$\$.c 2>/dev/null | \
5130$cppfilter $grep "^[ ]*#.*\$wanted" | \
5131while read cline; do
5132 name=\`echo \$cline | $awk "\$awkprg" | $tr -d '"'\`
5133 case "\$name" in
5134 *[/\\\\]\$wanted) echo "\$name"; exit 1;;
5135 *[\\\\/]\$wanted) echo "\$name"; exit 1;;
5136 *) exit 2;;
5137 esac;
5138done;
5139#
5140# status = 0: grep returned 0 lines, case statement not executed
5141# status = 1: headerfile found
5142# status = 2: while loop executed, no headerfile found
5143#
5144status=\$?
5145$rm -f foo\$\$.c;
5146if test \$status -eq 1; then
5147 exit 0;
5148fi
5149exit 1
5150EOF
5151chmod +x findhdr
5152
5153: define an alternate in-header-list? function
5154inhdr='echo " "; td=$define; tu=$undef; yyy=$@;
5155cont=true; xxf="echo \"<\$1> found.\" >&4";
5156case $# in 2) xxnf="echo \"<\$1> NOT found.\" >&4";;
5157*) xxnf="echo \"<\$1> NOT found, ...\" >&4";;
5158esac;
5159case $# in 4) instead=instead;; *) instead="at last";; esac;
5160while $test "$cont"; do
5161 xxx=`./findhdr $1`
5162 var=$2; eval "was=\$$2";
5163 if $test "$xxx" && $test -r "$xxx";
5164 then eval $xxf;
5165 eval "case \"\$$var\" in $undef) . ./whoa; esac"; eval "$var=\$td";
5166 cont="";
5167 else eval $xxnf;
5168 eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu"; fi;
5169 set $yyy; shift; shift; yyy=$@;
5170 case $# in 0) cont="";;
5171 2) xxf="echo \"but I found <\$1> $instead.\" >&4";
5172 xxnf="echo \"and I did not find <\$1> either.\" >&4";;
5173 *) xxf="echo \"but I found <\$1\> instead.\" >&4";
5174 xxnf="echo \"there is no <\$1>, ...\" >&4";;
5175 esac;
5176done;
5177while $test "$yyy";
5178do set $yyy; var=$2; eval "was=\$$2";
5179 eval "case \"\$$var\" in $define) . ./whoa; esac"; eval "$var=\$tu";
5180 set $yyy; shift; shift; yyy=$@;
5181done'
5182
5183: see if stdlib is available
5184set stdlib.h i_stdlib
5185eval $inhdr
5186
5187: check for lengths of integral types
5188echo " "
5189case "$intsize" in
5190'')
5191 echo "Checking to see how big your integers are..." >&4
5192 $cat >try.c <<EOCP
5193#include <stdio.h>
5194#$i_stdlib I_STDLIB
5195#ifdef I_STDLIB
5196#include <stdlib.h>
5197#endif
5198int main()
5199{
5200 printf("intsize=%d;\n", (int)sizeof(int));
5201 printf("longsize=%d;\n", (int)sizeof(long));
5202 printf("shortsize=%d;\n", (int)sizeof(short));
5203 exit(0);
5204}
5205EOCP
5206 set try
5207 if eval $compile_ok && $run ./try > /dev/null; then
5208 eval `$run ./try`
5209 echo "Your integers are $intsize bytes long."
5210 echo "Your long integers are $longsize bytes long."
5211 echo "Your short integers are $shortsize bytes long."
5212 else
5213 $cat >&4 <<EOM
5214!
5215Help! I can't compile and run the intsize test program: please enlighten me!
5216(This is probably a misconfiguration in your system or libraries, and
5217you really ought to fix it. Still, I'll try anyway.)
5218!
5219EOM
5220 dflt=4
5221 rp="What is the size of an integer (in bytes)?"
5222 . ./myread
5223 intsize="$ans"
5224 dflt=$intsize
5225 rp="What is the size of a long integer (in bytes)?"
5226 . ./myread
5227 longsize="$ans"
5228 dflt=2
5229 rp="What is the size of a short integer (in bytes)?"
5230 . ./myread
5231 shortsize="$ans"
5232 fi
5233 ;;
5234esac
5235$rm -f try try.*
5236
5237: check for long long
5238echo " "
5239echo "Checking to see if you have long long..." >&4
5240echo 'int main() { long long x = 7; return 0; }' > try.c
5241set try
5242if eval $compile; then
5243 val="$define"
5244 echo "You have long long."
5245else
5246 val="$undef"
5247 echo "You do not have long long."
5248fi
5249$rm try.*
5250set d_longlong
5251eval $setvar
5252
5253: check for length of long long
5254case "${d_longlong}${longlongsize}" in
5255$define)
5256 echo " "
5257 echo "Checking to see how big your long longs are..." >&4
5258 $cat >try.c <<'EOCP'
5259#include <stdio.h>
5260int main()
5261{
5262 printf("%d\n", (int)sizeof(long long));
5263 return(0);
5264}
5265EOCP
5266 set try
5267 if eval $compile_ok; then
5268 longlongsize=`$run ./try`
5269 echo "Your long longs are $longlongsize bytes long."
5270 else
5271 dflt='8'
5272 echo " "
5273 echo "(I can't seem to compile the test program. Guessing...)"
5274 rp="What is the size of a long long (in bytes)?"
5275 . ./myread
5276 longlongsize="$ans"
5277 fi
5278 if $test "X$longsize" = "X$longlongsize"; then
5279 echo "(That isn't any different from an ordinary long.)"
5280 fi
5281 ;;
5282esac
5283$rm -f try.* try
5284
5285: see if inttypes.h is available
5286: we want a real compile instead of Inhdr because some systems
5287: have an inttypes.h which includes non-existent headers
5288echo " "
5289$cat >try.c <<EOCP
5290#include <inttypes.h>
5291int main() {
5292 static int32_t foo32 = 0x12345678;
5293}
5294EOCP
5295set try
5296if eval $compile; then
5297 echo "<inttypes.h> found." >&4
5298 val="$define"
5299else
5300 echo "<inttypes.h> NOT found." >&4
5301 val="$undef"
5302fi
5303$rm -f try.c try
5304set i_inttypes
5305eval $setvar
5306
5307: check for int64_t
5308echo " "
5309echo "Checking to see if you have int64_t..." >&4
5310$cat >try.c <<EOCP
5311#include <sys/types.h>
5312#$i_inttypes I_INTTYPES
5313#ifdef I_INTTYPES
5314#include <inttypes.h>
5315#endif
5316int main() { int64_t x = 7; }
5317EOCP
5318set try
5319if eval $compile; then
5320 val="$define"
5321 echo "You have int64_t."
5322else
5323 val="$undef"
5324 echo "You do not have int64_t."
5325fi
5326$rm -f try try.*
5327set d_int64_t
5328eval $setvar
5329
5330
5331echo " "
5332echo "Checking which 64-bit integer type we could use..." >&4
5333
5334case "$intsize" in
53358) val=int
5336 set quadtype
5337 eval $setvar
5338 val='"unsigned int"'
5339 set uquadtype
5340 eval $setvar
5341 quadkind=1
5342 ;;
5343*) case "$longsize" in
5344 8) val=long
5345 set quadtype
5346 eval $setvar
5347 val='"unsigned long"'
5348 set uquadtype
5349 eval $setvar
5350 quadkind=2
5351 ;;
5352 *) case "$d_longlong:$longlongsize" in
5353 define:8)
5354 val='"long long"'
5355 set quadtype
5356 eval $setvar
5357 val='"unsigned long long"'
5358 set uquadtype
5359 eval $setvar
5360 quadkind=3
5361 ;;
5362 *) case "$d_int64_t" in
5363 define)
5364 val=int64_t
5365 set quadtype
5366 eval $setvar
5367 val=uint64_t
5368 set uquadtype
5369 eval $setvar
5370 quadkind=4
5371 ;;
5372 esac
5373 ;;
5374 esac
5375 ;;
5376 esac
5377 ;;
5378esac
5379
5380case "$quadtype" in
5381'') echo "Alas, no 64-bit integer types in sight." >&4
5382 d_quad="$undef"
5383 ;;
5384*) echo "We could use '$quadtype' for 64-bit integers." >&4
5385 d_quad="$define"
5386 ;;
5387esac
5388
5389
5390case "$uselonglong" in
5391"$define"|true|[yY]*)
5392 cat <<EOM >&4
5393
5394*** Configure -Duselonglong is deprecated, using -Duse64bitint instead.
5395EOM
5396 use64bitint="$define"
5397 ;;
5398esac
5399case "$use64bits" in
5400"$define"|true|[yY]*)
5401 cat <<EOM >&4
5402
5403*** Configure -Duse64bits is deprecated, using -Duse64bitint instead.
5404EOM
5405 use64bitint="$define"
5406 ;;
5407esac
5408case "$use64bitints" in
5409"$define"|true|[yY]*)
5410 cat <<EOM >&4
5411
5412*** There is no Configure -Duse64bitints, using -Duse64bitint instead.
5413EOM
5414 use64bitint="$define"
5415 ;;
5416esac
5417case "$use64bitsint" in
5418"$define"|true|[yY]*)
5419 cat <<EOM >&4
5420
5421*** There is no Configure -Duse64bitsint, using -Duse64bitint instead.
5422EOM
5423 use64bitint="$define"
5424 ;;
5425esac
5426case "$uselonglongs" in
5427"$define"|true|[yY]*)
5428 cat <<EOM >&4
5429
5430*** There is no Configure -Duselonglongs, using -Duse64bitint instead.
5431EOM
5432 use64bitint="$define"
5433 ;;
5434esac
5435case "$use64bitsall" in
5436"$define"|true|[yY]*)
5437 cat <<EOM >&4
5438
5439*** There is no Configure -Duse64bitsall, using -Duse64bitall instead.
5440EOM
5441 use64bitall="$define"
5442 ;;
5443esac
5444
5445case "$ccflags" in
5446*-DUSE_LONG_LONG*|*-DUSE_64_BIT_INT*|*-DUSE_64_BIT_ALL*) use64bitint="$define";;
5447esac
5448case "$use64bitall" in
5449"$define"|true|[yY]*) use64bitint="$define" ;;
5450esac
5451
5452case "$longsize" in
54538) cat <<EOM
5454
5455You have natively 64-bit long integers.
5456EOM
5457 val="$define"
5458 ;;
5459*) case "$use64bitint" in
5460 "$define"|true|[yY]*) dflt='y';;
5461 *) dflt='n';;
5462 esac
5463 case "$d_quad" in
5464 "$define") ;;
5465 *) dflt='n' ;;
5466 esac
5467 cat <<EOM
5468
5469Perl can be built to take advantage of 64-bit integer types
5470on some systems. To do so, Configure can be run with -Duse64bitint.
5471Choosing this option will most probably introduce binary incompatibilities.
5472
5473If this doesn't make any sense to you, just accept the default '$dflt'.
5474(The default has been chosen based on your configuration.)
5475EOM
5476 rp='Try to use 64-bit integers, if available?'
5477 . ./myread
5478 case "$ans" in
5479 [yY]*) val="$define" ;;
5480 *) val="$undef" ;;
5481 esac
5482 ;;
5483esac
5484set use64bitint
5485eval $setvar
5486
5487case "$use64bitall" in
5488"$define"|true|[yY]*) dflt='y' ;;
5489*) case "$longsize" in
5490 8) dflt='y' ;;
5491 *) dflt='n' ;;
5492 esac
5493 ;;
5494esac
5495cat <<EOM
5496
5497You may also choose to try maximal 64-bitness. It means using as much
549864-bitness as possible on the platform. This in turn means even more
5499binary incompatibilities. On the other hand, your platform may not
5500have any more 64-bitness available than what you already have chosen.
5501
5502If this doesn't make any sense to you, just accept the default '$dflt'.
5503(The default has been chosen based on your configuration.)
5504EOM
5505rp='Try to use maximal 64-bit support, if available?'
5506. ./myread
5507case "$ans" in
5508[yY]*) val="$define" ;;
5509*) val="$undef" ;;
5510esac
5511set use64bitall
5512eval $setvar
5513case "$use64bitall" in
5514"$define")
5515 case "$use64bitint" in
5516 "$undef")
5517 cat <<EOM
5518
5519Since you have chosen a maximally 64-bit build, I'm also turning on
5520the use of 64-bit integers.
5521EOM
5522 use64bitint="$define" ;;
5523 esac
5524 ;;
5525esac
5526
5527: Look for a hint-file generated 'call-back-unit'. If the
5528: user has specified that a 64-bit perl is to be built,
5529: we may need to set or change some other defaults.
5530if $test -f use64bitint.cbu; then
5531 echo "Your platform has some specific hints regarding 64-bit integers, using them..."
5532 . ./use64bitint.cbu
5533fi
5534case "$use64bitint" in
5535"$define"|true|[yY]*)
5536 case "$longsize" in
5537 4) case "$archname64" in
5538 '') archname64=64int ;;
5539 esac
5540 ;;
5541 esac
5542 ;;
5543esac
5544
5545: Look for a hint-file generated 'call-back-unit'. If the
5546: user has specified that a maximally 64-bit perl is to be built,
5547: we may need to set or change some other defaults.
5548if $test -f use64bitall.cbu; then
5549 echo "Your platform has some specific hints regarding 64-bit builds, using them..."
5550 . ./use64bitall.cbu
5551fi
5552case "$use64bitall" in
5553"$define"|true|[yY]*)
5554 case "$longsize" in
5555 4) case "$archname64" in
5556 ''|64int) archname64=64all ;;
5557 esac
5558 ;;
5559 esac
5560 ;;
5561esac
5562
5563case "$d_quad:$use64bitint" in
5564$undef:$define)
5565 cat >&4 <<EOF
5566
5567*** You have chosen to use 64-bit integers,
5568*** but none can be found.
5569*** Please rerun Configure without -Duse64bitint and/or -Dusemorebits.
5570*** Cannot continue, aborting.
5571
5572EOF
5573 exit 1
5574 ;;
5575esac
5576
5577: check for length of double
5578echo " "
5579case "$doublesize" in
5580'')
5581 echo "Checking to see how big your double precision numbers are..." >&4
5582 $cat >try.c <<EOCP
5583#include <stdio.h>
5584#$i_stdlib I_STDLIB
5585#ifdef I_STDLIB
5586#include <stdlib.h>
5587#endif
5588int main()
5589{
5590 printf("%d\n", (int)sizeof(double));
5591 exit(0);
5592}
5593EOCP
5594 set try
5595 if eval $compile_ok; then
5596 doublesize=`$run ./try`
5597 echo "Your double is $doublesize bytes long."
5598 else
5599 dflt='8'
5600 echo "(I can't seem to compile the test program. Guessing...)"
5601 rp="What is the size of a double precision number (in bytes)?"
5602 . ./myread
5603 doublesize="$ans"
5604 fi
5605 ;;
5606esac
5607$rm -f try.c try
5608
5609: check for long doubles
5610echo " "
5611echo "Checking to see if you have long double..." >&4
5612echo 'int main() { long double x = 7.0; }' > try.c
5613set try
5614if eval $compile; then
5615 val="$define"
5616 echo "You have long double."
5617else
5618 val="$undef"
5619 echo "You do not have long double."
5620fi
5621$rm try.*
5622set d_longdbl
5623eval $setvar
5624
5625: check for length of long double
5626case "${d_longdbl}${longdblsize}" in
5627$define)
5628 echo " "
5629 echo "Checking to see how big your long doubles are..." >&4
5630 $cat >try.c <<'EOCP'
5631#include <stdio.h>
5632int main()
5633{
5634 printf("%d\n", sizeof(long double));
5635}
5636EOCP
5637 set try
5638 set try
5639 if eval $compile; then
5640 longdblsize=`$run ./try`
5641 echo "Your long doubles are $longdblsize bytes long."
5642 else
5643 dflt='8'
5644 echo " "
5645 echo "(I can't seem to compile the test program. Guessing...)" >&4
5646 rp="What is the size of a long double (in bytes)?"
5647 . ./myread
5648 longdblsize="$ans"
5649 fi
5650 if $test "X$doublesize" = "X$longdblsize"; then
5651 echo "That isn't any different from an ordinary double."
5652 echo "I'll keep your setting anyway, but you may see some"
5653 echo "harmless compilation warnings."
5654 fi
5655 ;;
5656esac
5657$rm -f try.* try
5658
5659: determine the architecture name
5660echo " "
5661if xxx=`./loc arch blurfl $pth`; $test -f "$xxx"; then
5662 tarch=`arch`"-$osname"
5663elif xxx=`./loc uname blurfl $pth`; $test -f "$xxx" ; then
5664 if uname -m > tmparch 2>&1 ; then
5665 tarch=`$sed -e 's/ *$//' -e 's/ /_/g' \
5666 -e 's/$/'"-$osname/" tmparch`
5667 else
5668 tarch="$osname"
5669 fi
5670 $rm -f tmparch
5671else
5672 tarch="$osname"
5673fi
5674case "$myarchname" in
5675''|"$tarch") ;;
5676*)
5677 echo "(Your architecture name used to be $myarchname.)"
5678 archname=''
5679 ;;
5680esac
5681case "$targetarch" in
5682'') ;;
5683*) archname=`echo $targetarch|sed 's,^[^-]*-,,'` ;;
5684esac
5685myarchname="$tarch"
5686case "$archname" in
5687'') dflt="$tarch";;
5688*) dflt="$archname";;
5689esac
5690rp='What is your architecture name'
5691. ./myread
5692archname="$ans"
5693case "$usethreads" in
5694$define)
5695 echo "Threads selected." >&4
5696 case "$archname" in
5697 *-thread*) echo "...and architecture name already has -thread." >&4
5698 ;;
5699 *) archname="$archname-thread"
5700 echo "...setting architecture name to $archname." >&4
5701 ;;
5702 esac
5703 ;;
5704esac
5705case "$usemultiplicity" in
5706$define)
5707 echo "Multiplicity selected." >&4
5708 case "$archname" in
5709 *-multi*) echo "...and architecture name already has -multi." >&4
5710 ;;
5711 *) archname="$archname-multi"
5712 echo "...setting architecture name to $archname." >&4
5713 ;;
5714 esac
5715 ;;
5716esac
5717case "$use64bitint$use64bitall" in
5718*"$define"*)
5719 case "$archname64" in
5720 '')
5721 echo "This architecture is naturally 64-bit, not changing architecture name." >&4
5722 ;;
5723 *)
5724 case "$use64bitint" in
5725 "$define") echo "64 bit integers selected." >&4 ;;
5726 esac
5727 case "$use64bitall" in
5728 "$define") echo "Maximal 64 bitness selected." >&4 ;;
5729 esac
5730 case "$archname" in
5731 *-$archname64*) echo "...and architecture name already has $archname64." >&4
5732 ;;
5733 *) archname="$archname-$archname64"
5734 echo "...setting architecture name to $archname." >&4
5735 ;;
5736 esac
5737 ;;
5738 esac
5739esac
5740case "$uselongdouble" in
5741$define)
5742 echo "Long doubles selected." >&4
5743 case "$longdblsize" in
5744 $doublesize)
5745 echo "...but long doubles are equal to doubles, not changing architecture name." >&4
5746 ;;
5747 *)
5748 case "$archname" in
5749 *-ld*) echo "...and architecture name already has -ld." >&4
5750 ;;
5751 *) archname="$archname-ld"
5752 echo "...setting architecture name to $archname." >&4
5753 ;;
5754 esac
5755 ;;
5756 esac
5757 ;;
5758esac
5759case "$useperlio" in
5760$define)
5761 echo "Perlio selected." >&4
5762 ;;
5763*)
5764 echo "Perlio not selected, using stdio." >&4
5765 case "$archname" in
5766 *-stdio*) echo "...and architecture name already has -stdio." >&4
5767 ;;
5768 *) archname="$archname-stdio"
5769 echo "...setting architecture name to $archname." >&4
5770 ;;
5771 esac
5772 ;;
5773esac
5774if $test -f archname.cbu; then
5775 echo "Your platform has some specific hints for architecture name, using them..."
5776 . ./archname.cbu
5777fi
5778
5779: determine root of directory hierarchy where package will be installed.
5780case "$prefix" in
5781'')
5782 dflt=`./loc . /usr/local /usr/local /local /opt /usr`
5783 ;;
5784*?/)
5785 dflt=`echo "$prefix" | sed 's/.$//'`
5786 ;;
5787*)
5788 dflt="$prefix"
5789 ;;
5790esac
5791$cat <<EOM
5792
5793By default, $package will be installed in $dflt/bin, manual pages
5794under $dflt/man, etc..., i.e. with $dflt as prefix for all
5795installation directories. Typically this is something like /usr/local.
5796If you wish to have binaries under /usr/bin but other parts of the
5797installation under /usr/local, that's ok: you will be prompted
5798separately for each of the installation directories, the prefix being
5799only used to set the defaults.
5800
5801EOM
5802fn=d~
5803rp='Installation prefix to use?'
5804. ./getfile
5805oldprefix=''
5806case "$prefix" in
5807'') ;;
5808*)
5809 case "$ans" in
5810 "$prefix") ;;
5811 *) oldprefix="$prefix";;
5812 esac
5813 ;;
5814esac
5815prefix="$ans"
5816prefixexp="$ansexp"
5817
5818case "$afsroot" in
5819'') afsroot=/afs ;;
5820*) afsroot=$afsroot ;;
5821esac
5822
5823: is AFS running?
5824echo " "
5825case "$afs" in
5826$define|true) afs=true ;;
5827$undef|false) afs=false ;;
5828*) if test -d $afsroot; then
5829 afs=true
5830 else
5831 afs=false
5832 fi
5833 ;;
5834esac
5835if $afs; then
5836 echo "AFS may be running... I'll be extra cautious then..." >&4
5837else
5838 echo "AFS does not seem to be running..." >&4
5839fi
5840
5841: determine installation prefix for where package is to be installed.
5842if $afs; then
5843$cat <<EOM
5844
5845Since you are running AFS, I need to distinguish the directory in which
5846files will reside from the directory in which they are installed (and from
5847which they are presumably copied to the former directory by occult means).
5848
5849EOM
5850 case "$installprefix" in
5851 '') dflt=`echo $prefix | sed 's#^/afs/#/afs/.#'`;;
5852 *) dflt="$installprefix";;
5853 esac
5854else
5855$cat <<EOM
5856
5857In some special cases, particularly when building $package for distribution,
5858it is convenient to distinguish the directory in which files should be
5859installed from the directory ($prefix) in which they will
5860eventually reside. For most users, these two directories are the same.
5861
5862EOM
5863 case "$installprefix" in
5864 '') dflt=$prefix ;;
5865 *) dflt=$installprefix;;
5866 esac
5867fi
5868fn=d~
5869rp='What installation prefix should I use for installing files?'
5870. ./getfile
5871installprefix="$ans"
5872installprefixexp="$ansexp"
5873
5874: set the prefixit variable, to compute a suitable default value
5875prefixit='case "$3" in
5876""|none)
5877 case "$oldprefix" in
5878 "") eval "$1=\"\$$2\"";;
5879 *)
5880 case "$3" in
5881 "") eval "$1=";;
5882 none)
5883 eval "tp=\"\$$2\"";
5884 case "$tp" in
5885 ""|" ") eval "$1=\"\$$2\"";;
5886 *) eval "$1=";;
5887 esac;;
5888 esac;;
5889 esac;;
5890*)
5891 eval "tp=\"$oldprefix-\$$2-\""; eval "tp=\"$tp\"";
5892 case "$tp" in
5893 --|/*--|\~*--) eval "$1=\"$prefix/$3\"";;
5894 /*-$oldprefix/*|\~*-$oldprefix/*)
5895 eval "$1=\`echo \$$2 | sed \"s,^$oldprefix,$prefix,\"\`";;
5896 *) eval "$1=\"\$$2\"";;
5897 esac;;
5898esac'
5899
5900: get the patchlevel
5901echo " "
5902echo "Getting the current patchlevel..." >&4
5903if $test -r $rsrc/patchlevel.h;then
5904 revision=`awk '/define[ ]+PERL_REVISION/ {print $3}' $rsrc/patchlevel.h`
5905 patchlevel=`awk '/define[ ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
5906 subversion=`awk '/define[ ]+PERL_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
5907 api_revision=`awk '/define[ ]+PERL_API_REVISION/ {print $3}' $rsrc/patchlevel.h`
5908 api_version=`awk '/define[ ]+PERL_API_VERSION/ {print $3}' $rsrc/patchlevel.h`
5909 api_subversion=`awk '/define[ ]+PERL_API_SUBVERSION/ {print $3}' $rsrc/patchlevel.h`
5910 perl_patchlevel=`egrep 'define PERL_PATCHNUM [0-9][0-9]|,"MAINT[0-9][0-9]*"' $rsrc/patchlevel.h|sed 's/[^0-9]//g'`
5911else
5912 revision=0
5913 patchlevel=0
5914 subversion=0
5915 api_revision=0
5916 api_version=0
5917 api_subversion=0
5918 perl_patchlevel=0
5919 $echo "(You do not have patchlevel.h. Eek.)"
5920fi
5921if $test -r $rsrc/.patch ; then
5922 if $test "X$perl_patchlevel" = "X" || $test "`cat $rsrc/.patch`" -gt "$perl_patchlevel" ; then
5923 perl_patchlevel=`cat $rsrc/.patch`
5924 fi
5925fi
5926: Define a handy string here to avoid duplication in myconfig.SH and configpm.
5927version_patchlevel_string="version $patchlevel subversion $subversion"
5928case "$perl_patchlevel" in
59290|'') ;;
5930*) version_patchlevel_string="$version_patchlevel_string patch $perl_patchlevel" ;;
5931esac
5932
5933$echo "(You have $package $version_patchlevel_string.)"
5934
5935case "$osname" in
5936dos|vms)
5937 : XXX Should be a Configure test for double-dots in filenames.
5938 version=`echo $revision $patchlevel $subversion | \
5939 $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
5940 api_versionstring=`echo $api_revision $api_version $api_subversion | \
5941 $awk '{ printf "%d_%d_%d\n", $1, $2, $3 }'`
5942 ;;
5943*)
5944 version=`echo $revision $patchlevel $subversion | \
5945 $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
5946 api_versionstring=`echo $api_revision $api_version $api_subversion | \
5947 $awk '{ printf "%d.%d.%d\n", $1, $2, $3 }'`
5948 ;;
5949esac
5950: Special case the 5.005_xx maintenance series, which used 5.005
5951: without any subversion label as a subdirectory in $sitelib
5952if test "${api_revision}${api_version}${api_subversion}" = "550"; then
5953 api_versionstring='5.005'
5954fi
5955
5956: determine installation style
5957: For now, try to deduce it from prefix unless it is already set.
5958: Reproduce behavior of 5.005 and earlier, maybe drop that in 5.7.
5959case "$installstyle" in
5960'') case "$prefix" in
5961 *perl*) dflt='lib';;
5962 *) dflt='lib/perl5' ;;
5963 esac
5964 ;;
5965*) dflt="$installstyle" ;;
5966esac
5967: Probably not worth prompting for this since we prompt for all
5968: the directories individually, and the prompt would be too long and
5969: confusing anyway.
5970installstyle=$dflt
5971
5972
5973: Perform the prefixexp/installprefixexp correction if necessary
5974cat <<EOS >installprefix
5975$startsh
5976EOS
5977cat <<'EOSC' >>installprefix
5978: Change installation prefix, if necessary.
5979if $test X"$prefix" != X"$installprefix"; then
5980 eval "install${prefixvar}=\`echo \$${prefixvar}exp | sed \"s#^\$prefixexp#\$installprefixexp#\"\`"
5981else
5982 eval "install${prefixvar}=\"\$${prefixvar}exp\""
5983fi
5984EOSC
5985
5986: Set variables such as privlib and privlibexp from the output of ./getfile
5987: performing the prefixexp/installprefixexp correction if necessary.
5988cat <<EOS >setprefixvar
5989$startsh
5990EOS
5991cat <<'EOSC' >>setprefixvar
5992eval "${prefixvar}=\"\$ans\""
5993eval "${prefixvar}exp=\"\$ansexp\""
5994. ./installprefix
5995EOSC
5996
5997: determine where public executables go
5998echo " "
5999set dflt bin bin
6000eval $prefixit
6001fn=d~
6002rp='Pathname where the public executables will reside?'
6003. ./getfile
6004if $test "X$ansexp" != "X$binexp"; then
6005 installbin=''
6006fi
6007prefixvar=bin
6008: XXX Bug? -- ignores Configure -Dinstallprefix setting.
6009. ./setprefixvar
6010
6011case "$userelocatableinc" in
6012$define|true|[yY]*) dflt='y';;
6013*) dflt='n';;
6014esac
6015cat <<EOM
6016
6017Would you like to build Perl so that the installation is relocatable, so that
6018library paths in @INC are determined relative to the path of the perl binary?
6019This is not advised for system Perl installs, or if you need to run setid
6020scripts or scripts under taint mode.
6021
6022If this doesn't make any sense to you, just accept the default '$dflt'.
6023EOM
6024rp='Use relocatable @INC?'
6025. ./myread
6026case "$ans" in
6027y|Y) val="$define" ;;
6028*) val="$undef" ;;
6029esac
6030set userelocatableinc
6031eval $setvar
6032
6033: Default prefix is now "up one level from where the binaries are"
6034case "$userelocatableinc" in
6035$define|true|[yY]*) initialinstalllocation="$binexp"
6036 bin=".../"
6037 binexp=".../"
6038 prefix=".../.."
6039 prefixexp=".../.."
6040 installprefixexp=".../..";;
6041esac
6042
6043
6044: determine where private library files go
6045: Usual default is /usr/local/lib/perl5/$version.
6046: Also allow things like /opt/perl/lib/$version, since
6047: /opt/perl/lib/perl5... would be redundant.
6048: The default "style" setting is made in installstyle.U
6049case "$installstyle" in
6050*lib/perl5*) set dflt privlib lib/$package/$version ;;
6051*) set dflt privlib lib/$version ;;
6052esac
6053eval $prefixit
6054$cat <<EOM
6055
6056There are some auxiliary files for $package that need to be put into a
6057private library directory that is accessible by everyone.
6058
6059EOM
6060fn=d~+
6061rp='Pathname where the private library files will reside?'
6062. ./getfile
6063prefixvar=privlib
6064. ./setprefixvar
6065
6066: set the prefixup variable, to restore leading tilda escape
6067prefixup='case "$prefixexp" in
6068"$prefix") ;;
6069*) eval "$1=\`echo \$$1 | sed \"s,^$prefixexp,$prefix,\"\`";;
6070esac'
6071
6072: determine where public architecture dependent libraries go
6073set archlib archlib
6074eval $prefixit
6075: privlib default is /usr/local/lib/$package/$version
6076: archlib default is /usr/local/lib/$package/$version/$archname
6077: privlib may have an optional trailing /share.
6078tdflt=`echo $privlib | $sed 's,/share$,,'`
6079tdflt=$tdflt/$archname
6080case "$archlib" in
6081'') dflt=$tdflt
6082 ;;
6083*) dflt="$archlib"
6084 ;;
6085esac
6086$cat <<EOM
6087
6088$spackage contains architecture-dependent library files. If you are
6089sharing libraries in a heterogeneous environment, you might store
6090these files in a separate location. Otherwise, you can just include
6091them with the rest of the public library files.
6092
6093EOM
6094fn=d+~
6095rp='Where do you want to put the public architecture-dependent libraries?'
6096. ./getfile
6097prefixvar=archlib
6098. ./setprefixvar
6099if $test X"$archlib" = X"$privlib"; then
6100 d_archlib="$undef"
6101else
6102 d_archlib="$define"
6103fi
6104
6105: see if setuid scripts can be secure
6106$cat <<EOM
6107
6108Some kernels have a bug that prevents setuid #! scripts from being
6109secure. Some sites have disabled setuid #! scripts because of this.
6110
6111First let's decide if your kernel supports secure setuid #! scripts.
6112(If setuid #! scripts would be secure but have been disabled anyway,
6113don't say that they are secure if asked.)
6114
6115EOM
6116
6117val="$undef"
6118if $test -d /dev/fd; then
6119 echo "#!$ls" >reflect
6120 chmod +x,u+s reflect
6121 ./reflect >flect 2>&1
6122 if $contains "/dev/fd" flect >/dev/null; then
6123 echo "Congratulations, your kernel has secure setuid scripts!" >&4
6124 val="$define"
6125 else
6126 $cat <<EOM
6127If you are not sure if they are secure, I can check but I'll need a
6128username and password different from the one you are using right now.
6129If you don't have such a username or don't want me to test, simply
6130enter 'none'.
6131
6132EOM
6133 rp='Other username to test security of setuid scripts with?'
6134 dflt='none'
6135 . ./myread
6136 case "$ans" in
6137 n|none)
6138 case "$d_suidsafe" in
6139 '') echo "I'll assume setuid scripts are *not* secure." >&4
6140 dflt=n;;
6141 "$undef")
6142 echo "Well, the $hint value is *not* secure." >&4
6143 dflt=n;;
6144 *) echo "Well, the $hint value *is* secure." >&4
6145 dflt=y;;
6146 esac
6147 ;;
6148 *)
6149 $rm -f reflect flect
6150 echo "#!$ls" >reflect
6151 chmod +x,u+s reflect
6152 echo >flect
6153 chmod a+w flect
6154 echo '"su" will (probably) prompt you for '"$ans's password."
6155 su $ans -c './reflect >flect'
6156 if $contains "/dev/fd" flect >/dev/null; then
6157 echo "Okay, it looks like setuid scripts are secure." >&4
6158 dflt=y
6159 else
6160 echo "I don't think setuid scripts are secure." >&4
6161 dflt=n
6162 fi
6163 ;;
6164 esac
6165 rp='Does your kernel have *secure* setuid scripts?'
6166 . ./myread
6167 case "$ans" in
6168 [yY]*) val="$define";;
6169 *) val="$undef";;
6170 esac
6171 fi
6172else
6173 echo "I don't think setuid scripts are secure (no /dev/fd directory)." >&4
6174 echo "(That's for file descriptors, not floppy disks.)"
6175 val="$undef"
6176fi
6177set d_suidsafe
6178eval $setvar
6179
6180$rm -f reflect flect
6181
6182: now see if they want to do setuid emulation
6183echo " "
6184val="$undef"
6185case "$d_suidsafe" in
6186"$define")
6187 val="$undef"
6188 echo "No need to emulate SUID scripts since they are secure here." >&4
6189 ;;
6190*)
6191 $cat <<EOM
6192Some systems have disabled setuid scripts, especially systems where
6193setuid scripts cannot be secure. On systems where setuid scripts have
6194been disabled, the setuid/setgid bits on scripts are currently
6195useless. It is possible for $package to detect those bits and emulate
6196setuid/setgid in a secure fashion. This emulation will only work if
6197setuid scripts have been disabled in your kernel.
6198
6199EOM
6200 case "$d_dosuid" in
6201 "$define") dflt=y ;;
6202 *) dflt=n ;;
6203 esac
6204 rp="Do you want to do setuid/setgid emulation?"
6205 . ./myread
6206 case "$ans" in
6207 [yY]*) val="$define";;
6208 *) val="$undef";;
6209 esac
6210 ;;
6211esac
6212set d_dosuid
6213eval $setvar
6214
6215: see if this is a malloc.h system
6216: we want a real compile instead of Inhdr because some systems have a
6217: malloc.h that just gives a compile error saying to use stdlib.h instead
6218echo " "
6219$cat >try.c <<EOCP
6220#include <stdlib.h>
6221#include <malloc.h>
6222int main () { return 0; }
6223EOCP
6224set try
6225if eval $compile; then
6226 echo "<malloc.h> found." >&4
6227 val="$define"
6228else
6229 echo "<malloc.h> NOT found." >&4
6230 val="$undef"
6231fi
6232$rm -f try.c try
6233set i_malloc
6234eval $setvar
6235
6236: check for void type
6237echo " "
6238echo "Checking to see how well your C compiler groks the void type..." >&4
6239case "$voidflags" in
6240'')
6241 $cat >try.c <<EOCP
6242#$i_stdlib I_STDLIB
6243#ifdef I_STDLIB
6244#include <stdlib.h>
6245#endif
6246#if TRY & 1
6247void sub() {
6248#else
6249sub() {
6250#endif
6251 extern void moo(); /* function returning void */
6252 void (*goo)(); /* ptr to func returning void */
6253#if TRY & 8
6254 void *hue; /* generic ptr */
6255#endif
6256#if TRY & 2
6257 void (*foo[10])();
6258#endif
6259
6260#if TRY & 4
6261 if(goo == moo) {
6262 exit(0);
6263 }
6264#endif
6265 exit(0);
6266}
6267int main() { sub(); }
6268EOCP
6269 if $cc $ccflags -c -DTRY=$defvoidused try.c >.out 2>&1 ; then
6270 voidflags=$defvoidused
6271 echo "Good. It appears to support void to the level $package wants.">&4
6272 if $contains warning .out >/dev/null 2>&1; then
6273 echo "However, you might get some warnings that look like this:"
6274 $cat .out
6275 fi
6276 else
6277echo "Hmm, your compiler has some difficulty with void. Checking further..." >&4
6278 if $cc $ccflags -c -DTRY=1 try.c >/dev/null 2>&1; then
6279 echo "It supports 1..."
6280 if $cc $ccflags -c -DTRY=3 try.c >/dev/null 2>&1; then
6281 echo "It also supports 2..."
6282 if $cc $ccflags -c -DTRY=7 try.c >/dev/null 2>&1; then
6283 voidflags=7
6284 echo "And it supports 4 but not 8 definitely."
6285 else
6286 echo "It doesn't support 4..."
6287 if $cc $ccflags -c -DTRY=11 try.c >/dev/null 2>&1; then
6288 voidflags=11
6289 echo "But it supports 8."
6290 else
6291 voidflags=3
6292 echo "Neither does it support 8."
6293 fi
6294 fi
6295 else
6296 echo "It does not support 2..."
6297 if $cc $ccflags -c -DTRY=13 try.c >/dev/null 2>&1; then
6298 voidflags=13
6299 echo "But it supports 4 and 8."
6300 else
6301 if $cc $ccflags -c -DTRY=5 try.c >/dev/null 2>&1; then
6302 voidflags=5
6303 echo "And it supports 4 but has not heard about 8."
6304 else
6305 echo "However it supports 8 but not 4."
6306 fi
6307 fi
6308 fi
6309 else
6310 echo "There is no support at all for void."
6311 voidflags=0
6312 fi
6313 fi
6314esac
6315case "$voidflags" in
6316"$defvoidused") ;;
6317*) $cat >&4 <<'EOM'
6318 Support flag bits are:
6319 1: basic void declarations.
6320 2: arrays of pointers to functions returning void.
6321 4: operations between pointers to and addresses of void functions.
6322 8: generic void pointers.
6323EOM
6324 dflt="$voidflags";
6325 rp="Your void support flags add up to what?"
6326 . ./myread
6327 voidflags="$ans"
6328 ;;
6329esac
6330$rm -f try.* .out
6331
6332: check for length of pointer
6333echo " "
6334case "$ptrsize" in
6335'')
6336 echo "Checking to see how big your pointers are..." >&4
6337 if test "$voidflags" -gt 7; then
6338 echo '#define VOID_PTR char *' > try.c
6339 else
6340 echo '#define VOID_PTR void *' > try.c
6341 fi
6342 $cat >>try.c <<EOCP
6343#include <stdio.h>
6344#$i_stdlib I_STDLIB
6345#ifdef I_STDLIB
6346#include <stdlib.h>
6347#endif
6348int main()
6349{
6350 printf("%d\n", (int)sizeof(VOID_PTR));
6351 exit(0);
6352}
6353EOCP
6354 set try
6355 if eval $compile_ok; then
6356 ptrsize=`$run ./try`
6357 echo "Your pointers are $ptrsize bytes long."
6358 else
6359 dflt='4'
6360 echo "(I can't seem to compile the test program. Guessing...)" >&4
6361 rp="What is the size of a pointer (in bytes)?"
6362 . ./myread
6363 ptrsize="$ans"
6364 fi
6365 ;;
6366esac
6367$rm -f try.c try
6368case "$use64bitall" in
6369"$define"|true|[yY]*)
6370 case "$ptrsize" in
6371 4) cat <<EOM >&4
6372
6373*** You have chosen a maximally 64-bit build,
6374*** but your pointers are only 4 bytes wide.
6375*** Please rerun Configure without -Duse64bitall.
6376EOM
6377 case "$d_quad" in
6378 define)
6379 cat <<EOM >&4
6380*** Since you have quads, you could possibly try with -Duse64bitint.
6381EOM
6382 ;;
6383 esac
6384 cat <<EOM >&4
6385*** Cannot continue, aborting.
6386
6387EOM
6388
6389 exit 1
6390 ;;
6391 esac
6392 ;;
6393esac
6394
6395
6396: determine whether to use malloc wrapping
6397echo " "
6398case "$usemallocwrap" in
6399[yY]*|true|$define) dflt='y' ;;
6400[nN]*|false|$undef) dflt='n' ;;
6401*) case "$usedevel" in
6402 [yY]*|true|$define) dflt='y' ;;
6403 *) dflt='n' ;;
6404 esac
6405 ;;
6406esac
6407rp="Do you wish to wrap malloc calls to protect against potential overflows?"
6408. ./myread
6409usemallocwrap="$ans"
6410case "$ans" in
6411y*|true)
6412 usemallocwrap="$define" ;;
6413*)
6414 usemallocwrap="$undef" ;;
6415esac
6416
6417: determine which malloc to compile in
6418echo " "
6419case "$usemymalloc" in
6420[yY]*|true|$define) dflt='y' ;;
6421[nN]*|false|$undef) dflt='n' ;;
6422*) case "$ptrsize" in
6423 4) dflt='y' ;;
6424 *) dflt='n' ;;
6425 esac
6426 ;;
6427esac
6428rp="Do you wish to attempt to use the malloc that comes with $package?"
6429. ./myread
6430usemymalloc="$ans"
6431case "$ans" in
6432y*|true)
6433 usemymalloc='y'
6434 mallocsrc='malloc.c'
6435 mallocobj="malloc$_o"
6436 d_mymalloc="$define"
6437 case "$libs" in
6438 *-lmalloc*)
6439 : Remove malloc from list of libraries to use
6440 echo "Removing unneeded -lmalloc from library list" >&4
6441 set `echo X $libs | $sed -e 's/-lmalloc / /' -e 's/-lmalloc$//'`
6442 shift
6443 libs="$*"
6444 echo "libs = $libs" >&4
6445 ;;
6446 esac
6447 ;;
6448*)
6449 usemymalloc='n'
6450 mallocsrc=''
6451 mallocobj=''
6452 d_mymalloc="$undef"
6453 ;;
6454esac
6455
6456: compute the return types of malloc and free
6457echo " "
6458$cat >malloc.c <<END
6459#$i_malloc I_MALLOC
6460#$i_stdlib I_STDLIB
6461#include <stdio.h>
6462#include <sys/types.h>
6463#ifdef I_MALLOC
6464#include <malloc.h>
6465#endif
6466#ifdef I_STDLIB
6467#include <stdlib.h>
6468#endif
6469#ifdef TRY_MALLOC
6470void *malloc();
6471#endif
6472#ifdef TRY_FREE
6473void free();
6474#endif
6475END
6476case "$malloctype" in
6477'')
6478 if $cc $ccflags -c -DTRY_MALLOC malloc.c >/dev/null 2>&1; then
6479 malloctype='void *'
6480 else
6481 malloctype='char *'
6482 fi
6483 ;;
6484esac
6485echo "Your system wants malloc to return '$malloctype', it would seem." >&4
6486
6487case "$freetype" in
6488'')
6489 if $cc $ccflags -c -DTRY_FREE malloc.c >/dev/null 2>&1; then
6490 freetype='void'
6491 else
6492 freetype='int'
6493 fi
6494 ;;
6495esac
6496echo "Your system uses $freetype free(), it would seem." >&4
6497$rm -f malloc.[co]
6498$cat <<EOM
6499
6500After $package is installed, you may wish to install various
6501add-on modules and utilities. Typically, these add-ons will
6502be installed under $prefix with the rest
6503of this package. However, you may wish to install such add-ons
6504elsewhere under a different prefix.
6505
6506If you do not wish to put everything under a single prefix, that's
6507ok. You will be prompted for the individual locations; this siteprefix
6508is only used to suggest the defaults.
6509
6510The default should be fine for most people.
6511
6512EOM
6513fn=d~+
6514rp='Installation prefix to use for add-on modules and utilities?'
6515: XXX Here might be another good place for an installstyle setting.
6516case "$siteprefix" in
6517'') dflt=$prefix ;;
6518*) dflt=$siteprefix ;;
6519esac
6520. ./getfile
6521: XXX Prefixit unit does not yet support siteprefix and vendorprefix
6522oldsiteprefix=''
6523case "$siteprefix" in
6524'') ;;
6525*) case "$ans" in
6526 "$prefix") ;;
6527 *) oldsiteprefix="$prefix";;
6528 esac
6529 ;;
6530esac
6531siteprefix="$ans"
6532siteprefixexp="$ansexp"
6533
6534: determine where site specific libraries go.
6535: Usual default is /usr/local/lib/perl5/site_perl/$version
6536: The default "style" setting is made in installstyle.U
6537: XXX No longer works with Prefixit stuff.
6538prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6539case "$sitelib" in
6540'') case "$installstyle" in
6541 *lib/perl5*) dflt=$siteprefix/lib/$package/site_$prog/$version ;;
6542 *) dflt=$siteprefix/lib/site_$prog/$version ;;
6543 esac
6544 ;;
6545*) dflt="$sitelib"
6546 ;;
6547esac
6548$cat <<EOM
6549
6550The installation process will create a directory for
6551site-specific extensions and modules. Most users find it convenient
6552to place all site-specific files in this directory rather than in the
6553main distribution directory.
6554
6555EOM
6556fn=d~+
6557rp='Pathname for the site-specific library files?'
6558. ./getfile
6559prefixvar=sitelib
6560. ./setprefixvar
6561sitelib_stem=`echo "$sitelibexp" | sed "s,/$version$,,"`
6562
6563: determine where site specific architecture-dependent libraries go.
6564: sitelib default is /usr/local/lib/perl5/site_perl/$version
6565: sitearch default is /usr/local/lib/perl5/site_perl/$version/$archname
6566: sitelib may have an optional trailing /share.
6567case "$sitearch" in
6568'') dflt=`echo $sitelib | $sed 's,/share$,,'`
6569 dflt="$dflt/$archname"
6570 ;;
6571*) dflt="$sitearch"
6572 ;;
6573esac
6574set sitearch sitearch none
6575eval $prefixit
6576$cat <<EOM
6577
6578The installation process will also create a directory for
6579architecture-dependent site-specific extensions and modules.
6580
6581EOM
6582fn=d~+
6583rp='Pathname for the site-specific architecture-dependent library files?'
6584. ./getfile
6585prefixvar=sitearch
6586. ./setprefixvar
6587
6588$cat <<EOM
6589
6590The installation process will also create a directory for
6591vendor-supplied add-ons. Vendors who supply perl with their system
6592may find it convenient to place all vendor-supplied files in this
6593directory rather than in the main distribution directory. This will
6594ease upgrades between binary-compatible maintenance versions of perl.
6595
6596Of course you may also use these directories in whatever way you see
6597fit. For example, you might use them to access modules shared over a
6598company-wide network.
6599
6600The default answer should be fine for most people.
6601This causes further questions about vendor add-ons to be skipped
6602and no vendor-specific directories will be configured for perl.
6603
6604EOM
6605rp='Do you want to configure vendor-specific add-on directories?'
6606case "$usevendorprefix" in
6607define|true|[yY]*) dflt=y ;;
6608*) : User may have set vendorprefix directly on Configure command line.
6609 case "$vendorprefix" in
6610 ''|' ') dflt=n ;;
6611 *) dflt=y ;;
6612 esac
6613 ;;
6614esac
6615. ./myread
6616case "$ans" in
6617[yY]*) fn=d~+
6618 rp='Installation prefix to use for vendor-supplied add-ons?'
6619 case "$vendorprefix" in
6620 '') dflt='' ;;
6621 *) dflt=$vendorprefix ;;
6622 esac
6623 . ./getfile
6624 : XXX Prefixit unit does not yet support siteprefix and vendorprefix
6625 oldvendorprefix=''
6626 case "$vendorprefix" in
6627 '') ;;
6628 *) case "$ans" in
6629 "$prefix") ;;
6630 *) oldvendorprefix="$prefix";;
6631 esac
6632 ;;
6633 esac
6634 usevendorprefix="$define"
6635 vendorprefix="$ans"
6636 vendorprefixexp="$ansexp"
6637 ;;
6638*) usevendorprefix="$undef"
6639 vendorprefix=''
6640 vendorprefixexp=''
6641 ;;
6642esac
6643
6644case "$vendorprefix" in
6645'') d_vendorlib="$undef"
6646 vendorlib=''
6647 vendorlibexp=''
6648 ;;
6649*) d_vendorlib="$define"
6650 : determine where vendor-supplied modules go.
6651 : Usual default is /usr/local/lib/perl5/vendor_perl/$version
6652 case "$vendorlib" in
6653 '')
6654 prog=`echo $package | $sed 's/-*[0-9.]*$//'`
6655 case "$installstyle" in
6656 *lib/perl5*) dflt=$vendorprefix/lib/$package/vendor_$prog/$version ;;
6657 *) dflt=$vendorprefix/lib/vendor_$prog/$version ;;
6658 esac
6659 ;;
6660 *) dflt="$vendorlib"
6661 ;;
6662 esac
6663 fn=d~+
6664 rp='Pathname for the vendor-supplied library files?'
6665 . ./getfile
6666 vendorlib="$ans"
6667 vendorlibexp="$ansexp"
6668 ;;
6669esac
6670vendorlib_stem=`echo "$vendorlibexp" | sed "s,/$version$,,"`
6671prefixvar=vendorlib
6672. ./installprefix
6673
6674case "$vendorprefix" in
6675'') d_vendorarch="$undef"
6676 vendorarch=''
6677 vendorarchexp=''
6678 ;;
6679*) d_vendorarch="$define"
6680 : determine where vendor-supplied architecture-dependent libraries go.
6681 : vendorlib default is /usr/local/lib/perl5/vendor_perl/$version
6682 : vendorarch default is /usr/local/lib/perl5/vendor_perl/$version/$archname
6683 : vendorlib may have an optional trailing /share.
6684 case "$vendorarch" in
6685 '') dflt=`echo $vendorlib | $sed 's,/share$,,'`
6686 dflt="$dflt/$archname"
6687 ;;
6688 *) dflt="$vendorarch" ;;
6689 esac
6690 fn=d~+
6691 rp='Pathname for vendor-supplied architecture-dependent files?'
6692 . ./getfile
6693 vendorarch="$ans"
6694 vendorarchexp="$ansexp"
6695 ;;
6696esac
6697prefixvar=vendorarch
6698. ./installprefix
6699
6700: Final catch-all directories to search
6701$cat <<EOM
6702
6703Lastly, you can have perl look in other directories for extensions and
6704modules in addition to those already specified.
6705These directories will be searched after
6706 $sitearch
6707 $sitelib
6708EOM
6709test X"$vendorlib" != "X" && echo ' ' $vendorlib
6710test X"$vendorarch" != "X" && echo ' ' $vendorarch
6711echo ' '
6712case "$otherlibdirs" in
6713''|' ') dflt='none' ;;
6714*) dflt="$otherlibdirs" ;;
6715esac
6716$cat <<EOM
6717Enter a colon-separated set of extra paths to include in perl's @INC
6718search path, or enter 'none' for no extra paths.
6719
6720EOM
6721
6722rp='Colon-separated list of additional directories for perl to search?'
6723. ./myread
6724case "$ans" in
6725' '|''|none) otherlibdirs=' ' ;;
6726*) otherlibdirs="$ans" ;;
6727esac
6728case "$otherlibdirs" in
6729' ') val=$undef ;;
6730*) val=$define ;;
6731esac
6732set d_perl_otherlibdirs
6733eval $setvar
6734
6735: Cruising for prototypes
6736echo " "
6737echo "Checking out function prototypes..." >&4
6738$cat >prototype.c <<EOCP
6739#$i_stdlib I_STDLIB
6740#ifdef I_STDLIB
6741#include <stdlib.h>
6742#endif
6743int main(int argc, char *argv[]) {
6744 exit(0);}
6745EOCP
6746if $cc $ccflags -c prototype.c >prototype.out 2>&1 ; then
6747 echo "Your C compiler appears to support function prototypes."
6748 val="$define"
6749else
6750 echo "Your C compiler doesn't seem to understand function prototypes."
6751 val="$undef"
6752fi
6753set prototype
6754eval $setvar
6755$rm -f prototype*
6756
6757case "$prototype" in
6758"$define") ;;
6759*) ansi2knr='ansi2knr'
6760 echo " "
6761 cat <<EOM >&4
6762
6763$me: FATAL ERROR:
6764This version of $package can only be compiled by a compiler that
6765understands function prototypes. Unfortunately, your C compiler
6766 $cc $ccflags
6767doesn't seem to understand them. Sorry about that.
6768
6769If GNU cc is available for your system, perhaps you could try that instead.
6770
6771Eventually, we hope to support building Perl with pre-ANSI compilers.
6772If you would like to help in that effort, please contact <perlbug@perl.org>.
6773
6774Aborting Configure now.
6775EOM
6776 exit 2
6777 ;;
6778esac
6779
6780echo " "
6781case "$extras" in
6782'') dflt='n';;
6783*) dflt='y';;
6784esac
6785cat <<EOM
6786Perl can be built with extra modules or bundles of modules which
6787will be fetched from the CPAN and installed alongside Perl.
6788
6789Notice that you will need access to the CPAN; either via the Internet,
6790or a local copy, for example a CD-ROM or a local CPAN mirror. (You will
6791be asked later to configure the CPAN.pm module which will in turn do
6792the installation of the rest of the extra modules or bundles.)
6793
6794Notice also that if the modules require any external software such as
6795libraries and headers (the libz library and the zlib.h header for the
6796Compress::Zlib module, for example) you MUST have any such software
6797already installed, this configuration process will NOT install such
6798things for you.
6799
6800If this doesn't make any sense to you, just accept the default '$dflt'.
6801EOM
6802rp='Install any extra modules (y or n)?'
6803. ./myread
6804case "$ans" in
6805y|Y)
6806 cat <<EOM
6807
6808Please list any extra modules or bundles to be installed from CPAN,
6809with spaces between the names. The names can be in any format the
6810'install' command of CPAN.pm will understand. (Answer 'none',
6811without the quotes, to install no extra modules or bundles.)
6812EOM
6813 rp='Extras?'
6814 dflt="$extras"
6815 . ./myread
6816 extras="$ans"
6817esac
6818case "$extras" in
6819''|'none')
6820 val=''
6821 $rm -f ../extras.lst
6822 ;;
6823*) echo "(Saving the list of extras for later...)"
6824 echo "$extras" > ../extras.lst
6825 val="'$extras'"
6826 ;;
6827esac
6828set extras
6829eval $setvar
6830echo " "
6831
6832: determine where html pages for programs go
6833set html1dir html1dir none
6834eval $prefixit
6835$cat <<EOM
6836
6837If you wish to install html files for programs in $spackage, indicate
6838the appropriate directory here. To skip installing html files,
6839answer "none".
6840EOM
6841case "$html1dir" in
6842''|none|$undef|' ') dflt=none ;;
6843*) dflt=$html1dir ;;
6844esac
6845fn=dn+~
6846rp="Directory for the main $spackage html pages?"
6847. ./getfile
6848prefixvar=html1dir
6849. ./setprefixvar
6850: Use ' ' for none so value is preserved next time through Configure
6851$test X"$html1dir" = "X" && html1dir=' '
6852
6853: determine where html pages for libraries and modules go
6854set html3dir html3dir none
6855eval $prefixit
6856$cat <<EOM
6857
6858If you wish to install html files for modules associated with $spackage,
6859indicate the appropriate directory here. To skip installing html files,
6860answer "none".
6861EOM
6862: There is no obvious default. If they have specified html1dir, then
6863: try to key off that, possibly changing .../html1 into .../html3.
6864case "$html3dir" in
6865'') html3dir=`echo "$html1dir" | $sed 's/1$/3$/'` ;;
6866*) dflt=$html3dir ;;
6867esac
6868fn=dn+~
6869rp="Directory for the $spackage module html pages?"
6870. ./getfile
6871prefixvar=html3dir
6872. ./setprefixvar
6873: Use ' ' for none so value is preserved next time through Configure
6874$test X"$html3dir" = "X" && html3dir=' '
6875
6876: Find perl5.005 or later.
6877echo "Looking for a previously installed perl5.005 or later... "
6878case "$perl5" in
6879'') for tdir in `echo "$binexp$path_sep$PATH" | $sed "s/$path_sep/ /g"`; do
6880 : Check if this perl is recent and can load a simple module
6881 if $test -x $tdir/perl$exe_ext && $tdir/perl -Mless -e 'use 5.005;' >/dev/null 2>&1; then
6882 perl5=$tdir/perl
6883 break;
6884 elif $test -x $tdir/perl5$exe_ext && $tdir/perl5 -Mless -e 'use 5.005;' >/dev/null 2>&1; then
6885 perl5=$tdir/perl5
6886 break;
6887 fi
6888 done
6889 ;;
6890*) perl5="$perl5"
6891 ;;
6892esac
6893case "$perl5" in
6894'') echo "None found. That's ok.";;
6895*) echo "Using $perl5." ;;
6896esac
6897
6898: Determine list of previous versions to include in @INC
6899$cat > getverlist <<EOPL
6900#!$perl5 -w
6901use File::Basename;
6902\$api_versionstring = "$api_versionstring";
6903\$version = "$version";
6904\$stem = "$sitelib_stem";
6905\$archname = "$archname";
6906EOPL
6907 $cat >> getverlist <<'EOPL'
6908# Can't have leading @ because metaconfig interprets it as a command!
6909;@inc_version_list=();
6910# XXX Redo to do opendir/readdir?
6911if (-d $stem) {
6912 chdir($stem);
6913 ;@candidates = glob("5.*");
6914}
6915else {
6916 ;@candidates = ();
6917}
6918
6919# XXX ToDo: These comparisons must be reworked when two-digit
6920# subversions come along, so that 5.7.10 compares as greater than
6921# 5.7.3! By that time, hope that 5.6.x is sufficiently
6922# widespread that we can use the built-in version vectors rather
6923# than reinventing them here. For 5.6.0, however, we must
6924# assume this script will likely be run by 5.005_0x. --AD 1/2000.
6925foreach $d (@candidates) {
6926 if ($d lt $version) {
6927 if ($d ge $api_versionstring) {
6928 unshift(@inc_version_list, grep { -d } "$d/$archname", $d);
6929 }
6930 elsif ($d ge "5.005") {
6931 unshift(@inc_version_list, grep { -d } $d);
6932 }
6933 }
6934 else {
6935 # Skip newer version. I.e. don't look in
6936 # 5.7.0 if we're installing 5.6.1.
6937 }
6938}
6939
6940if (@inc_version_list) {
6941 print join(' ', @inc_version_list);
6942}
6943else {
6944 # Blank space to preserve value for next Configure run.
6945 print " ";
6946}
6947EOPL
6948chmod +x getverlist
6949case "$inc_version_list" in
6950'') if test -x "$perl5$exe_ext"; then
6951 dflt=`$perl5 getverlist`
6952 else
6953 dflt='none'
6954 fi
6955 ;;
6956$undef) dflt='none' ;;
6957*) eval dflt=\"$inc_version_list\" ;;
6958esac
6959case "$dflt" in
6960''|' ') dflt=none ;;
6961esac
6962case "$dflt" in
69635.005) dflt=none ;;
6964esac
6965$cat <<EOM
6966
6967In order to ease the process of upgrading, this version of perl
6968can be configured to use modules built and installed with earlier
6969versions of perl that were installed under $prefix. Specify here
6970the list of earlier versions that this version of perl should check.
6971If Configure detected no earlier versions of perl installed under
6972$prefix, then the list will be empty. Answer 'none' to tell perl
6973to not search earlier versions.
6974
6975The default should almost always be sensible, so if you're not sure,
6976just accept the default.
6977EOM
6978
6979rp='List of earlier versions to include in @INC?'
6980. ./myread
6981case "$ans" in
6982[Nn]one|''|' '|$undef) inc_version_list=' ' ;;
6983*) inc_version_list="$ans" ;;
6984esac
6985case "$inc_version_list" in
6986''|' ')
6987 inc_version_list_init='0';;
6988*) inc_version_list_init=`echo $inc_version_list |
6989 $sed -e 's/^/"/' -e 's/ /","/g' -e 's/$/",0/'`
6990 ;;
6991esac
6992$rm -f getverlist
6993
6994: determine whether to install perl also as /usr/bin/perl
6995
6996echo " "
6997if $test -d /usr/bin -a "X$installbin" != X/usr/bin; then
6998 $cat <<EOM
6999Many scripts expect perl to be installed as /usr/bin/perl.
7000
7001If you want to, I can install the perl you are about to compile
7002as /usr/bin/perl (in addition to $bin/perl).
7003EOM
7004 if test -f /usr/bin/perl; then
7005 $cat <<EOM
7006
7007However, please note that because you already have a /usr/bin/perl,
7008overwriting that with a new Perl would very probably cause problems.
7009Therefore I'm assuming you don't want to do that (unless you insist).
7010
7011EOM
7012 case "$installusrbinperl" in
7013 "$define"|[yY]*) dflt='y';;
7014 *) dflt='n';;
7015 esac
7016 else
7017 $cat <<EOM
7018
7019Since you don't have a /usr/bin/perl I'm assuming creating one is okay.
7020
7021EOM
7022 case "$installusrbinperl" in
7023 "$undef"|[nN]*) dflt='n';;
7024 *) dflt='y';;
7025 esac
7026 fi
7027 rp="Do you want to install perl as /usr/bin/perl?"
7028 . ./myread
7029 case "$ans" in
7030 [yY]*) val="$define";;
7031 *) val="$undef" ;;
7032 esac
7033else
7034 val="$undef"
7035fi
7036set installusrbinperl
7037eval $setvar
7038
7039echo " "
7040echo "Checking for GNU C Library..." >&4
7041cat >try.c <<'EOCP'
7042/* Find out version of GNU C library. __GLIBC__ and __GLIBC_MINOR__
7043 alone are insufficient to distinguish different versions, such as
7044 2.0.6 and 2.0.7. The function gnu_get_libc_version() appeared in
7045 libc version 2.1.0. A. Dougherty, June 3, 2002.
7046*/
7047#include <stdio.h>
7048int main(void)
7049{
7050#ifdef __GLIBC__
7051# ifdef __GLIBC_MINOR__
7052# if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
7053# include <gnu/libc-version.h>
7054 printf("%s\n", gnu_get_libc_version());
7055# else
7056 printf("%d.%d\n", __GLIBC__, __GLIBC_MINOR__);
7057# endif
7058# else
7059 printf("%d\n", __GLIBC__);
7060# endif
7061 return 0;
7062#else
7063 return 1;
7064#endif
7065}
7066EOCP
7067set try
7068if eval $compile_ok && $run ./try > glibc.ver; then
7069 val="$define"
7070 gnulibc_version=`$cat glibc.ver`
7071 echo "You are using the GNU C Library version $gnulibc_version"
7072else
7073 val="$undef"
7074 gnulibc_version=''
7075 echo "You are not using the GNU C Library"
7076fi
7077$rm -f try try.* glibc.ver
7078set d_gnulibc
7079eval $setvar
7080
7081: see if nm is to be used to determine whether a symbol is defined or not
7082case "$usenm" in
7083'')
7084 dflt=''
7085 case "$d_gnulibc" in
7086 "$define")
7087 echo " "
7088 echo "nm probably won't work on the GNU C Library." >&4
7089 dflt=n
7090 ;;
7091 esac
7092 case "$dflt" in
7093 '')
7094 if $test "$osname" = aix -a "X$PASE" != "Xdefine" -a ! -f /lib/syscalls.exp; then
7095 echo " "
7096 echo "Whoops! This is an AIX system without /lib/syscalls.exp!" >&4
7097 echo "'nm' won't be sufficient on this sytem." >&4
7098 dflt=n
7099 fi
7100 ;;
7101 esac
7102 case "$dflt" in
7103 '') dflt=`$egrep 'inlibc|csym' $rsrc/Configure | wc -l 2>/dev/null`
7104 if $test $dflt -gt 20; then
7105 dflt=y
7106 else
7107 dflt=n
7108 fi
7109 ;;
7110 esac
7111 ;;
7112*)
7113 case "$usenm" in
7114 true|$define) dflt=y;;
7115 *) dflt=n;;
7116 esac
7117 ;;
7118esac
7119$cat <<EOM
7120
7121I can use $nm to extract the symbols from your C libraries. This
7122is a time consuming task which may generate huge output on the disk (up
7123to 3 megabytes) but that should make the symbols extraction faster. The
7124alternative is to skip the 'nm' extraction part and to compile a small
7125test program instead to determine whether each symbol is present. If
7126you have a fast C compiler and/or if your 'nm' output cannot be parsed,
7127this may be the best solution.
7128
7129You probably shouldn't let me use 'nm' if you are using the GNU C Library.
7130
7131EOM
7132rp="Shall I use $nm to extract C symbols from the libraries?"
7133. ./myread
7134case "$ans" in
7135[Nn]*) usenm=false;;
7136*) usenm=true;;
7137esac
7138
7139runnm=$usenm
7140case "$reuseval" in
7141true) runnm=false;;
7142esac
7143
7144: nm options which may be necessary
7145case "$nm_opt" in
7146'') if $test -f /mach_boot; then
7147 nm_opt='' # Mach
7148 elif $test -d /usr/ccs/lib; then
7149 nm_opt='-p' # Solaris (and SunOS?)
7150 elif $test -f /dgux; then
7151 nm_opt='-p' # DG-UX
7152 elif $test -f /lib64/rld; then
7153 nm_opt='-p' # 64-bit Irix
7154 else
7155 nm_opt=''
7156 fi;;
7157esac
7158
7159: nm options which may be necessary for shared libraries but illegal
7160: for archive libraries. Thank you, Linux.
7161case "$nm_so_opt" in
7162'') case "$myuname" in
7163 *linux*|gnu*)
7164 if $nm --help | $grep 'dynamic' > /dev/null 2>&1; then
7165 nm_so_opt='--dynamic'
7166 fi
7167 ;;
7168 esac
7169 ;;
7170esac
7171
7172case "$runnm" in
7173true)
7174: get list of predefined functions in a handy place
7175echo " "
7176case "$libc" in
7177'') libc=unknown
7178 case "$libs" in
7179 *-lc_s*) libc=`./loc libc_s$_a $libc $libpth`
7180 esac
7181 ;;
7182esac
7183case "$libs" in
7184'') ;;
7185*) for thislib in $libs; do
7186 case "$thislib" in
7187 -lc|-lc_s)
7188 : Handle C library specially below.
7189 ;;
7190 -l*)
7191 thislib=`echo $thislib | $sed -e 's/^-l//'`
7192 if try=`./loc lib$thislib.$so.'*' X $libpth`; $test -f "$try"; then
7193 :
7194 elif try=`./loc lib$thislib.$so X $libpth`; $test -f "$try"; then
7195 :
7196 elif try=`./loc lib$thislib$_a X $libpth`; $test -f "$try"; then
7197 :
7198 elif try=`./loc $thislib$_a X $libpth`; $test -f "$try"; then
7199 :
7200 elif try=`./loc lib$thislib X $libpth`; $test -f "$try"; then
7201 :
7202 elif try=`./loc $thislib X $libpth`; $test -f "$try"; then
7203 :
7204 elif try=`./loc Slib$thislib$_a X $xlibpth`; $test -f "$try"; then
7205 :
7206 else
7207 try=''
7208 fi
7209 libnames="$libnames $try"
7210 ;;
7211 *) libnames="$libnames $thislib" ;;
7212 esac
7213 done
7214 ;;
7215esac
7216xxx=normal
7217case "$libc" in
7218unknown)
7219 set /lib/libc.$so
7220 for xxx in $libpth; do
7221 $test -r $1 || set $xxx/libc.$so
7222 : The messy sed command sorts on library version numbers.
7223 $test -r $1 || \
7224 set `echo blurfl; echo $xxx/libc.$so.[0-9]* | \
7225 tr ' ' $trnl | egrep -v '\.[A-Za-z]*$' | $sed -e '
7226 h
7227 s/[0-9][0-9]*/0000&/g
7228 s/0*\([0-9][0-9][0-9][0-9][0-9]\)/\1/g
7229 G
7230 s/\n/ /' | \
7231 $sort | $sed -e 's/^.* //'`
7232 eval set \$$#
7233 done
7234 $test -r $1 || set /usr/ccs/lib/libc.$so
7235 $test -r $1 || set /lib/libsys_s$_a
7236 ;;
7237*)
7238 set blurfl
7239 ;;
7240esac
7241if $test -r "$1"; then
7242 echo "Your (shared) C library seems to be in $1."
7243 libc="$1"
7244elif $test -r /lib/libc && $test -r /lib/clib; then
7245 echo "Your C library seems to be in both /lib/clib and /lib/libc."
7246 xxx=apollo
7247 libc='/lib/clib /lib/libc'
7248 if $test -r /lib/syslib; then
7249 echo "(Your math library is in /lib/syslib.)"
7250 libc="$libc /lib/syslib"
7251 fi
7252elif $test -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
7253 echo "Your C library seems to be in $libc, as you said before."
7254elif $test -r $incpath/usr/lib/libc$_a; then
7255 libc=$incpath/usr/lib/libc$_a;
7256 echo "Your C library seems to be in $libc. That's fine."
7257elif $test -r /lib/libc$_a; then
7258 libc=/lib/libc$_a;
7259 echo "Your C library seems to be in $libc. You're normal."
7260else
7261 if tans=`./loc libc$_a blurfl/dyick $libpth`; $test -r "$tans"; then
7262 :
7263 elif tans=`./loc libc blurfl/dyick $libpth`; $test -r "$tans"; then
7264 libnames="$libnames "`./loc clib blurfl/dyick $libpth`
7265 elif tans=`./loc clib blurfl/dyick $libpth`; $test -r "$tans"; then
7266 :
7267 elif tans=`./loc Slibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
7268 :
7269 elif tans=`./loc Mlibc$_a blurfl/dyick $xlibpth`; $test -r "$tans"; then
7270 :
7271 else
7272 tans=`./loc Llibc$_a blurfl/dyick $xlibpth`
7273 fi
7274 if $test -r "$tans"; then
7275 echo "Your C library seems to be in $tans, of all places."
7276 libc=$tans
7277 else
7278 libc='blurfl'
7279 fi
7280fi
7281if $test $xxx = apollo -o -r "$libc" || (test -h "$libc") >/dev/null 2>&1; then
7282 dflt="$libc"
7283 cat <<EOM
7284
7285If the guess above is wrong (which it might be if you're using a strange
7286compiler, or your machine supports multiple models), you can override it here.
7287
7288EOM
7289else
7290 dflt=''
7291 echo $libpth | $tr ' ' $trnl | $sort | $uniq > libpath
7292 cat >&4 <<EOM
7293I can't seem to find your C library. I've looked in the following places:
7294
7295EOM
7296 $sed 's/^/ /' libpath
7297 cat <<EOM
7298
7299None of these seems to contain your C library. I need to get its name...
7300
7301EOM
7302fi
7303fn=f
7304rp='Where is your C library?'
7305. ./getfile
7306libc="$ans"
7307
7308echo " "
7309echo $libc $libnames | $tr ' ' $trnl | $sort | $uniq > libnames
7310set X `cat libnames`
7311shift
7312xxx=files
7313case $# in 1) xxx=file; esac
7314echo "Extracting names from the following $xxx for later perusal:" >&4
7315echo " "
7316$sed 's/^/ /' libnames >&4
7317echo " "
7318$echo $n "This may take a while...$c" >&4
7319
7320for file in $*; do
7321 case $file in
7322 *$so*) $nm $nm_so_opt $nm_opt $file 2>/dev/null;;
7323 *) $nm $nm_opt $file 2>/dev/null;;
7324 esac
7325done >libc.tmp
7326
7327$echo $n ".$c"
7328$grep fprintf libc.tmp > libc.ptf
7329xscan='eval "<libc.ptf $com >libc.list"; $echo $n ".$c" >&4'
7330xrun='eval "<libc.tmp $com >libc.list"; echo "done." >&4'
7331xxx='[ADTSIW]'
7332if com="$sed -n -e 's/__IO//' -e 's/^.* $xxx *//p'";\
7333 eval $xscan;\
7334 $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7335 eval $xrun
7336elif com="$sed -n -e 's/^__*//' -e 's/^\([a-zA-Z_0-9$]*\).*xtern.*/\1/p'";\
7337 eval $xscan;\
7338 $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7339 eval $xrun
7340elif com="$sed -n -e '/|UNDEF/d' -e '/FUNC..GL/s/^.*|__*//p'";\
7341 eval $xscan;\
7342 $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7343 eval $xrun
7344elif com="$sed -n -e 's/^.* D __*//p' -e 's/^.* D //p'";\
7345 eval $xscan;\
7346 $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7347 eval $xrun
7348elif com="$sed -n -e 's/^_//' -e 's/^\([a-zA-Z_0-9]*\).*xtern.*text.*/\1/p'";\
7349 eval $xscan;\
7350 $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7351 eval $xrun
7352elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p'";\
7353 eval $xscan;\
7354 $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7355 eval $xrun
7356elif com="$grep '|' | $sed -n -e '/|COMMON/d' -e '/|DATA/d' \
7357 -e '/ file/d' -e 's/^\([^ ]*\).*/\1/p'";\
7358 eval $xscan;\
7359 $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7360 eval $xrun
7361elif com="$sed -n -e 's/^.*|FUNC |GLOB .*|//p' -e 's/^.*|FUNC |WEAK .*|//p'";\
7362 eval $xscan;\
7363 $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7364 eval $xrun
7365elif com="$sed -n -e 's/^__//' -e '/|Undef/d' -e '/|Proc/s/ .*//p'";\
7366 eval $xscan;\
7367 $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7368 eval $xrun
7369elif com="$sed -n -e 's/^.*|Proc .*|Text *| *//p'";\
7370 eval $xscan;\
7371 $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7372 eval $xrun
7373elif com="$sed -n -e '/Def. Text/s/.* \([^ ]*\)\$/\1/p'";\
7374 eval $xscan;\
7375 $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7376 eval $xrun
7377elif com="$sed -n -e 's/^[-0-9a-f ]*_\(.*\)=.*/\1/p'";\
7378 eval $xscan;\
7379 $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7380 eval $xrun
7381elif com="$sed -n -e 's/.*\.text n\ \ \ \.//p'";\
7382 eval $xscan;\
7383 $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7384 eval $xrun
7385elif com="sed -n -e 's/^__.*//' -e 's/[ ]*D[ ]*[0-9]*.*//p'";\
7386 eval $xscan;\
7387 $contains '^fprintf$' libc.list >/dev/null 2>&1; then
7388 eval $xrun
7389else
7390 $nm -p $* 2>/dev/null >libc.tmp
7391 $grep fprintf libc.tmp > libc.ptf
7392 if com="$sed -n -e 's/^.* [ADTSIW] *_[_.]*//p' -e 's/^.* [ADTSIW] //p'";\
7393 eval $xscan; $contains '^fprintf$' libc.list >/dev/null 2>&1
7394 then
7395 nm_opt='-p'
7396 eval $xrun
7397 else
7398 echo " "
7399 echo "$nm didn't seem to work right. Trying $ar instead..." >&4
7400 com=''
7401 if $ar t $libc > libc.tmp && $contains '^fprintf$' libc.tmp >/dev/null 2>&1; then
7402 for thisname in $libnames $libc; do
7403 $ar t $thisname >>libc.tmp
7404 done
7405 $sed -e "s/\\$_o\$//" < libc.tmp > libc.list
7406 echo "Ok." >&4
7407 elif test "X$osname" = "Xos2" && $ar tv $libc > libc.tmp; then
7408 # Repeat libc to extract forwarders to DLL entries too
7409 for thisname in $libnames $libc; do
7410 $ar tv $thisname >>libc.tmp
7411 # Revision 50 of EMX has bug in $ar.
7412 # it will not extract forwarders to DLL entries
7413 # Use emximp which will extract exactly them.
7414 emximp -o tmp.imp $thisname \
7415 2>/dev/null && \
7416 $sed -e 's/^\([_a-zA-Z0-9]*\) .*$/\1/p' \
7417 < tmp.imp >>libc.tmp
7418 $rm tmp.imp
7419 done
7420 $sed -e "s/\\$_o\$//" -e 's/^ \+//' < libc.tmp > libc.list
7421 echo "Ok." >&4
7422 else
7423 echo "$ar didn't seem to work right." >&4
7424 echo "Maybe this is a Cray...trying bld instead..." >&4
7425 if bld t $libc | $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" > libc.list
7426 then
7427 for thisname in $libnames; do
7428 bld t $libnames | \
7429 $sed -e 's/.*\///' -e "s/\\$_o:.*\$//" >>libc.list
7430 $ar t $thisname >>libc.tmp
7431 done
7432 echo "Ok." >&4
7433 else
7434 echo "That didn't work either. Giving up." >&4
7435 exit 1
7436 fi
7437 fi
7438 fi
7439fi
7440nm_extract="$com"
7441case "$PASE" in
7442define)
7443 echo " "
7444 echo "Since you are compiling for PASE, extracting more symbols from libc.a ...">&4
7445 dump -Tv /lib/libc.a | awk '$7 == "/unix" {print $5 " " $8}' | grep "^SV" | awk '{print $2}' >> libc.list
7446 ;;
7447*) if $test -f /lib/syscalls.exp; then
7448 echo " "
7449 echo "Also extracting names from /lib/syscalls.exp for good ole AIX..." >&4
7450 $sed -n 's/^\([^ ]*\)[ ]*syscall[0-9]*[ ]*$/\1/p' /lib/syscalls.exp >>libc.list
7451 fi
7452 ;;
7453esac
7454;;
7455esac
7456$rm -f libnames libpath
7457
7458: see if dld is available
7459set dld.h i_dld
7460eval $inhdr
7461
7462: is a C symbol defined?
7463csym='tlook=$1;
7464case "$3" in
7465-v) tf=libc.tmp; tdc="";;
7466-a) tf=libc.tmp; tdc="[]";;
7467*) tlook="^$1\$"; tf=libc.list; tdc="()";;
7468esac;
7469tx=yes;
7470case "$reuseval-$4" in
7471true-) ;;
7472true-*) tx=no; eval "tval=\$$4"; case "$tval" in "") tx=yes;; esac;;
7473esac;
7474case "$tx" in
7475yes)
7476 tval=false;
7477 if $test "$runnm" = true; then
7478 if $contains $tlook $tf >/dev/null 2>&1; then
7479 tval=true;
7480 elif $test "$mistrustnm" = compile -o "$mistrustnm" = run; then
7481 echo "void *(*(p()))$tdc { extern void *$1$tdc; return &$1; } int main() { if(p()) return(0); else return(1); }"> try.c;
7482 $cc -o try $optimize $ccflags $ldflags try.c >/dev/null 2>&1 $libs && tval=true;
7483 $test "$mistrustnm" = run -a -x try && { $run ./try$_exe >/dev/null 2>&1 || tval=false; };
7484 $rm -f try$_exe try.c core core.* try.core;
7485 fi;
7486 else
7487 echo "void *(*(p()))$tdc { extern void *$1$tdc; return &$1; } int main() { if(p()) return(0); else return(1); }"> try.c;
7488 $cc -o try $optimize $ccflags $ldflags try.c $libs >/dev/null 2>&1 && tval=true;
7489 $rm -f try$_exe try.c;
7490 fi;
7491 ;;
7492*)
7493 case "$tval" in
7494 $define) tval=true;;
7495 *) tval=false;;
7496 esac;
7497 ;;
7498esac;
7499eval "$2=$tval"'
7500
7501: define an is-in-libc? function
7502inlibc='echo " "; td=$define; tu=$undef;
7503sym=$1; var=$2; eval "was=\$$2";
7504tx=yes;
7505case "$reuseval$was" in
7506true) ;;
7507true*) tx=no;;
7508esac;
7509case "$tx" in
7510yes)
7511 set $sym tres -f;
7512 eval $csym;
7513 case "$tres" in
7514 true)
7515 echo "$sym() found." >&4;
7516 case "$was" in $undef) . ./whoa; esac; eval "$var=\$td";;
7517 *)
7518 echo "$sym() NOT found." >&4;
7519 case "$was" in $define) . ./whoa; esac; eval "$var=\$tu";;
7520 esac;;
7521*)
7522 case "$was" in
7523 $define) echo "$sym() found." >&4;;
7524 *) echo "$sym() NOT found." >&4;;
7525 esac;;
7526esac'
7527
7528: see if dlopen exists
7529xxx_runnm="$runnm"
7530runnm=false
7531set dlopen d_dlopen
7532eval $inlibc
7533runnm="$xxx_runnm"
7534
7535: determine which dynamic loading, if any, to compile in
7536echo " "
7537dldir="ext/DynaLoader"
7538case "$usedl" in
7539$define|y|true)
7540 dflt='y'
7541 usedl="$define"
7542 ;;
7543$undef|n|false)
7544 dflt='n'
7545 usedl="$undef"
7546 ;;
7547*)
7548 dflt='n'
7549 case "$d_dlopen" in
7550 $define) dflt='y' ;;
7551 esac
7552 case "$i_dld" in
7553 $define) dflt='y' ;;
7554 esac
7555 : Does a dl_xxx.xs file exist for this operating system
7556 $test -f $rsrc/$dldir/dl_${osname}.xs && dflt='y'
7557 ;;
7558esac
7559rp="Do you wish to use dynamic loading?"
7560. ./myread
7561usedl="$ans"
7562case "$ans" in
7563y*) usedl="$define"
7564 case "$dlsrc" in
7565 '')
7566 if $test -f $rsrc/$dldir/dl_${osname}.xs ; then
7567 dflt="$dldir/dl_${osname}.xs"
7568 elif $test "$d_dlopen" = "$define" ; then
7569 dflt="$dldir/dl_dlopen.xs"
7570 elif $test "$i_dld" = "$define" ; then
7571 dflt="$dldir/dl_dld.xs"
7572 else
7573 dflt=''
7574 fi
7575 ;;
7576 *) dflt="$dldir/$dlsrc"
7577 ;;
7578 esac
7579 echo "The following dynamic loading files are available:"
7580 : Can not go over to $dldir because getfile has path hard-coded in.
7581 tdir=`pwd`; cd "$rsrc"; $ls -C $dldir/dl*.xs; cd "$tdir"
7582 rp="Source file to use for dynamic loading"
7583 fn="fne"
7584 gfpth="$src"
7585 . ./getfile
7586 usedl="$define"
7587 : emulate basename
7588 dlsrc=`echo $ans | $sed -e 's%.*/\([^/]*\)$%\1%'`
7589
7590 $cat << EOM
7591
7592Some systems may require passing special flags to $cc -c to
7593compile modules that will be used to create a shared library.
7594To use no flags, say "none".
7595
7596EOM
7597 case "$cccdlflags" in
7598 '') case "$gccversion" in
7599 '') case "$osname" in
7600 hpux) dflt='+z' ;;
7601 next) dflt='none' ;;
7602 irix*) dflt='-KPIC' ;;
7603 svr4*|esix*|solaris|nonstopux) dflt='-KPIC' ;;
7604 sunos) dflt='-pic' ;;
7605 *) dflt='none' ;;
7606 esac
7607 ;;
7608 *) case "$osname" in
7609 darwin) dflt='none' ;;
7610 svr4*|esix*|solaris|nonstopux) dflt='-fPIC' ;;
7611 *) dflt='-fpic' ;;
7612 esac ;;
7613 esac ;;
7614 ' ') dflt='none' ;;
7615 *) dflt="$cccdlflags" ;;
7616 esac
7617 rp="Any special flags to pass to $cc -c to compile shared library modules?"
7618 . ./myread
7619 case "$ans" in
7620 none) cccdlflags=' ' ;;
7621 *) cccdlflags="$ans" ;;
7622 esac
7623
7624 cat << EOM
7625
7626Some systems use ld to create libraries that can be dynamically loaded,
7627while other systems (such as those using ELF) use $cc.
7628
7629EOM
7630 case "$ld" in
7631 '') $cat >try.c <<EOM
7632/* Test for whether ELF binaries are produced */
7633#include <fcntl.h>
7634#$i_stdlib I_STDLIB
7635#ifdef I_STDLIB
7636#include <stdlib.h>
7637#endif
7638int main() {
7639 char b[4];
7640 int i = open("a.out",O_RDONLY);
7641 if(i == -1)
7642 exit(1); /* fail */
7643 if(read(i,b,4)==4 && b[0]==127 && b[1]=='E' && b[2]=='L' && b[3]=='F')
7644 exit(0); /* succeed (yes, it's ELF) */
7645 else
7646 exit(1); /* fail */
7647}
7648EOM
7649 if $cc $ccflags $ldflags try.c >/dev/null 2>&1 && $run ./a.out; then
7650 cat <<EOM
7651You appear to have ELF support. I'll use $cc to build dynamic libraries.
7652EOM
7653 dflt="$cc"
7654 else
7655 echo "I'll use ld to build dynamic libraries."
7656 dflt='ld'
7657 fi
7658 rm -f try.c a.out
7659 ;;
7660 *) dflt="$ld"
7661 ;;
7662 esac
7663
7664 rp="What command should be used to create dynamic libraries?"
7665 . ./myread
7666 ld="$ans"
7667
7668 cat << EOM
7669
7670Some systems may require passing special flags to $ld to create a
7671library that can be dynamically loaded. If your ld flags include
7672-L/other/path options to locate libraries outside your loader's normal
7673search path, you may need to specify those -L options here as well. To
7674use no flags, say "none".
7675
7676EOM
7677 case "$lddlflags" in
7678 '') case "$osname" in
7679 beos) dflt='-nostart' ;;
7680 hpux) dflt='-b';
7681 case "$gccversion" in
7682 '') dflt="$dflt +vnocompatwarnings" ;;
7683 esac
7684 ;;
7685 linux|irix*|gnu*) dflt='-shared' ;;
7686 next) dflt='none' ;;
7687 solaris) dflt='-G' ;;
7688 sunos) dflt='-assert nodefinitions' ;;
7689 svr4*|esix*|nonstopux) dflt="-G $ldflags" ;;
7690 *) dflt='none' ;;
7691 esac
7692 ;;
7693 *) dflt="$lddlflags" ;;
7694 esac
7695
7696 : Try to guess additional flags to pick up local libraries.
7697 : Be careful not to append to a plain 'none'
7698 case "$dflt" in
7699 none) dflt='' ;;
7700 esac
7701 for thisflag in $ldflags; do
7702 case "$thisflag" in
7703 -L*|-R*|-Wl,-R*)
7704 case " $dflt " in
7705 *" $thisflag "*) ;;
7706 *) dflt="$dflt $thisflag" ;;
7707 esac
7708 ;;
7709 esac
7710 done
7711
7712 case "$dflt" in
7713 ''|' ') dflt='none' ;;
7714 esac
7715
7716 rp="Any special flags to pass to $ld to create a dynamically loaded library?"
7717 . ./myread
7718 case "$ans" in
7719 none) lddlflags=' ' ;;
7720 *) lddlflags="$ans" ;;
7721 esac
7722
7723 cat <<EOM
7724
7725Some systems may require passing special flags to $cc to indicate that
7726the resulting executable will use dynamic linking. To use no flags,
7727say "none".
7728
7729EOM
7730 case "$ccdlflags" in
7731 '') case "$osname" in
7732 linux|hpux|gnu*) dflt='-Wl,-E' ;;
7733 next|sunos) dflt='none' ;;
7734 *) dflt='none' ;;
7735 esac ;;
7736 ' ') dflt='none' ;;
7737 *) dflt="$ccdlflags" ;;
7738 esac
7739 rp="Any special flags to pass to $cc to use dynamic linking?"
7740 . ./myread
7741 case "$ans" in
7742 none) ccdlflags=' ' ;;
7743 *) ccdlflags="$ans" ;;
7744 esac
7745 ;;
7746*) usedl="$undef"
7747 ld='ld'
7748 dlsrc='dl_none.xs'
7749 lddlflags=''
7750 ccdlflags=''
7751 ;;
7752esac
7753
7754also=''
7755case "$usedl" in
7756$undef)
7757 # No dynamic loading being used, so don't bother even to prompt.
7758 useshrplib='false'
7759 ;;
7760*) case "$useshrplib" in
7761 '') case "$osname" in
7762 svr4*|nonstopux|dgux|dynixptx|esix|powerux|beos|cygwin*)
7763 dflt=y
7764 also='Building a shared libperl is required for dynamic loading to work on your system.'
7765 ;;
7766 next*)
7767 case "$osvers" in
7768 4*) dflt=y
7769 also='Building a shared libperl is needed for MAB support.'
7770 ;;
7771 *) dflt=n
7772 ;;
7773 esac
7774 ;;
7775 *) dflt=n
7776 ;;
7777 esac
7778 ;;
7779 $define|true|[Yy]*)
7780 dflt=y
7781 ;;
7782 *) dflt=n
7783 ;;
7784 esac
7785 $cat << EOM
7786
7787The perl executable is normally obtained by linking perlmain.c with
7788libperl${_a}, any static extensions (usually just DynaLoader), and
7789any other libraries needed on this system (such as -lm, etc.). Since
7790your system supports dynamic loading, it is probably possible to build
7791a shared libperl.$so. If you will have more than one executable linked
7792to libperl.$so, this will significantly reduce the size of each
7793executable, but it may have a noticeable effect on performance. The
7794default is probably sensible for your system.
7795$also
7796
7797EOM
7798 rp="Build a shared libperl.$so (y/n)"
7799 . ./myread
7800 case "$ans" in
7801 true|$define|[Yy]*)
7802 useshrplib='true' ;;
7803 *) useshrplib='false' ;;
7804 esac
7805 ;;
7806esac
7807
7808case "$useshrplib" in
7809true)
7810 case "$libperl" in
7811 '')
7812 # Figure out a good name for libperl.so. Since it gets stored in
7813 # a version-specific architecture-dependent library, the version
7814 # number isn't really that important, except for making cc/ld happy.
7815 #
7816 # A name such as libperl.so.3.1
7817 majmin="libperl.$so.$patchlevel.$subversion"
7818 # A name such as libperl.so.301
7819 majonly=`echo $patchlevel $subversion |
7820 $awk '{printf "%d%02d", $1, $2}'`
7821 majonly=libperl.$so.$majonly
7822 # I'd prefer to keep the os-specific stuff here to a minimum, and
7823 # rely on figuring it out from the naming of libc.
7824 case "${osname}${osvers}" in
7825 next4*)
7826 dflt=libperl.5.$so
7827 # XXX How handle the --version stuff for MAB?
7828 ;;
7829 linux*|gnu*) # ld won't link with a bare -lperl otherwise.
7830 dflt=libperl.$so
7831 ;;
7832 cygwin*) # ld links against an importlib
7833 dflt=libperl$lib_ext
7834 ;;
7835 *) # Try to guess based on whether libc has major.minor.
7836 case "$libc" in
7837 *libc.$so.[0-9]*.[0-9]*) dflt=$majmin ;;
7838 *libc.$so.[0-9]*) dflt=$majonly ;;
7839 *) dflt=libperl.$so ;;
7840 esac
7841 ;;
7842 esac
7843 ;;
7844 *) dflt=$libperl
7845 ;;
7846 esac
7847 cat << EOM
7848
7849I need to select a good name for the shared libperl. If your system uses
7850library names with major and minor numbers, then you might want something
7851like $majmin. Alternatively, if your system uses a single version
7852number for shared libraries, then you might want to use $majonly.
7853Or, your system might be quite happy with a simple libperl.$so.
7854
7855Since the shared libperl will get installed into a version-specific
7856architecture-dependent directory, the version number of the shared perl
7857library probably isn't important, so the default should be o.k.
7858
7859EOM
7860 rp='What name do you want to give to the shared libperl?'
7861 . ./myread
7862 libperl=$ans
7863 echo "Ok, I'll use $libperl"
7864 ;;
7865*)
7866 libperl="libperl${_a}"
7867 ;;
7868esac
7869
7870# Detect old use of shrpdir via undocumented Configure -Dshrpdir
7871case "$shrpdir" in
7872'') ;;
7873*) $cat >&4 <<EOM
7874WARNING: Use of the shrpdir variable for the installation location of
7875the shared $libperl is not supported. It was never documented and
7876will not work in this version. Let me (perlbug@perl.org)
7877know of any problems this may cause.
7878
7879EOM
7880 case "$shrpdir" in
7881 "$archlibexp/CORE")
7882 $cat >&4 <<EOM
7883But your current setting of $shrpdir is
7884the default anyway, so it's harmless.
7885EOM
7886 ;;
7887 *)
7888 $cat >&4 <<EOM
7889Further, your current attempted setting of $shrpdir
7890conflicts with the value of $archlibexp/CORE
7891that installperl will use.
7892EOM
7893 ;;
7894 esac
7895 ;;
7896esac
7897
7898# How will the perl executable find the installed shared $libperl?
7899# Add $xxx to ccdlflags.
7900# If we can't figure out a command-line option, use $shrpenv to
7901# set env LD_RUN_PATH. The main perl makefile uses this.
7902shrpdir=$archlibexp/CORE
7903xxx=''
7904tmp_shrpenv=''
7905if "$useshrplib"; then
7906 case "$osname" in
7907 aix)
7908 # We'll set it in Makefile.SH...
7909 ;;
7910 solaris)
7911 xxx="-R $shrpdir"
7912 ;;
7913 freebsd|netbsd|openbsd|interix|dragonfly)
7914 xxx="-Wl,-R$shrpdir"
7915 ;;
7916 bsdos|linux|irix*|dec_osf|gnu*)
7917 xxx="-Wl,-rpath,$shrpdir"
7918 ;;
7919 next)
7920 # next doesn't like the default...
7921 ;;
7922 beos)
7923 # beos doesn't like the default, either.
7924 ;;
7925 hpux*)
7926 # hpux doesn't like the default, either.
7927 tmp_shrpenv="env LDOPTS=\"+s +b${shrpdir}\""
7928 ;;
7929 *)
7930 tmp_shrpenv="env LD_RUN_PATH=$shrpdir"
7931 ;;
7932 esac
7933 case "$xxx" in
7934 '') ;;
7935 *)
7936 # Only add $xxx if it isn't already in ccdlflags.
7937 case " $ccdlflags " in
7938 *" $xxx "*) ;;
7939 *) ccdlflags="$ccdlflags $xxx"
7940 cat <<EOM >&4
7941
7942Adding $xxx to the flags
7943passed to $ld so that the perl executable will find the
7944installed shared $libperl.
7945
7946EOM
7947 ;;
7948 esac
7949 ;;
7950 esac
7951fi
7952# Fix ccdlflags in AIX for building external extensions.
7953# (For building Perl itself bare -bE:perl.exp is needed,
7954# Makefile.SH takes care of this.)
7955case "$osname" in
7956aix) ccdlflags="$ccdlflags -bE:$installarchlib/CORE/perl.exp" ;;
7957esac
7958# Respect a hint or command-line value.
7959case "$shrpenv" in
7960'') shrpenv="$tmp_shrpenv" ;;
7961esac
7962case "$ldlibpthname" in
7963'') ldlibpthname=LD_LIBRARY_PATH ;;
7964none) ldlibpthname='' ;;
7965esac
7966
7967: determine where manual pages are on this system
7968echo " "
7969case "$sysman" in
7970'')
7971 syspath='/usr/share/man/man1 /usr/man/man1'
7972 syspath="$syspath /usr/man/mann /usr/man/manl /usr/man/local/man1"
7973 syspath="$syspath /usr/man/u_man/man1"
7974 syspath="$syspath /usr/catman/u_man/man1 /usr/man/l_man/man1"
7975 syspath="$syspath /usr/local/man/u_man/man1 /usr/local/man/l_man/man1"
7976 syspath="$syspath /usr/man/man.L /local/man/man1 /usr/local/man/man1"
7977 sysman=`./loc . /usr/man/man1 $syspath`
7978 ;;
7979esac
7980if $test -d "$sysman"; then
7981 echo "System manual is in $sysman." >&4
7982else
7983 echo "Could not find manual pages in source form." >&4
7984fi
7985
7986: determine where manual pages go
7987set man1dir man1dir none
7988eval $prefixit
7989$cat <<EOM
7990
7991$spackage has manual pages available in source form.
7992EOM
7993case "$nroff" in
7994nroff)
7995 echo "However, you don't have nroff, so they're probably useless to you."
7996 case "$man1dir" in
7997 '') man1dir="none";;
7998 esac;;
7999esac
8000echo "If you don't want the manual sources installed, answer 'none'."
8001case "$man1dir" in
8002' ') dflt=none
8003 ;;
8004'')
8005 lookpath="$prefixexp/share/man/man1"
8006 lookpath="$lookpath $prefixexp/man/man1 $prefixexp/man/l_man/man1"
8007 lookpath="$lookpath $prefixexp/man/p_man/man1"
8008 lookpath="$lookpath $prefixexp/man/u_man/man1"
8009 lookpath="$lookpath $prefixexp/man/man.1"
8010 case "$sysman" in
8011 */?_man*) dflt=`./loc . $prefixexp/l_man/man1 $lookpath` ;;
8012 *) dflt=`./loc . $prefixexp/man/man1 $lookpath` ;;
8013 esac
8014 set dflt
8015 eval $prefixup
8016 ;;
8017*) dflt="$man1dir"
8018 ;;
8019esac
8020echo " "
8021fn=dn+~
8022rp="Where do the main $spackage manual pages (source) go?"
8023. ./getfile
8024if $test "X$man1direxp" != "X$ansexp"; then
8025 installman1dir=''
8026fi
8027prefixvar=man1dir
8028. ./setprefixvar
8029
8030case "$man1dir" in
8031'') man1dir=' '
8032 installman1dir='';;
8033esac
8034
8035: What suffix to use on installed man pages
8036
8037case "$man1dir" in
8038' ')
8039 man1ext='0'
8040 ;;
8041*)
8042 rp="What suffix should be used for the main $spackage man pages?"
8043 case "$man1ext" in
8044 '') case "$man1dir" in
8045 *1) dflt=1 ;;
8046 *1p) dflt=1p ;;
8047 *1pm) dflt=1pm ;;
8048 *l) dflt=l;;
8049 *n) dflt=n;;
8050 *o) dflt=o;;
8051 *p) dflt=p;;
8052 *C) dflt=C;;
8053 *L) dflt=L;;
8054 *L1) dflt=L1;;
8055 *) dflt=1;;
8056 esac
8057 ;;
8058 *) dflt="$man1ext";;
8059 esac
8060 . ./myread
8061 man1ext="$ans"
8062 ;;
8063esac
8064
8065: see if we can have long filenames
8066echo " "
8067first=123456789abcdef
8068$rm -f $first
8069if (echo hi >$first) 2>/dev/null; then
8070 if $test -f 123456789abcde; then
8071 echo 'You cannot have filenames longer than 14 characters. Sigh.' >&4
8072 val="$undef"
8073 else
8074 echo 'You can have filenames longer than 14 characters.'>&4
8075 val="$define"
8076 fi
8077else
8078 $cat <<'EOM'
8079You can't have filenames longer than 14 chars.
8080You can't even think about them!
8081EOM
8082 val="$undef"
8083fi
8084set d_flexfnam
8085eval $setvar
8086$rm -rf 123456789abcde*
8087
8088: determine where library module manual pages go
8089set man3dir man3dir none
8090eval $prefixit
8091$cat <<EOM
8092
8093$spackage has manual pages for many of the library modules.
8094EOM
8095
8096case "$nroff" in
8097nroff)
8098 $cat <<'EOM'
8099However, you don't have nroff, so they're probably useless to you.
8100EOM
8101 case "$man3dir" in
8102 '') man3dir="none";;
8103 esac;;
8104esac
8105
8106case "$d_flexfnam" in
8107undef)
8108 $cat <<'EOM'
8109However, your system can't handle the long file names like File::Basename.3.
8110EOM
8111 case "$man3dir" in
8112 '') man3dir="none";;
8113 esac;;
8114esac
8115
8116echo "If you don't want the manual sources installed, answer 'none'."
8117prog=`echo $package | $sed 's/-*[0-9.]*$//'`
8118case "$man3dir" in
8119'') dflt=`echo "$man1dir" | $sed -e 's/man1/man3/g' -e 's/man\.1/man\.3/g'`
8120 if $test -d "$privlib/man/man3"; then
8121 cat <<EOM >&4
8122
8123WARNING: Previous versions of perl installed man3 pages into
8124$privlib/man/man3. This version will suggest a
8125new default of $dflt.
8126EOM
8127 tdflt=$dflt
8128 dflt='n'
8129 rp='Do you wish to preserve the old behavior?(y/n)'
8130 . ./myread
8131 case "$ans" in
8132 y*) dflt="$privlib/man/man3" ;;
8133 *) dflt=$tdflt ;;
8134 esac
8135 fi
8136 ;;
8137*) dflt="$man3dir" ;;
8138esac
8139case "$dflt" in
8140' ') dflt=none ;;
8141esac
8142echo " "
8143fn=dn+~
8144rp="Where do the $package library man pages (source) go?"
8145. ./getfile
8146prefixvar=man3dir
8147. ./setprefixvar
8148
8149case "$man3dir" in
8150'') man3dir=' '
8151 installman3dir='';;
8152esac
8153
8154: What suffix to use on installed man pages
8155case "$man3dir" in
8156' ')
8157 man3ext='0'
8158 ;;
8159*)
8160 rp="What suffix should be used for the $package library man pages?"
8161 case "$man3ext" in
8162 '') case "$man3dir" in
8163 *3) dflt=3 ;;
8164 *3p) dflt=3p ;;
8165 *3pm) dflt=3pm ;;
8166 *l) dflt=l;;
8167 *n) dflt=n;;
8168 *o) dflt=o;;
8169 *p) dflt=p;;
8170 *C) dflt=C;;
8171 *L) dflt=L;;
8172 *L3) dflt=L3;;
8173 *) dflt=3;;
8174 esac
8175 ;;
8176 *) dflt="$man3ext";;
8177 esac
8178 . ./myread
8179 man3ext="$ans"
8180 ;;
8181esac
8182
8183: see if we have to deal with yellow pages, now NIS.
8184if $test -d /usr/etc/yp || $test -d /etc/yp || $test -d /usr/lib/yp; then
8185 if $test -f /usr/etc/nibindd; then
8186 echo " "
8187 echo "I'm fairly confident you're on a NeXT."
8188 echo " "
8189 rp='Do you get the hosts file via NetInfo?'
8190 dflt=y
8191 case "$hostcat" in
8192 nidump*) ;;
8193 '') ;;
8194 *) dflt=n;;
8195 esac
8196 . ./myread
8197 case "$ans" in
8198 y*) hostcat='nidump hosts .';;
8199 *) case "$hostcat" in
8200 nidump*) hostcat='';;
8201 esac
8202 ;;
8203 esac
8204 fi
8205 case "$hostcat" in
8206 nidump*) ;;
8207 *)
8208 case "$hostcat" in
8209 *ypcat*) dflt=y;;
8210 '') if $contains '^\+' /etc/passwd >/dev/null 2>&1; then
8211 dflt=y
8212 else
8213 dflt=n
8214 fi;;
8215 *) dflt=n;;
8216 esac
8217 echo " "
8218 rp='Are you getting the hosts file via yellow pages?'
8219 . ./myread
8220 case "$ans" in
8221 y*) hostcat='ypcat hosts';;
8222 *) hostcat='cat /etc/hosts';;
8223 esac
8224 ;;
8225 esac
8226fi
8227case "$hostcat" in
8228'') test -f /etc/hosts && hostcat='cat /etc/hosts';;
8229esac
8230case "$groupcat" in
8231'') test -f /etc/group && groupcat='cat /etc/group';;
8232esac
8233case "$passcat" in
8234'') test -f /etc/passwd && passcat='cat /etc/passwd';;
8235esac
8236
8237: now get the host name
8238echo " "
8239echo "Figuring out host name..." >&4
8240case "$myhostname" in
8241'') cont=true
8242 echo 'Maybe "hostname" will work...'
8243 if tans=`sh -c hostname 2>&1` ; then
8244 myhostname=$tans
8245 phostname=hostname
8246 cont=''
8247 fi
8248 ;;
8249*) cont='';;
8250esac
8251if $test "$cont"; then
8252 if ./xenix; then
8253 echo 'Oh, dear. Maybe "/etc/systemid" is the key...'
8254 if tans=`cat /etc/systemid 2>&1` ; then
8255 myhostname=$tans
8256 phostname='cat /etc/systemid'
8257 echo "Whadyaknow. Xenix always was a bit strange..."
8258 cont=''
8259 fi
8260 elif $test -r /etc/systemid; then
8261 echo "(What is a non-Xenix system doing with /etc/systemid?)"
8262 fi
8263fi
8264if $test "$cont"; then
8265 echo 'No, maybe "uuname -l" will work...'
8266 if tans=`sh -c 'uuname -l' 2>&1` ; then
8267 myhostname=$tans
8268 phostname='uuname -l'
8269 else
8270 echo 'Strange. Maybe "uname -n" will work...'
8271 if tans=`sh -c 'uname -n' 2>&1` ; then
8272 myhostname=$tans
8273 phostname='uname -n'
8274 else
8275 echo 'Oh well, maybe I can mine it out of whoami.h...'
8276 if tans=`sh -c $contains' sysname $usrinc/whoami.h' 2>&1` ; then
8277 myhostname=`echo "$tans" | $sed 's/^.*"\(.*\)"/\1/'`
8278 phostname="sed -n -e '"'/sysname/s/^.*\"\\(.*\\)\"/\1/{'"' -e p -e q -e '}' <$usrinc/whoami.h"
8279 else
8280 case "$myhostname" in
8281 '') echo "Does this machine have an identity crisis or something?"
8282 phostname='';;
8283 *)
8284 echo "Well, you said $myhostname before..."
8285 phostname='echo $myhostname';;
8286 esac
8287 fi
8288 fi
8289 fi
8290fi
8291case "$myhostname" in
8292'') myhostname=noname ;;
8293esac
8294: you do not want to know about this
8295set $myhostname
8296myhostname=$1
8297
8298: verify guess
8299if $test "$myhostname" ; then
8300 dflt=y
8301 rp='Your host name appears to be "'$myhostname'".'" Right?"
8302 . ./myread
8303 case "$ans" in
8304 y*) ;;
8305 *) myhostname='';;
8306 esac
8307fi
8308
8309: bad guess or no guess
8310while $test "X$myhostname" = X ; do
8311 dflt=''
8312 rp="Please type the (one word) name of your host:"
8313 . ./myread
8314 myhostname="$ans"
8315done
8316
8317: translate upper to lower if necessary
8318case "$myhostname" in
8319*[A-Z]*)
8320 echo "(Normalizing case in your host name)"
8321 myhostname=`echo $myhostname | ./tr '[A-Z]' '[a-z]'`
8322 ;;
8323esac
8324
8325case "$myhostname" in
8326*.*)
8327 dflt=`expr "X$myhostname" : "X[^.]*\(\..*\)"`
8328 myhostname=`expr "X$myhostname" : "X\([^.]*\)\."`
8329 echo "(Trimming domain name from host name--host name is now $myhostname)"
8330 ;;
8331*) case "$mydomain" in
8332 '')
8333 {
8334 test "X$hostcat" = "Xypcat hosts" &&
8335 ypmatch "$myhostname" hosts 2>/dev/null |\
8336 $sed -e 's/[ ]*#.*//; s/$/ /' > hosts && \
8337 $test -s hosts
8338 } || {
8339 test "X$hostcat" != "X" &&
8340 $hostcat | $sed -n -e "s/[ ]*#.*//; s/\$/ /
8341 /[ ]$myhostname[ . ]/p" > hosts
8342 }
8343 tmp_re="[ . ]"
8344 if $test -f hosts; then
8345 $test x`$awk "/[0-9].*[ ]$myhostname$tmp_re/ { sum++ }
8346 END { print sum }" hosts` = x1 || tmp_re="[ ]"
8347 dflt=.`$awk "/[0-9].*[ ]$myhostname$tmp_re/ {for(i=2; i<=NF;i++) print \\\$i}" \
8348 hosts | $sort | $uniq | \
8349 $sed -n -e "s/$myhostname\.\([-a-zA-Z0-9_.]\)/\1/p"`
8350 case `$echo X$dflt` in
8351 X*\ *) echo "(Several hosts in the database matched hostname)"
8352 dflt=.
8353 ;;
8354 X.) echo "(You do not have fully-qualified names in the hosts database)"
8355 ;;
8356 esac
8357 else
8358 echo "(I cannot locate a hosts database anywhere)"
8359 dflt=.
8360 fi
8361 case "$dflt" in
8362 .)
8363 tans=`./loc resolv.conf X /etc /usr/etc`
8364 if $test -f "$tans"; then
8365 echo "(Attempting domain name extraction from $tans)"
8366 dflt=.`$sed -n -e 's/ / /g' \
8367 -e 's/^search *\([^ ]*\).*/\1/p' $tans \
8368 | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8369 case "$dflt" in
8370 .) dflt=.`$sed -n -e 's/ / /g' \
8371 -e 's/^domain *\([^ ]*\).*/\1/p' $tans \
8372 | ./tr '[A-Z]' '[a-z]' 2>/dev/null`
8373 ;;
8374 esac
8375 fi
8376 ;;
8377 esac
8378 case "$dflt" in
8379 .) echo "(No help from resolv.conf either -- attempting clever guess)"
8380 dflt=.`sh -c domainname 2>/dev/null`
8381 case "$dflt" in
8382 '') dflt='.';;
8383 .nis.*|.yp.*|.main.*) dflt=`echo $dflt | $sed -e 's/^\.[^.]*//'`;;
8384 esac
8385 ;;
8386 esac
8387 case "$dflt$osname" in
8388 .os390) echo "(Attempting domain name extraction from //'SYS1.TCPPARMS(TCPDATA)')"
8389 dflt=.`awk '/^DOMAINORIGIN/ {print $2}' "//'SYS1.TCPPARMS(TCPDATA)'" 2>/dev/null`
8390 ;;
8391 esac
8392 case "$dflt" in
8393 .) echo "(Lost all hope -- silly guess then)"
8394 dflt='.nonet'
8395 ;;
8396 esac
8397 $rm -f hosts
8398 ;;
8399 *) dflt="$mydomain";;
8400 esac;;
8401esac
8402echo " "
8403rp="What is your domain name?"
8404. ./myread
8405tans="$ans"
8406case "$ans" in
8407'') ;;
8408.*) ;;
8409*) tans=".$tans";;
8410esac
8411mydomain="$tans"
8412
8413: translate upper to lower if necessary
8414case "$mydomain" in
8415*[A-Z]*)
8416 echo "(Normalizing case in your domain name)"
8417 mydomain=`echo $mydomain | ./tr '[A-Z]' '[a-z]'`
8418 ;;
8419esac
8420
8421: a little sanity check here
8422case "$phostname" in
8423'') ;;
8424*)
8425 case `$phostname | ./tr '[A-Z]' '[a-z]'` in
8426 $myhostname$mydomain|$myhostname) ;;
8427 *)
8428 case "$phostname" in
8429 sed*)
8430 echo "(That doesn't agree with your whoami.h file, by the way.)"
8431 ;;
8432 *)
8433 echo "(That doesn't agree with your $phostname command, by the way.)"
8434 ;;
8435 esac
8436 ;;
8437 esac
8438 ;;
8439esac
8440
8441$cat <<EOM
8442
8443I need to get your e-mail address in Internet format if possible, i.e.
8444something like user@host.domain. Please answer accurately since I have
8445no easy means to double check it. The default value provided below
8446is most probably close to reality but may not be valid from outside
8447your organization...
8448
8449EOM
8450cont=x
8451while test "$cont"; do
8452 case "$cf_email" in
8453 '') dflt="$cf_by@$myhostname$mydomain";;
8454 *) dflt="$cf_email";;
8455 esac
8456 rp='What is your e-mail address?'
8457 . ./myread
8458 cf_email="$ans"
8459 case "$cf_email" in
8460 *@*.*) cont='' ;;
8461 *)
8462 rp='Address does not look like an Internet one. Use it anyway?'
8463 case "$fastread" in
8464 yes) dflt=y ;;
8465 *) dflt=n ;;
8466 esac
8467 . ./myread
8468 case "$ans" in
8469 y*) cont='' ;;
8470 *) echo " " ;;
8471 esac
8472 ;;
8473 esac
8474done
8475
8476$cat <<EOM
8477
8478If you or somebody else will be maintaining perl at your site, please
8479fill in the correct e-mail address here so that they may be contacted
8480if necessary. Currently, the "perlbug" program included with perl
8481will send mail to this address in addition to perlbug@perl.org. You may
8482enter "none" for no administrator.
8483
8484EOM
8485case "$perladmin" in
8486'') dflt="$cf_email";;
8487*) dflt="$perladmin";;
8488esac
8489rp='Perl administrator e-mail address'
8490. ./myread
8491perladmin="$ans"
8492
8493: determine whether to only install version-specific parts.
8494echo " "
8495$cat <<EOM
8496Do you want to install only the version-specific parts of the perl
8497distribution? Usually you do *not* want to do this.
8498EOM
8499case "$versiononly" in
8500"$define"|[Yy]*|true) dflt='y' ;;
8501*) dflt='n';
8502esac
8503rp="Do you want to install only the version-specific parts of perl?"
8504. ./myread
8505case "$ans" in
8506[yY]*) val="$define";;
8507*) val="$undef" ;;
8508esac
8509set versiononly
8510eval $setvar
8511
8512case "$versiononly" in
8513"$define") inc_version_list=''
8514 inc_version_list_init=0
8515 ;;
8516esac
8517
8518: figure out how to guarantee perl startup
8519case "$startperl" in
8520'')
8521 case "$sharpbang" in
8522 *!)
8523 $cat <<EOH
8524
8525I can use the #! construct to start perl on your system. This will
8526make startup of perl scripts faster, but may cause problems if you
8527want to share those scripts and perl is not in a standard place
8528($binexp/perl) on all your platforms. The alternative is to force
8529a shell by starting the script with a single ':' character.
8530
8531EOH
8532 case "$versiononly" in
8533 "$define") dflt="$binexp/perl$version";;
8534 *) dflt="$binexp/perl";;
8535 esac
8536 rp='What shall I put after the #! to start up perl ("none" to not use #!)?'
8537 . ./myread
8538 case "$ans" in
8539 none) startperl=": # use perl";;
8540 *) startperl="#!$ans"
8541 if $test 30 -lt `echo "$ans" | wc -c`; then
8542 $cat >&4 <<EOM
8543
8544WARNING: Some systems limit the #! command to 32 characters.
8545If you experience difficulty running Perl scripts with #!, try
8546installing Perl in a directory with a shorter pathname.
8547
8548EOM
8549 fi ;;
8550 esac
8551 ;;
8552 *) startperl=": # use perl"
8553 ;;
8554 esac
8555 ;;
8556esac
8557echo "I'll use $startperl to start perl scripts."
8558
8559: figure best path for perl in scripts
8560case "$perlpath" in
8561'')
8562 case "$versiononly" in
8563 "$define") perlpath="$binexp/perl$version";;
8564 *) perlpath="$binexp/perl";;
8565 esac
8566 case "$startperl" in
8567 *!*) ;;
8568 *)
8569 $cat <<EOH
8570
8571I will use the "eval 'exec'" idiom to start Perl on your system.
8572I can use the full path of your Perl binary for this purpose, but
8573doing so may cause problems if you want to share those scripts and
8574Perl is not always in a standard place ($binexp/perl).
8575
8576EOH
8577 dflt="$binexp/perl"
8578 rp="What path shall I use in \"eval 'exec'\"?"
8579 . ./myread
8580 perlpath="$ans"
8581 ;;
8582 esac
8583 ;;
8584esac
8585case "$startperl" in
8586*!*) ;;
8587*) echo "I'll use $perlpath in \"eval 'exec'\"" ;;
8588esac
8589
8590: determine where public executable scripts go
8591set scriptdir scriptdir
8592eval $prefixit
8593case "$scriptdir" in
8594'')
8595 dflt="$bin"
8596 : guess some guesses
8597 $test -d /usr/share/scripts && dflt=/usr/share/scripts
8598 $test -d /usr/share/bin && dflt=/usr/share/bin
8599 $test -d /usr/local/script && dflt=/usr/local/script
8600 $test -d /usr/local/scripts && dflt=/usr/local/scripts
8601 $test -d $prefixexp/script && dflt=$prefixexp/script
8602 set dflt
8603 eval $prefixup
8604 ;;
8605*) dflt="$scriptdir"
8606 ;;
8607esac
8608$cat <<EOM
8609
8610Some installations have a separate directory just for executable scripts so
8611that they can mount it across multiple architectures but keep the scripts in
8612one spot. You might, for example, have a subdirectory of /usr/share for this.
8613Or you might just lump your scripts in with all your other executables.
8614
8615EOM
8616fn=d~
8617rp='Where do you keep publicly executable scripts?'
8618. ./getfile
8619if $test "X$ansexp" != "X$scriptdirexp"; then
8620 installscript=''
8621fi
8622prefixvar=scriptdir
8623. ./setprefixvar
8624: A little fix up for an irregularly named variable.
8625installscript="$installscriptdir"
8626
8627
8628: determine where add-on public executables go
8629case "$sitebin" in
8630'') dflt=$siteprefix/bin ;;
8631*) dflt=$sitebin ;;
8632esac
8633fn=d~
8634rp='Pathname where the add-on public executables should be installed?'
8635. ./getfile
8636prefixvar=sitebin
8637. ./setprefixvar
8638
8639: determine where add-on html pages go
8640: There is no standard location, so try to copy the previously-selected
8641: directory structure for the core html pages.
8642case "$sitehtml1dir" in
8643'') dflt=`echo "$html1dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8644*) dflt=$sitehtml1dir ;;
8645esac
8646case "$dflt" in
8647''|' ') dflt=none ;;
8648esac
8649fn=dn+~
8650rp='Pathname where the site-specific html pages should be installed?'
8651. ./getfile
8652prefixvar=sitehtml1dir
8653. ./setprefixvar
8654
8655: determine where add-on library html pages go
8656: There is no standard location, so try to copy the previously-selected
8657: directory structure for the core html pages.
8658case "$sitehtml3dir" in
8659'') dflt=`echo "$html3dir" | $sed "s#^$prefix#$siteprefix#"` ;;
8660*) dflt=$sitehtml3dir ;;
8661esac
8662case "$dflt" in
8663''|' ') dflt=none ;;
8664esac
8665fn=dn+~
8666rp='Pathname where the site-specific library html pages should be installed?'
8667. ./getfile
8668prefixvar=sitehtml3dir
8669. ./setprefixvar
8670
8671: determine where add-on manual pages go
8672case "$siteman1dir" in
8673'') dflt=`echo $man1dir | $sed "s#^$prefix#$siteprefix#"` ;;
8674*) dflt=$siteman1dir ;;
8675esac
8676case "$dflt" in
8677''|' ') dflt=none ;;
8678esac
8679fn=dn+~
8680rp='Pathname where the site-specific manual pages should be installed?'
8681. ./getfile
8682prefixvar=siteman1dir
8683. ./setprefixvar
8684
8685: determine where add-on library man pages go
8686case "$siteman3dir" in
8687'') dflt=`echo $man3dir | $sed "s#^$prefix#$siteprefix#"` ;;
8688*) dflt=$siteman3dir ;;
8689esac
8690case "$dflt" in
8691''|' ') dflt=none ;;
8692esac
8693fn=dn+~
8694rp='Pathname where the site-specific library manual pages should be installed?'
8695. ./getfile
8696prefixvar=siteman3dir
8697. ./setprefixvar
8698
8699: determine where add-on public executable scripts go
8700case "$sitescript" in
8701'') dflt=$siteprefix/script
8702 $test -d $dflt || dflt=$sitebin ;;
8703*) dflt="$sitescript" ;;
8704esac
8705fn=d~+
8706rp='Pathname where add-on public executable scripts should be installed?'
8707. ./getfile
8708prefixvar=sitescript
8709. ./setprefixvar
8710
8711case "$usefaststdio" in
8712$define|true|[yY]*|'')
8713 xversion=`awk '/define[ ]+PERL_VERSION/ {print $3}' $rsrc/patchlevel.h`
8714 case "$xversion" in
8715 [68]) dflt='y' ;;
8716 *) dflt='n' ;;
8717 esac
8718 ;;
8719*) dflt='n';;
8720esac
8721cat <<EOM
8722
8723Perl can be built to use 'fast stdio', which means using the stdio
8724library but also directly manipulating the stdio buffers to enable
8725faster I/O. Using stdio is better for backward compatibility (especially
8726for Perl extensions), but on the other hand since Perl 5.8 the 'perlio'
8727interface has been preferred instead of stdio.
8728
8729If this doesn't make any sense to you, just accept the default '$dflt'.
8730EOM
8731rp='Use the "fast stdio" if available?'
8732. ./myread
8733case "$ans" in
8734y|Y) val="$define" ;;
8735*) val="$undef" ;;
8736esac
8737set usefaststdio
8738eval $setvar
8739
8740
8741: define an is-a-typedef? function
8742typedef='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
8743case "$inclist" in
8744"") inclist="sys/types.h";;
8745esac;
8746eval "varval=\$$var";
8747case "$varval" in
8748"")
8749 $rm -f temp.c;
8750 for inc in $inclist; do
8751 echo "#include <$inc>" >>temp.c;
8752 done;
8753 echo "#ifdef $type" >> temp.c;
8754 echo "printf(\"We have $type\");" >> temp.c;
8755 echo "#endif" >> temp.c;
8756 $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
8757 if $contains $type temp.E >/dev/null 2>&1; then
8758 eval "$var=\$type";
8759 else
8760 eval "$var=\$def";
8761 fi;
8762 $rm -f temp.?;;
8763*) eval "$var=\$varval";;
8764esac'
8765
8766: define an is-a-typedef? function that prompts if the type is not available.
8767typedef_ask='type=$1; var=$2; def=$3; shift; shift; shift; inclist=$@;
8768case "$inclist" in
8769"") inclist="sys/types.h";;
8770esac;
8771eval "varval=\$$var";
8772case "$varval" in
8773"")
8774 $rm -f temp.c;
8775 for inc in $inclist; do
8776 echo "#include <$inc>" >>temp.c;
8777 done;
8778 echo "#ifdef $type" >> temp.c;
8779 echo "printf(\"We have $type\");" >> temp.c;
8780 echo "#endif" >> temp.c;
8781 $cppstdin $cppflags $cppminus < temp.c >temp.E 2>/dev/null;
8782 echo " " ;
8783 echo "$rp" | $sed -e "s/What is/Looking for/" -e "s/?/./";
8784 if $contains $type temp.E >/dev/null 2>&1; then
8785 echo "$type found." >&4;
8786 eval "$var=\$type";
8787 else
8788 echo "$type NOT found." >&4;
8789 dflt="$def";
8790 . ./myread ;
8791 eval "$var=\$ans";
8792 fi;
8793 $rm -f temp.?;;
8794*) eval "$var=\$varval";;
8795esac'
8796
8797: see what type lseek is declared as in the kernel
8798rp="What is the type used for lseek's offset on this system?"
8799set off_t lseektype long stdio.h sys/types.h
8800eval $typedef_ask
8801
8802echo " "
8803echo "Checking to see how big your file offsets are..." >&4
8804$cat >try.c <<EOCP
8805#include <sys/types.h>
8806#include <stdio.h>
8807int main()
8808{
8809 printf("%d\n", (int)sizeof($lseektype));
8810 return(0);
8811}
8812EOCP
8813set try
8814if eval $compile_ok; then
8815 lseeksize=`$run ./try`
8816 echo "Your file offsets are $lseeksize bytes long."
8817else
8818 dflt=$longsize
8819 echo " "
8820 echo "(I can't seem to compile the test program. Guessing...)"
8821 rp="What is the size of your file offsets (in bytes)?"
8822 . ./myread
8823 lseeksize="$ans"
8824fi
8825$rm -f try.c try
8826
8827: see what type file positions are declared as in the library
8828rp="What is the type for file position used by fsetpos()?"
8829set fpos_t fpostype long stdio.h sys/types.h
8830eval $typedef_ask
8831
8832echo " "
8833case "$fpostype" in
8834*_t) zzz="$fpostype" ;;
8835*) zzz="fpos_t" ;;
8836esac
8837echo "Checking the size of $zzz..." >&4
8838cat > try.c <<EOCP
8839#include <sys/types.h>
8840#include <stdio.h>
8841#$i_stdlib I_STDLIB
8842#ifdef I_STDLIB
8843#include <stdlib.h>
8844#endif
8845int main() {
8846 printf("%d\n", (int)sizeof($fpostype));
8847 exit(0);
8848}
8849EOCP
8850set try
8851if eval $compile_ok; then
8852 yyy=`$run ./try`
8853 case "$yyy" in
8854 '') fpossize=4
8855 echo "(I can't execute the test program--guessing $fpossize.)" >&4
8856 ;;
8857 *) fpossize=$yyy
8858 echo "Your $zzz is $fpossize bytes long."
8859 ;;
8860 esac
8861else
8862 dflt="$longsize"
8863 echo " " >&4
8864 echo "(I can't compile the test program. Guessing...)" >&4
8865 rp="What is the size of your file positions (in bytes)?"
8866 . ./myread
8867 fpossize="$ans"
8868fi
8869
8870# Backward compatibility (uselfs is deprecated).
8871case "$uselfs" in
8872"$define"|true|[yY]*)
8873 cat <<EOM >&4
8874
8875*** Configure -Duselfs is deprecated, using -Duselargefiles instead.
8876EOM
8877 uselargefiles="$define"
8878 ;;
8879esac
8880
8881case "$lseeksize:$fpossize" in
88828:8) cat <<EOM
8883
8884You can have files larger than 2 gigabytes.
8885EOM
8886 val="$define" ;;
8887*) case "$uselargefiles" in
8888 "$undef"|false|[nN]*) dflt='n' ;;
8889 *) dflt='y' ;;
8890 esac
8891 cat <<EOM
8892
8893Perl can be built to understand large files (files larger than 2 gigabytes)
8894on some systems. To do so, Configure can be run with -Duselargefiles.
8895
8896If this doesn't make any sense to you, just accept the default '$dflt'.
8897EOM
8898 rp='Try to understand large files, if available?'
8899 . ./myread
8900 case "$ans" in
8901 y|Y) val="$define" ;;
8902 *) val="$undef" ;;
8903 esac
8904 ;;
8905esac
8906set uselargefiles
8907eval $setvar
8908: Look for a hint-file generated 'call-back-unit'. If the
8909: user has specified that a large files perl is to be built,
8910: we may need to set or change some other defaults.
8911if $test -f uselargefiles.cbu; then
8912 echo "Your platform has some specific hints regarding large file builds, using them..."
8913 . ./uselargefiles.cbu
8914fi
8915case "$uselargefiles" in
8916"$define")
8917 if $test -f uselargefiles.cbu; then
8918 echo " "
8919 echo "Rechecking to see how big your file offsets are..." >&4
8920 $cat >try.c <<EOCP
8921#include <sys/types.h>
8922#include <stdio.h>
8923int main()
8924{
8925 printf("%d\n", (int)sizeof($lseektype));
8926 return(0);
8927}
8928EOCP
8929 set try
8930 if eval $compile_ok; then
8931 lseeksize=`$run ./try`
8932 $echo "Your file offsets are now $lseeksize bytes long."
8933 else
8934 dflt="$lseeksize"
8935 echo " "
8936 echo "(I can't seem to compile the test program. Guessing...)"
8937 rp="What is the size of your file offsets (in bytes)?"
8938 . ./myread
8939 lseeksize="$ans"
8940 fi
8941 case "$fpostype" in
8942 *_t) zzz="$fpostype" ;;
8943 *) zzz="fpos_t" ;;
8944 esac
8945 $echo $n "Rechecking the size of $zzz...$c" >&4
8946 $cat > try.c <<EOCP
8947#include <sys/types.h>
8948#include <stdio.h>
8949#$i_stdlib I_STDLIB
8950#ifdef I_STDLIB
8951#include <stdlib.h>
8952#endif
8953int main() {
8954 printf("%d\n", (int)sizeof($fpostype));
8955 return(0);
8956}
8957EOCP
8958 set try
8959 if eval $compile_ok; then
8960 yyy=`$run ./try`
8961 dflt="$lseeksize"
8962 case "$yyy" in
8963 '') echo " "
8964 echo "(I can't execute the test program--guessing $fpossize.)" >&4
8965 ;;
8966 *) fpossize=$yyy
8967 echo " $fpossize bytes." >&4
8968 ;;
8969 esac
8970 else
8971 dflt="$fpossize"
8972 echo " "
8973 echo "(I can't compile the test program. Guessing...)" >&4
8974 rp="What is the size of your file positions (in bytes)?"
8975 . ./myread
8976 fpossize="$ans"
8977 fi
8978 $rm -f try.c try
8979 fi
8980 ;;
8981esac
8982
8983case "$vendorprefix" in
8984'') d_vendorbin="$undef"
8985 vendorbin=''
8986 vendorbinexp=''
8987 ;;
8988*) d_vendorbin="$define"
8989 : determine where vendor-supplied executables go.
8990 case "$vendorbin" in
8991 '') dflt=$vendorprefix/bin ;;
8992 *) dflt="$vendorbin" ;;
8993 esac
8994 fn=d~+
8995 rp='Pathname for the vendor-supplied executables directory?'
8996 . ./getfile
8997 vendorbin="$ans"
8998 vendorbinexp="$ansexp"
8999 ;;
9000esac
9001prefixvar=vendorbin
9002. ./installprefix
9003
9004case "$vendorprefix" in
9005'') vendorhtml1dir=''
9006 vendorhtml1direxp=''
9007 ;;
9008*) : determine where vendor-supplied html pages go.
9009 : There is no standard location, so try to copy the previously-selected
9010 : directory structure for the core html pages.
9011 : XXX Better default suggestions would be welcome.
9012 case "$vendorhtml1dir" in
9013 '') dflt=`echo "$html1dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9014 *) dflt=$vendorhtml1dir ;;
9015 esac
9016 case "$dflt" in
9017 ''|' ') dflt=none ;;
9018 esac
9019 fn=dn+~
9020 rp='Pathname for the vendor-supplied html pages?'
9021 . ./getfile
9022 vendorhtml1dir="$ans"
9023 vendorhtml1direxp="$ansexp"
9024 ;;
9025esac
9026: Use ' ' for none so value is preserved next time through Configure
9027$test X"$vendorhtml1dir" = "X" && vendorhtml1dir=' '
9028prefixvar=vendorhtml1dir
9029. ./installprefix
9030
9031case "$vendorprefix" in
9032'') vendorhtml3dir=''
9033 vendorhtml3direxp=''
9034 ;;
9035*) : determine where vendor-supplied module html pages go.
9036 : There is no standard location, so try to copy the previously-selected
9037 : directory structure for the core html pages.
9038 : XXX Better default suggestions would be welcome.
9039 case "$vendorhtml3dir" in
9040 '') dflt=`echo "$html3dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9041 *) dflt=$vendorhtml3dir ;;
9042 esac
9043 case "$dflt" in
9044 ''|' ') dflt=none ;;
9045 esac
9046 fn=dn+~
9047 rp='Pathname for the vendor-supplied html pages?'
9048 . ./getfile
9049 vendorhtml3dir="$ans"
9050 vendorhtml3direxp="$ansexp"
9051 ;;
9052esac
9053: Use ' ' for none so value is preserved next time through Configure
9054$test X"$vendorhtml3dir" = "X" && vendorhtml3dir=' '
9055prefixvar=vendorhtml3dir
9056. ./installprefix
9057
9058case "$vendorprefix" in
9059'') vendorman1dir=''
9060 vendorman1direxp=''
9061 ;;
9062*) : determine where vendor-supplied manual pages go.
9063 case "$vendorman1dir" in
9064 '') dflt=`echo "$man1dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9065 *) dflt=$vendorman1dir ;;
9066 esac
9067 case "$dflt" in
9068 ''|' ') dflt=none ;;
9069 esac
9070 fn=nd~+
9071 rp='Pathname for the vendor-supplied manual section 1 pages?'
9072 . ./getfile
9073 vendorman1dir="$ans"
9074 vendorman1direxp="$ansexp"
9075 ;;
9076esac
9077: Use ' ' for none so value is preserved next time through Configure
9078$test X"$vendorman1dir" = "X" && vendorman1dir=' '
9079prefixvar=vendorman1dir
9080. ./installprefix
9081
9082case "$vendorprefix" in
9083'') vendorman3dir=''
9084 vendorman3direxp=''
9085 ;;
9086*) : determine where vendor-supplied module manual pages go.
9087 case "$vendorman3dir" in
9088 '') dflt=`echo "$man3dir" | $sed "s#^$prefix#$vendorprefix#"` ;;
9089 *) dflt=$vendorman3dir ;;
9090 esac
9091 case "$dflt" in
9092 ''|' ') dflt=none ;;
9093 esac
9094 fn=nd~+
9095 rp='Pathname for the vendor-supplied manual section 3 pages?'
9096 . ./getfile
9097 vendorman3dir="$ans"
9098 vendorman3direxp="$ansexp"
9099 ;;
9100esac
9101: Use ' ' for none so value is preserved next time through Configure
9102$test X"$vendorman3dir" = "X" && vendorman3dir=' '
9103prefixvar=vendorman3dir
9104. ./installprefix
9105
9106case "$vendorprefix" in
9107'') d_vendorscript="$undef"
9108 vendorscript=''
9109 vendorscriptexp=''
9110 ;;
9111*) d_vendorscript="$define"
9112 : determine where vendor-supplied scripts go.
9113 case "$vendorscript" in
9114 '') dflt=$vendorprefix/script
9115 $test -d $dflt || dflt=$vendorbin ;;
9116 *) dflt="$vendorscript" ;;
9117 esac
9118 $cat <<EOM
9119
9120The installation process will create a directory for
9121vendor-supplied scripts.
9122
9123EOM
9124 fn=d~+
9125 rp='Pathname for the vendor-supplied scripts directory?'
9126 . ./getfile
9127 vendorscript="$ans"
9128 vendorscriptexp="$ansexp"
9129 ;;
9130esac
9131prefixvar=vendorscript
9132. ./installprefix
9133
9134: see if qgcvt exists
9135set qgcvt d_qgcvt
9136eval $inlibc
9137
9138echo " "
9139
9140if $test X"$d_longdbl" = X"$define"; then
9141
9142echo "Checking how to print long doubles..." >&4
9143
9144if $test X"$sPRIfldbl" = X -a X"$doublesize" = X"$longdblsize"; then
9145 $cat >try.c <<'EOCP'
9146#include <sys/types.h>
9147#include <stdio.h>
9148int main() {
9149 double d = 123.456;
9150 printf("%.3f\n", d);
9151}
9152EOCP
9153 set try
9154 if eval $compile; then
9155 yyy=`$run ./try`
9156 case "$yyy" in
9157 123.456)
9158 sPRIfldbl='"f"'; sPRIgldbl='"g"'; sPRIeldbl='"e"';
9159 sPRIFUldbl='"F"'; sPRIGUldbl='"G"'; sPRIEUldbl='"E"';
9160 echo "We will use %f."
9161 ;;
9162 esac
9163 fi
9164fi
9165
9166if $test X"$sPRIfldbl" = X; then
9167 $cat >try.c <<'EOCP'
9168#include <sys/types.h>
9169#include <stdio.h>
9170int main() {
9171 long double d = 123.456;
9172 printf("%.3Lf\n", d);
9173}
9174EOCP
9175 set try
9176 if eval $compile; then
9177 yyy=`$run ./try`
9178 case "$yyy" in
9179 123.456)
9180 sPRIfldbl='"Lf"'; sPRIgldbl='"Lg"'; sPRIeldbl='"Le"';
9181 sPRIFUldbl='"LF"'; sPRIGUldbl='"LG"'; sPRIEUldbl='"LE"';
9182 echo "We will use %Lf."
9183 ;;
9184 esac
9185 fi
9186fi
9187
9188if $test X"$sPRIfldbl" = X; then
9189 $cat >try.c <<'EOCP'
9190#include <sys/types.h>
9191#include <stdio.h>
9192int main() {
9193 long double d = 123.456;
9194 printf("%.3llf\n", d);
9195}
9196EOCP
9197 set try
9198 if eval $compile; then
9199 yyy=`$run ./try`
9200 case "$yyy" in
9201 123.456)
9202 sPRIfldbl='"llf"'; sPRIgldbl='"llg"'; sPRIeldbl='"lle"';
9203 sPRIFUldbl='"llF"'; sPRIGUldbl='"llG"'; sPRIEUldbl='"llE"';
9204 echo "We will use %llf."
9205 ;;
9206 esac
9207 fi
9208fi
9209
9210if $test X"$sPRIfldbl" = X; then
9211 $cat >try.c <<'EOCP'
9212#include <sys/types.h>
9213#include <stdio.h>
9214int main() {
9215 long double d = 123.456;
9216 printf("%.3lf\n", d);
9217}
9218EOCP
9219 set try
9220 if eval $compile; then
9221 yyy=`$run ./try`
9222 case "$yyy" in
9223 123.456)
9224 sPRIfldbl='"lf"'; sPRIgldbl='"lg"'; sPRIeldbl='"le"';
9225 sPRIFUldbl='"lF"'; sPRIGUldbl='"lG"'; sPRIEUldbl='"lE"';
9226 echo "We will use %lf."
9227 ;;
9228 esac
9229 fi
9230fi
9231
9232if $test X"$sPRIfldbl" = X; then
9233 echo "Cannot figure out how to print long doubles." >&4
9234else
9235 sSCNfldbl=$sPRIfldbl # expect consistency
9236fi
9237
9238$rm -f try try.*
9239
9240fi # d_longdbl
9241
9242case "$sPRIfldbl" in
9243'') d_PRIfldbl="$undef"; d_PRIgldbl="$undef"; d_PRIeldbl="$undef";
9244 d_PRIFUldbl="$undef"; d_PRIGUldbl="$undef"; d_PRIEUldbl="$undef";
9245 d_SCNfldbl="$undef";
9246 ;;
9247*) d_PRIfldbl="$define"; d_PRIgldbl="$define"; d_PRIeldbl="$define";
9248 d_PRIFUldbl="$define"; d_PRIGUldbl="$define"; d_PRIEUldbl="$define";
9249 d_SCNfldbl="$define";
9250 ;;
9251esac
9252
9253: Check how to convert floats to strings.
9254
9255if test "X$d_Gconvert" = X; then
9256
9257echo " "
9258echo "Checking for an efficient way to convert floats to strings."
9259echo " " > try.c
9260case "$uselongdouble" in
9261"$define") echo "#define USE_LONG_DOUBLE" >>try.c ;;
9262esac
9263case "$d_longdbl" in
9264"$define") echo "#define HAS_LONG_DOUBLE" >>try.c ;;
9265esac
9266case "$d_PRIgldbl" in
9267"$define") echo "#define HAS_PRIgldbl" >>try.c ;;
9268esac
9269$cat >>try.c <<EOP
9270#ifdef TRY_gconvert
9271#define Gconvert(x,n,t,b) gconvert((x),(n),(t),(b))
9272char *myname = "gconvert";
9273#endif
9274#ifdef TRY_gcvt
9275#define Gconvert(x,n,t,b) gcvt((x),(n),(b))
9276char *myname = "gcvt";
9277#endif
9278#ifdef TRY_qgcvt
9279#define Gconvert(x,n,t,b) qgcvt((x),(n),(b))
9280char *myname = "qgcvt";
9281#define DOUBLETYPE long double
9282#endif
9283#ifdef TRY_sprintf
9284#if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
9285#ifdef HAS_PRIgldbl
9286#define Gconvert(x,n,t,b) sprintf((b),"%.*"$sPRIgldbl,(n),(x))
9287#else
9288#define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(double)(x))
9289#endif
9290#else
9291#define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x))
9292#endif
9293char *myname = "sprintf";
9294#endif
9295
9296#ifndef DOUBLETYPE
9297#if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
9298#define DOUBLETYPE long double
9299#else
9300#define DOUBLETYPE double
9301#endif
9302#endif
9303
9304#include <stdio.h>
9305
9306#define I_STDLIB $i_stdlib
9307#ifdef I_STDLIB
9308#include <stdlib.h>
9309#endif
9310
9311int
9312checkit(expect, got)
9313char *expect;
9314char *got;
9315{
9316 if (strcmp(expect, got)) {
9317 printf("%s oddity: Expected %s, got %s\n",
9318 myname, expect, got);
9319 exit(1);
9320 }
9321}
9322
9323int main()
9324{
9325 char buf[64];
9326 buf[63] = '\0';
9327
9328 /* This must be 1st test on (which?) platform */
9329 /* Alan Burlison <AlanBurlsin@unn.unisys.com> */
9330 Gconvert((DOUBLETYPE)0.1, 8, 0, buf);
9331 checkit("0.1", buf);
9332
9333 Gconvert((DOUBLETYPE)0.01, 8, 0, buf);
9334 checkit("0.01", buf);
9335
9336 Gconvert((DOUBLETYPE)0.001, 8, 0, buf);
9337 checkit("0.001", buf);
9338
9339 Gconvert((DOUBLETYPE)0.0001, 8, 0, buf);
9340 checkit("0.0001", buf);
9341
9342 Gconvert((DOUBLETYPE)0.00009, 8, 0, buf);
9343 if (strlen(buf) > 5)
9344 checkit("9e-005", buf); /* for Microsoft ?? */
9345 else
9346 checkit("9e-05", buf);
9347
9348 Gconvert((DOUBLETYPE)1.0, 8, 0, buf);
9349 checkit("1", buf);
9350
9351 Gconvert((DOUBLETYPE)1.1, 8, 0, buf);
9352 checkit("1.1", buf);
9353
9354 Gconvert((DOUBLETYPE)1.01, 8, 0, buf);
9355 checkit("1.01", buf);
9356
9357 Gconvert((DOUBLETYPE)1.001, 8, 0, buf);
9358 checkit("1.001", buf);
9359
9360 Gconvert((DOUBLETYPE)1.0001, 8, 0, buf);
9361 checkit("1.0001", buf);
9362
9363 Gconvert((DOUBLETYPE)1.00001, 8, 0, buf);
9364 checkit("1.00001", buf);
9365
9366 Gconvert((DOUBLETYPE)1.000001, 8, 0, buf);
9367 checkit("1.000001", buf);
9368
9369 Gconvert((DOUBLETYPE)0.0, 8, 0, buf);
9370 checkit("0", buf);
9371
9372 Gconvert((DOUBLETYPE)-1.0, 8, 0, buf);
9373 checkit("-1", buf);
9374
9375 /* Some Linux gcvt's give 1.e+5 here. */
9376 Gconvert((DOUBLETYPE)100000.0, 8, 0, buf);
9377 checkit("100000", buf);
9378
9379 /* Some Linux gcvt's give -1.e+5 here. */
9380 Gconvert((DOUBLETYPE)-100000.0, 8, 0, buf);
9381 checkit("-100000", buf);
9382
9383 Gconvert((DOUBLETYPE)123.456, 8, 0, buf);
9384 checkit("123.456", buf);
9385
9386 /* Testing of 1e+129 in bigintpm.t must not get extra '.' here. */
9387 Gconvert((DOUBLETYPE)1e34, 8, 0, buf);
9388 /* 34 should be enough to scare even long double
9389 * places into using the e notation. */
9390 if (strlen(buf) > 5)
9391 checkit("1e+034", buf); /* for Microsoft */
9392 else
9393 checkit("1e+34", buf);
9394
9395 /* For Perl, if you add additional tests here, also add them to
9396 * t/base/num.t for benefit of platforms not using Configure or
9397 * overriding d_Gconvert */
9398
9399 exit(0);
9400}
9401EOP
9402: first add preferred functions to our list
9403xxx_list=""
9404for xxx_convert in $gconvert_preference; do
9405 case $xxx_convert in
9406 gcvt|gconvert|sprintf) xxx_list="$xxx_list $xxx_convert" ;;
9407 *) echo "Discarding unrecognized gconvert_preference $xxx_convert" >&4 ;;
9408 esac
9409done
9410: then add any others
9411for xxx_convert in gconvert gcvt sprintf; do
9412 case "$xxx_list" in
9413 *$xxx_convert*) ;;
9414 *) xxx_list="$xxx_list $xxx_convert" ;;
9415 esac
9416done
9417
9418case "$d_longdbl$uselongdouble" in
9419"$define$define")
9420 : again, add prefered functions to our list first
9421 xxx_ld_list=""
9422 for xxx_convert in $gconvert_ld_preference; do
9423 case $xxx_convert in
9424 qgcvt|gcvt|gconvert|sprintf) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
9425 *) echo "Discarding unrecognized gconvert_ld_preference $xxx_convert" ;;
9426 esac
9427 done
9428 : then add qgcvt, sprintf--then, in xxx_list order, gconvert and gcvt
9429 for xxx_convert in qgcvt sprintf $xxx_list; do
9430 case "$xxx_ld_list" in
9431 $xxx_convert*|*" $xxx_convert"*) ;;
9432 *) xxx_ld_list="$xxx_ld_list $xxx_convert" ;;
9433 esac
9434 done
9435 : if sprintf cannot do long doubles, move it to the end
9436 if test "$d_PRIgldbl" != "$define"; then
9437 xxx_ld_list="`echo $xxx_ld_list|sed s/sprintf//` sprintf"
9438 fi
9439 : if no qgcvt, remove it
9440 if test "$d_qgcvt" != "$define"; then
9441 xxx_ld_list="`echo $xxx_ld_list|sed s/qgcvt//`"
9442 fi
9443 : use the ld_list
9444 xxx_list="$xxx_ld_list"
9445 ;;
9446esac
9447
9448for xxx_convert in $xxx_list; do
9449 echo "Trying $xxx_convert..."
9450 $rm -f try try$_o
9451 set try -DTRY_$xxx_convert
9452 if eval $compile; then
9453 echo "$xxx_convert() found." >&4
9454 if $run ./try; then
9455 echo "I'll use $xxx_convert to convert floats into a string." >&4
9456 break;
9457 else
9458 echo "...But $xxx_convert didn't work as I expected."
9459 xxx_convert=''
9460 fi
9461 else
9462 echo "$xxx_convert NOT found." >&4
9463 fi
9464done
9465
9466if test X$xxx_convert = X; then
9467 echo "*** WHOA THERE!!! ***" >&4
9468 echo "None of ($xxx_list) seemed to work properly. I'll use sprintf." >&4
9469 xxx_convert=sprintf
9470fi
9471
9472case "$xxx_convert" in
9473gconvert) d_Gconvert='gconvert((x),(n),(t),(b))' ;;
9474gcvt) d_Gconvert='gcvt((x),(n),(b))' ;;
9475qgcvt) d_Gconvert='qgcvt((x),(n),(b))' ;;
9476*) case "$uselongdouble$d_longdbl$d_PRIgldbl" in
9477 "$define$define$define")
9478 d_Gconvert="sprintf((b),\"%.*\"$sPRIgldbl,(n),(x))" ;;
9479 "$define$define$undef")
9480 d_Gconvert='sprintf((b),"%.*g",(n),(double)(x))' ;;
9481 *) d_Gconvert='sprintf((b),"%.*g",(n),(x))' ;;
9482 esac
9483 ;;
9484esac
9485
9486fi
9487
9488: see if _fwalk exists
9489set fwalk d__fwalk
9490eval $inlibc
9491
9492: Initialize h_fcntl
9493h_fcntl=false
9494
9495: Initialize h_sysfile
9496h_sysfile=false
9497
9498: access call always available on UNIX
9499set access d_access
9500eval $inlibc
9501
9502: locate the flags for 'access()'
9503case "$d_access" in
9504"$define")
9505 echo " "
9506 $cat >access.c <<EOCP
9507#include <sys/types.h>
9508#ifdef I_FCNTL
9509#include <fcntl.h>
9510#endif
9511#ifdef I_SYS_FILE
9512#include <sys/file.h>
9513#endif
9514#ifdef I_UNISTD
9515#include <unistd.h>
9516#endif
9517#$i_stdlib I_STDLIB
9518#ifdef I_STDLIB
9519#include <stdlib.h>
9520#endif
9521int main() {
9522 exit(R_OK);
9523}
9524EOCP
9525 : check sys/file.h first, no particular reason here
9526 if $test `./findhdr sys/file.h` && \
9527 $cc -o access $cppflags -DI_SYS_FILE access.c >/dev/null 2>&1 ; then
9528 h_sysfile=true;
9529 echo "<sys/file.h> defines the *_OK access constants." >&4
9530 elif $test `./findhdr fcntl.h` && \
9531 $cc -o access $cppflags -DI_FCNTL access.c >/dev/null 2>&1 ; then
9532 h_fcntl=true;
9533 echo "<fcntl.h> defines the *_OK access constants." >&4
9534 elif $test `./findhdr unistd.h` && \
9535 $cc -o access $cppflags -DI_UNISTD access.c >/dev/null 2>&1 ; then
9536 echo "<unistd.h> defines the *_OK access constants." >&4
9537 else
9538 echo "I can't find the four *_OK access constants--I'll use mine." >&4
9539 fi
9540 ;;
9541esac
9542$rm -f access*
9543
9544: see if accessx exists
9545set accessx d_accessx
9546eval $inlibc
9547
9548: see if aintl exists
9549set aintl d_aintl
9550eval $inlibc
9551
9552: see if alarm exists
9553set alarm d_alarm
9554eval $inlibc
9555
9556: see if POSIX threads are available
9557set pthread.h i_pthread
9558eval $inhdr
9559
9560: define a fucntion to check prototypes
9561$cat > protochk <<EOSH
9562$startsh
9563cc="$cc"
9564optimize="$optimize"
9565ccflags="$ccflags"
9566prototype="$prototype"
9567define="$define"
9568rm=$rm
9569usethreads=$usethreads
9570i_pthread=$i_pthread
9571pthread_h_first=$pthread_h_first
9572EOSH
9573
9574$cat >> protochk <<'EOSH'
9575
9576$rm -f try.c
9577foo="$1"
9578shift
9579while test $# -ge 2; do
9580 case "$1" in
9581 $define) echo "#include <$2>" >> try.c ;;
9582 literal) echo "$2" >> try.c ;;
9583 esac
9584 # Extra magic for the benefit of systems that need pthread.h
9585 # to be included early to correctly detect threadsafe functions.
9586 # Such functions must guarantee themselves, though, that the usethreads
9587 # and i_pthread have been defined, before calling protochk.
9588 if test "$usethreads" = "$define" -a "$i_pthread" = "$define" -a "$pthread_h_first" = "$define" -a "$pthread_h_done" = ""; then
9589 echo "#include <pthread.h>" >> try.c
9590 pthread_h_done=yes
9591 fi
9592 shift 2
9593done
9594test "$prototype" = "$define" && echo '#define CAN_PROTOTYPE' >> try.c
9595cat >> try.c <<'EOCP'
9596#ifdef CAN_PROTOTYPE
9597#define _(args) args
9598#else
9599#define _(args) ()
9600#endif
9601EOCP
9602echo "$foo" >> try.c
9603echo 'int no_real_function_has_this_name _((void)) { return 0; }' >> try.c
9604$cc $optimize $ccflags -c try.c > /dev/null 2>&1
9605status=$?
9606$rm -f try.[co]
9607exit $status
9608EOSH
9609chmod +x protochk
9610$eunicefix protochk
9611
9612hasproto='varname=$1; func=$2; shift; shift;
9613while $test $# -ge 2; do
9614 case "$1" in
9615 $define) echo "#include <$2>";;
9616 esac ;
9617 shift 2;
9618done > try.c;
9619$cppstdin $cppflags $cppminus < try.c > tryout.c 2>/dev/null;
9620if $contains "$func.*(" tryout.c >/dev/null 2>&1; then
9621 echo "$func() prototype found.";
9622 val="$define";
9623else
9624 echo "$func() prototype NOT found.";
9625 val="$undef";
9626fi;
9627set $varname;
9628eval $setvar;
9629$rm -f try.c tryout.c'
9630
9631: see if sys/types.h has to be included
9632set sys/types.h i_systypes
9633eval $inhdr
9634
9635: see if sys/select.h has to be included
9636set sys/select.h i_sysselct
9637eval $inhdr
9638
9639hasfield='varname=$1; struct=$2; field=$3; shift; shift; shift;
9640while $test $# -ge 2; do
9641 case "$1" in
9642 $define) echo "#include <$2>";;
9643 esac ;
9644 shift 2;
9645done > try.c;
9646echo "int main () { struct $struct foo; char* bar; bar = (char*)foo.$field; }" >> try.c;
9647set try;
9648if eval $compile; then
9649 val="$define";
9650else
9651 val="$undef";
9652fi;
9653set $varname;
9654eval $setvar;
9655$rm -f try.c try.o'
9656
9657: see if we should include time.h, sys/time.h, or both
9658echo " "
9659if test "X$timeincl" = X; then
9660 echo "Testing to see if we should include <time.h>, <sys/time.h> or both." >&4
9661 $echo $n "I'm now running the test program...$c"
9662 $cat >try.c <<EOCP
9663#include <sys/types.h>
9664#ifdef I_TIME
9665#include <time.h>
9666#endif
9667#ifdef I_SYSTIME
9668#ifdef SYSTIMEKERNEL
9669#define KERNEL
9670#endif
9671#include <sys/time.h>
9672#endif
9673#ifdef I_SYSSELECT
9674#include <sys/select.h>
9675#endif
9676#$i_stdlib I_STDLIB
9677#ifdef I_STDLIB
9678#include <stdlib.h>
9679#endif
9680int main()
9681{
9682 struct tm foo;
9683#ifdef S_TIMEVAL
9684 struct timeval bar;
9685#endif
9686#ifdef S_TIMEZONE
9687 struct timezone tzp;
9688#endif
9689 if (foo.tm_sec == foo.tm_sec)
9690 exit(0);
9691#ifdef S_TIMEVAL
9692 if (bar.tv_sec == bar.tv_sec)
9693 exit(0);
9694#endif
9695 exit(1);
9696}
9697EOCP
9698 flags=''
9699 for s_timezone in '-DS_TIMEZONE' ''; do
9700 sysselect=''
9701 for s_timeval in '-DS_TIMEVAL' ''; do
9702 for i_systimek in '' '-DSYSTIMEKERNEL'; do
9703 for i_time in '' '-DI_TIME'; do
9704 for i_systime in '-DI_SYSTIME' ''; do
9705 case "$flags" in
9706 '') $echo $n ".$c"
9707 set try $i_time $i_systime $i_systimek $sysselect $s_timeval $s_timezone
9708 if eval $compile; then
9709 set X $i_time $i_systime $i_systimek $sysselect $s_timeval
9710 shift
9711 flags="$*"
9712 echo " "
9713 $echo $n "Succeeded with $flags$c"
9714 fi
9715 ;;
9716 esac
9717 done
9718 done
9719 done
9720 done
9721 done
9722 timeincl=''
9723 echo " "
9724 case "$flags" in
9725 *SYSTIMEKERNEL*) i_systimek="$define"
9726 timeincl=`./findhdr sys/time.h`
9727 echo "We'll include <sys/time.h> with KERNEL defined." >&4;;
9728 *) i_systimek="$undef";;
9729 esac
9730 case "$flags" in
9731 *I_TIME*) i_time="$define"
9732 timeincl=`./findhdr time.h`" $timeincl"
9733 echo "We'll include <time.h>." >&4;;
9734 *) i_time="$undef";;
9735 esac
9736 case "$flags" in
9737 *I_SYSTIME*) i_systime="$define"
9738 timeincl=`./findhdr sys/time.h`" $timeincl"
9739 echo "We'll include <sys/time.h>." >&4;;
9740 *) i_systime="$undef";;
9741 esac
9742 $rm -f try.c try
9743fi
9744: see if struct tm knows about tm_zone
9745case "$i_systime$i_time" in
9746*$define*)
9747 echo " "
9748 echo "Checking to see if your struct tm has tm_zone field..." >&4
9749 set d_tm_tm_zone tm tm_zone $i_systime sys/time.h $i_time time.h
9750 eval $hasfield
9751 ;;
9752*) val="$undef"
9753 set d_tm_tm_zone
9754 eval $setvar
9755 ;;
9756esac
9757case "$d_tm_tm_zone" in
9758"$define") echo "Yes, it does." ;;
9759*) echo "No, it doesn't." ;;
9760esac
9761: see if struct tm knows about tm_gmtoff
9762case "$i_systime$i_time" in
9763*$define*)
9764 echo " "
9765 echo "Checking to see if your struct tm has tm_gmtoff field..." >&4
9766 set d_tm_tm_gmtoff tm tm_gmtoff $i_systime sys/time.h $i_time time.h
9767 eval $hasfield
9768 ;;
9769*) val="$undef"
9770 set d_tm_tm_gmtoff
9771 eval $setvar
9772 ;;
9773esac
9774case "$d_tm_tm_gmtoff" in
9775"$define") echo "Yes, it does." ;;
9776*) echo "No, it doesn't." ;;
9777esac
9778
9779: see if asctime_r exists
9780set asctime_r d_asctime_r
9781eval $inlibc
9782case "$d_asctime_r" in
9783"$define")
9784 hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
9785 case "$d_asctime_r_proto:$usethreads" in
9786 ":define") d_asctime_r_proto=define
9787 set d_asctime_r_proto asctime_r $hdrs
9788 eval $hasproto ;;
9789 *) ;;
9790 esac
9791 case "$d_asctime_r_proto" in
9792 define)
9793 case "$asctime_r_proto" in
9794 ''|0) try='char* asctime_r(const struct tm*, char*);'
9795 ./protochk "extern $try" $hdrs && asctime_r_proto=B_SB ;;
9796 esac
9797 case "$asctime_r_proto" in
9798 ''|0) try='char* asctime_r(const struct tm*, char*, int);'
9799 ./protochk "extern $try" $hdrs && asctime_r_proto=B_SBI ;;
9800 esac
9801 case "$asctime_r_proto" in
9802 ''|0) try='int asctime_r(const struct tm*, char*);'
9803 ./protochk "extern $try" $hdrs && asctime_r_proto=I_SB ;;
9804 esac
9805 case "$asctime_r_proto" in
9806 ''|0) try='int asctime_r(const struct tm*, char*, int);'
9807 ./protochk "extern $try" $hdrs && asctime_r_proto=I_SBI ;;
9808 esac
9809 case "$asctime_r_proto" in
9810 ''|0) d_asctime_r=undef
9811 asctime_r_proto=0
9812 echo "Disabling asctime_r, cannot determine prototype." >&4 ;;
9813 * ) case "$asctime_r_proto" in
9814 REENTRANT_PROTO*) ;;
9815 *) asctime_r_proto="REENTRANT_PROTO_$asctime_r_proto" ;;
9816 esac
9817 echo "Prototype: $try" ;;
9818 esac
9819 ;;
9820 *) case "$usethreads" in
9821 define) echo "asctime_r has no prototype, not using it." >&4 ;;
9822 esac
9823 d_asctime_r=undef
9824 asctime_r_proto=0
9825 ;;
9826 esac
9827 ;;
9828*) asctime_r_proto=0
9829 ;;
9830esac
9831
9832: see if atolf exists
9833set atolf d_atolf
9834eval $inlibc
9835
9836: see if atoll exists
9837set atoll d_atoll
9838eval $inlibc
9839
9840: Look for GCC-style attribute format
9841case "$d_attribute_format" in
9842'')
9843echo " "
9844echo "Checking whether your compiler can handle __attribute__((format)) ..." >&4
9845$cat >attrib.c <<'EOCP'
9846#include <stdio.h>
9847void my_special_printf(char* pat,...) __attribute__((__format__(__printf__,1,2)));
9848EOCP
9849if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
9850 if $contains 'warning' attrib.out >/dev/null 2>&1; then
9851 echo "Your C compiler doesn't support __attribute__((format))."
9852 val="$undef"
9853 else
9854 echo "Your C compiler supports __attribute__((format))."
9855 val="$define"
9856 fi
9857else
9858 echo "Your C compiler doesn't seem to understand __attribute__ at all."
9859 val="$undef"
9860fi
9861;;
9862*) val="$d_attribute_format" ;;
9863esac
9864set d_attribute_format
9865eval $setvar
9866$rm -f attrib*
9867
9868: Look for GCC-style attribute malloc
9869case "$d_attribute_malloc" in
9870'')
9871echo " "
9872echo "Checking whether your compiler can handle __attribute__((malloc)) ..." >&4
9873$cat >attrib.c <<'EOCP'
9874#include <stdio.h>
9875char *go_get_some_memory( int how_many_bytes ) __attribute__((malloc));
9876EOCP
9877if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
9878 if $contains 'warning' attrib.out >/dev/null 2>&1; then
9879 echo "Your C compiler doesn't support __attribute__((malloc))."
9880 val="$undef"
9881 else
9882 echo "Your C compiler supports __attribute__((malloc))."
9883 val="$define"
9884 fi
9885else
9886 echo "Your C compiler doesn't seem to understand __attribute__ at all."
9887 val="$undef"
9888fi
9889;;
9890*) val="$d_attribute_malloc" ;;
9891esac
9892set d_attribute_malloc
9893eval $setvar
9894$rm -f attrib*
9895
9896: Look for GCC-style attribute nonnull
9897case "$d_attribute_nonnull" in
9898'')
9899echo " "
9900echo "Checking whether your compiler can handle __attribute__((nonnull(1))) ..." >&4
9901$cat >attrib.c <<'EOCP'
9902#include <stdio.h>
9903void do_something (char *some_pointer,...) __attribute__((nonnull(1)));
9904EOCP
9905if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
9906 if $contains 'warning' attrib.out >/dev/null 2>&1; then
9907 echo "Your C compiler doesn't support __attribute__((nonnull))."
9908 val="$undef"
9909 else
9910 echo "Your C compiler supports __attribute__((nonnull))."
9911 val="$define"
9912 fi
9913else
9914 echo "Your C compiler doesn't seem to understand __attribute__ at all."
9915 val="$undef"
9916fi
9917;;
9918*) val="$d_attribute_nonnull" ;;
9919esac
9920set d_attribute_nonnull
9921eval $setvar
9922$rm -f attrib*
9923
9924: Look for GCC-style attribute noreturn
9925case "$d_attribute_noreturn" in
9926'')
9927echo " "
9928echo "Checking whether your compiler can handle __attribute__((noreturn)) ..." >&4
9929$cat >attrib.c <<'EOCP'
9930#include <stdio.h>
9931void fall_over_dead( void ) __attribute__((noreturn));
9932EOCP
9933if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
9934 if $contains 'warning' attrib.out >/dev/null 2>&1; then
9935 echo "Your C compiler doesn't support __attribute__((noreturn))."
9936 val="$undef"
9937 else
9938 echo "Your C compiler supports __attribute__((noreturn))."
9939 val="$define"
9940 fi
9941else
9942 echo "Your C compiler doesn't seem to understand __attribute__ at all."
9943 val="$undef"
9944fi
9945;;
9946*) val="$d_attribute_noreturn" ;;
9947esac
9948set d_attribute_noreturn
9949eval $setvar
9950$rm -f attrib*
9951
9952: Look for GCC-style attribute pure
9953case "$d_attribute_pure" in
9954'')
9955echo " "
9956echo "Checking whether your compiler can handle __attribute__((pure)) ..." >&4
9957$cat >attrib.c <<'EOCP'
9958#include <stdio.h>
9959int square( int n ) __attribute__((pure));
9960EOCP
9961if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
9962 if $contains 'warning' attrib.out >/dev/null 2>&1; then
9963 echo "Your C compiler doesn't support __attribute__((pure))."
9964 val="$undef"
9965 else
9966 echo "Your C compiler supports __attribute__((pure))."
9967 val="$define"
9968 fi
9969else
9970 echo "Your C compiler doesn't seem to understand __attribute__ at all."
9971 val="$undef"
9972fi
9973;;
9974*) val="$d_attribute_pure" ;;
9975esac
9976set d_attribute_pure
9977eval $setvar
9978$rm -f attrib*
9979
9980: Look for GCC-style attribute unused
9981case "$d_attribute_unused" in
9982'')
9983echo " "
9984echo "Checking whether your compiler can handle __attribute__((unused)) ..." >&4
9985$cat >attrib.c <<'EOCP'
9986#include <stdio.h>
9987int do_something( int dummy __attribute__((unused)), int n );
9988EOCP
9989if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
9990 if $contains 'warning' attrib.out >/dev/null 2>&1; then
9991 echo "Your C compiler doesn't support __attribute__((unused))."
9992 val="$undef"
9993 else
9994 echo "Your C compiler supports __attribute__((unused))."
9995 val="$define"
9996 fi
9997else
9998 echo "Your C compiler doesn't seem to understand __attribute__ at all."
9999 val="$undef"
10000fi
10001;;
10002*) val="$d_attribute_unused" ;;
10003esac
10004set d_attribute_unused
10005eval $setvar
10006$rm -f attrib*
10007
10008: Look for GCC-style attribute warn_unused_result
10009case "$d_attribute_warn_unused_result" in
10010'')
10011echo " "
10012echo "Checking whether your compiler can handle __attribute__((warn_unused_result)) ..." >&4
10013$cat >attrib.c <<'EOCP'
10014#include <stdio.h>
10015int I_will_not_be_ignored(void) __attribute__((warn_unused_result));
10016EOCP
10017if $cc $ccflags -c attrib.c >attrib.out 2>&1 ; then
10018 if $contains 'warning' attrib.out >/dev/null 2>&1; then
10019 echo "Your C compiler doesn't support __attribute__((warn_unused_result))."
10020 val="$undef"
10021 else
10022 echo "Your C compiler supports __attribute__((warn_unused_result))."
10023 val="$define"
10024 fi
10025else
10026 echo "Your C compiler doesn't seem to understand __attribute__ at all."
10027 val="$undef"
10028fi
10029;;
10030*) val="$d_attribute_warn_unused_result" ;;
10031esac
10032set d_attribute_warn_unused_result
10033eval $setvar
10034$rm -f attrib*
10035
10036: see if bcmp exists
10037set bcmp d_bcmp
10038eval $inlibc
10039
10040: see if bcopy exists
10041set bcopy d_bcopy
10042eval $inlibc
10043
10044: see if this is a unistd.h system
10045set unistd.h i_unistd
10046eval $inhdr
10047
10048: see if getpgrp exists
10049set getpgrp d_getpgrp
10050eval $inlibc
10051
10052case "$d_getpgrp" in
10053"$define")
10054 echo " "
10055 echo "Checking to see which flavor of getpgrp is in use..."
10056 $cat >try.c <<EOP
10057#$i_unistd I_UNISTD
10058#include <sys/types.h>
10059#ifdef I_UNISTD
10060# include <unistd.h>
10061#endif
10062#$i_stdlib I_STDLIB
10063#ifdef I_STDLIB
10064#include <stdlib.h>
10065#endif
10066int main()
10067{
10068 if (getuid() == 0) {
10069 printf("(I see you are running Configure as super-user...)\n");
10070 setuid(1);
10071 }
10072#ifdef TRY_BSD_PGRP
10073 if (getpgrp(1) == 0)
10074 exit(0);
10075#else
10076 if (getpgrp() > 0)
10077 exit(0);
10078#endif
10079 exit(1);
10080}
10081EOP
10082 if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
10083 echo "You have to use getpgrp(pid) instead of getpgrp()." >&4
10084 val="$define"
10085 elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
10086 echo "You have to use getpgrp() instead of getpgrp(pid)." >&4
10087 val="$undef"
10088 else
10089 echo "I can't seem to compile and run the test program."
10090 if ./usg; then
10091 xxx="a USG one, i.e. you use getpgrp()."
10092 else
10093 # SVR4 systems can appear rather BSD-ish.
10094 case "$i_unistd" in
10095 $undef)
10096 xxx="a BSD one, i.e. you use getpgrp(pid)."
10097 val="$define"
10098 ;;
10099 $define)
10100 xxx="probably a USG one, i.e. you use getpgrp()."
10101 val="$undef"
10102 ;;
10103 esac
10104 fi
10105 echo "Assuming your getpgrp is $xxx" >&4
10106 fi
10107 ;;
10108*) val="$undef";;
10109esac
10110set d_bsdgetpgrp
10111eval $setvar
10112$rm -f try try.*
10113
10114: see if setpgrp exists
10115set setpgrp d_setpgrp
10116eval $inlibc
10117
10118case "$d_setpgrp" in
10119"$define")
10120 echo " "
10121 echo "Checking to see which flavor of setpgrp is in use..."
10122 $cat >try.c <<EOP
10123#$i_unistd I_UNISTD
10124#include <sys/types.h>
10125#ifdef I_UNISTD
10126# include <unistd.h>
10127#endif
10128#$i_stdlib I_STDLIB
10129#ifdef I_STDLIB
10130#include <stdlib.h>
10131#endif
10132int main()
10133{
10134 if (getuid() == 0) {
10135 printf("(I see you are running Configure as super-user...)\n");
10136 setuid(1);
10137 }
10138#ifdef TRY_BSD_PGRP
10139 if (-1 == setpgrp(1, 1))
10140 exit(0);
10141#else
10142 if (setpgrp() != -1)
10143 exit(0);
10144#endif
10145 exit(1);
10146}
10147EOP
10148 if $cc -o try -DTRY_BSD_PGRP $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
10149 echo 'You have to use setpgrp(pid,pgrp) instead of setpgrp().' >&4
10150 val="$define"
10151 elif $cc -o try $ccflags $ldflags try.c $libs >/dev/null 2>&1 && $run ./try; then
10152 echo 'You have to use setpgrp() instead of setpgrp(pid,pgrp).' >&4
10153 val="$undef"
10154 else
10155 echo "(I can't seem to compile and run the test program.)"
10156 if ./usg; then
10157 xxx="a USG one, i.e. you use setpgrp()."
10158 else
10159 # SVR4 systems can appear rather BSD-ish.
10160 case "$i_unistd" in
10161 $undef)
10162 xxx="a BSD one, i.e. you use setpgrp(pid,pgrp)."
10163 val="$define"
10164 ;;
10165 $define)
10166 xxx="probably a USG one, i.e. you use setpgrp()."
10167 val="$undef"
10168 ;;
10169 esac
10170 fi
10171 echo "Assuming your setpgrp is $xxx" >&4
10172 fi
10173 ;;
10174*) val="$undef";;
10175esac
10176set d_bsdsetpgrp
10177eval $setvar
10178$rm -f try try.*
10179: Look for GCC-style __builtin_choose_expr
10180case "$d_builtin_choose_expr" in
10181'')
10182 echo " "
10183 echo "Checking whether your compiler can handle __builtin_choose_expr ..." >&4
10184 $cat >try.c <<'EOCP'
10185#include <assert.h>
10186#include <stdlib.h>
10187#include <stdio.h>
10188
10189#define SYRINX(x) __builtin_choose_expr( x, (1056*2), (103*50) )
10190
10191int main(void) {
10192 assert( SYRINX(1) == 2112 );
10193 assert( SYRINX(1) != 5150 );
10194 assert( SYRINX(0) == 5150 );
10195 assert( SYRINX(0) != 2112 );
10196 puts( "All good!" );
10197 exit(0);
10198}
10199
10200EOCP
10201 set try
10202 if eval $compile; then
10203 echo "Your C compiler supports __builtin_choose_expr."
10204 val="$define"
10205 else
10206 echo "Your C compiler doesn't seem to understand __builtin_choose_expr."
10207 val="$undef"
10208 fi
10209;;
10210*) val="$d_builtin_choose_expr" ;;
10211esac
10212
10213set d_builtin_choose_expr
10214eval $setvar
10215$rm -f try.* try core core.try.*
10216
10217: Look for GCC-style __builtin_expect
10218case "$d_builtin_expect" in
10219'')
10220 echo " "
10221 echo "Checking whether your compiler can handle __builtin_expect ..." >&4
10222 $cat >builtin.c <<'EOCP'
10223int main(void) {
10224 int n = 50;
10225 if ( __builtin_expect(n, 0) ) n = 1;
10226}
10227EOCP
10228 set try
10229 if eval $compile; then
10230 echo "Your C compiler supports __builtin_choose_expr."
10231 val="$define"
10232 else
10233 echo "Your C compiler doesn't seem to understand __builtin_choose_expr."
10234 val="$undef"
10235 fi
10236 ;;
10237*) val="$d_builtin_expect" ;;
10238esac
10239
10240set d_builtin_expect
10241eval $setvar
10242$rm -f try.* try core core.try.*
10243
10244: see if bzero exists
10245set bzero d_bzero
10246eval $inlibc
10247
10248: see if signal is declared as pointer to function returning int or void
10249echo " "
10250xxx=`./findhdr signal.h`
10251$test "$xxx" && $cppstdin $cppminus $cppflags < $xxx >$$.tmp 2>/dev/null
10252if $contains 'int.*\*[ ]*signal' $$.tmp >/dev/null 2>&1 ; then
10253 echo "You have int (*signal())() instead of void." >&4
10254 val="$undef"
10255elif $contains 'void.*\*[ ]*signal' $$.tmp >/dev/null 2>&1 ; then
10256 echo "You have void (*signal())()." >&4
10257 val="$define"
10258elif $contains 'extern[ ]*[(\*]*signal' $$.tmp >/dev/null 2>&1 ; then
10259 echo "You have int (*signal())() instead of void." >&4
10260 val="$undef"
10261elif $contains 'void.*\*.*sig' $$.tmp >/dev/null 2>&1 ; then
10262 echo "You have void (*signal())()." >&4
10263 val="$define"
10264else
10265 case "$d_voidsig" in
10266 '')
10267 echo "I can't determine whether signal handler returns void or int..." >&4
10268 dflt=void
10269 rp="What type does your signal handler return?"
10270 . ./myread
10271 case "$ans" in
10272 v*) val="$define";;
10273 *) val="$undef";;
10274 esac;;
10275 "$define")
10276 echo "As you already told me, signal handler returns void." >&4
10277 val="$define"
10278 ;;
10279 *) echo "As you already told me, signal handler returns int." >&4
10280 val="$undef"
10281 ;;
10282 esac
10283fi
10284set d_voidsig
10285eval $setvar
10286case "$d_voidsig" in
10287"$define") signal_t="void";;
10288*) signal_t="int";;
10289esac
10290$rm -f $$.tmp
10291
10292: check for ability to cast large floats to 32-bit ints.
10293echo " "
10294echo 'Checking whether your C compiler can cast large floats to int32.' >&4
10295if $test "$intsize" -ge 4; then
10296 xxx=int
10297else
10298 xxx=long
10299fi
10300$cat >try.c <<EOCP
10301#include <stdio.h>
10302#$i_stdlib I_STDLIB
10303#ifdef I_STDLIB
10304#include <stdlib.h>
10305#endif
10306#include <sys/types.h>
10307#include <signal.h>
10308$signal_t blech(s) int s; { exit(3); }
10309int main()
10310{
10311 $xxx i32;
10312 double f, g;
10313 int result = 0;
10314 char str[16];
10315 signal(SIGFPE, blech);
10316
10317 /* Don't let compiler optimize the test away. Store the number
10318 in a writable string for gcc to pass to sscanf under HP/UX.
10319 */
10320 sprintf(str, "2147483647");
10321 sscanf(str, "%lf", &f); /* f = (double) 0x7fffffff; */
10322 g = 10 * f;
10323 i32 = ($xxx) g;
10324
10325 /* x86 processors will probably give 0x8000 0000, which is a
10326 sign change. We don't want that. We want to mimic SPARC
10327 behavior here, which is to preserve the sign and give
10328 back 0x7fff ffff.
10329 */
10330 if (i32 != ($xxx) f)
10331 result |= 1;
10332 exit(result);
10333}
10334EOCP
10335set try
10336if eval $compile_ok; then
10337 $run ./try
10338 yyy=$?
10339else
10340 echo "(I can't seem to compile the test program--assuming it can't)"
10341 yyy=1
10342fi
10343case "$yyy" in
103440) val="$define"
10345 echo "Yup, it can."
10346 ;;
10347*) val="$undef"
10348 echo "Nope, it can't."
10349 ;;
10350esac
10351set d_casti32
10352eval $setvar
10353$rm -f try try.*
10354
10355: check for ability to cast negative floats to unsigned
10356echo " "
10357echo 'Checking whether your C compiler can cast negative float to unsigned.' >&4
10358$cat >try.c <<EOCP
10359#include <stdio.h>
10360#$i_stdlib I_STDLIB
10361#ifdef I_STDLIB
10362#include <stdlib.h>
10363#endif
10364#include <sys/types.h>
10365#include <signal.h>
10366$signal_t blech(s) int s; { exit(7); }
10367$signal_t blech_in_list(s) int s; { exit(4); }
10368unsigned long dummy_long(p) unsigned long p; { return p; }
10369unsigned int dummy_int(p) unsigned int p; { return p; }
10370unsigned short dummy_short(p) unsigned short p; { return p; }
10371int main()
10372{
10373 double f;
10374 unsigned long along;
10375 unsigned int aint;
10376 unsigned short ashort;
10377 int result = 0;
10378 char str[16];
10379
10380 /* Frustrate gcc-2.7.2's optimizer which failed this test with
10381 a direct f = -123. assignment. gcc-2.8.0 reportedly
10382 optimized the whole file away
10383 */
10384 /* Store the number in a writable string for gcc to pass to
10385 sscanf under HP/UX.
10386 */
10387 sprintf(str, "-123");
10388 sscanf(str, "%lf", &f); /* f = -123.; */
10389
10390 signal(SIGFPE, blech);
10391 along = (unsigned long)f;
10392 aint = (unsigned int)f;
10393 ashort = (unsigned short)f;
10394 if (along != (unsigned long)-123)
10395 result |= 1;
10396 if (aint != (unsigned int)-123)
10397 result |= 1;
10398 if (ashort != (unsigned short)-123)
10399 result |= 1;
10400 sprintf(str, "1073741824.");
10401 sscanf(str, "%lf", &f); /* f = (double)0x40000000; */
10402 f = f + f;
10403 along = 0;
10404 along = (unsigned long)f;
10405 if (along != 0x80000000)
10406 result |= 2;
10407 f -= 1.;
10408 along = 0;
10409 along = (unsigned long)f;
10410 if (along != 0x7fffffff)
10411 result |= 1;
10412 f += 2.;
10413 along = 0;
10414 along = (unsigned long)f;
10415 if (along != 0x80000001)
10416 result |= 2;
10417 if (result)
10418 exit(result);
10419 signal(SIGFPE, blech_in_list);
10420 sprintf(str, "123.");
10421 sscanf(str, "%lf", &f); /* f = 123.; */
10422 along = dummy_long((unsigned long)f);
10423 aint = dummy_int((unsigned int)f);
10424 ashort = dummy_short((unsigned short)f);
10425 if (along != (unsigned long)123)
10426 result |= 4;
10427 if (aint != (unsigned int)123)
10428 result |= 4;
10429 if (ashort != (unsigned short)123)
10430 result |= 4;
10431 exit(result);
10432
10433}
10434EOCP
10435set try
10436if eval $compile_ok; then
10437 $run ./try
10438 castflags=$?
10439else
10440 echo "(I can't seem to compile the test program--assuming it can't)"
10441 castflags=7
10442fi
10443case "$castflags" in
104440) val="$define"
10445 echo "Yup, it can."
10446 ;;
10447*) val="$undef"
10448 echo "Nope, it can't."
10449 ;;
10450esac
10451set d_castneg
10452eval $setvar
10453$rm -f try.*
10454
10455: see if vprintf exists
10456echo " "
10457if set vprintf val -f d_vprintf; eval $csym; $val; then
10458 echo 'vprintf() found.' >&4
10459 val="$define"
10460 $cat >try.c <<EOF
10461#include <varargs.h>
10462#$i_stdlib I_STDLIB
10463#ifdef I_STDLIB
10464#include <stdlib.h>
10465#endif
10466
10467int main() { xxx("foo"); }
10468
10469xxx(va_alist)
10470va_dcl
10471{
10472 va_list args;
10473 char buf[10];
10474
10475 va_start(args);
10476 exit((unsigned long)vsprintf(buf,"%s",args) > 10L);
10477}
10478EOF
10479 set try
10480 if eval $compile && $run ./try; then
10481 echo "Your vsprintf() returns (int)." >&4
10482 val2="$undef"
10483 else
10484 echo "Your vsprintf() returns (char*)." >&4
10485 val2="$define"
10486 fi
10487else
10488 echo 'vprintf() NOT found.' >&4
10489 val="$undef"
10490 val2="$undef"
10491fi
10492$rm -f try try.*
10493set d_vprintf
10494eval $setvar
10495val=$val2
10496set d_charvspr
10497eval $setvar
10498
10499: see if chown exists
10500set chown d_chown
10501eval $inlibc
10502
10503: see if chroot exists
10504set chroot d_chroot
10505eval $inlibc
10506
10507: see if chsize exists
10508set chsize d_chsize
10509eval $inlibc
10510
10511: see if class exists
10512set class d_class
10513eval $inlibc
10514
10515: see if clearenv exists
10516set clearenv d_clearenv
10517eval $inlibc
10518
10519hasstruct='varname=$1; struct=$2; shift; shift;
10520while $test $# -ge 2; do
10521 case "$1" in
10522 $define) echo "#include <$2>";;
10523 esac ;
10524 shift 2;
10525done > try.c;
10526echo "int main () { struct $struct foo; }" >> try.c;
10527set try;
10528if eval $compile; then
10529 val="$define";
10530else
10531 val="$undef";
10532fi;
10533set $varname;
10534eval $setvar;
10535$rm -f try.c try.o'
10536
10537socketlib=''
10538sockethdr=''
10539: see whether socket exists
10540echo " "
10541$echo $n "Hmm... $c" >&4
10542if set socket val -f d_socket; eval $csym; $val; then
10543 echo "Looks like you have Berkeley networking support." >&4
10544 d_socket="$define"
10545 if set setsockopt val -f; eval $csym; $val; then
10546 d_oldsock="$undef"
10547 else
10548 echo "...but it uses the old BSD 4.1c interface, rather than 4.2." >&4
10549 d_oldsock="$define"
10550 fi
10551else
10552 if $contains socklib libc.list >/dev/null 2>&1; then
10553 echo "Looks like you have Berkeley networking support." >&4
10554 d_socket="$define"
10555 : we will have to assume that it supports the 4.2 BSD interface
10556 d_oldsock="$undef"
10557 else
10558 echo "You don't have Berkeley networking in libc$_a..." >&4
10559 if test "X$d_socket" = "X$define"; then
10560 echo "...but you seem to believe that you have sockets." >&4
10561 else
10562 for net in net socket
10563 do
10564 if test -f /usr/lib/lib$net$_a; then
10565 ( ($nm $nm_opt /usr/lib/lib$net$_a | eval $nm_extract) || \
10566 $ar t /usr/lib/lib$net$_a) 2>/dev/null >> libc.list
10567 if $contains socket libc.list >/dev/null 2>&1; then
10568 d_socket="$define"
10569 socketlib="-l$net"
10570 case "$net" in
10571 net)
10572 echo "...but the Wollongong group seems to have hacked it in." >&4
10573 sockethdr="-I/usr/netinclude"
10574 ;;
10575 esac
10576 echo "Found Berkeley sockets interface in lib$net." >&4
10577 if $contains setsockopt libc.list >/dev/null 2>&1; then
10578 d_oldsock="$undef"
10579 else
10580 echo "...using the old BSD 4.1c interface, rather than 4.2." >&4
10581 d_oldsock="$define"
10582 fi
10583 break
10584 fi
10585 fi
10586 done
10587 if test "X$d_socket" != "X$define"; then
10588 echo "or anywhere else I see." >&4
10589 d_socket="$undef"
10590 d_oldsock="$undef"
10591 fi
10592 fi
10593 fi
10594fi
10595
10596: see if socketpair exists
10597set socketpair d_sockpair
10598eval $inlibc
10599
10600
10601echo " "
10602echo "Checking the availability of certain socket constants..." >&4
10603for ENUM in MSG_CTRUNC MSG_DONTROUTE MSG_OOB MSG_PEEK MSG_PROXY SCM_RIGHTS; do
10604 enum=`$echo $ENUM|./tr '[A-Z]' '[a-z]'`
10605 $cat >try.c <<EOF
10606#include <sys/types.h>
10607#include <sys/socket.h>
10608int main() {
10609 int i = $ENUM;
10610}
10611EOF
10612 val="$undef"
10613 set try; if eval $compile; then
10614 val="$define"
10615 fi
10616 set d_${enum}; eval $setvar
10617 $rm -f try.c try
10618done
10619
10620: see if this is a sys/uio.h system
10621set sys/uio.h i_sysuio
10622eval $inhdr
10623
10624
10625echo " "
10626echo "Checking to see if your system supports struct cmsghdr..." >&4
10627set d_cmsghdr_s cmsghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
10628eval $hasstruct
10629case "$d_cmsghdr_s" in
10630"$define") echo "Yes, it does." ;;
10631*) echo "No, it doesn't." ;;
10632esac
10633
10634
10635: check for const keyword
10636echo " "
10637echo 'Checking to see if your C compiler knows about "const"...' >&4
10638$cat >const.c <<'EOCP'
10639typedef struct spug { int drokk; } spug;
10640int main()
10641{
10642 const char *foo;
10643 const spug y;
10644}
10645EOCP
10646if $cc -c $ccflags const.c >/dev/null 2>&1 ; then
10647 val="$define"
10648 echo "Yup, it does."
10649else
10650 val="$undef"
10651 echo "Nope, it doesn't."
10652fi
10653set d_const
10654eval $setvar
10655
10656: see if copysignl exists
10657set copysignl d_copysignl
10658eval $inlibc
10659
10660: see if crypt exists
10661echo " "
10662set crypt d_crypt
10663eval $inlibc
10664case "$d_crypt" in
10665$define) cryptlib='' ;;
10666*) if set crypt val -f d_crypt; eval $csym; $val; then
10667 echo 'crypt() found.' >&4
10668 val="$define"
10669 cryptlib=''
10670 else
10671 cryptlib=`./loc Slibcrypt$_a "" $xlibpth`
10672 if $test -z "$cryptlib"; then
10673 cryptlib=`./loc Mlibcrypt$_a "" $xlibpth`
10674 else
10675 cryptlib=-lcrypt
10676 fi
10677 if $test -z "$cryptlib"; then
10678 cryptlib=`./loc Llibcrypt$_a "" $xlibpth`
10679 else
10680 cryptlib=-lcrypt
10681 fi
10682 if $test -z "$cryptlib"; then
10683 cryptlib=`./loc libcrypt$_a "" $libpth`
10684 else
10685 cryptlib=-lcrypt
10686 fi
10687 if $test -z "$cryptlib"; then
10688 echo 'crypt() NOT found.' >&4
10689 val="$undef"
10690 else
10691 val="$define"
10692 fi
10693 fi
10694 set d_crypt
10695 eval $setvar
10696 ;;
10697esac
10698
10699: see if this is a crypt.h system
10700set crypt.h i_crypt
10701eval $inhdr
10702
10703: see if crypt_r exists
10704set crypt_r d_crypt_r
10705eval $inlibc
10706case "$d_crypt_r" in
10707"$define")
10708 hdrs="$i_systypes sys/types.h define stdio.h $i_crypt crypt.h"
10709 case "$d_crypt_r_proto:$usethreads" in
10710 ":define") d_crypt_r_proto=define
10711 set d_crypt_r_proto crypt_r $hdrs
10712 eval $hasproto ;;
10713 *) ;;
10714 esac
10715 case "$d_crypt_r_proto" in
10716 define)
10717 case "$crypt_r_proto" in
10718 ''|0) try='char* crypt_r(const char*, const char*, struct crypt_data*);'
10719 ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCS ;;
10720 esac
10721 case "$crypt_r_proto" in
10722 ''|0) try='char* crypt_r(const char*, const char*, CRYPTD*);'
10723 ./protochk "extern $try" $hdrs && crypt_r_proto=B_CCD ;;
10724 esac
10725 case "$crypt_r_proto" in
10726 ''|0) d_crypt_r=undef
10727 crypt_r_proto=0
10728 echo "Disabling crypt_r, cannot determine prototype." >&4 ;;
10729 * ) case "$crypt_r_proto" in
10730 REENTRANT_PROTO*) ;;
10731 *) crypt_r_proto="REENTRANT_PROTO_$crypt_r_proto" ;;
10732 esac
10733 echo "Prototype: $try" ;;
10734 esac
10735 ;;
10736 *) case "$usethreads" in
10737 define) echo "crypt_r has no prototype, not using it." >&4 ;;
10738 esac
10739 d_crypt_r=undef
10740 crypt_r_proto=0
10741 ;;
10742 esac
10743 ;;
10744*) crypt_r_proto=0
10745 ;;
10746esac
10747
10748: get csh whereabouts
10749case "$csh" in
10750'csh') val="$undef" ;;
10751*) val="$define" ;;
10752esac
10753set d_csh
10754eval $setvar
10755: Respect a hint or command line value for full_csh.
10756case "$full_csh" in
10757'') full_csh=$csh ;;
10758esac
10759
10760: see if ctermid_r exists
10761set ctermid_r d_ctermid_r
10762eval $inlibc
10763case "$d_ctermid_r" in
10764"$define")
10765 hdrs="$i_systypes sys/types.h define stdio.h "
10766 case "$d_ctermid_r_proto:$usethreads" in
10767 ":define") d_ctermid_r_proto=define
10768 set d_ctermid_r_proto ctermid_r $hdrs
10769 eval $hasproto ;;
10770 *) ;;
10771 esac
10772 case "$d_ctermid_r_proto" in
10773 define)
10774 case "$ctermid_r_proto" in
10775 ''|0) try='char* ctermid_r(char*);'
10776 ./protochk "extern $try" $hdrs && ctermid_r_proto=B_B ;;
10777 esac
10778 case "$ctermid_r_proto" in
10779 ''|0) d_ctermid_r=undef
10780 ctermid_r_proto=0
10781 echo "Disabling ctermid_r, cannot determine prototype." >&4 ;;
10782 * ) case "$ctermid_r_proto" in
10783 REENTRANT_PROTO*) ;;
10784 *) ctermid_r_proto="REENTRANT_PROTO_$ctermid_r_proto" ;;
10785 esac
10786 echo "Prototype: $try" ;;
10787 esac
10788 ;;
10789 *) case "$usethreads" in
10790 define) echo "ctermid_r has no prototype, not using it." >&4 ;;
10791 esac
10792 d_ctermid_r=undef
10793 ctermid_r_proto=0
10794 ;;
10795 esac
10796 ;;
10797*) ctermid_r_proto=0
10798 ;;
10799esac
10800
10801: see if ctime_r exists
10802set ctime_r d_ctime_r
10803eval $inlibc
10804case "$d_ctime_r" in
10805"$define")
10806 hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
10807 case "$d_ctime_r_proto:$usethreads" in
10808 ":define") d_ctime_r_proto=define
10809 set d_ctime_r_proto ctime_r $hdrs
10810 eval $hasproto ;;
10811 *) ;;
10812 esac
10813 case "$d_ctime_r_proto" in
10814 define)
10815 case "$ctime_r_proto" in
10816 ''|0) try='char* ctime_r(const time_t*, char*);'
10817 ./protochk "extern $try" $hdrs && ctime_r_proto=B_SB ;;
10818 esac
10819 case "$ctime_r_proto" in
10820 ''|0) try='char* ctime_r(const time_t*, char*, int);'
10821 ./protochk "extern $try" $hdrs && ctime_r_proto=B_SBI ;;
10822 esac
10823 case "$ctime_r_proto" in
10824 ''|0) try='int ctime_r(const time_t*, char*);'
10825 ./protochk "extern $try" $hdrs && ctime_r_proto=I_SB ;;
10826 esac
10827 case "$ctime_r_proto" in
10828 ''|0) try='int ctime_r(const time_t*, char*, int);'
10829 ./protochk "extern $try" $hdrs && ctime_r_proto=I_SBI ;;
10830 esac
10831 case "$ctime_r_proto" in
10832 ''|0) d_ctime_r=undef
10833 ctime_r_proto=0
10834 echo "Disabling ctime_r, cannot determine prototype." >&4 ;;
10835 * ) case "$ctime_r_proto" in
10836 REENTRANT_PROTO*) ;;
10837 *) ctime_r_proto="REENTRANT_PROTO_$ctime_r_proto" ;;
10838 esac
10839 echo "Prototype: $try" ;;
10840 esac
10841 ;;
10842 *) case "$usethreads" in
10843 define) echo "ctime_r has no prototype, not using it." >&4 ;;
10844 esac
10845 d_ctime_r=undef
10846 ctime_r_proto=0
10847 ;;
10848 esac
10849 ;;
10850*) ctime_r_proto=0
10851 ;;
10852esac
10853
10854: see if cuserid exists
10855set cuserid d_cuserid
10856eval $inlibc
10857
10858: see if this is a limits.h system
10859set limits.h i_limits
10860eval $inhdr
10861
10862: see if this is a float.h system
10863set float.h i_float
10864eval $inhdr
10865
10866: See if number of significant digits in a double precision number is known
10867echo " "
10868$cat >dbl_dig.c <<EOM
10869#$i_limits I_LIMITS
10870#$i_float I_FLOAT
10871#ifdef I_LIMITS
10872#include <limits.h>
10873#endif
10874#ifdef I_FLOAT
10875#include <float.h>
10876#endif
10877#ifdef DBL_DIG
10878printf("Contains DBL_DIG");
10879#endif
10880EOM
10881$cppstdin $cppflags $cppminus < dbl_dig.c >dbl_dig.E 2>/dev/null
10882if $contains 'DBL_DIG' dbl_dig.E >/dev/null 2>&1; then
10883 echo "DBL_DIG found." >&4
10884 val="$define"
10885else
10886 echo "DBL_DIG NOT found." >&4
10887 val="$undef"
10888fi
10889$rm -f dbl_dig.?
10890set d_dbl_dig
10891eval $setvar
10892
10893: see if dbm.h is available
10894: see if dbmclose exists
10895set dbmclose d_dbmclose
10896eval $inlibc
10897
10898case "$d_dbmclose" in
10899$define)
10900 set dbm.h i_dbm
10901 eval $inhdr
10902 case "$i_dbm" in
10903 $define)
10904 val="$undef"
10905 set i_rpcsvcdbm
10906 eval $setvar
10907 ;;
10908 *) set rpcsvc/dbm.h i_rpcsvcdbm
10909 eval $inhdr
10910 ;;
10911 esac
10912 ;;
10913*) echo "We won't be including <dbm.h>"
10914 val="$undef"
10915 set i_dbm
10916 eval $setvar
10917 val="$undef"
10918 set i_rpcsvcdbm
10919 eval $setvar
10920 ;;
10921esac
10922
10923: see if prototype for dbminit is available
10924echo " "
10925set d_dbminitproto dbminit $i_dbm dbm.h
10926eval $hasproto
10927
10928: see if difftime exists
10929set difftime d_difftime
10930eval $inlibc
10931
10932: see if this is a dirent system
10933echo " "
10934if xinc=`./findhdr dirent.h`; $test "$xinc"; then
10935 val="$define"
10936 echo "<dirent.h> found." >&4
10937else
10938 val="$undef"
10939 if xinc=`./findhdr sys/dir.h`; $test "$xinc"; then
10940 echo "<sys/dir.h> found." >&4
10941 echo " "
10942 else
10943 xinc=`./findhdr sys/ndir.h`
10944 fi
10945 echo "<dirent.h> NOT found." >&4
10946fi
10947set i_dirent
10948eval $setvar
10949
10950: Look for type of directory structure.
10951echo " "
10952$cppstdin $cppflags $cppminus < "$xinc" > try.c
10953
10954case "$direntrytype" in
10955''|' ')
10956 case "$i_dirent" in
10957 $define) guess1='struct dirent' ;;
10958 *) guess1='struct direct' ;;
10959 esac
10960 ;;
10961*) guess1="$direntrytype"
10962 ;;
10963esac
10964
10965case "$guess1" in
10966'struct dirent') guess2='struct direct' ;;
10967*) guess2='struct dirent' ;;
10968esac
10969
10970if $contains "$guess1" try.c >/dev/null 2>&1; then
10971 direntrytype="$guess1"
10972 echo "Your directory entries are $direntrytype." >&4
10973elif $contains "$guess2" try.c >/dev/null 2>&1; then
10974 direntrytype="$guess2"
10975 echo "Your directory entries seem to be $direntrytype." >&4
10976else
10977 echo "I don't recognize your system's directory entries." >&4
10978 rp="What type is used for directory entries on this system?"
10979 dflt="$guess1"
10980 . ./myread
10981 direntrytype="$ans"
10982fi
10983$rm -f try.c
10984
10985
10986: see if the directory entry stores field length
10987echo " "
10988$cppstdin $cppflags $cppminus < "$xinc" > try.c
10989if $contains 'd_namlen' try.c >/dev/null 2>&1; then
10990 echo "Good, your directory entry keeps length information in d_namlen." >&4
10991 val="$define"
10992else
10993 echo "Your directory entry does not know about the d_namlen field." >&4
10994 val="$undef"
10995fi
10996set d_dirnamlen
10997eval $setvar
10998$rm -f try.c
10999
11000: see if this is an sysdir system
11001set sys/dir.h i_sysdir
11002eval $inhdr
11003
11004: see if this is an sysndir system
11005set sys/ndir.h i_sysndir
11006eval $inhdr
11007
11008: Look for dirfd
11009echo " "
11010$cat >dirfd.c <<EOM
11011#include <stdio.h>
11012#$i_stdlib I_STDLIB
11013#ifdef I_STDLIB
11014#include <stdlib.h>
11015#endif
11016#$i_dirent I_DIRENT /**/
11017#$i_sysdir I_SYS_DIR /**/
11018#$i_sysndir I_SYS_NDIR /**/
11019#$i_systypes I_SYS_TYPES /**/
11020#if defined(I_SYS_TYPES)
11021#include <sys/types.h>
11022#endif
11023#if defined(I_DIRENT)
11024#include <dirent.h>
11025#if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
11026#include <sys/dir.h>
11027#endif
11028#else
11029#ifdef I_SYS_NDIR
11030#include <sys/ndir.h>
11031#else
11032#ifdef I_SYS_DIR
11033#ifdef hp9000s500
11034#include <ndir.h> /* may be wrong in the future */
11035#else
11036#include <sys/dir.h>
11037#endif
11038#endif
11039#endif
11040#endif
11041int main() {
11042 DIR *dirp = opendir(".");
11043 if (dirfd(dirp) >= 0)
11044 exit(0);
11045 else
11046 exit(1);
11047}
11048EOM
11049val=$undef
11050set dirfd
11051if eval $compile; then
11052 val="$define"
11053fi
11054case "$val" in
11055$define) echo "dirfd() found." >&4 ;;
11056*) echo "dirfd() NOT found." >&4 ;;
11057esac
11058set d_dirfd
11059eval $setvar
11060$rm -f dirfd*
11061
11062: see if dlerror exists
11063xxx_runnm="$runnm"
11064runnm=false
11065set dlerror d_dlerror
11066eval $inlibc
11067runnm="$xxx_runnm"
11068
11069: see if dlfcn is available
11070set dlfcn.h i_dlfcn
11071eval $inhdr
11072
11073case "$usedl" in
11074$define|y|true)
11075 $cat << EOM
11076
11077On a few systems, the dynamically loaded modules that perl generates and uses
11078will need a different extension than shared libs. The default will probably
11079be appropriate.
11080
11081EOM
11082 case "$dlext" in
11083 '') dflt="$so" ;;
11084 *) dflt="$dlext" ;;
11085 esac
11086 rp='What is the extension of dynamically loaded modules'
11087 . ./myread
11088 dlext="$ans"
11089 ;;
11090*)
11091 dlext="none"
11092 ;;
11093esac
11094
11095: Check if dlsym need a leading underscore
11096echo " "
11097val="$undef"
11098
11099case "$dlsrc" in
11100dl_dlopen.xs)
11101 echo "Checking whether your dlsym() needs a leading underscore ..." >&4
11102 $cat >dyna.c <<'EOM'
11103fred () { }
11104EOM
11105
11106$cat >fred.c<<EOM
11107
11108#include <stdio.h>
11109#$i_stdlib I_STDLIB
11110#ifdef I_STDLIB
11111#include <stdlib.h>
11112#endif
11113#$i_dlfcn I_DLFCN
11114#ifdef I_DLFCN
11115#include <dlfcn.h> /* the dynamic linker include file for SunOS/Solaris */
11116#else
11117#include <sys/types.h>
11118#include <nlist.h>
11119#include <link.h>
11120#endif
11121
11122extern int fred() ;
11123
11124int main()
11125{
11126 void * handle ;
11127 void * symbol ;
11128#ifndef RTLD_LAZY
11129 int mode = 1 ;
11130#else
11131 int mode = RTLD_LAZY ;
11132#endif
11133 handle = dlopen("./dyna.$dlext", mode) ;
11134 if (handle == NULL) {
11135 printf ("1\n") ;
11136 fflush (stdout) ;
11137 exit(0);
11138 }
11139 symbol = dlsym(handle, "fred") ;
11140 if (symbol == NULL) {
11141 /* try putting a leading underscore */
11142 symbol = dlsym(handle, "_fred") ;
11143 if (symbol == NULL) {
11144 printf ("2\n") ;
11145 fflush (stdout) ;
11146 exit(0);
11147 }
11148 printf ("3\n") ;
11149 }
11150 else
11151 printf ("4\n") ;
11152 fflush (stdout) ;
11153 exit(0);
11154}
11155EOM
11156 : Call the object file tmp-dyna.o in case dlext=o.
11157 if $cc $ccflags $cccdlflags -c dyna.c > /dev/null 2>&1 &&
11158 mv dyna${_o} tmp-dyna${_o} > /dev/null 2>&1 &&
11159 $ld -o dyna.$dlext $ldflags $lddlflags tmp-dyna${_o} > /dev/null 2>&1 &&
11160 $cc -o fred $ccflags $ldflags $cccdlflags $ccdlflags fred.c $libs > /dev/null 2>&1 && $to dyna.$dlext; then
11161 xxx=`$run ./fred`
11162 case $xxx in
11163 1) echo "Test program failed using dlopen." >&4
11164 echo "Perhaps you should not use dynamic loading." >&4;;
11165 2) echo "Test program failed using dlsym." >&4
11166 echo "Perhaps you should not use dynamic loading." >&4;;
11167 3) echo "dlsym needs a leading underscore" >&4
11168 val="$define" ;;
11169 4) echo "dlsym doesn't need a leading underscore." >&4;;
11170 esac
11171 else
11172 echo "I can't compile and run the test program." >&4
11173 echo "I'm guessing that dlsym doesn't need a leading underscore." >&4
11174 fi
11175 ;;
11176esac
11177
11178$rm -f fred fred.* dyna.$dlext dyna.* tmp-dyna.*
11179
11180set d_dlsymun
11181eval $setvar
11182
11183: see if drand48_r exists
11184set drand48_r d_drand48_r
11185eval $inlibc
11186case "$d_drand48_r" in
11187"$define")
11188 hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
11189 case "$d_drand48_r_proto:$usethreads" in
11190 ":define") d_drand48_r_proto=define
11191 set d_drand48_r_proto drand48_r $hdrs
11192 eval $hasproto ;;
11193 *) ;;
11194 esac
11195 case "$d_drand48_r_proto" in
11196 define)
11197 case "$drand48_r_proto" in
11198 ''|0) try='int drand48_r(struct drand48_data*, double*);'
11199 ./protochk "extern $try" $hdrs && drand48_r_proto=I_ST ;;
11200 esac
11201 case "$drand48_r_proto" in
11202 ''|0) d_drand48_r=undef
11203 drand48_r_proto=0
11204 echo "Disabling drand48_r, cannot determine prototype." >&4 ;;
11205 * ) case "$drand48_r_proto" in
11206 REENTRANT_PROTO*) ;;
11207 *) drand48_r_proto="REENTRANT_PROTO_$drand48_r_proto" ;;
11208 esac
11209 echo "Prototype: $try" ;;
11210 esac
11211 ;;
11212 *) case "$usethreads" in
11213 define) echo "drand48_r has no prototype, not using it." >&4 ;;
11214 esac
11215 d_drand48_r=undef
11216 drand48_r_proto=0
11217 ;;
11218 esac
11219 ;;
11220*) drand48_r_proto=0
11221 ;;
11222esac
11223
11224: see if prototype for drand48 is available
11225echo " "
11226set d_drand48proto drand48 $i_stdlib stdlib.h $i_unistd unistd.h
11227eval $hasproto
11228
11229: see if dup2 exists
11230set dup2 d_dup2
11231eval $inlibc
11232
11233: see if eaccess exists
11234set eaccess d_eaccess
11235eval $inlibc
11236
11237: see if endgrent exists
11238set endgrent d_endgrent
11239eval $inlibc
11240
11241: see if this is an grp system
11242set grp.h i_grp
11243eval $inhdr
11244
11245case "$i_grp" in
11246$define)
11247 xxx=`./findhdr grp.h`
11248 $cppstdin $cppflags $cppminus < $xxx >$$.h
11249
11250 if $contains 'gr_passwd' $$.h >/dev/null 2>&1; then
11251 val="$define"
11252 else
11253 val="$undef"
11254 fi
11255 set d_grpasswd
11256 eval $setvar
11257
11258 $rm -f $$.h
11259 ;;
11260*)
11261 val="$undef";
11262 set d_grpasswd; eval $setvar
11263 ;;
11264esac
11265
11266: see if endgrent_r exists
11267set endgrent_r d_endgrent_r
11268eval $inlibc
11269case "$d_endgrent_r" in
11270"$define")
11271 hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
11272 case "$d_endgrent_r_proto:$usethreads" in
11273 ":define") d_endgrent_r_proto=define
11274 set d_endgrent_r_proto endgrent_r $hdrs
11275 eval $hasproto ;;
11276 *) ;;
11277 esac
11278 case "$d_endgrent_r_proto" in
11279 define)
11280 case "$endgrent_r_proto" in
11281 ''|0) try='int endgrent_r(FILE**);'
11282 ./protochk "extern $try" $hdrs && endgrent_r_proto=I_H ;;
11283 esac
11284 case "$endgrent_r_proto" in
11285 ''|0) try='void endgrent_r(FILE**);'
11286 ./protochk "extern $try" $hdrs && endgrent_r_proto=V_H ;;
11287 esac
11288 case "$endgrent_r_proto" in
11289 ''|0) d_endgrent_r=undef
11290 endgrent_r_proto=0
11291 echo "Disabling endgrent_r, cannot determine prototype." >&4 ;;
11292 * ) case "$endgrent_r_proto" in
11293 REENTRANT_PROTO*) ;;
11294 *) endgrent_r_proto="REENTRANT_PROTO_$endgrent_r_proto" ;;
11295 esac
11296 echo "Prototype: $try" ;;
11297 esac
11298 ;;
11299 *) case "$usethreads" in
11300 define) echo "endgrent_r has no prototype, not using it." >&4 ;;
11301 esac
11302 d_endgrent_r=undef
11303 endgrent_r_proto=0
11304 ;;
11305 esac
11306 ;;
11307*) endgrent_r_proto=0
11308 ;;
11309esac
11310
11311: see if endhostent exists
11312set endhostent d_endhent
11313eval $inlibc
11314
11315: see if this is a netdb.h system
11316set netdb.h i_netdb
11317eval $inhdr
11318
11319: see if endhostent_r exists
11320set endhostent_r d_endhostent_r
11321eval $inlibc
11322case "$d_endhostent_r" in
11323"$define")
11324 hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11325 case "$d_endhostent_r_proto:$usethreads" in
11326 ":define") d_endhostent_r_proto=define
11327 set d_endhostent_r_proto endhostent_r $hdrs
11328 eval $hasproto ;;
11329 *) ;;
11330 esac
11331 case "$d_endhostent_r_proto" in
11332 define)
11333 case "$endhostent_r_proto" in
11334 ''|0) try='int endhostent_r(struct hostent_data*);'
11335 ./protochk "extern $try" $hdrs && endhostent_r_proto=I_D ;;
11336 esac
11337 case "$endhostent_r_proto" in
11338 ''|0) try='void endhostent_r(struct hostent_data*);'
11339 ./protochk "extern $try" $hdrs && endhostent_r_proto=V_D ;;
11340 esac
11341 case "$endhostent_r_proto" in
11342 ''|0) d_endhostent_r=undef
11343 endhostent_r_proto=0
11344 echo "Disabling endhostent_r, cannot determine prototype." >&4 ;;
11345 * ) case "$endhostent_r_proto" in
11346 REENTRANT_PROTO*) ;;
11347 *) endhostent_r_proto="REENTRANT_PROTO_$endhostent_r_proto" ;;
11348 esac
11349 echo "Prototype: $try" ;;
11350 esac
11351 ;;
11352 *) case "$usethreads" in
11353 define) echo "endhostent_r has no prototype, not using it." >&4 ;;
11354 esac
11355 d_endhostent_r=undef
11356 endhostent_r_proto=0
11357 ;;
11358 esac
11359 ;;
11360*) endhostent_r_proto=0
11361 ;;
11362esac
11363
11364: see if endnetent exists
11365set endnetent d_endnent
11366eval $inlibc
11367
11368: see if endnetent_r exists
11369set endnetent_r d_endnetent_r
11370eval $inlibc
11371case "$d_endnetent_r" in
11372"$define")
11373 hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11374 case "$d_endnetent_r_proto:$usethreads" in
11375 ":define") d_endnetent_r_proto=define
11376 set d_endnetent_r_proto endnetent_r $hdrs
11377 eval $hasproto ;;
11378 *) ;;
11379 esac
11380 case "$d_endnetent_r_proto" in
11381 define)
11382 case "$endnetent_r_proto" in
11383 ''|0) try='int endnetent_r(struct netent_data*);'
11384 ./protochk "extern $try" $hdrs && endnetent_r_proto=I_D ;;
11385 esac
11386 case "$endnetent_r_proto" in
11387 ''|0) try='void endnetent_r(struct netent_data*);'
11388 ./protochk "extern $try" $hdrs && endnetent_r_proto=V_D ;;
11389 esac
11390 case "$endnetent_r_proto" in
11391 ''|0) d_endnetent_r=undef
11392 endnetent_r_proto=0
11393 echo "Disabling endnetent_r, cannot determine prototype." >&4 ;;
11394 * ) case "$endnetent_r_proto" in
11395 REENTRANT_PROTO*) ;;
11396 *) endnetent_r_proto="REENTRANT_PROTO_$endnetent_r_proto" ;;
11397 esac
11398 echo "Prototype: $try" ;;
11399 esac
11400 ;;
11401 *) case "$usethreads" in
11402 define) echo "endnetent_r has no prototype, not using it." >&4 ;;
11403 esac
11404 d_endnetent_r=undef
11405 endnetent_r_proto=0
11406 ;;
11407 esac
11408 ;;
11409*) endnetent_r_proto=0
11410 ;;
11411esac
11412
11413: see if endprotoent exists
11414set endprotoent d_endpent
11415eval $inlibc
11416
11417: see if endprotoent_r exists
11418set endprotoent_r d_endprotoent_r
11419eval $inlibc
11420case "$d_endprotoent_r" in
11421"$define")
11422 hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11423 case "$d_endprotoent_r_proto:$usethreads" in
11424 ":define") d_endprotoent_r_proto=define
11425 set d_endprotoent_r_proto endprotoent_r $hdrs
11426 eval $hasproto ;;
11427 *) ;;
11428 esac
11429 case "$d_endprotoent_r_proto" in
11430 define)
11431 case "$endprotoent_r_proto" in
11432 ''|0) try='int endprotoent_r(struct protoent_data*);'
11433 ./protochk "extern $try" $hdrs && endprotoent_r_proto=I_D ;;
11434 esac
11435 case "$endprotoent_r_proto" in
11436 ''|0) try='void endprotoent_r(struct protoent_data*);'
11437 ./protochk "extern $try" $hdrs && endprotoent_r_proto=V_D ;;
11438 esac
11439 case "$endprotoent_r_proto" in
11440 ''|0) d_endprotoent_r=undef
11441 endprotoent_r_proto=0
11442 echo "Disabling endprotoent_r, cannot determine prototype." >&4 ;;
11443 * ) case "$endprotoent_r_proto" in
11444 REENTRANT_PROTO*) ;;
11445 *) endprotoent_r_proto="REENTRANT_PROTO_$endprotoent_r_proto" ;;
11446 esac
11447 echo "Prototype: $try" ;;
11448 esac
11449 ;;
11450 *) case "$usethreads" in
11451 define) echo "endprotoent_r has no prototype, not using it." >&4 ;;
11452 esac
11453 d_endprotoent_r=undef
11454 endprotoent_r_proto=0
11455 ;;
11456 esac
11457 ;;
11458*) endprotoent_r_proto=0
11459 ;;
11460esac
11461
11462: see if endpwent exists
11463set endpwent d_endpwent
11464eval $inlibc
11465
11466: see if this is a pwd.h system
11467set pwd.h i_pwd
11468eval $inhdr
11469
11470case "$i_pwd" in
11471$define)
11472 xxx=`./findhdr pwd.h`
11473 $cppstdin $cppflags $cppminus < $xxx >$$.h
11474
11475 if $contains 'pw_quota' $$.h >/dev/null 2>&1; then
11476 val="$define"
11477 else
11478 val="$undef"
11479 fi
11480 set d_pwquota
11481 eval $setvar
11482
11483 if $contains 'pw_age' $$.h >/dev/null 2>&1; then
11484 val="$define"
11485 else
11486 val="$undef"
11487 fi
11488 set d_pwage
11489 eval $setvar
11490
11491 if $contains 'pw_change' $$.h >/dev/null 2>&1; then
11492 val="$define"
11493 else
11494 val="$undef"
11495 fi
11496 set d_pwchange
11497 eval $setvar
11498
11499 if $contains 'pw_class' $$.h >/dev/null 2>&1; then
11500 val="$define"
11501 else
11502 val="$undef"
11503 fi
11504 set d_pwclass
11505 eval $setvar
11506
11507 if $contains 'pw_expire' $$.h >/dev/null 2>&1; then
11508 val="$define"
11509 else
11510 val="$undef"
11511 fi
11512 set d_pwexpire
11513 eval $setvar
11514
11515 if $contains 'pw_comment' $$.h >/dev/null 2>&1; then
11516 val="$define"
11517 else
11518 val="$undef"
11519 fi
11520 set d_pwcomment
11521 eval $setvar
11522
11523 if $contains 'pw_gecos' $$.h >/dev/null 2>&1; then
11524 val="$define"
11525 else
11526 val="$undef"
11527 fi
11528 set d_pwgecos
11529 eval $setvar
11530
11531 if $contains 'pw_passwd' $$.h >/dev/null 2>&1; then
11532 val="$define"
11533 else
11534 val="$undef"
11535 fi
11536 set d_pwpasswd
11537 eval $setvar
11538
11539 $rm -f $$.h
11540 ;;
11541*)
11542 val="$undef";
11543 set d_pwquota; eval $setvar
11544 set d_pwage; eval $setvar
11545 set d_pwchange; eval $setvar
11546 set d_pwclass; eval $setvar
11547 set d_pwexpire; eval $setvar
11548 set d_pwcomment; eval $setvar
11549 set d_pwgecos; eval $setvar
11550 set d_pwpasswd; eval $setvar
11551 ;;
11552esac
11553
11554: see if endpwent_r exists
11555set endpwent_r d_endpwent_r
11556eval $inlibc
11557case "$d_endpwent_r" in
11558"$define")
11559 hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
11560 case "$d_endpwent_r_proto:$usethreads" in
11561 ":define") d_endpwent_r_proto=define
11562 set d_endpwent_r_proto endpwent_r $hdrs
11563 eval $hasproto ;;
11564 *) ;;
11565 esac
11566 case "$d_endpwent_r_proto" in
11567 define)
11568 case "$endpwent_r_proto" in
11569 ''|0) try='int endpwent_r(FILE**);'
11570 ./protochk "extern $try" $hdrs && endpwent_r_proto=I_H ;;
11571 esac
11572 case "$endpwent_r_proto" in
11573 ''|0) try='void endpwent_r(FILE**);'
11574 ./protochk "extern $try" $hdrs && endpwent_r_proto=V_H ;;
11575 esac
11576 case "$endpwent_r_proto" in
11577 ''|0) d_endpwent_r=undef
11578 endpwent_r_proto=0
11579 echo "Disabling endpwent_r, cannot determine prototype." >&4 ;;
11580 * ) case "$endpwent_r_proto" in
11581 REENTRANT_PROTO*) ;;
11582 *) endpwent_r_proto="REENTRANT_PROTO_$endpwent_r_proto" ;;
11583 esac
11584 echo "Prototype: $try" ;;
11585 esac
11586 ;;
11587 *) case "$usethreads" in
11588 define) echo "endpwent_r has no prototype, not using it." >&4 ;;
11589 esac
11590 d_endpwent_r=undef
11591 endpwent_r_proto=0
11592 ;;
11593 esac
11594 ;;
11595*) endpwent_r_proto=0
11596 ;;
11597esac
11598
11599: see if endservent exists
11600set endservent d_endsent
11601eval $inlibc
11602
11603: see if endservent_r exists
11604set endservent_r d_endservent_r
11605eval $inlibc
11606case "$d_endservent_r" in
11607"$define")
11608 hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
11609 case "$d_endservent_r_proto:$usethreads" in
11610 ":define") d_endservent_r_proto=define
11611 set d_endservent_r_proto endservent_r $hdrs
11612 eval $hasproto ;;
11613 *) ;;
11614 esac
11615 case "$d_endservent_r_proto" in
11616 define)
11617 case "$endservent_r_proto" in
11618 ''|0) try='int endservent_r(struct servent_data*);'
11619 ./protochk "extern $try" $hdrs && endservent_r_proto=I_D ;;
11620 esac
11621 case "$endservent_r_proto" in
11622 ''|0) try='void endservent_r(struct servent_data*);'
11623 ./protochk "extern $try" $hdrs && endservent_r_proto=V_D ;;
11624 esac
11625 case "$endservent_r_proto" in
11626 ''|0) d_endservent_r=undef
11627 endservent_r_proto=0
11628 echo "Disabling endservent_r, cannot determine prototype." >&4 ;;
11629 * ) case "$endservent_r_proto" in
11630 REENTRANT_PROTO*) ;;
11631 *) endservent_r_proto="REENTRANT_PROTO_$endservent_r_proto" ;;
11632 esac
11633 echo "Prototype: $try" ;;
11634 esac
11635 ;;
11636 *) case "$usethreads" in
11637 define) echo "endservent_r has no prototype, not using it." >&4 ;;
11638 esac
11639 d_endservent_r=undef
11640 endservent_r_proto=0
11641 ;;
11642 esac
11643 ;;
11644*) endservent_r_proto=0
11645 ;;
11646esac
11647
11648: Locate the flags for 'open()'
11649echo " "
11650$cat >try.c <<EOCP
11651#include <sys/types.h>
11652#ifdef I_FCNTL
11653#include <fcntl.h>
11654#endif
11655#ifdef I_SYS_FILE
11656#include <sys/file.h>
11657#endif
11658#$i_stdlib I_STDLIB
11659#ifdef I_STDLIB
11660#include <stdlib.h>
11661#endif
11662int main() {
11663 if(O_RDONLY);
11664#ifdef O_TRUNC
11665 exit(0);
11666#else
11667 exit(1);
11668#endif
11669}
11670EOCP
11671: check sys/file.h first to get FREAD on Sun
11672if $test `./findhdr sys/file.h` && \
11673 set try -DI_SYS_FILE && eval $compile; then
11674 h_sysfile=true;
11675 echo "<sys/file.h> defines the O_* constants..." >&4
11676 if $run ./try; then
11677 echo "and you have the 3 argument form of open()." >&4
11678 val="$define"
11679 else
11680 echo "but not the 3 argument form of open(). Oh, well." >&4
11681 val="$undef"
11682 fi
11683elif $test `./findhdr fcntl.h` && \
11684 set try -DI_FCNTL && eval $compile; then
11685 h_fcntl=true;
11686 echo "<fcntl.h> defines the O_* constants..." >&4
11687 if $run ./try; then
11688 echo "and you have the 3 argument form of open()." >&4
11689 val="$define"
11690 else
11691 echo "but not the 3 argument form of open(). Oh, well." >&4
11692 val="$undef"
11693 fi
11694else
11695 val="$undef"
11696 echo "I can't find the O_* constant definitions! You got problems." >&4
11697fi
11698set d_open3
11699eval $setvar
11700$rm -f try try.*
11701
11702: see which of string.h or strings.h is needed
11703echo " "
11704strings=`./findhdr string.h`
11705if $test "$strings" && $test -r "$strings"; then
11706 echo "Using <string.h> instead of <strings.h>." >&4
11707 val="$define"
11708else
11709 val="$undef"
11710 strings=`./findhdr strings.h`
11711 if $test "$strings" && $test -r "$strings"; then
11712 echo "Using <strings.h> instead of <string.h>." >&4
11713 else
11714 echo "No string header found -- You'll surely have problems." >&4
11715 fi
11716fi
11717set i_string
11718eval $setvar
11719case "$i_string" in
11720"$undef") strings=`./findhdr strings.h`;;
11721*) strings=`./findhdr string.h`;;
11722esac
11723
11724: see if this is a sys/file.h system
11725val=''
11726set sys/file.h val
11727eval $inhdr
11728
11729: do we need to include sys/file.h ?
11730case "$val" in
11731"$define")
11732 echo " "
11733 if $h_sysfile; then
11734 val="$define"
11735 echo "We'll be including <sys/file.h>." >&4
11736 else
11737 val="$undef"
11738 echo "We won't be including <sys/file.h>." >&4
11739 fi
11740 ;;
11741*)
11742 h_sysfile=false
11743 ;;
11744esac
11745set i_sysfile
11746eval $setvar
11747
11748: see if fcntl.h is there
11749val=''
11750set fcntl.h val
11751eval $inhdr
11752
11753: see if we can include fcntl.h
11754case "$val" in
11755"$define")
11756 echo " "
11757 if $h_fcntl; then
11758 val="$define"
11759 echo "We'll be including <fcntl.h>." >&4
11760 else
11761 val="$undef"
11762 if $h_sysfile; then
11763 echo "We don't need to include <fcntl.h> if we include <sys/file.h>." >&4
11764 else
11765 echo "We won't be including <fcntl.h>." >&4
11766 fi
11767 fi
11768 ;;
11769*)
11770 h_fcntl=false
11771 val="$undef"
11772 ;;
11773esac
11774set i_fcntl
11775eval $setvar
11776
11777: check for non-blocking I/O stuff
11778case "$h_sysfile" in
11779true) echo "#include <sys/file.h>" > head.c;;
11780*)
11781 case "$h_fcntl" in
11782 true) echo "#include <fcntl.h>" > head.c;;
11783 *) echo "#include <sys/fcntl.h>" > head.c;;
11784 esac
11785 ;;
11786esac
11787echo " "
11788echo "Figuring out the flag used by open() for non-blocking I/O..." >&4
11789case "$o_nonblock" in
11790'')
11791 $cat head.c > try.c
11792 $cat >>try.c <<EOCP
11793#include <stdio.h>
11794#$i_stdlib I_STDLIB
11795#ifdef I_STDLIB
11796#include <stdlib.h>
11797#endif
11798#$i_fcntl I_FCNTL
11799#ifdef I_FCNTL
11800#include <fcntl.h>
11801#endif
11802int main() {
11803#ifdef O_NONBLOCK
11804 printf("O_NONBLOCK\n");
11805 exit(0);
11806#endif
11807#ifdef O_NDELAY
11808 printf("O_NDELAY\n");
11809 exit(0);
11810#endif
11811#ifdef FNDELAY
11812 printf("FNDELAY\n");
11813 exit(0);
11814#endif
11815 exit(0);
11816}
11817EOCP
11818 set try
11819 if eval $compile_ok; then
11820 o_nonblock=`$run ./try`
11821 case "$o_nonblock" in
11822 '') echo "I can't figure it out, assuming O_NONBLOCK will do.";;
11823 *) echo "Seems like we can use $o_nonblock.";;
11824 esac
11825 else
11826 echo "(I can't compile the test program; pray O_NONBLOCK is right!)"
11827 fi
11828 ;;
11829*) echo "Using $hint value $o_nonblock.";;
11830esac
11831$rm -f try try.* .out core
11832
11833echo " "
11834echo "Let's see what value errno gets from read() on a $o_nonblock file..." >&4
11835case "$eagain" in
11836'')
11837 $cat head.c > try.c
11838 $cat >>try.c <<EOCP
11839#include <errno.h>
11840#include <sys/types.h>
11841#include <signal.h>
11842#include <stdio.h>
11843#$i_stdlib I_STDLIB
11844#ifdef I_STDLIB
11845#include <stdlib.h>
11846#endif
11847#$i_fcntl I_FCNTL
11848#ifdef I_FCNTL
11849#include <fcntl.h>
11850#endif
11851#define MY_O_NONBLOCK $o_nonblock
11852#ifndef errno /* XXX need better Configure test */
11853extern int errno;
11854#endif
11855#$i_unistd I_UNISTD
11856#ifdef I_UNISTD
11857#include <unistd.h>
11858#endif
11859#$i_string I_STRING
11860#ifdef I_STRING
11861#include <string.h>
11862#else
11863#include <strings.h>
11864#endif
11865$signal_t blech(x) int x; { exit(3); }
11866EOCP
11867 $cat >> try.c <<'EOCP'
11868int main()
11869{
11870 int pd[2];
11871 int pu[2];
11872 char buf[1];
11873 char string[100];
11874
11875 pipe(pd); /* Down: child -> parent */
11876 pipe(pu); /* Up: parent -> child */
11877 if (0 != fork()) {
11878 int ret;
11879 close(pd[1]); /* Parent reads from pd[0] */
11880 close(pu[0]); /* Parent writes (blocking) to pu[1] */
11881#ifdef F_SETFL
11882 if (-1 == fcntl(pd[0], F_SETFL, MY_O_NONBLOCK))
11883 exit(1);
11884#else
11885 exit(4);
11886#endif
11887 signal(SIGALRM, blech);
11888 alarm(5);
11889 if ((ret = read(pd[0], buf, 1)) > 0) /* Nothing to read! */
11890 exit(2);
11891 sprintf(string, "%d\n", ret);
11892 write(2, string, strlen(string));
11893 alarm(0);
11894#ifdef EAGAIN
11895 if (errno == EAGAIN) {
11896 printf("EAGAIN\n");
11897 goto ok;
11898 }
11899#endif
11900#ifdef EWOULDBLOCK
11901 if (errno == EWOULDBLOCK)
11902 printf("EWOULDBLOCK\n");
11903#endif
11904 ok:
11905 write(pu[1], buf, 1); /* Unblocks child, tell it to close our pipe */
11906 sleep(2); /* Give it time to close our pipe */
11907 alarm(5);
11908 ret = read(pd[0], buf, 1); /* Should read EOF */
11909 alarm(0);
11910 sprintf(string, "%d\n", ret);
11911 write(4, string, strlen(string));
11912 exit(0);
11913 }
11914
11915 close(pd[0]); /* We write to pd[1] */
11916 close(pu[1]); /* We read from pu[0] */
11917 read(pu[0], buf, 1); /* Wait for parent to signal us we may continue */
11918 close(pd[1]); /* Pipe pd is now fully closed! */
11919 exit(0); /* Bye bye, thank you for playing! */
11920}
11921EOCP
11922 set try
11923 if eval $compile_ok; then
11924 echo "$startsh" >mtry
11925 echo "$run ./try >try.out 2>try.ret 4>try.err || exit 4" >>mtry
11926 chmod +x mtry
11927 ./mtry >/dev/null 2>&1
11928 case $? in
11929 0) eagain=`$cat try.out`;;
11930 1) echo "Could not perform non-blocking setting!";;
11931 2) echo "I did a successful read() for something that was not there!";;
11932 3) echo "Hmm... non-blocking I/O does not seem to be working!";;
11933 4) echo "Could not find F_SETFL!";;
11934 *) echo "Something terribly wrong happened during testing.";;
11935 esac
11936 rd_nodata=`$cat try.ret`
11937 echo "A read() system call with no data present returns $rd_nodata."
11938 case "$rd_nodata" in
11939 0|-1) ;;
11940 *)
11941 echo "(That's peculiar, fixing that to be -1.)"
11942 rd_nodata=-1
11943 ;;
11944 esac
11945 case "$eagain" in
11946 '')
11947 echo "Forcing errno EAGAIN on read() with no data available."
11948 eagain=EAGAIN
11949 ;;
11950 *)
11951 echo "Your read() sets errno to $eagain when no data is available."
11952 ;;
11953 esac
11954 status=`$cat try.err`
11955 case "$status" in
11956 0) echo "And it correctly returns 0 to signal EOF.";;
11957 -1) echo "But it also returns -1 to signal EOF, so be careful!";;
11958 *) echo "However, your read() returns '$status' on EOF??";;
11959 esac
11960 val="$define"
11961 if test "$status" = "$rd_nodata"; then
11962 echo "WARNING: you can't distinguish between EOF and no data!"
11963 val="$undef"
11964 fi
11965 else
11966 echo "I can't compile the test program--assuming errno EAGAIN will do."
11967 eagain=EAGAIN
11968 fi
11969 set d_eofnblk
11970 eval $setvar
11971 ;;
11972*)
11973 echo "Using $hint value $eagain."
11974 echo "Your read() returns $rd_nodata when no data is present."
11975 case "$d_eofnblk" in
11976 "$define") echo "And you can see EOF because read() returns 0.";;
11977 "$undef") echo "But you can't see EOF status from read() returned value.";;
11978 *)
11979 echo "(Assuming you can't see EOF status from read anyway.)"
11980 d_eofnblk=$undef
11981 ;;
11982 esac
11983 ;;
11984esac
11985$rm -f try try.* .out core head.c mtry
11986
11987: see if _ptr and _cnt from stdio act std
11988echo " "
11989
11990if $contains '_lbfsize' `./findhdr stdio.h` >/dev/null 2>&1 ; then
11991 echo "(Looks like you have stdio.h from BSD.)"
11992 case "$stdio_ptr" in
11993 '') stdio_ptr='((fp)->_p)'
11994 ptr_lval=$define
11995 ;;
11996 *) ptr_lval=$d_stdio_ptr_lval;;
11997 esac
11998 case "$stdio_cnt" in
11999 '') stdio_cnt='((fp)->_r)'
12000 cnt_lval=$define
12001 ;;
12002 *) cnt_lval=$d_stdio_cnt_lval;;
12003 esac
12004 case "$stdio_base" in
12005 '') stdio_base='((fp)->_ub._base ? (fp)->_ub._base : (fp)->_bf._base)';;
12006 esac
12007 case "$stdio_bufsiz" in
12008 '') stdio_bufsiz='((fp)->_ub._base ? (fp)->_ub._size : (fp)->_bf._size)';;
12009 esac
12010elif $contains '_IO_fpos_t' `./findhdr stdio.h` `./findhdr libio.h` >/dev/null 2>&1 ; then
12011 echo "(Looks like you have stdio.h from Linux.)"
12012 case "$stdio_ptr" in
12013 '') stdio_ptr='((fp)->_IO_read_ptr)'
12014 ptr_lval=$define
12015 ;;
12016 *) ptr_lval=$d_stdio_ptr_lval;;
12017 esac
12018 case "$stdio_cnt" in
12019 '') stdio_cnt='((fp)->_IO_read_end - (fp)->_IO_read_ptr)'
12020 cnt_lval=$undef
12021 ;;
12022 *) cnt_lval=$d_stdio_cnt_lval;;
12023 esac
12024 case "$stdio_base" in
12025 '') stdio_base='((fp)->_IO_read_base)';;
12026 esac
12027 case "$stdio_bufsiz" in
12028 '') stdio_bufsiz='((fp)->_IO_read_end - (fp)->_IO_read_base)';;
12029 esac
12030else
12031 case "$stdio_ptr" in
12032 '') stdio_ptr='((fp)->_ptr)'
12033 ptr_lval=$define
12034 ;;
12035 *) ptr_lval=$d_stdio_ptr_lval;;
12036 esac
12037 case "$stdio_cnt" in
12038 '') stdio_cnt='((fp)->_cnt)'
12039 cnt_lval=$define
12040 ;;
12041 *) cnt_lval=$d_stdio_cnt_lval;;
12042 esac
12043 case "$stdio_base" in
12044 '') stdio_base='((fp)->_base)';;
12045 esac
12046 case "$stdio_bufsiz" in
12047 '') stdio_bufsiz='((fp)->_cnt + (fp)->_ptr - (fp)->_base)';;
12048 esac
12049fi
12050
12051: test whether _ptr and _cnt really work
12052echo "Checking how std your stdio is..." >&4
12053$cat >try.c <<EOP
12054#include <stdio.h>
12055#$i_stdlib I_STDLIB
12056#ifdef I_STDLIB
12057#include <stdlib.h>
12058#endif
12059#define FILE_ptr(fp) $stdio_ptr
12060#define FILE_cnt(fp) $stdio_cnt
12061int main() {
12062 FILE *fp = fopen("try.c", "r");
12063 char c = getc(fp);
12064 if (
12065 18 <= FILE_cnt(fp) &&
12066 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
12067 )
12068 exit(0);
12069 exit(1);
12070}
12071EOP
12072val="$undef"
12073set try
12074if eval $compile && $to try.c; then
12075 if $run ./try; then
12076 echo "Your stdio acts pretty std."
12077 val="$define"
12078 else
12079 echo "Your stdio isn't very std."
12080 fi
12081else
12082 echo "Your stdio doesn't appear very std."
12083fi
12084$rm -f try.c try
12085
12086# glibc 2.2.90 and above apparently change stdio streams so Perl's
12087# direct buffer manipulation no longer works. The Configure tests
12088# should be changed to correctly detect this, but until then,
12089# the following check should at least let perl compile and run.
12090# (This quick fix should be updated before 5.8.1.)
12091# To be defensive, reject all unknown versions, and all versions > 2.2.9.
12092# A. Dougherty, June 3, 2002.
12093case "$d_gnulibc" in
12094$define)
12095 case "$gnulibc_version" in
12096 2.[01]*) ;;
12097 2.2) ;;
12098 2.2.[0-9]) ;;
12099 *) echo "But I will not snoop inside glibc $gnulibc_version stdio buffers."
12100 val="$undef"
12101 ;;
12102 esac
12103 ;;
12104esac
12105set d_stdstdio
12106eval $setvar
12107
12108: Can _ptr be used as an lvalue?
12109case "$d_stdstdio$ptr_lval" in
12110$define$define) val=$define ;;
12111*) val=$undef ;;
12112esac
12113set d_stdio_ptr_lval
12114eval $setvar
12115
12116: Can _cnt be used as an lvalue?
12117case "$d_stdstdio$cnt_lval" in
12118$define$define) val=$define ;;
12119*) val=$undef ;;
12120esac
12121set d_stdio_cnt_lval
12122eval $setvar
12123
12124
12125: test whether setting _ptr sets _cnt as a side effect
12126d_stdio_ptr_lval_sets_cnt="$undef"
12127d_stdio_ptr_lval_nochange_cnt="$undef"
12128case "$d_stdio_ptr_lval$d_stdstdio" in
12129$define$define)
12130 echo "Checking to see what happens if we set the stdio ptr..." >&4
12131$cat >try.c <<EOP
12132#include <stdio.h>
12133/* Can we scream? */
12134/* Eat dust sed :-) */
12135/* In the buffer space, no one can hear you scream. */
12136#$i_stdlib I_STDLIB
12137#ifdef I_STDLIB
12138#include <stdlib.h>
12139#endif
12140#define FILE_ptr(fp) $stdio_ptr
12141#define FILE_cnt(fp) $stdio_cnt
12142#include <sys/types.h>
12143int main() {
12144 FILE *fp = fopen("try.c", "r");
12145 int c;
12146 char *ptr;
12147 size_t cnt;
12148 if (!fp) {
12149 puts("Fail even to read");
12150 exit(1);
12151 }
12152 c = getc(fp); /* Read away the first # */
12153 if (c == EOF) {
12154 puts("Fail even to read");
12155 exit(1);
12156 }
12157 if (!(
12158 18 <= FILE_cnt(fp) &&
12159 strncmp(FILE_ptr(fp), "include <stdio.h>\n", 18) == 0
12160 )) {
12161 puts("Fail even to read");
12162 exit (1);
12163 }
12164 ptr = (char*) FILE_ptr(fp);
12165 cnt = (size_t)FILE_cnt(fp);
12166
12167 FILE_ptr(fp) += 42;
12168
12169 if ((char*)FILE_ptr(fp) != (ptr + 42)) {
12170 printf("Fail ptr check %p != %p", FILE_ptr(fp), (ptr + 42));
12171 exit (1);
12172 }
12173 if (FILE_cnt(fp) <= 20) {
12174 printf ("Fail (<20 chars to test)");
12175 exit (1);
12176 }
12177 if (strncmp(FILE_ptr(fp), "Eat dust sed :-) */\n", 20) != 0) {
12178 puts("Fail compare");
12179 exit (1);
12180 }
12181 if (cnt == FILE_cnt(fp)) {
12182 puts("Pass_unchanged");
12183 exit (0);
12184 }
12185 if (FILE_cnt(fp) == (cnt - 42)) {
12186 puts("Pass_changed");
12187 exit (0);
12188 }
12189 printf("Fail count was %d now %d\n", cnt, FILE_cnt(fp));
12190 return 1;
12191
12192}
12193EOP
12194 set try
12195 if eval $compile && $to try.c; then
12196 case `$run ./try` in
12197 Pass_changed)
12198 echo "Increasing ptr in your stdio decreases cnt by the same amount. Good." >&4
12199 d_stdio_ptr_lval_sets_cnt="$define" ;;
12200 Pass_unchanged)
12201 echo "Increasing ptr in your stdio leaves cnt unchanged. Good." >&4
12202 d_stdio_ptr_lval_nochange_cnt="$define" ;;
12203 Fail*)
12204 echo "Increasing ptr in your stdio didn't do exactly what I expected. We'll not be doing that then." >&4 ;;
12205 *)
12206 echo "It appears attempting to set ptr in your stdio is a bad plan." >&4 ;;
12207 esac
12208 else
12209 echo "It seems we can't set ptr in your stdio. Nevermind." >&4
12210 fi
12211 $rm -f try.c try
12212 ;;
12213esac
12214
12215: see if _base is also standard
12216val="$undef"
12217case "$d_stdstdio" in
12218$define)
12219 $cat >try.c <<EOP
12220#include <stdio.h>
12221#$i_stdlib I_STDLIB
12222#ifdef I_STDLIB
12223#include <stdlib.h>
12224#endif
12225#define FILE_base(fp) $stdio_base
12226#define FILE_bufsiz(fp) $stdio_bufsiz
12227int main() {
12228 FILE *fp = fopen("try.c", "r");
12229 char c = getc(fp);
12230 if (
12231 19 <= FILE_bufsiz(fp) &&
12232 strncmp(FILE_base(fp), "#include <stdio.h>\n", 19) == 0
12233 )
12234 exit(0);
12235 exit(1);
12236}
12237EOP
12238 set try
12239 if eval $compile && $to try.c; then
12240 if $run ./try; then
12241 echo "And its _base field acts std."
12242 val="$define"
12243 else
12244 echo "But its _base field isn't std."
12245 fi
12246 else
12247 echo "However, it seems to be lacking the _base field."
12248 fi
12249 $rm -f try.c try
12250 ;;
12251esac
12252set d_stdiobase
12253eval $setvar
12254
12255: see if fast_stdio exists
12256val="$undef"
12257case "$d_stdstdio:$d_stdio_ptr_lval" in
12258"$define:$define")
12259 case "$d_stdio_cnt_lval$d_stdio_ptr_lval_sets_cnt" in
12260 *$define*)
12261 echo "You seem to have 'fast stdio' to directly manipulate the stdio buffers." >& 4
12262 val="$define"
12263 ;;
12264 esac
12265 ;;
12266esac
12267set d_faststdio
12268eval $setvar
12269
12270
12271
12272: see if fchdir exists
12273set fchdir d_fchdir
12274eval $inlibc
12275
12276: see if fchmod exists
12277set fchmod d_fchmod
12278eval $inlibc
12279
12280: see if fchown exists
12281set fchown d_fchown
12282eval $inlibc
12283
12284: see if this is an fcntl system
12285set fcntl d_fcntl
12286eval $inlibc
12287
12288echo " "
12289: See if fcntl-based locking works.
12290$cat >try.c <<EOCP
12291#$i_stdlib I_STDLIB
12292#ifdef I_STDLIB
12293#include <stdlib.h>
12294#endif
12295#include <unistd.h>
12296#include <fcntl.h>
12297#include <signal.h>
12298$signal_t blech(x) int x; { exit(3); }
12299int main() {
12300#if defined(F_SETLK) && defined(F_SETLKW)
12301 struct flock flock;
12302 int retval, fd;
12303 fd = open("try.c", O_RDONLY);
12304 flock.l_type = F_RDLCK;
12305 flock.l_whence = SEEK_SET;
12306 flock.l_start = flock.l_len = 0;
12307 signal(SIGALRM, blech);
12308 alarm(10);
12309 retval = fcntl(fd, F_SETLK, &flock);
12310 close(fd);
12311 (retval < 0 ? exit(2) : exit(0));
12312#else
12313 exit(2);
12314#endif
12315}
12316EOCP
12317echo "Checking if fcntl-based file locking works... "
12318case "$d_fcntl" in
12319"$define")
12320 set try
12321 if eval $compile_ok; then
12322 if $run ./try; then
12323 echo "Yes, it seems to work."
12324 val="$define"
12325 else
12326 echo "Nope, it didn't work."
12327 val="$undef"
12328 case "$?" in
12329 3) $cat >&4 <<EOM
12330***
12331*** I had to forcibly timeout from fcntl(..., F_SETLK, ...).
12332*** This is (almost) impossible.
12333*** If your NFS lock daemons are not feeling well, something like
12334*** this may happen, please investigate. Cannot continue, aborting.
12335***
12336EOM
12337 exit 1
12338 ;;
12339 esac
12340 fi
12341 else
12342 echo "I'm unable to compile the test program, so I'll assume not."
12343 val="$undef"
12344 fi
12345 ;;
12346*) val="$undef";
12347 echo "Nope, since you don't even have fcntl()."
12348 ;;
12349esac
12350set d_fcntl_can_lock
12351eval $setvar
12352$rm -f try*
12353
12354
12355: check for fd_set items
12356$cat <<EOM
12357
12358Checking to see how well your C compiler handles fd_set and friends ...
12359EOM
12360$cat >try.c <<EOCP
12361#$i_stdlib I_STDLIB
12362#ifdef I_STDLIB
12363#include <stdlib.h>
12364#endif
12365#$i_systime I_SYS_TIME
12366#$i_sysselct I_SYS_SELECT
12367#$d_socket HAS_SOCKET
12368#include <sys/types.h>
12369#ifdef HAS_SOCKET
12370#include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
12371#endif
12372#ifdef I_SYS_TIME
12373#include <sys/time.h>
12374#endif
12375#ifdef I_SYS_SELECT
12376#include <sys/select.h>
12377#endif
12378int main() {
12379 fd_set fds;
12380
12381#ifdef TRYBITS
12382 if(fds.fds_bits);
12383#endif
12384
12385#if defined(FD_SET) && defined(FD_CLR) && defined(FD_ISSET) && defined(FD_ZERO)
12386 exit(0);
12387#else
12388 exit(1);
12389#endif
12390}
12391EOCP
12392set try -DTRYBITS
12393if eval $compile; then
12394 d_fds_bits="$define"
12395 d_fd_set="$define"
12396 echo "Well, your system knows about the normal fd_set typedef..." >&4
12397 if $run ./try; then
12398 echo "and you have the normal fd_set macros (just as I'd expect)." >&4
12399 d_fd_macros="$define"
12400 else
12401 $cat >&4 <<'EOM'
12402but not the normal fd_set macros! Gaaack! I'll have to cover for you.
12403EOM
12404 d_fd_macros="$undef"
12405 fi
12406else
12407 $cat <<'EOM'
12408Hmm, your compiler has some difficulty with fd_set. Checking further...
12409EOM
12410 set try
12411 if eval $compile; then
12412 d_fds_bits="$undef"
12413 d_fd_set="$define"
12414 echo "Well, your system has some sort of fd_set available..." >&4
12415 if $run ./try; then
12416 echo "and you have the normal fd_set macros." >&4
12417 d_fd_macros="$define"
12418 else
12419 $cat <<'EOM'
12420but not the normal fd_set macros! Gross! More work for me...
12421EOM
12422 d_fd_macros="$undef"
12423 fi
12424 else
12425 echo "Well, you got zip. That's OK, I can roll my own fd_set stuff." >&4
12426 d_fd_set="$undef"
12427 d_fds_bits="$undef"
12428 d_fd_macros="$undef"
12429 fi
12430fi
12431$rm -f try try.*
12432
12433: see if fgetpos exists
12434set fgetpos d_fgetpos
12435eval $inlibc
12436
12437: see if finite exists
12438set finite d_finite
12439eval $inlibc
12440
12441: see if finitel exists
12442set finitel d_finitel
12443eval $inlibc
12444
12445: see if flock exists
12446set flock d_flock
12447eval $inlibc
12448
12449: see if prototype for flock is available
12450echo " "
12451set d_flockproto flock $i_sysfile sys/file.h
12452eval $hasproto
12453
12454: see if fork exists
12455set fork d_fork
12456eval $inlibc
12457
12458: see if fp_class exists
12459set fp_class d_fp_class
12460eval $inlibc
12461
12462: see if pathconf exists
12463set pathconf d_pathconf
12464eval $inlibc
12465
12466: see if fpathconf exists
12467set fpathconf d_fpathconf
12468eval $inlibc
12469
12470: see if fpclass exists
12471set fpclass d_fpclass
12472eval $inlibc
12473
12474: see if fpclassify exists
12475set fpclassify d_fpclassify
12476eval $inlibc
12477
12478: see if fpclassl exists
12479set fpclassl d_fpclassl
12480eval $inlibc
12481
12482
12483: check for fpos64_t
12484echo " "
12485echo "Checking to see if you have fpos64_t..." >&4
12486$cat >try.c <<EOCP
12487#include <stdio.h>
12488int main() { fpos64_t x = 7; }
12489EOCP
12490set try
12491if eval $compile; then
12492 val="$define"
12493 echo "You have fpos64_t."
12494else
12495 val="$undef"
12496 echo "You do not have fpos64_t."
12497 case "$fpossize" in
12498 8) echo "(Your fpos_t is 64 bits, so you could use that.)" ;;
12499 esac
12500fi
12501$rm -f try.* try
12502set d_fpos64_t
12503eval $setvar
12504
12505: see if frexpl exists
12506set frexpl d_frexpl
12507eval $inlibc
12508
12509: see if this is a sys/param system
12510set sys/param.h i_sysparam
12511eval $inhdr
12512
12513: see if this is a sys/mount.h system
12514set sys/mount.h i_sysmount
12515eval $inhdr
12516
12517
12518echo " "
12519echo "Checking to see if your system supports struct fs_data..." >&4
12520set d_fs_data_s fs_data $i_systypes sys/types.h $i_sysparam sys/param.h $i_sysmount sys/mount.h
12521eval $hasstruct
12522case "$d_fs_data_s" in
12523"$define") echo "Yes, it does." ;;
12524*) echo "No, it doesn't." ;;
12525esac
12526
12527: see if fseeko exists
12528set fseeko d_fseeko
12529eval $inlibc
12530case "$longsize" in
125318) echo "(Your long is 64 bits, so you could use fseek.)" ;;
12532esac
12533
12534: see if fsetpos exists
12535set fsetpos d_fsetpos
12536eval $inlibc
12537
12538
12539: see if fstatfs exists
12540set fstatfs d_fstatfs
12541eval $inlibc
12542
12543
12544: see if statvfs exists
12545set statvfs d_statvfs
12546eval $inlibc
12547
12548: see if fstatvfs exists
12549set fstatvfs d_fstatvfs
12550eval $inlibc
12551
12552
12553: see if fsync exists
12554set fsync d_fsync
12555eval $inlibc
12556
12557: see if ftello exists
12558set ftello d_ftello
12559eval $inlibc
12560case "$longsize" in
125618) echo "(Your long is 64 bits, so you could use ftell.)" ;;
12562esac
12563
12564d_futimes="$undef"
12565: check for a working futimes
12566echo " "
12567echo "Checking for a working futimes()" >&4
12568$cat >try.c <<EOCP
12569#include <stdio.h>
12570#include <sys/time.h>
12571#include <errno.h>
12572#include <fcntl.h>
12573
12574int main ()
12575{
12576 int fd, rv;
12577 fd = open ("try.c", O_RDWR);
12578 if (-1 == fd) exit (1);
12579 rv = futimes (fd, NULL);
12580 exit (rv == -1 ? errno : 0);
12581}
12582EOCP
12583set try
12584if eval $compile; then
12585 `$run ./try`
12586 rc=$?
12587 case "$rc" in
12588 0) echo "Yes, it does" >&4
12589 d_futimes="$define"
12590 ;;
12591 *) echo "No, it has futimes, but it isn't working ($rc) (probably harmless)\n" >&4
12592 ;;
12593 esac
12594else
12595 echo "No, it does not (probably harmless)\n" >&4
12596fi
12597$rm -f try.* try core core.try.*
12598
12599: see if getcwd exists
12600set getcwd d_getcwd
12601eval $inlibc
12602
12603: see if getespwnam exists
12604set getespwnam d_getespwnam
12605eval $inlibc
12606
12607
12608: see if getfsstat exists
12609set getfsstat d_getfsstat
12610eval $inlibc
12611
12612: see if getgrent exists
12613set getgrent d_getgrent
12614eval $inlibc
12615
12616: see if getgrent_r exists
12617set getgrent_r d_getgrent_r
12618eval $inlibc
12619case "$d_getgrent_r" in
12620"$define")
12621 hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12622 case "$d_getgrent_r_proto:$usethreads" in
12623 ":define") d_getgrent_r_proto=define
12624 set d_getgrent_r_proto getgrent_r $hdrs
12625 eval $hasproto ;;
12626 *) ;;
12627 esac
12628 case "$d_getgrent_r_proto" in
12629 define)
12630 case "$getgrent_r_proto" in
12631 ''|0) try='int getgrent_r(struct group*, char*, size_t, struct group**);'
12632 ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBWR ;;
12633 esac
12634 case "$getgrent_r_proto" in
12635 ''|0) try='int getgrent_r(struct group*, char*, int, struct group**);'
12636 ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIR ;;
12637 esac
12638 case "$getgrent_r_proto" in
12639 ''|0) try='struct group* getgrent_r(struct group*, char*, size_t);'
12640 ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBW ;;
12641 esac
12642 case "$getgrent_r_proto" in
12643 ''|0) try='struct group* getgrent_r(struct group*, char*, int);'
12644 ./protochk "extern $try" $hdrs && getgrent_r_proto=S_SBI ;;
12645 esac
12646 case "$getgrent_r_proto" in
12647 ''|0) try='int getgrent_r(struct group*, char*, int);'
12648 ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBI ;;
12649 esac
12650 case "$getgrent_r_proto" in
12651 ''|0) try='int getgrent_r(struct group*, char*, int, FILE**);'
12652 ./protochk "extern $try" $hdrs && getgrent_r_proto=I_SBIH ;;
12653 esac
12654 case "$getgrent_r_proto" in
12655 ''|0) d_getgrent_r=undef
12656 getgrent_r_proto=0
12657 echo "Disabling getgrent_r, cannot determine prototype." >&4 ;;
12658 * ) case "$getgrent_r_proto" in
12659 REENTRANT_PROTO*) ;;
12660 *) getgrent_r_proto="REENTRANT_PROTO_$getgrent_r_proto" ;;
12661 esac
12662 echo "Prototype: $try" ;;
12663 esac
12664 ;;
12665 *) case "$usethreads" in
12666 define) echo "getgrent_r has no prototype, not using it." >&4 ;;
12667 esac
12668 d_getgrent_r=undef
12669 getgrent_r_proto=0
12670 ;;
12671 esac
12672 ;;
12673*) getgrent_r_proto=0
12674 ;;
12675esac
12676
12677: see if getgrgid_r exists
12678set getgrgid_r d_getgrgid_r
12679eval $inlibc
12680case "$d_getgrgid_r" in
12681"$define")
12682 hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12683 case "$d_getgrgid_r_proto:$usethreads" in
12684 ":define") d_getgrgid_r_proto=define
12685 set d_getgrgid_r_proto getgrgid_r $hdrs
12686 eval $hasproto ;;
12687 *) ;;
12688 esac
12689 case "$d_getgrgid_r_proto" in
12690 define)
12691 case "$getgrgid_r_proto" in
12692 ''|0) try='int getgrgid_r(gid_t, struct group*, char*, size_t, struct group**);'
12693 ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBWR ;;
12694 esac
12695 case "$getgrgid_r_proto" in
12696 ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int, struct group**);'
12697 ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBIR ;;
12698 esac
12699 case "$getgrgid_r_proto" in
12700 ''|0) try='int getgrgid_r(gid_t, struct group*, char*, int);'
12701 ./protochk "extern $try" $hdrs && getgrgid_r_proto=I_TSBI ;;
12702 esac
12703 case "$getgrgid_r_proto" in
12704 ''|0) try='struct group* getgrgid_r(gid_t, struct group*, char*, int);'
12705 ./protochk "extern $try" $hdrs && getgrgid_r_proto=S_TSBI ;;
12706 esac
12707 case "$getgrgid_r_proto" in
12708 ''|0) d_getgrgid_r=undef
12709 getgrgid_r_proto=0
12710 echo "Disabling getgrgid_r, cannot determine prototype." >&4 ;;
12711 * ) case "$getgrgid_r_proto" in
12712 REENTRANT_PROTO*) ;;
12713 *) getgrgid_r_proto="REENTRANT_PROTO_$getgrgid_r_proto" ;;
12714 esac
12715 echo "Prototype: $try" ;;
12716 esac
12717 ;;
12718 *) case "$usethreads" in
12719 define) echo "getgrgid_r has no prototype, not using it." >&4 ;;
12720 esac
12721 d_getgrgid_r=undef
12722 getgrgid_r_proto=0
12723 ;;
12724 esac
12725 ;;
12726*) getgrgid_r_proto=0
12727 ;;
12728esac
12729
12730: see if getgrnam_r exists
12731set getgrnam_r d_getgrnam_r
12732eval $inlibc
12733case "$d_getgrnam_r" in
12734"$define")
12735 hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
12736 case "$d_getgrnam_r_proto:$usethreads" in
12737 ":define") d_getgrnam_r_proto=define
12738 set d_getgrnam_r_proto getgrnam_r $hdrs
12739 eval $hasproto ;;
12740 *) ;;
12741 esac
12742 case "$d_getgrnam_r_proto" in
12743 define)
12744 case "$getgrnam_r_proto" in
12745 ''|0) try='int getgrnam_r(const char*, struct group*, char*, size_t, struct group**);'
12746 ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBWR ;;
12747 esac
12748 case "$getgrnam_r_proto" in
12749 ''|0) try='int getgrnam_r(const char*, struct group*, char*, int, struct group**);'
12750 ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBIR ;;
12751 esac
12752 case "$getgrnam_r_proto" in
12753 ''|0) try='struct group* getgrnam_r(const char*, char*, int);'
12754 ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CBI ;;
12755 esac
12756 case "$getgrnam_r_proto" in
12757 ''|0) try='int getgrnam_r(const char*, struct group*, char*, int);'
12758 ./protochk "extern $try" $hdrs && getgrnam_r_proto=I_CSBI ;;
12759 esac
12760 case "$getgrnam_r_proto" in
12761 ''|0) try='struct group* getgrnam_r(const char*, struct group*, char*, int);'
12762 ./protochk "extern $try" $hdrs && getgrnam_r_proto=S_CSBI ;;
12763 esac
12764 case "$getgrnam_r_proto" in
12765 ''|0) d_getgrnam_r=undef
12766 getgrnam_r_proto=0
12767 echo "Disabling getgrnam_r, cannot determine prototype." >&4 ;;
12768 * ) case "$getgrnam_r_proto" in
12769 REENTRANT_PROTO*) ;;
12770 *) getgrnam_r_proto="REENTRANT_PROTO_$getgrnam_r_proto" ;;
12771 esac
12772 echo "Prototype: $try" ;;
12773 esac
12774 ;;
12775 *) case "$usethreads" in
12776 define) echo "getgrnam_r has no prototype, not using it." >&4 ;;
12777 esac
12778 d_getgrnam_r=undef
12779 getgrnam_r_proto=0
12780 ;;
12781 esac
12782 ;;
12783*) getgrnam_r_proto=0
12784 ;;
12785esac
12786
12787: see if gethostbyaddr exists
12788set gethostbyaddr d_gethbyaddr
12789eval $inlibc
12790
12791: see if gethostbyname exists
12792set gethostbyname d_gethbyname
12793eval $inlibc
12794
12795: see if gethostent exists
12796set gethostent d_gethent
12797eval $inlibc
12798
12799: see how we will look up host name
12800echo " "
12801call=''
12802if set gethostname val -f d_gethname; eval $csym; $val; then
12803 echo 'gethostname() found.' >&4
12804 d_gethname="$define"
12805 call=gethostname
12806fi
12807if set uname val -f d_uname; eval $csym; $val; then
12808 if ./xenix; then
12809 $cat <<'EOM'
12810uname() was found, but you're running xenix, and older versions of xenix
12811have a broken uname(). If you don't really know whether your xenix is old
12812enough to have a broken system call, use the default answer.
12813
12814EOM
12815 dflt=y
12816 case "$d_uname" in
12817 "$define") dflt=n;;
12818 esac
12819 rp='Is your uname() broken?'
12820 . ./myread
12821 case "$ans" in
12822 n*) d_uname="$define"; call=uname;;
12823 esac
12824 else
12825 echo 'uname() found.' >&4
12826 d_uname="$define"
12827 case "$call" in
12828 '') call=uname ;;
12829 esac
12830 fi
12831fi
12832case "$d_gethname" in
12833'') d_gethname="$undef";;
12834esac
12835case "$d_uname" in
12836'') d_uname="$undef";;
12837esac
12838case "$d_uname$d_gethname" in
12839*define*)
12840 dflt=n
12841 cat <<EOM
12842
12843Every now and then someone has a $call() that lies about the hostname
12844but can't be fixed for political or economic reasons. If you wish, I can
12845pretend $call() isn't there and maybe compute hostname at run-time
12846thanks to the '$phostname' command.
12847
12848EOM
12849 rp="Shall I ignore $call() from now on?"
12850 . ./myread
12851 case "$ans" in
12852 y*) d_uname="$undef" d_gethname="$undef"; $echo $n "Okay...$c";;
12853 esac;;
12854esac
12855case "$phostname" in
12856'') aphostname='';;
12857*) case "$aphostname" in
12858 /*) ;;
12859 *) set X $phostname
12860 shift
12861 file=$1
12862 shift
12863 file=`./loc $file $file $pth`
12864 aphostname=`echo $file $*`
12865 ;;
12866 esac
12867 ;;
12868esac
12869case "$d_uname$d_gethname" in
12870*define*) ;;
12871*)
12872 case "$phostname" in
12873 '')
12874 echo "There will be no way for $package to get your hostname." >&4;;
12875 *)
12876 echo "I'll use 'popen("'"'$aphostname'", "r")'"' to get your hostname." >&4
12877 ;;
12878 esac;;
12879esac
12880case "$d_phostname" in
12881'') d_phostname="$undef";;
12882esac
12883
12884: see if gethostbyaddr_r exists
12885set gethostbyaddr_r d_gethostbyaddr_r
12886eval $inlibc
12887case "$d_gethostbyaddr_r" in
12888"$define")
12889 hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12890 case "$d_gethostbyaddr_r_proto:$usethreads" in
12891 ":define") d_gethostbyaddr_r_proto=define
12892 set d_gethostbyaddr_r_proto gethostbyaddr_r $hdrs
12893 eval $hasproto ;;
12894 *) ;;
12895 esac
12896 case "$d_gethostbyaddr_r_proto" in
12897 define)
12898 case "$gethostbyaddr_r_proto" in
12899 ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
12900 ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISBWRE ;;
12901 esac
12902 case "$gethostbyaddr_r_proto" in
12903 ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, size_t, int, int*);'
12904 ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBWIE ;;
12905 esac
12906 case "$gethostbyaddr_r_proto" in
12907 ''|0) try='struct hostent* gethostbyaddr_r(const char*, size_t, int, struct hostent*, char*, int, int*);'
12908 ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CWISBIE ;;
12909 esac
12910 case "$gethostbyaddr_r_proto" in
12911 ''|0) try='struct hostent* gethostbyaddr_r(const void*, size_t, int, struct hostent*, char*, int, int*);'
12912 ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TWISBIE ;;
12913 esac
12914 case "$gethostbyaddr_r_proto" in
12915 ''|0) try='struct hostent* gethostbyaddr_r(const char*, int, int, struct hostent*, char*, int, int*);'
12916 ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CIISBIE ;;
12917 esac
12918 case "$gethostbyaddr_r_proto" in
12919 ''|0) try='struct hostent* gethostbyaddr_r(const char*, struct hostent*, char*, int, int*);'
12920 ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_CSBIE ;;
12921 esac
12922 case "$gethostbyaddr_r_proto" in
12923 ''|0) try='struct hostent* gethostbyaddr_r(const void*, struct hostent*, char*, int, int*);'
12924 ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=S_TSBIE ;;
12925 esac
12926 case "$gethostbyaddr_r_proto" in
12927 ''|0) try='int gethostbyaddr_r(const char*, size_t, int, struct hostent*, struct hostent_data*);'
12928 ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CWISD ;;
12929 esac
12930 case "$gethostbyaddr_r_proto" in
12931 ''|0) try='int gethostbyaddr_r(const char*, int, int, struct hostent*, struct hostent_data*);'
12932 ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CIISD ;;
12933 esac
12934 case "$gethostbyaddr_r_proto" in
12935 ''|0) try='int gethostbyaddr_r(const char*, int, int);'
12936 ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_CII ;;
12937 esac
12938 case "$gethostbyaddr_r_proto" in
12939 ''|0) try='int gethostbyaddr_r(const void*, socklen_t, int, struct hostent*, char*, size_t, struct hostent**, int*);'
12940 ./protochk "extern $try" $hdrs && gethostbyaddr_r_proto=I_TsISBWRE ;;
12941 esac
12942 case "$gethostbyaddr_r_proto" in
12943 ''|0) d_gethostbyaddr_r=undef
12944 gethostbyaddr_r_proto=0
12945 echo "Disabling gethostbyaddr_r, cannot determine prototype." >&4 ;;
12946 * ) case "$gethostbyaddr_r_proto" in
12947 REENTRANT_PROTO*) ;;
12948 *) gethostbyaddr_r_proto="REENTRANT_PROTO_$gethostbyaddr_r_proto" ;;
12949 esac
12950 echo "Prototype: $try" ;;
12951 esac
12952 ;;
12953 *) case "$usethreads" in
12954 define) echo "gethostbyaddr_r has no prototype, not using it." >&4 ;;
12955 esac
12956 d_gethostbyaddr_r=undef
12957 gethostbyaddr_r_proto=0
12958 ;;
12959 esac
12960 ;;
12961*) gethostbyaddr_r_proto=0
12962 ;;
12963esac
12964
12965: see if gethostbyname_r exists
12966set gethostbyname_r d_gethostbyname_r
12967eval $inlibc
12968case "$d_gethostbyname_r" in
12969"$define")
12970 hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
12971 case "$d_gethostbyname_r_proto:$usethreads" in
12972 ":define") d_gethostbyname_r_proto=define
12973 set d_gethostbyname_r_proto gethostbyname_r $hdrs
12974 eval $hasproto ;;
12975 *) ;;
12976 esac
12977 case "$d_gethostbyname_r_proto" in
12978 define)
12979 case "$gethostbyname_r_proto" in
12980 ''|0) try='int gethostbyname_r(const char*, struct hostent*, char*, size_t, struct hostent**, int*);'
12981 ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSBWRE ;;
12982 esac
12983 case "$gethostbyname_r_proto" in
12984 ''|0) try='struct hostent* gethostbyname_r(const char*, struct hostent*, char*, int, int*);'
12985 ./protochk "extern $try" $hdrs && gethostbyname_r_proto=S_CSBIE ;;
12986 esac
12987 case "$gethostbyname_r_proto" in
12988 ''|0) try='int gethostbyname_r(const char*, struct hostent*, struct hostent_data*);'
12989 ./protochk "extern $try" $hdrs && gethostbyname_r_proto=I_CSD ;;
12990 esac
12991 case "$gethostbyname_r_proto" in
12992 ''|0) d_gethostbyname_r=undef
12993 gethostbyname_r_proto=0
12994 echo "Disabling gethostbyname_r, cannot determine prototype." >&4 ;;
12995 * ) case "$gethostbyname_r_proto" in
12996 REENTRANT_PROTO*) ;;
12997 *) gethostbyname_r_proto="REENTRANT_PROTO_$gethostbyname_r_proto" ;;
12998 esac
12999 echo "Prototype: $try" ;;
13000 esac
13001 ;;
13002 *) case "$usethreads" in
13003 define) echo "gethostbyname_r has no prototype, not using it." >&4 ;;
13004 esac
13005 d_gethostbyname_r=undef
13006 gethostbyname_r_proto=0
13007 ;;
13008 esac
13009 ;;
13010*) gethostbyname_r_proto=0
13011 ;;
13012esac
13013
13014: see if gethostent_r exists
13015set gethostent_r d_gethostent_r
13016eval $inlibc
13017case "$d_gethostent_r" in
13018"$define")
13019 hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13020 case "$d_gethostent_r_proto:$usethreads" in
13021 ":define") d_gethostent_r_proto=define
13022 set d_gethostent_r_proto gethostent_r $hdrs
13023 eval $hasproto ;;
13024 *) ;;
13025 esac
13026 case "$d_gethostent_r_proto" in
13027 define)
13028 case "$gethostent_r_proto" in
13029 ''|0) try='int gethostent_r(struct hostent*, char*, size_t, struct hostent**, int*);'
13030 ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBWRE ;;
13031 esac
13032 case "$gethostent_r_proto" in
13033 ''|0) try='int gethostent_r(struct hostent*, char*, int, int*);'
13034 ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBIE ;;
13035 esac
13036 case "$gethostent_r_proto" in
13037 ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int, int*);'
13038 ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBIE ;;
13039 esac
13040 case "$gethostent_r_proto" in
13041 ''|0) try='struct hostent* gethostent_r(struct hostent*, char*, int);'
13042 ./protochk "extern $try" $hdrs && gethostent_r_proto=S_SBI ;;
13043 esac
13044 case "$gethostent_r_proto" in
13045 ''|0) try='int gethostent_r(struct hostent*, char*, int);'
13046 ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SBI ;;
13047 esac
13048 case "$gethostent_r_proto" in
13049 ''|0) try='int gethostent_r(struct hostent*, struct hostent_data*);'
13050 ./protochk "extern $try" $hdrs && gethostent_r_proto=I_SD ;;
13051 esac
13052 case "$gethostent_r_proto" in
13053 ''|0) d_gethostent_r=undef
13054 gethostent_r_proto=0
13055 echo "Disabling gethostent_r, cannot determine prototype." >&4 ;;
13056 * ) case "$gethostent_r_proto" in
13057 REENTRANT_PROTO*) ;;
13058 *) gethostent_r_proto="REENTRANT_PROTO_$gethostent_r_proto" ;;
13059 esac
13060 echo "Prototype: $try" ;;
13061 esac
13062 ;;
13063 *) case "$usethreads" in
13064 define) echo "gethostent_r has no prototype, not using it." >&4 ;;
13065 esac
13066 d_gethostent_r=undef
13067 gethostent_r_proto=0
13068 ;;
13069 esac
13070 ;;
13071*) gethostent_r_proto=0
13072 ;;
13073esac
13074
13075: see if prototypes for various gethostxxx netdb.h functions are available
13076echo " "
13077set d_gethostprotos gethostent $i_netdb netdb.h
13078eval $hasproto
13079
13080: see if getitimer exists
13081set getitimer d_getitimer
13082eval $inlibc
13083
13084: see if getlogin exists
13085set getlogin d_getlogin
13086eval $inlibc
13087
13088: see if getlogin_r exists
13089set getlogin_r d_getlogin_r
13090eval $inlibc
13091case "$d_getlogin_r" in
13092"$define")
13093 hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
13094 case "$d_getlogin_r_proto:$usethreads" in
13095 ":define") d_getlogin_r_proto=define
13096 set d_getlogin_r_proto getlogin_r $hdrs
13097 eval $hasproto ;;
13098 *) ;;
13099 esac
13100 case "$d_getlogin_r_proto" in
13101 define)
13102 case "$getlogin_r_proto" in
13103 ''|0) try='int getlogin_r(char*, size_t);'
13104 ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BW ;;
13105 esac
13106 case "$getlogin_r_proto" in
13107 ''|0) try='int getlogin_r(char*, int);'
13108 ./protochk "extern $try" $hdrs && getlogin_r_proto=I_BI ;;
13109 esac
13110 case "$getlogin_r_proto" in
13111 ''|0) try='char* getlogin_r(char*, size_t);'
13112 ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BW ;;
13113 esac
13114 case "$getlogin_r_proto" in
13115 ''|0) try='char* getlogin_r(char*, int);'
13116 ./protochk "extern $try" $hdrs && getlogin_r_proto=B_BI ;;
13117 esac
13118 case "$getlogin_r_proto" in
13119 ''|0) d_getlogin_r=undef
13120 getlogin_r_proto=0
13121 echo "Disabling getlogin_r, cannot determine prototype." >&4 ;;
13122 * ) case "$getlogin_r_proto" in
13123 REENTRANT_PROTO*) ;;
13124 *) getlogin_r_proto="REENTRANT_PROTO_$getlogin_r_proto" ;;
13125 esac
13126 echo "Prototype: $try" ;;
13127 esac
13128 ;;
13129 *) case "$usethreads" in
13130 define) echo "getlogin_r has no prototype, not using it." >&4 ;;
13131 esac
13132 d_getlogin_r=undef
13133 getlogin_r_proto=0
13134 ;;
13135 esac
13136 ;;
13137*) getlogin_r_proto=0
13138 ;;
13139esac
13140
13141: see if getmnt exists
13142set getmnt d_getmnt
13143eval $inlibc
13144
13145: see if getmntent exists
13146set getmntent d_getmntent
13147eval $inlibc
13148
13149: see if getnetbyaddr exists
13150set getnetbyaddr d_getnbyaddr
13151eval $inlibc
13152
13153: see if getnetbyname exists
13154set getnetbyname d_getnbyname
13155eval $inlibc
13156
13157: see if getnetent exists
13158set getnetent d_getnent
13159eval $inlibc
13160
13161: see if getnetbyaddr_r exists
13162set getnetbyaddr_r d_getnetbyaddr_r
13163eval $inlibc
13164case "$d_getnetbyaddr_r" in
13165"$define")
13166 hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13167 case "$d_getnetbyaddr_r_proto:$usethreads" in
13168 ":define") d_getnetbyaddr_r_proto=define
13169 set d_getnetbyaddr_r_proto getnetbyaddr_r $hdrs
13170 eval $hasproto ;;
13171 *) ;;
13172 esac
13173 case "$d_getnetbyaddr_r_proto" in
13174 define)
13175 case "$getnetbyaddr_r_proto" in
13176 ''|0) try='int getnetbyaddr_r(unsigned long, int, struct netent*, char*, size_t, struct netent**, int*);'
13177 ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_UISBWRE ;;
13178 esac
13179 case "$getnetbyaddr_r_proto" in
13180 ''|0) try='int getnetbyaddr_r(long, int, struct netent*, char*, int);'
13181 ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISBI ;;
13182 esac
13183 case "$getnetbyaddr_r_proto" in
13184 ''|0) try='struct netent* getnetbyaddr_r(in_addr_t, int, struct netent*, char*, int);'
13185 ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_TISBI ;;
13186 esac
13187 case "$getnetbyaddr_r_proto" in
13188 ''|0) try='struct netent* getnetbyaddr_r(long, int, struct netent*, char*, int);'
13189 ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=S_LISBI ;;
13190 esac
13191 case "$getnetbyaddr_r_proto" in
13192 ''|0) try='int getnetbyaddr_r(in_addr_t, int, struct netent*, struct netent_data*);'
13193 ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_TISD ;;
13194 esac
13195 case "$getnetbyaddr_r_proto" in
13196 ''|0) try='int getnetbyaddr_r(long, int, struct netent*, struct netent_data*);'
13197 ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_LISD ;;
13198 esac
13199 case "$getnetbyaddr_r_proto" in
13200 ''|0) try='int getnetbyaddr_r(int, int, struct netent*, struct netent_data*);'
13201 ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_IISD ;;
13202 esac
13203 case "$getnetbyaddr_r_proto" in
13204 ''|0) try='int getnetbyaddr_r(uint32_t, int, struct netent*, char*, size_t, struct netent**, int*);'
13205 ./protochk "extern $try" $hdrs && getnetbyaddr_r_proto=I_uISBWRE ;;
13206 esac
13207 case "$getnetbyaddr_r_proto" in
13208 ''|0) d_getnetbyaddr_r=undef
13209 getnetbyaddr_r_proto=0
13210 echo "Disabling getnetbyaddr_r, cannot determine prototype." >&4 ;;
13211 * ) case "$getnetbyaddr_r_proto" in
13212 REENTRANT_PROTO*) ;;
13213 *) getnetbyaddr_r_proto="REENTRANT_PROTO_$getnetbyaddr_r_proto" ;;
13214 esac
13215 echo "Prototype: $try" ;;
13216 esac
13217 ;;
13218 *) case "$usethreads" in
13219 define) echo "getnetbyaddr_r has no prototype, not using it." >&4 ;;
13220 esac
13221 d_getnetbyaddr_r=undef
13222 getnetbyaddr_r_proto=0
13223 ;;
13224 esac
13225 ;;
13226*) getnetbyaddr_r_proto=0
13227 ;;
13228esac
13229
13230: see if getnetbyname_r exists
13231set getnetbyname_r d_getnetbyname_r
13232eval $inlibc
13233case "$d_getnetbyname_r" in
13234"$define")
13235 hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13236 case "$d_getnetbyname_r_proto:$usethreads" in
13237 ":define") d_getnetbyname_r_proto=define
13238 set d_getnetbyname_r_proto getnetbyname_r $hdrs
13239 eval $hasproto ;;
13240 *) ;;
13241 esac
13242 case "$d_getnetbyname_r_proto" in
13243 define)
13244 case "$getnetbyname_r_proto" in
13245 ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, size_t, struct netent**, int*);'
13246 ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBWRE ;;
13247 esac
13248 case "$getnetbyname_r_proto" in
13249 ''|0) try='int getnetbyname_r(const char*, struct netent*, char*, int);'
13250 ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSBI ;;
13251 esac
13252 case "$getnetbyname_r_proto" in
13253 ''|0) try='struct netent* getnetbyname_r(const char*, struct netent*, char*, int);'
13254 ./protochk "extern $try" $hdrs && getnetbyname_r_proto=S_CSBI ;;
13255 esac
13256 case "$getnetbyname_r_proto" in
13257 ''|0) try='int getnetbyname_r(const char*, struct netent*, struct netent_data*);'
13258 ./protochk "extern $try" $hdrs && getnetbyname_r_proto=I_CSD ;;
13259 esac
13260 case "$getnetbyname_r_proto" in
13261 ''|0) d_getnetbyname_r=undef
13262 getnetbyname_r_proto=0
13263 echo "Disabling getnetbyname_r, cannot determine prototype." >&4 ;;
13264 * ) case "$getnetbyname_r_proto" in
13265 REENTRANT_PROTO*) ;;
13266 *) getnetbyname_r_proto="REENTRANT_PROTO_$getnetbyname_r_proto" ;;
13267 esac
13268 echo "Prototype: $try" ;;
13269 esac
13270 ;;
13271 *) case "$usethreads" in
13272 define) echo "getnetbyname_r has no prototype, not using it." >&4 ;;
13273 esac
13274 d_getnetbyname_r=undef
13275 getnetbyname_r_proto=0
13276 ;;
13277 esac
13278 ;;
13279*) getnetbyname_r_proto=0
13280 ;;
13281esac
13282
13283: see if getnetent_r exists
13284set getnetent_r d_getnetent_r
13285eval $inlibc
13286case "$d_getnetent_r" in
13287"$define")
13288 hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13289 case "$d_getnetent_r_proto:$usethreads" in
13290 ":define") d_getnetent_r_proto=define
13291 set d_getnetent_r_proto getnetent_r $hdrs
13292 eval $hasproto ;;
13293 *) ;;
13294 esac
13295 case "$d_getnetent_r_proto" in
13296 define)
13297 case "$getnetent_r_proto" in
13298 ''|0) try='int getnetent_r(struct netent*, char*, size_t, struct netent**, int*);'
13299 ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBWRE ;;
13300 esac
13301 case "$getnetent_r_proto" in
13302 ''|0) try='int getnetent_r(struct netent*, char*, int, int*);'
13303 ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBIE ;;
13304 esac
13305 case "$getnetent_r_proto" in
13306 ''|0) try='struct netent* getnetent_r(struct netent*, char*, int, int*);'
13307 ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBIE ;;
13308 esac
13309 case "$getnetent_r_proto" in
13310 ''|0) try='struct netent* getnetent_r(struct netent*, char*, int);'
13311 ./protochk "extern $try" $hdrs && getnetent_r_proto=S_SBI ;;
13312 esac
13313 case "$getnetent_r_proto" in
13314 ''|0) try='int getnetent_r(struct netent*, char*, int);'
13315 ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SBI ;;
13316 esac
13317 case "$getnetent_r_proto" in
13318 ''|0) try='int getnetent_r(struct netent*, struct netent_data*);'
13319 ./protochk "extern $try" $hdrs && getnetent_r_proto=I_SD ;;
13320 esac
13321 case "$getnetent_r_proto" in
13322 ''|0) d_getnetent_r=undef
13323 getnetent_r_proto=0
13324 echo "Disabling getnetent_r, cannot determine prototype." >&4 ;;
13325 * ) case "$getnetent_r_proto" in
13326 REENTRANT_PROTO*) ;;
13327 *) getnetent_r_proto="REENTRANT_PROTO_$getnetent_r_proto" ;;
13328 esac
13329 echo "Prototype: $try" ;;
13330 esac
13331 ;;
13332 *) case "$usethreads" in
13333 define) echo "getnetent_r has no prototype, not using it." >&4 ;;
13334 esac
13335 d_getnetent_r=undef
13336 getnetent_r_proto=0
13337 ;;
13338 esac
13339 ;;
13340*) getnetent_r_proto=0
13341 ;;
13342esac
13343
13344: see if prototypes for various getnetxxx netdb.h functions are available
13345echo " "
13346set d_getnetprotos getnetent $i_netdb netdb.h
13347eval $hasproto
13348
13349: see if getpagesize exists
13350set getpagesize d_getpagsz
13351eval $inlibc
13352
13353
13354: see if getprotobyname exists
13355set getprotobyname d_getpbyname
13356eval $inlibc
13357
13358: see if getprotobynumber exists
13359set getprotobynumber d_getpbynumber
13360eval $inlibc
13361
13362: see if getprotoent exists
13363set getprotoent d_getpent
13364eval $inlibc
13365
13366: see if getpgid exists
13367set getpgid d_getpgid
13368eval $inlibc
13369
13370: see if getpgrp2 exists
13371set getpgrp2 d_getpgrp2
13372eval $inlibc
13373
13374: see if getppid exists
13375set getppid d_getppid
13376eval $inlibc
13377
13378: see if getpriority exists
13379set getpriority d_getprior
13380eval $inlibc
13381
13382: see if getprotobyname_r exists
13383set getprotobyname_r d_getprotobyname_r
13384eval $inlibc
13385case "$d_getprotobyname_r" in
13386"$define")
13387 hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13388 case "$d_getprotobyname_r_proto:$usethreads" in
13389 ":define") d_getprotobyname_r_proto=define
13390 set d_getprotobyname_r_proto getprotobyname_r $hdrs
13391 eval $hasproto ;;
13392 *) ;;
13393 esac
13394 case "$d_getprotobyname_r_proto" in
13395 define)
13396 case "$getprotobyname_r_proto" in
13397 ''|0) try='int getprotobyname_r(const char*, struct protoent*, char*, size_t, struct protoent**);'
13398 ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSBWR ;;
13399 esac
13400 case "$getprotobyname_r_proto" in
13401 ''|0) try='struct protoent* getprotobyname_r(const char*, struct protoent*, char*, int);'
13402 ./protochk "extern $try" $hdrs && getprotobyname_r_proto=S_CSBI ;;
13403 esac
13404 case "$getprotobyname_r_proto" in
13405 ''|0) try='int getprotobyname_r(const char*, struct protoent*, struct protoent_data*);'
13406 ./protochk "extern $try" $hdrs && getprotobyname_r_proto=I_CSD ;;
13407 esac
13408 case "$getprotobyname_r_proto" in
13409 ''|0) d_getprotobyname_r=undef
13410 getprotobyname_r_proto=0
13411 echo "Disabling getprotobyname_r, cannot determine prototype." >&4 ;;
13412 * ) case "$getprotobyname_r_proto" in
13413 REENTRANT_PROTO*) ;;
13414 *) getprotobyname_r_proto="REENTRANT_PROTO_$getprotobyname_r_proto" ;;
13415 esac
13416 echo "Prototype: $try" ;;
13417 esac
13418 ;;
13419 *) case "$usethreads" in
13420 define) echo "getprotobyname_r has no prototype, not using it." >&4 ;;
13421 esac
13422 d_getprotobyname_r=undef
13423 getprotobyname_r_proto=0
13424 ;;
13425 esac
13426 ;;
13427*) getprotobyname_r_proto=0
13428 ;;
13429esac
13430
13431: see if getprotobynumber_r exists
13432set getprotobynumber_r d_getprotobynumber_r
13433eval $inlibc
13434case "$d_getprotobynumber_r" in
13435"$define")
13436 hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13437 case "$d_getprotobynumber_r_proto:$usethreads" in
13438 ":define") d_getprotobynumber_r_proto=define
13439 set d_getprotobynumber_r_proto getprotobynumber_r $hdrs
13440 eval $hasproto ;;
13441 *) ;;
13442 esac
13443 case "$d_getprotobynumber_r_proto" in
13444 define)
13445 case "$getprotobynumber_r_proto" in
13446 ''|0) try='int getprotobynumber_r(int, struct protoent*, char*, size_t, struct protoent**);'
13447 ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISBWR ;;
13448 esac
13449 case "$getprotobynumber_r_proto" in
13450 ''|0) try='struct protoent* getprotobynumber_r(int, struct protoent*, char*, int);'
13451 ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=S_ISBI ;;
13452 esac
13453 case "$getprotobynumber_r_proto" in
13454 ''|0) try='int getprotobynumber_r(int, struct protoent*, struct protoent_data*);'
13455 ./protochk "extern $try" $hdrs && getprotobynumber_r_proto=I_ISD ;;
13456 esac
13457 case "$getprotobynumber_r_proto" in
13458 ''|0) d_getprotobynumber_r=undef
13459 getprotobynumber_r_proto=0
13460 echo "Disabling getprotobynumber_r, cannot determine prototype." >&4 ;;
13461 * ) case "$getprotobynumber_r_proto" in
13462 REENTRANT_PROTO*) ;;
13463 *) getprotobynumber_r_proto="REENTRANT_PROTO_$getprotobynumber_r_proto" ;;
13464 esac
13465 echo "Prototype: $try" ;;
13466 esac
13467 ;;
13468 *) case "$usethreads" in
13469 define) echo "getprotobynumber_r has no prototype, not using it." >&4 ;;
13470 esac
13471 d_getprotobynumber_r=undef
13472 getprotobynumber_r_proto=0
13473 ;;
13474 esac
13475 ;;
13476*) getprotobynumber_r_proto=0
13477 ;;
13478esac
13479
13480: see if getprotoent_r exists
13481set getprotoent_r d_getprotoent_r
13482eval $inlibc
13483case "$d_getprotoent_r" in
13484"$define")
13485 hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13486 case "$d_getprotoent_r_proto:$usethreads" in
13487 ":define") d_getprotoent_r_proto=define
13488 set d_getprotoent_r_proto getprotoent_r $hdrs
13489 eval $hasproto ;;
13490 *) ;;
13491 esac
13492 case "$d_getprotoent_r_proto" in
13493 define)
13494 case "$getprotoent_r_proto" in
13495 ''|0) try='int getprotoent_r(struct protoent*, char*, size_t, struct protoent**);'
13496 ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBWR ;;
13497 esac
13498 case "$getprotoent_r_proto" in
13499 ''|0) try='int getprotoent_r(struct protoent*, char*, int);'
13500 ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SBI ;;
13501 esac
13502 case "$getprotoent_r_proto" in
13503 ''|0) try='struct protoent* getprotoent_r(struct protoent*, char*, int);'
13504 ./protochk "extern $try" $hdrs && getprotoent_r_proto=S_SBI ;;
13505 esac
13506 case "$getprotoent_r_proto" in
13507 ''|0) try='int getprotoent_r(struct protoent*, struct protoent_data*);'
13508 ./protochk "extern $try" $hdrs && getprotoent_r_proto=I_SD ;;
13509 esac
13510 case "$getprotoent_r_proto" in
13511 ''|0) d_getprotoent_r=undef
13512 getprotoent_r_proto=0
13513 echo "Disabling getprotoent_r, cannot determine prototype." >&4 ;;
13514 * ) case "$getprotoent_r_proto" in
13515 REENTRANT_PROTO*) ;;
13516 *) getprotoent_r_proto="REENTRANT_PROTO_$getprotoent_r_proto" ;;
13517 esac
13518 echo "Prototype: $try" ;;
13519 esac
13520 ;;
13521 *) case "$usethreads" in
13522 define) echo "getprotoent_r has no prototype, not using it." >&4 ;;
13523 esac
13524 d_getprotoent_r=undef
13525 getprotoent_r_proto=0
13526 ;;
13527 esac
13528 ;;
13529*) getprotoent_r_proto=0
13530 ;;
13531esac
13532
13533: see if prototypes for various getprotoxxx netdb.h functions are available
13534echo " "
13535set d_getprotoprotos getprotoent $i_netdb netdb.h
13536eval $hasproto
13537
13538: see if getprpwnam exists
13539set getprpwnam d_getprpwnam
13540eval $inlibc
13541
13542: see if getpwent exists
13543set getpwent d_getpwent
13544eval $inlibc
13545
13546: see if getpwent_r exists
13547set getpwent_r d_getpwent_r
13548eval $inlibc
13549case "$d_getpwent_r" in
13550"$define")
13551 hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13552 case "$d_getpwent_r_proto:$usethreads" in
13553 ":define") d_getpwent_r_proto=define
13554 set d_getpwent_r_proto getpwent_r $hdrs
13555 eval $hasproto ;;
13556 *) ;;
13557 esac
13558 case "$d_getpwent_r_proto" in
13559 define)
13560 case "$getpwent_r_proto" in
13561 ''|0) try='int getpwent_r(struct passwd*, char*, size_t, struct passwd**);'
13562 ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBWR ;;
13563 esac
13564 case "$getpwent_r_proto" in
13565 ''|0) try='int getpwent_r(struct passwd*, char*, int, struct passwd**);'
13566 ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIR ;;
13567 esac
13568 case "$getpwent_r_proto" in
13569 ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, size_t);'
13570 ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBW ;;
13571 esac
13572 case "$getpwent_r_proto" in
13573 ''|0) try='struct passwd* getpwent_r(struct passwd*, char*, int);'
13574 ./protochk "extern $try" $hdrs && getpwent_r_proto=S_SBI ;;
13575 esac
13576 case "$getpwent_r_proto" in
13577 ''|0) try='int getpwent_r(struct passwd*, char*, int);'
13578 ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBI ;;
13579 esac
13580 case "$getpwent_r_proto" in
13581 ''|0) try='int getpwent_r(struct passwd*, char*, int, FILE**);'
13582 ./protochk "extern $try" $hdrs && getpwent_r_proto=I_SBIH ;;
13583 esac
13584 case "$getpwent_r_proto" in
13585 ''|0) d_getpwent_r=undef
13586 getpwent_r_proto=0
13587 echo "Disabling getpwent_r, cannot determine prototype." >&4 ;;
13588 * ) case "$getpwent_r_proto" in
13589 REENTRANT_PROTO*) ;;
13590 *) getpwent_r_proto="REENTRANT_PROTO_$getpwent_r_proto" ;;
13591 esac
13592 echo "Prototype: $try" ;;
13593 esac
13594 ;;
13595 *) case "$usethreads" in
13596 define) echo "getpwent_r has no prototype, not using it." >&4 ;;
13597 esac
13598 d_getpwent_r=undef
13599 getpwent_r_proto=0
13600 ;;
13601 esac
13602 ;;
13603*) getpwent_r_proto=0
13604 ;;
13605esac
13606
13607: see if getpwnam_r exists
13608set getpwnam_r d_getpwnam_r
13609eval $inlibc
13610case "$d_getpwnam_r" in
13611"$define")
13612 hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13613 case "$d_getpwnam_r_proto:$usethreads" in
13614 ":define") d_getpwnam_r_proto=define
13615 set d_getpwnam_r_proto getpwnam_r $hdrs
13616 eval $hasproto ;;
13617 *) ;;
13618 esac
13619 case "$d_getpwnam_r_proto" in
13620 define)
13621 case "$getpwnam_r_proto" in
13622 ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);'
13623 ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBWR ;;
13624 esac
13625 case "$getpwnam_r_proto" in
13626 ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int, struct passwd**);'
13627 ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBIR ;;
13628 esac
13629 case "$getpwnam_r_proto" in
13630 ''|0) try='struct passwd* getpwnam_r(const char*, struct passwd*, char*, int);'
13631 ./protochk "extern $try" $hdrs && getpwnam_r_proto=S_CSBI ;;
13632 esac
13633 case "$getpwnam_r_proto" in
13634 ''|0) try='int getpwnam_r(const char*, struct passwd*, char*, int);'
13635 ./protochk "extern $try" $hdrs && getpwnam_r_proto=I_CSBI ;;
13636 esac
13637 case "$getpwnam_r_proto" in
13638 ''|0) d_getpwnam_r=undef
13639 getpwnam_r_proto=0
13640 echo "Disabling getpwnam_r, cannot determine prototype." >&4 ;;
13641 * ) case "$getpwnam_r_proto" in
13642 REENTRANT_PROTO*) ;;
13643 *) getpwnam_r_proto="REENTRANT_PROTO_$getpwnam_r_proto" ;;
13644 esac
13645 echo "Prototype: $try" ;;
13646 esac
13647 ;;
13648 *) case "$usethreads" in
13649 define) echo "getpwnam_r has no prototype, not using it." >&4 ;;
13650 esac
13651 d_getpwnam_r=undef
13652 getpwnam_r_proto=0
13653 ;;
13654 esac
13655 ;;
13656*) getpwnam_r_proto=0
13657 ;;
13658esac
13659
13660: see if getpwuid_r exists
13661set getpwuid_r d_getpwuid_r
13662eval $inlibc
13663case "$d_getpwuid_r" in
13664"$define")
13665 hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
13666 case "$d_getpwuid_r_proto:$usethreads" in
13667 ":define") d_getpwuid_r_proto=define
13668 set d_getpwuid_r_proto getpwuid_r $hdrs
13669 eval $hasproto ;;
13670 *) ;;
13671 esac
13672 case "$d_getpwuid_r_proto" in
13673 define)
13674 case "$getpwuid_r_proto" in
13675 ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**);'
13676 ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBWR ;;
13677 esac
13678 case "$getpwuid_r_proto" in
13679 ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int, struct passwd**);'
13680 ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBIR ;;
13681 esac
13682 case "$getpwuid_r_proto" in
13683 ''|0) try='int getpwuid_r(uid_t, struct passwd*, char*, int);'
13684 ./protochk "extern $try" $hdrs && getpwuid_r_proto=I_TSBI ;;
13685 esac
13686 case "$getpwuid_r_proto" in
13687 ''|0) try='struct passwd* getpwuid_r(uid_t, struct passwd*, char*, int);'
13688 ./protochk "extern $try" $hdrs && getpwuid_r_proto=S_TSBI ;;
13689 esac
13690 case "$getpwuid_r_proto" in
13691 ''|0) d_getpwuid_r=undef
13692 getpwuid_r_proto=0
13693 echo "Disabling getpwuid_r, cannot determine prototype." >&4 ;;
13694 * ) case "$getpwuid_r_proto" in
13695 REENTRANT_PROTO*) ;;
13696 *) getpwuid_r_proto="REENTRANT_PROTO_$getpwuid_r_proto" ;;
13697 esac
13698 echo "Prototype: $try" ;;
13699 esac
13700 ;;
13701 *) case "$usethreads" in
13702 define) echo "getpwuid_r has no prototype, not using it." >&4 ;;
13703 esac
13704 d_getpwuid_r=undef
13705 getpwuid_r_proto=0
13706 ;;
13707 esac
13708 ;;
13709*) getpwuid_r_proto=0
13710 ;;
13711esac
13712
13713
13714: see if getservbyname exists
13715set getservbyname d_getsbyname
13716eval $inlibc
13717
13718: see if getservbyport exists
13719set getservbyport d_getsbyport
13720eval $inlibc
13721
13722: see if getservent exists
13723set getservent d_getsent
13724eval $inlibc
13725
13726: see if getservbyname_r exists
13727set getservbyname_r d_getservbyname_r
13728eval $inlibc
13729case "$d_getservbyname_r" in
13730"$define")
13731 hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13732 case "$d_getservbyname_r_proto:$usethreads" in
13733 ":define") d_getservbyname_r_proto=define
13734 set d_getservbyname_r_proto getservbyname_r $hdrs
13735 eval $hasproto ;;
13736 *) ;;
13737 esac
13738 case "$d_getservbyname_r_proto" in
13739 define)
13740 case "$getservbyname_r_proto" in
13741 ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, char*, size_t, struct servent**);'
13742 ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSBWR ;;
13743 esac
13744 case "$getservbyname_r_proto" in
13745 ''|0) try='struct servent* getservbyname_r(const char*, const char*, struct servent*, char*, int);'
13746 ./protochk "extern $try" $hdrs && getservbyname_r_proto=S_CCSBI ;;
13747 esac
13748 case "$getservbyname_r_proto" in
13749 ''|0) try='int getservbyname_r(const char*, const char*, struct servent*, struct servent_data*);'
13750 ./protochk "extern $try" $hdrs && getservbyname_r_proto=I_CCSD ;;
13751 esac
13752 case "$getservbyname_r_proto" in
13753 ''|0) d_getservbyname_r=undef
13754 getservbyname_r_proto=0
13755 echo "Disabling getservbyname_r, cannot determine prototype." >&4 ;;
13756 * ) case "$getservbyname_r_proto" in
13757 REENTRANT_PROTO*) ;;
13758 *) getservbyname_r_proto="REENTRANT_PROTO_$getservbyname_r_proto" ;;
13759 esac
13760 echo "Prototype: $try" ;;
13761 esac
13762 ;;
13763 *) case "$usethreads" in
13764 define) echo "getservbyname_r has no prototype, not using it." >&4 ;;
13765 esac
13766 d_getservbyname_r=undef
13767 getservbyname_r_proto=0
13768 ;;
13769 esac
13770 ;;
13771*) getservbyname_r_proto=0
13772 ;;
13773esac
13774
13775: see if getservbyport_r exists
13776set getservbyport_r d_getservbyport_r
13777eval $inlibc
13778case "$d_getservbyport_r" in
13779"$define")
13780 hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13781 case "$d_getservbyport_r_proto:$usethreads" in
13782 ":define") d_getservbyport_r_proto=define
13783 set d_getservbyport_r_proto getservbyport_r $hdrs
13784 eval $hasproto ;;
13785 *) ;;
13786 esac
13787 case "$d_getservbyport_r_proto" in
13788 define)
13789 case "$getservbyport_r_proto" in
13790 ''|0) try='int getservbyport_r(int, const char*, struct servent*, char*, size_t, struct servent**);'
13791 ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSBWR ;;
13792 esac
13793 case "$getservbyport_r_proto" in
13794 ''|0) try='struct servent* getservbyport_r(int, const char*, struct servent*, char*, int);'
13795 ./protochk "extern $try" $hdrs && getservbyport_r_proto=S_ICSBI ;;
13796 esac
13797 case "$getservbyport_r_proto" in
13798 ''|0) try='int getservbyport_r(int, const char*, struct servent*, struct servent_data*);'
13799 ./protochk "extern $try" $hdrs && getservbyport_r_proto=I_ICSD ;;
13800 esac
13801 case "$getservbyport_r_proto" in
13802 ''|0) d_getservbyport_r=undef
13803 getservbyport_r_proto=0
13804 echo "Disabling getservbyport_r, cannot determine prototype." >&4 ;;
13805 * ) case "$getservbyport_r_proto" in
13806 REENTRANT_PROTO*) ;;
13807 *) getservbyport_r_proto="REENTRANT_PROTO_$getservbyport_r_proto" ;;
13808 esac
13809 echo "Prototype: $try" ;;
13810 esac
13811 ;;
13812 *) case "$usethreads" in
13813 define) echo "getservbyport_r has no prototype, not using it." >&4 ;;
13814 esac
13815 d_getservbyport_r=undef
13816 getservbyport_r_proto=0
13817 ;;
13818 esac
13819 ;;
13820*) getservbyport_r_proto=0
13821 ;;
13822esac
13823
13824: see if getservent_r exists
13825set getservent_r d_getservent_r
13826eval $inlibc
13827case "$d_getservent_r" in
13828"$define")
13829 hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
13830 case "$d_getservent_r_proto:$usethreads" in
13831 ":define") d_getservent_r_proto=define
13832 set d_getservent_r_proto getservent_r $hdrs
13833 eval $hasproto ;;
13834 *) ;;
13835 esac
13836 case "$d_getservent_r_proto" in
13837 define)
13838 case "$getservent_r_proto" in
13839 ''|0) try='int getservent_r(struct servent*, char*, size_t, struct servent**);'
13840 ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBWR ;;
13841 esac
13842 case "$getservent_r_proto" in
13843 ''|0) try='int getservent_r(struct servent*, char*, int);'
13844 ./protochk "extern $try" $hdrs && getservent_r_proto=I_SBI ;;
13845 esac
13846 case "$getservent_r_proto" in
13847 ''|0) try='struct servent* getservent_r(struct servent*, char*, int);'
13848 ./protochk "extern $try" $hdrs && getservent_r_proto=S_SBI ;;
13849 esac
13850 case "$getservent_r_proto" in
13851 ''|0) try='int getservent_r(struct servent*, struct servent_data*);'
13852 ./protochk "extern $try" $hdrs && getservent_r_proto=I_SD ;;
13853 esac
13854 case "$getservent_r_proto" in
13855 ''|0) d_getservent_r=undef
13856 getservent_r_proto=0
13857 echo "Disabling getservent_r, cannot determine prototype." >&4 ;;
13858 * ) case "$getservent_r_proto" in
13859 REENTRANT_PROTO*) ;;
13860 *) getservent_r_proto="REENTRANT_PROTO_$getservent_r_proto" ;;
13861 esac
13862 echo "Prototype: $try" ;;
13863 esac
13864 ;;
13865 *) case "$usethreads" in
13866 define) echo "getservent_r has no prototype, not using it." >&4 ;;
13867 esac
13868 d_getservent_r=undef
13869 getservent_r_proto=0
13870 ;;
13871 esac
13872 ;;
13873*) getservent_r_proto=0
13874 ;;
13875esac
13876
13877: see if prototypes for various getservxxx netdb.h functions are available
13878echo " "
13879set d_getservprotos getservent $i_netdb netdb.h
13880eval $hasproto
13881
13882: see if getspnam exists
13883set getspnam d_getspnam
13884eval $inlibc
13885
13886: see if this is a shadow.h system
13887set shadow.h i_shadow
13888eval $inhdr
13889
13890: see if getspnam_r exists
13891set getspnam_r d_getspnam_r
13892eval $inlibc
13893case "$d_getspnam_r" in
13894"$define")
13895 hdrs="$i_systypes sys/types.h define stdio.h $i_shadow shadow.h"
13896 case "$d_getspnam_r_proto:$usethreads" in
13897 ":define") d_getspnam_r_proto=define
13898 set d_getspnam_r_proto getspnam_r $hdrs
13899 eval $hasproto ;;
13900 *) ;;
13901 esac
13902 case "$d_getspnam_r_proto" in
13903 define)
13904 case "$getspnam_r_proto" in
13905 ''|0) try='int getspnam_r(const char*, struct spwd*, char*, size_t, struct spwd**);'
13906 ./protochk "extern $try" $hdrs && getspnam_r_proto=I_CSBWR ;;
13907 esac
13908 case "$getspnam_r_proto" in
13909 ''|0) try='struct spwd* getspnam_r(const char*, struct spwd*, char*, int);'
13910 ./protochk "extern $try" $hdrs && getspnam_r_proto=S_CSBI ;;
13911 esac
13912 case "$getspnam_r_proto" in
13913 ''|0) d_getspnam_r=undef
13914 getspnam_r_proto=0
13915 echo "Disabling getspnam_r, cannot determine prototype." >&4 ;;
13916 * ) case "$getspnam_r_proto" in
13917 REENTRANT_PROTO*) ;;
13918 *) getspnam_r_proto="REENTRANT_PROTO_$getspnam_r_proto" ;;
13919 esac
13920 echo "Prototype: $try" ;;
13921 esac
13922 ;;
13923 *) case "$usethreads" in
13924 define) echo "getspnam_r has no prototype, not using it." >&4 ;;
13925 esac
13926 d_getspnam_r=undef
13927 getspnam_r_proto=0
13928 ;;
13929 esac
13930 ;;
13931*) getspnam_r_proto=0
13932 ;;
13933esac
13934
13935: see if gettimeofday or ftime exists
13936set gettimeofday d_gettimeod
13937eval $inlibc
13938case "$d_gettimeod" in
13939"$undef")
13940 set ftime d_ftime
13941 eval $inlibc
13942 ;;
13943*)
13944 val="$undef"; set d_ftime; eval $setvar
13945 ;;
13946esac
13947case "$d_gettimeod$d_ftime" in
13948"$undef$undef")
13949 echo " "
13950 echo 'No ftime() nor gettimeofday() -- timing may be less accurate.' >&4
13951 ;;
13952esac
13953
13954: see if gmtime_r exists
13955set gmtime_r d_gmtime_r
13956eval $inlibc
13957case "$d_gmtime_r" in
13958"$define")
13959 hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
13960 case "$d_gmtime_r_proto:$usethreads" in
13961 ":define") d_gmtime_r_proto=define
13962 set d_gmtime_r_proto gmtime_r $hdrs
13963 eval $hasproto ;;
13964 *) ;;
13965 esac
13966 case "$d_gmtime_r_proto" in
13967 define)
13968 case "$gmtime_r_proto" in
13969 ''|0) try='struct tm* gmtime_r(const time_t*, struct tm*);'
13970 ./protochk "extern $try" $hdrs && gmtime_r_proto=S_TS ;;
13971 esac
13972 case "$gmtime_r_proto" in
13973 ''|0) try='int gmtime_r(const time_t*, struct tm*);'
13974 ./protochk "extern $try" $hdrs && gmtime_r_proto=I_TS ;;
13975 esac
13976 case "$gmtime_r_proto" in
13977 ''|0) d_gmtime_r=undef
13978 gmtime_r_proto=0
13979 echo "Disabling gmtime_r, cannot determine prototype." >&4 ;;
13980 * ) case "$gmtime_r_proto" in
13981 REENTRANT_PROTO*) ;;
13982 *) gmtime_r_proto="REENTRANT_PROTO_$gmtime_r_proto" ;;
13983 esac
13984 echo "Prototype: $try" ;;
13985 esac
13986 ;;
13987 *) case "$usethreads" in
13988 define) echo "gmtime_r has no prototype, not using it." >&4 ;;
13989 esac
13990 d_gmtime_r=undef
13991 gmtime_r_proto=0
13992 ;;
13993 esac
13994 ;;
13995*) gmtime_r_proto=0
13996 ;;
13997esac
13998
13999: see if hasmntopt exists
14000set hasmntopt d_hasmntopt
14001eval $inlibc
14002
14003: see if this is a netinet/in.h or sys/in.h system
14004set netinet/in.h i_niin sys/in.h i_sysin
14005eval $inhdr
14006
14007: see if arpa/inet.h has to be included
14008set arpa/inet.h i_arpainet
14009eval $inhdr
14010
14011: see if htonl --and friends-- exists
14012val=''
14013set htonl val
14014eval $inlibc
14015
14016: Maybe they are macros.
14017case "$val" in
14018$undef)
14019 $cat >htonl.c <<EOM
14020#include <stdio.h>
14021#include <sys/types.h>
14022#$i_niin I_NETINET_IN
14023#$i_sysin I_SYS_IN
14024#$i_arpainet I_ARPA_INET
14025#ifdef I_NETINET_IN
14026#include <netinet/in.h>
14027#endif
14028#ifdef I_SYS_IN
14029#include <sys/in.h>
14030#endif
14031#ifdef I_ARPA_INET
14032#include <arpa/inet.h>
14033#endif
14034#ifdef htonl
14035printf("Defined as a macro.");
14036#endif
14037EOM
14038 $cppstdin $cppflags $cppminus < htonl.c >htonl.E 2>/dev/null
14039 if $contains 'Defined as a macro' htonl.E >/dev/null 2>&1; then
14040 val="$define"
14041 echo "But it seems to be defined as a macro." >&4
14042 fi
14043 $rm -f htonl.?
14044 ;;
14045esac
14046set d_htonl
14047eval $setvar
14048
14049: see if ilogbl exists
14050set ilogbl d_ilogbl
14051eval $inlibc
14052
14053: index or strchr
14054echo " "
14055if set index val -f; eval $csym; $val; then
14056 if set strchr val -f d_strchr; eval $csym; $val; then
14057 if $contains strchr "$strings" >/dev/null 2>&1 ; then
14058 val="$define"
14059 vali="$undef"
14060 echo "strchr() found." >&4
14061 else
14062 val="$undef"
14063 vali="$define"
14064 echo "index() found." >&4
14065 fi
14066 else
14067 val="$undef"
14068 vali="$define"
14069 echo "index() found." >&4
14070 fi
14071else
14072 if set strchr val -f d_strchr; eval $csym; $val; then
14073 val="$define"
14074 vali="$undef"
14075 echo "strchr() found." >&4
14076 else
14077 echo "No index() or strchr() found!" >&4
14078 val="$undef"
14079 vali="$undef"
14080 fi
14081fi
14082set d_strchr; eval $setvar
14083val="$vali"
14084set d_index; eval $setvar
14085
14086: check whether inet_aton exists
14087set inet_aton d_inetaton
14088eval $inlibc
14089
14090: Look for isascii
14091echo " "
14092$cat >isascii.c <<EOCP
14093#include <stdio.h>
14094#include <ctype.h>
14095#$i_stdlib I_STDLIB
14096#ifdef I_STDLIB
14097#include <stdlib.h>
14098#endif
14099int main() {
14100 int c = 'A';
14101 if (isascii(c))
14102 exit(0);
14103 else
14104 exit(1);
14105}
14106EOCP
14107set isascii
14108if eval $compile; then
14109 echo "isascii() found." >&4
14110 val="$define"
14111else
14112 echo "isascii() NOT found." >&4
14113 val="$undef"
14114fi
14115set d_isascii
14116eval $setvar
14117$rm -f isascii*
14118
14119: see if isfinite exists
14120set isfinite d_isfinite
14121eval $inlibc
14122
14123: see if isinf exists
14124set isinf d_isinf
14125eval $inlibc
14126
14127: see if isnan exists
14128set isnan d_isnan
14129eval $inlibc
14130
14131: see if isnanl exists
14132set isnanl d_isnanl
14133eval $inlibc
14134
14135: see if killpg exists
14136set killpg d_killpg
14137eval $inlibc
14138
14139: see if lchown exists
14140echo " "
14141$cat > try.c <<'EOCP'
14142/* System header to define __stub macros and hopefully few prototypes,
14143 which can conflict with char lchown(); below. */
14144#include <assert.h>
14145/* Override any gcc2 internal prototype to avoid an error. */
14146/* We use char because int might match the return type of a gcc2
14147 builtin and then its argument prototype would still apply. */
14148char lchown();
14149int main() {
14150 /* The GNU C library defines this for functions which it implements
14151 to always fail with ENOSYS. Some functions are actually named
14152 something starting with __ and the normal name is an alias. */
14153#if defined (__stub_lchown) || defined (__stub___lchown)
14154choke me
14155#else
14156lchown();
14157#endif
14158; return 0; }
14159EOCP
14160set try
14161if eval $compile; then
14162 $echo "lchown() found." >&4
14163 val="$define"
14164else
14165 $echo "lchown() NOT found." >&4
14166 val="$undef"
14167fi
14168set d_lchown
14169eval $setvar
14170
14171: See if number of significant digits in a double precision number is known
14172echo " "
14173$cat >ldbl_dig.c <<EOM
14174#$i_limits I_LIMITS
14175#$i_float I_FLOAT
14176#ifdef I_LIMITS
14177#include <limits.h>
14178#endif
14179#ifdef I_FLOAT
14180#include <float.h>
14181#endif
14182#ifdef LDBL_DIG
14183printf("Contains LDBL_DIG");
14184#endif
14185EOM
14186$cppstdin $cppflags $cppminus < ldbl_dig.c >ldbl_dig.E 2>/dev/null
14187if $contains 'LDBL_DIG' ldbl_dig.E >/dev/null 2>&1; then
14188 echo "LDBL_DIG found." >&4
14189 val="$define"
14190else
14191 echo "LDBL_DIG NOT found." >&4
14192 val="$undef"
14193fi
14194$rm -f ldbl_dig.?
14195set d_ldbl_dig
14196eval $setvar
14197
14198: see if this is a math.h system
14199set math.h i_math
14200eval $inhdr
14201
14202d_libm_lib_version="$undef"
14203case $i_math in
14204 $define)
14205 : check to see if math.h defines _LIB_VERSION
14206 echo " "
14207 echo "Checking to see if your libm supports _LIB_VERSION..." >&4
14208 $cat >try.c <<EOCP
14209#include <unistd.h>
14210#include <math.h>
14211int main (int argc, char *argv[])
14212{
14213 printf ("%d\n", _LIB_VERSION);
14214 return (0);
14215 } /* main */
14216EOCP
14217 set try
14218 if eval $compile; then
14219 foo=`$run ./try`
14220 echo "Yes, it does ($foo)" >&4
14221 d_libm_lib_version="$define"
14222 else
14223 echo "No, it does not (probably harmless)\n" >&4
14224 fi
14225 $rm -f try.* try core core.try.*
14226 ;;
14227
14228 esac
14229
14230: see if link exists
14231set link d_link
14232eval $inlibc
14233
14234: see if localtime_r exists
14235set localtime_r d_localtime_r
14236eval $inlibc
14237case "$d_localtime_r" in
14238"$define")
14239 hdrs="$i_systypes sys/types.h define stdio.h $i_time time.h $i_systime sys/time.h"
14240 case "$d_localtime_r_proto:$usethreads" in
14241 ":define") d_localtime_r_proto=define
14242 set d_localtime_r_proto localtime_r $hdrs
14243 eval $hasproto ;;
14244 *) ;;
14245 esac
14246 case "$d_localtime_r_proto" in
14247 define)
14248 case "$localtime_r_proto" in
14249 ''|0) try='struct tm* localtime_r(const time_t*, struct tm*);'
14250 ./protochk "extern $try" $hdrs && localtime_r_proto=S_TS ;;
14251 esac
14252 case "$localtime_r_proto" in
14253 ''|0) try='int localtime_r(const time_t*, struct tm*);'
14254 ./protochk "extern $try" $hdrs && localtime_r_proto=I_TS ;;
14255 esac
14256 case "$localtime_r_proto" in
14257 ''|0) d_localtime_r=undef
14258 localtime_r_proto=0
14259 echo "Disabling localtime_r, cannot determine prototype." >&4 ;;
14260 * ) case "$localtime_r_proto" in
14261 REENTRANT_PROTO*) ;;
14262 *) localtime_r_proto="REENTRANT_PROTO_$localtime_r_proto" ;;
14263 esac
14264 echo "Prototype: $try" ;;
14265 esac
14266 ;;
14267 *) case "$usethreads" in
14268 define) echo "localtime_r has no prototype, not using it." >&4 ;;
14269 esac
14270 d_localtime_r=undef
14271 localtime_r_proto=0
14272 ;;
14273 esac
14274 ;;
14275*) localtime_r_proto=0
14276 ;;
14277esac
14278
14279: see if localeconv exists
14280set localeconv d_locconv
14281eval $inlibc
14282
14283: see if lockf exists
14284set lockf d_lockf
14285eval $inlibc
14286
14287: see if prototype for lseek is available
14288echo " "
14289set d_lseekproto lseek $i_systypes sys/types.h $i_unistd unistd.h
14290eval $hasproto
14291
14292: see if lstat exists
14293set lstat d_lstat
14294eval $inlibc
14295
14296: see if madvise exists
14297set madvise d_madvise
14298eval $inlibc
14299
14300: see if malloc_size exists
14301set malloc_size d_malloc_size
14302eval $inlibc
14303
14304: see if malloc_size_good exists
14305set malloc_good_size d_malloc_good_size
14306eval $inlibc
14307
14308: see if mblen exists
14309set mblen d_mblen
14310eval $inlibc
14311
14312: see if mbstowcs exists
14313set mbstowcs d_mbstowcs
14314eval $inlibc
14315
14316: see if mbtowc exists
14317set mbtowc d_mbtowc
14318eval $inlibc
14319
14320: see if memchr exists
14321set memchr d_memchr
14322eval $inlibc
14323
14324: see if memcmp exists
14325set memcmp d_memcmp
14326eval $inlibc
14327
14328: see if memcpy exists
14329set memcpy d_memcpy
14330eval $inlibc
14331
14332: see if memmove exists
14333set memmove d_memmove
14334eval $inlibc
14335
14336: see if memset exists
14337set memset d_memset
14338eval $inlibc
14339
14340: see if mkdir exists
14341set mkdir d_mkdir
14342eval $inlibc
14343
14344: see if mkdtemp exists
14345set mkdtemp d_mkdtemp
14346eval $inlibc
14347
14348: see if mkfifo exists
14349set mkfifo d_mkfifo
14350eval $inlibc
14351
14352: see if mkstemp exists
14353set mkstemp d_mkstemp
14354eval $inlibc
14355
14356: see if mkstemps exists
14357set mkstemps d_mkstemps
14358eval $inlibc
14359
14360: see if mktime exists
14361set mktime d_mktime
14362eval $inlibc
14363
14364: see if this is a sys/mman.h system
14365set sys/mman.h i_sysmman
14366eval $inhdr
14367
14368: see if mmap exists
14369set mmap d_mmap
14370eval $inlibc
14371: see what shmat returns
14372: default to something harmless
14373mmaptype='void *'
14374case "$i_sysmman$d_mmap" in
14375"$define$define")
14376 $cat >mmap.c <<'END'
14377#include <sys/mman.h>
14378void *mmap();
14379END
14380 if $cc $ccflags -c mmap.c >/dev/null 2>&1; then
14381 mmaptype='void *'
14382 else
14383 mmaptype='caddr_t'
14384 fi
14385 echo "and it returns ($mmaptype)." >&4
14386 ;;
14387esac
14388
14389
14390
14391: see if sqrtl exists
14392set sqrtl d_sqrtl
14393eval $inlibc
14394
14395: see if scalbnl exists
14396set scalbnl d_scalbnl
14397eval $inlibc
14398
14399: see if modfl exists
14400set modfl d_modfl
14401eval $inlibc
14402
14403: see if prototype for modfl is available
14404echo " "
14405set d_modflproto modfl $i_math math.h
14406eval $hasproto
14407
14408d_modfl_pow32_bug="$undef"
14409
14410case "$d_longdbl$d_modfl" in
14411$define$define)
14412 $cat <<EOM
14413Checking to see whether your modfl() is okay for large values...
14414EOM
14415$cat >try.c <<EOCP
14416#include <math.h>
14417#include <stdio.h>
14418EOCP
14419if $test "X$d_modflproto" != "X$define"; then
14420 $cat >>try.c <<EOCP
14421/* Sigh. many current glibcs provide the function, but do not prototype it. */
14422long double modfl (long double, long double *);
14423EOCP
14424fi
14425$cat >>try.c <<EOCP
14426int main() {
14427 long double nv = 4294967303.15;
14428 long double v, w;
14429 v = modfl(nv, &w);
14430#ifdef __GLIBC__
14431 printf("glibc");
14432#endif
14433 printf(" %"$sPRIfldbl" %"$sPRIfldbl" %"$sPRIfldbl"\n", nv, v, w);
14434 return 0;
14435}
14436EOCP
14437 case "$osname:$gccversion" in
14438 aix:) saveccflags="$ccflags"
14439 ccflags="$ccflags -qlongdouble" ;; # to avoid core dump
14440 esac
14441 set try
14442 if eval $compile; then
14443 foo=`$run ./try`
14444 case "$foo" in
14445 *" 4294967303.150000 1.150000 4294967302.000000")
14446 echo >&4 "Your modfl() is broken for large values."
14447 d_modfl_pow32_bug="$define"
14448 case "$foo" in
14449 glibc) echo >&4 "You should upgrade your glibc to at least 2.2.2 to get a fixed modfl()."
14450 ;;
14451 esac
14452 ;;
14453 *" 4294967303.150000 0.150000 4294967303.000000")
14454 echo >&4 "Your modfl() seems okay for large values."
14455 ;;
14456 *) echo >&4 "I don't understand your modfl() at all."
14457 d_modfl="$undef"
14458 ;;
14459 esac
14460 $rm -f try.* try core core.try.*
14461 else
14462 echo "I cannot figure out whether your modfl() is okay, assuming it isn't."
14463 d_modfl="$undef"
14464 fi
14465 case "$osname:$gccversion" in
14466 aix:) ccflags="$saveccflags" ;; # restore
14467 esac
14468 ;;
14469esac
14470
14471if $test "$uselongdouble" = "$define"; then
14472 message=""
14473 if $test "$d_sqrtl" != "$define"; then
14474 message="$message sqrtl"
14475 fi
14476 if $test "$d_modfl" != "$define"; then
14477 if $test "$d_aintl:$d_copysignl" = "$define:$define"; then
14478 echo "You have both aintl and copysignl, so I can emulate modfl."
14479 else
14480 message="$message modfl"
14481 fi
14482 fi
14483 if $test "$d_frexpl" != "$define"; then
14484 if $test "$d_ilogbl:$d_scalbnl" = "$define:$define"; then
14485 echo "You have both ilogbl and scalbnl, so I can emulate frexpl."
14486 else
14487 message="$message frexpl"
14488 fi
14489 fi
14490
14491 if $test "$message" != ""; then
14492 $cat <<EOM >&4
14493
14494*** You requested the use of long doubles but you do not seem to have
14495*** the following mathematical functions needed for long double support:
14496*** $message
14497*** Please rerun Configure without -Duselongdouble and/or -Dusemorebits.
14498*** Cannot continue, aborting.
14499
14500EOM
14501
14502 exit 1
14503 fi
14504fi
14505
14506: see if mprotect exists
14507set mprotect d_mprotect
14508eval $inlibc
14509
14510: see if msgctl exists
14511set msgctl d_msgctl
14512eval $inlibc
14513
14514: see if msgget exists
14515set msgget d_msgget
14516eval $inlibc
14517
14518: see if msgsnd exists
14519set msgsnd d_msgsnd
14520eval $inlibc
14521
14522: see if msgrcv exists
14523set msgrcv d_msgrcv
14524eval $inlibc
14525
14526: see how much of the 'msg*(2)' library is present.
14527h_msg=true
14528echo " "
14529case "$d_msgctl$d_msgget$d_msgsnd$d_msgrcv" in
14530*"$undef"*) h_msg=false;;
14531esac
14532case "$osname" in
14533freebsd)
14534 case "`ipcs 2>&1`" in
14535 "SVID messages"*"not configured"*)
14536 echo "Your $osname does not have the msg*(2) configured." >&4
14537 h_msg=false
14538 val="$undef"
14539 set msgctl d_msgctl
14540 eval $setvar
14541 set msgget d_msgget
14542 eval $setvar
14543 set msgsnd d_msgsnd
14544 eval $setvar
14545 set msgrcv d_msgrcv
14546 eval $setvar
14547 ;;
14548 esac
14549 ;;
14550esac
14551: we could also check for sys/ipc.h ...
14552if $h_msg && $test `./findhdr sys/msg.h`; then
14553 echo "You have the full msg*(2) library." >&4
14554 val="$define"
14555else
14556 echo "You don't have the full msg*(2) library." >&4
14557 val="$undef"
14558fi
14559set d_msg
14560eval $setvar
14561
14562
14563echo " "
14564echo "Checking to see if your system supports struct msghdr..." >&4
14565set d_msghdr_s msghdr $i_systypes sys/types.h $d_socket sys/socket.h $i_sysuio sys/uio.h
14566eval $hasstruct
14567case "$d_msghdr_s" in
14568"$define") echo "Yes, it does." ;;
14569*) echo "No, it doesn't." ;;
14570esac
14571
14572
14573: see if msync exists
14574set msync d_msync
14575eval $inlibc
14576
14577: see if munmap exists
14578set munmap d_munmap
14579eval $inlibc
14580
14581: see if nice exists
14582set nice d_nice
14583eval $inlibc
14584
14585: see if this is a langinfo.h system
14586set langinfo.h i_langinfo
14587eval $inhdr
14588
14589: see if nl_langinfo exists
14590set nl_langinfo d_nl_langinfo
14591eval $inlibc
14592
14593: check for length of character
14594echo " "
14595case "$charsize" in
14596'')
14597 echo "Checking to see how big your characters are (hey, you never know)..." >&4
14598 $cat >try.c <<EOCP
14599#include <stdio.h>
14600#$i_stdlib I_STDLIB
14601#ifdef I_STDLIB
14602#include <stdlib.h>
14603#endif
14604int main()
14605{
14606 printf("%d\n", (int)sizeof(char));
14607 exit(0);
14608}
14609EOCP
14610 set try
14611 if eval $compile_ok; then
14612 dflt=`$run ./try`
14613 else
14614 dflt='1'
14615 echo "(I can't seem to compile the test program. Guessing...)"
14616 fi
14617 ;;
14618*)
14619 dflt="$charsize"
14620 ;;
14621esac
14622rp="What is the size of a character (in bytes)?"
14623. ./myread
14624charsize="$ans"
14625$rm -f try.c try
14626
14627: check for volatile keyword
14628echo " "
14629echo 'Checking to see if your C compiler knows about "volatile"...' >&4
14630$cat >try.c <<'EOCP'
14631int main()
14632{
14633 typedef struct _goo_struct goo_struct;
14634 goo_struct * volatile goo = ((goo_struct *)0);
14635 struct _goo_struct {
14636 long long_int;
14637 int reg_int;
14638 char char_var;
14639 };
14640 typedef unsigned short foo_t;
14641 char *volatile foo;
14642 volatile int bar;
14643 volatile foo_t blech;
14644 foo = foo;
14645}
14646EOCP
14647if $cc -c $ccflags try.c >/dev/null 2>&1 ; then
14648 val="$define"
14649 echo "Yup, it does."
14650else
14651 val="$undef"
14652 echo "Nope, it doesn't."
14653fi
14654set d_volatile
14655eval $setvar
14656$rm -f try.*
14657
14658
14659echo " "
14660$echo "Choosing the C types to be used for Perl's internal types..." >&4
14661
14662case "$use64bitint:$d_quad:$quadtype" in
14663define:define:?*)
14664 ivtype="$quadtype"
14665 uvtype="$uquadtype"
14666 ivsize=8
14667 uvsize=8
14668 ;;
14669*) ivtype="long"
14670 uvtype="unsigned long"
14671 ivsize=$longsize
14672 uvsize=$longsize
14673 ;;
14674esac
14675
14676case "$uselongdouble:$d_longdbl" in
14677define:define)
14678 nvtype="long double"
14679 nvsize=$longdblsize
14680 ;;
14681*) nvtype=double
14682 nvsize=$doublesize
14683 ;;
14684esac
14685
14686$echo "(IV will be "$ivtype", $ivsize bytes)"
14687$echo "(UV will be "$uvtype", $uvsize bytes)"
14688$echo "(NV will be "$nvtype", $nvsize bytes)"
14689
14690$cat >try.c <<EOCP
14691#$i_inttypes I_INTTYPES
14692#ifdef I_INTTYPES
14693#include <inttypes.h>
14694#endif
14695#include <stdio.h>
14696int main() {
14697#ifdef INT8
14698 int8_t i = INT8_MAX;
14699 uint8_t u = UINT8_MAX;
14700 printf("int8_t\n");
14701#endif
14702#ifdef INT16
14703 int16_t i = INT16_MAX;
14704 uint16_t i = UINT16_MAX;
14705 printf("int16_t\n");
14706#endif
14707#ifdef INT32
14708 int32_t i = INT32_MAX;
14709 uint32_t u = UINT32_MAX;
14710 printf("int32_t\n");
14711#endif
14712}
14713EOCP
14714
14715case "$i8type" in
14716'') case "$charsize" in
14717 1) i8type=char
14718 u8type="unsigned char"
14719 i8size=$charsize
14720 u8size=$charsize
14721 ;;
14722 esac
14723 ;;
14724esac
14725case "$i8type" in
14726'') set try -DINT8
14727 if eval $compile; then
14728 case "`$run ./try`" in
14729 int8_t) i8type=int8_t
14730 u8type=uint8_t
14731 i8size=1
14732 u8size=1
14733 ;;
14734 esac
14735 fi
14736 ;;
14737esac
14738case "$i8type" in
14739'') if $test $charsize -ge 1; then
14740 i8type=char
14741 u8type="unsigned char"
14742 i8size=$charsize
14743 u8size=$charsize
14744 fi
14745 ;;
14746esac
14747
14748case "$i16type" in
14749'') case "$shortsize" in
14750 2) i16type=short
14751 u16type="unsigned short"
14752 i16size=$shortsize
14753 u16size=$shortsize
14754 ;;
14755 esac
14756 ;;
14757esac
14758case "$i16type" in
14759'') set try -DINT16
14760 if eval $compile; then
14761 case "`$run ./try`" in
14762 int16_t)
14763 i16type=int16_t
14764 u16type=uint16_t
14765 i16size=2
14766 u16size=2
14767 ;;
14768 esac
14769 fi
14770 ;;
14771esac
14772case "$i16type" in
14773'') if $test $shortsize -ge 2; then
14774 i16type=short
14775 u16type="unsigned short"
14776 i16size=$shortsize
14777 u16size=$shortsize
14778 fi
14779 ;;
14780esac
14781
14782case "$i32type" in
14783'') case "$longsize" in
14784 4) i32type=long
14785 u32type="unsigned long"
14786 i32size=$longsize
14787 u32size=$longsize
14788 ;;
14789 *) case "$intsize" in
14790 4) i32type=int
14791 u32type="unsigned int"
14792 i32size=$intsize
14793 u32size=$intsize
14794 ;;
14795 esac
14796 ;;
14797 esac
14798 ;;
14799esac
14800case "$i32type" in
14801'') set try -DINT32
14802 if eval $compile; then
14803 case "`$run ./try`" in
14804 int32_t)
14805 i32type=int32_t
14806 u32type=uint32_t
14807 i32size=4
14808 u32size=4
14809 ;;
14810 esac
14811 fi
14812 ;;
14813esac
14814case "$i32type" in
14815'') if $test $intsize -ge 4; then
14816 i32type=int
14817 u32type="unsigned int"
14818 i32size=$intsize
14819 u32size=$intsize
14820 fi
14821 ;;
14822esac
14823
14824case "$i64type" in
14825'') case "$d_quad:$quadtype" in
14826 define:?*)
14827 i64type="$quadtype"
14828 u64type="$uquadtype"
14829 i64size=8
14830 u64size=8
14831 ;;
14832 esac
14833 ;;
14834esac
14835
14836$echo "Checking how many bits of your UVs your NVs can preserve..." >&4
14837: volatile so that the compiler has to store it out to memory.
14838if test X"$d_volatile" = X"$define"; then
14839 volatile=volatile
14840fi
14841$cat <<EOP >try.c
14842#include <stdio.h>
14843#$i_stdlib I_STDLIB
14844#ifdef I_STDLIB
14845#include <stdlib.h>
14846#endif
14847#include <sys/types.h>
14848#include <signal.h>
14849#ifdef SIGFPE
14850$volatile int bletched = 0;
14851$signal_t blech(s) int s; { bletched = 1; }
14852#endif
14853int main() {
14854 $uvtype u = 0;
14855 $nvtype d;
14856 int n = 8 * $uvsize;
14857 int i;
14858#ifdef SIGFPE
14859 signal(SIGFPE, blech);
14860#endif
14861
14862 for (i = 0; i < n; i++) {
14863 u = u << 1 | ($uvtype)1;
14864 d = ($nvtype)u;
14865 if (($uvtype)d != u)
14866 break;
14867 if (d <= 0)
14868 break;
14869 d = ($nvtype)(u - 1);
14870 if (($uvtype)d != (u - 1))
14871 break;
14872#ifdef SIGFPE
14873 if (bletched) {
14874 break;
14875#endif
14876 }
14877 }
14878 printf("%d\n", ((i == n) ? -n : i));
14879 exit(0);
14880}
14881EOP
14882set try
14883
14884d_nv_preserves_uv="$undef"
14885if eval $compile; then
14886 nv_preserves_uv_bits="`$run ./try`"
14887fi
14888case "$nv_preserves_uv_bits" in
14889\-[1-9]*)
14890 nv_preserves_uv_bits=`expr 0 - $nv_preserves_uv_bits`
14891 $echo "Your NVs can preserve all $nv_preserves_uv_bits bits of your UVs." 2>&1
14892 d_nv_preserves_uv="$define"
14893 ;;
14894[1-9]*) $echo "Your NVs can preserve only $nv_preserves_uv_bits bits of your UVs." 2>&1
14895 d_nv_preserves_uv="$undef" ;;
14896*) $echo "Can't figure out how many bits your NVs preserve." 2>&1
14897 nv_preserves_uv_bits="$undef" ;;
14898esac
14899
14900$rm -f try.* try
14901
14902$echo "Checking whether NV 0.0 is all bits zero in memory..." >&4
14903: volatile so that the compiler has to store it out to memory.
14904if test X"$d_volatile" = X"$define"; then
14905 volatile=volatile
14906fi
14907$cat <<EOP >try.c
14908#include <stdio.h>
14909#$i_stdlib I_STDLIB
14910#ifdef I_STDLIB
14911#include <stdlib.h>
14912#endif
14913#$i_string I_STRING
14914#ifdef I_STRING
14915# include <string.h>
14916#else
14917# include <strings.h>
14918#endif
14919#include <sys/types.h>
14920#include <signal.h>
14921#ifdef SIGFPE
14922$volatile int bletched = 0;
14923$signal_t blech(s) int s; { bletched = 1; }
14924#endif
14925
14926int checkit($nvtype d, char *where) {
14927 unsigned char *p = (char *)&d;
14928 unsigned char *end = p + sizeof(d);
14929 int fail = 0;
14930
14931 while (p < end)
14932 fail += *p++;
14933
14934 if (!fail)
14935 return 0;
14936
14937 p = (char *)&d;
14938 printf("No - %s: 0x", where);
14939 while (p < end)
14940 printf ("%02X", *p++);
14941 printf("\n");
14942 return 1;
14943}
14944
14945int main(int argc, char **argv) {
14946 $nvtype d = 0.0;
14947 int fail = 0;
14948 fail += checkit(d, "0.0");
14949
14950 /* The compiler shouldn't be assuming that bletched is 0 */
14951 d = bletched;
14952
14953 fail += checkit(d, "bleched");
14954
14955#ifdef SIGFPE
14956 signal(SIGFPE, blech);
14957#endif
14958
14959 /* Paranoia - the compiler should have no way of knowing that ANSI says
14960 that argv[argc] will always be NULL. Actually, if it did assume this it
14961 would be buggy, as this is C and main() can be called from elsewhere in
14962 the program. */
14963 d = argv[argc] ? 1 : 0;
14964
14965 if (d) {
14966 printf("Odd argv[argc]=%p, d=%g\n", argv[argc], d);
14967 }
14968
14969 fail += checkit(d, "ternary");
14970
14971 memset(&d, sizeof(d), argv[argc] ? 1 : 0);
14972
14973 if (d != 0.0) {
14974 printf("No - memset doesn't give 0.0\n");
14975 /* This might just blow up: */
14976 printf("(gives %g)\n", d);
14977 return 1;
14978 }
14979
14980#ifdef SIGFPE
14981 if (bletched) {
14982 printf("No - something bleched\n");
14983 return 1;
14984 }
14985#endif
14986 if (fail) {
14987 printf("No - %d fail(s)\n", fail);
14988 return 1;
14989 }
14990 printf("Yes\n");
14991 return 0;
14992}
14993EOP
14994set try
14995
14996d_nv_zero_is_allbits_zero="$undef"
14997if eval $compile; then
14998 xxx="`$run ./try`"
14999 case "$?" in
15000 0)
15001 case "$xxx" in
15002 Yes) cat >&4 <<EOM
150030.0 is represented as all bits zero in memory
15004EOM
15005 d_nv_zero_is_allbits_zero="$define"
15006 ;;
15007 *) cat >&4 <<EOM
150080.0 is not represented as all bits zero in memory
15009EOM
15010 d_nv_zero_is_allbits_zero="$undef"
15011 ;;
15012 esac
15013 ;;
15014 *) cat >&4 <<EOM
150150.0 is not represented as all bits zero in memory
15016EOM
15017 d_nv_zero_is_allbits_zero="$undef"
15018 ;;
15019 esac
15020fi
15021
15022$rm -f try.* try
15023
15024
15025: check for off64_t
15026echo " "
15027echo "Checking to see if you have off64_t..." >&4
15028$cat >try.c <<EOCP
15029#include <sys/types.h>
15030#include <unistd.h>
15031int main() { off64_t x = 7; }
15032EOCP
15033set try
15034if eval $compile; then
15035 val="$define"
15036 echo "You have off64_t."
15037else
15038 val="$undef"
15039 echo "You do not have off64_t."
15040 case "$lseeksize" in
15041 8) echo "(Your off_t is 64 bits, so you could use that.)" ;;
15042 esac
15043fi
15044$rm -f try.* try
15045set d_off64_t
15046eval $setvar
15047
15048: how to create joinable pthreads
15049if test "X$usethreads" = "X$define" -a "X$i_pthread" = "X$define"; then
15050 echo " "
15051 echo "Checking what constant to use for creating joinable pthreads..." >&4
15052 $cat >try.c <<'EOCP'
15053#include <pthread.h>
15054int main() {
15055 int detachstate = JOINABLE;
15056}
15057EOCP
15058 set try -DJOINABLE=PTHREAD_CREATE_JOINABLE
15059 if eval $compile; then
15060 echo "You seem to use PTHREAD_CREATE_JOINABLE." >&4
15061 val="$undef" # Yes, undef.
15062 set d_old_pthread_create_joinable
15063 eval $setvar
15064 val=""
15065 set old_pthread_create_joinable
15066 eval $setvar
15067 else
15068 set try -DJOINABLE=PTHREAD_CREATE_UNDETACHED
15069 if eval $compile; then
15070 echo "You seem to use PTHREAD_CREATE_UNDETACHED." >&4
15071 val="$define"
15072 set d_old_pthread_create_joinable
15073 eval $setvar
15074 val=PTHREAD_CREATE_UNDETACHED
15075 set old_pthread_create_joinable
15076 eval $setvar
15077 else
15078 set try -DJOINABLE=__UNDETACHED
15079 if eval $compile; then
15080 echo "You seem to use __UNDETACHED." >&4
15081 val="$define"
15082 set d_old_pthread_create_joinable
15083 eval $setvar
15084 val=__UNDETACHED
15085 set old_pthread_create_joinable
15086 eval $setvar
15087 else
15088 echo "Egads, nothing obvious found. Guessing that you use 0." >&4
15089 val="$define"
15090 set d_old_pthread_create_joinable
15091 eval $setvar
15092 val=0
15093 set old_pthread_create_joinable
15094 eval $setvar
15095 fi
15096 fi
15097 fi
15098 $rm -f try try.*
15099else
15100 d_old_pthread_create_joinable="$undef"
15101 old_pthread_create_joinable=""
15102fi
15103
15104: see if pause exists
15105set pause d_pause
15106eval $inlibc
15107
15108: see if pipe exists
15109set pipe d_pipe
15110eval $inlibc
15111
15112: see if poll exists
15113set poll d_poll
15114eval $inlibc
15115
15116: see if readlink exists
15117set readlink d_readlink
15118eval $inlibc
15119
15120echo " "
15121procselfexe=''
15122val="$undef"
15123case "$d_readlink" in
15124"$define")
15125 if $issymlink /proc/self/exe ; then
15126 $ls -l /proc/self/exe > reflect
15127 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
15128 echo "You have Linux-like /proc/self/exe."
15129 procselfexe='"/proc/self/exe"'
15130 val="$define"
15131 fi
15132 fi
15133 if $issymlink /proc/curproc/file ; then
15134 $ls -l /proc/curproc/file > reflect
15135 if $contains /`basename $ls` reflect >/dev/null 2>&1; then
15136 echo "You have BSD-like /proc/curproc/file."
15137 procselfexe='"/proc/curproc/file"'
15138 val="$define"
15139 fi
15140 fi
15141 ;;
15142esac
15143$rm -f reflect
15144set d_procselfexe
15145eval $setvar
15146
15147: see whether the pthread_atfork exists
15148$cat >try.c <<EOP
15149#include <pthread.h>
15150#include <stdio.h>
15151int main() {
15152#ifdef PTHREAD_ATFORK
15153 pthread_atfork(NULL,NULL,NULL);
15154#endif
15155}
15156EOP
15157
15158: see if pthread_atfork exists
15159set try -DPTHREAD_ATFORK
15160if eval $compile; then
15161 val="$define"
15162else
15163 val="$undef"
15164fi
15165case "$usethreads" in
15166$define)
15167 case "$val" in
15168 $define) echo 'pthread_atfork found.' >&4 ;;
15169 *) echo 'pthread_atfork NOT found.' >&4 ;;
15170 esac
15171esac
15172set d_pthread_atfork
15173eval $setvar
15174
15175: see if pthread_attr_setscope exists
15176set pthread_attr_setscope d_pthread_attr_setscope
15177eval $inlibc
15178
15179
15180: see whether the various POSIXish _yields exist
15181$cat >try.c <<EOP
15182#include <pthread.h>
15183#include <stdio.h>
15184int main() {
15185#ifdef SCHED_YIELD
15186 sched_yield();
15187#else
15188#ifdef PTHREAD_YIELD
15189 pthread_yield();
15190#else
15191#ifdef PTHREAD_YIELD_NULL
15192 pthread_yield(NULL);
15193#endif
15194#endif
15195#endif
15196}
15197EOP
15198: see if sched_yield exists
15199set try -DSCHED_YIELD
15200if eval $compile; then
15201 val="$define"
15202 sched_yield='sched_yield()'
15203else
15204 val="$undef"
15205fi
15206case "$usethreads" in
15207$define)
15208 case "$val" in
15209 $define) echo 'sched_yield() found.' >&4 ;;
15210 *) echo 'sched_yield() NOT found.' >&4 ;;
15211 esac
15212esac
15213set d_sched_yield
15214eval $setvar
15215
15216: see if pthread_yield exists
15217set try -DPTHREAD_YIELD
15218if eval $compile; then
15219 val="$define"
15220 case "$sched_yield" in
15221 '') sched_yield='pthread_yield()' ;;
15222 esac
15223else
15224 set try -DPTHREAD_YIELD_NULL
15225 if eval $compile; then
15226 val="$define"
15227 case "$sched_yield" in
15228 '') sched_yield='pthread_yield(NULL)' ;;
15229 esac
15230 else
15231 val="$undef"
15232 fi
15233fi
15234case "$usethreads" in
15235$define)
15236 case "$val" in
15237 $define) echo 'pthread_yield() found.' >&4 ;;
15238 *) echo 'pthread_yield() NOT found.' >&4 ;;
15239 esac
15240 ;;
15241esac
15242set d_pthread_yield
15243eval $setvar
15244
15245case "$sched_yield" in
15246'') sched_yield=undef ;;
15247esac
15248
15249$rm -f try try.*
15250
15251: see if random_r exists
15252set random_r d_random_r
15253eval $inlibc
15254case "$d_random_r" in
15255"$define")
15256 hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
15257 case "$d_random_r_proto:$usethreads" in
15258 ":define") d_random_r_proto=define
15259 set d_random_r_proto random_r $hdrs
15260 eval $hasproto ;;
15261 *) ;;
15262 esac
15263 case "$d_random_r_proto" in
15264 define)
15265 case "$random_r_proto" in
15266 ''|0) try='int random_r(int*, struct random_data*);'
15267 ./protochk "extern $try" $hdrs && random_r_proto=I_iS ;;
15268 esac
15269 case "$random_r_proto" in
15270 ''|0) try='int random_r(long*, struct random_data*);'
15271 ./protochk "extern $try" $hdrs && random_r_proto=I_lS ;;
15272 esac
15273 case "$random_r_proto" in
15274 ''|0) try='int random_r(struct random_data*, int32_t*);'
15275 ./protochk "extern $try" $hdrs && random_r_proto=I_St ;;
15276 esac
15277 case "$random_r_proto" in
15278 ''|0) d_random_r=undef
15279 random_r_proto=0
15280 echo "Disabling random_r, cannot determine prototype." >&4 ;;
15281 * ) case "$random_r_proto" in
15282 REENTRANT_PROTO*) ;;
15283 *) random_r_proto="REENTRANT_PROTO_$random_r_proto" ;;
15284 esac
15285 echo "Prototype: $try" ;;
15286 esac
15287 ;;
15288 *) case "$usethreads" in
15289 define) echo "random_r has no prototype, not using it." >&4 ;;
15290 esac
15291 d_random_r=undef
15292 random_r_proto=0
15293 ;;
15294 esac
15295 ;;
15296*) random_r_proto=0
15297 ;;
15298esac
15299
15300: see if readdir and friends exist
15301set readdir d_readdir
15302eval $inlibc
15303set seekdir d_seekdir
15304eval $inlibc
15305set telldir d_telldir
15306eval $inlibc
15307set rewinddir d_rewinddir
15308eval $inlibc
15309
15310: see if readdir64_r exists
15311set readdir64_r d_readdir64_r
15312eval $inlibc
15313case "$d_readdir64_r" in
15314"$define")
15315 hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
15316 case "$d_readdir64_r_proto:$usethreads" in
15317 ":define") d_readdir64_r_proto=define
15318 set d_readdir64_r_proto readdir64_r $hdrs
15319 eval $hasproto ;;
15320 *) ;;
15321 esac
15322 case "$d_readdir64_r_proto" in
15323 define)
15324 case "$readdir64_r_proto" in
15325 ''|0) try='int readdir64_r(DIR*, struct dirent64*, struct dirent64**);'
15326 ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TSR ;;
15327 esac
15328 case "$readdir64_r_proto" in
15329 ''|0) try='int readdir64_r(DIR*, struct dirent64*);'
15330 ./protochk "extern $try" $hdrs && readdir64_r_proto=I_TS ;;
15331 esac
15332 case "$readdir64_r_proto" in
15333 ''|0) d_readdir64_r=undef
15334 readdir64_r_proto=0
15335 echo "Disabling readdir64_r, cannot determine prototype." >&4 ;;
15336 * ) case "$readdir64_r_proto" in
15337 REENTRANT_PROTO*) ;;
15338 *) readdir64_r_proto="REENTRANT_PROTO_$readdir64_r_proto" ;;
15339 esac
15340 echo "Prototype: $try" ;;
15341 esac
15342 ;;
15343 *) case "$usethreads" in
15344 define) echo "readdir64_r has no prototype, not using it." >&4 ;;
15345 esac
15346 d_readdir64_r=undef
15347 readdir64_r_proto=0
15348 ;;
15349 esac
15350 ;;
15351*) readdir64_r_proto=0
15352 ;;
15353esac
15354
15355: see if readdir_r exists
15356set readdir_r d_readdir_r
15357eval $inlibc
15358case "$d_readdir_r" in
15359"$define")
15360 hdrs="$i_systypes sys/types.h define stdio.h $i_dirent dirent.h"
15361 case "$d_readdir_r_proto:$usethreads" in
15362 ":define") d_readdir_r_proto=define
15363 set d_readdir_r_proto readdir_r $hdrs
15364 eval $hasproto ;;
15365 *) ;;
15366 esac
15367 case "$d_readdir_r_proto" in
15368 define)
15369 case "$readdir_r_proto" in
15370 ''|0) try='int readdir_r(DIR*, struct dirent*, struct dirent**);'
15371 ./protochk "extern $try" $hdrs && readdir_r_proto=I_TSR ;;
15372 esac
15373 case "$readdir_r_proto" in
15374 ''|0) try='int readdir_r(DIR*, struct dirent*);'
15375 ./protochk "extern $try" $hdrs && readdir_r_proto=I_TS ;;
15376 esac
15377 case "$readdir_r_proto" in
15378 ''|0) d_readdir_r=undef
15379 readdir_r_proto=0
15380 echo "Disabling readdir_r, cannot determine prototype." >&4 ;;
15381 * ) case "$readdir_r_proto" in
15382 REENTRANT_PROTO*) ;;
15383 *) readdir_r_proto="REENTRANT_PROTO_$readdir_r_proto" ;;
15384 esac
15385 echo "Prototype: $try" ;;
15386 esac
15387 ;;
15388 *) case "$usethreads" in
15389 define) echo "readdir_r has no prototype, not using it." >&4 ;;
15390 esac
15391 d_readdir_r=undef
15392 readdir_r_proto=0
15393 ;;
15394 esac
15395 ;;
15396*) readdir_r_proto=0
15397 ;;
15398esac
15399
15400: see if readv exists
15401set readv d_readv
15402eval $inlibc
15403
15404: see if recvmsg exists
15405set recvmsg d_recvmsg
15406eval $inlibc
15407
15408: see if rename exists
15409set rename d_rename
15410eval $inlibc
15411
15412: see if rmdir exists
15413set rmdir d_rmdir
15414eval $inlibc
15415
15416: see if memory.h is available.
15417val=''
15418set memory.h val
15419eval $inhdr
15420
15421: See if it conflicts with string.h
15422case "$val" in
15423$define)
15424 case "$strings" in
15425 '') ;;
15426 *)
15427 $cppstdin $cppflags $cppminus < $strings > mem.h
15428 if $contains 'memcpy' mem.h >/dev/null 2>&1; then
15429 echo " "
15430 echo "We won't be including <memory.h>."
15431 val="$undef"
15432 fi
15433 $rm -f mem.h
15434 ;;
15435 esac
15436esac
15437set i_memory
15438eval $setvar
15439
15440: can bcopy handle overlapping blocks?
15441echo " "
15442val="$undef"
15443case "$d_memmove" in
15444"$define") echo "I'll use memmove() instead of bcopy() for overlapping copies." ;;
15445*) case "$d_bcopy" in
15446 "$define")
15447 echo "Checking to see if bcopy() can do overlapping copies..." >&4
15448 $cat >try.c <<EOCP
15449#$i_memory I_MEMORY
15450#$i_stdlib I_STDLIB
15451#$i_string I_STRING
15452#$i_unistd I_UNISTD
15453EOCP
15454 $cat >>try.c <<'EOCP'
15455#include <stdio.h>
15456#ifdef I_MEMORY
15457# include <memory.h>
15458#endif
15459#ifdef I_STDLIB
15460# include <stdlib.h>
15461#endif
15462#ifdef I_STRING
15463# include <string.h>
15464#else
15465# include <strings.h>
15466#endif
15467#ifdef I_UNISTD
15468# include <unistd.h> /* Needed for NetBSD */
15469#endif
15470int main()
15471{
15472char buf[128], abc[128];
15473char *b;
15474int len;
15475int off;
15476int align;
15477
15478/* Copy "abcde..." string to char abc[] so that gcc doesn't
15479 try to store the string in read-only memory. */
15480bcopy("abcdefghijklmnopqrstuvwxyz0123456789", abc, 36);
15481
15482for (align = 7; align >= 0; align--) {
15483 for (len = 36; len; len--) {
15484 b = buf+align;
15485 bcopy(abc, b, len);
15486 for (off = 1; off <= len; off++) {
15487 bcopy(b, b+off, len);
15488 bcopy(b+off, b, len);
15489 if (bcmp(b, abc, len))
15490 exit(1);
15491 }
15492 }
15493}
15494exit(0);
15495}
15496EOCP
15497 set try
15498 if eval $compile_ok; then
15499 if ./try 2>/dev/null; then
15500 echo "Yes, it can."
15501 val="$define"
15502 else
15503 echo "It can't, sorry."
15504 fi
15505 else
15506 echo "(I can't compile the test program, so we'll assume not...)"
15507 fi
15508 ;;
15509 esac
15510 $rm -f try.* try core
15511 ;;
15512esac
15513set d_safebcpy
15514eval $setvar
15515
15516: can memcpy handle overlapping blocks?
15517echo " "
15518val="$undef"
15519case "$d_memmove" in
15520"$define") echo "I'll use memmove() instead of memcpy() for overlapping copies." ;;
15521*) case "$d_memcpy" in
15522 "$define")
15523 echo "Checking to see if memcpy() can do overlapping copies..." >&4
15524 $cat >try.c <<EOCP
15525#$i_memory I_MEMORY
15526#$i_stdlib I_STDLIB
15527#$i_string I_STRING
15528#$i_unistd I_UNISTD
15529EOCP
15530 $cat >>try.c <<'EOCP'
15531#include <stdio.h>
15532#ifdef I_MEMORY
15533# include <memory.h>
15534#endif
15535#ifdef I_STDLIB
15536# include <stdlib.h>
15537#endif
15538#ifdef I_STRING
15539# include <string.h>
15540#else
15541# include <strings.h>
15542#endif
15543#ifdef I_UNISTD
15544# include <unistd.h> /* Needed for NetBSD */
15545#endif
15546int main()
15547{
15548char buf[128], abc[128];
15549char *b;
15550int len;
15551int off;
15552int align;
15553
15554/* Copy "abcde..." string to char abc[] so that gcc doesn't
15555 try to store the string in read-only memory. */
15556memcpy(abc, "abcdefghijklmnopqrstuvwxyz0123456789", 36);
15557
15558for (align = 7; align >= 0; align--) {
15559 for (len = 36; len; len--) {
15560 b = buf+align;
15561 memcpy(b, abc, len);
15562 for (off = 1; off <= len; off++) {
15563 memcpy(b+off, b, len);
15564 memcpy(b, b+off, len);
15565 if (memcmp(b, abc, len))
15566 exit(1);
15567 }
15568 }
15569}
15570exit(0);
15571}
15572EOCP
15573 set try
15574 if eval $compile_ok; then
15575 if ./try 2>/dev/null; then
15576 echo "Yes, it can."
15577 val="$define"
15578 else
15579 echo "It can't, sorry."
15580 fi
15581 else
15582 echo "(I can't compile the test program, so we'll assume not...)"
15583 fi
15584 ;;
15585 esac
15586 $rm -f try.* try core
15587 ;;
15588esac
15589set d_safemcpy
15590eval $setvar
15591
15592: can memcmp be trusted to compare relative magnitude?
15593val="$undef"
15594case "$d_memcmp" in
15595"$define")
15596 echo " "
15597 echo "Checking if your memcmp() can compare relative magnitude..." >&4
15598 $cat >try.c <<EOCP
15599#$i_memory I_MEMORY
15600#$i_stdlib I_STDLIB
15601#$i_string I_STRING
15602#$i_unistd I_UNISTD
15603EOCP
15604 $cat >>try.c <<'EOCP'
15605#include <stdio.h>
15606#ifdef I_MEMORY
15607# include <memory.h>
15608#endif
15609#ifdef I_STDLIB
15610# include <stdlib.h>
15611#endif
15612#ifdef I_STRING
15613# include <string.h>
15614#else
15615# include <strings.h>
15616#endif
15617#ifdef I_UNISTD
15618# include <unistd.h> /* Needed for NetBSD */
15619#endif
15620int main()
15621{
15622char a = -1;
15623char b = 0;
15624if ((a < b) && memcmp(&a, &b, 1) < 0)
15625 exit(1);
15626exit(0);
15627}
15628EOCP
15629 set try
15630 if eval $compile_ok; then
15631 if $run ./try 2>/dev/null; then
15632 echo "Yes, it can."
15633 val="$define"
15634 else
15635 echo "No, it can't (it uses signed chars)."
15636 fi
15637 else
15638 echo "(I can't compile the test program, so we'll assume not...)"
15639 fi
15640 ;;
15641esac
15642$rm -f try.* try core
15643set d_sanemcmp
15644eval $setvar
15645
15646: see if prototype for sbrk is available
15647echo " "
15648set d_sbrkproto sbrk $i_unistd unistd.h
15649eval $hasproto
15650
15651: see if select exists
15652set select d_select
15653eval $inlibc
15654
15655: see if semctl exists
15656set semctl d_semctl
15657eval $inlibc
15658
15659: see if semget exists
15660set semget d_semget
15661eval $inlibc
15662
15663: see if semop exists
15664set semop d_semop
15665eval $inlibc
15666
15667: see how much of the 'sem*(2)' library is present.
15668h_sem=true
15669echo " "
15670case "$d_semctl$d_semget$d_semop" in
15671*"$undef"*) h_sem=false;;
15672esac
15673case "$osname" in
15674freebsd)
15675 case "`ipcs 2>&1`" in
15676 "SVID messages"*"not configured"*)
15677 echo "Your $osname does not have the sem*(2) configured." >&4
15678 h_sem=false
15679 val="$undef"
15680 set semctl d_semctl
15681 eval $setvar
15682 set semget d_semget
15683 eval $setvar
15684 set semop d_semop
15685 eval $setvar
15686 ;;
15687 esac
15688 ;;
15689esac
15690: we could also check for sys/ipc.h ...
15691if $h_sem && $test `./findhdr sys/sem.h`; then
15692 echo "You have the full sem*(2) library." >&4
15693 val="$define"
15694else
15695 echo "You don't have the full sem*(2) library." >&4
15696 val="$undef"
15697fi
15698set d_sem
15699eval $setvar
15700
15701: see whether sys/sem.h defines union semun
15702echo " "
15703$cat > try.c <<'END'
15704#include <sys/types.h>
15705#include <sys/ipc.h>
15706#include <sys/sem.h>
15707int main () { union semun semun; semun.buf = 0; }
15708END
15709set try
15710if eval $compile; then
15711 echo "You have union semun in <sys/sem.h>." >&4
15712 val="$define"
15713else
15714 echo "You do not have union semun in <sys/sem.h>." >&4
15715 val="$undef"
15716fi
15717$rm -f try try.c
15718set d_union_semun
15719eval $setvar
15720
15721: see how to do semctl IPC_STAT
15722case "$d_sem" in
15723$define)
15724 echo " "
15725 $cat > try.h <<END
15726#ifndef S_IRUSR
15727# ifdef S_IREAD
15728# define S_IRUSR S_IREAD
15729# define S_IWUSR S_IWRITE
15730# define S_IXUSR S_IEXEC
15731# else
15732# define S_IRUSR 0400
15733# define S_IWUSR 0200
15734# define S_IXUSR 0100
15735# endif
15736# define S_IRGRP (S_IRUSR>>3)
15737# define S_IWGRP (S_IWUSR>>3)
15738# define S_IXGRP (S_IXUSR>>3)
15739# define S_IROTH (S_IRUSR>>6)
15740# define S_IWOTH (S_IWUSR>>6)
15741# define S_IXOTH (S_IXUSR>>6)
15742#endif
15743#ifndef S_IRWXU
15744# define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
15745# define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
15746# define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
15747#endif
15748END
15749 : see whether semctl IPC_STAT can use union semun
15750 case "$d_semctl_semun" in
15751 '')
15752 val="$undef"
15753 $cat > try.c <<END
15754#include <sys/types.h>
15755#include <sys/ipc.h>
15756#include <sys/sem.h>
15757#include <sys/stat.h>
15758#include <stdio.h>
15759#include <errno.h>
15760#include "try.h"
15761#ifndef errno
15762extern int errno;
15763#endif
15764#$d_union_semun HAS_UNION_SEMUN
15765int main() {
15766 union semun
15767#ifndef HAS_UNION_SEMUN
15768 {
15769 int val;
15770 struct semid_ds *buf;
15771 unsigned short *array;
15772 }
15773#endif
15774 arg;
15775 int sem, st;
15776
15777#if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) && defined(S_IRWXO) && defined(IPC_CREAT)
15778 sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
15779 if (sem > -1) {
15780 struct semid_ds argbuf;
15781 arg.buf = &argbuf;
15782# ifdef IPC_STAT
15783 st = semctl(sem, 0, IPC_STAT, arg);
15784 if (st == 0)
15785 printf("semun\n");
15786 else
15787# endif /* IPC_STAT */
15788 printf("semctl IPC_STAT failed: errno = %d\n", errno);
15789# ifdef IPC_RMID
15790 if (semctl(sem, 0, IPC_RMID, arg) != 0)
15791# endif /* IPC_RMID */
15792 printf("semctl IPC_RMID failed: errno = %d\n", errno);
15793 } else
15794#endif /* IPC_PRIVATE && ... */
15795 printf("semget failed: errno = %d\n", errno);
15796 return 0;
15797}
15798END
15799 set try
15800 if eval $compile; then
15801 xxx=`$run ./try`
15802 case "$xxx" in
15803 semun) val="$define" ;;
15804 esac
15805 fi
15806 $rm -f try try.c
15807 set d_semctl_semun
15808 eval $setvar
15809 ;;
15810 esac
15811 case "$d_semctl_semun" in
15812 $define)
15813 echo "You can use union semun for semctl IPC_STAT." >&4
15814 also='also'
15815 ;;
15816 *) echo "You cannot use union semun for semctl IPC_STAT." >&4
15817 also=''
15818 ;;
15819 esac
15820
15821 : see whether semctl IPC_STAT can use struct semid_ds pointer
15822 case "$d_semctl_semid_ds" in
15823 '')
15824 val="$undef"
15825 $cat > try.c <<'END'
15826#include <sys/types.h>
15827#include <sys/ipc.h>
15828#include <sys/sem.h>
15829#include <sys/stat.h>
15830#include "try.h"
15831#include <stdio.h>
15832#include <errno.h>
15833#ifndef errno
15834extern int errno;
15835#endif
15836int main() {
15837 struct semid_ds arg;
15838 int sem, st;
15839
15840#if defined(IPC_PRIVATE) && defined(S_IRWXU) && defined(S_IRWXG) && defined(S_IRWXO) && defined(IPC_CREAT)
15841 sem = semget(IPC_PRIVATE, 1, S_IRWXU|S_IRWXG|S_IRWXO|IPC_CREAT);
15842 if (sem > -1) {
15843# ifdef IPC_STAT
15844 st = semctl(sem, 0, IPC_STAT, &arg);
15845 if (st == 0)
15846 printf("semid_ds\n");
15847 else
15848# endif /* IPC_STAT */
15849 printf("semctl IPC_STAT failed: errno = %d\n", errno);
15850# ifdef IPC_RMID
15851 if (semctl(sem, 0, IPC_RMID, &arg) != 0)
15852# endif /* IPC_RMID */
15853 printf("semctl IPC_RMID failed: errno = %d\n", errno);
15854 } else
15855#endif /* IPC_PRIVATE && ... */
15856 printf("semget failed: errno = %d\n", errno);
15857
15858 return 0;
15859}
15860END
15861 set try
15862 if eval $compile; then
15863 xxx=`$run ./try`
15864 case "$xxx" in
15865 semid_ds) val="$define" ;;
15866 esac
15867 fi
15868 $rm -f try try.c
15869 set d_semctl_semid_ds
15870 eval $setvar
15871 ;;
15872 esac
15873 case "$d_semctl_semid_ds" in
15874 $define)
15875 echo "You can $also use struct semid_ds* for semctl IPC_STAT." >&4
15876 ;;
15877 *) echo "You cannot use struct semid_ds* for semctl IPC_STAT." >&4
15878 ;;
15879 esac
15880 $rm -f try.h
15881 ;;
15882*) val="$undef"
15883
15884 # We do not have the full sem*(2) library, so assume we can not
15885 # use either.
15886
15887 set d_semctl_semun
15888 eval $setvar
15889
15890 set d_semctl_semid_ds
15891 eval $setvar
15892 ;;
15893esac
15894
15895: see if sendmsg exists
15896set sendmsg d_sendmsg
15897eval $inlibc
15898
15899: see if setegid exists
15900set setegid d_setegid
15901eval $inlibc
15902
15903: see if seteuid exists
15904set seteuid d_seteuid
15905eval $inlibc
15906
15907: see if setgrent exists
15908set setgrent d_setgrent
15909eval $inlibc
15910
15911: see if setgrent_r exists
15912set setgrent_r d_setgrent_r
15913eval $inlibc
15914case "$d_setgrent_r" in
15915"$define")
15916 hdrs="$i_systypes sys/types.h define stdio.h $i_grp grp.h"
15917 case "$d_setgrent_r_proto:$usethreads" in
15918 ":define") d_setgrent_r_proto=define
15919 set d_setgrent_r_proto setgrent_r $hdrs
15920 eval $hasproto ;;
15921 *) ;;
15922 esac
15923 case "$d_setgrent_r_proto" in
15924 define)
15925 case "$setgrent_r_proto" in
15926 ''|0) try='int setgrent_r(FILE**);'
15927 ./protochk "extern $try" $hdrs && setgrent_r_proto=I_H ;;
15928 esac
15929 case "$setgrent_r_proto" in
15930 ''|0) try='void setgrent_r(FILE**);'
15931 ./protochk "extern $try" $hdrs && setgrent_r_proto=V_H ;;
15932 esac
15933 case "$setgrent_r_proto" in
15934 ''|0) d_setgrent_r=undef
15935 setgrent_r_proto=0
15936 echo "Disabling setgrent_r, cannot determine prototype." >&4 ;;
15937 * ) case "$setgrent_r_proto" in
15938 REENTRANT_PROTO*) ;;
15939 *) setgrent_r_proto="REENTRANT_PROTO_$setgrent_r_proto" ;;
15940 esac
15941 echo "Prototype: $try" ;;
15942 esac
15943 ;;
15944 *) case "$usethreads" in
15945 define) echo "setgrent_r has no prototype, not using it." >&4 ;;
15946 esac
15947 d_setgrent_r=undef
15948 setgrent_r_proto=0
15949 ;;
15950 esac
15951 ;;
15952*) setgrent_r_proto=0
15953 ;;
15954esac
15955
15956: see if sethostent exists
15957set sethostent d_sethent
15958eval $inlibc
15959
15960: see if sethostent_r exists
15961set sethostent_r d_sethostent_r
15962eval $inlibc
15963case "$d_sethostent_r" in
15964"$define")
15965 hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
15966 case "$d_sethostent_r_proto:$usethreads" in
15967 ":define") d_sethostent_r_proto=define
15968 set d_sethostent_r_proto sethostent_r $hdrs
15969 eval $hasproto ;;
15970 *) ;;
15971 esac
15972 case "$d_sethostent_r_proto" in
15973 define)
15974 case "$sethostent_r_proto" in
15975 ''|0) try='int sethostent_r(int, struct hostent_data*);'
15976 ./protochk "extern $try" $hdrs && sethostent_r_proto=I_ID ;;
15977 esac
15978 case "$sethostent_r_proto" in
15979 ''|0) try='void sethostent_r(int, struct hostent_data*);'
15980 ./protochk "extern $try" $hdrs && sethostent_r_proto=V_ID ;;
15981 esac
15982 case "$sethostent_r_proto" in
15983 ''|0) d_sethostent_r=undef
15984 sethostent_r_proto=0
15985 echo "Disabling sethostent_r, cannot determine prototype." >&4 ;;
15986 * ) case "$sethostent_r_proto" in
15987 REENTRANT_PROTO*) ;;
15988 *) sethostent_r_proto="REENTRANT_PROTO_$sethostent_r_proto" ;;
15989 esac
15990 echo "Prototype: $try" ;;
15991 esac
15992 ;;
15993 *) case "$usethreads" in
15994 define) echo "sethostent_r has no prototype, not using it." >&4 ;;
15995 esac
15996 d_sethostent_r=undef
15997 sethostent_r_proto=0
15998 ;;
15999 esac
16000 ;;
16001*) sethostent_r_proto=0
16002 ;;
16003esac
16004
16005: see if setitimer exists
16006set setitimer d_setitimer
16007eval $inlibc
16008
16009: see if setlinebuf exists
16010set setlinebuf d_setlinebuf
16011eval $inlibc
16012
16013: see if setlocale exists
16014set setlocale d_setlocale
16015eval $inlibc
16016
16017: see if locale.h is available
16018set locale.h i_locale
16019eval $inhdr
16020
16021: see if setlocale_r exists
16022set setlocale_r d_setlocale_r
16023eval $inlibc
16024case "$d_setlocale_r" in
16025"$define")
16026 hdrs="$i_systypes sys/types.h define stdio.h $i_locale locale.h"
16027 case "$d_setlocale_r_proto:$usethreads" in
16028 ":define") d_setlocale_r_proto=define
16029 set d_setlocale_r_proto setlocale_r $hdrs
16030 eval $hasproto ;;
16031 *) ;;
16032 esac
16033 case "$d_setlocale_r_proto" in
16034 define)
16035 case "$setlocale_r_proto" in
16036 ''|0) try='int setlocale_r(int, const char*, char*, int);'
16037 ./protochk "extern $try" $hdrs && setlocale_r_proto=I_ICBI ;;
16038 esac
16039 case "$setlocale_r_proto" in
16040 ''|0) d_setlocale_r=undef
16041 setlocale_r_proto=0
16042 echo "Disabling setlocale_r, cannot determine prototype." >&4 ;;
16043 * ) case "$setlocale_r_proto" in
16044 REENTRANT_PROTO*) ;;
16045 *) setlocale_r_proto="REENTRANT_PROTO_$setlocale_r_proto" ;;
16046 esac
16047 echo "Prototype: $try" ;;
16048 esac
16049 ;;
16050 *) case "$usethreads" in
16051 define) echo "setlocale_r has no prototype, not using it." >&4 ;;
16052 esac
16053 d_setlocale_r=undef
16054 setlocale_r_proto=0
16055 ;;
16056 esac
16057 ;;
16058*) setlocale_r_proto=0
16059 ;;
16060esac
16061
16062: see if setnetent exists
16063set setnetent d_setnent
16064eval $inlibc
16065
16066: see if setnetent_r exists
16067set setnetent_r d_setnetent_r
16068eval $inlibc
16069case "$d_setnetent_r" in
16070"$define")
16071 hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
16072 case "$d_setnetent_r_proto:$usethreads" in
16073 ":define") d_setnetent_r_proto=define
16074 set d_setnetent_r_proto setnetent_r $hdrs
16075 eval $hasproto ;;
16076 *) ;;
16077 esac
16078 case "$d_setnetent_r_proto" in
16079 define)
16080 case "$setnetent_r_proto" in
16081 ''|0) try='int setnetent_r(int, struct netent_data*);'
16082 ./protochk "extern $try" $hdrs && setnetent_r_proto=I_ID ;;
16083 esac
16084 case "$setnetent_r_proto" in
16085 ''|0) try='void setnetent_r(int, struct netent_data*);'
16086 ./protochk "extern $try" $hdrs && setnetent_r_proto=V_ID ;;
16087 esac
16088 case "$setnetent_r_proto" in
16089 ''|0) d_setnetent_r=undef
16090 setnetent_r_proto=0
16091 echo "Disabling setnetent_r, cannot determine prototype." >&4 ;;
16092 * ) case "$setnetent_r_proto" in
16093 REENTRANT_PROTO*) ;;
16094 *) setnetent_r_proto="REENTRANT_PROTO_$setnetent_r_proto" ;;
16095 esac
16096 echo "Prototype: $try" ;;
16097 esac
16098 ;;
16099 *) case "$usethreads" in
16100 define) echo "setnetent_r has no prototype, not using it." >&4 ;;
16101 esac
16102 d_setnetent_r=undef
16103 setnetent_r_proto=0
16104 ;;
16105 esac
16106 ;;
16107*) setnetent_r_proto=0
16108 ;;
16109esac
16110
16111: see if setprotoent exists
16112set setprotoent d_setpent
16113eval $inlibc
16114
16115: see if setpgid exists
16116set setpgid d_setpgid
16117eval $inlibc
16118
16119: see if setpgrp2 exists
16120set setpgrp2 d_setpgrp2
16121eval $inlibc
16122
16123: see if setpriority exists
16124set setpriority d_setprior
16125eval $inlibc
16126
16127: see if setproctitle exists
16128set setproctitle d_setproctitle
16129eval $inlibc
16130
16131: see if setprotoent_r exists
16132set setprotoent_r d_setprotoent_r
16133eval $inlibc
16134case "$d_setprotoent_r" in
16135"$define")
16136 hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
16137 case "$d_setprotoent_r_proto:$usethreads" in
16138 ":define") d_setprotoent_r_proto=define
16139 set d_setprotoent_r_proto setprotoent_r $hdrs
16140 eval $hasproto ;;
16141 *) ;;
16142 esac
16143 case "$d_setprotoent_r_proto" in
16144 define)
16145 case "$setprotoent_r_proto" in
16146 ''|0) try='int setprotoent_r(int, struct protoent_data*);'
16147 ./protochk "extern $try" $hdrs && setprotoent_r_proto=I_ID ;;
16148 esac
16149 case "$setprotoent_r_proto" in
16150 ''|0) try='void setprotoent_r(int, struct protoent_data*);'
16151 ./protochk "extern $try" $hdrs && setprotoent_r_proto=V_ID ;;
16152 esac
16153 case "$setprotoent_r_proto" in
16154 ''|0) d_setprotoent_r=undef
16155 setprotoent_r_proto=0
16156 echo "Disabling setprotoent_r, cannot determine prototype." >&4 ;;
16157 * ) case "$setprotoent_r_proto" in
16158 REENTRANT_PROTO*) ;;
16159 *) setprotoent_r_proto="REENTRANT_PROTO_$setprotoent_r_proto" ;;
16160 esac
16161 echo "Prototype: $try" ;;
16162 esac
16163 ;;
16164 *) case "$usethreads" in
16165 define) echo "setprotoent_r has no prototype, not using it." >&4 ;;
16166 esac
16167 d_setprotoent_r=undef
16168 setprotoent_r_proto=0
16169 ;;
16170 esac
16171 ;;
16172*) setprotoent_r_proto=0
16173 ;;
16174esac
16175
16176: see if setpwent exists
16177set setpwent d_setpwent
16178eval $inlibc
16179
16180: see if setpwent_r exists
16181set setpwent_r d_setpwent_r
16182eval $inlibc
16183case "$d_setpwent_r" in
16184"$define")
16185 hdrs="$i_systypes sys/types.h define stdio.h $i_pwd pwd.h"
16186 case "$d_setpwent_r_proto:$usethreads" in
16187 ":define") d_setpwent_r_proto=define
16188 set d_setpwent_r_proto setpwent_r $hdrs
16189 eval $hasproto ;;
16190 *) ;;
16191 esac
16192 case "$d_setpwent_r_proto" in
16193 define)
16194 case "$setpwent_r_proto" in
16195 ''|0) try='int setpwent_r(FILE**);'
16196 ./protochk "extern $try" $hdrs && setpwent_r_proto=I_H ;;
16197 esac
16198 case "$setpwent_r_proto" in
16199 ''|0) try='void setpwent_r(FILE**);'
16200 ./protochk "extern $try" $hdrs && setpwent_r_proto=V_H ;;
16201 esac
16202 case "$setpwent_r_proto" in
16203 ''|0) d_setpwent_r=undef
16204 setpwent_r_proto=0
16205 echo "Disabling setpwent_r, cannot determine prototype." >&4 ;;
16206 * ) case "$setpwent_r_proto" in
16207 REENTRANT_PROTO*) ;;
16208 *) setpwent_r_proto="REENTRANT_PROTO_$setpwent_r_proto" ;;
16209 esac
16210 echo "Prototype: $try" ;;
16211 esac
16212 ;;
16213 *) case "$usethreads" in
16214 define) echo "setpwent_r has no prototype, not using it." >&4 ;;
16215 esac
16216 d_setpwent_r=undef
16217 setpwent_r_proto=0
16218 ;;
16219 esac
16220 ;;
16221*) setpwent_r_proto=0
16222 ;;
16223esac
16224
16225: see if setregid exists
16226set setregid d_setregid
16227eval $inlibc
16228set setresgid d_setresgid
16229eval $inlibc
16230
16231: see if setreuid exists
16232set setreuid d_setreuid
16233eval $inlibc
16234set setresuid d_setresuid
16235eval $inlibc
16236
16237: see if setrgid exists
16238set setrgid d_setrgid
16239eval $inlibc
16240
16241: see if setruid exists
16242set setruid d_setruid
16243eval $inlibc
16244
16245: see if setservent exists
16246set setservent d_setsent
16247eval $inlibc
16248
16249: see if setservent_r exists
16250set setservent_r d_setservent_r
16251eval $inlibc
16252case "$d_setservent_r" in
16253"$define")
16254 hdrs="$i_systypes sys/types.h define stdio.h $i_netdb netdb.h"
16255 case "$d_setservent_r_proto:$usethreads" in
16256 ":define") d_setservent_r_proto=define
16257 set d_setservent_r_proto setservent_r $hdrs
16258 eval $hasproto ;;
16259 *) ;;
16260 esac
16261 case "$d_setservent_r_proto" in
16262 define)
16263 case "$setservent_r_proto" in
16264 ''|0) try='int setservent_r(int, struct servent_data*);'
16265 ./protochk "extern $try" $hdrs && setservent_r_proto=I_ID ;;
16266 esac
16267 case "$setservent_r_proto" in
16268 ''|0) try='void setservent_r(int, struct servent_data*);'
16269 ./protochk "extern $try" $hdrs && setservent_r_proto=V_ID ;;
16270 esac
16271 case "$setservent_r_proto" in
16272 ''|0) d_setservent_r=undef
16273 setservent_r_proto=0
16274 echo "Disabling setservent_r, cannot determine prototype." >&4 ;;
16275 * ) case "$setservent_r_proto" in
16276 REENTRANT_PROTO*) ;;
16277 *) setservent_r_proto="REENTRANT_PROTO_$setservent_r_proto" ;;
16278 esac
16279 echo "Prototype: $try" ;;
16280 esac
16281 ;;
16282 *) case "$usethreads" in
16283 define) echo "setservent_r has no prototype, not using it." >&4 ;;
16284 esac
16285 d_setservent_r=undef
16286 setservent_r_proto=0
16287 ;;
16288 esac
16289 ;;
16290*) setservent_r_proto=0
16291 ;;
16292esac
16293
16294: see if setsid exists
16295set setsid d_setsid
16296eval $inlibc
16297
16298: see if setvbuf exists
16299set setvbuf d_setvbuf
16300eval $inlibc
16301
16302: see if sfio.h is available
16303set sfio.h i_sfio
16304eval $inhdr
16305
16306
16307: see if sfio library is available
16308case "$i_sfio" in
16309$define)
16310 val=''
16311 set sfreserve val
16312 eval $inlibc
16313 ;;
16314*)
16315 val="$undef"
16316 ;;
16317esac
16318: Ok, but do we want to use it.
16319case "$val" in
16320$define)
16321 case "$usesfio" in
16322 true|$define|[yY]*) dflt='y';;
16323 *) dflt='n';;
16324 esac
16325 echo "$package can use the sfio library, but it is experimental."
16326 case "$useperlio" in
16327 "$undef")
16328 echo "For sfio also the PerlIO abstraction layer is needed."
16329 echo "Earlier you said you wouldn't want that."
16330 ;;
16331 esac
16332 rp="You seem to have sfio available, do you want to try using it?"
16333 . ./myread
16334 case "$ans" in
16335 y|Y) echo "Ok, turning on both sfio and PerlIO, then."
16336 useperlio="$define"
16337 val="$define"
16338 ;;
16339 *) echo "Ok, avoiding sfio this time. I'll use stdio instead."
16340 val="$undef"
16341 ;;
16342 esac
16343 ;;
16344*) case "$usesfio" in
16345 true|$define|[yY]*)
16346 echo "Sorry, cannot find sfio on this machine." >&4
16347 echo "Ignoring your setting of usesfio=$usesfio." >&4
16348 val="$undef"
16349 ;;
16350 esac
16351 ;;
16352esac
16353set d_sfio
16354eval $setvar
16355case "$d_sfio" in
16356$define) usesfio='true';;
16357*) usesfio='false';;
16358esac
16359case "$d_sfio" in
16360$define) ;;
16361*) : Remove sfio from list of libraries to use
16362 case "$libs" in
16363 *-lsfio*)
16364 echo "Removing unneeded -lsfio from library list" >&4
16365 set `echo X $libs | $sed -e 's/-lsfio / /' -e 's/-lsfio$//'`
16366 shift
16367 libs="$*"
16368 echo "libs = $libs" >&4
16369 ;;
16370 esac
16371;;
16372esac
16373
16374
16375: see if shmctl exists
16376set shmctl d_shmctl
16377eval $inlibc
16378
16379: see if shmget exists
16380set shmget d_shmget
16381eval $inlibc
16382
16383: see if shmat exists
16384set shmat d_shmat
16385eval $inlibc
16386: see what shmat returns
16387case "$d_shmat" in
16388"$define")
16389 $cat >shmat.c <<'END'
16390#include <sys/shm.h>
16391void *shmat();
16392END
16393 if $cc $ccflags -c shmat.c >/dev/null 2>&1; then
16394 shmattype='void *'
16395 else
16396 shmattype='char *'
16397 fi
16398 echo "and it returns ($shmattype)." >&4
16399 : see if a prototype for shmat is available
16400 xxx=`./findhdr sys/shm.h`
16401 $cppstdin $cppflags $cppminus < $xxx > shmat.c 2>/dev/null
16402 if $contains 'shmat.*(' shmat.c >/dev/null 2>&1; then
16403 val="$define"
16404 else
16405 val="$undef"
16406 fi
16407 $rm -f shmat.[co]
16408 ;;
16409*)
16410 val="$undef"
16411 ;;
16412esac
16413set d_shmatprototype
16414eval $setvar
16415
16416: see if shmdt exists
16417set shmdt d_shmdt
16418eval $inlibc
16419
16420: see how much of the 'shm*(2)' library is present.
16421h_shm=true
16422echo " "
16423case "$d_shmctl$d_shmget$d_shmat$d_shmdt" in
16424*"$undef"*) h_shm=false;;
16425esac
16426case "$osname" in
16427freebsd)
16428 case "`ipcs 2>&1`" in
16429 "SVID shared memory"*"not configured"*)
16430 echo "Your $osname does not have the shm*(2) configured." >&4
16431 h_shm=false
16432 val="$undef"
16433 set shmctl d_shmctl
16434 evat $setvar
16435 set shmget d_shmget
16436 evat $setvar
16437 set shmat d_shmat
16438 evat $setvar
16439 set shmdt d_shmdt
16440 evat $setvar
16441 ;;
16442 esac
16443 ;;
16444esac
16445: we could also check for sys/ipc.h ...
16446if $h_shm && $test `./findhdr sys/shm.h`; then
16447 echo "You have the full shm*(2) library." >&4
16448 val="$define"
16449else
16450 echo "You don't have the full shm*(2) library." >&4
16451 val="$undef"
16452fi
16453set d_shm
16454eval $setvar
16455
16456echo " "
16457: see if we have sigaction
16458if set sigaction val -f d_sigaction; eval $csym; $val; then
16459 echo 'sigaction() found.' >&4
16460 $cat > try.c <<EOP
16461#include <stdio.h>
16462#include <sys/types.h>
16463#include <signal.h>
16464#$i_stdlib I_STDLIB
16465#ifdef I_STDLIB
16466#include <stdlib.h>
16467#endif
16468int main()
16469{
16470 struct sigaction act, oact;
16471 act.sa_flags = 0;
16472 oact.sa_handler = 0;
16473 /* so that act and oact are used */
16474 exit(act.sa_flags == 0 && oact.sa_handler == 0);
16475}
16476EOP
16477 set try
16478 if eval $compile_ok; then
16479 val="$define"
16480 else
16481 echo "But you don't seem to have a useable struct sigaction." >&4
16482 val="$undef"
16483 fi
16484else
16485 echo 'sigaction NOT found.' >&4
16486 val="$undef"
16487fi
16488set d_sigaction; eval $setvar
16489$rm -f try try$_o try.c
16490
16491: see if sigprocmask exists
16492set sigprocmask d_sigprocmask
16493eval $inlibc
16494
16495: see if sigsetjmp exists
16496echo " "
16497case "$d_sigsetjmp" in
16498'')
16499 $cat >try.c <<EOP
16500#include <setjmp.h>
16501#$i_stdlib I_STDLIB
16502#ifdef I_STDLIB
16503#include <stdlib.h>
16504#endif
16505sigjmp_buf env;
16506int set = 1;
16507int main()
16508{
16509 if (sigsetjmp(env,1))
16510 exit(set);
16511 set = 0;
16512 siglongjmp(env, 1);
16513 exit(1);
16514}
16515EOP
16516 set try
16517 if eval $compile; then
16518 if $run ./try >/dev/null 2>&1; then
16519 echo "POSIX sigsetjmp found." >&4
16520 val="$define"
16521 else
16522 $cat >&4 <<EOM
16523Uh-Oh! You have POSIX sigsetjmp and siglongjmp, but they do not work properly!!
16524I'll ignore them.
16525EOM
16526 val="$undef"
16527 fi
16528 else
16529 echo "sigsetjmp not found." >&4
16530 val="$undef"
16531 fi
16532 ;;
16533*) val="$d_sigsetjmp"
16534 case "$d_sigsetjmp" in
16535 $define) echo "POSIX sigsetjmp found." >&4;;
16536 $undef) echo "sigsetjmp not found." >&4;;
16537 esac
16538 ;;
16539esac
16540set d_sigsetjmp
16541eval $setvar
16542$rm -f try.c try
16543
16544: see if snprintf exists
16545set snprintf d_snprintf
16546eval $inlibc
16547
16548: see if vsnprintf exists
16549set vsnprintf d_vsnprintf
16550eval $inlibc
16551
16552case "$d_snprintf-$d_vsnprintf" in
16553"$define-$define")
16554 $cat <<EOM
16555Checking whether your snprintf() and vsnprintf() work okay...
16556EOM
16557 $cat >try.c <<'EOCP'
16558/* v?snprintf testing logic courtesy of Russ Allbery.
16559 * According to C99:
16560 * - if the buffer is too short it still must be \0-terminated
16561 * - if the buffer is too short the potentially required length
16562 * must be returned and not -1
16563 * - if the buffer is NULL the potentially required length
16564 * must be returned and not -1 or core dump
16565 */
16566#include <stdio.h>
16567#include <stdarg.h>
16568
16569char buf[2];
16570
16571int test (char *format, ...)
16572{
16573 va_list args;
16574 int count;
16575
16576 va_start (args, format);
16577 count = vsnprintf (buf, sizeof buf, format, args);
16578 va_end (args);
16579 return count;
16580}
16581
16582int main ()
16583{
16584 return ((test ("%s", "abcd") == 4 && buf[0] == 'a' && buf[1] == '\0'
16585 && snprintf (NULL, 0, "%s", "abcd") == 4) ? 0 : 1);
16586}
16587EOCP
16588 set try
16589 if eval $compile; then
16590 `$run ./try`
16591 case "$?" in
16592 0) echo "Your snprintf() and vsnprintf() seem to be working okay." ;;
16593 *) cat <<EOM >&4
16594Your snprintf() and snprintf() don't seem to be working okay.
16595EOM
16596 d_snprintf="$undef"
16597 d_vsnprintf="$undef"
16598 ;;
16599 esac
16600 else
16601 echo "(I can't seem to compile the test program--assuming they don't)"
16602 d_snprintf="$undef"
16603 d_vsnprintf="$undef"
16604 fi
16605 $rm -f try.* try core core.try.*
16606 ;;
16607esac
16608
16609: see if sockatmark exists
16610set sockatmark d_sockatmark
16611eval $inlibc
16612
16613: see if prototype for sockatmark is available
16614echo " "
16615set d_sockatmarkproto sockatmark $d_socket sys/socket.h
16616eval $hasproto
16617
16618: see if socks5_init exists
16619set socks5_init d_socks5_init
16620eval $inlibc
16621
16622: see if sprintf returns the length of the string in the buffer as per ANSI
16623$echo "Checking whether sprintf returns the length of the string..." >&4
16624$cat <<EOP >try.c
16625#include <stdio.h>
16626#$i_stdlib I_STDLIB
16627#ifdef I_STDLIB
16628#include <stdlib.h>
16629#endif
16630#$i_string I_STRING
16631#ifdef I_STRING
16632# include <string.h>
16633#else
16634# include <strings.h>
16635#endif
16636#$i_math I_MATH
16637#ifdef I_MATH
16638#include <math.h>
16639#endif
16640
16641char buffer[256];
16642
16643int check (size_t expect, int test) {
16644 size_t got = strlen(buffer);
16645 if (expect == got)
16646 return 0;
16647
16648 printf("expected %ld, got %ld in test %d '%s'\n", (long) expect, (long) got,
16649 test, buffer);
16650 exit (test);
16651}
16652
16653int main(int argc, char **argv) {
16654 int test = 0;
16655
16656 check(sprintf(buffer, ""), ++test);
16657 check(sprintf(buffer, "%s %s", "perl", "rules"), ++test);
16658 check(sprintf(buffer, "I like %g", atan2(0,-1)), ++test);
16659
16660 return 0;
16661}
16662EOP
16663set try
16664
16665d_sprintf_returns_strlen="$undef"
16666if eval $compile; then
16667 xxx="`$run ./try`"
16668 case "$?" in
16669 0) cat >&4 <<EOM
16670sprintf returns the length of the string (as ANSI says it should)
16671EOM
16672 d_sprintf_returns_strlen="$define"
16673 ;;
16674 *) cat >&4 <<EOM
16675sprintf does not return the length of the string (how old is this system?)
16676EOM
16677 d_sprintf_returns_strlen="$undef"
16678 ;;
16679 esac
16680fi
16681
16682$rm -f try.* try
16683
16684: see if srand48_r exists
16685set srand48_r d_srand48_r
16686eval $inlibc
16687case "$d_srand48_r" in
16688"$define")
16689 hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
16690 case "$d_srand48_r_proto:$usethreads" in
16691 ":define") d_srand48_r_proto=define
16692 set d_srand48_r_proto srand48_r $hdrs
16693 eval $hasproto ;;
16694 *) ;;
16695 esac
16696 case "$d_srand48_r_proto" in
16697 define)
16698 case "$srand48_r_proto" in
16699 ''|0) try='int srand48_r(long, struct drand48_data*);'
16700 ./protochk "extern $try" $hdrs && srand48_r_proto=I_LS ;;
16701 esac
16702 case "$srand48_r_proto" in
16703 ''|0) d_srand48_r=undef
16704 srand48_r_proto=0
16705 echo "Disabling srand48_r, cannot determine prototype." >&4 ;;
16706 * ) case "$srand48_r_proto" in
16707 REENTRANT_PROTO*) ;;
16708 *) srand48_r_proto="REENTRANT_PROTO_$srand48_r_proto" ;;
16709 esac
16710 echo "Prototype: $try" ;;
16711 esac
16712 ;;
16713 *) case "$usethreads" in
16714 define) echo "srand48_r has no prototype, not using it." >&4 ;;
16715 esac
16716 d_srand48_r=undef
16717 srand48_r_proto=0
16718 ;;
16719 esac
16720 ;;
16721*) srand48_r_proto=0
16722 ;;
16723esac
16724
16725: see if srandom_r exists
16726set srandom_r d_srandom_r
16727eval $inlibc
16728case "$d_srandom_r" in
16729"$define")
16730 hdrs="$i_systypes sys/types.h define stdio.h $i_stdlib stdlib.h"
16731 case "$d_srandom_r_proto:$usethreads" in
16732 ":define") d_srandom_r_proto=define
16733 set d_srandom_r_proto srandom_r $hdrs
16734 eval $hasproto ;;
16735 *) ;;
16736 esac
16737 case "$d_srandom_r_proto" in
16738 define)
16739 case "$srandom_r_proto" in
16740 ''|0) try='int srandom_r(unsigned int, struct random_data*);'
16741 ./protochk "extern $try" $hdrs && srandom_r_proto=I_TS ;;
16742 esac
16743 case "$srandom_r_proto" in
16744 ''|0) d_srandom_r=undef
16745 srandom_r_proto=0
16746 echo "Disabling srandom_r, cannot determine prototype." >&4 ;;
16747 * ) case "$srandom_r_proto" in
16748 REENTRANT_PROTO*) ;;
16749 *) srandom_r_proto="REENTRANT_PROTO_$srandom_r_proto" ;;
16750 esac
16751 echo "Prototype: $try" ;;
16752 esac
16753 ;;
16754 *) case "$usethreads" in
16755 define) echo "srandom_r has no prototype, not using it." >&4 ;;
16756 esac
16757 d_srandom_r=undef
16758 srandom_r_proto=0
16759 ;;
16760 esac
16761 ;;
16762*) srandom_r_proto=0
16763 ;;
16764esac
16765
16766: see if prototype for setresgid is available
16767echo " "
16768set d_sresgproto setresgid $i_unistd unistd.h
16769eval $hasproto
16770
16771: see if prototype for setresuid is available
16772echo " "
16773set d_sresuproto setresuid $i_unistd unistd.h
16774eval $hasproto
16775
16776: see if sys/stat.h is available
16777set sys/stat.h i_sysstat
16778eval $inhdr
16779
16780
16781: see if stat knows about block sizes
16782echo " "
16783echo "Checking to see if your struct stat has st_blocks field..." >&4
16784set d_statblks stat st_blocks $i_sysstat sys/stat.h
16785eval $hasfield
16786
16787
16788: see if this is a sys/vfs.h system
16789set sys/vfs.h i_sysvfs
16790eval $inhdr
16791
16792
16793: see if this is a sys/statfs.h system
16794set sys/statfs.h i_sysstatfs
16795eval $inhdr
16796
16797
16798echo " "
16799echo "Checking to see if your system supports struct statfs..." >&4
16800set d_statfs_s statfs $i_systypes sys/types.h $i_sysparam sys/param.h $i_sysmount sys/mount.h $i_sysvfs sys/vfs.h $i_sysstatfs sys/statfs.h
16801eval $hasstruct
16802case "$d_statfs_s" in
16803"$define") echo "Yes, it does." ;;
16804*) echo "No, it doesn't." ;;
16805esac
16806
16807
16808
16809: see if struct statfs knows about f_flags
16810case "$d_statfs_s" in
16811define)
16812 echo " "
16813 echo "Checking to see if your struct statfs has f_flags field..." >&4
16814 set d_statfs_f_flags statfs f_flags $i_systypes sys/types.h $i_sysparam sys/param.h $i_sysmount sys/mount.h $i_sysvfs sys/vfs.h $i_sysstatfs sys/statfs.h
16815 eval $hasfield
16816 ;;
16817*) val="$undef"
16818 set d_statfs_f_flags
16819 eval $setvar
16820 ;;
16821esac
16822case "$d_statfs_f_flags" in
16823"$define") echo "Yes, it does." ;;
16824*) echo "No, it doesn't." ;;
16825esac
16826
16827$cat >&4 <<EOM
16828Checking how to access stdio streams by file descriptor number...
16829EOM
16830case "$stdio_stream_array" in
16831'') $cat >try.c <<EOCP
16832#include <stdio.h>
16833int main() {
16834 if (&STDIO_STREAM_ARRAY[fileno(stdin)] == stdin)
16835 printf("yes\n");
16836}
16837EOCP
16838 for s in _iob __iob __sF
16839 do
16840 set try -DSTDIO_STREAM_ARRAY=$s
16841 if eval $compile; then
16842 case "`$run ./try`" in
16843 yes) stdio_stream_array=$s; break ;;
16844 esac
16845 fi
16846 done
16847 $rm -f try.* try$exe_ext
16848esac
16849case "$stdio_stream_array" in
16850'') $cat >&4 <<EOM
16851I can't figure out how to access stdio streams by file descriptor number.
16852EOM
16853 d_stdio_stream_array="$undef"
16854 ;;
16855*) $cat >&4 <<EOM
16856You can access stdio streams by file descriptor number by the $stdio_stream_array array.
16857EOM
16858 d_stdio_stream_array="$define"
16859 ;;
16860esac
16861
16862: see if strcoll exists
16863set strcoll d_strcoll
16864eval $inlibc
16865
16866: check for structure copying
16867echo " "
16868echo "Checking to see if your C compiler can copy structs..." >&4
16869$cat >try.c <<'EOCP'
16870int main()
16871{
16872 struct blurfl {
16873 int dyick;
16874 } foo, bar;
16875
16876 foo = bar;
16877}
16878EOCP
16879if $cc -c try.c >/dev/null 2>&1 ; then
16880 val="$define"
16881 echo "Yup, it can."
16882else
16883 val="$undef"
16884 echo "Nope, it can't."
16885fi
16886set d_strctcpy
16887eval $setvar
16888$rm -f try.*
16889
16890: see if strerror and/or sys_errlist[] exist
16891echo " "
16892if test "X$d_strerror" = X -o "X$d_syserrlst" = X; then
16893 if set strerror val -f d_strerror; eval $csym; $val; then
16894 echo 'strerror() found.' >&4
16895 d_strerror="$define"
16896 d_strerrm='strerror(e)'
16897 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then
16898 echo "(You also have sys_errlist[], so we could roll our own strerror.)"
16899 d_syserrlst="$define"
16900 else
16901 echo "(Since you don't have sys_errlist[], sterror() is welcome.)"
16902 d_syserrlst="$undef"
16903 fi
16904 elif xxx=`./findhdr string.h`; test "$xxx" || xxx=`./findhdr strings.h`; \
16905 $contains '#[ ]*define.*strerror' "$xxx" >/dev/null 2>&1; then
16906 echo 'strerror() found in string header.' >&4
16907 d_strerror="$define"
16908 d_strerrm='strerror(e)'
16909 if set sys_errlist val -a d_syserrlst; eval $csym; $val; then
16910 echo "(Most probably, strerror() uses sys_errlist[] for descriptions.)"
16911 d_syserrlst="$define"
16912 else
16913 echo "(You don't appear to have any sys_errlist[], how can this be?)"
16914 d_syserrlst="$undef"
16915 fi
16916 elif set sys_errlist val -a d_syserrlst; eval $csym; $val; then
16917 echo "strerror() not found, but you have sys_errlist[] so we'll use that." >&4
16918 d_strerror="$undef"
16919 d_syserrlst="$define"
16920 d_strerrm='((e)<0||(e)>=sys_nerr?"unknown":sys_errlist[e])'
16921 else
16922 echo 'strerror() and sys_errlist[] NOT found.' >&4
16923 d_strerror="$undef"
16924 d_syserrlst="$undef"
16925 d_strerrm='"unknown"'
16926 fi
16927fi
16928
16929: see if strerror_r exists
16930set strerror_r d_strerror_r
16931eval $inlibc
16932case "$d_strerror_r" in
16933"$define")
16934 hdrs="$i_systypes sys/types.h define stdio.h $i_string string.h"
16935 case "$d_strerror_r_proto:$usethreads" in
16936 ":define") d_strerror_r_proto=define
16937 set d_strerror_r_proto strerror_r $hdrs
16938 eval $hasproto ;;
16939 *) ;;
16940 esac
16941 case "$d_strerror_r_proto" in
16942 define)
16943 case "$strerror_r_proto" in
16944 ''|0) try='int strerror_r(int, char*, size_t);'
16945 ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBW ;;
16946 esac
16947 case "$strerror_r_proto" in
16948 ''|0) try='int strerror_r(int, char*, int);'
16949 ./protochk "extern $try" $hdrs && strerror_r_proto=I_IBI ;;
16950 esac
16951 case "$strerror_r_proto" in
16952 ''|0) try='char* strerror_r(int, char*, size_t);'
16953 ./protochk "extern $try" $hdrs && strerror_r_proto=B_IBW ;;
16954 esac
16955 case "$strerror_r_proto" in
16956 ''|0) d_strerror_r=undef
16957 strerror_r_proto=0
16958 echo "Disabling strerror_r, cannot determine prototype." >&4 ;;
16959 * ) case "$strerror_r_proto" in
16960 REENTRANT_PROTO*) ;;
16961 *) strerror_r_proto="REENTRANT_PROTO_$strerror_r_proto" ;;
16962 esac
16963 echo "Prototype: $try" ;;
16964 esac
16965 ;;
16966 *) case "$usethreads" in
16967 define) echo "strerror_r has no prototype, not using it." >&4 ;;
16968 esac
16969 d_strerror_r=undef
16970 strerror_r_proto=0
16971 ;;
16972 esac
16973 ;;
16974*) strerror_r_proto=0
16975 ;;
16976esac
16977
16978: see if strftime exists
16979set strftime d_strftime
16980eval $inlibc
16981
16982: see if strlcat exists
16983set strlcat d_strlcat
16984eval $inlibc
16985
16986: see if strlcpy exists
16987set strlcpy d_strlcpy
16988eval $inlibc
16989
16990: see if strtod exists
16991set strtod d_strtod
16992eval $inlibc
16993
16994: see if strtol exists
16995set strtol d_strtol
16996eval $inlibc
16997
16998: see if strtold exists
16999set strtold d_strtold
17000eval $inlibc
17001
17002: see if strtoll exists
17003set strtoll d_strtoll
17004eval $inlibc
17005
17006case "$d_longlong-$d_strtoll" in
17007"$define-$define")
17008 $cat <<EOM
17009Checking whether your strtoll() works okay...
17010EOM
17011 $cat >try.c <<'EOCP'
17012#include <errno.h>
17013#ifdef __hpux
17014#define strtoll __strtoll
17015#endif
17016#ifdef __EMX__
17017#define strtoll _strtoll
17018#endif
17019#include <stdio.h>
17020extern long long int strtoll(char *s, char **, int);
17021static int bad = 0;
17022int check(char *s, long long ell, int een) {
17023 long long gll;
17024 errno = 0;
17025 gll = strtoll(s, 0, 10);
17026 if (!((gll == ell) && (errno == een)))
17027 bad++;
17028}
17029int main() {
17030 check(" 1", 1LL, 0);
17031 check(" 0", 0LL, 0);
17032 check("-1", -1LL, 0);
17033 check("-9223372036854775808", -9223372036854775808LL, 0);
17034 check("-9223372036854775808", -9223372036854775808LL, 0);
17035 check(" 9223372036854775807", 9223372036854775807LL, 0);
17036 check("-9223372036854775808", -9223372036854775808LL, 0);
17037 check(" 9223372036854775808", 9223372036854775807LL, ERANGE);
17038 check("-9223372036854775809", -9223372036854775808LL, ERANGE);
17039 if (!bad)
17040 printf("ok\n");
17041}
17042EOCP
17043 set try
17044 if eval $compile; then
17045 yyy=`$run ./try`
17046 case "$yyy" in
17047 ok) echo "Your strtoll() seems to be working okay." ;;
17048 *) cat <<EOM >&4
17049Your strtoll() doesn't seem to be working okay.
17050EOM
17051 d_strtoll="$undef"
17052 ;;
17053 esac
17054 else
17055 echo "(I can't seem to compile the test program--assuming it doesn't)"
17056 d_strtoll="$undef"
17057 fi
17058 ;;
17059esac
17060
17061: see if strtoq exists
17062set strtoq d_strtoq
17063eval $inlibc
17064
17065: see if strtoul exists
17066set strtoul d_strtoul
17067eval $inlibc
17068
17069case "$d_strtoul" in
17070"$define")
17071 $cat <<EOM
17072Checking whether your strtoul() works okay...
17073EOM
17074 $cat >try.c <<'EOCP'
17075#include <errno.h>
17076#include <stdio.h>
17077extern unsigned long int strtoul(char *s, char **, int);
17078static int bad = 0;
17079void check(char *s, unsigned long eul, int een) {
17080 unsigned long gul;
17081 errno = 0;
17082 gul = strtoul(s, 0, 10);
17083 if (!((gul == eul) && (errno == een)))
17084 bad++;
17085}
17086int main() {
17087 check(" 1", 1L, 0);
17088 check(" 0", 0L, 0);
17089EOCP
17090 case "$longsize" in
17091 8)
17092 $cat >>try.c <<'EOCP'
17093 check("18446744073709551615", 18446744073709551615UL, 0);
17094 check("18446744073709551616", 18446744073709551615UL, ERANGE);
17095#if 0 /* strtoul() for /^-/ strings is undefined. */
17096 check("-1", 18446744073709551615UL, 0);
17097 check("-18446744073709551614", 2, 0);
17098 check("-18446744073709551615", 1, 0);
17099 check("-18446744073709551616", 18446744073709551615UL, ERANGE);
17100 check("-18446744073709551617", 18446744073709551615UL, ERANGE);
17101#endif
17102EOCP
17103 ;;
17104 4)
17105 $cat >>try.c <<'EOCP'
17106 check("4294967295", 4294967295UL, 0);
17107 check("4294967296", 4294967295UL, ERANGE);
17108#if 0 /* strtoul() for /^-/ strings is undefined. */
17109 check("-1", 4294967295UL, 0);
17110 check("-4294967294", 2, 0);
17111 check("-4294967295", 1, 0);
17112 check("-4294967296", 4294967295UL, ERANGE);
17113 check("-4294967297", 4294967295UL, ERANGE);
17114#endif
17115EOCP
17116 ;;
17117 *)
17118: Should we write these tests to be more portable by sprintf-ing
17119: ~0 and then manipulating that char string as input for strtol?
17120 ;;
17121 esac
17122 $cat >>try.c <<'EOCP'
17123 if (!bad)
17124 printf("ok\n");
17125 return 0;
17126}
17127EOCP
17128 set try
17129 if eval $compile; then
17130 case "`$run ./try`" in
17131 ok) echo "Your strtoul() seems to be working okay." ;;
17132 *) cat <<EOM >&4
17133Your strtoul() doesn't seem to be working okay.
17134EOM
17135 d_strtoul="$undef"
17136 ;;
17137 esac
17138 fi
17139 ;;
17140esac
17141
17142: see if strtoull exists
17143set strtoull d_strtoull
17144eval $inlibc
17145
17146case "$d_longlong-$d_strtoull" in
17147"$define-$define")
17148 $cat <<EOM
17149Checking whether your strtoull() works okay...
17150EOM
17151 $cat >try.c <<'EOCP'
17152#include <errno.h>
17153#ifdef __hpux
17154#define strtoull __strtoull
17155#endif
17156#include <stdio.h>
17157extern unsigned long long int strtoull(char *s, char **, int);
17158static int bad = 0;
17159int check(char *s, long long eull, int een) {
17160 long long gull;
17161 errno = 0;
17162 gull = strtoull(s, 0, 10);
17163 if (!((gull == eull) && (errno == een)))
17164 bad++;
17165}
17166int main() {
17167 check(" 1", 1LL, 0);
17168 check(" 0", 0LL, 0);
17169 check("18446744073709551615", 18446744073709551615ULL, 0);
17170 check("18446744073709551616", 18446744073709551615ULL, ERANGE);
17171#if 0 /* strtoull() for /^-/ strings is undefined. */
17172 check("-1", 18446744073709551615ULL, 0);
17173 check("-18446744073709551614", 2LL, 0);
17174 check("-18446744073709551615", 1LL, 0);
17175 check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
17176 check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
17177#endif
17178 if (!bad)
17179 printf("ok\n");
17180}
17181EOCP
17182 set try
17183 if eval $compile; then
17184 case "`$run ./try`" in
17185 ok) echo "Your strtoull() seems to be working okay." ;;
17186 *) cat <<EOM >&4
17187Your strtoull() doesn't seem to be working okay.
17188EOM
17189 d_strtoull="$undef"
17190 ;;
17191 esac
17192 fi
17193 ;;
17194esac
17195
17196: see if strtouq exists
17197set strtouq d_strtouq
17198eval $inlibc
17199
17200case "$d_strtouq" in
17201"$define")
17202 $cat <<EOM
17203Checking whether your strtouq() works okay...
17204EOM
17205 $cat >try.c <<'EOCP'
17206#include <errno.h>
17207#include <stdio.h>
17208extern unsigned long long int strtouq(char *s, char **, int);
17209static int bad = 0;
17210void check(char *s, unsigned long long eull, int een) {
17211 unsigned long long gull;
17212 errno = 0;
17213 gull = strtouq(s, 0, 10);
17214 if (!((gull == eull) && (errno == een)))
17215 bad++;
17216}
17217int main() {
17218 check(" 1", 1LL, 0);
17219 check(" 0", 0LL, 0);
17220 check("18446744073709551615", 18446744073709551615ULL, 0);
17221 check("18446744073709551616", 18446744073709551615ULL, ERANGE);
17222#if 0 /* strtouq() for /^-/ strings is undefined. */
17223 check("-1", 18446744073709551615ULL, 0);
17224 check("-18446744073709551614", 2LL, 0);
17225 check("-18446744073709551615", 1LL, 0);
17226 check("-18446744073709551616", 18446744073709551615ULL, ERANGE);
17227 check("-18446744073709551617", 18446744073709551615ULL, ERANGE);
17228#endif
17229 if (!bad)
17230 printf("ok\n");
17231 return 0;
17232}
17233EOCP
17234 set try
17235 if eval $compile; then
17236 case "`$run ./try`" in
17237 ok) echo "Your strtouq() seems to be working okay." ;;
17238 *) cat <<EOM >&4
17239Your strtouq() doesn't seem to be working okay.
17240EOM
17241 d_strtouq="$undef"
17242 ;;
17243 esac
17244 fi
17245 ;;
17246esac
17247
17248: see if strxfrm exists
17249set strxfrm d_strxfrm
17250eval $inlibc
17251
17252: see if symlink exists
17253set symlink d_symlink
17254eval $inlibc
17255
17256: see if syscall exists
17257set syscall d_syscall
17258eval $inlibc
17259
17260: see if prototype for syscall is available
17261echo " "
17262set d_syscallproto syscall $i_unistd unistd.h
17263eval $hasproto
17264
17265: see if sysconf exists
17266set sysconf d_sysconf
17267eval $inlibc
17268
17269: see if system exists
17270set system d_system
17271eval $inlibc
17272
17273: see if tcgetpgrp exists
17274set tcgetpgrp d_tcgetpgrp
17275eval $inlibc
17276
17277: see if tcsetpgrp exists
17278set tcsetpgrp d_tcsetpgrp
17279eval $inlibc
17280
17281: see if prototype for telldir is available
17282echo " "
17283set d_telldirproto telldir $i_systypes sys/types.h $i_dirent dirent.h
17284eval $hasproto
17285
17286: see if time exists
17287echo " "
17288if test "X$d_time" = X -o X"$timetype" = X; then
17289 if set time val -f d_time; eval $csym; $val; then
17290 echo 'time() found.' >&4
17291 val="$define"
17292 rp="What is the type returned by time() on this system?"
17293 set time_t timetype long stdio.h sys/types.h
17294 eval $typedef_ask
17295 else
17296 echo 'time() not found, hope that will do.' >&4
17297 val="$undef"
17298 timetype='int';
17299 fi
17300 set d_time
17301 eval $setvar
17302fi
17303
17304: see if this is a sys/times.h system
17305set sys/times.h i_systimes
17306eval $inhdr
17307
17308: see if times exists
17309echo " "
17310if set times val -f d_times; eval $csym; $val; then
17311 echo 'times() found.' >&4
17312 d_times="$define"
17313 inc=''
17314 case "$i_systimes" in
17315 "$define") inc='sys/times.h';;
17316 esac
17317 rp="What is the type returned by times() on this system?"
17318 set clock_t clocktype long stdio.h sys/types.h $inc
17319 eval $typedef_ask
17320else
17321 echo 'times() NOT found, hope that will do.' >&4
17322 d_times="$undef"
17323 clocktype='int'
17324fi
17325
17326: see if tmpnam_r exists
17327set tmpnam_r d_tmpnam_r
17328eval $inlibc
17329case "$d_tmpnam_r" in
17330"$define")
17331 hdrs="$i_systypes sys/types.h define stdio.h "
17332 case "$d_tmpnam_r_proto:$usethreads" in
17333 ":define") d_tmpnam_r_proto=define
17334 set d_tmpnam_r_proto tmpnam_r $hdrs
17335 eval $hasproto ;;
17336 *) ;;
17337 esac
17338 case "$d_tmpnam_r_proto" in
17339 define)
17340 case "$tmpnam_r_proto" in
17341 ''|0) try='char* tmpnam_r(char*);'
17342 ./protochk "extern $try" $hdrs && tmpnam_r_proto=B_B ;;
17343 esac
17344 case "$tmpnam_r_proto" in
17345 ''|0) d_tmpnam_r=undef
17346 tmpnam_r_proto=0
17347 echo "Disabling tmpnam_r, cannot determine prototype." >&4 ;;
17348 * ) case "$tmpnam_r_proto" in
17349 REENTRANT_PROTO*) ;;
17350 *) tmpnam_r_proto="REENTRANT_PROTO_$tmpnam_r_proto" ;;
17351 esac
17352 echo "Prototype: $try" ;;
17353 esac
17354 ;;
17355 *) case "$usethreads" in
17356 define) echo "tmpnam_r has no prototype, not using it." >&4 ;;
17357 esac
17358 d_tmpnam_r=undef
17359 tmpnam_r_proto=0
17360 ;;
17361 esac
17362 ;;
17363*) tmpnam_r_proto=0
17364 ;;
17365esac
17366
17367: see if truncate exists
17368set truncate d_truncate
17369eval $inlibc
17370
17371: see if ttyname_r exists
17372set ttyname_r d_ttyname_r
17373eval $inlibc
17374case "$d_ttyname_r" in
17375"$define")
17376 hdrs="$i_systypes sys/types.h define stdio.h $i_unistd unistd.h"
17377 case "$d_ttyname_r_proto:$usethreads" in
17378 ":define") d_ttyname_r_proto=define
17379 set d_ttyname_r_proto ttyname_r $hdrs
17380 eval $hasproto ;;
17381 *) ;;
17382 esac
17383 case "$d_ttyname_r_proto" in
17384 define)
17385 case "$ttyname_r_proto" in
17386 ''|0) try='int ttyname_r(int, char*, size_t);'
17387 ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBW ;;
17388 esac
17389 case "$ttyname_r_proto" in
17390 ''|0) try='int ttyname_r(int, char*, int);'
17391 ./protochk "extern $try" $hdrs && ttyname_r_proto=I_IBI ;;
17392 esac
17393 case "$ttyname_r_proto" in
17394 ''|0) try='char* ttyname_r(int, char*, int);'
17395 ./protochk "extern $try" $hdrs && ttyname_r_proto=B_IBI ;;
17396 esac
17397 case "$ttyname_r_proto" in
17398 ''|0) d_ttyname_r=undef
17399 ttyname_r_proto=0
17400 echo "Disabling ttyname_r, cannot determine prototype." >&4 ;;
17401 * ) case "$ttyname_r_proto" in
17402 REENTRANT_PROTO*) ;;
17403 *) ttyname_r_proto="REENTRANT_PROTO_$ttyname_r_proto" ;;
17404 esac
17405 echo "Prototype: $try" ;;
17406 esac
17407 ;;
17408 *) case "$usethreads" in
17409 define) echo "ttyname_r has no prototype, not using it." >&4 ;;
17410 esac
17411 d_ttyname_r=undef
17412 ttyname_r_proto=0
17413 ;;
17414 esac
17415 ;;
17416*) ttyname_r_proto=0
17417 ;;
17418esac
17419
17420: see if tzname[] exists
17421echo " "
17422if set tzname val -a d_tzname; eval $csym; $val; then
17423 val="$define"
17424 echo 'tzname[] found.' >&4
17425else
17426 val="$undef"
17427 echo 'tzname[] NOT found.' >&4
17428fi
17429set d_tzname
17430eval $setvar
17431
17432case "$osname" in
17433next|rhapsody|darwin) multiarch="$define" ;;
17434esac
17435case "$multiarch" in
17436''|[nN]*) multiarch="$undef" ;;
17437esac
17438
17439: check for ordering of bytes in a UV
17440echo " "
17441case "$usecrosscompile$multiarch" in
17442*$define*)
17443 $cat <<EOM
17444You seem to be either cross-compiling or doing a multiarchitecture build,
17445skipping the byteorder check.
17446
17447EOM
17448 byteorder='ffff'
17449 ;;
17450*)
17451 case "$byteorder" in
17452 '')
17453 $cat <<'EOM'
17454In the following, larger digits indicate more significance. A big-endian
17455machine like a Pyramid or a Motorola 680?0 chip will come out to 4321. A
17456little-endian machine like a Vax or an Intel 80?86 chip would be 1234. Other
17457machines may have weird orders like 3412. A Cray will report 87654321,
17458an Alpha will report 12345678. If the test program works the default is
17459probably right.
17460I'm now running the test program...
17461EOM
17462 $cat >try.c <<EOCP
17463#include <stdio.h>
17464#$i_stdlib I_STDLIB
17465#ifdef I_STDLIB
17466#include <stdlib.h>
17467#endif
17468#include <sys/types.h>
17469typedef $uvtype UV;
17470int main()
17471{
17472 int i;
17473 union {
17474 UV l;
17475 char c[$uvsize];
17476 } u;
17477
17478 if ($uvsize > 4)
17479 u.l = (((UV)0x08070605) << 32) | (UV)0x04030201;
17480 else
17481 u.l = (UV)0x04030201;
17482 for (i = 0; i < $uvsize; i++)
17483 printf("%c", u.c[i]+'0');
17484 printf("\n");
17485 exit(0);
17486}
17487EOCP
17488 xxx_prompt=y
17489 set try
17490 if eval $compile && ./try > /dev/null; then
17491 dflt=`$run ./try`
17492 case "$dflt" in
17493 [1-4][1-4][1-4][1-4]|12345678|87654321)
17494 echo "(The test program ran ok.)"
17495 echo "byteorder=$dflt"
17496 xxx_prompt=n
17497 ;;
17498 ????|????????) echo "(The test program ran ok.)" ;;
17499 *) echo "(The test program didn't run right for some reason.)" ;;
17500 esac
17501 else
17502 dflt='4321'
17503 cat <<'EOM'
17504(I can't seem to compile the test program. Guessing big-endian...)
17505EOM
17506 fi
17507 case "$xxx_prompt" in
17508 y)
17509 rp="What is the order of bytes in $uvtype?"
17510 . ./myread
17511 byteorder="$ans"
17512 ;;
17513 *) byteorder=$dflt
17514 ;;
17515 esac
17516 ;;
17517 esac
17518 $rm -f try.c try
17519 ;;
17520esac
17521
17522
17523$cat <<EOM
17524
17525Checking to see whether you can access character data unalignedly...
17526EOM
17527case "$d_u32align" in
17528'') $cat >try.c <<EOCP
17529#include <stdio.h>
17530#$i_stdlib I_STDLIB
17531#ifdef I_STDLIB
17532#include <stdlib.h>
17533#endif
17534#define U32 $u32type
17535#define BYTEORDER 0x$byteorder
17536#define U8 $u8type
17537#include <signal.h>
17538#ifdef SIGBUS
17539$signal_t bletch(s) int s; { exit(4); }
17540#endif
17541int main() {
17542#if BYTEORDER == 0x1234 || BYTEORDER == 0x4321
17543 U8 buf[8];
17544 U32 *up;
17545 int i;
17546
17547 if (sizeof(U32) != 4) {
17548 printf("sizeof(U32) is not 4, but %d\n", sizeof(U32));
17549 exit(1);
17550 }
17551
17552 fflush(stdout);
17553
17554#ifdef SIGBUS
17555 signal(SIGBUS, bletch);
17556#endif
17557
17558 buf[0] = 0;
17559 buf[1] = 0;
17560 buf[2] = 0;
17561 buf[3] = 1;
17562 buf[4] = 0;
17563 buf[5] = 0;
17564 buf[6] = 0;
17565 buf[7] = 1;
17566
17567 for (i = 0; i < 4; i++) {
17568 up = (U32*)(buf + i);
17569 if (! ((*up == 1 << (8*i)) || /* big-endian */
17570 (*up == 1 << (8*(3-i))) /* little-endian */
17571 )
17572 )
17573 {
17574 printf("read failed (%x)\n", *up);
17575 exit(2);
17576 }
17577 }
17578
17579 /* write test */
17580 for (i = 0; i < 4; i++) {
17581 up = (U32*)(buf + i);
17582 *up = 0xBeef;
17583 if (*up != 0xBeef) {
17584 printf("write failed (%x)\n", *up);
17585 exit(3);
17586 }
17587 }
17588
17589 exit(0);
17590#else
17591 printf("1\n");
17592 exit(1);
17593#endif
17594 return 0;
17595}
17596EOCP
17597set try
17598if eval $compile_ok; then
17599 echo "(Testing for character data alignment may crash the test. That's okay.)" >&4
17600 $run ./try 2>&1 >/dev/null
17601 case "$?" in
17602 0) cat >&4 <<EOM
17603You can access character data pretty unalignedly.
17604EOM
17605 d_u32align="$undef"
17606 ;;
17607 *) cat >&4 <<EOM
17608It seems that you must access character data in an aligned manner.
17609EOM
17610 d_u32align="$define"
17611 ;;
17612 esac
17613else
17614 rp='Can you access character data at unaligned addresses?'
17615 dflt='n'
17616 . ./myread
17617 case "$ans" in
17618 [yY]*) d_u32align="$undef" ;;
17619 *) d_u32align="$define" ;;
17620 esac
17621fi
17622$rm -f core core.try.* try.core
17623;;
17624esac
17625
17626: see if ualarm exists
17627set ualarm d_ualarm
17628eval $inlibc
17629
17630: see if umask exists
17631set umask d_umask
17632eval $inlibc
17633
17634: see if unordered exists
17635set unordered d_unordered
17636eval $inlibc
17637
17638: see if unsetenv exists
17639set unsetenv d_unsetenv
17640eval $inlibc
17641
17642: see if usleep exists
17643set usleep d_usleep
17644eval $inlibc
17645
17646: see if prototype for usleep is available
17647echo " "
17648set d_usleepproto usleep $i_unistd unistd.h
17649eval $hasproto
17650
17651: see if ustat exists
17652set ustat d_ustat
17653eval $inlibc
17654
17655: backward compatibility for d_hvfork
17656if test X$d_hvfork != X; then
17657 d_vfork="$d_hvfork"
17658 d_hvfork=''
17659fi
17660: see if there is a vfork
17661val=''
17662set vfork val
17663eval $inlibc
17664
17665: Ok, but do we want to use it. vfork is reportedly unreliable in
17666: perl on Solaris 2.x, and probably elsewhere.
17667case "$val" in
17668$define)
17669 echo " "
17670 case "$usevfork" in
17671 false) dflt='n';;
17672 *) dflt='y';;
17673 esac
17674 cat <<'EOM'
17675
17676Perl can only use a vfork() that doesn't suffer from strict
17677restrictions on calling functions or modifying global data in
17678the child. For example, glibc-2.1 contains such a vfork()
17679that is unsuitable. If your system provides a proper fork()
17680call, chances are that you do NOT want perl to use vfork().
17681
17682EOM
17683 rp="Do you still want to use vfork()?"
17684 . ./myread
17685 case "$ans" in
17686 y|Y) ;;
17687 *)
17688 echo "Ok, we won't use vfork()."
17689 val="$undef"
17690 ;;
17691 esac
17692 ;;
17693esac
17694set d_vfork
17695eval $setvar
17696case "$d_vfork" in
17697$define) usevfork='true';;
17698*) usevfork='false';;
17699esac
17700
17701: see if closedir exists
17702set closedir d_closedir
17703eval $inlibc
17704
17705case "$d_closedir" in
17706"$define")
17707 echo " "
17708 echo "Checking whether closedir() returns a status..." >&4
17709 cat > try.c <<EOM
17710#$i_dirent I_DIRENT /**/
17711#$i_sysdir I_SYS_DIR /**/
17712#$i_sysndir I_SYS_NDIR /**/
17713#$i_systypes I_SYS_TYPES /**/
17714
17715#if defined(I_SYS_TYPES)
17716#include <sys/types.h>
17717#endif
17718#if defined(I_DIRENT)
17719#include <dirent.h>
17720#if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
17721#include <sys/dir.h>
17722#endif
17723#else
17724#ifdef I_SYS_NDIR
17725#include <sys/ndir.h>
17726#else
17727#ifdef I_SYS_DIR
17728#ifdef hp9000s500
17729#include <ndir.h> /* may be wrong in the future */
17730#else
17731#include <sys/dir.h>
17732#endif
17733#endif
17734#endif
17735#endif
17736int main() { return closedir(opendir(".")); }
17737EOM
17738 set try
17739 if eval $compile_ok; then
17740 if $run ./try > /dev/null 2>&1 ; then
17741 echo "Yes, it does."
17742 val="$undef"
17743 else
17744 echo "No, it doesn't."
17745 val="$define"
17746 fi
17747 else
17748 echo "(I can't seem to compile the test program--assuming it doesn't)"
17749 val="$define"
17750 fi
17751 ;;
17752*)
17753 val="$undef";
17754 ;;
17755esac
17756set d_void_closedir
17757eval $setvar
17758$rm -f try try.*
17759: see if there is a wait4
17760set wait4 d_wait4
17761eval $inlibc
17762
17763: see if waitpid exists
17764set waitpid d_waitpid
17765eval $inlibc
17766
17767: see if wcstombs exists
17768set wcstombs d_wcstombs
17769eval $inlibc
17770
17771: see if wctomb exists
17772set wctomb d_wctomb
17773eval $inlibc
17774
17775: see if writev exists
17776set writev d_writev
17777eval $inlibc
17778
17779: preserve RCS keywords in files with variable substitution, grrr
17780Date='$Date'
17781Id='$Id'
17782Log='$Log'
17783RCSfile='$RCSfile'
17784Revision='$Revision'
17785
17786: check for alignment requirements
17787echo " "
17788case "$usecrosscompile$multiarch" in
17789*$define*)
17790 $cat <<EOM
17791You seem to be either cross-compiling or doing a multiarchitecture build,
17792skipping the memory alignment check.
17793
17794EOM
17795 case "$alignbytes" in
17796 '') alignbytes=8 ;;
17797 esac
17798 ;;
17799*)
17800 case "$alignbytes" in
17801 '') echo "Checking alignment constraints..." >&4
17802 if $test "X$uselongdouble" = Xdefine -a "X$d_longdbl" = Xdefine; then
17803 $cat >try.c <<'EOCP'
17804typedef long double NV;
17805EOCP
17806 else
17807 $cat >try.c <<'EOCP'
17808typedef double NV;
17809EOCP
17810 fi
17811 $cat >>try.c <<'EOCP'
17812#include <stdio.h>
17813struct foobar {
17814 char foo;
17815 NV bar;
17816} try_algn;
17817int main()
17818{
17819 printf("%d\n", (int)((char *)&try_algn.bar - (char *)&try_algn.foo));
17820 return(0);
17821}
17822EOCP
17823 set try
17824 if eval $compile_ok; then
17825 dflt=`$run ./try`
17826 else
17827 dflt='8'
17828 echo "(I can't seem to compile the test program...)"
17829 fi
17830 ;;
17831 *) dflt="$alignbytes"
17832 ;;
17833 esac
17834 rp="Doubles must be aligned on a how-many-byte boundary?"
17835 . ./myread
17836 alignbytes="$ans"
17837 $rm -f try.c try
17838 ;;
17839esac
17840
17841
17842: set the base revision
17843baserev=5.0
17844
17845: how do we concatenate cpp tokens here?
17846echo " "
17847echo "Checking to see how your cpp does stuff like concatenate tokens..." >&4
17848$cat >cpp_stuff.c <<'EOCP'
17849#define RCAT(a,b)a/**/b
17850#define ACAT(a,b)a ## b
17851RCAT(Rei,ser)
17852ACAT(Cir,cus)
17853EOCP
17854$cppstdin $cppflags $cppminus <cpp_stuff.c >cpp_stuff.out 2>&1
17855if $contains 'Circus' cpp_stuff.out >/dev/null 2>&1; then
17856 echo "Oh! Smells like ANSI's been here." >&4
17857 echo "We can catify or stringify, separately or together!"
17858 cpp_stuff=42
17859elif $contains 'Reiser' cpp_stuff.out >/dev/null 2>&1; then
17860 echo "Ah, yes! The good old days!" >&4
17861 echo "However, in the good old days we don't know how to stringify and"
17862 echo "catify at the same time."
17863 cpp_stuff=1
17864else
17865 $cat >&4 <<EOM
17866Hmm, I don't seem to be able to concatenate tokens with your cpp.
17867You're going to have to edit the values of CAT[2-5] in config.h...
17868EOM
17869 cpp_stuff="/* Help! How do we handle cpp_stuff? */*/"
17870fi
17871$rm -f cpp_stuff.*
17872
17873: see if this is a db.h system
17874set db.h i_db
17875eval $inhdr
17876
17877case "$i_db" in
17878$define)
17879 : Check db version.
17880 echo " "
17881 echo "Checking Berkeley DB version ..." >&4
17882 $cat >try.c <<EOCP
17883#$d_const HASCONST
17884#ifndef HASCONST
17885#define const
17886#endif
17887#include <sys/types.h>
17888#include <stdio.h>
17889#$i_stdlib I_STDLIB
17890#ifdef I_STDLIB
17891#include <stdlib.h>
17892#endif
17893#include <db.h>
17894int main(int argc, char *argv[])
17895{
17896#ifdef DB_VERSION_MAJOR /* DB version >= 2 */
17897 int Major, Minor, Patch ;
17898 unsigned long Version ;
17899 (void)db_version(&Major, &Minor, &Patch) ;
17900 if (argc == 2) {
17901 printf("%d %d %d %d %d %d\n",
17902 DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH,
17903 Major, Minor, Patch);
17904 exit(0);
17905 }
17906 printf("You have Berkeley DB Version 2 or greater.\n");
17907
17908 printf("db.h is from Berkeley DB Version %d.%d.%d\n",
17909 DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH);
17910 printf("libdb is from Berkeley DB Version %d.%d.%d\n",
17911 Major, Minor, Patch) ;
17912
17913 /* check that db.h & libdb are compatible */
17914 if (DB_VERSION_MAJOR != Major || DB_VERSION_MINOR != Minor || DB_VERSION_PATCH != Patch) {
17915 printf("db.h and libdb are incompatible.\n") ;
17916 exit(3);
17917 }
17918
17919 printf("db.h and libdb are compatible.\n") ;
17920
17921 Version = DB_VERSION_MAJOR * 1000000 + DB_VERSION_MINOR * 1000
17922 + DB_VERSION_PATCH ;
17923
17924 /* needs to be >= 2.3.4 */
17925 if (Version < 2003004) {
17926 /* if (DB_VERSION_MAJOR == 2 && DB_VERSION_MINOR == 0 && DB_VERSION_PATCH < 5) { */
17927 printf("Perl needs Berkeley DB 2.3.4 or greater.\n") ;
17928 exit(2);
17929 }
17930
17931 exit(0);
17932#else
17933#if defined(_DB_H_) && defined(BTREEMAGIC) && defined(HASHMAGIC)
17934 if (argc == 2) {
17935 printf("1 0 0\n");
17936 exit(0);
17937 }
17938 printf("You have Berkeley DB Version 1.\n");
17939 exit(0); /* DB version < 2: the coast is clear. */
17940#else
17941 exit(1); /* <db.h> not Berkeley DB? */
17942#endif
17943#endif
17944}
17945EOCP
17946 set try
17947 if eval $compile_ok && $run ./try; then
17948 echo 'Looks OK.' >&4
17949 set `$run ./try 1`
17950 db_version_major=$1
17951 db_version_minor=$2
17952 db_version_patch=$3
17953 else
17954 echo "I can't use Berkeley DB with your <db.h>. I'll disable Berkeley DB." >&4
17955 i_db=$undef
17956 case " $libs " in
17957 *"-ldb "*)
17958 : Remove db from list of libraries to use
17959 echo "Removing unusable -ldb from library list" >&4
17960 set `echo X $libs | $sed -e 's/-ldb / /' -e 's/-ldb$//'`
17961 shift
17962 libs="$*"
17963 echo "libs = $libs" >&4
17964 ;;
17965 esac
17966 fi
17967 $rm -f try.*
17968 ;;
17969esac
17970
17971case "$i_db" in
17972define)
17973 : Check the return type needed for hash
17974 echo " "
17975 echo "Checking return type needed for hash for Berkeley DB ..." >&4
17976 $cat >try.c <<EOCP
17977#$d_const HASCONST
17978#ifndef HASCONST
17979#define const
17980#endif
17981#include <sys/types.h>
17982#include <db.h>
17983
17984#ifndef DB_VERSION_MAJOR
17985u_int32_t hash_cb (ptr, size)
17986const void *ptr;
17987size_t size;
17988{
17989}
17990HASHINFO info;
17991int main()
17992{
17993 info.hash = hash_cb;
17994}
17995#endif
17996EOCP
17997 if $cc $ccflags -c try.c >try.out 2>&1 ; then
17998 if $contains warning try.out >>/dev/null 2>&1 ; then
17999 db_hashtype='int'
18000 else
18001 db_hashtype='u_int32_t'
18002 fi
18003 else
18004 : XXX Maybe we should just give up here.
18005 db_hashtype=u_int32_t
18006 $cat try.out >&4
18007 echo "Help: I can't seem to compile the db test program." >&4
18008 echo "Something's wrong, but I'll assume you use $db_hashtype." >&4
18009 fi
18010 $rm -f try.*
18011 echo "Your version of Berkeley DB uses $db_hashtype for hash."
18012 ;;
18013*) db_hashtype=u_int32_t
18014 ;;
18015esac
18016case "$i_db" in
18017define)
18018 : Check the return type needed for prefix
18019 echo " "
18020 echo "Checking return type needed for prefix for Berkeley DB ..." >&4
18021 cat >try.c <<EOCP
18022#$d_const HASCONST
18023#ifndef HASCONST
18024#define const
18025#endif
18026#include <sys/types.h>
18027#include <db.h>
18028
18029#ifndef DB_VERSION_MAJOR
18030size_t prefix_cb (key1, key2)
18031const DBT *key1;
18032const DBT *key2;
18033{
18034}
18035BTREEINFO info;
18036int main()
18037{
18038 info.prefix = prefix_cb;
18039}
18040#endif
18041EOCP
18042 if $cc $ccflags -c try.c >try.out 2>&1 ; then
18043 if $contains warning try.out >>/dev/null 2>&1 ; then
18044 db_prefixtype='int'
18045 else
18046 db_prefixtype='size_t'
18047 fi
18048 else
18049 db_prefixtype='size_t'
18050 : XXX Maybe we should just give up here.
18051 $cat try.out >&4
18052 echo "Help: I can't seem to compile the db test program." >&4
18053 echo "Something's wrong, but I'll assume you use $db_prefixtype." >&4
18054 fi
18055 $rm -f try.*
18056 echo "Your version of Berkeley DB uses $db_prefixtype for prefix."
18057 ;;
18058*) db_prefixtype='size_t'
18059 ;;
18060esac
18061
18062
18063: How can we generate normalized random numbers ?
18064echo " "
18065echo "Looking for a random number function..." >&4
18066case "$randfunc" in
18067'')
18068 if set drand48 val -f; eval $csym; $val; then
18069 dflt="drand48"
18070 echo "Good, found drand48()." >&4
18071 elif set random val -f; eval $csym; $val; then
18072 dflt="random"
18073 echo "OK, found random()." >&4
18074 else
18075 dflt="rand"
18076 echo "Yick, looks like I have to use rand()." >&4
18077 fi
18078 echo " "
18079 ;;
18080*)
18081 dflt="$randfunc"
18082 ;;
18083esac
18084cont=true
18085
18086case "$ccflags" in
18087*-Dmy_rand=*|*-Dmy_srand=*)
18088 echo "Removing obsolete -Dmy_rand, -Dmy_srand, and -Drandbits from ccflags." >&4
18089 ccflags="`echo $ccflags | sed -e 's/-Dmy_rand=random/ /'`"
18090 ccflags="`echo $ccflags | sed -e 's/-Dmy_srand=srandom/ /'`"
18091 ccflags="`echo $ccflags | sed -e 's/-Drandbits=[0-9][0-9]*/ /'`"
18092 ;;
18093esac
18094
18095while $test "$cont"; do
18096 rp="Use which function to generate random numbers?"
18097 . ./myread
18098 if $test "$ans" = "$dflt"; then
18099 : null
18100 else
18101 randbits=''
18102 fi
18103 randfunc="$ans"
18104 if set $ans val -f; eval $csym; $val; then
18105 cont=''
18106 else
18107 dflt=y
18108 rp="I cannot find function $ans. Use that name anyway?"
18109 . ./myread
18110 dflt=rand
18111 case "$ans" in
18112 [yY]*) cont='';;
18113 esac
18114 fi
18115 case "$cont" in
18116 '')
18117 case "$randfunc" in
18118 drand48)
18119 drand01="drand48()"
18120 seedfunc="srand48"
18121 randbits=48
18122 randseedtype=long
18123 ;;
18124 rand|random)
18125 case "$randbits" in
18126 '')
18127echo "Checking to see how many bits your $randfunc() function produces..." >&4
18128 $cat >try.c <<EOCP
18129#$i_unistd I_UNISTD
18130#$i_stdlib I_STDLIB
18131#include <stdio.h>
18132#ifdef I_UNISTD
18133# include <unistd.h>
18134#endif
18135#ifdef I_STDLIB
18136# include <stdlib.h>
18137#endif
18138int main()
18139{
18140 register int i;
18141 register unsigned long tmp;
18142 register unsigned long max = 0L;
18143
18144 for (i = 1000; i; i--) {
18145 tmp = (unsigned long) $randfunc();
18146 if (tmp > max) max = tmp;
18147 }
18148 for (i = 0; max; i++)
18149 max /= 2;
18150 printf("%d\n",i);
18151}
18152EOCP
18153 set try
18154 if eval $compile_ok; then
18155 dflt=`try`
18156 else
18157 dflt='?'
18158 echo "(I can't seem to compile the test program...)"
18159 fi
18160 ;;
18161 *)
18162 dflt="$randbits"
18163 ;;
18164 esac
18165 rp="How many bits does your $randfunc() function produce?"
18166 . ./myread
18167 randbits="$ans"
18168 $rm -f try.c try
18169 drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
18170 seedfunc="s$randfunc"
18171 randseedtype=unsigned
18172 ;;
18173 *)
18174 dflt="31"
18175 rp="How many bits does your $randfunc() function produce?"
18176 . ./myread
18177 randbits="$ans"
18178 seedfunc="s$randfunc"
18179 drand01="($randfunc() / (double) ((unsigned long)1 << $randbits))"
18180 if set $seedfunc val -f; eval $csym; $val; then
18181 echo "(Using $seedfunc() to seed random generator)"
18182 else
18183 echo "(Warning: no $seedfunc() to seed random generator)"
18184 seedfunc=rand
18185 fi
18186 randseedtype=unsigned
18187 ;;
18188 esac
18189 ;;
18190 esac
18191done
18192
18193echo " "
18194echo "Determining whether or not we are on an EBCDIC system..." >&4
18195$cat >try.c <<'EOM'
18196int main()
18197{
18198 if ('M'==0xd4) return 0;
18199 return 1;
18200}
18201EOM
18202
18203val=$undef
18204set try
18205if eval $compile_ok; then
18206 if $run ./try; then
18207 echo "You seem to speak EBCDIC." >&4
18208 val="$define"
18209 else
18210 echo "Nope, no EBCDIC, probably ASCII or some ISO Latin. Or UTF-8." >&4
18211 fi
18212else
18213 echo "I'm unable to compile the test program." >&4
18214 echo "I'll assume ASCII or some ISO Latin. Or UTF8." >&4
18215fi
18216$rm -f try try.*
18217set ebcdic
18218eval $setvar
18219
18220echo " "
18221$cat >&4 <<EOM
18222Checking how to flush all pending stdio output...
18223EOM
18224# I only know how to find the first 32 possibly open files on SunOS.
18225# See also hints/sunos_4_1.sh and util.c --AD
18226case "$osname" in
18227sunos) $echo '#define PERL_FFLUSH_ALL_FOPEN_MAX 32' > try.c ;;
18228esac
18229$cat >>try.c <<EOCP
18230#include <stdio.h>
18231#$i_stdlib I_STDLIB
18232#ifdef I_STDLIB
18233#include <stdlib.h>
18234#endif
18235#$i_unistd I_UNISTD
18236#ifdef I_UNISTD
18237# include <unistd.h>
18238#endif
18239#$d_sysconf HAS_SYSCONF
18240#$d_stdio_stream_array HAS_STDIO_STREAM_ARRAY
18241#ifdef HAS_STDIO_STREAM_ARRAY
18242# define STDIO_STREAM_ARRAY $stdio_stream_array
18243#endif
18244int main() {
18245 FILE* p;
18246 unlink("try.out");
18247 p = fopen("try.out", "w");
18248#ifdef TRY_FPUTC
18249 fputc('x', p);
18250#else
18251# ifdef TRY_FPRINTF
18252 fprintf(p, "x");
18253# endif
18254#endif
18255#ifdef TRY_FFLUSH_NULL
18256 fflush(NULL);
18257#endif
18258#ifdef TRY_FFLUSH_ALL
18259 {
18260 long open_max = -1;
18261# ifdef PERL_FFLUSH_ALL_FOPEN_MAX
18262 open_max = PERL_FFLUSH_ALL_FOPEN_MAX;
18263# else
18264# if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
18265 open_max = sysconf(_SC_OPEN_MAX);
18266# else
18267# ifdef FOPEN_MAX
18268 open_max = FOPEN_MAX;
18269# else
18270# ifdef OPEN_MAX
18271 open_max = OPEN_MAX;
18272# else
18273# ifdef _NFILE
18274 open_max = _NFILE;
18275# endif
18276# endif
18277# endif
18278# endif
18279# endif
18280# ifdef HAS_STDIO_STREAM_ARRAY
18281 if (open_max > 0) {
18282 long i;
18283 for (i = 0; i < open_max; i++)
18284 if (STDIO_STREAM_ARRAY[i]._file >= 0 &&
18285 STDIO_STREAM_ARRAY[i]._file < open_max &&
18286 STDIO_STREAM_ARRAY[i]._flag)
18287 fflush(&STDIO_STREAM_ARRAY[i]);
18288 }
18289 }
18290# endif
18291#endif
18292 _exit(42);
18293}
18294EOCP
18295: first we have to find out how _not_ to flush
18296$to try.c
18297if $test "X$fflushNULL" = X -o "X$fflushall" = X; then
18298 output=''
18299 set try -DTRY_FPUTC
18300 if eval $compile; then
18301 $run ./try 2>/dev/null
18302 code="$?"
18303 $from try.out
18304 if $test ! -s try.out -a "X$code" = X42; then
18305 output=-DTRY_FPUTC
18306 fi
18307 fi
18308 case "$output" in
18309 '')
18310 set try -DTRY_FPRINTF
18311 if eval $compile; then
18312 $run ./try 2>/dev/null
18313 code="$?"
18314 $from try.out
18315 if $test ! -s try.out -a "X$code" = X42; then
18316 output=-DTRY_FPRINTF
18317 fi
18318 fi
18319 ;;
18320 esac
18321fi
18322: check for fflush NULL behaviour
18323case "$fflushNULL" in
18324'') set try -DTRY_FFLUSH_NULL $output
18325 if eval $compile; then
18326 $run ./try 2>/dev/null
18327 code="$?"
18328 $from try.out
18329 if $test -s try.out -a "X$code" = X42; then
18330 fflushNULL="`$cat try.out`"
18331 else
18332 if $test "X$code" != X42; then
18333 $cat >&4 <<EOM
18334(If this test failed, don't worry, we'll try another method shortly.)
18335EOM
18336 fi
18337 fi
18338 fi
18339 $rm -f core try.core core.try.*
18340 case "$fflushNULL" in
18341 x) $cat >&4 <<EOM
18342Your fflush(NULL) works okay for output streams.
18343Let's see if it clobbers input pipes...
18344EOM
18345# As of mid-March 2000 all versions of Solaris appear to have a stdio
18346# bug that improperly flushes the input end of pipes. So we avoid the
18347# autoflush on fork/system/exec support for now. :-(
18348$cat >tryp.c <<EOCP
18349#include <stdio.h>
18350int
18351main(int argc, char **argv)
18352{
18353 char buf[1024];
18354 int i;
18355 char *bp = buf;
18356 while (1) {
18357 while ((i = getc(stdin)) != -1
18358 && (*bp++ = i) != '\n'
18359 && bp < &buf[1024])
18360 /* DO NOTHING */ ;
18361 *bp = '\0';
18362 fprintf(stdout, "%s", buf);
18363 fflush(NULL);
18364 if (i == -1)
18365 return 0;
18366 bp = buf;
18367 }
18368}
18369EOCP
18370 fflushNULL="$define"
18371 set tryp
18372 if eval $compile; then
18373 $rm -f tryp.out
18374 $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
18375 if cmp tryp.c tryp.out >/dev/null 2>&1; then
18376 $cat >&4 <<EOM
18377fflush(NULL) seems to behave okay with input streams.
18378EOM
18379 fflushNULL="$define"
18380 else
18381 $cat >&4 <<EOM
18382Ouch, fflush(NULL) clobbers input pipes! We will not use it.
18383EOM
18384 fflushNULL="$undef"
18385 fi
18386 fi
18387 $rm -f core tryp.c tryp.core core.tryp.*
18388 ;;
18389 '') $cat >&4 <<EOM
18390Your fflush(NULL) isn't working (contrary to ANSI C).
18391EOM
18392 fflushNULL="$undef"
18393 ;;
18394 *) $cat >&4 <<EOM
18395Cannot figure out whether your fflush(NULL) works or not.
18396I'm assuming it doesn't (contrary to ANSI C).
18397EOM
18398 fflushNULL="$undef"
18399 ;;
18400 esac
18401 ;;
18402$define|true|[yY]*)
18403 fflushNULL="$define"
18404 ;;
18405*)
18406 fflushNULL="$undef"
18407 ;;
18408esac
18409: check explicit looping only if NULL did not work, and if the pipe
18410: bug does not show up on an explicit flush too
18411case "$fflushNULL" in
18412"$undef")
18413 $cat >tryp.c <<EOCP
18414#include <stdio.h>
18415int
18416main(int argc, char **argv)
18417{
18418 char buf[1024];
18419 int i;
18420 char *bp = buf;
18421 while (1) {
18422 while ((i = getc(stdin)) != -1
18423 && (*bp++ = i) != '\n'
18424 && bp < &buf[1024])
18425 /* DO NOTHING */ ;
18426 *bp = '\0';
18427 fprintf(stdout, "%s", buf);
18428 fflush(stdin);
18429 if (i == -1)
18430 return 0;
18431 bp = buf;
18432 }
18433}
18434EOCP
18435 set tryp
18436 if eval $compile; then
18437 $rm -f tryp.out
18438 $cat tryp.c | $run ./tryp 2>/dev/null > tryp.out
18439 if cmp tryp.c tryp.out >/dev/null 2>&1; then
18440 $cat >&4 <<EOM
18441Good, at least fflush(stdin) seems to behave okay when stdin is a pipe.
18442EOM
18443 : now check for fflushall behaviour
18444 case "$fflushall" in
18445 '') set try -DTRY_FFLUSH_ALL $output
18446 if eval $compile; then
18447 $cat >&4 <<EOM
18448(Now testing the other method--but note that this also may fail.)
18449EOM
18450 $run ./try 2>/dev/null
18451 code=$?
18452 $from try.out
18453 if $test -s try.out -a "X$code" = X42; then
18454 fflushall="`$cat try.out`"
18455 fi
18456 fi
18457 $rm -f core try.core core.try.*
18458 case "$fflushall" in
18459 x) $cat >&4 <<EOM
18460Whew. Flushing explicitly all the stdio streams works.
18461EOM
18462 fflushall="$define"
18463 ;;
18464 '') $cat >&4 <<EOM
18465Sigh. Flushing explicitly all the stdio streams doesn't work.
18466EOM
18467 fflushall="$undef"
18468 ;;
18469 *) $cat >&4 <<EOM
18470Cannot figure out whether flushing stdio streams explicitly works or not.
18471I'm assuming it doesn't.
18472EOM
18473 fflushall="$undef"
18474 ;;
18475 esac
18476 ;;
18477 "$define"|true|[yY]*)
18478 fflushall="$define"
18479 ;;
18480 *)
18481 fflushall="$undef"
18482 ;;
18483 esac
18484 else
18485 $cat >&4 <<EOM
18486All is futile. Even fflush(stdin) clobbers input pipes!
18487EOM
18488 fflushall="$undef"
18489 fi
18490 else
18491 fflushall="$undef"
18492 fi
18493 $rm -f core tryp.c tryp.core core.tryp.*
18494 ;;
18495*) fflushall="$undef"
18496 ;;
18497esac
18498
18499case "$fflushNULL$fflushall" in
18500undefundef)
18501 $cat <<EOM
18502OK, I give up. I cannot figure out how to flush pending stdio output.
18503We won't be flushing handles at all before fork/exec/popen.
18504EOM
18505 ;;
18506esac
18507$rm -f try.* try$exe_ext
18508
18509: Store the full pathname to the ar program for use in the C program
18510: Respect a hint or command line value for full_ar.
18511case "$full_ar" in
18512'') full_ar=$ar ;;
18513esac
18514
18515: Store the full pathname to the sed program for use in the C program
18516full_sed=$sed
18517
18518: see what type gids are declared as in the kernel
18519echo " "
18520echo "Looking for the type for group ids returned by getgid()."
18521set gid_t gidtype xxx stdio.h sys/types.h
18522eval $typedef
18523case "$gidtype" in
18524xxx)
18525 xxx=`./findhdr sys/user.h`
18526 set `grep 'groups\[NGROUPS\];' "$xxx" 2>/dev/null` unsigned short
18527 case $1 in
18528 unsigned) dflt="$1 $2" ;;
18529 *) dflt="$1" ;;
18530 esac
18531 ;;
18532*) dflt="$gidtype";;
18533esac
18534case "$gidtype" in
18535gid_t) echo "gid_t found." ;;
18536*) rp="What is the type for group ids returned by getgid()?"
18537 . ./myread
18538 gidtype="$ans"
18539 ;;
18540esac
18541
18542echo " "
18543case "$gidtype" in
18544*_t) zzz="$gidtype" ;;
18545*) zzz="gid" ;;
18546esac
18547echo "Checking the size of $zzz..." >&4
18548cat > try.c <<EOCP
18549#include <sys/types.h>
18550#include <stdio.h>
18551#$i_stdlib I_STDLIB
18552#ifdef I_STDLIB
18553#include <stdlib.h>
18554#endif
18555int main() {
18556 printf("%d\n", (int)sizeof($gidtype));
18557 exit(0);
18558}
18559EOCP
18560set try
18561if eval $compile_ok; then
18562 yyy=`$run ./try`
18563 case "$yyy" in
18564 '') gidsize=4
18565 echo "(I can't execute the test program--guessing $gidsize.)" >&4
18566 ;;
18567 *) gidsize=$yyy
18568 echo "Your $zzz is $gidsize bytes long."
18569 ;;
18570 esac
18571else
18572 gidsize=4
18573 echo "(I can't compile the test program--guessing $gidsize.)" >&4
18574fi
18575
18576
18577echo " "
18578case "$gidtype" in
18579*_t) zzz="$gidtype" ;;
18580*) zzz="gid" ;;
18581esac
18582echo "Checking the sign of $zzz..." >&4
18583cat > try.c <<EOCP
18584#include <sys/types.h>
18585#include <stdio.h>
18586int main() {
18587 $gidtype foo = -1;
18588 if (foo < 0)
18589 printf("-1\n");
18590 else
18591 printf("1\n");
18592}
18593EOCP
18594set try
18595if eval $compile; then
18596 yyy=`$run ./try`
18597 case "$yyy" in
18598 '') gidsign=1
18599 echo "(I can't execute the test program--guessing unsigned.)" >&4
18600 ;;
18601 *) gidsign=$yyy
18602 case "$gidsign" in
18603 1) echo "Your $zzz is unsigned." ;;
18604 -1) echo "Your $zzz is signed." ;;
18605 esac
18606 ;;
18607 esac
18608else
18609 gidsign=1
18610 echo "(I can't compile the test program--guessing unsigned.)" >&4
18611fi
18612
18613
18614echo " "
18615
18616if $test X"$quadtype" != X; then
18617
18618echo "Checking how to print 64-bit integers..." >&4
18619
18620if $test X"$sPRId64" = X -a X"$quadtype" = Xint; then
18621 $cat >try.c <<'EOCP'
18622#include <sys/types.h>
18623#include <stdio.h>
18624int main() {
18625 int q = 12345678901;
18626 printf("%ld\n", q);
18627}
18628EOCP
18629 set try
18630 if eval $compile; then
18631 yyy=`$run ./try`
18632 case "$yyy" in
18633 12345678901)
18634 sPRId64='"d"'; sPRIi64='"i"'; sPRIu64='"u"';
18635 sPRIo64='"o"'; sPRIx64='"x"'; sPRIXU64='"X"';
18636 echo "We will use %d."
18637 ;;
18638 esac
18639 fi
18640fi
18641
18642if $test X"$sPRId64" = X -a X"$quadtype" = Xlong; then
18643 $cat >try.c <<'EOCP'
18644#include <sys/types.h>
18645#include <stdio.h>
18646int main() {
18647 long q = 12345678901;
18648 printf("%ld\n", q);
18649}
18650EOCP
18651 set try
18652 if eval $compile; then
18653 yyy=`$run ./try`
18654 case "$yyy" in
18655 12345678901)
18656 sPRId64='"ld"'; sPRIi64='"li"'; sPRIu64='"lu"';
18657 sPRIo64='"lo"'; sPRIx64='"lx"'; sPRIXU64='"lX"';
18658 echo "We will use %ld."
18659 ;;
18660 esac
18661 fi
18662fi
18663
18664if $test X"$sPRId64" = X -a X"$i_inttypes" = X"$define" -a X"$quadtype" = Xint64_t; then
18665 $cat >try.c <<'EOCP'
18666#include <sys/types.h>
18667#include <inttypes.h>
18668#include <stdio.h>
18669int main() {
18670 int64_t q = 12345678901;
18671 printf("%" PRId64 "\n", q);
18672}
18673EOCP
18674 set try
18675 if eval $compile; then
18676 yyy=`$run ./try`
18677 case "$yyy" in
18678 12345678901)
18679 sPRId64=PRId64; sPRIi64=PRIi64; sPRIu64=PRIu64;
18680 sPRIo64=PRIo64; sPRIx64=PRIx64; sPRIXU64=PRIXU64;
18681 echo "We will use the C9X style."
18682 ;;
18683 esac
18684 fi
18685fi
18686
18687if $test X"$sPRId64" = X -a X"$quadtype" != X; then
18688 $cat >try.c <<EOCP
18689#include <sys/types.h>
18690#include <stdio.h>
18691int main() {
18692 $quadtype q = 12345678901;
18693 printf("%Ld\n", q);
18694}
18695EOCP
18696 set try
18697 if eval $compile; then
18698 yyy=`$run ./try`
18699 case "$yyy" in
18700 12345678901)
18701 sPRId64='"Ld"'; sPRIi64='"Li"'; sPRIu64='"Lu"';
18702 sPRIo64='"Lo"'; sPRIx64='"Lx"'; sPRIXU64='"LX"';
18703 echo "We will use %Ld."
18704 ;;
18705 esac
18706 fi
18707fi
18708
18709if $test X"$sPRId64" = X -a X"$quadtype" = X"long long"; then
18710 $cat >try.c <<'EOCP'
18711#include <sys/types.h>
18712#include <stdio.h>
18713int main() {
18714 long long q = 12345678901LL; /* AIX cc requires the LL suffix. */
18715 printf("%lld\n", q);
18716}
18717EOCP
18718 set try
18719 if eval $compile; then
18720 yyy=`$run ./try`
18721 case "$yyy" in
18722 12345678901)
18723 sPRId64='"lld"'; sPRIi64='"lli"'; sPRIu64='"llu"';
18724 sPRIo64='"llo"'; sPRIx64='"llx"'; sPRIXU64='"llX"';
18725 echo "We will use the %lld style."
18726 ;;
18727 esac
18728 fi
18729fi
18730
18731if $test X"$sPRId64" = X -a X"$quadtype" != X; then
18732 $cat >try.c <<EOCP
18733#include <sys/types.h>
18734#include <stdio.h>
18735int main() {
18736 $quadtype q = 12345678901;
18737 printf("%qd\n", q);
18738}
18739EOCP
18740 set try
18741 if eval $compile; then
18742 yyy=`$run ./try`
18743 case "$yyy" in
18744 12345678901)
18745 sPRId64='"qd"'; sPRIi64='"qi"'; sPRIu64='"qu"';
18746 sPRIo64='"qo"'; sPRIx64='"qx"'; sPRIXU64='"qX"';
18747 echo "We will use %qd."
18748 ;;
18749 esac
18750 fi
18751fi
18752
18753if $test X"$sPRId64" = X; then
18754 echo "Cannot figure out how to print 64-bit integers." >&4
18755fi
18756
18757$rm -f try try.*
18758
18759fi
18760
18761case "$sPRId64" in
18762'') d_PRId64="$undef"; d_PRIi64="$undef"; d_PRIu64="$undef";
18763 d_PRIo64="$undef"; d_PRIx64="$undef"; d_PRIXU64="$undef";
18764 ;;
18765*) d_PRId64="$define"; d_PRIi64="$define"; d_PRIu64="$define";
18766 d_PRIo64="$define"; d_PRIx64="$define"; d_PRIXU64="$define";
18767 ;;
18768esac
18769
18770
18771echo " "
18772$echo "Checking the format strings to be used for Perl's internal types..." >&4
18773
18774if $test X"$ivsize" = X8; then
18775 ivdformat="$sPRId64"
18776 uvuformat="$sPRIu64"
18777 uvoformat="$sPRIo64"
18778 uvxformat="$sPRIx64"
18779 uvXUformat="$sPRIXU64"
18780else
18781 if $test X"$ivsize" = X"$longsize"; then
18782 ivdformat='"ld"'
18783 uvuformat='"lu"'
18784 uvoformat='"lo"'
18785 uvxformat='"lx"'
18786 uvXUformat='"lX"'
18787 else
18788 if $test X"$ivsize" = X"$intsize"; then
18789 ivdformat='"d"'
18790 uvuformat='"u"'
18791 uvoformat='"o"'
18792 uvxformat='"x"'
18793 uvXUformat='"X"'
18794 else
18795 : far out
18796 if $test X"$ivsize" = X"$shortsize"; then
18797 ivdformat='"hd"'
18798 uvuformat='"hu"'
18799 uvoformat='"ho"'
18800 uvxformat='"hx"'
18801 uvXUformat='"hX"'
18802 fi
18803 fi
18804 fi
18805fi
18806
18807if $test X"$uselongdouble" = X"$define" -a X"$d_longdbl" = X"$define" -a X"$d_PRIgldbl" = X"$define"; then
18808 nveformat="$sPRIeldbl"
18809 nvfformat="$sPRIfldbl"
18810 nvgformat="$sPRIgldbl"
18811 nvEUformat="$sPRIEUldbl"
18812 nvFUformat="$sPRIFUldbl"
18813 nvGUformat="$sPRIGUldbl"
18814else
18815 nveformat='"e"'
18816 nvfformat='"f"'
18817 nvgformat='"g"'
18818 nvEUformat='"E"'
18819 nvFUformat='"F"'
18820 nvGUformat='"G"'
18821fi
18822
18823case "$ivdformat" in
18824'') echo "$0: Fatal: failed to find format strings, cannot continue." >&4
18825 exit 1
18826 ;;
18827esac
18828
18829
18830echo " "
18831$echo "Checking the format string to be used for gids..." >&4
18832
18833case "$gidsign" in
18834-1) if $test X"$gidsize" = X"$ivsize"; then
18835 gidformat="$ivdformat"
18836 else
18837 if $test X"$gidsize" = X"$longsize"; then
18838 gidformat='"ld"'
18839 else
18840 if $test X"$gidsize" = X"$intsize"; then
18841 gidformat='"d"'
18842 else
18843 if $test X"$gidsize" = X"$shortsize"; then
18844 gidformat='"hd"'
18845 fi
18846 fi
18847 fi
18848 fi
18849 ;;
18850*) if $test X"$gidsize" = X"$uvsize"; then
18851 gidformat="$uvuformat"
18852 else
18853 if $test X"$gidsize" = X"$longsize"; then
18854 gidformat='"lu"'
18855 else
18856 if $test X"$gidsize" = X"$intsize"; then
18857 gidformat='"u"'
18858 else
18859 if $test X"$gidsize" = X"$shortsize"; then
18860 gidformat='"hu"'
18861 fi
18862 fi
18863 fi
18864 fi
18865 ;;
18866esac
18867
18868: see if getgroups exists
18869set getgroups d_getgrps
18870eval $inlibc
18871
18872: see if setgroups exists
18873set setgroups d_setgrps
18874eval $inlibc
18875
18876
18877: Find type of 2nd arg to 'getgroups()' and 'setgroups()'
18878echo " "
18879case "$d_getgrps$d_setgrps" in
18880*define*)
18881 case "$groupstype" in
18882 '') dflt="$gidtype" ;;
18883 *) dflt="$groupstype" ;;
18884 esac
18885 $cat <<EOM
18886What type of pointer is the second argument to getgroups() and setgroups()?
18887Usually this is the same as group ids, $gidtype, but not always.
18888
18889EOM
18890 rp='What type pointer is the second argument to getgroups() and setgroups()?'
18891 . ./myread
18892 groupstype="$ans"
18893 ;;
18894*) groupstype="$gidtype";;
18895esac
18896
18897
18898case "$mad" in
18899$define|true|[yY]*) dflt='y' ;;
18900*) dflt='n' ;;
18901esac
18902cat <<EOM
18903
18904Would you like to build with Misc Attribute Decoration? This is development
18905work leading to a Perl 5 to Perl 6 convertor, which imposes a space and speed
18906overhead on the interpreter.
18907
18908If this doesn't make any sense to you, just accept the default '$dflt'.
18909EOM
18910rp='Build Perl with MAD?'
18911. ./myread
18912case "$ans" in
18913y|Y) val="$define"
18914 madlyh='madly.h madly.act madly.tab'
18915 madlysrc='madly.c'
18916 madlyobj="madly$_o" ;;
18917*) val="$undef"
18918 madlyh=''
18919 madlysrc=''
18920 madlyobj='' ;;
18921esac
18922set mad
18923eval $setvar
18924
18925echo " "
18926echo "Checking if your $make program sets \$(MAKE)..." >&4
18927case "$make_set_make" in
18928'')
18929 $sed 's/^X //' > testmake.mak << 'EOF'
18930Xall:
18931X @echo 'maketemp="$(MAKE)"'
18932EOF
18933 case "`$make -f testmake.mak 2>/dev/null`" in
18934 *maketemp=*) make_set_make='#' ;;
18935 *) make_set_make="MAKE=$make" ;;
18936 esac
18937 $rm -f testmake.mak
18938 ;;
18939esac
18940case "$make_set_make" in
18941'#') echo "Yup, it does.";;
18942*) echo "Nope, it doesn't.";;
18943esac
18944
18945: see what type is used for mode_t
18946rp="What is the type used for file modes for system calls (e.g. fchmod())?"
18947set mode_t modetype int stdio.h sys/types.h
18948eval $typedef_ask
18949
18950: see if stdarg is available
18951echo " "
18952if $test `./findhdr stdarg.h`; then
18953 echo "<stdarg.h> found." >&4
18954 valstd="$define"
18955else
18956 echo "<stdarg.h> NOT found." >&4
18957 valstd="$undef"
18958fi
18959
18960: see if varags is available
18961echo " "
18962if $test `./findhdr varargs.h`; then
18963 echo "<varargs.h> found." >&4
18964else
18965 echo "<varargs.h> NOT found, but that's ok (I hope)." >&4
18966fi
18967
18968: set up the varargs testing programs
18969$cat > varargs.c <<EOP
18970#ifdef I_STDARG
18971#include <stdarg.h>
18972#endif
18973#ifdef I_VARARGS
18974#include <varargs.h>
18975#endif
18976
18977#ifdef I_STDARG
18978int f(char *p, ...)
18979#else
18980int f(va_alist)
18981va_dcl
18982#endif
18983{
18984 va_list ap;
18985#ifndef I_STDARG
18986 char *p;
18987#endif
18988#ifdef I_STDARG
18989 va_start(ap,p);
18990#else
18991 va_start(ap);
18992 p = va_arg(ap, char *);
18993#endif
18994 va_end(ap);
18995}
18996EOP
18997$cat > varargs <<EOP
18998$startsh
18999if $cc -c $ccflags -D\$1 varargs.c >/dev/null 2>&1; then
19000 echo "true"
19001else
19002 echo "false"
19003fi
19004$rm -f varargs$_o
19005EOP
19006chmod +x varargs
19007
19008: now check which varargs header should be included
19009echo " "
19010i_varhdr=''
19011case "$valstd" in
19012"$define")
19013 if `./varargs I_STDARG`; then
19014 val='stdarg.h'
19015 elif `./varargs I_VARARGS`; then
19016 val='varargs.h'
19017 fi
19018 ;;
19019*)
19020 if `./varargs I_VARARGS`; then
19021 val='varargs.h'
19022 fi
19023 ;;
19024esac
19025case "$val" in
19026'')
19027echo "I could not find the definition for va_dcl... You have problems..." >&4
19028 val="$undef"; set i_stdarg; eval $setvar
19029 val="$undef"; set i_varargs; eval $setvar
19030 ;;
19031*)
19032 set i_varhdr
19033 eval $setvar
19034 case "$i_varhdr" in
19035 stdarg.h)
19036 val="$define"; set i_stdarg; eval $setvar
19037 val="$undef"; set i_varargs; eval $setvar
19038 ;;
19039 varargs.h)
19040 val="$undef"; set i_stdarg; eval $setvar
19041 val="$define"; set i_varargs; eval $setvar
19042 ;;
19043 esac
19044 echo "We'll include <$i_varhdr> to get va_dcl definition." >&4;;
19045esac
19046$rm -f varargs*
19047
19048: see if we need va_copy
19049echo " "
19050case "$i_stdarg" in
19051"$define")
19052 $cat >try.c <<EOCP
19053#include <stdarg.h>
19054#include <stdio.h>
19055#$i_stdlib I_STDLIB
19056#ifdef I_STDLIB
19057#include <stdlib.h>
19058#endif
19059#include <signal.h>
19060
19061int
19062ivfprintf(FILE *f, const char *fmt, va_list *valp)
19063{
19064 return vfprintf(f, fmt, *valp);
19065}
19066
19067int
19068myvfprintf(FILE *f, const char *fmt, va_list val)
19069{
19070 return ivfprintf(f, fmt, &val);
19071}
19072
19073int
19074myprintf(char *fmt, ...)
19075{
19076 va_list val;
19077 va_start(val, fmt);
19078 return myvfprintf(stdout, fmt, val);
19079}
19080
19081int
19082main(int ac, char **av)
19083{
19084 signal(SIGSEGV, exit);
19085
19086 myprintf("%s%cs all right, then\n", "that", '\'');
19087 exit(0);
19088}
19089EOCP
19090 set try
19091 if eval $compile && $run ./try 2>&1 >/dev/null; then
19092 case "`$run ./try`" in
19093 "that's all right, then")
19094 okay=yes
19095 ;;
19096 esac
19097 fi
19098 case "$okay" in
19099 yes) echo "It seems that you don't need va_copy()." >&4
19100 need_va_copy="$undef"
19101 ;;
19102 *) echo "It seems that va_copy() or similar will be needed." >&4
19103 need_va_copy="$define"
19104 ;;
19105 esac
19106 $rm -f try.* core core.* *.core *.core.*
19107 ;;
19108*) echo "You don't have <stdarg.h>, not checking for va_copy()." >&4
19109 ;;
19110esac
19111
19112: see what type is used for size_t
19113rp="What is the type used for the length parameter for string functions?"
19114set size_t sizetype 'unsigned int' stdio.h sys/types.h
19115eval $typedef_ask
19116
19117: check for type of arguments to gethostbyaddr.
19118if test "X$netdb_host_type" = X -o "X$netdb_hlen_type" = X; then
19119 case "$d_gethbyaddr" in
19120 $define)
19121 $cat <<EOM
19122
19123Checking to see what type of arguments are accepted by gethostbyaddr().
19124EOM
19125 hdrs="$define sys/types.h
19126 $d_socket sys/socket.h
19127 $i_niin netinet/in.h
19128 $i_netdb netdb.h
19129 $i_unistd unistd.h"
19130 : The first arg can 'char *' or 'void *'
19131 : The second arg is some of integral type
19132 for xxx in in_addr_t 'const void *' 'const char *' 'void *' 'char *'; do
19133 for yyy in size_t long int; do
19134 case "$netdb_host_type" in
19135 '') try="extern struct hostent *gethostbyaddr($xxx, $yyy, int);"
19136 if ./protochk "$try" $hdrs; then
19137 echo "Your system accepts $xxx for the first arg."
19138 echo "...and $yyy for the second arg."
19139 netdb_host_type="$xxx"
19140 netdb_hlen_type="$yyy"
19141 fi
19142 ;;
19143 esac
19144 done
19145 done
19146 : In case none of those worked, prompt the user.
19147 case "$netdb_host_type" in
19148 '') rp='What is the type for the 1st argument to gethostbyaddr?'
19149 dflt='char *'
19150 . ./myread
19151 netdb_host_type=$ans
19152 rp='What is the type for the 2nd argument to gethostbyaddr?'
19153 dflt="$sizetype"
19154 . ./myread
19155 netdb_hlen_type=$ans
19156 ;;
19157 esac
19158 ;;
19159 *) : no gethostbyaddr, so pick harmless defaults
19160 netdb_host_type='char *'
19161 netdb_hlen_type="$sizetype"
19162 ;;
19163 esac
19164 # Remove the "const" if needed. -- but then we'll have a
19165 # prototype clash!
19166 # netdb_host_type=`echo "$netdb_host_type" | sed 's/^const //'`
19167fi
19168
19169: check for type of argument to gethostbyname.
19170if test "X$netdb_name_type" = X ; then
19171 case "$d_gethbyname" in
19172 $define)
19173 $cat <<EOM
19174
19175Checking to see what type of argument is accepted by gethostbyname().
19176EOM
19177 hdrs="$define sys/types.h
19178 $d_socket sys/socket.h
19179 $i_niin netinet/in.h
19180 $i_netdb netdb.h
19181 $i_unistd unistd.h"
19182 for xxx in "const char *" "char *"; do
19183 case "$netdb_name_type" in
19184 '') try="extern struct hostent *gethostbyname($xxx);"
19185 if ./protochk "$try" $hdrs; then
19186 echo "Your system accepts $xxx."
19187 netdb_name_type="$xxx"
19188 fi
19189 ;;
19190 esac
19191 done
19192 : In case none of those worked, prompt the user.
19193 case "$netdb_name_type" in
19194 '') rp='What is the type for the 1st argument to gethostbyname?'
19195 dflt='char *'
19196 . ./myread
19197 netdb_name_type=$ans
19198 ;;
19199 esac
19200 ;;
19201 *) : no gethostbyname, so pick harmless default
19202 netdb_name_type='char *'
19203 ;;
19204 esac
19205fi
19206
19207: check for type of 1st argument to getnetbyaddr.
19208if test "X$netdb_net_type" = X ; then
19209 case "$d_getnbyaddr" in
19210 $define)
19211 $cat <<EOM
19212
19213Checking to see what type of 1st argument is accepted by getnetbyaddr().
19214EOM
19215 hdrs="$define sys/types.h
19216 $d_socket sys/socket.h
19217 $i_niin netinet/in.h
19218 $i_netdb netdb.h
19219 $i_unistd unistd.h"
19220 for xxx in in_addr_t "unsigned long" long "unsigned int" int; do
19221 case "$netdb_net_type" in
19222 '') try="extern struct netent *getnetbyaddr($xxx, int);"
19223 if ./protochk "$try" $hdrs; then
19224 echo "Your system accepts $xxx."
19225 netdb_net_type="$xxx"
19226 fi
19227 ;;
19228 esac
19229 done
19230 : In case none of those worked, prompt the user.
19231 case "$netdb_net_type" in
19232 '') rp='What is the type for the 1st argument to getnetbyaddr?'
19233 dflt='long'
19234 . ./myread
19235 netdb_net_type=$ans
19236 ;;
19237 esac
19238 ;;
19239 *) : no getnetbyaddr, so pick harmless default
19240 netdb_net_type='long'
19241 ;;
19242 esac
19243fi
19244: locate the preferred pager for this system
19245fn=f/
19246case "$pager" in
19247'')
19248 dflt=''
19249 case "$pg" in
19250 /*) dflt=$pg;;
19251 [a-zA-Z]:/*) dflt=$pg;;
19252 esac
19253 case "$more" in
19254 /*) dflt=$more;;
19255 [a-zA-Z]:/*) dflt=$more;;
19256 esac
19257 case "$less" in
19258 /*) dflt=$less;;
19259 [a-zA-Z]:/*) dflt=$less;;
19260 esac
19261 case "$dflt" in
19262 '') dflt=/usr/ucb/more;;
19263 esac
19264 ;;
19265*) dflt="$pager"
19266 : Instruct ./getfile to trust the hinted or previous pager value,
19267 : even if it does not begin with a slash. For example, on os2,
19268 : pager might be cmd /c more. See comments in UU/getfile.
19269 fn="f/($pager)"
19270 ;;
19271esac
19272echo " "
19273rp='What pager is used on your system?'
19274. ./getfile
19275pager="$ans"
19276
19277: see what type pids are declared as in the kernel
19278rp="What is the type of process ids on this system?"
19279set pid_t pidtype int stdio.h sys/types.h
19280eval $typedef_ask
19281
19282: see if ar generates random libraries by itself
19283echo " "
19284echo "Checking how to generate random libraries on your machine..." >&4
19285echo 'int bar1() { return bar2(); }' > bar1.c
19286echo 'int bar2() { return 2; }' > bar2.c
19287$cat > foo.c <<EOP
19288#$i_stdlib I_STDLIB
19289#ifdef I_STDLIB
19290#include <stdlib.h>
19291#endif
19292int main() { printf("%d\n", bar1()); exit(0); }
19293EOP
19294$cc $ccflags -c bar1.c >/dev/null 2>&1
19295$cc $ccflags -c bar2.c >/dev/null 2>&1
19296$cc $ccflags -c foo.c >/dev/null 2>&1
19297$ar rc bar$_a bar2$_o bar1$_o >/dev/null 2>&1
19298if $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
19299 $run ./foobar >/dev/null 2>&1; then
19300 echo "$ar appears to generate random libraries itself."
19301 orderlib=false
19302 if [ "X$ranlib" = "X" ]; then
19303 ranlib=":"
19304 fi
19305elif $ar s bar$_a >/dev/null 2>&1 &&
19306 $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
19307 $run ./foobar >/dev/null 2>&1; then
19308 echo "a table of contents needs to be added with '$ar s'."
19309 orderlib=false
19310 ranlib="$ar s"
19311elif $ar ts bar$_a >/dev/null 2>&1 &&
19312 $cc -o foobar $ccflags $ldflags foo$_o bar$_a $libs > /dev/null 2>&1 &&
19313 $run ./foobar >/dev/null 2>&1; then
19314 echo "a table of contents needs to be added with '$ar ts'."
19315 orderlib=false
19316 ranlib="$ar ts"
19317else
19318 case "$ranlib" in
19319 :) ranlib='';;
19320 '')
19321 ranlib=`./loc ranlib X /usr/bin /bin /usr/local/bin`
19322 $test -f $ranlib || ranlib=''
19323 ;;
19324 esac
19325 if $test -n "$ranlib"; then
19326 echo "your system has '$ranlib'; we'll use that."
19327 orderlib=false
19328 else
19329 echo "your system doesn't seem to support random libraries"
19330 echo "so we'll use lorder and tsort to order the libraries."
19331 orderlib=true
19332 ranlib=":"
19333 fi
19334fi
19335$rm -f foo* bar*
19336
19337: check for type of arguments to select.
19338case "$selecttype" in
19339'') case "$d_select" in
19340 $define)
19341 echo " "
19342 $cat <<EOM
19343Checking to see what type of arguments are accepted by select().
19344EOM
19345 hdrs="$define sys/types.h
19346 $i_systime sys/time.h
19347 $i_sysselct sys/select.h
19348 $d_socket sys/socket.h"
19349 : The first arg can be int, unsigned, or size_t
19350 : The last arg may or may not be 'const'
19351 val=''
19352 : void pointer has been seen but using that
19353 : breaks the selectminbits test
19354 for xxx in 'fd_set *' 'int *'; do
19355 for nfd in 'int' 'size_t' 'unsigned long' 'unsigned' ; do
19356 for tmo in 'struct timeval *' 'const struct timeval *'; do
19357 case "$val" in
19358 '') try="extern select _(($nfd, $xxx, $xxx, $xxx, $tmo));"
19359 if ./protochk "$try" $hdrs; then
19360 echo "Your system accepts $xxx."
19361 val="$xxx"
19362 fi
19363 ;;
19364 esac
19365 done
19366 done
19367 done
19368 case "$val" in
19369 '') rp='What is the type for the 2nd, 3rd, and 4th arguments to select?'
19370 case "$d_fd_set" in
19371 $define) dflt="fd_set *" ;;
19372 *) dflt="int *" ;;
19373 esac
19374 . ./myread
19375 val=$ans
19376 ;;
19377 esac
19378 selecttype="$val"
19379 ;;
19380 *) : no select, so pick a harmless default
19381 selecttype='int *'
19382 ;;
19383 esac
19384 ;;
19385esac
19386
19387: check for the select 'width'
19388case "$selectminbits" in
19389'') safebits=`expr $ptrsize \* 8`
19390 case "$d_select" in
19391 $define)
19392 $cat <<EOM
19393
19394Checking to see on how many bits at a time your select() operates...
19395EOM
19396 $cat >try.c <<EOCP
19397#include <sys/types.h>
19398#$i_time I_TIME
19399#$i_systime I_SYS_TIME
19400#$i_systimek I_SYS_TIME_KERNEL
19401#ifdef I_TIME
19402# include <time.h>
19403#endif
19404#ifdef I_SYS_TIME
19405# ifdef I_SYS_TIME_KERNEL
19406# define KERNEL
19407# endif
19408# include <sys/time.h>
19409# ifdef I_SYS_TIME_KERNEL
19410# undef KERNEL
19411# endif
19412#endif
19413#$i_sysselct I_SYS_SELECT
19414#ifdef I_SYS_SELECT
19415#include <sys/select.h>
19416#endif
19417#$d_socket HAS_SOCKET
19418#ifdef HAS_SOCKET
19419# include <sys/socket.h> /* Might include <sys/bsdtypes.h> */
19420#endif
19421#include <stdio.h>
19422#$i_stdlib I_STDLIB
19423#ifdef I_STDLIB
19424#include <stdlib.h>
19425#endif
19426$selecttype b;
19427#define S sizeof(*(b))
19428#define MINBITS 64
19429#define NBYTES (S * 8 > MINBITS ? S : MINBITS/8)
19430#define NBITS (NBYTES * 8)
19431int main() {
19432 char *s = malloc(NBYTES);
19433 struct timeval t;
19434 int i;
19435 FILE* fp;
19436 int fd;
19437
19438 if (!s)
19439 exit(1);
19440 fclose(stdin);
19441 fp = fopen("try.c", "r");
19442 if (fp == 0)
19443 exit(2);
19444 fd = fileno(fp);
19445 if (fd < 0)
19446 exit(3);
19447 b = ($selecttype)s;
19448 for (i = 0; i < NBITS; i++)
19449 FD_SET(i, b);
19450 t.tv_sec = 0;
19451 t.tv_usec = 0;
19452 select(fd + 1, b, 0, 0, &t);
19453 for (i = NBITS - 1; i > fd && FD_ISSET(i, b); i--);
19454 free(s);
19455 printf("%d\n", i + 1);
19456 return 0;
19457}
19458EOCP
19459 set try
19460 if eval $compile_ok; then
19461 selectminbits=`$run ./try`
19462 case "$selectminbits" in
19463 '') cat >&4 <<EOM
19464Cannot figure out on how many bits at a time your select() operates.
19465I'll play safe and guess it is $safebits bits.
19466EOM
19467 selectminbits=$safebits
19468 bits="$safebits bits"
19469 ;;
19470 1) bits="1 bit" ;;
19471 *) bits="$selectminbits bits" ;;
19472 esac
19473 echo "Your select() operates on $bits at a time." >&4
19474 else
19475 rp='What is the minimum number of bits your select() operates on?'
19476 case "$byteorder" in
19477 12345678) dflt=64 ;;
19478 1234) dflt=32 ;;
19479 *) dflt=1 ;;
19480 esac
19481 . ./myread
19482 val=$ans
19483 selectminbits="$val"
19484 fi
19485 $rm -f try.* try
19486 ;;
19487 *) : no select, so pick a harmless default
19488 selectminbits=$safebits
19489 ;;
19490 esac
19491 ;;
19492esac
19493
19494: Trace out the files included by signal.h, then look for SIGxxx names.
19495: Remove SIGARRAYSIZE used by HPUX.
19496: Remove SIGSTKSIZE used by Linux.
19497: Remove SIGSTKSZ used by Posix.
19498: Remove SIGTYP void lines used by OS2.
19499: Some cpps, like os390, dont give the file name anywhere
19500if [ "X$fieldn" = X ]; then
19501 : Just make some guesses. We check them later.
19502 xxx='/usr/include/signal.h /usr/include/sys/signal.h'
19503else
19504 xxx=`echo '#include <signal.h>' |
19505 $cppstdin $cppminus $cppflags 2>/dev/null |
19506 $grep '^[ ]*#.*include' |
19507 $awk "{print \\$$fieldn}" | $sed 's!"!!g' | $sed 's!\\\\\\\\!/!g' | $sort | $uniq`
19508fi
19509: Check this list of files to be sure we have parsed the cpp output ok.
19510: This will also avoid potentially non-existent files, such
19511: as ../foo/bar.h
19512xxxfiles=''
19513for xx in $xxx /dev/null ; do
19514 $test -f "$xx" && xxxfiles="$xxxfiles $xx"
19515done
19516: If we have found no files, at least try signal.h
19517case "$xxxfiles" in
19518'') xxxfiles=`./findhdr signal.h` ;;
19519esac
19520xxx=`awk '
19521$1 ~ /^#define$/ && $2 ~ /^SIG[A-Z0-9]*$/ && $2 !~ /SIGARRAYSIZE/ && $2 !~ /SIGSTKSIZE/ && $2 !~ /SIGSTKSZ/ && $3 !~ /void/ {
19522 print substr($2, 4, 20)
19523}
19524$1 == "#" && $2 ~ /^define$/ && $3 ~ /^SIG[A-Z0-9]*$/ && $3 !~ /SIGARRAYSIZE/ && $4 !~ /void/ {
19525 print substr($3, 4, 20)
19526}' $xxxfiles`
19527: Append some common names just in case the awk scan failed.
19528xxx="$xxx ABRT ALRM BUS CANCEL CHLD CLD CONT DIL EMT FPE"
19529xxx="$xxx FREEZE HUP ILL INT IO IOT KILL LOST LWP PHONE"
19530xxx="$xxx PIPE POLL PROF PWR QUIT RTMAX RTMIN SEGV STKFLT STOP"
19531xxx="$xxx SYS TERM THAW TRAP TSTP TTIN TTOU URG USR1 USR2"
19532xxx="$xxx USR3 USR4 VTALRM WAITING WINCH WIND WINDOW XCPU XFSZ"
19533
19534: generate a few handy files for later
19535$cat > signal.c <<EOCP
19536#include <sys/types.h>
19537#include <signal.h>
19538#$i_stdlib I_STDLIB
19539#ifdef I_STDLIB
19540#include <stdlib.h>
19541#endif
19542#include <stdio.h>
19543int main() {
19544
19545/* Strange style to avoid deeply-nested #if/#else/#endif */
19546#ifndef NSIG
19547# ifdef _NSIG
19548# define NSIG (_NSIG)
19549# endif
19550#endif
19551
19552#ifndef NSIG
19553# ifdef SIGMAX
19554# define NSIG (SIGMAX+1)
19555# endif
19556#endif
19557
19558#ifndef NSIG
19559# ifdef SIG_MAX
19560# define NSIG (SIG_MAX+1)
19561# endif
19562#endif
19563
19564#ifndef NSIG
19565# ifdef _SIG_MAX
19566# define NSIG (_SIG_MAX+1)
19567# endif
19568#endif
19569
19570#ifndef NSIG
19571# ifdef MAXSIG
19572# define NSIG (MAXSIG+1)
19573# endif
19574#endif
19575
19576#ifndef NSIG
19577# ifdef MAX_SIG
19578# define NSIG (MAX_SIG+1)
19579# endif
19580#endif
19581
19582#ifndef NSIG
19583# ifdef SIGARRAYSIZE
19584# define NSIG SIGARRAYSIZE /* Assume ary[SIGARRAYSIZE] */
19585# endif
19586#endif
19587
19588#ifndef NSIG
19589# ifdef _sys_nsig
19590# define NSIG (_sys_nsig) /* Solaris 2.5 */
19591# endif
19592#endif
19593
19594/* Default to some arbitrary number that's big enough to get most
19595 of the common signals.
19596*/
19597#ifndef NSIG
19598# define NSIG 50
19599#endif
19600
19601printf("NSIG %d\n", NSIG);
19602
19603#ifndef JUST_NSIG
19604
19605EOCP
19606
19607echo $xxx | $tr ' ' $trnl | $sort | $uniq | $awk '
19608{
19609 printf "#ifdef SIG"; printf $1; printf "\n"
19610 printf "printf(\""; printf $1; printf " %%d\\n\",SIG";
19611 printf $1; printf ");\n"
19612 printf "#endif\n"
19613}
19614END {
19615 printf "#endif /* JUST_NSIG */\n";
19616 printf "exit(0);\n}\n";
19617}
19618' >>signal.c
19619$cat >signal.awk <<'EOP'
19620BEGIN { ndups = 0 }
19621$1 ~ /^NSIG$/ { nsig = $2 }
19622($1 !~ /^NSIG$/) && (NF == 2) && ($2 ~ /^[0-9][0-9]*$/) {
19623 if ($2 > maxsig) { maxsig = $2 }
19624 if (sig_name[$2]) {
19625 dup_name[ndups] = $1
19626 dup_num[ndups] = $2
19627 ndups++
19628 }
19629 else {
19630 sig_name[$2] = $1
19631 sig_num[$2] = $2
19632 }
19633}
19634END {
19635 if (nsig == 0) {
19636 nsig = maxsig + 1
19637 }
19638 printf("NSIG %d\n", nsig);
19639 for (n = 1; n < nsig; n++) {
19640 if (sig_name[n]) {
19641 printf("%s %d\n", sig_name[n], sig_num[n])
19642 }
19643 else {
19644 printf("NUM%d %d\n", n, n)
19645 }
19646 }
19647 for (n = 0; n < ndups; n++) {
19648 printf("%s %d\n", dup_name[n], dup_num[n])
19649 }
19650}
19651EOP
19652$cat >signal_cmd <<EOS
19653$startsh
19654if $test -s signal.lst; then
19655 echo "Using your existing signal.lst file"
19656 exit 0
19657fi
19658xxx="$xxx"
19659EOS
19660$cat >>signal_cmd <<'EOS'
19661
19662set signal
19663if eval $compile_ok; then
19664 $run ./signal$_exe | ($sort -n -k 2 2>/dev/null || $sort -n +1) | $uniq | $awk -f signal.awk >signal.lst
19665else
19666 echo "(I can't seem be able to compile the whole test program)" >&4
19667 echo "(I'll try it in little pieces.)" >&4
19668 set signal -DJUST_NSIG
19669 if eval $compile_ok; then
19670 $run ./signal$_exe > signal.nsg
19671 $cat signal.nsg
19672 else
19673 echo "I can't seem to figure out how many signals you have." >&4
19674 echo "Guessing 50." >&4
19675 echo 'NSIG 50' > signal.nsg
19676 fi
19677 : Now look at all the signal names, one at a time.
19678 for xx in `echo $xxx | $tr ' ' $trnl | $sort | $uniq`; do
19679 $cat > signal.c <<EOCP
19680#include <sys/types.h>
19681#include <signal.h>
19682#include <stdio.h>
19683int main() {
19684printf("$xx %d\n", SIG${xx});
19685return 0;
19686}
19687EOCP
19688 set signal
19689 if eval $compile; then
19690 echo "SIG${xx} found."
19691 $run ./signal$_exe >> signal.ls1
19692 else
19693 echo "SIG${xx} NOT found."
19694 fi
19695 done
19696 if $test -s signal.ls1; then
19697 $cat signal.nsg signal.ls1 |
19698 $sort -n | $uniq | $awk -f signal.awk >signal.lst
19699 fi
19700
19701fi
19702if $test -s signal.lst; then
19703 :
19704else
19705 echo "(AAK! I can't compile the test programs -- Guessing)" >&4
19706 echo 'kill -l' >signal
19707 set X `csh -f <signal`
19708 $rm -f signal
19709 shift
19710 case $# in
19711 0) set HUP INT QUIT ILL TRAP ABRT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM;;
19712 esac
19713 echo $@ | $tr ' ' $trnl | \
19714 $awk '{ printf "%s %d\n", $1, ++s; }
19715 END { printf "NSIG %d\n", ++s }' >signal.lst
19716fi
19717$rm -f signal.c signal$_exe signal$_o signal.nsg signal.ls1
19718EOS
19719chmod a+x signal_cmd
19720$eunicefix signal_cmd
19721
19722: generate list of signal names
19723echo " "
19724case "$sig_name_init" in
19725'') doinit=yes ;;
19726*) case "$sig_num_init" in
19727 ''|*,*) doinit=yes ;;
19728 esac ;;
19729esac
19730case "$doinit" in
19731yes)
19732 echo "Generating a list of signal names and numbers..." >&4
19733 . ./signal_cmd
19734 sig_count=`$awk '/^NSIG/ { printf "%d", $2 }' signal.lst`
19735 sig_name=`$awk 'BEGIN { printf "ZERO " }
19736 !/^NSIG/ { printf "%s ", $1 }' signal.lst`
19737 sig_num=`$awk 'BEGIN { printf "0 " }
19738 !/^NSIG/ { printf "%d ", $2 }' signal.lst`
19739 sig_name_init=`$awk 'BEGIN { printf "\"ZERO\", " }
19740 !/^NSIG/ { printf "\"%s\", ", $1 }
19741 END { printf "0\n" }' signal.lst`
19742 sig_num_init=`$awk 'BEGIN { printf "0, " }
19743 !/^NSIG/ { printf "%d, ", $2}
19744 END { printf "0\n"}' signal.lst`
19745 ;;
19746esac
19747echo "The following $sig_count signals are available:"
19748echo " "
19749echo $sig_name | $awk \
19750'BEGIN { linelen = 0 }
19751{
19752 for (i = 1; i <= NF; i++) {
19753 name = "SIG" $i " "
19754 linelen = linelen + length(name)
19755 if (linelen > 70) {
19756 printf "\n"
19757 linelen = length(name)
19758 }
19759 printf "%s", name
19760 }
19761 printf "\n"
19762}'
19763sig_size=`echo $sig_name | awk '{print NF}'`
19764$rm -f signal signal.c signal.awk signal.lst signal_cmd
19765
19766echo " "
19767case "$sizetype" in
19768*_t) zzz="$sizetype" ;;
19769*) zzz="filesize" ;;
19770esac
19771echo "Checking the size of $zzz..." >&4
19772cat > try.c <<EOCP
19773#include <sys/types.h>
19774#include <stdio.h>
19775#$i_stdlib I_STDLIB
19776#ifdef I_STDLIB
19777#include <stdlib.h>
19778#endif
19779int main() {
19780 printf("%d\n", (int)sizeof($sizetype));
19781 exit(0);
19782}
19783EOCP
19784set try
19785if eval $compile_ok; then
19786 yyy=`$run ./try`
19787 case "$yyy" in
19788 '') sizesize=4
19789 echo "(I can't execute the test program--guessing $sizesize.)" >&4
19790 ;;
19791 *) sizesize=$yyy
19792 echo "Your $zzz size is $sizesize bytes."
19793 ;;
19794 esac
19795else
19796 sizesize=4
19797 echo "(I can't compile the test program--guessing $sizesize.)" >&4
19798fi
19799
19800
19801: check for socklen_t
19802echo " "
19803echo "Checking to see if you have socklen_t..." >&4
19804$cat >try.c <<EOCP
19805#include <sys/types.h>
19806#$d_socket HAS_SOCKET
19807#ifdef HAS_SOCKET
19808#include <sys/socket.h>
19809#endif
19810int main() { socklen_t x = 16; }
19811EOCP
19812set try
19813if eval $compile; then
19814 val="$define"
19815 echo "You have socklen_t."
19816else
19817 val="$undef"
19818 echo "You do not have socklen_t."
19819 case "$sizetype" in
19820 size_t) echo "(You do have size_t, that might work. Some people are happy with just an int.)" ;;
19821 esac
19822fi
19823$rm -f try try.*
19824set d_socklen_t
19825eval $setvar
19826
19827: see if this is a socks.h system
19828set socks.h i_socks
19829eval $inhdr
19830
19831: check for type of the size argument to socket calls
19832case "$d_socket" in
19833"$define")
19834 $cat <<EOM
19835
19836Checking to see what type is the last argument of accept().
19837EOM
19838 yyy=''
19839 case "$d_socklen_t" in
19840 "$define") yyy="$yyy socklen_t"
19841 esac
19842 yyy="$yyy $sizetype int long unsigned"
19843 for xxx in $yyy; do
19844 case "$socksizetype" in
19845 '') try="extern int accept(int, struct sockaddr *, $xxx *);"
19846 case "$usesocks" in
19847 "$define")
19848 if ./protochk "$try" $i_systypes sys/types.h $d_socket sys/socket.h literal '#define INCLUDE_PROTOTYPES' $i_socks socks.h.; then
19849 echo "Your system accepts '$xxx *' for the last argument of accept()."
19850 socksizetype="$xxx"
19851 fi
19852 ;;
19853 *) if ./protochk "$try" $i_systypes sys/types.h $d_socket sys/socket.h; then
19854 echo "Your system accepts '$xxx *' for the last argument of accept()."
19855 socksizetype="$xxx"
19856 fi
19857 ;;
19858 esac
19859 ;;
19860 esac
19861 done
19862: In case none of those worked, prompt the user.
19863 case "$socksizetype" in
19864 '') rp='What is the type for socket address structure sizes?'
19865 dflt='int'
19866 . ./myread
19867 socksizetype=$ans
19868 ;;
19869 esac
19870 ;;
19871*) : no sockets, so pick relatively harmless default
19872 socksizetype='int'
19873 ;;
19874esac
19875
19876: see what type is used for signed size_t
19877set ssize_t ssizetype int stdio.h sys/types.h
19878eval $typedef
19879dflt="$ssizetype"
19880$cat > try.c <<EOM
19881#include <stdio.h>
19882#$i_stdlib I_STDLIB
19883#ifdef I_STDLIB
19884#include <stdlib.h>
19885#endif
19886#include <sys/types.h>
19887#define Size_t $sizetype
19888#define SSize_t $dflt
19889int main()
19890{
19891 if (sizeof(Size_t) == sizeof(SSize_t))
19892 printf("$dflt\n");
19893 else if (sizeof(Size_t) == sizeof(int))
19894 printf("int\n");
19895 else
19896 printf("long\n");
19897 exit(0);
19898}
19899EOM
19900echo " "
19901set try
19902if eval $compile_ok && $run ./try > /dev/null; then
19903 ssizetype=`$run ./try`
19904 echo "I'll be using $ssizetype for functions returning a byte count." >&4
19905else
19906 $cat >&4 <<EOM
19907Help! I can't compile and run the ssize_t test program: please enlighten me!
19908(This is probably a misconfiguration in your system or libraries, and
19909you really ought to fix it. Still, I'll try anyway.)
19910
19911I need a type that is the same size as $sizetype, but is guaranteed to
19912be signed. Common values are ssize_t, int and long.
19913
19914EOM
19915 rp="What signed type is the same size as $sizetype?"
19916 . ./myread
19917 ssizetype="$ans"
19918fi
19919$rm -f try try.*
19920
19921: see what type of char stdio uses.
19922echo " "
19923echo '#include <stdio.h>' > stdio.c
19924$cppstdin $cppminus < stdio.c > stdioh
19925if $contains 'unsigned.*char.*_ptr;' stdioh >/dev/null 2>&1 ; then
19926 echo "Your stdio uses unsigned chars." >&4
19927 stdchar="unsigned char"
19928else
19929 echo "Your stdio uses signed chars." >&4
19930 stdchar="char"
19931fi
19932$rm -f stdio.* stdioh
19933
19934: see what type uids are declared as in the kernel
19935echo " "
19936echo "Looking for the type for user ids returned by getuid()."
19937set uid_t uidtype xxx stdio.h sys/types.h
19938eval $typedef
19939case "$uidtype" in
19940xxx)
19941 xxx=`./findhdr sys/user.h`
19942 set `grep '_ruid;' "$xxx" 2>/dev/null` unsigned short
19943 case $1 in
19944 unsigned) dflt="$1 $2" ;;
19945 *) dflt="$1" ;;
19946 esac
19947 ;;
19948*) dflt="$uidtype";;
19949esac
19950case "$uidtype" in
19951uid_t) echo "uid_t found." ;;
19952*) rp="What is the type for user ids returned by getuid()?"
19953 . ./myread
19954 uidtype="$ans"
19955 ;;
19956esac
19957
19958echo " "
19959case "$uidtype" in
19960*_t) zzz="$uidtype" ;;
19961*) zzz="uid" ;;
19962esac
19963echo "Checking the size of $zzz..." >&4
19964cat > try.c <<EOCP
19965#include <sys/types.h>
19966#include <stdio.h>
19967#$i_stdlib I_STDLIB
19968#ifdef I_STDLIB
19969#include <stdlib.h>
19970#endif
19971int main() {
19972 printf("%d\n", (int)sizeof($uidtype));
19973 exit(0);
19974}
19975EOCP
19976set try
19977if eval $compile_ok; then
19978 yyy=`$run ./try`
19979 case "$yyy" in
19980 '') uidsize=4
19981 echo "(I can't execute the test program--guessing $uidsize.)" >&4
19982 ;;
19983 *) uidsize=$yyy
19984 echo "Your $zzz is $uidsize bytes long."
19985 ;;
19986 esac
19987else
19988 uidsize=4
19989 echo "(I can't compile the test program--guessing $uidsize.)" >&4
19990fi
19991
19992echo " "
19993case "$uidtype" in
19994*_t) zzz="$uidtype" ;;
19995*) zzz="uid" ;;
19996esac
19997echo "Checking the sign of $zzz..." >&4
19998cat > try.c <<EOCP
19999#include <sys/types.h>
20000#include <stdio.h>
20001int main() {
20002 $uidtype foo = -1;
20003 if (foo < 0)
20004 printf("-1\n");
20005 else
20006 printf("1\n");
20007}
20008EOCP
20009set try
20010if eval $compile; then
20011 yyy=`$run ./try`
20012 case "$yyy" in
20013 '') uidsign=1
20014 echo "(I can't execute the test program--guessing unsigned.)" >&4
20015 ;;
20016 *) uidsign=$yyy
20017 case "$uidsign" in
20018 1) echo "Your $zzz is unsigned." ;;
20019 -1) echo "Your $zzz is signed." ;;
20020 esac
20021 ;;
20022 esac
20023else
20024 uidsign=1
20025 echo "(I can't compile the test program--guessing unsigned.)" >&4
20026fi
20027
20028
20029
20030echo " "
20031$echo "Checking the format string to be used for uids..." >&4
20032
20033case "$uidsign" in
20034-1) if $test X"$uidsize" = X"$ivsize"; then
20035 uidformat="$ivdformat"
20036 else
20037 if $test X"$uidsize" = X"$longsize"; then
20038 uidformat='"ld"'
20039 else
20040 if $test X"$uidsize" = X"$intsize"; then
20041 uidformat='"d"'
20042 else
20043 if $test X"$uidsize" = X"$shortsize"; then
20044 uidformat='"hd"'
20045 fi
20046 fi
20047 fi
20048 fi
20049 ;;
20050*) if $test X"$uidsize" = X"$uvsize"; then
20051 uidformat="$uvuformat"
20052 else
20053 if $test X"$uidsize" = X"$longsize"; then
20054 uidformat='"lu"'
20055 else
20056 if $test X"$uidsize" = X"$intsize"; then
20057 uidformat='"u"'
20058 else
20059 if $test X"$uidsize" = X"$shortsize"; then
20060 uidformat='"hu"'
20061 fi
20062 fi
20063 fi
20064 fi
20065 ;;
20066esac
20067
20068
20069case "$usesitecustomize" in
20070 $define|true|[Yy]*)
20071 usesitecustomize="$define"
20072 ;;
20073 *)
20074 usesitecustomize="$undef"
20075 ;;
20076 esac
20077
20078: determine compiler compiler
20079case "$yacc" in
20080'')
20081 dflt=yacc;;
20082*)
20083 dflt="$yacc";;
20084esac
20085echo " "
20086comp='yacc'
20087if $test -f "$byacc$_exe"; then
20088 dflt="$byacc"
20089 comp="byacc or $comp"
20090fi
20091if $test -f "$bison$_exe"; then
20092 comp="$comp or bison -y"
20093fi
20094rp="Which compiler compiler ($comp) shall I use?"
20095. ./myread
20096yacc="$ans"
20097case "$yacc" in
20098*bis*)
20099 case "$yacc" in
20100 *-y*) ;;
20101 *)
20102 yacc="$yacc -y"
20103 echo "(Adding -y option to bison to get yacc-compatible behaviour.)"
20104 ;;
20105 esac
20106 ;;
20107esac
20108
20109: see if this is a fp.h system
20110set fp.h i_fp
20111eval $inhdr
20112
20113: see if this is a fp_class.h system
20114set fp_class.h i_fp_class
20115eval $inhdr
20116
20117: see if this is a ieeefp.h system
20118case "$i_ieeefp" in
20119'' ) set ieeefp.h i_ieeefp
20120 eval $inhdr
20121 ;;
20122esac
20123
20124: see if this is a libutil.h system
20125set libutil.h i_libutil
20126eval $inhdr
20127
20128: see if mach cthreads are available
20129if test "X$usethreads" = "X$define"; then
20130 set mach/cthreads.h i_machcthr
20131 eval $inhdr
20132else
20133 i_machcthr="$undef"
20134fi
20135
20136
20137
20138: see if this is a mntent.h system
20139set mntent.h i_mntent
20140eval $inhdr
20141
20142: see if ndbm.h is available
20143set ndbm.h t_ndbm
20144eval $inhdr
20145
20146case "$t_ndbm" in
20147$undef)
20148 # Some Linux distributions such as RedHat 7.1 put the
20149 # ndbm.h header in /usr/include/gdbm/ndbm.h.
20150 if $test -f /usr/include/gdbm/ndbm.h; then
20151 echo '<gdbm/ndbm.h> found.'
20152 ccflags="$ccflags -I/usr/include/gdbm"
20153 cppflags="$cppflags -I/usr/include/gdbm"
20154 t_ndbm=$define
20155 fi
20156 ;;
20157esac
20158
20159case "$t_ndbm" in
20160$define)
20161 : see if dbm_open exists
20162 set dbm_open d_dbm_open
20163 eval $inlibc
20164 case "$d_dbm_open" in
20165 $undef)
20166 t_ndbm="$undef"
20167 echo "We won't be including <ndbm.h>"
20168 ;;
20169 esac
20170 ;;
20171esac
20172val="$t_ndbm"
20173set i_ndbm
20174eval $setvar
20175
20176: see if net/errno.h is available
20177val=''
20178set net/errno.h val
20179eval $inhdr
20180
20181: Unfortunately, it causes problems on some systems. Arrgh.
20182case "$val" in
20183$define)
20184 cat > try.c <<'EOM'
20185#include <stdio.h>
20186#include <errno.h>
20187#include <net/errno.h>
20188int func()
20189{
20190 return ENOTSOCK;
20191}
20192EOM
20193 if $cc $ccflags -c try.c >/dev/null 2>&1; then
20194 echo "We'll be including <net/errno.h>." >&4
20195 else
20196 echo "We won't be including <net/errno.h>." >&4
20197 val="$undef"
20198 fi
20199 $rm -f try.* try
20200 ;;
20201esac
20202set i_neterrno
20203eval $setvar
20204
20205: see if netinet/tcp.h is available
20206set netinet/tcp.h i_netinettcp
20207eval $inhdr
20208
20209: see if this is a poll.h system
20210set poll.h i_poll
20211eval $inhdr
20212
20213: see if this is a prot.h system
20214set prot.h i_prot
20215eval $inhdr
20216
20217echo " "
20218$echo "Guessing which symbols your C compiler and preprocessor define..." >&4
20219$cat <<'EOSH' > Cppsym.know
20220a29k ABI64 aegis AES_SOURCE AIX AIX32 AIX370
20221AIX41 AIX42 AIX43 AIX_SOURCE aixpc ALL_SOURCE
20222alliant alpha am29000 AM29000 AMD64 amd64 amiga AMIGAOS AMIX
20223ansi ANSI_C_SOURCE apollo ardent ARM32 atarist att386 att3b
20224BeOS BIG_ENDIAN BIT_MSF bsd BSD bsd43 bsd4_2 bsd4_3 BSD4_3 bsd4_4
20225BSD_4_3 BSD_4_4 BSD_NET2 BSD_TIME BSD_TYPES BSDCOMPAT bsdi
20226bull c cadmus clipper CMU COFF COMPILER_VERSION
20227concurrent convex cpu cray CRAY CRAYMPP ctix CX_UX
20228CYGWIN DECC DGUX DGUX_SOURCE DJGPP dmert DOLPHIN DPX2 DSO
20229Dynix DynixPTX ELF encore EPI EXTENSIONS FAVOR_BSD
20230FILE_OFFSET_BITS FreeBSD GCC_NEW_VARARGS gcos gcx gimpel
20231GLIBC GLIBC_MINOR
20232GNU_SOURCE GNUC GNUC_MINOR GNU_LIBRARY GO32 gould GOULD_PN
20233H3050R H3050RX hbullx20 hcx host_mips
20234hp200 hp300 hp700 HP700 hp800 hp9000
20235hp9000s200 hp9000s300 hp9000s400 hp9000s500
20236hp9000s700 hp9000s800 hp9k8 hp_osf hppa hpux HPUX_SOURCE
20237i186 i286 i386 i486 i586 i686 i8086 i80960 i860 I960
20238IA64 iAPX286 ibm ibm032 ibmesa IBMR2 ibmrt ILP32 ILP64
20239INLINE_INTRINSICS INTRINSICS INT64 interdata is68k ksr1
20240LANGUAGE_C LARGE_FILE_API LARGEFILE64_SOURCE
20241LARGEFILE_SOURCE LFS64_LARGEFILE LFS_LARGEFILE
20242Linux LITTLE_ENDIAN LONG64 LONG_DOUBLE LONG_LONG
20243LONGDOUBLE LONGLONG LP64 luna luna88k Lynx
20244M68000 m68k m88100 m88k M88KBCS_TARGET M_COFF
20245M_I186 M_I286 M_I386 M_I8086 M_I86 M_I86SM M_SYS3
20246M_SYS5 M_SYSIII M_SYSV M_UNIX M_XENIX MACH machine MachTen
20247MATH_HAS_NO_SIDE_EFFECTS
20248mc300 mc500 mc68000 mc68010 mc68020 mc68030 mc68040
20249mc68060 mc68k mc68k32 mc700 mc88000 mc88100 merlin
20250mert MiNT mips MIPS_FPSET MIPS_ISA MIPS_SIM MIPS_SZINT
20251MIPS_SZLONG MIPS_SZPTR MIPSEB MIPSEL MODERN_C motorola
20252mpeix MSDOS MTXINU MULTIMAX mvs MVS n16 ncl_el ncl_mr
20253NetBSD news1500 news1700 news1800 news1900 news3700
20254news700 news800 news900 NeXT NLS nonstopux ns16000 ns32000
20255ns32016 ns32332 ns32k nsc32000
20256OCS88 OEMVS OpenBSD os OS2 OS390 osf OSF1 OSF_SOURCE
20257pa_risc PA_RISC1_1 PA_RISC2_0 PARAGON parisc
20258pc532 pdp11 PGC PIC plexus PORTAR posix
20259POSIX1B_SOURCE POSIX2_SOURCE POSIX4_SOURCE
20260POSIX_C_SOURCE POSIX_SOURCE POWER
20261PROTOTYPES PWB pyr QNX R3000 REENTRANT RES Rhapsody RISC6000
20262riscix riscos RT S390 SA110 scs SCO sequent sgi SGI_SOURCE SH3 sinix
20263SIZE_INT SIZE_LONG SIZE_PTR SOCKET_SOURCE SOCKETS_SOURCE
20264sony sony_news sonyrisc sparc sparclite spectrum
20265stardent stdc STDC_EXT stratos sun sun3 sun386
20266Sun386i svr3 svr4 SVR4_2 SVR4_SOURCE svr5
20267SX system SYSTYPE_BSD SYSTYPE_BSD43 SYSTYPE_BSD44
20268SYSTYPE_SVR4 SYSTYPE_SVR5 SYSTYPE_SYSV SYSV SYSV3 SYSV4 SYSV5
20269sysV68 sysV88 Tek4132 Tek4300 titan
20270TM3200 TM5400 TM5600
20271tower tower32 tower32_200 tower32_600 tower32_700
20272tower32_800 tower32_850 tss
20273u370 u3b u3b2 u3b20 u3b200 u3b20d u3b5
20274ultrix UMAXV UnicomPBB UnicomPBD UNICOS UNICOSMK
20275unix UNIX95 UNIX99 unixpc unos
20276USE_BSD USE_FILE_OFFSET64 USE_GNU USE_ISOC9X USE_LARGEFILE USE_LARGEFILE64
20277USE_MISC USE_POSIX USE_POSIX199309 USE_POSIX199506 USE_POSIX2
20278USE_REENTRANT USE_SVID USE_UNIX98 USE_XOPEN USE_XOPEN_EXTENDED
20279USGr4 USGr4_2
20280Utek UTek UTS UWIN uxpm uxps vax venix VMESA vms x86_64 xenix Xenix286
20281XOPEN_SOURCE XOPEN_SOURCE_EXTENDED XPG2 XPG2_EXTENDED
20282XPG3 XPG3_EXTENDED XPG4 XPG4_EXTENDED
20283z8000
20284EOSH
20285# Maybe put other stuff here too.
20286cat <<EOSH >>Cppsym.know
20287$osname
20288EOSH
20289./tr '[a-z]' '[A-Z]' < Cppsym.know > Cppsym.a
20290./tr '[A-Z]' '[a-z]' < Cppsym.know > Cppsym.b
20291$cat Cppsym.know > Cppsym.c
20292$cat Cppsym.a Cppsym.b Cppsym.c | $tr ' ' $trnl | $sort | $uniq > Cppsym.know
20293$rm -f Cppsym.a Cppsym.b Cppsym.c
20294cat <<EOSH > Cppsym
20295$startsh
20296if $test \$# -gt 0; then
20297 echo \$* | $tr " " "$trnl" | ./Cppsym.try > Cppsym.got
20298 if $test -s Cppsym.got; then
20299 $rm -f Cppsym.got
20300 exit 0
20301 fi
20302 $rm -f Cppsym.got
20303 exit 1
20304else
20305 $tr " " "$trnl" | ./Cppsym.try
20306 exit 0
20307fi
20308EOSH
20309chmod +x Cppsym
20310$eunicefix Cppsym
20311cat <<EOSH > Cppsym.try
20312$startsh
20313cat <<'EOCP' > try.c
20314#include <stdio.h>
20315#if cpp_stuff == 1
20316#define STRINGIFY(a) "a"
20317#endif
20318#if cpp_stuff == 42
20319#define StGiFy(a) #a
20320#define STRINGIFY(a) StGiFy(a)
20321#endif
20322#if $cpp_stuff != 1 && $cpp_stuff != 42
20323# include "Bletch: How does this C preprocessor stringify macros?"
20324#endif
20325int main() {
20326EOCP
20327$awk \\
20328EOSH
20329cat <<'EOSH' >> Cppsym.try
20330'length($1) > 0 {
20331 printf "#ifdef %s\nprintf(\"%s=%%s\\n\", STRINGIFY(%s));\n#endif\n", $1, $1, $1
20332 printf "#ifdef _%s\nprintf(\"_%s=%%s\\n\", STRINGIFY(_%s));\n#endif\n", $1, $1, $1
20333 printf "#ifdef __%s\nprintf(\"__%s=%%s\\n\", STRINGIFY(__%s));\n#endif\n", $1, $1, $1
20334 printf "#ifdef __%s__\nprintf(\"__%s__=%%s\\n\", STRINGIFY(__%s__));\n#endif\n", $1, $1, $1
20335}' >> try.c
20336echo 'return 0;}' >> try.c
20337EOSH
20338cat <<EOSH >> Cppsym.try
20339ccflags="$ccflags"
20340case "$osname-$gccversion" in
20341irix-) ccflags="\$ccflags -woff 1178" ;;
20342os2-*) ccflags="\$ccflags -Zlinker /PM:VIO" ;;
20343esac
20344$cc -o try -Dcpp_stuff=$cpp_stuff $optimize \$ccflags $ldflags try.c $libs && $run ./try | $sed 's/ /\\\\ /g'
20345EOSH
20346chmod +x Cppsym.try
20347$eunicefix Cppsym.try
20348./Cppsym < Cppsym.know > Cppsym.true
20349: Add in any linux cpp "predefined macros":
20350case "$osname::$gccversion" in
20351 *linux*::*.*)
20352 tHdrH=_tmpHdr
20353 rm -f $tHdrH'.h' $tHdrH
20354 touch $tHdrH'.h'
20355 if cpp -dM $tHdrH'.h' > $tHdrH'_cppsym.h' && [ -s $tHdrH'_cppsym.h' ]; then
20356 sed 's/#define[\ \ ]*//;s/[\ \ ].*$//' <$tHdrH'_cppsym.h' >$tHdrH'_cppsym.real'
20357 if [ -s $tHdrH'_cppsym.real' ]; then
20358 cat $tHdrH'_cppsym.real' Cppsym.know | sort | uniq | ./Cppsym | sort | uniq > Cppsym.true
20359 fi
20360 fi
20361 rm -f $tHdrH'.h' $tHdrH'_cppsym.h' $tHdrH'_cppsym.real'
20362 ;;
20363esac
20364: now check the C compiler for additional symbols
20365postprocess_cc_v=''
20366case "$osname" in
20367aix) postprocess_cc_v="|$tr , ' '" ;;
20368esac
20369$cat >ccsym <<EOS
20370$startsh
20371$cat >tmp.c <<EOF
20372extern int foo;
20373EOF
20374for i in \`$cc -v -c tmp.c 2>&1 $postprocess_cc_v\`
20375do
20376 case "\$i" in
20377 -D*) echo "\$i" | $sed 's/^-D//';;
20378 -A*) $test "$gccversion" && echo "\$i" | $sed 's/^-A//' | $sed 's/\(.*\)(\(.*\))/\1=\2/';;
20379 esac
20380done
20381$rm -f try.c
20382EOS
20383postprocess_cc_v=''
20384chmod +x ccsym
20385$eunicefix ccsym
20386./ccsym > ccsym1.raw
20387if $test -s ccsym1.raw; then
20388 $sort ccsym1.raw | $uniq >ccsym.raw
20389else
20390 mv ccsym1.raw ccsym.raw
20391fi
20392
20393$awk '/\=/ { print $0; next }
20394 { print $0"=1" }' ccsym.raw >ccsym.list
20395$comm -13 Cppsym.true ccsym.list >ccsym.own
20396$comm -12 Cppsym.true ccsym.list >ccsym.com
20397$comm -23 Cppsym.true ccsym.list >ccsym.cpp
20398also=''
20399if $test -z ccsym.raw; then
20400 echo "Your C compiler doesn't seem to define any symbols!" >&4
20401 echo " "
20402 echo "However, your C preprocessor defines the following symbols:"
20403 $cat Cppsym.true
20404 ccsymbols=''
20405 cppsymbols=`$cat Cppsym.true`
20406 cppsymbols=`echo $cppsymbols`
20407 cppccsymbols="$cppsymbols"
20408else
20409 if $test -s ccsym.com; then
20410 echo "Your C compiler and pre-processor define these symbols:"
20411 $sed -e 's/\(..*\)=.*/\1/' ccsym.com
20412 also='also '
20413 symbols='ones'
20414 cppccsymbols=`$cat ccsym.com`
20415 cppccsymbols=`echo $cppccsymbols`
20416 $test "$silent" || sleep 1
20417 fi
20418 if $test -s ccsym.cpp; then
20419 $test "$also" && echo " "
20420 echo "Your C pre-processor ${also}defines the following symbols:"
20421 $sed -e 's/\(..*\)=.*/\1/' ccsym.cpp
20422 also='further '
20423 cppsymbols=`$cat ccsym.cpp`
20424 cppsymbols=`echo $cppsymbols`
20425 $test "$silent" || sleep 1
20426 fi
20427 if $test -s ccsym.own; then
20428 $test "$also" && echo " "
20429 echo "Your C compiler ${also}defines the following cpp symbols:"
20430 $sed -e 's/\(..*\)=1/\1/' ccsym.own
20431 $sed -e 's/\(..*\)=.*/\1/' ccsym.own | $uniq >>Cppsym.true
20432 ccsymbols=`$cat ccsym.own`
20433 ccsymbols=`echo $ccsymbols`
20434 $test "$silent" || sleep 1
20435 fi
20436fi
20437
20438: see if this is a termio system
20439val="$undef"
20440val2="$undef"
20441val3="$undef"
20442if $test `./findhdr termios.h`; then
20443 set tcsetattr i_termios
20444 eval $inlibc
20445 val3="$i_termios"
20446fi
20447echo " "
20448case "$val3" in
20449"$define") echo "You have POSIX termios.h... good!" >&4;;
20450*) if ./Cppsym pyr; then
20451 case "`/bin/universe`" in
20452 ucb) if $test `./findhdr sgtty.h`; then
20453 val2="$define"
20454 echo "<sgtty.h> found." >&4
20455 else
20456 echo "System is pyramid with BSD universe."
20457 echo "<sgtty.h> not found--you could have problems." >&4
20458 fi;;
20459 *) if $test `./findhdr termio.h`; then
20460 val="$define"
20461 echo "<termio.h> found." >&4
20462 else
20463 echo "System is pyramid with USG universe."
20464 echo "<termio.h> not found--you could have problems." >&4
20465 fi;;
20466 esac
20467 elif ./usg; then
20468 if $test `./findhdr termio.h`; then
20469 echo "<termio.h> found." >&4
20470 val="$define"
20471 elif $test `./findhdr sgtty.h`; then
20472 echo "<sgtty.h> found." >&4
20473 val2="$define"
20474 else
20475echo "Neither <termio.h> nor <sgtty.h> found--you could have problems." >&4
20476 fi
20477 else
20478 if $test `./findhdr sgtty.h`; then
20479 echo "<sgtty.h> found." >&4
20480 val2="$define"
20481 elif $test `./findhdr termio.h`; then
20482 echo "<termio.h> found." >&4
20483 val="$define"
20484 else
20485echo "Neither <sgtty.h> nor <termio.h> found--you could have problems." >&4
20486 fi
20487 fi;;
20488esac
20489set i_termio; eval $setvar
20490val=$val2; set i_sgtty; eval $setvar
20491val=$val3; set i_termios; eval $setvar
20492
20493: see if stddef is available
20494set stddef.h i_stddef
20495eval $inhdr
20496
20497: see if this is a sunmath.h system
20498set sunmath.h i_sunmath
20499eval $inhdr
20500
20501: see if sys/access.h is available
20502set sys/access.h i_sysaccess
20503eval $inhdr
20504
20505: see if ioctl defs are in sgtty, termio, sys/filio or sys/ioctl
20506set sys/filio.h i_sysfilio
20507eval $inhdr
20508echo " "
20509if $test `./findhdr sys/ioctl.h`; then
20510 val="$define"
20511 echo '<sys/ioctl.h> found.' >&4
20512else
20513 val="$undef"
20514 if $test $i_sysfilio = "$define"; then
20515 echo '<sys/ioctl.h> NOT found.' >&4
20516 else
20517 $test $i_sgtty = "$define" && xxx="sgtty.h"
20518 $test $i_termio = "$define" && xxx="termio.h"
20519 $test $i_termios = "$define" && xxx="termios.h"
20520echo "No <sys/ioctl.h> found, assuming ioctl args are defined in <$xxx>." >&4
20521 fi
20522fi
20523set i_sysioctl
20524eval $setvar
20525
20526: see if socket ioctl defs are in sys/sockio.h
20527echo " "
20528xxx=`./findhdr sys/sockio.h`
20529if $test "$xxx"; then
20530 if $contains SIOCATMARK $xxx >/dev/null 2>&1; then
20531 val="$define"
20532 echo "You have socket ioctls defined in <sys/sockio.h>." >&4
20533 else
20534 val="$undef"
20535 echo "No socket ioctls found in <sys/sockio.h>." >&4
20536 fi
20537else
20538 val="$undef"
20539 $cat <<EOM
20540<sys/sockio.h> not found, assuming socket ioctls are in <sys/ioctl.h>.
20541EOM
20542fi
20543set i_syssockio
20544eval $setvar
20545
20546
20547: see if this is a syslog.h system
20548set syslog.h i_syslog
20549eval $inhdr
20550
20551
20552: see if this is a sys/mode.h system
20553set sys/mode.h i_sysmode
20554eval $inhdr
20555
20556: see if sys/resource.h has to be included
20557set sys/resource.h i_sysresrc
20558eval $inhdr
20559
20560: see if sys/security.h is available
20561set sys/security.h i_syssecrt
20562eval $inhdr
20563
20564: see if this is a sys/statvfs.h system
20565set sys/statvfs.h i_sysstatvfs
20566eval $inhdr
20567
20568: see if this is a sys/un.h system
20569set sys/un.h i_sysun
20570eval $inhdr
20571
20572
20573: see if this is a sys/utsname.h system
20574set sys/utsname.h i_sysutsname
20575eval $inhdr
20576
20577: see if this is a syswait system
20578set sys/wait.h i_syswait
20579eval $inhdr
20580
20581: see if this is a ustat.h system
20582set ustat.h i_ustat
20583eval $inhdr
20584
20585: see if this is an utime system
20586set utime.h i_utime
20587eval $inhdr
20588
20589: see if this is a values.h system
20590set values.h i_values
20591eval $inhdr
20592
20593: see if this is a vfork system
20594case "$d_vfork" in
20595"$define")
20596 set vfork.h i_vfork
20597 eval $inhdr
20598 ;;
20599*)
20600 i_vfork="$undef"
20601 ;;
20602esac
20603
20604: see if gdbm.h is available
20605set gdbm.h t_gdbm
20606eval $inhdr
20607case "$t_gdbm" in
20608$define)
20609 : see if gdbm_open exists
20610 set gdbm_open d_gdbm_open
20611 eval $inlibc
20612 case "$d_gdbm_open" in
20613 $undef)
20614 t_gdbm="$undef"
20615 echo "We won't be including <gdbm.h>"
20616 ;;
20617 esac
20618 ;;
20619esac
20620val="$t_gdbm"
20621set i_gdbm
20622eval $setvar
20623
20624echo " "
20625echo "Looking for extensions..." >&4
20626: If we are using the old config.sh, known_extensions may contain
20627: old or inaccurate or duplicate values.
20628known_extensions=''
20629nonxs_extensions=''
20630: We do not use find because it might not be available.
20631: We do not just use MANIFEST because the user may have dropped
20632: some additional extensions into the source tree and expect them
20633: to be built.
20634
20635: Function to recursively find available extensions, ignoring DynaLoader
20636: NOTE: recursion limit of 10 to prevent runaway in case of symlink madness
20637find_extensions='
20638 for xxx in *; do
20639 case "$xxx" in
20640 DynaLoader|dynaload) ;;
20641 *)
20642 if $test -f $xxx/$xxx.xs; then
20643 known_extensions="$known_extensions $1$xxx";
20644 elif $test -f $xxx/Makefile.PL; then
20645 nonxs_extensions="$nonxs_extensions $1$xxx";
20646 else
20647 if $test -d $xxx -a $# -lt 10; then
20648 set $1$xxx/ $*;
20649 cd "$xxx";
20650 eval $find_extensions;
20651 cd ..;
20652 shift;
20653 fi;
20654 fi
20655 ;;
20656 esac;
20657 done'
20658tdir=`pwd`
20659cd "$rsrc/ext"
20660set X
20661shift
20662eval $find_extensions
20663# Special case: Add in threads/shared since it is not picked up by the
20664# recursive find above (and adding in general recursive finding breaks
20665# SDBM_File/sdbm). A.D. 10/25/2001.
20666known_extensions="$known_extensions threads/shared"
20667set X $nonxs_extensions
20668shift
20669nonxs_extensions="$*"
20670set X $known_extensions
20671shift
20672known_extensions="$*"
20673cd "$tdir"
20674
20675: Now see which are supported on this system.
20676avail_ext=''
20677for xxx in $known_extensions ; do
20678 case "$xxx" in
20679 DB_File|db_file)
20680 case "$i_db" in
20681 $define) avail_ext="$avail_ext $xxx" ;;
20682 esac
20683 ;;
20684 GDBM_File|gdbm_fil)
20685 case "$i_gdbm" in
20686 $define) avail_ext="$avail_ext $xxx" ;;
20687 esac
20688 ;;
20689 I18N/Langinfo|i18n_lan)
20690 case "$i_langinfo$d_nl_langinfo" in
20691 $define$define) avail_ext="$avail_ext $xxx" ;;
20692 esac
20693 ;;
20694 NDBM_File|ndbm_fil)
20695 case "$i_ndbm" in
20696 $define)
20697 case "$osname-$use64bitint" in
20698 hpux-define)
20699 case "$libs" in
20700 *-lndbm*) avail_ext="$avail_ext $xxx" ;;
20701 esac
20702 ;;
20703 *) avail_ext="$avail_ext $xxx" ;;
20704 esac
20705 ;;
20706 esac
20707 ;;
20708 ODBM_File|odbm_fil)
20709 case "${i_dbm}${i_rpcsvcdbm}" in
20710 *"${define}"*)
20711 case "$osname-$use64bitint" in
20712 hpux-define)
20713 case "$libs" in
20714 *-ldbm*) avail_ext="$avail_ext $xxx" ;;
20715 esac
20716 ;;
20717 *) avail_ext="$avail_ext $xxx" ;;
20718 esac
20719 ;;
20720 esac
20721 ;;
20722 POSIX|posix)
20723 case "$useposix" in
20724 true|define|y) avail_ext="$avail_ext $xxx" ;;
20725 esac
20726 ;;
20727 Opcode|opcode)
20728 case "$useopcode" in
20729 true|define|y) avail_ext="$avail_ext $xxx" ;;
20730 esac
20731 ;;
20732 Socket|socket)
20733 case "$d_socket" in
20734 true|$define|y)
20735 case "$osname" in
20736 beos) ;; # not unless BONE
20737 *) avail_ext="$avail_ext $xxx" ;;
20738 esac
20739 ;;
20740 esac
20741 ;;
20742 Sys/Syslog|sys/syslog)
20743 : XXX syslog requires socket
20744 case "$d_socket" in
20745 true|$define|y) avail_ext="$avail_ext $xxx" ;;
20746 esac
20747 ;;
20748 Thread|thread)
20749 case "$usethreads" in
20750 true|$define|y)
20751 case "$useithreads" in
20752 $undef|false|[nN]*) avail_ext="$avail_ext $xxx" ;;
20753 esac
20754 esac
20755 ;;
20756 XS/APItest|xs/apitest)
20757 # This is just for testing. Skip it unless we have dynamic loading.
20758
20759 case "$usedl" in
20760 $define) avail_ext="$avail_ext $xxx" ;;
20761 esac
20762 ;;
20763 XS/Typemap|xs/typemap)
20764 # This is just for testing. Skip it unless we have dynamic loading.
20765 case "$usedl" in
20766 $define) avail_ext="$avail_ext $xxx" ;;
20767 esac
20768 ;;
20769 threads|threads/shared)
20770 # threads and threads::shared are special cases.
20771 # To stop people from asking "Perl 5.8.0 was supposed
20772 # to have this new fancy threads implementation but my
20773 # perl doesn't have it" and from people trying to
20774 # (re)install the threads module using CPAN.pm and
20775 # CPAN.pm then offering to reinstall Perl 5.8.0,
20776 # the threads.pm and threads/shared.pm will always be
20777 # there, croaking informatively ("you need to rebuild
20778 # all of Perl with threads, sorry") when threads haven't
20779 # been compiled in.
20780 # --jhi
20781 avail_ext="$avail_ext $xxx"
20782 ;;
20783 IPC/SysV|ipc/sysv)
20784 : XXX Do we need a useipcsysv variable here
20785 case "${d_msg}${d_sem}${d_shm}" in
20786 *"${define}"*) avail_ext="$avail_ext $xxx" ;;
20787 esac
20788 ;;
20789 *) avail_ext="$avail_ext $xxx"
20790 ;;
20791 esac
20792done
20793
20794set X $avail_ext
20795shift
20796avail_ext="$*"
20797
20798case "$onlyextensions" in
20799'') ;;
20800*) keepextensions=''
20801 echo "You have requested that only certains extensions be included..." >&4
20802 for i in $onlyextensions; do
20803 case " $avail_ext " in
20804 *" $i "*)
20805 echo "Keeping extension $i."
20806 keepextensions="$keepextensions $i"
20807 ;;
20808 *) echo "Ignoring extension $i." ;;
20809 esac
20810 done
20811 avail_ext="$keepextensions"
20812 ;;
20813esac
20814
20815case "$noextensions" in
20816'') ;;
20817*) keepextensions=''
20818 echo "You have requested that certain extensions be ignored..." >&4
20819 for i in $avail_ext; do
20820 case " $noextensions " in
20821 *" $i "*) echo "Ignoring extension $i." ;;
20822 *) echo "Keeping extension $i.";
20823 keepextensions="$keepextensions $i"
20824 ;;
20825 esac
20826 done
20827 avail_ext="$keepextensions"
20828 ;;
20829esac
20830
20831: Now see which nonxs extensions are supported on this system.
20832: For now assume all are.
20833nonxs_ext=''
20834for xxx in $nonxs_extensions ; do
20835 case "$xxx" in
20836 *) nonxs_ext="$nonxs_ext $xxx"
20837 ;;
20838 esac
20839done
20840
20841set X $nonxs_ext
20842shift
20843nonxs_ext="$*"
20844
20845case $usedl in
20846$define)
20847 $cat <<EOM
20848A number of extensions are supplied with $package. You may choose to
20849compile these extensions for dynamic loading (the default), compile
20850them into the $package executable (static loading), or not include
20851them at all. Answer "none" to include no extensions.
20852Note that DynaLoader is always built and need not be mentioned here.
20853
20854EOM
20855 case "$dynamic_ext" in
20856 '')
20857 : Exclude those listed in static_ext
20858 dflt=''
20859 for xxx in $avail_ext; do
20860 case " $static_ext " in
20861 *" $xxx "*) ;;
20862 *) dflt="$dflt $xxx" ;;
20863 esac
20864 done
20865 set X $dflt
20866 shift
20867 dflt="$*"
20868 ;;
20869 *) dflt="$dynamic_ext"
20870 # Perhaps we are reusing an old out-of-date config.sh.
20871 case "$hint" in
20872 previous)
20873 if test X"$dynamic_ext" != X"$avail_ext"; then
20874 $cat <<EOM
20875NOTICE: Your previous config.sh list may be incorrect.
20876The extensions now available to you are
20877 ${avail_ext}
20878but the default list from your previous config.sh is
20879 ${dynamic_ext}
20880
20881EOM
20882 fi
20883 ;;
20884 esac
20885 ;;
20886 esac
20887 case "$dflt" in
20888 '') dflt=none;;
20889 esac
20890 rp="What extensions do you wish to load dynamically?"
20891 . ./myread
20892 case "$ans" in
20893 none) dynamic_ext=' ' ;;
20894 *) dynamic_ext="$ans" ;;
20895 esac
20896
20897 case "$static_ext" in
20898 '')
20899 : Exclude those already listed in dynamic linking
20900 dflt=''
20901 for xxx in $avail_ext; do
20902 case " $dynamic_ext " in
20903 *" $xxx "*) ;;
20904 *) dflt="$dflt $xxx" ;;
20905 esac
20906 done
20907 set X $dflt
20908 shift
20909 dflt="$*"
20910 ;;
20911 *) dflt="$static_ext"
20912 ;;
20913 esac
20914
20915 case "$dflt" in
20916 '') dflt=none;;
20917 esac
20918 rp="What extensions do you wish to load statically?"
20919 . ./myread
20920 case "$ans" in
20921 none) static_ext=' ' ;;
20922 *) static_ext="$ans" ;;
20923 esac
20924 ;;
20925*)
20926 $cat <<EOM
20927A number of extensions are supplied with $package. Answer "none"
20928to include no extensions.
20929Note that DynaLoader is always built and need not be mentioned here.
20930
20931EOM
20932 case "$static_ext" in
20933 '') dflt="$avail_ext" ;;
20934 *) dflt="$static_ext"
20935 # Perhaps we are reusing an old out-of-date config.sh.
20936 case "$hint" in
20937 previous)
20938 if test X"$static_ext" != X"$avail_ext"; then
20939 $cat <<EOM
20940NOTICE: Your previous config.sh list may be incorrect.
20941The extensions now available to you are
20942 ${avail_ext}
20943but the default list from your previous config.sh is
20944 ${static_ext}
20945
20946EOM
20947 fi
20948 ;;
20949 esac
20950 ;;
20951 esac
20952 : Exclude those that are not xs extensions
20953 case "$dflt" in
20954 '') dflt=none;;
20955 esac
20956 rp="What extensions do you wish to include?"
20957 . ./myread
20958 case "$ans" in
20959 none) static_ext=' ' ;;
20960 *) static_ext="$ans" ;;
20961 esac
20962 ;;
20963esac
20964#
20965# Encode is a special case. If we are building Encode as a static
20966# extension, we need to explicitly list its subextensions as well.
20967# For other nested extensions, this is handled automatically by
20968# the appropriate Makefile.PL.
20969case " $static_ext " in
20970 *" Encode "*) # Add the subextensions of Encode
20971 cd "$rsrc/ext"
20972 for xxx in `ls Encode/*/Makefile.PL|awk -F/ '{print $2}'`; do
20973 static_ext="$static_ext Encode/$xxx"
20974 done
20975 cd "$tdir"
20976 ;;
20977esac
20978
20979set X $dynamic_ext $static_ext $nonxs_ext
20980shift
20981extensions="$*"
20982
20983# Sanity check: We require an extension suitable for use with
20984# AnyDBM_File, as well as Fcntl and IO. (Failure to have these
20985# should show up as failures in the test suite, but it's helpful to
20986# catch them now.) The 'extensions' list is normally sorted
20987# alphabetically, so we need to accept either
20988# DB_File ... Fcntl ... IO ....
20989# or something like
20990# Fcntl ... NDBM_File ... IO ....
20991case " $extensions" in
20992*"_File "*" Fcntl "*" IO "*) ;; # DB_File
20993*" Fcntl "*"_File "*" IO "*) ;; # GDBM_File
20994*" Fcntl "*" IO "*"_File "*) ;; # NDBM_File
20995*) echo "WARNING: Extensions DB_File or *DBM_File, Fcntl, and IO not configured." >&4
20996 echo "WARNING: The Perl you are building will be quite crippled." >& 4
20997 ;;
20998esac
20999
21000: Remove libraries needed only for extensions
21001: The appropriate ext/Foo/Makefile.PL will add them back in, if necessary.
21002: The exception is SunOS 4.x, which needs them.
21003case "${osname}X${osvers}" in
21004sunos*X4*)
21005 perllibs="$libs"
21006 ;;
21007*) case "$usedl" in
21008 $define|true|[yY]*)
21009 set X `echo " $libs " | sed -e 's@ -lndbm @ @' -e 's@ -lgdbm @ @' -e 's@ -ldbm @ @' -e 's@ -ldb @ @'`
21010 shift
21011 perllibs="$*"
21012 ;;
21013 *) perllibs="$libs"
21014 ;;
21015 esac
21016 ;;
21017esac
21018
21019: Remove build directory name from cppstdin so it can be used from
21020: either the present location or the final installed location.
21021echo " "
21022: Get out of the UU directory to get correct path name.
21023cd ..
21024case "$cppstdin" in
21025`pwd`/cppstdin)
21026 echo "Stripping down cppstdin path name"
21027 cppstdin=cppstdin
21028 ;;
21029esac
21030cd UU
21031
21032: end of configuration questions
21033echo " "
21034echo "End of configuration questions."
21035echo " "
21036
21037: back to where it started
21038if test -d ../UU; then
21039 cd ..
21040fi
21041
21042: configuration may be patched via a 'config.arch' file
21043if $test -f config.arch; then
21044 echo "I see a config.arch file, loading it."
21045 . ./config.arch
21046fi
21047
21048: configuration may be patched via a 'config.over' file
21049if $test -f config.over; then
21050 echo " "
21051 dflt=y
21052 rp='I see a config.over file. Do you wish to load it?'
21053 . UU/myread
21054 case "$ans" in
21055 n*) echo "OK, I'll ignore it.";;
21056 *) . ./config.over
21057 echo "Configuration override changes have been loaded."
21058 ;;
21059 esac
21060fi
21061
21062: in case they want portability, strip down executable paths
21063case "$d_portable" in
21064"$define")
21065 echo " "
21066 echo "Stripping down executable paths..." >&4
21067 for file in $loclist $trylist; do
21068 eval temp=\$$file
21069 eval $file=`basename $temp`
21070 done
21071 ;;
21072esac
21073
21074: create config.sh file
21075echo " "
21076echo "Creating config.sh..." >&4
21077$spitshell <<EOT >config.sh
21078$startsh
21079#
21080# This file was produced by running the Configure script. It holds all the
21081# definitions figured out by Configure. Should you modify one of these values,
21082# do not forget to propagate your changes by running "Configure -der". You may
21083# instead choose to run each of the .SH files by yourself, or "Configure -S".
21084#
21085
21086# Package name : $package
21087# Source directory : $src
21088# Configuration time: $cf_time
21089# Configured by : $cf_by
21090# Target system : $myuname
21091
21092Author='$Author'
21093Date='$Date'
21094Header='$Header'
21095Id='$Id'
21096Locker='$Locker'
21097Log='$Log'
21098Mcc='$Mcc'
21099RCSfile='$RCSfile'
21100Revision='$Revision'
21101Source='$Source'
21102State='$State'
21103_a='$_a'
21104_exe='$_exe'
21105_o='$_o'
21106afs='$afs'
21107afsroot='$afsroot'
21108alignbytes='$alignbytes'
21109ansi2knr='$ansi2knr'
21110aphostname='$aphostname'
21111api_revision='$api_revision'
21112api_subversion='$api_subversion'
21113api_version='$api_version'
21114api_versionstring='$api_versionstring'
21115ar='$ar'
21116archlib='$archlib'
21117archlibexp='$archlibexp'
21118archname64='$archname64'
21119archname='$archname'
21120archobjs='$archobjs'
21121asctime_r_proto='$asctime_r_proto'
21122awk='$awk'
21123baserev='$baserev'
21124bash='$bash'
21125bin='$bin'
21126binexp='$binexp'
21127bison='$bison'
21128byacc='$byacc'
21129byteorder='$byteorder'
21130c='$c'
21131castflags='$castflags'
21132cat='$cat'
21133cc='$cc'
21134cccdlflags='$cccdlflags'
21135ccdlflags='$ccdlflags'
21136ccflags='$ccflags'
21137ccflags_uselargefiles='$ccflags_uselargefiles'
21138ccname='$ccname'
21139ccsymbols='$ccsymbols'
21140ccversion='$ccversion'
21141cf_by='$cf_by'
21142cf_email='$cf_email'
21143cf_time='$cf_time'
21144charsize='$charsize'
21145chgrp='$chgrp'
21146chmod='$chmod'
21147chown='$chown'
21148clocktype='$clocktype'
21149comm='$comm'
21150compress='$compress'
21151contains='$contains'
21152cp='$cp'
21153cpio='$cpio'
21154cpp='$cpp'
21155cpp_stuff='$cpp_stuff'
21156cppccsymbols='$cppccsymbols'
21157cppflags='$cppflags'
21158cpplast='$cpplast'
21159cppminus='$cppminus'
21160cpprun='$cpprun'
21161cppstdin='$cppstdin'
21162cppsymbols='$cppsymbols'
21163crypt_r_proto='$crypt_r_proto'
21164cryptlib='$cryptlib'
21165csh='$csh'
21166ctermid_r_proto='$ctermid_r_proto'
21167ctime_r_proto='$ctime_r_proto'
21168d_Gconvert='$d_Gconvert'
21169d_PRIEUldbl='$d_PRIEUldbl'
21170d_PRIFUldbl='$d_PRIFUldbl'
21171d_PRIGUldbl='$d_PRIGUldbl'
21172d_PRIXU64='$d_PRIXU64'
21173d_PRId64='$d_PRId64'
21174d_PRIeldbl='$d_PRIeldbl'
21175d_PRIfldbl='$d_PRIfldbl'
21176d_PRIgldbl='$d_PRIgldbl'
21177d_PRIi64='$d_PRIi64'
21178d_PRIo64='$d_PRIo64'
21179d_PRIu64='$d_PRIu64'
21180d_PRIx64='$d_PRIx64'
21181d_SCNfldbl='$d_SCNfldbl'
21182d__fwalk='$d__fwalk'
21183d_access='$d_access'
21184d_accessx='$d_accessx'
21185d_aintl='$d_aintl'
21186d_alarm='$d_alarm'
21187d_archlib='$d_archlib'
21188d_asctime_r='$d_asctime_r'
21189d_atolf='$d_atolf'
21190d_atoll='$d_atoll'
21191d_attribute_format='$d_attribute_format'
21192d_attribute_malloc='$d_attribute_malloc'
21193d_attribute_nonnull='$d_attribute_nonnull'
21194d_attribute_noreturn='$d_attribute_noreturn'
21195d_attribute_pure='$d_attribute_pure'
21196d_attribute_unused='$d_attribute_unused'
21197d_attribute_warn_unused_result='$d_attribute_warn_unused_result'
21198d_bcmp='$d_bcmp'
21199d_bcopy='$d_bcopy'
21200d_bsd='$d_bsd'
21201d_bsdgetpgrp='$d_bsdgetpgrp'
21202d_bsdsetpgrp='$d_bsdsetpgrp'
21203d_builtin_choose_expr='$d_builtin_choose_expr'
21204d_builtin_expect='$d_builtin_expect'
21205d_bzero='$d_bzero'
21206d_casti32='$d_casti32'
21207d_castneg='$d_castneg'
21208d_charvspr='$d_charvspr'
21209d_chown='$d_chown'
21210d_chroot='$d_chroot'
21211d_chsize='$d_chsize'
21212d_class='$d_class'
21213d_clearenv='$d_clearenv'
21214d_closedir='$d_closedir'
21215d_cmsghdr_s='$d_cmsghdr_s'
21216d_const='$d_const'
21217d_copysignl='$d_copysignl'
21218d_crypt='$d_crypt'
21219d_crypt_r='$d_crypt_r'
21220d_csh='$d_csh'
21221d_ctermid_r='$d_ctermid_r'
21222d_ctime_r='$d_ctime_r'
21223d_cuserid='$d_cuserid'
21224d_dbl_dig='$d_dbl_dig'
21225d_dbminitproto='$d_dbminitproto'
21226d_difftime='$d_difftime'
21227d_dirfd='$d_dirfd'
21228d_dirnamlen='$d_dirnamlen'
21229d_dlerror='$d_dlerror'
21230d_dlopen='$d_dlopen'
21231d_dlsymun='$d_dlsymun'
21232d_dosuid='$d_dosuid'
21233d_drand48_r='$d_drand48_r'
21234d_drand48proto='$d_drand48proto'
21235d_dup2='$d_dup2'
21236d_eaccess='$d_eaccess'
21237d_endgrent='$d_endgrent'
21238d_endgrent_r='$d_endgrent_r'
21239d_endhent='$d_endhent'
21240d_endhostent_r='$d_endhostent_r'
21241d_endnent='$d_endnent'
21242d_endnetent_r='$d_endnetent_r'
21243d_endpent='$d_endpent'
21244d_endprotoent_r='$d_endprotoent_r'
21245d_endpwent='$d_endpwent'
21246d_endpwent_r='$d_endpwent_r'
21247d_endsent='$d_endsent'
21248d_endservent_r='$d_endservent_r'
21249d_eofnblk='$d_eofnblk'
21250d_eunice='$d_eunice'
21251d_faststdio='$d_faststdio'
21252d_fchdir='$d_fchdir'
21253d_fchmod='$d_fchmod'
21254d_fchown='$d_fchown'
21255d_fcntl='$d_fcntl'
21256d_fcntl_can_lock='$d_fcntl_can_lock'
21257d_fd_macros='$d_fd_macros'
21258d_fd_set='$d_fd_set'
21259d_fds_bits='$d_fds_bits'
21260d_fgetpos='$d_fgetpos'
21261d_finite='$d_finite'
21262d_finitel='$d_finitel'
21263d_flexfnam='$d_flexfnam'
21264d_flock='$d_flock'
21265d_flockproto='$d_flockproto'
21266d_fork='$d_fork'
21267d_fp_class='$d_fp_class'
21268d_fpathconf='$d_fpathconf'
21269d_fpclass='$d_fpclass'
21270d_fpclassify='$d_fpclassify'
21271d_fpclassl='$d_fpclassl'
21272d_fpos64_t='$d_fpos64_t'
21273d_frexpl='$d_frexpl'
21274d_fs_data_s='$d_fs_data_s'
21275d_fseeko='$d_fseeko'
21276d_fsetpos='$d_fsetpos'
21277d_fstatfs='$d_fstatfs'
21278d_fstatvfs='$d_fstatvfs'
21279d_fsync='$d_fsync'
21280d_ftello='$d_ftello'
21281d_ftime='$d_ftime'
21282d_futimes='$d_futimes'
21283d_getcwd='$d_getcwd'
21284d_getespwnam='$d_getespwnam'
21285d_getfsstat='$d_getfsstat'
21286d_getgrent='$d_getgrent'
21287d_getgrent_r='$d_getgrent_r'
21288d_getgrgid_r='$d_getgrgid_r'
21289d_getgrnam_r='$d_getgrnam_r'
21290d_getgrps='$d_getgrps'
21291d_gethbyaddr='$d_gethbyaddr'
21292d_gethbyname='$d_gethbyname'
21293d_gethent='$d_gethent'
21294d_gethname='$d_gethname'
21295d_gethostbyaddr_r='$d_gethostbyaddr_r'
21296d_gethostbyname_r='$d_gethostbyname_r'
21297d_gethostent_r='$d_gethostent_r'
21298d_gethostprotos='$d_gethostprotos'
21299d_getitimer='$d_getitimer'
21300d_getlogin='$d_getlogin'
21301d_getlogin_r='$d_getlogin_r'
21302d_getmnt='$d_getmnt'
21303d_getmntent='$d_getmntent'
21304d_getnbyaddr='$d_getnbyaddr'
21305d_getnbyname='$d_getnbyname'
21306d_getnent='$d_getnent'
21307d_getnetbyaddr_r='$d_getnetbyaddr_r'
21308d_getnetbyname_r='$d_getnetbyname_r'
21309d_getnetent_r='$d_getnetent_r'
21310d_getnetprotos='$d_getnetprotos'
21311d_getpagsz='$d_getpagsz'
21312d_getpbyname='$d_getpbyname'
21313d_getpbynumber='$d_getpbynumber'
21314d_getpent='$d_getpent'
21315d_getpgid='$d_getpgid'
21316d_getpgrp2='$d_getpgrp2'
21317d_getpgrp='$d_getpgrp'
21318d_getppid='$d_getppid'
21319d_getprior='$d_getprior'
21320d_getprotobyname_r='$d_getprotobyname_r'
21321d_getprotobynumber_r='$d_getprotobynumber_r'
21322d_getprotoent_r='$d_getprotoent_r'
21323d_getprotoprotos='$d_getprotoprotos'
21324d_getprpwnam='$d_getprpwnam'
21325d_getpwent='$d_getpwent'
21326d_getpwent_r='$d_getpwent_r'
21327d_getpwnam_r='$d_getpwnam_r'
21328d_getpwuid_r='$d_getpwuid_r'
21329d_getsbyname='$d_getsbyname'
21330d_getsbyport='$d_getsbyport'
21331d_getsent='$d_getsent'
21332d_getservbyname_r='$d_getservbyname_r'
21333d_getservbyport_r='$d_getservbyport_r'
21334d_getservent_r='$d_getservent_r'
21335d_getservprotos='$d_getservprotos'
21336d_getspnam='$d_getspnam'
21337d_getspnam_r='$d_getspnam_r'
21338d_gettimeod='$d_gettimeod'
21339d_gmtime_r='$d_gmtime_r'
21340d_gnulibc='$d_gnulibc'
21341d_grpasswd='$d_grpasswd'
21342d_hasmntopt='$d_hasmntopt'
21343d_htonl='$d_htonl'
21344d_ilogbl='$d_ilogbl'
21345d_index='$d_index'
21346d_inetaton='$d_inetaton'
21347d_int64_t='$d_int64_t'
21348d_isascii='$d_isascii'
21349d_isfinite='$d_isfinite'
21350d_isinf='$d_isinf'
21351d_isnan='$d_isnan'
21352d_isnanl='$d_isnanl'
21353d_killpg='$d_killpg'
21354d_lchown='$d_lchown'
21355d_ldbl_dig='$d_ldbl_dig'
21356d_libm_lib_version='$d_libm_lib_version'
21357d_link='$d_link'
21358d_localtime_r='$d_localtime_r'
21359d_locconv='$d_locconv'
21360d_lockf='$d_lockf'
21361d_longdbl='$d_longdbl'
21362d_longlong='$d_longlong'
21363d_lseekproto='$d_lseekproto'
21364d_lstat='$d_lstat'
21365d_madvise='$d_madvise'
21366d_malloc_good_size='$d_malloc_good_size'
21367d_malloc_size='$d_malloc_size'
21368d_mblen='$d_mblen'
21369d_mbstowcs='$d_mbstowcs'
21370d_mbtowc='$d_mbtowc'
21371d_memchr='$d_memchr'
21372d_memcmp='$d_memcmp'
21373d_memcpy='$d_memcpy'
21374d_memmove='$d_memmove'
21375d_memset='$d_memset'
21376d_mkdir='$d_mkdir'
21377d_mkdtemp='$d_mkdtemp'
21378d_mkfifo='$d_mkfifo'
21379d_mkstemp='$d_mkstemp'
21380d_mkstemps='$d_mkstemps'
21381d_mktime='$d_mktime'
21382d_mmap='$d_mmap'
21383d_modfl='$d_modfl'
21384d_modfl_pow32_bug='$d_modfl_pow32_bug'
21385d_modflproto='$d_modflproto'
21386d_mprotect='$d_mprotect'
21387d_msg='$d_msg'
21388d_msg_ctrunc='$d_msg_ctrunc'
21389d_msg_dontroute='$d_msg_dontroute'
21390d_msg_oob='$d_msg_oob'
21391d_msg_peek='$d_msg_peek'
21392d_msg_proxy='$d_msg_proxy'
21393d_msgctl='$d_msgctl'
21394d_msgget='$d_msgget'
21395d_msghdr_s='$d_msghdr_s'
21396d_msgrcv='$d_msgrcv'
21397d_msgsnd='$d_msgsnd'
21398d_msync='$d_msync'
21399d_munmap='$d_munmap'
21400d_mymalloc='$d_mymalloc'
21401d_nice='$d_nice'
21402d_nl_langinfo='$d_nl_langinfo'
21403d_nv_preserves_uv='$d_nv_preserves_uv'
21404d_nv_zero_is_allbits_zero='$d_nv_zero_is_allbits_zero'
21405d_off64_t='$d_off64_t'
21406d_old_pthread_create_joinable='$d_old_pthread_create_joinable'
21407d_oldpthreads='$d_oldpthreads'
21408d_oldsock='$d_oldsock'
21409d_open3='$d_open3'
21410d_pathconf='$d_pathconf'
21411d_pause='$d_pause'
21412d_perl_otherlibdirs='$d_perl_otherlibdirs'
21413d_phostname='$d_phostname'
21414d_pipe='$d_pipe'
21415d_poll='$d_poll'
21416d_portable='$d_portable'
21417d_procselfexe='$d_procselfexe'
21418d_pthread_atfork='$d_pthread_atfork'
21419d_pthread_attr_setscope='$d_pthread_attr_setscope'
21420d_pthread_yield='$d_pthread_yield'
21421d_pwage='$d_pwage'
21422d_pwchange='$d_pwchange'
21423d_pwclass='$d_pwclass'
21424d_pwcomment='$d_pwcomment'
21425d_pwexpire='$d_pwexpire'
21426d_pwgecos='$d_pwgecos'
21427d_pwpasswd='$d_pwpasswd'
21428d_pwquota='$d_pwquota'
21429d_qgcvt='$d_qgcvt'
21430d_quad='$d_quad'
21431d_random_r='$d_random_r'
21432d_readdir64_r='$d_readdir64_r'
21433d_readdir='$d_readdir'
21434d_readdir_r='$d_readdir_r'
21435d_readlink='$d_readlink'
21436d_readv='$d_readv'
21437d_recvmsg='$d_recvmsg'
21438d_rename='$d_rename'
21439d_rewinddir='$d_rewinddir'
21440d_rmdir='$d_rmdir'
21441d_safebcpy='$d_safebcpy'
21442d_safemcpy='$d_safemcpy'
21443d_sanemcmp='$d_sanemcmp'
21444d_sbrkproto='$d_sbrkproto'
21445d_scalbnl='$d_scalbnl'
21446d_sched_yield='$d_sched_yield'
21447d_scm_rights='$d_scm_rights'
21448d_seekdir='$d_seekdir'
21449d_select='$d_select'
21450d_sem='$d_sem'
21451d_semctl='$d_semctl'
21452d_semctl_semid_ds='$d_semctl_semid_ds'
21453d_semctl_semun='$d_semctl_semun'
21454d_semget='$d_semget'
21455d_semop='$d_semop'
21456d_sendmsg='$d_sendmsg'
21457d_setegid='$d_setegid'
21458d_seteuid='$d_seteuid'
21459d_setgrent='$d_setgrent'
21460d_setgrent_r='$d_setgrent_r'
21461d_setgrps='$d_setgrps'
21462d_sethent='$d_sethent'
21463d_sethostent_r='$d_sethostent_r'
21464d_setitimer='$d_setitimer'
21465d_setlinebuf='$d_setlinebuf'
21466d_setlocale='$d_setlocale'
21467d_setlocale_r='$d_setlocale_r'
21468d_setnent='$d_setnent'
21469d_setnetent_r='$d_setnetent_r'
21470d_setpent='$d_setpent'
21471d_setpgid='$d_setpgid'
21472d_setpgrp2='$d_setpgrp2'
21473d_setpgrp='$d_setpgrp'
21474d_setprior='$d_setprior'
21475d_setproctitle='$d_setproctitle'
21476d_setprotoent_r='$d_setprotoent_r'
21477d_setpwent='$d_setpwent'
21478d_setpwent_r='$d_setpwent_r'
21479d_setregid='$d_setregid'
21480d_setresgid='$d_setresgid'
21481d_setresuid='$d_setresuid'
21482d_setreuid='$d_setreuid'
21483d_setrgid='$d_setrgid'
21484d_setruid='$d_setruid'
21485d_setsent='$d_setsent'
21486d_setservent_r='$d_setservent_r'
21487d_setsid='$d_setsid'
21488d_setvbuf='$d_setvbuf'
21489d_sfio='$d_sfio'
21490d_shm='$d_shm'
21491d_shmat='$d_shmat'
21492d_shmatprototype='$d_shmatprototype'
21493d_shmctl='$d_shmctl'
21494d_shmdt='$d_shmdt'
21495d_shmget='$d_shmget'
21496d_sigaction='$d_sigaction'
21497d_sigprocmask='$d_sigprocmask'
21498d_sigsetjmp='$d_sigsetjmp'
21499d_snprintf='$d_snprintf'
21500d_sockatmark='$d_sockatmark'
21501d_sockatmarkproto='$d_sockatmarkproto'
21502d_socket='$d_socket'
21503d_socklen_t='$d_socklen_t'
21504d_sockpair='$d_sockpair'
21505d_socks5_init='$d_socks5_init'
21506d_sprintf_returns_strlen='$d_sprintf_returns_strlen'
21507d_sqrtl='$d_sqrtl'
21508d_srand48_r='$d_srand48_r'
21509d_srandom_r='$d_srandom_r'
21510d_sresgproto='$d_sresgproto'
21511d_sresuproto='$d_sresuproto'
21512d_statblks='$d_statblks'
21513d_statfs_f_flags='$d_statfs_f_flags'
21514d_statfs_s='$d_statfs_s'
21515d_statvfs='$d_statvfs'
21516d_stdio_cnt_lval='$d_stdio_cnt_lval'
21517d_stdio_ptr_lval='$d_stdio_ptr_lval'
21518d_stdio_ptr_lval_nochange_cnt='$d_stdio_ptr_lval_nochange_cnt'
21519d_stdio_ptr_lval_sets_cnt='$d_stdio_ptr_lval_sets_cnt'
21520d_stdio_stream_array='$d_stdio_stream_array'
21521d_stdiobase='$d_stdiobase'
21522d_stdstdio='$d_stdstdio'
21523d_strchr='$d_strchr'
21524d_strcoll='$d_strcoll'
21525d_strctcpy='$d_strctcpy'
21526d_strerrm='$d_strerrm'
21527d_strerror='$d_strerror'
21528d_strerror_r='$d_strerror_r'
21529d_strftime='$d_strftime'
21530d_strlcat='$d_strlcat'
21531d_strlcpy='$d_strlcpy'
21532d_strtod='$d_strtod'
21533d_strtol='$d_strtol'
21534d_strtold='$d_strtold'
21535d_strtoll='$d_strtoll'
21536d_strtoq='$d_strtoq'
21537d_strtoul='$d_strtoul'
21538d_strtoull='$d_strtoull'
21539d_strtouq='$d_strtouq'
21540d_strxfrm='$d_strxfrm'
21541d_suidsafe='$d_suidsafe'
21542d_symlink='$d_symlink'
21543d_syscall='$d_syscall'
21544d_syscallproto='$d_syscallproto'
21545d_sysconf='$d_sysconf'
21546d_sysernlst='$d_sysernlst'
21547d_syserrlst='$d_syserrlst'
21548d_system='$d_system'
21549d_tcgetpgrp='$d_tcgetpgrp'
21550d_tcsetpgrp='$d_tcsetpgrp'
21551d_telldir='$d_telldir'
21552d_telldirproto='$d_telldirproto'
21553d_time='$d_time'
21554d_times='$d_times'
21555d_tm_tm_gmtoff='$d_tm_tm_gmtoff'
21556d_tm_tm_zone='$d_tm_tm_zone'
21557d_tmpnam_r='$d_tmpnam_r'
21558d_truncate='$d_truncate'
21559d_ttyname_r='$d_ttyname_r'
21560d_tzname='$d_tzname'
21561d_u32align='$d_u32align'
21562d_ualarm='$d_ualarm'
21563d_umask='$d_umask'
21564d_uname='$d_uname'
21565d_union_semun='$d_union_semun'
21566d_unordered='$d_unordered'
21567d_unsetenv='$d_unsetenv'
21568d_usleep='$d_usleep'
21569d_usleepproto='$d_usleepproto'
21570d_ustat='$d_ustat'
21571d_vendorarch='$d_vendorarch'
21572d_vendorbin='$d_vendorbin'
21573d_vendorlib='$d_vendorlib'
21574d_vendorscript='$d_vendorscript'
21575d_vfork='$d_vfork'
21576d_void_closedir='$d_void_closedir'
21577d_voidsig='$d_voidsig'
21578d_voidtty='$d_voidtty'
21579d_volatile='$d_volatile'
21580d_vprintf='$d_vprintf'
21581d_vsnprintf='$d_vsnprintf'
21582d_wait4='$d_wait4'
21583d_waitpid='$d_waitpid'
21584d_wcstombs='$d_wcstombs'
21585d_wctomb='$d_wctomb'
21586d_writev='$d_writev'
21587d_xenix='$d_xenix'
21588date='$date'
21589db_hashtype='$db_hashtype'
21590db_prefixtype='$db_prefixtype'
21591db_version_major='$db_version_major'
21592db_version_minor='$db_version_minor'
21593db_version_patch='$db_version_patch'
21594defvoidused='$defvoidused'
21595direntrytype='$direntrytype'
21596dlext='$dlext'
21597dlsrc='$dlsrc'
21598doublesize='$doublesize'
21599drand01='$drand01'
21600drand48_r_proto='$drand48_r_proto'
21601dynamic_ext='$dynamic_ext'
21602eagain='$eagain'
21603ebcdic='$ebcdic'
21604echo='$echo'
21605egrep='$egrep'
21606emacs='$emacs'
21607endgrent_r_proto='$endgrent_r_proto'
21608endhostent_r_proto='$endhostent_r_proto'
21609endnetent_r_proto='$endnetent_r_proto'
21610endprotoent_r_proto='$endprotoent_r_proto'
21611endpwent_r_proto='$endpwent_r_proto'
21612endservent_r_proto='$endservent_r_proto'
21613eunicefix='$eunicefix'
21614exe_ext='$exe_ext'
21615expr='$expr'
21616extensions='$extensions'
21617extras='$extras'
21618fflushNULL='$fflushNULL'
21619fflushall='$fflushall'
21620find='$find'
21621firstmakefile='$firstmakefile'
21622flex='$flex'
21623fpossize='$fpossize'
21624fpostype='$fpostype'
21625freetype='$freetype'
21626from='$from'
21627full_ar='$full_ar'
21628full_csh='$full_csh'
21629full_sed='$full_sed'
21630gccansipedantic='$gccansipedantic'
21631gccosandvers='$gccosandvers'
21632gccversion='$gccversion'
21633getgrent_r_proto='$getgrent_r_proto'
21634getgrgid_r_proto='$getgrgid_r_proto'
21635getgrnam_r_proto='$getgrnam_r_proto'
21636gethostbyaddr_r_proto='$gethostbyaddr_r_proto'
21637gethostbyname_r_proto='$gethostbyname_r_proto'
21638gethostent_r_proto='$gethostent_r_proto'
21639getlogin_r_proto='$getlogin_r_proto'
21640getnetbyaddr_r_proto='$getnetbyaddr_r_proto'
21641getnetbyname_r_proto='$getnetbyname_r_proto'
21642getnetent_r_proto='$getnetent_r_proto'
21643getprotobyname_r_proto='$getprotobyname_r_proto'
21644getprotobynumber_r_proto='$getprotobynumber_r_proto'
21645getprotoent_r_proto='$getprotoent_r_proto'
21646getpwent_r_proto='$getpwent_r_proto'
21647getpwnam_r_proto='$getpwnam_r_proto'
21648getpwuid_r_proto='$getpwuid_r_proto'
21649getservbyname_r_proto='$getservbyname_r_proto'
21650getservbyport_r_proto='$getservbyport_r_proto'
21651getservent_r_proto='$getservent_r_proto'
21652getspnam_r_proto='$getspnam_r_proto'
21653gidformat='$gidformat'
21654gidsign='$gidsign'
21655gidsize='$gidsize'
21656gidtype='$gidtype'
21657glibpth='$glibpth'
21658gmake='$gmake'
21659gmtime_r_proto='$gmtime_r_proto'
21660gnulibc_version='$gnulibc_version'
21661grep='$grep'
21662groupcat='$groupcat'
21663groupstype='$groupstype'
21664gzip='$gzip'
21665h_fcntl='$h_fcntl'
21666h_sysfile='$h_sysfile'
21667hint='$hint'
21668hostcat='$hostcat'
21669html1dir='$html1dir'
21670html1direxp='$html1direxp'
21671html3dir='$html3dir'
21672html3direxp='$html3direxp'
21673i16size='$i16size'
21674i16type='$i16type'
21675i32size='$i32size'
21676i32type='$i32type'
21677i64size='$i64size'
21678i64type='$i64type'
21679i8size='$i8size'
21680i8type='$i8type'
21681i_arpainet='$i_arpainet'
21682i_bsdioctl='$i_bsdioctl'
21683i_crypt='$i_crypt'
21684i_db='$i_db'
21685i_dbm='$i_dbm'
21686i_dirent='$i_dirent'
21687i_dld='$i_dld'
21688i_dlfcn='$i_dlfcn'
21689i_fcntl='$i_fcntl'
21690i_float='$i_float'
21691i_fp='$i_fp'
21692i_fp_class='$i_fp_class'
21693i_gdbm='$i_gdbm'
21694i_grp='$i_grp'
21695i_ieeefp='$i_ieeefp'
21696i_inttypes='$i_inttypes'
21697i_langinfo='$i_langinfo'
21698i_libutil='$i_libutil'
21699i_limits='$i_limits'
21700i_locale='$i_locale'
21701i_machcthr='$i_machcthr'
21702i_malloc='$i_malloc'
21703i_math='$i_math'
21704i_memory='$i_memory'
21705i_mntent='$i_mntent'
21706i_ndbm='$i_ndbm'
21707i_netdb='$i_netdb'
21708i_neterrno='$i_neterrno'
21709i_netinettcp='$i_netinettcp'
21710i_niin='$i_niin'
21711i_poll='$i_poll'
21712i_prot='$i_prot'
21713i_pthread='$i_pthread'
21714i_pwd='$i_pwd'
21715i_rpcsvcdbm='$i_rpcsvcdbm'
21716i_sfio='$i_sfio'
21717i_sgtty='$i_sgtty'
21718i_shadow='$i_shadow'
21719i_socks='$i_socks'
21720i_stdarg='$i_stdarg'
21721i_stddef='$i_stddef'
21722i_stdlib='$i_stdlib'
21723i_string='$i_string'
21724i_sunmath='$i_sunmath'
21725i_sysaccess='$i_sysaccess'
21726i_sysdir='$i_sysdir'
21727i_sysfile='$i_sysfile'
21728i_sysfilio='$i_sysfilio'
21729i_sysin='$i_sysin'
21730i_sysioctl='$i_sysioctl'
21731i_syslog='$i_syslog'
21732i_sysmman='$i_sysmman'
21733i_sysmode='$i_sysmode'
21734i_sysmount='$i_sysmount'
21735i_sysndir='$i_sysndir'
21736i_sysparam='$i_sysparam'
21737i_sysresrc='$i_sysresrc'
21738i_syssecrt='$i_syssecrt'
21739i_sysselct='$i_sysselct'
21740i_syssockio='$i_syssockio'
21741i_sysstat='$i_sysstat'
21742i_sysstatfs='$i_sysstatfs'
21743i_sysstatvfs='$i_sysstatvfs'
21744i_systime='$i_systime'
21745i_systimek='$i_systimek'
21746i_systimes='$i_systimes'
21747i_systypes='$i_systypes'
21748i_sysuio='$i_sysuio'
21749i_sysun='$i_sysun'
21750i_sysutsname='$i_sysutsname'
21751i_sysvfs='$i_sysvfs'
21752i_syswait='$i_syswait'
21753i_termio='$i_termio'
21754i_termios='$i_termios'
21755i_time='$i_time'
21756i_unistd='$i_unistd'
21757i_ustat='$i_ustat'
21758i_utime='$i_utime'
21759i_values='$i_values'
21760i_varargs='$i_varargs'
21761i_varhdr='$i_varhdr'
21762i_vfork='$i_vfork'
21763ignore_versioned_solibs='$ignore_versioned_solibs'
21764inc_version_list='$inc_version_list'
21765inc_version_list_init='$inc_version_list_init'
21766incpath='$incpath'
21767inews='$inews'
21768installarchlib='$installarchlib'
21769installbin='$installbin'
21770installhtml1dir='$installhtml1dir'
21771installhtml3dir='$installhtml3dir'
21772installman1dir='$installman1dir'
21773installman3dir='$installman3dir'
21774installprefix='$installprefix'
21775installprefixexp='$installprefixexp'
21776installprivlib='$installprivlib'
21777installscript='$installscript'
21778installsitearch='$installsitearch'
21779installsitebin='$installsitebin'
21780installsitehtml1dir='$installsitehtml1dir'
21781installsitehtml3dir='$installsitehtml3dir'
21782installsitelib='$installsitelib'
21783installsiteman1dir='$installsiteman1dir'
21784installsiteman3dir='$installsiteman3dir'
21785installsitescript='$installsitescript'
21786installstyle='$installstyle'
21787installusrbinperl='$installusrbinperl'
21788installvendorarch='$installvendorarch'
21789installvendorbin='$installvendorbin'
21790installvendorhtml1dir='$installvendorhtml1dir'
21791installvendorhtml3dir='$installvendorhtml3dir'
21792installvendorlib='$installvendorlib'
21793installvendorman1dir='$installvendorman1dir'
21794installvendorman3dir='$installvendorman3dir'
21795installvendorscript='$installvendorscript'
21796intsize='$intsize'
21797issymlink='$issymlink'
21798ivdformat='$ivdformat'
21799ivsize='$ivsize'
21800ivtype='$ivtype'
21801known_extensions='$known_extensions'
21802ksh='$ksh'
21803ld='$ld'
21804lddlflags='$lddlflags'
21805ldflags='$ldflags'
21806ldflags_uselargefiles='$ldflags_uselargefiles'
21807ldlibpthname='$ldlibpthname'
21808less='$less'
21809lib_ext='$lib_ext'
21810libc='$libc'
21811libperl='$libperl'
21812libpth='$libpth'
21813libs='$libs'
21814libsdirs='$libsdirs'
21815libsfiles='$libsfiles'
21816libsfound='$libsfound'
21817libspath='$libspath'
21818libswanted='$libswanted'
21819libswanted_uselargefiles='$libswanted_uselargefiles'
21820line='$line'
21821lint='$lint'
21822lkflags='$lkflags'
21823ln='$ln'
21824lns='$lns'
21825localtime_r_proto='$localtime_r_proto'
21826locincpth='$locincpth'
21827loclibpth='$loclibpth'
21828longdblsize='$longdblsize'
21829longlongsize='$longlongsize'
21830longsize='$longsize'
21831lp='$lp'
21832lpr='$lpr'
21833ls='$ls'
21834lseeksize='$lseeksize'
21835lseektype='$lseektype'
21836mad='$mad'
21837mail='$mail'
21838mailx='$mailx'
21839make='$make'
21840make_set_make='$make_set_make'
21841mallocobj='$mallocobj'
21842mallocsrc='$mallocsrc'
21843madlyh='$madlyh'
21844madlyobj='$madlyobj'
21845madlysrc='$madlysrc'
21846malloctype='$malloctype'
21847man1dir='$man1dir'
21848man1direxp='$man1direxp'
21849man1ext='$man1ext'
21850man3dir='$man3dir'
21851man3direxp='$man3direxp'
21852man3ext='$man3ext'
21853mips_type='$mips_type'
21854mistrustnm='$mistrustnm'
21855mkdir='$mkdir'
21856mmaptype='$mmaptype'
21857modetype='$modetype'
21858more='$more'
21859multiarch='$multiarch'
21860mv='$mv'
21861myarchname='$myarchname'
21862mydomain='$mydomain'
21863myhostname='$myhostname'
21864myuname='$myuname'
21865n='$n'
21866need_va_copy='$need_va_copy'
21867netdb_hlen_type='$netdb_hlen_type'
21868netdb_host_type='$netdb_host_type'
21869netdb_name_type='$netdb_name_type'
21870netdb_net_type='$netdb_net_type'
21871nm='$nm'
21872nm_opt='$nm_opt'
21873nm_so_opt='$nm_so_opt'
21874nonxs_ext='$nonxs_ext'
21875nroff='$nroff'
21876nvEUformat='$nvEUformat'
21877nvFUformat='$nvFUformat'
21878nvGUformat='$nvGUformat'
21879nv_preserves_uv_bits='$nv_preserves_uv_bits'
21880nveformat='$nveformat'
21881nvfformat='$nvfformat'
21882nvgformat='$nvgformat'
21883nvsize='$nvsize'
21884nvtype='$nvtype'
21885o_nonblock='$o_nonblock'
21886obj_ext='$obj_ext'
21887old_pthread_create_joinable='$old_pthread_create_joinable'
21888optimize='$optimize'
21889orderlib='$orderlib'
21890osname='$osname'
21891osvers='$osvers'
21892otherlibdirs='$otherlibdirs'
21893package='$package'
21894pager='$pager'
21895passcat='$passcat'
21896patchlevel='$patchlevel'
21897path_sep='$path_sep'
21898perl5='$perl5'
21899perl='$perl'
21900perl_patchlevel='$perl_patchlevel'
21901perladmin='$perladmin'
21902perllibs='$perllibs'
21903perlpath='$perlpath'
21904pg='$pg'
21905phostname='$phostname'
21906pidtype='$pidtype'
21907plibpth='$plibpth'
21908pmake='$pmake'
21909pr='$pr'
21910prefix='$prefix'
21911prefixexp='$prefixexp'
21912privlib='$privlib'
21913privlibexp='$privlibexp'
21914procselfexe='$procselfexe'
21915prototype='$prototype'
21916ptrsize='$ptrsize'
21917quadkind='$quadkind'
21918quadtype='$quadtype'
21919randbits='$randbits'
21920randfunc='$randfunc'
21921random_r_proto='$random_r_proto'
21922randseedtype='$randseedtype'
21923ranlib='$ranlib'
21924rd_nodata='$rd_nodata'
21925readdir64_r_proto='$readdir64_r_proto'
21926readdir_r_proto='$readdir_r_proto'
21927revision='$revision'
21928rm='$rm'
21929rmail='$rmail'
21930run='$run'
21931runnm='$runnm'
21932sPRIEUldbl='$sPRIEUldbl'
21933sPRIFUldbl='$sPRIFUldbl'
21934sPRIGUldbl='$sPRIGUldbl'
21935sPRIXU64='$sPRIXU64'
21936sPRId64='$sPRId64'
21937sPRIeldbl='$sPRIeldbl'
21938sPRIfldbl='$sPRIfldbl'
21939sPRIgldbl='$sPRIgldbl'
21940sPRIi64='$sPRIi64'
21941sPRIo64='$sPRIo64'
21942sPRIu64='$sPRIu64'
21943sPRIx64='$sPRIx64'
21944sSCNfldbl='$sSCNfldbl'
21945sched_yield='$sched_yield'
21946scriptdir='$scriptdir'
21947scriptdirexp='$scriptdirexp'
21948sed='$sed'
21949seedfunc='$seedfunc'
21950selectminbits='$selectminbits'
21951selecttype='$selecttype'
21952sendmail='$sendmail'
21953setgrent_r_proto='$setgrent_r_proto'
21954sethostent_r_proto='$sethostent_r_proto'
21955setlocale_r_proto='$setlocale_r_proto'
21956setnetent_r_proto='$setnetent_r_proto'
21957setprotoent_r_proto='$setprotoent_r_proto'
21958setpwent_r_proto='$setpwent_r_proto'
21959setservent_r_proto='$setservent_r_proto'
21960sh='$sh'
21961shar='$shar'
21962sharpbang='$sharpbang'
21963shmattype='$shmattype'
21964shortsize='$shortsize'
21965shrpenv='$shrpenv'
21966shsharp='$shsharp'
21967sig_count='$sig_count'
21968sig_name='$sig_name'
21969sig_name_init='$sig_name_init'
21970sig_num='$sig_num'
21971sig_num_init='$sig_num_init'
21972sig_size='$sig_size'
21973signal_t='$signal_t'
21974sitearch='$sitearch'
21975sitearchexp='$sitearchexp'
21976sitebin='$sitebin'
21977sitebinexp='$sitebinexp'
21978sitehtml1dir='$sitehtml1dir'
21979sitehtml1direxp='$sitehtml1direxp'
21980sitehtml3dir='$sitehtml3dir'
21981sitehtml3direxp='$sitehtml3direxp'
21982sitelib='$sitelib'
21983sitelib_stem='$sitelib_stem'
21984sitelibexp='$sitelibexp'
21985siteman1dir='$siteman1dir'
21986siteman1direxp='$siteman1direxp'
21987siteman3dir='$siteman3dir'
21988siteman3direxp='$siteman3direxp'
21989siteprefix='$siteprefix'
21990siteprefixexp='$siteprefixexp'
21991sitescript='$sitescript'
21992sitescriptexp='$sitescriptexp'
21993sizesize='$sizesize'
21994sizetype='$sizetype'
21995sleep='$sleep'
21996smail='$smail'
21997so='$so'
21998sockethdr='$sockethdr'
21999socketlib='$socketlib'
22000socksizetype='$socksizetype'
22001sort='$sort'
22002spackage='$spackage'
22003spitshell='$spitshell'
22004srand48_r_proto='$srand48_r_proto'
22005srandom_r_proto='$srandom_r_proto'
22006src='$src'
22007ssizetype='$ssizetype'
22008startperl='$startperl'
22009startsh='$startsh'
22010static_ext='$static_ext'
22011stdchar='$stdchar'
22012stdio_base='$stdio_base'
22013stdio_bufsiz='$stdio_bufsiz'
22014stdio_cnt='$stdio_cnt'
22015stdio_filbuf='$stdio_filbuf'
22016stdio_ptr='$stdio_ptr'
22017stdio_stream_array='$stdio_stream_array'
22018strerror_r_proto='$strerror_r_proto'
22019strings='$strings'
22020submit='$submit'
22021subversion='$subversion'
22022sysman='$sysman'
22023tail='$tail'
22024tar='$tar'
22025targetarch='$targetarch'
22026tbl='$tbl'
22027tee='$tee'
22028test='$test'
22029timeincl='$timeincl'
22030timetype='$timetype'
22031tmpnam_r_proto='$tmpnam_r_proto'
22032to='$to'
22033touch='$touch'
22034tr='$tr'
22035trnl='$trnl'
22036troff='$troff'
22037ttyname_r_proto='$ttyname_r_proto'
22038u16size='$u16size'
22039u16type='$u16type'
22040u32size='$u32size'
22041u32type='$u32type'
22042u64size='$u64size'
22043u64type='$u64type'
22044u8size='$u8size'
22045u8type='$u8type'
22046uidformat='$uidformat'
22047uidsign='$uidsign'
22048uidsize='$uidsize'
22049uidtype='$uidtype'
22050uname='$uname'
22051uniq='$uniq'
22052uquadtype='$uquadtype'
22053use5005threads='$use5005threads'
22054use64bitall='$use64bitall'
22055use64bitint='$use64bitint'
22056usecrosscompile='$usecrosscompile'
22057usedl='$usedl'
22058usefaststdio='$usefaststdio'
22059useithreads='$useithreads'
22060uselargefiles='$uselargefiles'
22061uselongdouble='$uselongdouble'
22062usemallocwrap='$usemallocwrap'
22063usemorebits='$usemorebits'
22064usemultiplicity='$usemultiplicity'
22065usemymalloc='$usemymalloc'
22066usenm='$usenm'
22067useopcode='$useopcode'
22068useperlio='$useperlio'
22069useposix='$useposix'
22070usereentrant='$usereentrant'
22071initialinstalllocation="$initialinstalllocation"
22072userelocatableinc='$userelocatableinc'
22073usesfio='$usesfio'
22074useshrplib='$useshrplib'
22075usesitecustomize='$usesitecustomize'
22076usesocks='$usesocks'
22077usethreads='$usethreads'
22078usevendorprefix='$usevendorprefix'
22079usevfork='$usevfork'
22080usrinc='$usrinc'
22081uuname='$uuname'
22082uvXUformat='$uvXUformat'
22083uvoformat='$uvoformat'
22084uvsize='$uvsize'
22085uvtype='$uvtype'
22086uvuformat='$uvuformat'
22087uvxformat='$uvxformat'
22088vendorarch='$vendorarch'
22089vendorarchexp='$vendorarchexp'
22090vendorbin='$vendorbin'
22091vendorbinexp='$vendorbinexp'
22092vendorhtml1dir='$vendorhtml1dir'
22093vendorhtml1direxp='$vendorhtml1direxp'
22094vendorhtml3dir='$vendorhtml3dir'
22095vendorhtml3direxp='$vendorhtml3direxp'
22096vendorlib='$vendorlib'
22097vendorlib_stem='$vendorlib_stem'
22098vendorlibexp='$vendorlibexp'
22099vendorman1dir='$vendorman1dir'
22100vendorman1direxp='$vendorman1direxp'
22101vendorman3dir='$vendorman3dir'
22102vendorman3direxp='$vendorman3direxp'
22103vendorprefix='$vendorprefix'
22104vendorprefixexp='$vendorprefixexp'
22105vendorscript='$vendorscript'
22106vendorscriptexp='$vendorscriptexp'
22107version='$version'
22108version_patchlevel_string='$version_patchlevel_string'
22109versiononly='$versiononly'
22110vi='$vi'
22111voidflags='$voidflags'
22112xlibpth='$xlibpth'
22113yacc='$yacc'
22114yaccflags='$yaccflags'
22115zcat='$zcat'
22116zip='$zip'
22117EOT
22118
22119: Add in command line options if available
22120$test -f UU/cmdline.opt && $cat UU/cmdline.opt >> config.sh
22121
22122: add special variables
22123$test -f $src/patchlevel.h && \
22124awk '/^#define[ ]+PERL_/ {printf "%s=%s\n",$2,$3}' $src/patchlevel.h >>config.sh
22125echo "PERL_PATCHLEVEL=$perl_patchlevel" >>config.sh
22126echo "PERL_CONFIG_SH=true" >>config.sh
22127
22128: propagate old symbols
22129if $test -f UU/config.sh; then
22130 <UU/config.sh $sort | $uniq >UU/oldconfig.sh
22131 sed -n 's/^\([a-zA-Z_0-9]*\)=.*/\1/p' config.sh config.sh UU/oldconfig.sh |\
22132 $sort | $uniq -u >UU/oldsyms
22133 set X `cat UU/oldsyms`
22134 shift
22135 case $# in
22136 0) ;;
22137 *)
22138 cat <<EOM
22139Hmm...You had some extra variables I don't know about...I'll try to keep 'em...
22140EOM
22141 echo "# Variables propagated from previous config.sh file." >>config.sh
22142 for sym in `cat UU/oldsyms`; do
22143 echo " Propagating $hint variable "'$'"$sym..."
22144 eval 'tmp="$'"${sym}"'"'
22145 echo "$tmp" | \
22146 sed -e "s/'/'\"'\"'/g" -e "s/^/$sym='/" -e "s/$/'/" >>config.sh
22147 done
22148 ;;
22149 esac
22150fi
22151
22152: Finish up by extracting the .SH files
22153case "$alldone" in
22154exit)
22155 $rm -rf UU
22156 echo "Extraction done."
22157 exit 0
22158 ;;
22159cont)
22160 ;;
22161'')
22162 dflt=''
22163 nostick=true
22164 $cat <<EOM
22165
22166If you'd like to make any changes to the config.sh file before I begin
22167to configure things, do it as a shell escape now (e.g. !vi config.sh).
22168
22169EOM
22170 rp="Press return or use a shell escape to edit config.sh:"
22171 . UU/myread
22172 nostick=''
22173 case "$ans" in
22174 '') ;;
22175 *) : in case they cannot read
22176 sh 1>&4 -c "$ans";;
22177 esac
22178 ;;
22179esac
22180
22181: if this fails, just run all the .SH files by hand
22182. ./config.sh
22183
22184echo " "
22185exec 1>&4
22186pwd=`pwd`
22187. ./UU/extract
22188cd "$pwd"
22189
22190if $contains '^depend:' [Mm]akefile >/dev/null 2>&1; then
22191 dflt=y
22192 case "$silent" in
22193 true) ;;
22194 *)
22195 $cat <<EOM
22196
22197Now you need to generate make dependencies by running "$make depend".
22198You might prefer to run it in background: "$make depend > makedepend.out &"
22199It can take a while, so you might not want to run it right now.
22200
22201EOM
22202 ;;
22203 esac
22204 rp="Run $make depend now?"
22205 . UU/myread
22206 case "$ans" in
22207 y*)
22208 $make depend && echo "Now you must run '$make'."
22209 ;;
22210 *)
22211 echo "You must run '$make depend' then '$make'."
22212 ;;
22213 esac
22214elif test -f [Mm]akefile; then
22215 echo " "
22216 echo "Now you must run a $make."
22217else
22218 echo "Configure done."
22219fi
22220
22221if $test -f Policy.sh; then
22222 $cat <<EOM
22223
22224If you compile $package on a different machine or from a different object
22225directory, copy the Policy.sh file from this object directory to the
22226new one before you run Configure -- this will help you with most of
22227the policy defaults.
22228
22229EOM
22230fi
22231if $test -f config.msg; then
22232 echo "Hmm. I also noted the following information while running:"
22233 echo " "
22234 $cat config.msg >&4
22235 $rm -f config.msg
22236fi
22237$rm -f kit*isdone ark*isdone
22238$rm -rf UU
22239
22240: End of Configure
22241