diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-01 04:50:33 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-01 04:50:33 +0000 |
commit | 9422c00b50432b881d4068e835547b477a7bfcf5 (patch) | |
tree | c9d0d6aa47b13afd07464bad5c4b05af5b265103 /hints/hpux.sh | |
parent | a7867d0afe06715af8daed54e07334b50c98a192 (diff) | |
download | perl-9422c00b50432b881d4068e835547b477a7bfcf5.tar.gz |
Stash away the largefiles flags and libswanted.
p4raw-id: //depot/perl@6477
Diffstat (limited to 'hints/hpux.sh')
-rw-r--r-- | hints/hpux.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/hints/hpux.sh b/hints/hpux.sh index ce15f552b4..ecfcb6d572 100644 --- a/hints/hpux.sh +++ b/hints/hpux.sh @@ -387,8 +387,10 @@ cat > UU/uselargefiles.cbu <<'EOCBU' case "$uselargefiles" in ''|$define|true|[yY]*) # there are largefile flags available via getconf(1) - # but we cheat for now. - ccflags="$ccflags -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" + # but we cheat for now. (Keep that in the left margin.) +ccflags_largefiles="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" + + ccflags="$ccflags $ccflags_largefiles" if test -z "$ccisgcc" -a -z "$gccversion"; then # The strict ANSI mode (-Aa) doesn't like large files. |