diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2005-07-28 13:01:51 +0300 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-07-28 06:48:14 +0000 |
commit | be73ebb05b9eec2e7d6c15246ec01b902895aaa1 (patch) | |
tree | 82bcbf0e7cf136bbc223ce44982dc973bf34e6f1 /handy.h | |
parent | ba822478ced3e5aa2061138c165c9599de668198 (diff) | |
download | perl-be73ebb05b9eec2e7d6c15246ec01b902895aaa1.tar.gz |
Re: [PATCH] Tru64: use -c99 for ccflags if available
Message-ID: <42E882DF.6020100@gmail.com>
Message-ID: <42E86DE9.6090709@gmail.com>
p4raw-id: //depot/perl@25231
Diffstat (limited to 'handy.h')
-rw-r--r-- | handy.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -95,7 +95,7 @@ Null SV pointer. # define FUNCTION__ __func__ #else # if (defined(_MSC_VER) && _MSC_VER < 1300) || /* Pre-MSVC 7.0 has neither __func__ nor __FUNCTION and no good workarounds, either. */ \ - (defined(__DECC_VER)) /* Tru64 or VMS, and strict C89 being used. */ + (defined(__DECC_VER)) /* Tru64 or VMS, and strict C89 being used, but not modern enough cc (in Tur64, -c99 not known, only -std1). */ # define FUNCTION__ "" # else # define FUNCTION__ __FUNCTION__ /* Common extension. */ |