This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
8bc623a9e4a0e38545889b19bc3d662a4e4501ba
[perl5.git] / hints / next_4.sh
1 ######################################################################
2 #
3 # IMPORTANT: before you run 'make', you need to enter one of these two
4 # lines (depending on your shell):
5 #        DYLD_LIBRARY_PATH=`pwd`; export DYLD_LIBRARY_PATH
6 # or
7 #       setenv DYLD_LIBRARY_PATH `pwd`
8 #
9 ######################################################################
10
11 # Posix support has been removed from NextStep 
12 #
13 useposix='undef'
14
15 libpth='/lib /usr/lib /usr/local/lib'
16 libswanted=' '
17 libc='/NextLibrary/Frameworks/System.framework/System'
18
19 ldflags='-dynamic -prebind'
20 lddlflags='-dynamic -bundle -undefined suppress'
21 ccflags='-dynamic -fno-common -DUSE_NEXT_CTYPE -DUSE_PERL_SBRK'
22 cccdlflags='none'
23 ld='cc'
24 #optimize='-g -O'
25
26 ######################################################################
27 # MAB support
28 ######################################################################
29 # By default we will build for all architectures your development
30 # environment supports. If you only want to build for the platform
31 # you are on, simply comment or remove the line below.
32 #
33 # If you want to build for specific architectures, change the line
34 # below to something like
35 #
36 #       archs='m68k i386'
37 #
38
39 # On m68k machines, toke.c cannot be compiled at all for i386 and it can
40 # only be compiled for m68k itself without optimization (this is under
41 # OPENSTEP 4.2).
42 #
43 if [ `hostinfo | grep 'NeXT Mach.*:'  | sed 's/.*RELEASE_//'` = M68K ]
44 then
45         echo "Cross compilation is impossible on m68k hardware under OS 4"
46         echo "Forcing architecture to m68k only"
47         toke_cflags='optimize=""'
48         archs='m68k'
49 else
50         archs=`/bin/lipo -info /usr/lib/libm.a | sed -n 's/^[^:]*:[^:]*: //p'`
51 fi
52
53 #
54 # leave the following part alone
55 #
56 archcount=`echo $archs |wc -w`
57 if [ $archcount -gt 1 ]
58 then
59         for d in $archs
60         do
61                         mabflags="$mabflags -arch $d"
62         done
63         ccflags="$ccflags $mabflags"
64         ldflags="$ldflags $mabflags"
65         lddlflags="$lddlflags $mabflags"
66 fi
67 ######################################################################
68 # END MAB support
69 ######################################################################
70
71 useshprlib='true'
72 dlext='bundle'
73 so='dylib'
74
75 #
76 # The default prefix would be '/usr/local'. But since many people are
77 # likely to have still 3.3 machines on their network, we do not want
78 # to overwrite possibly existing 3.3 binaries. 
79 # You can use Configure -Dprefix=/foo/bar to override this, or simply
80 # remove the lines below.
81 #
82 case "$prefix" in
83 '') prefix='/usr/local/OPENSTEP' ;;
84 esac
85
86 archname='OPENSTEP-Mach'
87
88 #
89 # At least on m68k there are situations when memcmp doesn't behave
90 # as expected.  So we'll use perl's memcmp.
91 #
92 d_sanemcmp='undef'
93
94 d_strcoll='undef'
95 i_dbm='define'
96 i_utime='undef'
97 groupstype='int'
98 direntrytype='struct direct'
99
100 usemymalloc='y'
101 clocktype='int'
102
103 #
104 # On some NeXT machines, the timestamp put by ranlib is not correct, and
105 # this may cause useless recompiles.  Fix that by adding a sleep before
106 # running ranlib.  The '5' is an empirical number that's "long enough."
107 # (Thanks to Andreas Koenig <k@franz.ww.tu-berlin.de>)
108 ranlib='sleep 5; /bin/ranlib'