summaryrefslogtreecommitdiffstats
path: root/qtools
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-03-16 19:15:22 (GMT)
committerGitHub <noreply@github.com>2019-03-16 19:15:22 (GMT)
commit4b44e7e07f9c475daa3becba362ae4cd81b74ea3 (patch)
tree7705c3d085160d4cc1a47ce85da6d0d10cdb12ae /qtools
parent00d6d827b5230273ad16e25c10053ef005171b51 (diff)
parent0ba6f4c79ca6c38c6649afe279ed49f14c77f449 (diff)
downloadDoxygen-4b44e7e07f9c475daa3becba362ae4cd81b74ea3.zip
Doxygen-4b44e7e07f9c475daa3becba362ae4cd81b74ea3.tar.gz
Doxygen-4b44e7e07f9c475daa3becba362ae4cd81b74ea3.tar.bz2
Merge pull request #6876 from shawnanastasio/fix_aix_build
qglobal.h: Fix build on AIX
Diffstat (limited to 'qtools')
-rw-r--r--qtools/qglobal.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/qtools/qglobal.h b/qtools/qglobal.h
index c3f7594..8512f41 100644
--- a/qtools/qglobal.h
+++ b/qtools/qglobal.h
@@ -357,7 +357,9 @@ typedef const char *pcchar;
typedef __int64 int64;
typedef unsigned __int64 uint64;
#else
+#if !defined(_OS_AIX_) || !defined(_H_INTTYPES)
typedef long long int64;
+#endif
typedef unsigned long long uint64;
#endif