summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2005-07-28 13:01:51 +0300
committerH.Merijn Brand <h.m.brand@xs4all.nl>2005-07-28 06:48:14 +0000
commitbe73ebb05b9eec2e7d6c15246ec01b902895aaa1 (patch)
tree82bcbf0e7cf136bbc223ce44982dc973bf34e6f1 /handy.h
parentba822478ced3e5aa2061138c165c9599de668198 (diff)
downloadperl-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/handy.h b/handy.h
index f7ffc28d61..7b5eb164c0 100644
--- a/handy.h
+++ b/handy.h
@@ -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. */