Commit | Line | Data |
---|---|---|
1aef975c | 1 | # hints/linux.sh |
a0d0e21e | 2 | # Original version by rsanders |
1fc4cb55 | 3 | # Additional support by Kenneth Albanowski <kjahds@kjahds.com> |
1aef975c | 4 | # |
232e078e AD |
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> | |
1aef975c | 8 | # |
232e078e | 9 | # Consolidated by Andy Dougherty <doughera@lafcol.lafayette.edu> |
1fc4cb55 | 10 | # |
9bed9d38 | 11 | # Updated Thu Feb 8 11:56:10 EST 1996 |
ef0c9946 | 12 | |
13 | # Updated Thu May 30 10:50:22 EDT 1996 by <doughera@lafcol.lafayette.edu> | |
14 | ||
15 | # Updated Fri Jun 21 11:07:54 EDT 1996 | |
16 | # NDBM support for ELF renabled by <kjahds@kjahds.com> | |
232e078e | 17 | |
f3db1d4d CS |
18 | # No version of Linux supports setuid scripts. |
19 | d_suidsafe='undef' | |
f3db1d4d | 20 | |
232e078e AD |
21 | # perl goes into the /usr tree. See the Filesystem Standard |
22 | # available via anonymous FTP at tsx-11.mit.edu in | |
23 | # /pub/linux/docs/linux-standards/fsstnd. | |
16d20bd9 | 24 | # Allow a command line override, e.g. Configure -Dprefix=/foo/bar |
232e078e AD |
25 | case "$prefix" in |
26 | '') prefix='/usr' ;; | |
27 | esac | |
1fc4cb55 | 28 | |
16d20bd9 | 29 | # gcc-2.6.3 defines _G_HAVE_BOOL to 1, but doesn't actually supply bool. |
4bf4dbb3 | 30 | ccflags="-Dbool=char -DHAS_BOOL $ccflags" |
31 | ||
32 | # BSD compatability library no longer needed | |
693762b4 AD |
33 | # 'kaffe' has a /usr/lib/libnet.so which is not at all relevent for perl. |
34 | set `echo X "$libswanted "| sed -e 's/ bsd / /' -e 's/ net / /'` | |
4bf4dbb3 | 35 | shift |
36 | libswanted="$*" | |
1fc4cb55 | 37 | |
232e078e AD |
38 | # Configure may fail to find lstat() since it's a static/inline |
39 | # function in <sys/stat.h>. | |
40 | d_lstat=define | |
1aef975c | 41 | |
16d20bd9 | 42 | # Explanation? |
c07a80fd | 43 | case "$usemymalloc" in |
44 | '') usemymalloc='n' ;; | |
45 | esac | |
1aef975c AD |
46 | |
47 | case "$optimize" in | |
48 | '') optimize='-O2' ;; | |
49 | esac | |
50 | ||
232e078e AD |
51 | # Are we using ELF? Thanks to Kenneth Albanowski <kjahds@kjahds.com> |
52 | # for this test. | |
53 | cat >try.c <<'EOM' | |
54 | /* Test for whether ELF binaries are produced */ | |
55 | #include <fcntl.h> | |
56 | #include <stdlib.h> | |
57 | main() { | |
58 | char buffer[4]; | |
59 | int i=open("a.out",O_RDONLY); | |
60 | if(i==-1) | |
61 | exit(1); /* fail */ | |
62 | if(read(i,&buffer[0],4)<4) | |
63 | exit(1); /* fail */ | |
64 | if(buffer[0] != 127 || buffer[1] != 'E' || | |
65 | buffer[2] != 'L' || buffer[3] != 'F') | |
66 | exit(1); /* fail */ | |
67 | exit(0); /* succeed (yes, it's ELF) */ | |
68 | } | |
69 | EOM | |
f0b7e567 | 70 | if ${cc:-gcc} try.c >/dev/null 2>&1 && ./a.out; then |
ef0c9946 | 71 | cat <<'EOM' >&4 |
232e078e AD |
72 | |
73 | You appear to have ELF support. I'll try to use it for dynamic loading. | |
ef0c9946 | 74 | If dynamic loading doesn't work, read hints/linux.sh for further information. |
232e078e | 75 | EOM |
ef0c9946 | 76 | |
77 | #For RedHat Linux 3.0.3, you may need to fetch | |
78 | # ftp://ftp.redhat.com/pub/redhat-3.0.3/i386/updates/RPMS/ld.so-1.7.14-3.i386.rpm | |
79 | # | |
80 | ||
232e078e | 81 | else |
ef0c9946 | 82 | cat <<'EOM' >&4 |
16d20bd9 AD |
83 | |
84 | You don't have an ELF gcc. I will use dld if possible. If you are | |
85 | using a version of DLD earlier than 3.2.6, or don't have it at all, you | |
86 | should probably upgrade. If you are forced to use 3.2.4, you should | |
c2960299 AD |
87 | uncomment a couple of lines in hints/linux.sh and restart Configure so |
88 | that shared libraries will be disallowed. | |
16d20bd9 AD |
89 | |
90 | EOM | |
232e078e | 91 | lddlflags="-r $lddlflags" |
5d94fbed AD |
92 | # These empty values are so that Configure doesn't put in the |
93 | # Linux ELF values. | |
94 | ccdlflags=' ' | |
95 | cccdlflags=' ' | |
c07a80fd | 96 | ccflags="-DOVR_DBL_DIG=14 $ccflags" |
1aef975c AD |
97 | so='sa' |
98 | dlext='o' | |
a5f75d66 | 99 | nm_so_opt=' ' |
1aef975c AD |
100 | ## If you are using DLD 3.2.4 which does not support shared libs, |
101 | ## uncomment the next two lines: | |
102 | #ldflags="-static" | |
103 | #so='none' | |
ef0c9946 | 104 | |
105 | # In addition, on some systems there is a problem with perl and NDBM | |
106 | # which causes AnyDBM and NDBM_File to lock up. This is evidenced | |
107 | # in the tests as AnyDBM just freezing. Apparently, this only | |
108 | # happens on a.out systems, so we disable NDBM for all a.out linux | |
109 | # systems. If someone can suggest a more robust test | |
110 | # that would be appreciated. | |
111 | # | |
112 | # More info: | |
113 | # Date: Wed, 7 Feb 1996 03:21:04 +0900 | |
114 | # From: Jeffrey Friedl <jfriedl@nff.ncl.omron.co.jp> | |
115 | # | |
116 | # I tried compiling with DBM support and sure enough things locked up | |
117 | # just as advertised. Checking into it, I found that the lockup was | |
118 | # during the call to dbm_open. Not *in* dbm_open -- but between the call | |
119 | # to and the jump into. | |
120 | # | |
121 | # To make a long story short, making sure that the *.a and *.sa pairs of | |
122 | # /usr/lib/lib{m,db,gdbm}.{a,sa} | |
123 | # were perfectly in sync took care of it. | |
124 | # | |
125 | # This will generate a harmless Whoa There! message | |
126 | case "$d_dbm_open" in | |
127 | '') cat <<'EOM' >&4 | |
128 | ||
129 | Disabling ndbm. This will generate a Whoa There message in Configure. | |
130 | Read hints/linux.sh for further information. | |
131 | EOM | |
132 | # You can override this with Configure -Dd_dbm_open | |
133 | d_dbm_open=undef | |
134 | ;; | |
135 | esac | |
232e078e | 136 | fi |
a0d0e21e | 137 | |
c2960299 | 138 | rm -f try.c a.out |
16d20bd9 | 139 | |
c2960299 | 140 | if /bin/bash -c exit; then |
284c50cc MDLR |
141 | echo '' |
142 | echo 'You appear to have a working bash. Good.' | |
c2960299 | 143 | else |
ef0c9946 | 144 | cat << 'EOM' >&4 |
a0d0e21e | 145 | |
ef0c9946 | 146 | *********************** Warning! ********************* |
147 | It would appear you have a defective bash shell installed. This is likely to | |
148 | give you a failure of op/exec test #5 during the test phase of the build, | |
149 | Upgrading to a recent version (1.14.4 or later) should fix the problem. | |
150 | ****************************************************** | |
a0d0e21e | 151 | EOM |
c2960299 AD |
152 | |
153 | fi | |
16d20bd9 | 154 | |
284c50cc MDLR |
155 | # On SPARClinux, |
156 | # The following csh consistently coredumped in the test directory | |
157 | # "/home/mikedlr/perl5.003_94/t", though not most other directories. | |
158 | ||
159 | #Name : csh Distribution: Red Hat Linux (Rembrandt) | |
160 | #Version : 5.2.6 Vendor: Red Hat Software | |
161 | #Release : 3 Build Date: Fri May 24 19:42:14 1996 | |
162 | #Install date: Thu Jul 11 16:20:14 1996 Build Host: itchy.redhat.com | |
163 | #Group : Shells Source RPM: csh-5.2.6-3.src.rpm | |
164 | #Size : 184417 | |
165 | #Description : BSD c-shell | |
166 | ||
167 | # For this reason I suggest using the much bug-fixed tcsh for globbing | |
168 | # where available. | |
169 | ||
170 | if [ ! "`csh -c 'echo $version' 2>/dev/null`" ] | |
171 | then | |
46fc3d4c | 172 | echo 'Real csh found (might break); looking for tcsh ...' |
99cae59c JPC |
173 | # Use ./UU/loc to find tcsh. (We no longer run in the hints/ directory) |
174 | if xxx=`./UU/loc tcsh blurfl $pth`; $test -f "$xxx"; then | |
46fc3d4c | 175 | echo "Found tcsh. I'll use it for globbing." |
176 | # We can't change Configure's setting of $csh, due to the way | |
177 | # Configure handles $d_portable and commands found in $loclist. | |
178 | # We can set the value for CSH in config.h by setting full_csh. | |
179 | full_csh=$xxx | |
180 | else | |
181 | echo "Couldn't find tcsh. BEWARE: GLOBBING MIGHT BE BROKEN." | |
182 | fi | |
284c50cc | 183 | else |
46fc3d4c | 184 | echo 'Your csh is really tcsh. Good.' |
284c50cc | 185 | fi |
dc66995c | 186 | |
92526645 CN |
187 | # Shimpei Yamashita <shimpei@socrates.patnet.caltech.edu> |
188 | # Message-Id: <33EF1634.B36B6500@pobox.com> | |
189 | # | |
190 | # MkLinux (osname=linux,archname=ppc-linux), which differs slightly from other | |
191 | # linuces, needs special flags passed in order for dynamic loading to work. | |
192 | # instead of the recommended: | |
193 | # ccdlflags='-rdynamic' | |
194 | # | |
195 | # it should be: | |
196 | # ccdlflags='-Wl,-E' | |
197 | ||
693762b4 AD |
198 | # XXX EXPERIMENTAL A.D. 2/27/1998 |
199 | # XXX This script UU/usethreads.cbu will get 'called-back' by Configure | |
200 | # XXX after it has prompted the user for whether to use threads. | |
201 | cat > UU/usethreads.cbu <<'EOSH' | |
202 | case "$usethreads" in | |
203 | $define|true|[yY]*) | |
dfe9444c | 204 | ccflags="-D_REENTRANT $ccflags" |
dc66995c MB |
205 | # -lpthread needs to come before -lc but after other libraries such |
206 | # as -lgdbm and such like. We assume here that -lc is present in | |
207 | # libswanted. If that fails to be true in future, then this can be | |
208 | # changed to add pthread to the very end of libswanted. | |
209 | set `echo X "$libswanted "| sed -e 's/ c / pthread c /'` | |
210 | shift | |
211 | libswanted="$*" | |
693762b4 AD |
212 | ;; |
213 | esac | |
214 | EOSH | |
215 | # XXX EXPERIMENTAL --end of call-back |