perl5.002beta3
[p5sagit/p5-mst-13.2.git] / hints / linux.sh
1 # hints/linux.sh
2 # Original version by rsanders
3 # Additional support by Kenneth Albanowski <kjahds@kjahds.com>
4 #
5 # ELF support by H.J. Lu <hjl@nynexst.com>
6 # Additional info from Nigel Head <nhead@ESOC.bitnet>
7 # and Kenneth Albanowski <kjahds@kjahds.com>
8 #
9 # Consolidated by Andy Dougherty <doughera@lafcol.lafayette.edu>
10 #
11 # Updated Tue May 30 14:25:02 EDT 1995
12 # Add ability to use command-line overrides for optinal settings.
13
14 # perl goes into the /usr tree.  See the Filesystem Standard
15 # available via anonymous FTP at tsx-11.mit.edu in
16 # /pub/linux/docs/linux-standards/fsstnd.
17 # Allow a command line override, e.g. Configure -Dprefix=/foo/bar
18 case "$prefix" in
19 '') prefix='/usr' ;;
20 esac
21
22 # Perl users typically expect BSD style signal handling.
23 # This may not be needed in 5.002 since sigaction is used.
24 # gcc-2.6.3 defines _G_HAVE_BOOL to 1, but doesn't actually supply bool.
25 ccflags="-D__USE_BSD_SIGNAL -Dbool=char -DHAS_BOOL $ccflags"
26
27 # Configure may fail to find lstat() since it's a static/inline
28 # function in <sys/stat.h>.
29 d_lstat=define
30
31 # Explanation?
32 case "$d_dosuid" in
33 '') d_dosuid='define' ;;
34 esac
35
36 # I think Configure gets this right now, but I'd appreciate reports.
37 malloctype='void *'
38
39 # Explanation?
40 case "$usemymalloc" in
41 '') usemymalloc='n' ;;
42 esac
43
44 case "$optimize" in
45 '') optimize='-O2' ;;
46 esac
47
48 # Are we using ELF?  Thanks to Kenneth Albanowski <kjahds@kjahds.com>
49 # for this test.
50 cat >try.c <<'EOM'
51 /* Test for whether ELF binaries are produced */
52 #include <fcntl.h>
53 #include <stdlib.h>
54 main() {
55         char buffer[4];
56         int i=open("a.out",O_RDONLY);
57         if(i==-1)
58                 exit(1); /* fail */
59         if(read(i,&buffer[0],4)<4)
60                 exit(1); /* fail */
61         if(buffer[0] != 127 || buffer[1] != 'E' ||
62            buffer[2] != 'L' || buffer[3] != 'F')
63                 exit(1); /* fail */
64         exit(0); /* succeed (yes, it's ELF) */
65 }
66 EOM
67 if ${cc:-gcc} try.c >/dev/null 2>&1 && ./a.out; then
68     cat <<'EOM'
69
70 You appear to have ELF support.  I'll try to use it for dynamic loading.
71 EOM
72 else
73     cat <<'EOM'
74
75 You don't have an ELF gcc.  I will use dld if possible.  If you are
76 using a version of DLD earlier than 3.2.6, or don't have it at all, you
77 should probably upgrade. If you are forced to use 3.2.4, you should
78 uncomment a couple of lines in hints/linux.sh and restart Configure so
79 that shared libraries will be disallowed.
80
81 EOM
82     lddlflags="-r $lddlflags"
83     # These empty values are so that Configure doesn't put in the
84     # Linux ELF values.
85     ccdlflags=' '
86     cccdlflags=' '
87     ccflags="-DOVR_DBL_DIG=14 $ccflags"
88     so='sa'
89     dlext='o'
90     ## If you are using DLD 3.2.4 which does not support shared libs,
91     ## uncomment the next two lines:
92     #ldflags="-static"
93     #so='none'
94 fi
95
96 rm -f try.c a.out
97
98 if /bin/bash -c exit; then
99   echo You appear to have a working bash. Good.
100 else
101   cat << 'EOM'
102 Warning: it would appear you have a defective bash shell installed. This is
103 likely to give you a failure of op/exec test #5 during the test phase of the
104 build, Upgrading to a recent version (1.14.4 or later) should fix the
105 problem.
106
107 EOM
108
109 fi
110
111 # In addition, on some systems there is a problem with perl and NDBM, which
112 # causes AnyDBM and NDBM_File to lock up. This is evidenced in the tests as
113 # AnyDBM just freezing.  Currently we disable NDBM for all linux systems.
114 # If someone can suggest a more robust test, that would be appreciated.
115 # This will generate a harmless message:
116 # Hmm...You had some extra variables I don't know about...I'll try to keep 'em.
117 #       Propagating recommended variable d_dbm_open
118 case "$d_dbm_open" in
119 '') d_dbm_open=undef ;;
120 esac
121