diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-14 18:06:18 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-14 18:06:18 +0000 |
commit | 573e07cf7604a3aadadf8048a1d762553425e7e0 (patch) | |
tree | fa9ac875f1d864a126b8b2e5bfd64eb2682ab5a6 /hints/vos.sh | |
parent | e9936729f137ff1f955f0ea38a5790419af0e893 (diff) | |
download | perl-573e07cf7604a3aadadf8048a1d762553425e7e0.tar.gz |
Add a Configure hints file for VOS: the POSIX support
of VOS is getting close to the point where it can run
Configure (some Configure tweaks will be required).
p4raw-id: //depot/perl@13688
Diffstat (limited to 'hints/vos.sh')
-rw-r--r-- | hints/vos.sh | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/hints/vos.sh b/hints/vos.sh new file mode 100644 index 0000000000..c63ac9c1d9 --- /dev/null +++ b/hints/vos.sh @@ -0,0 +1,60 @@ +# $Id: vos.sh,v 1.0 2001-12-11 09:30:00-05 Green Exp $ + +# This is a hints file for Stratus VOS, using the POSIX environment +# in VOS 14.4.0 and higher. +# +# VOS POSIX is based on POSIX.1-1996. It ships with gcc as the standard +# compiler. +# +# Paul Green (Paul.Green@stratus.com) + +# C compiler and default options. +cc=gcc +ccflags="-D_BSD_SOURCE -D_POSIX_C_SOURCE=199509L" + +# Make command. +make="/system/gnu_library/bin/gmake" + +# Architecture name +archname="hppa1.1" + +# POSIX commands are here. +# paths="/system/gnu_library/bin" + +# Object library paths. +loclibpth="/system/stcp/object_library" +loclibpth="$loclibpth /system/stcp/object_library/common" +loclibpth="$loclibpth /system/stcp/object_library/net" +loclibpth="$loclibpth /system/stcp/object_library/socket" +loclibpth="$loclibpth /system/posix_object_library/sysv" +loclibpth="$loclibpth /system/posix_object_library" +loclibpth="$loclibpth /system/c_object_library" +loclibpth="$loclibpth /system/object_library" +glibpth="$loclibpth" + +# Include library paths +locincpth="/system/stcp/include_library" +locincpth="$locincpth /system/stcp/include_library/arpa" +locincpth="$locincpth /system/stcp/include_library/net" +locincpth="$locincpth /system/stcp/include_library/netinet" +locincpth="$locincpth /system/stcp/include_library/protocols" +usrinc="/system/include_library" + +# Where to install perl5. +prefix=/system/ported/perl5 + +# Linker is gcc. +ld="gcc" + +# No shared libraries. +so="none" + +# Don't use nm. +usenm="n" + +# Make the default be no large file support. +uselargefiles="n" + +# Don't use malloc that comes with perl. +usemymalloc="n" + |