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