Integrate mainline
[p5sagit/p5-mst-13.2.git] / hints / darwin.sh
1 ##
2 # Darwin (Mac OS) hints
3 # Wilfredo Sanchez <wsanchez@mit.edu>
4 ##
5
6 ##
7 # Paths
8 ##
9
10 # BSD paths
11 case "$prefix" in
12 '')
13         # Default install; use non-system directories
14         prefix='/usr/local'; # Built-in perl uses /usr
15         siteprefix='/usr/local';
16         vendorprefix='/usr/local'; usevendorprefix='define';
17
18         # Where to put modules.
19         privlib='/Library/Perl'; # Built-in perl uses /System/Library/Perl
20         sitelib='/Library/Perl';
21         vendorlib='/Network/Library/Perl';
22         ;;
23 '/usr')
24         # We are building/replacing the built-in perl
25         siteprefix='/usr/local';
26         vendorprefix='/usr/local'; usevendorprefix='define';
27
28         # Where to put modules.
29         privlib='/System/Library/Perl';
30         sitelib='/Library/Perl';
31         vendorlib='/Network/Library/Perl';
32         ;;
33 esac
34
35 # 4BSD uses ${prefix}/share/man, not ${prefix}/man.
36 man1dir="${prefix}/share/man/man1";
37 man3dir="${prefix}/share/man/man3";
38
39 ##
40 # Tool chain settings
41 ##
42
43 # Since we can build fat, the archname doesn't need the processor type
44 archname='darwin';
45
46 # nm works.
47 usenm='true';
48
49 # Optimize.
50 if [ "x$optimize" = 'x' ]; then
51     optimize='-O3'
52 fi
53
54 # XXX Unclear why we require -pipe and -fno-common here. --Andy Dougherty
55 # We don't like commons. --Fred Sánchez
56 ccflags="${ccflags} -pipe -fno-common"
57
58 # At least on Darwin 1.3.x:
59 #
60 # # define INT32_MIN -2147483648
61 # int main () {
62 #  double a = INT32_MIN;
63 #  printf ("INT32_MIN=%g\n", a);
64 #  return 0;
65 # }
66 # will output:
67 # INT32_MIN=2.14748e+09
68 # Note that the INT32_MIN has become positive.
69 # INT32_MIN is set in /usr/include/stdint.h by:
70 # #define INT32_MIN        -2147483648
71 # which seems to break the gcc.  Defining INT32_MIN as (-2147483647-1)
72 # seems to work.  INT64_MIN seems to be similarly broken.
73 # -- Nicholas Clark, Ken Williams, and Edward Moy
74 #
75 ccflags="${ccflags} -DINT32_MIN_BROKEN -DINT64_MIN_BROKEN"
76
77 # cpp-precomp is problematic.
78 cppflags='-traditional-cpp';
79
80 # Shared library extension is .dylib.
81 # Bundle extension is .bundle.
82 ld='cc';
83 so='dylib';
84 dlext='bundle';
85 dlsrc='dl_dyld.xs'; usedl='define';
86 cccdlflags=' '; # space, not empty, because otherwise we get -fpic
87 lddlflags="${ldflags} -bundle -undefined suppress";
88 ldlibpthname='DYLD_LIBRARY_PATH';
89 useshrplib='true';
90
91 ##
92 # System libraries
93 ##
94
95 # vfork works
96 usevfork='true';
97
98 # malloc works
99 usemymalloc='n';
100
101 ##
102 # Build process
103 ##
104
105 # Locales aren't feeling well.
106 LC_ALL=C; export LC_ALL;
107
108 # Case-insensitive filesystems don't get along with Makefile and
109 # makefile in the same place.  Since Darwin uses GNU make, this dodges
110 # the problem.
111 firstmakefile=GNUmakefile;