Hi, We found a bug in pytables last week that shows up on AIX. In the file utils.c, there is a long long variable named LONGLONG_MAX (see line 462):
PY_LONG_LONG LONGLONG_MAX; The problem is that on AIX LONGLONG_MAX is a predefined macro (the numerical value of the max long long). When the preprocessor goes through the macro LONGLONG_MAX gets replaced by a numerical value leading to a syntax error. To fix this, LONGLONG_MAX needs to be named something that doesn't collide with system level macros. Thanks for an awesome package! Brian Granger ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Pytables-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/pytables-users
