provisional MakeMaker patch for VMS
[p5sagit/p5-mst-13.2.git] / hints / vos.sh
CommitLineData
573e07cf 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.
12cc=gcc
13ccflags="-D_BSD_SOURCE -D_POSIX_C_SOURCE=199509L"
14
15# Make command.
16make="/system/gnu_library/bin/gmake"
17
18# Architecture name
19archname="hppa1.1"
20
21# POSIX commands are here.
22# paths="/system/gnu_library/bin"
23
b29b993b 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
573e07cf 29# Object library paths.
30loclibpth="/system/stcp/object_library"
31loclibpth="$loclibpth /system/stcp/object_library/common"
32loclibpth="$loclibpth /system/stcp/object_library/net"
33loclibpth="$loclibpth /system/stcp/object_library/socket"
34loclibpth="$loclibpth /system/posix_object_library/sysv"
35loclibpth="$loclibpth /system/posix_object_library"
36loclibpth="$loclibpth /system/c_object_library"
37loclibpth="$loclibpth /system/object_library"
38glibpth="$loclibpth"
39
40# Include library paths
41locincpth="/system/stcp/include_library"
42locincpth="$locincpth /system/stcp/include_library/arpa"
43locincpth="$locincpth /system/stcp/include_library/net"
44locincpth="$locincpth /system/stcp/include_library/netinet"
45locincpth="$locincpth /system/stcp/include_library/protocols"
46usrinc="/system/include_library"
47
48# Where to install perl5.
49prefix=/system/ported/perl5
50
51# Linker is gcc.
52ld="gcc"
53
54# No shared libraries.
55so="none"
56
57# Don't use nm.
58usenm="n"
59
60# Make the default be no large file support.
61uselargefiles="n"
62
63# Don't use malloc that comes with perl.
64usemymalloc="n"
65
92d4dc7f 66# Make bison the default compiler-compiler.
67yacc="/system/gnu_library/bin/bison"
68
69# VOS doesn't have (or need) a pager, but perl needs one.
70pager="/system/gnu_library/bin/cat.pm"