2 # Darwin (Mac OS) hints
3 # Wilfredo Sanchez <wsanchez@wsanchez.net>
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}"
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';
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
30 # We are building/replacing the built-in perl
31 siteprefix='/usr/local';
32 vendorprefix='/usr/local'; usevendorprefix='define';
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
40 # 4BSD uses ${prefix}/share/man, not ${prefix}/man.
41 man1dir="${prefix}/share/man/man1";
42 man3dir="${prefix}/share/man/man3";
48 # Since we can build fat, the archname doesn't need the processor type
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' ;;
72 # -pipe: makes compilation go faster.
73 # -fno-common because common symbols are not allowed in MH_DYLIB
74 ccflags="${ccflags} -pipe -fno-common"
76 # At least on Darwin 1.3.x:
78 # # define INT32_MIN -2147483648
80 # double a = INT32_MIN;
81 # printf ("INT32_MIN=%g\n", a);
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
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)
97 case "$(grep '^#define INT32_MIN' /usr/include/stdint.h)" in
98 *-2147483648) ccflags="${ccflags} -DINT32_MIN_BROKEN -DINT64_MIN_BROKEN" ;;
101 # Avoid Apple's cpp precompiler, better for extensions
102 cppflags="${cppflags} -no-cpp-precomp"
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}"
108 # Known optimizer problems.
109 case "`cc -v 2>&1`" in
110 *"3.1 20020105"*) toke_cflags='optimize=""' ;;
113 # Shared library extension is .dylib.
114 # Bundle extension is .bundle.
118 dlsrc='dl_dyld.xs'; usedl='define';
119 cccdlflags=' '; # space, not empty, because otherwise we get -fpic
120 # Perl bundles do not expect two-level namespace, added in Darwin 1.4.
121 # But starting from perl 5.8.1/Darwin 7 the default is the two-level.
124 lddlflags="${ldflags} -bundle -undefined suppress"
127 ldflags="${ldflags} -flat_namespace"
128 lddlflags="${ldflags} -bundle -undefined suppress"
131 ldflags="${ldflags} -flat_namespace"
132 lddlflags="${ldflags} -bundle -undefined suppress"
134 *) lddlflags="${ldflags} -bundle -undefined dynamic_lookup"
136 *MACOSX_DEVELOPMENT_TARGET*) ;;
137 *) ld="MACOSX_DEPLOYMENT_TARGET=10.3 ${ld}" ;;
141 ldlibpthname='DYLD_LIBRARY_PATH';
143 # useshrplib=true results in much slower startup times.
144 # 'false' is the default value. Use Configure -Duseshrplib to override.
146 cat > UU/archname.cbu <<'EOCBU'
147 # This script UU/archname.cbu will get 'called-back' by Configure
148 # after it has otherwise determined the architecture name.
150 *"-flat_namespace"*) ;; # Backward compat, be flat.
151 # If we are using two-level namespace, we will munge the archname to show it.
152 *) archname="${archname}-2level" ;;
166 # Locales aren't feeling well.
167 LC_ALL=C; export LC_ALL;
171 # The libraries are not threadsafe as of OS X 10.1.
173 # Fix when Apple fixes libc.
175 case "$usethreads$useithreads" in
178 [12345].*) cat <<EOM >&4
182 *** Warning, there might be problems with your libraries with
183 *** regards to threading. The test ext/threads/t/libc.t is likely
188 *) usereentrant='define';;
197 # Case-insensitive filesystems don't get along with Makefile and
198 # makefile in the same place. Since Darwin uses GNU make, this dodges
200 firstmakefile=GNUmakefile;