summaryrefslogtreecommitdiff
path: root/time64.h
diff options
context:
space:
mode:
authorBrian Fraser <fraserbn@gmail.com>2013-10-11 19:30:56 -0300
committerBrian Fraser <fraserbn@gmail.com>2014-01-23 14:22:42 +0100
commitc4065ba0aa6d33775b5b3c6322a4700ab9e8455c (patch)
tree55e0d4cae9421234466b519a5a87b99dd3a87382 /time64.h
parent48f6bf3125a1cf10c24992f71aa06ec27a718997 (diff)
downloadperl-c4065ba0aa6d33775b5b3c6322a4700ab9e8455c.tar.gz
time64.h: On QNX, use const for tm_zone
http://www.qnx.com/developers/docs/6.3.0SP3/neutrino/lib_ref/t/tm.html
Diffstat (limited to 'time64.h')
-rw-r--r--time64.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/time64.h b/time64.h
index cea1be9ed1..b7306d01fb 100644
--- a/time64.h
+++ b/time64.h
@@ -28,10 +28,11 @@ struct TM64 {
#endif
#ifdef HAS_TM_TM_ZONE
-/* If glibc is defined, use const. Otherwise,
- * if we are on android, use const but not with g++
+/* If glibc is defined or we are on QNX, use const.
+ * Otherwise, if we are on android, use const but
+ * not with g++.
*/
-# if defined(__GLIBC__) || (defined(__ANDROID__) && !defined(__cplusplus))
+# if defined(__GLIBC__) || (defined(__ANDROID__) && !defined(__cplusplus)) || defined(__QNX__)
const
# endif
char *tm_zone;