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