summaryrefslogtreecommitdiff
path: root/pyuno/source/module/pyuno_impl.hxx
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2016-02-09 12:55:24 +0100
committerMichael Stahl <mstahl@redhat.com>2016-02-09 12:45:25 +0000
commite14bd2d6845cf13a35b14762d6e1e160e8315997 (patch)
tree512b636b1affa911ddb31e3a5ecb252a9780de6d /pyuno/source/module/pyuno_impl.hxx
parent52c60fac3672476a0260248d3eb6f9ac7b96667f (diff)
pyuno: Fix build with python 2.7
Adjust conditionals to properly respect python 2.7.1+ Change-Id: I32d21a071e054100294e418af5358305eac69944 Reviewed-on: https://gerrit.libreoffice.org/22231 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'pyuno/source/module/pyuno_impl.hxx')
-rw-r--r--pyuno/source/module/pyuno_impl.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyuno/source/module/pyuno_impl.hxx b/pyuno/source/module/pyuno_impl.hxx
index 39a0952361d9..69e254ce0b9a 100644
--- a/pyuno/source/module/pyuno_impl.hxx
+++ b/pyuno/source/module/pyuno_impl.hxx
@@ -26,7 +26,7 @@
#include <Python.h>
-#if PY_VERSION_HEX < 0x02070000
+#if PY_VERSION_HEX < 0x03020000
typedef long Py_hash_t;
#endif