provisional MakeMaker patch for VMS
[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_BSD_SOURCE -D_POSIX_C_SOURCE=199509L"
14
15 # Make command.
16 make="/system/gnu_library/bin/gmake"
17
18 # Architecture name
19 archname="hppa1.1"
20
21 # POSIX commands are here.
22 # paths="/system/gnu_library/bin"
23
24 # Executable suffix.
25 # No, this is not a typo.  The ".pm" really is the native
26 # executable suffix in VOS.  Talk about cosmic resonance.
27 _exe=".pm"
28
29 # Object library paths.
30 loclibpth="/system/stcp/object_library"
31 loclibpth="$loclibpth /system/stcp/object_library/common"
32 loclibpth="$loclibpth /system/stcp/object_library/net"
33 loclibpth="$loclibpth /system/stcp/object_library/socket"
34 loclibpth="$loclibpth /system/posix_object_library/sysv"
35 loclibpth="$loclibpth /system/posix_object_library"
36 loclibpth="$loclibpth /system/c_object_library"
37 loclibpth="$loclibpth /system/object_library"
38 glibpth="$loclibpth"
39
40 # Include library paths
41 locincpth="/system/stcp/include_library"
42 locincpth="$locincpth /system/stcp/include_library/arpa"
43 locincpth="$locincpth /system/stcp/include_library/net"
44 locincpth="$locincpth /system/stcp/include_library/netinet"
45 locincpth="$locincpth /system/stcp/include_library/protocols"
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"