Re: [osg-users] [build] Conflict between current osg trunk 3.3.8 and QT version 5.4.1 on types GLint64 and GLuint64

2015-04-29 Thread Robert Osfield
Hi Curtis, Good to hear you've found a solution. I'm not a forum user, just use the osg-users mailing list that is kept in sync with the forum and visa-versa. In general though, I don't know of means of closing a thread, personally I don't worry about. Robert. On 28 April 2015 at 21:26,

[osg-users] [build] Conflict between current osg trunk 3.3.8 and QT version 5.4.1 on types GLint64 and GLuint64

2015-04-28 Thread Curtis Rubel
Hi, I am currently getting the following compiler errors when attempting to compile against the current OSG trunk 04/28/2015, numbered as 3.3.8 and my installed QT release of 5.4.1 I am currently running on an OpenSuSE 13.2 64bit linux distro. /usr/include/qt5/QtGui/qopengl.h:242:17: error:

Re: [osg-users] [build] Conflict between current osg trunk 3.3.8 and QT version 5.4.1 on types GLint64 and GLuint64

2015-04-28 Thread Robert Osfield
Hi Curtis, Try changing the include order of Qt vs OSG. Robert. On 28 April 2015 at 16:28, Curtis Rubel cru...@compro.net wrote: Hi, I am currently getting the following compiler errors when attempting to compile against the current OSG trunk 04/28/2015, numbered as 3.3.8 and my installed

Re: [osg-users] [build] Conflict between current osg trunk 3.3.8 and QT version 5.4.1 on types GLint64 and GLuint64

2015-04-28 Thread Curtis Rubel
Hi Robert, I am not so sure I can change the include order or not. The QT project I am trying to compile pulls in the QT OpenGL stuff by itself as part of its build process, I am not explicitly including any of the QT include files in my source files directly. I will take a look and see.

Re: [osg-users] [build] Conflict between current osg trunk 3.3.8 and QT version 5.4.1 on types GLint64 and GLuint64

2015-04-28 Thread Curtis Rubel
Hi Robert, I do not see any place to close the post, or mark it as solved. Am I missing something in the forum? I do not want to leave it as is if there is something I need to do after you helped me get this solved... Thank you! Cheers, Curtis -- Read this topic online here:

Re: [osg-users] [build] Conflict between current osg trunk 3.3.8 and QT version 5.4.1 on types GLint64 and GLuint64

2015-04-28 Thread Curtis Rubel
Hi Robert, After much searching, I finally found the issue on my system. One of our 3rdparty products had its own copy of GL/gl.x files in it and this one was unfortunately being found first. Renaming this old include directory seems to have solved this issue. Thank you for pointing me