summaryrefslogtreecommitdiff
path: root/hints
diff options
context:
space:
mode:
authorPaul Green <Paul.Green@Stratus.com>2010-10-06 23:43:18 -0700
committerFather Chrysostomos <sprout@cpan.org>2010-10-06 23:43:18 -0700
commit10fb90aa0794d329747e54e9cda39a33b544c29c (patch)
tree202cccfcbadc88a88cb3897c85778f7acbea0986 /hints
parentef69c8fcaa2e29961b103ed4aaf7b24d5edd9f23 (diff)
downloadperl-10fb90aa0794d329747e54e9cda39a33b544c29c.tar.gz
Patch for Stratus VOS for extended file names
The attached 1-line patch to hints/vos.sh defines a C macro that enables support for file names longer than 32 characters on the Stratus OpenVOS port of perl. As there are now some files in the base package whose names exceed 32 chars, this is an important change. This change only applies to OpenVOS (horay for the hints files)! I tested this change on OpenVOS Release 17.0.2ab. I have also updated the .pod files that refer to VOS/OpenVOS.
Diffstat (limited to 'hints')
-rw-r--r--hints/vos.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/hints/vos.sh b/hints/vos.sh
index 3401c83e39..f08ba0b2c5 100644
--- a/hints/vos.sh
+++ b/hints/vos.sh
@@ -10,7 +10,7 @@
# C compiler and default options.
cc=gcc
-ccflags="-D_SVID_SOURCE -D_POSIX_C_SOURCE=200112L"
+ccflags="-D_SVID_SOURCE -D_POSIX_C_SOURCE=200112L -D_VOS_EXTENDED_NAMES"
# Make command.
make="/system/gnu_library/bin/gmake"