Skip to content

Commit 28c1c4b

Browse files
committed
fixed linux compilation problem
1 parent 92471ff commit 28c1c4b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/PythonQtPythonInclude.h

+6
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,12 @@
5959
#include <Python.h>
6060
#endif
6161

62+
// By including Python.h on Linux truncate could have been defined (in unistd.h)
63+
// which would lead to compiler errors. Therefore:
64+
#ifdef truncate
65+
# undef truncate
66+
#endif
67+
6268
// get Qt keywords back
6369
#ifdef PYTHONQT_RESTORE_KEYWORDS
6470
#define slots Q_SLOTS

0 commit comments

Comments
 (0)