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