46059e0731f9d6d3f2f2c4886d552a9776123fa0
[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 # Last updated Thu Apr  6 12:22:03 EDT 1995
12 #
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 # This used to be
18 # bin='/usr/bin'
19 # but it doesn't seem sensible to put the binary in /usr and all the
20 # rest of the support stuff (lib, man pages) into /usr/local.
21 # However, allow a command line override, e.g. Configure -Dprefix=/foo/bar
22 case "$prefix" in
23 '') prefix='/usr' ;;
24 esac
25
26 # Perl expects BSD style signal handling.
27 # gcc defines _G_HAVE_BOOL to 1, but doesn't actually supply bool.
28 ccflags="-D__USE_BSD_SIGNAL -Dbool=char -DHAS_BOOL $ccflags"
29
30 # The following functions are gcc built-ins, but the Configure tests
31 # may fail because it doesn't supply a proper prototype.
32 d_memcmp=define
33 d_memcpy=define
34
35 # Configure may fail to find lstat() since it's a static/inline
36 # function in <sys/stat.h>.
37 d_lstat=define
38
39 d_dosuid='define'
40
41 malloctype='void *'
42 usemymalloc='n'
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 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     # Configure now handles these automatically.
73 else
74     echo "You don't have an ELF gcc, using dld if available."
75     # We might possibly have a version of DLD around.
76     lddlflags="-r $lddlflags"
77     # These empty values are so that Configure doesn't put in the
78     # Linux ELF values.
79     ccdlflags=' '
80     cccdlflags=' '
81     so='sa'
82     dlext='o'
83     ## If you are using DLD 3.2.4 which does not support shared libs,
84     ## uncomment the next two lines:
85     #ldflags="-static"
86     #so='none'
87 fi
88 rm -rf try.c a.out
89
90 cat <<'EOM'
91
92 You should take a look at hints/linux.sh. There are a some lines you
93 may wish to change.
94 EOM
95
96 # And -- reported by one user:
97 # We need to get -lc away from the link lines.
98 # If we leave it there we get SEGV from miniperl during the build.
99 # This may have to do with bugs in the pre-release version of libc for ELF.
100 # Uncomment the next two lines to remove -lc from the link line.
101 # set `echo " $libswanted " | sed -e 's@ c @ @'`
102 # libswanted="$*"