summaryrefslogtreecommitdiff
path: root/hints/vos.sh
diff options
context:
space:
mode:
authorPaul Green <Paul.Green@stratus.com>2002-01-21 18:27:00 -0500
committerJarkko Hietaniemi <jhi@iki.fi>2002-01-22 16:46:48 +0000
commit7b2b351e8fdcd287739431e25ffed099b66cdee2 (patch)
treed3623ed182386393e0fbff60e55ca312c0573484 /hints/vos.sh
parentc68a00c0718023d4b3e2aa313bc06f7aa681515e (diff)
downloadperl-7b2b351e8fdcd287739431e25ffed099b66cdee2.tar.gz
Support truncate() in VOS port
Message-Id: <200201220428.XAA15304@mailhub1.stratus.com> p4raw-id: //depot/perl@14376
Diffstat (limited to 'hints/vos.sh')
-rw-r--r--hints/vos.sh10
1 files changed, 9 insertions, 1 deletions
diff --git a/hints/vos.sh b/hints/vos.sh
index f4e97003b6..c06adba188 100644
--- a/hints/vos.sh
+++ b/hints/vos.sh
@@ -14,7 +14,8 @@ ccflags="-D_SVID_SOURCE -D_POSIX_C_SOURCE=199509L"
# Make command.
make="/system/gnu_library/bin/gmake"
-_make="/system/gnu_library/bin/gmake"
+# indented to not put it into config.sh
+ _make="/system/gnu_library/bin/gmake"
# Architecture name
archname="hppa1.1"
@@ -74,3 +75,10 @@ fflushNULL=define
# VOS has a link() function but it is a dummy.
d_link="undef"
+
+# VOS does not have truncate() but we supply one in vos.c
+d_truncate="define"
+archobjs="vos.o"
+
+# Help gmake find vos.c
+test -h vos.c || ln -s vos/vos.c vos.c