This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
netdb_host_type and netdb_hlen_type on NeXt
[perl5.git] / hints / next_4.sh
... / ...
CommitLineData
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#
13useposix='undef'
14
15libpth='/lib /usr/lib'
16libswanted=' '
17libc='/NextLibrary/Frameworks/System.framework/System'
18
19ldflags='-dynamic -prebind'
20lddlflags='-dynamic -bundle -undefined suppress'
21ccflags='-dynamic -fno-common -DUSE_NEXT_CTYPE -DUSE_PERL_SBRK -DHIDEMYMALLOC'
22cccdlflags='none'
23ld='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#
38archs=`/bin/lipo -info /usr/lib/libm.a | sed -n 's/^[^:]*:[^:]*: //p'`
39
40#
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######################################################################
57
58useshprlib='true'
59dlext='bundle'
60so='dylib'
61
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.
66# You can use Configure -Dprefix=/foo/bar to override this, or simply
67# remove the lines below.
68#
69case "$prefix" in
70'') prefix='/usr/local/OPENSTEP' ;;
71esac
72
73archname='OPENSTEP-Mach'
74
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
81d_strcoll='undef'
82i_dbm='define'
83i_utime='undef'
84groupstype='int'
85direntrytype='struct direct'
86netdb_host_type='const char *'
87netdb_hlen_type='int'
88
89usemymalloc='y'
90clocktype='int'
91
92#
93# On some NeXT machines, the timestamp put by ranlib is not correct, and
94# this may cause useless recompiles. Fix that by adding a sleep before
95# running ranlib. The '5' is an empirical number that's "long enough."
96# (Thanks to Andreas Koenig <k@franz.ww.tu-berlin.de>)
97ranlib='sleep 5; /bin/ranlib'