Support truncate() in VOS port
[p5sagit/p5-mst-13.2.git] / hints / vos.sh
1 # $Id: vos.sh,v 1.0 2001-12-11 09:30:00-05 Green Exp $
2
3 # This is a hints file for Stratus VOS, using the POSIX environment
4 # in VOS 14.4.0 and higher.
5 #
6 # VOS POSIX is based on POSIX.1-1996.  It ships with gcc as the standard
7 # compiler.
8 #
9 # Paul Green (Paul.Green@stratus.com)
10
11 # C compiler and default options.
12 cc=gcc
13 ccflags="-D_SVID_SOURCE -D_POSIX_C_SOURCE=199509L"
14
15 # Make command.
16 make="/system/gnu_library/bin/gmake"
17 # indented to not put it into config.sh
18   _make="/system/gnu_library/bin/gmake"
19
20 # Architecture name
21 archname="hppa1.1"
22
23 # Executable suffix.
24 # No, this is not a typo.  The ".pm" really is the native
25 # executable suffix in VOS.  Talk about cosmic resonance.
26 _exe=".pm"
27
28 # Object library paths.
29 loclibpth="/system/stcp/object_library"
30 loclibpth="$loclibpth /system/stcp/object_library/common"
31 loclibpth="$loclibpth /system/stcp/object_library/net"
32 loclibpth="$loclibpth /system/stcp/object_library/socket"
33 loclibpth="$loclibpth /system/posix_object_library/sysv"
34 loclibpth="$loclibpth /system/posix_object_library"
35 loclibpth="$loclibpth /system/c_object_library"
36 loclibpth="$loclibpth /system/object_library"
37 glibpth="$loclibpth"
38
39 # Include library paths
40 locincpth="/system/stcp/include_library"
41 locincpth="$locincpth /system/stcp/include_library/arpa"
42 locincpth="$locincpth /system/stcp/include_library/net"
43 locincpth="$locincpth /system/stcp/include_library/netinet"
44 locincpth="$locincpth /system/stcp/include_library/protocols"
45 locincpth="$locincpth /system/include_library/sysv"
46 usrinc="/system/include_library"
47
48 # Where to install perl5.
49 prefix=/system/ported/perl5
50
51 # Linker is gcc.
52 ld="gcc"
53
54 # No shared libraries.
55 so="none"
56
57 # Don't use nm.
58 usenm="n"
59
60 # Make the default be no large file support.
61 uselargefiles="n"
62
63 # Don't use malloc that comes with perl.
64 usemymalloc="n"
65
66 # Make bison the default compiler-compiler.
67 yacc="/system/gnu_library/bin/bison"
68
69 # VOS doesn't have (or need) a pager, but perl needs one.
70 pager="/system/gnu_library/bin/cat.pm"
71
72 # VOS has a bug that causes _exit() to flush all files.
73 # This confuses the tests.  Make 'em happy here.
74 fflushNULL=define
75
76 # VOS has a link() function but it is a dummy.
77 d_link="undef"
78
79 # VOS does not have truncate() but we supply one in vos.c
80 d_truncate="define"
81 archobjs="vos.o"
82
83 # Help gmake find vos.c
84 test -h vos.c || ln -s vos/vos.c vos.c