Darwin/Mac OS X: if -Dprefix=/foo, do nothing special
[p5sagit/p5-mst-13.2.git] / hints / darwin.sh
CommitLineData
f556e5b9 1##
2# Darwin (Mac OS) hints
835bc3f3 3# Wilfredo Sanchez <wsanchez@wsanchez.net>
f556e5b9 4##
5
6##
7# Paths
8##
9
21328108 10# Configure hasn't figured out the version number yet. Bummer.
11perl_revision=`awk '/define[ ]+PERL_REVISION/ {print $3}' $src/patchlevel.h`
12perl_version=`awk '/define[ ]+PERL_VERSION/ {print $3}' $src/patchlevel.h`
13perl_subversion=`awk '/define[ ]+PERL_SUBVERSION/ {print $3}' $src/patchlevel.h`
14version="${perl_revision}.${perl_version}.${perl_subversion}"
15
f556e5b9 16# BSD paths
e32f0149 17case "$prefix" in
21328108 18 '')
19 # Default install; use non-system directories
20 prefix='/usr/local'; # Built-in perl uses /usr
21 siteprefix='/usr/local';
835bc3f3 22 vendorprefix='/usr'; usevendorprefix='define';
21328108 23
24 # Where to put modules.
835bc3f3 25 sitelib="/Library/Perl/${version}"; # FIXME: Want "/Network/Perl/${version}" also
26 vendorlib="/System/Library/Perl/${version}"; # Apple-supplied modules
21328108 27 ;;
835bc3f3 28
21328108 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.
835bc3f3 35 sitelib="/Library/Perl/${version}"; # FIXME: Want "/Network/Perl/${version}" also
36 vendorlib="/System/Library/Perl/${version}"; # Apple-supplied modules
21328108 37 ;;
297d2c05 38
39 *)
40 # Anything else; use non-system directories
297d2c05 41 ;;
42
e32f0149 43esac
f556e5b9 44
187122cb 45# 4BSD uses ${prefix}/share/man, not ${prefix}/man.
187122cb 46man1dir="${prefix}/share/man/man1";
47man3dir="${prefix}/share/man/man3";
48
f556e5b9 49##
50# Tool chain settings
51##
52
53# Since we can build fat, the archname doesn't need the processor type
54archname='darwin';
55
56# nm works.
57usenm='true';
58
318c098a 59case "$optimize" in
60'')
14c26028 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.
21328108 66if [ -z "${optimize}" ]; then
c8037037 67 case "`${cc:-gcc} -v 2>&1`" in
68 *"gcc version 3."*) optimize='-Os' ;;
69 *) optimize='-O3' ;;
21328108 70 esac
c8037037 71else
72 optimize='-O3'
23131aa4 73fi
318c098a 74;;
75esac
f556e5b9 76
faf52077 77# -pipe: makes compilation go faster.
21328108 78# -fno-common because common symbols are not allowed in MH_DYLIB
f72d1791 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.)
82ccflags="${ccflags} -pipe -fno-common -DDARWIN"
f556e5b9 83
4e644a1e 84# At least on Darwin 1.3.x:
ccf87481 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#
65fe0b2a 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#
21328108 105case "$(grep '^#define INT32_MIN' /usr/include/stdint.h)" in
106 *-2147483648) ccflags="${ccflags} -DINT32_MIN_BROKEN -DINT64_MIN_BROKEN" ;;
65fe0b2a 107esac
ccf87481 108
21328108 109# Avoid Apple's cpp precompiler, better for extensions
8f4f83ba 110cppflags="${cppflags} -no-cpp-precomp"
835bc3f3 111
112# This is necessary because perl's build system doesn't
113# apply cppflags to cc compile lines as it should.
114ccflags="${ccflags} ${cppflags}"
4f8ddd77 115
00371ed5 116# Known optimizer problems.
f5520784 117case "`cc -v 2>&1`" in
21328108 118 *"3.1 20020105"*) toke_cflags='optimize=""' ;;
00371ed5 119esac
2ece6c11 120
f556e5b9 121# Shared library extension is .dylib.
122# Bundle extension is .bundle.
123ld='cc';
124so='dylib';
125dlext='bundle';
126dlsrc='dl_dyld.xs'; usedl='define';
c374061b 127cccdlflags=' '; # space, not empty, because otherwise we get -fpic
21328108 128# Perl bundles do not expect two-level namespace, added in Darwin 1.4.
986530ea 129# But starting from perl 5.8.1/Darwin 7 the default is the two-level.
f29f446b 130case "$osvers" in
cb3fc426 1311.[0-3].*)
986530ea 132 lddlflags="${ldflags} -bundle -undefined suppress"
133 ;;
1341.*)
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 ;;
f29f446b 148esac
f556e5b9 149ldlibpthname='DYLD_LIBRARY_PATH';
39225f5c 150
151# useshrplib=true results in much slower startup times.
763754f3 152# 'false' is the default value. Use Configure -Duseshrplib to override.
f556e5b9 153
cb3fc426 154cat > 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.
157case "$ldflags" in
986530ea 158*"-flat_namespace"*) ;; # Backward compat, be flat.
cb3fc426 159# If we are using two-level namespace, we will munge the archname to show it.
160*) archname="${archname}-2level" ;;
161esac
162EOCBU
163
f556e5b9 164##
165# System libraries
166##
167
168# vfork works
169usevfork='true';
170
171# malloc works
172usemymalloc='n';
2ece6c11 173
d235852b 174# Locales aren't feeling well.
175LC_ALL=C; export LC_ALL;
14c11978 176LANG=C; export LANG;
d235852b 177
2590a1d7 178#
14c11978 179# The libraries are not threadsafe as of OS X 10.1.
2590a1d7 180#
181# Fix when Apple fixes libc.
182#
3db8f154 183case "$usethreads$useithreads" in
21328108 184 *define*)
9bff986a 185 case "$osvers" in
186 [12345].*) cat <<EOM >&4
187
188
2590a1d7 189
4f8ddd77 190*** Warning, there might be problems with your libraries with
00371ed5 191*** regards to threading. The test ext/threads/t/libc.t is likely
192*** to fail.
4f8ddd77 193
2590a1d7 194EOM
21328108 195 ;;
9bff986a 196 *) usereentrant='define';;
197 esac
198
2590a1d7 199esac
835bc3f3 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.
208firstmakefile=GNUmakefile;