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