Final touches to "Apple-like" installation directories.
[p5sagit/p5-mst-13.2.git] / hints / darwin.sh
1 ##
2 # Darwin (Mac OS) hints
3 # Wilfredo Sanchez <wsanchez@wsanchez.net>
4 ##
5
6 ##
7 # Paths
8 ##
9
10 # Configure hasn't figured out the version number yet.  Bummer.
11 perl_revision=`awk '/define[    ]+PERL_REVISION/ {print $3}' $src/patchlevel.h`
12 perl_version=`awk '/define[     ]+PERL_VERSION/ {print $3}' $src/patchlevel.h`
13 perl_subversion=`awk '/define[  ]+PERL_SUBVERSION/ {print $3}' $src/patchlevel.h`
14 version="${perl_revision}.${perl_version}.${perl_subversion}"
15
16 # This was previously used in all but causes three cases
17 # (no -Ddprefix=, -Dprefix=/usr, -Dprefix=/some/thing/else)
18 # but that caused too much grief.
19 # vendorlib="/System/Library/Perl/${version}"; # Apple-supplied modules
20
21 # BSD paths
22 case "$prefix" in
23 '')     # Default install; use non-system directories
24         prefix='/usr/local';
25         siteprefix='/usr/local';
26         ;;
27 '/usr') # We are building/replacing the built-in perl
28         prefix='/';
29         installprefix='/';
30         bin='/usr/bin';
31         siteprefix='/usr/local';
32         # We don't want /usr/bin/HEAD issues.
33         sitebin='/usr/local/bin';
34         sitescript='/usr/local/bin';
35         installusrbinperl='define'; # You knew what you were doing.
36         privlib="/System/Library/Perl/${version}";
37         sitelib="/Library/Perl/${version}";
38         vendorprefix='/';
39         usevendorprefix='define';
40         vendorbin='/usr/bin';
41         vendorscript='/usr/bin';
42         vendorlib="/Network/Library/Perl/${version}";
43         # 4BSD uses ${prefix}/share/man, not ${prefix}/man.
44         man1dir='/usr/share/man/man1';
45         man3dir='/usr/share/man/man3';
46         # But users' installs shouldn't touch the system man pages.
47         installsiteman1='/usr/local/share/man/man1';
48         installsiteman3='/usr/local/share/man/man3';
49         ;;
50   *)    # Anything else; use non-system directories, use Configure defaults
51         ;;
52 esac
53
54 ##
55 # Tool chain settings
56 ##
57
58 # Since we can build fat, the archname doesn't need the processor type
59 archname='darwin';
60
61 # nm works.
62 usenm='true';
63
64 case "$optimize" in
65 '')
66 #    Optimizing for size also mean less resident memory usage on the part
67 # of Perl.  Apple asserts that this is a more important optimization than
68 # saving on CPU cycles.  Given that memory speed has not increased at
69 # pace with CPU speed over time (on any platform), this is probably a
70 # reasonable assertion.
71 if [ -z "${optimize}" ]; then
72   case "`${cc:-gcc} -v 2>&1`" in
73     *"gcc version 3."*) optimize='-Os' ;;
74     *) optimize='-O3' ;;
75   esac
76 else
77   optimize='-O3'
78 fi
79 ;;
80 esac
81
82 # -pipe: makes compilation go faster.
83 # -fno-common because common symbols are not allowed in MH_DYLIB
84 # -DDARWIN: apparently the __APPLE__ is not sanctioned by Apple
85 # as the way to differentiate Mac OS X.  (The official line is that
86 # *no* cpp symbol does differentiate Mac OS X.)
87 ccflags="${ccflags} -pipe -fno-common -DDARWIN"
88
89 # At least on Darwin 1.3.x:
90 #
91 # # define INT32_MIN -2147483648
92 # int main () {
93 #  double a = INT32_MIN;
94 #  printf ("INT32_MIN=%g\n", a);
95 #  return 0;
96 # }
97 # will output:
98 # INT32_MIN=2.14748e+09
99 # Note that the INT32_MIN has become positive.
100 # INT32_MIN is set in /usr/include/stdint.h by:
101 # #define INT32_MIN        -2147483648
102 # which seems to break the gcc.  Defining INT32_MIN as (-2147483647-1)
103 # seems to work.  INT64_MIN seems to be similarly broken.
104 # -- Nicholas Clark, Ken Williams, and Edward Moy
105 #
106 # This seems to have been fixed since at least Mac OS X 10.1.3,
107 # stdint.h defining INT32_MIN as (-INT32_MAX-1)
108 # -- Edward Moy
109 #
110 case "$(grep '^#define INT32_MIN' /usr/include/stdint.h)" in
111   *-2147483648) ccflags="${ccflags} -DINT32_MIN_BROKEN -DINT64_MIN_BROKEN" ;;
112 esac
113
114 # Avoid Apple's cpp precompiler, better for extensions
115 cppflags="${cppflags} -no-cpp-precomp"
116
117 # This is necessary because perl's build system doesn't
118 # apply cppflags to cc compile lines as it should.
119 ccflags="${ccflags} ${cppflags}"
120
121 # Known optimizer problems.
122 case "`cc -v 2>&1`" in
123   *"3.1 20020105"*) toke_cflags='optimize=""' ;;
124 esac
125
126 # Shared library extension is .dylib.
127 # Bundle extension is .bundle.
128 ld='cc';
129 so='dylib';
130 dlext='bundle';
131 dlsrc='dl_dyld.xs'; usedl='define';
132 cccdlflags=' '; # space, not empty, because otherwise we get -fpic
133 # Perl bundles do not expect two-level namespace, added in Darwin 1.4.
134 # But starting from perl 5.8.1/Darwin 7 the default is the two-level.
135 case "$osvers" in
136 1.[0-3].*)
137    lddlflags="${ldflags} -bundle -undefined suppress"
138    ;;
139 1.*)
140    ldflags="${ldflags} -flat_namespace"
141    lddlflags="${ldflags} -bundle -undefined suppress"
142    ;;
143 [2-6].*)
144    ldflags="${ldflags} -flat_namespace"
145    lddlflags="${ldflags} -bundle -undefined suppress"
146    ;;
147 *) lddlflags="${ldflags} -bundle -undefined dynamic_lookup"
148    case "$ld" in
149    *MACOSX_DEVELOPMENT_TARGET*) ;;
150    *) ld="MACOSX_DEPLOYMENT_TARGET=10.3 ${ld}" ;;
151    esac
152    ;;
153 esac
154 ldlibpthname='DYLD_LIBRARY_PATH';
155
156 # useshrplib=true results in much slower startup times.
157 # 'false' is the default value.  Use Configure -Duseshrplib to override.
158
159 cat > UU/archname.cbu <<'EOCBU'
160 # This script UU/archname.cbu will get 'called-back' by Configure 
161 # after it has otherwise determined the architecture name.
162 case "$ldflags" in
163 *"-flat_namespace"*) ;; # Backward compat, be flat.
164 # If we are using two-level namespace, we will munge the archname to show it.
165 *) archname="${archname}-2level" ;;
166 esac
167 EOCBU
168
169 ##
170 # System libraries
171 ##
172
173 # vfork works
174 usevfork='true';
175
176 # malloc works
177 usemymalloc='n';
178
179 # Locales aren't feeling well.
180 LC_ALL=C; export LC_ALL;
181 LANG=C; export LANG;
182
183 #
184 # The libraries are not threadsafe as of OS X 10.1.
185 #
186 # Fix when Apple fixes libc.
187 #
188 case "$usethreads$useithreads" in
189   *define*)
190   case "$osvers" in
191     [12345].*)     cat <<EOM >&4
192
193
194
195 *** Warning, there might be problems with your libraries with
196 *** regards to threading.  The test ext/threads/t/libc.t is likely
197 *** to fail.
198
199 EOM
200     ;;
201     *) usereentrant='define';;
202   esac
203
204 esac
205
206 ##
207 # Build process
208 ##
209
210 # Case-insensitive filesystems don't get along with Makefile and
211 # makefile in the same place.  Since Darwin uses GNU make, this dodges
212 # the problem.
213 firstmakefile=GNUmakefile;