This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
5.004 removed deprecated %OVERLOAD support silently
[perl5.git] / hints / next_4.sh
CommitLineData
760ac839 1######################################################################
25b26da3 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#
760ac839
LW
9######################################################################
10
11# Posix support has been removed from NextStep
12#
25b26da3 13useposix='undef'
14
25b26da3 15libpth='/lib /usr/lib'
16libswanted=' '
17libc='/NextLibrary/Frameworks/System.framework/System'
18
25b26da3 19ldflags='-dynamic -prebind'
20lddlflags='-dynamic -bundle -undefined suppress'
760ac839 21ccflags='-dynamic -fno-common -DUSE_NEXT_CTYPE -DUSE_PERL_SBRK -DHIDEMYMALLOC'
25b26da3 22cccdlflags='none'
23ld='cc'
760ac839 24#optimize='-g -O'
25b26da3 25
7bac28a0 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
bf5a71f0 35#
7bac28a0 36# archs=(m68k i386)
bf5a71f0 37#
38archs=`/bin/lipo -info /usr/lib/libm.a | sed 's/^[^:]*:[^:]*: //'`
bf5a71f0 39
3c321fdc 40#
7bac28a0 41# leave the following part alone
42#
43archcount=`echo $archs |wc -w`
44if [ $archcount -gt 1 ]
45then
46 for d in $archs
47 do
48 mabflags="$mabflags -arch $d"
49 done
50 ccflags="$ccflags $mabflags"
51 ldflags="$ldflags $mabflags"
52 lddlflags="$lddlflags $mabflags"
53fi
54######################################################################
55# END MAB support
56######################################################################
bf5a71f0 57
58useshprlib='true'
25b26da3 59dlext='bundle'
60so='dylib'
61
760ac839
LW
62#
63# The default prefix would be '/usr/local'. But since many people are
64# likely to have still 3.3 machines on their network, we do not want
65# to overwrite possibly existing 3.3 binaries.
7bac28a0 66# You can use Configure -Dprefix=/foo/bar to override this, or simply
67# remove the lines below.
760ac839 68#
bf5a71f0 69case "$prefix" in
70'') prefix='/usr/local/OPENSTEP' ;;
71esac
72
25b26da3 73archname='OPENSTEP-Mach'
74
7bac28a0 75#
76# At least on m68k there are situations when memcmp doesn't behave
77# as expected. So we'll use perl's memcmp.
78#
79d_sanemcmp='undef'
80
25b26da3 81d_strcoll='undef'
82i_dbm='define'
83i_utime='undef'
84groupstype='int'
85direntrytype='struct direct'
86
760ac839 87usemymalloc='y'
25b26da3 88clocktype='int'
89
90#
91# On some NeXT machines, the timestamp put by ranlib is not correct, and
92# this may cause useless recompiles. Fix that by adding a sleep before
93# running ranlib. The '5' is an empirical number that's "long enough."
94# (Thanks to Andreas Koenig <k@franz.ww.tu-berlin.de>)
95ranlib='sleep 5; /bin/ranlib'