Commit | Line | Data |
---|---|---|
f556e5b9 JH |
1 | ## |
2 | # Darwin (Mac OS) hints | |
835bc3f3 | 3 | # Wilfredo Sanchez <wsanchez@wsanchez.net> |
f556e5b9 JH |
4 | ## |
5 | ||
6 | ## | |
7 | # Paths | |
8 | ## | |
9 | ||
21328108 HS |
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 | ||
f556e5b9 | 16 | # BSD paths |
e32f0149 | 17 | case "$prefix" in |
21328108 HS |
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 HS |
23 | |
24 | # Where to put modules. | |
835bc3f3 RGS |
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 HS |
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 RGS |
35 | sitelib="/Library/Perl/${version}"; # FIXME: Want "/Network/Perl/${version}" also |
36 | vendorlib="/System/Library/Perl/${version}"; # Apple-supplied modules | |
21328108 | 37 | ;; |
e32f0149 | 38 | esac |
f556e5b9 | 39 | |
187122cb | 40 | # 4BSD uses ${prefix}/share/man, not ${prefix}/man. |
187122cb W |
41 | man1dir="${prefix}/share/man/man1"; |
42 | man3dir="${prefix}/share/man/man3"; | |
43 | ||
f556e5b9 JH |
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 | ||
318c098a JH |
54 | case "$optimize" in |
55 | '') | |
14c26028 MS |
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. | |
21328108 | 61 | if [ -z "${optimize}" ]; then |
c8037037 MS |
62 | case "`${cc:-gcc} -v 2>&1`" in |
63 | *"gcc version 3."*) optimize='-Os' ;; | |
64 | *) optimize='-O3' ;; | |
21328108 | 65 | esac |
c8037037 MS |
66 | else |
67 | optimize='-O3' | |
23131aa4 | 68 | fi |
318c098a JH |
69 | ;; |
70 | esac | |
f556e5b9 | 71 | |
faf52077 | 72 | # -pipe: makes compilation go faster. |
21328108 | 73 | # -fno-common because common symbols are not allowed in MH_DYLIB |
0ac8ade1 | 74 | ccflags="${ccflags} -pipe -fno-common" |
f556e5b9 | 75 | |
4e644a1e | 76 | # At least on Darwin 1.3.x: |
ccf87481 JH |
77 | # |
78 | # # define INT32_MIN -2147483648 | |
79 | # int main () { | |
80 | # double a = INT32_MIN; | |
81 | # printf ("INT32_MIN=%g\n", a); | |
82 | # return 0; | |
83 | # } | |
84 | # will output: | |
85 | # INT32_MIN=2.14748e+09 | |
86 | # Note that the INT32_MIN has become positive. | |
87 | # INT32_MIN is set in /usr/include/stdint.h by: | |
88 | # #define INT32_MIN -2147483648 | |
89 | # which seems to break the gcc. Defining INT32_MIN as (-2147483647-1) | |
90 | # seems to work. INT64_MIN seems to be similarly broken. | |
91 | # -- Nicholas Clark, Ken Williams, and Edward Moy | |
92 | # | |
65fe0b2a JH |
93 | # This seems to have been fixed since at least Mac OS X 10.1.3, |
94 | # stdint.h defining INT32_MIN as (-INT32_MAX-1) | |
95 | # -- Edward Moy | |
96 | # | |
21328108 HS |
97 | case "$(grep '^#define INT32_MIN' /usr/include/stdint.h)" in |
98 | *-2147483648) ccflags="${ccflags} -DINT32_MIN_BROKEN -DINT64_MIN_BROKEN" ;; | |
65fe0b2a | 99 | esac |
ccf87481 | 100 | |
21328108 | 101 | # Avoid Apple's cpp precompiler, better for extensions |
8f4f83ba | 102 | cppflags="${cppflags} -no-cpp-precomp" |
835bc3f3 RGS |
103 | |
104 | # This is necessary because perl's build system doesn't | |
105 | # apply cppflags to cc compile lines as it should. | |
106 | ccflags="${ccflags} ${cppflags}" | |
4f8ddd77 | 107 | |
00371ed5 | 108 | # Known optimizer problems. |
f5520784 | 109 | case "`cc -v 2>&1`" in |
21328108 | 110 | *"3.1 20020105"*) toke_cflags='optimize=""' ;; |
00371ed5 | 111 | esac |
2ece6c11 | 112 | |
f556e5b9 JH |
113 | # Shared library extension is .dylib. |
114 | # Bundle extension is .bundle. | |
115 | ld='cc'; | |
116 | so='dylib'; | |
117 | dlext='bundle'; | |
118 | dlsrc='dl_dyld.xs'; usedl='define'; | |
c374061b | 119 | cccdlflags=' '; # space, not empty, because otherwise we get -fpic |
21328108 | 120 | # Perl bundles do not expect two-level namespace, added in Darwin 1.4. |
f29f446b | 121 | case "$osvers" in |
21328108 HS |
122 | 1.[0-3].*) ;; |
123 | *) ldflags="${ldflags} -flat_namespace" ;; | |
f29f446b | 124 | esac |
f556e5b9 JH |
125 | lddlflags="${ldflags} -bundle -undefined suppress"; |
126 | ldlibpthname='DYLD_LIBRARY_PATH'; | |
127 | useshrplib='true'; | |
128 | ||
129 | ## | |
130 | # System libraries | |
131 | ## | |
132 | ||
133 | # vfork works | |
134 | usevfork='true'; | |
135 | ||
136 | # malloc works | |
137 | usemymalloc='n'; | |
2ece6c11 | 138 | |
d235852b PP |
139 | # Locales aren't feeling well. |
140 | LC_ALL=C; export LC_ALL; | |
14c11978 | 141 | LANG=C; export LANG; |
d235852b | 142 | |
2590a1d7 | 143 | # |
14c11978 | 144 | # The libraries are not threadsafe as of OS X 10.1. |
2590a1d7 JH |
145 | # |
146 | # Fix when Apple fixes libc. | |
147 | # | |
3db8f154 | 148 | case "$usethreads$useithreads" in |
21328108 | 149 | *define*) |
9bff986a AB |
150 | case "$osvers" in |
151 | [12345].*) cat <<EOM >&4 | |
152 | ||
153 | ||
2590a1d7 | 154 | |
4f8ddd77 | 155 | *** Warning, there might be problems with your libraries with |
00371ed5 JH |
156 | *** regards to threading. The test ext/threads/t/libc.t is likely |
157 | *** to fail. | |
4f8ddd77 | 158 | |
2590a1d7 | 159 | EOM |
21328108 | 160 | ;; |
9bff986a AB |
161 | *) usereentrant='define';; |
162 | esac | |
163 | ||
2590a1d7 | 164 | esac |
835bc3f3 RGS |
165 | |
166 | ## | |
167 | # Build process | |
168 | ## | |
169 | ||
170 | # Case-insensitive filesystems don't get along with Makefile and | |
171 | # makefile in the same place. Since Darwin uses GNU make, this dodges | |
172 | # the problem. | |
173 | firstmakefile=GNUmakefile; |