Thomas> What is the recommended way to port code like this to Python Thomas> 2.3, and still remain compatible with 2.2? Thomas> #ifdef HAVE_LONG_LONG Thomas> LONG_LONG q; Thomas> #endif Wouldn't this work? #ifdef HAVE_LONG_LONG # ifdef Py_LONG_LONG Py_LONG_LONG q; # else LONG_LONG q; # endif #endif As MarkH pointed out, this change is going to break some code, but there's probably no way around it. Obviously, some other package defines a LONG_LONG macro or there wouldn't have been a bug report. Better to bite the bullet sooner than later. Skip
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4