diff options
author | Paul Green <Paul.Green@Stratus.com> | 2010-10-06 23:43:18 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2010-10-06 23:43:18 -0700 |
commit | 10fb90aa0794d329747e54e9cda39a33b544c29c (patch) | |
tree | 202cccfcbadc88a88cb3897c85778f7acbea0986 /hints | |
parent | ef69c8fcaa2e29961b103ed4aaf7b24d5edd9f23 (diff) | |
download | perl-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.sh | 2 |
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" |