This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
DOS djgpp updates:
[perl5.git] / hints / aix.sh
1 # hints/aix.sh
2 # AIX 3.x.x hints thanks to Wayne Scott <wscott@ichips.intel.com>
3 # AIX 4.1 hints thanks to Christopher Chan-Nui <channui@austin.ibm.com>.
4 # AIX 4.1 pthreading by Christopher Chan-Nui <channui@austin.ibm.com> and
5 #         Jarkko Hietaniemi <jhi@iki.fi>.
6 # Merged on Mon Feb  6 10:22:35 EST 1995 by
7 #   Andy Dougherty  <doughera@lafcol.lafayette.edu>
8
9
10 # Configure finds setrgid and setruid, but they're useless.  The man
11 # pages state:
12 #    setrgid: The EPERM error code is always returned.
13 #    setruid: The EPERM error code is always returned. Processes cannot
14 #             reset only their real user IDs.
15 d_setrgid='undef'
16 d_setruid='undef'
17
18 alignbytes=8
19
20 usemymalloc='n'
21
22 so="a"
23 dlext="so"
24
25 # Make setsockopt work correctly.  See man page.
26 # ccflags='-D_BSD=44'
27
28 # uname -m output is too specific and not appropriate here
29 case "$archname" in
30 '') archname="$osname" ;;
31 esac
32
33 case "$osvers" in
34 3*) d_fchmod=undef
35     ccflags='-D_ALL_SOURCE'
36     ;;
37 *)  # These hints at least work for 4.x, possibly other systems too.
38     ccflags='-D_ALL_SOURCE -D_ANSI_C_SOURCE -D_POSIX_SOURCE'
39     case "$cc" in
40      *gcc*) ;;
41      *) ccflags="-qmaxmem=8192  $ccflags" ;;
42     esac
43     nm_opt='-B'
44     ;;
45 esac
46
47 # These functions don't work like Perl expects them to.
48 d_setregid='undef'
49 d_setreuid='undef'
50
51 # Changes for dynamic linking by Wayne Scott <wscott@ichips.intel.com>
52 #
53 # Tell perl which symbols to export for dynamic linking.
54 case "$cc" in
55 *gcc*) ccdlflags='-Xlinker -bE:perl.exp' ;;
56 *) ccdlflags='-bE:perl.exp' ;;
57 esac
58
59 # The first 3 options would not be needed if dynamic libs. could be linked
60 # with the compiler instead of ld.
61 # -bI:$(PERL_INC)/perl.exp  Read the exported symbols from the perl binary
62 # -bE:$(BASEEXT).exp        Export these symbols.  This file contains only one
63 #                           symbol: boot_$(EXP)  can it be auto-generated?
64 case "$osvers" in
65 3*) 
66 lddlflags='-H512 -T512 -bhalt:4 -bM:SRE -bI:$(PERL_INC)/perl.exp -bE:$(BASEEXT).exp -e _nostart -lc'
67     ;;
68 *) 
69 lddlflags='-H512 -T512 -bhalt:4 -bM:SRE -bI:$(PERL_INC)/perl.exp -bE:$(BASEEXT).exp -b noentry -lc'
70
71 ;;
72 esac
73
74 if [ "X$usethreads" != "X" ]; then
75     ccflags="-DNEED_PTHREAD_INIT $ccflags"
76     case "$cc" in
77     xlc_r | cc_r)
78         ;;
79     cc | '') 
80         cc=xlc_r # Let us be stricter.
81         ;;
82     *)
83         cat >&4 <<EOM
84 Unknown C compiler '$cc'.
85 For pthreads you should use the AIX C compilers xlc_r or cc_r.
86 Cannot continue, aborting.
87 EOM
88         exit 1
89         ;;
90     esac
91
92     # Add the POSIX threads library and the re-entrant libc.
93
94     lddlflags=`echo $lddlflags | sed 's/ -lc$/ -lpthreads -lc_r -lc/'`
95 fi