Hello
While trying to build, I keep coming accross header files from TDE that have something like this:
//#ifdef USE_QT4
//#undef QT_NO_TRANSLATION //#include <Qt/qtranslator.h>
//#endif // USE_QT4
Now this isn't the only one just an example. The only way TDevelop would let me continue was if I commented these out and it would build just fine. Does TDE use QT4 at all?
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA224
Hello
While trying to build, I keep coming accross header files from TDE that have something like this:
//#ifdef USE_QT4
//#undef QT_NO_TRANSLATION //#include <Qt/qtranslator.h>
//#endif // USE_QT4
Now this isn't the only one just an example. The only way TDevelop would let me continue was if I commented these out and it would build just fine. Does TDE use QT4 at all?
No, it does not. There were plans at one time but Qt removed too much functionality for that to be feasible.
Still, if USE_QT4 is being set then something is wrong in your build environment. Can you post the full ./configure log?
Thanks!
Tim
Hello Tim
On Wednesday 22 July 2015 05:33:37 pm Timothy Pearson wrote:
No, it does not. There were plans at one time but Qt removed too much functionality for that to be feasible.
Still, if USE_QT4 is being set then something is wrong in your build environment. Can you post the full ./configure log?
I know there is something wrong with my build environment because of all the error's I'm getting. Hence why the other thread asking for help in setting up a correct build environment to begin to port applications.
As for the configure log, there isn't one in the directory. The ./configure script for this program only runs qmake. The full shell script is:
#!/bin/sh qmake kjewishdatefinder.pro -o Makefile
Can I have a build environment set up to use both tqt3 and qt4? I can't compile qt4 apps now because it's trying to use tqt3 headers... sigh...
- --- Bro Michael Henry Associate Pastor Monticello Christian Church
monticellochristian.webs.com www.facebook.com/MonticelloChristianChurch
Office: 870-367-2561
1 Timothy 1:15 "This is a faithful saying worthy of all acception, that Messiah Yeshua came into the world to save sinners; of whom I am chief."
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA224
Hello Tim
On Wednesday 22 July 2015 05:33:37 pm Timothy Pearson wrote:
No, it does not. There were plans at one time but Qt removed too much functionality for that to be feasible.
Still, if USE_QT4 is being set then something is wrong in your build environment. Can you post the full ./configure log?
I know there is something wrong with my build environment because of all the error's I'm getting. Hence why the other thread asking for help in setting up a correct build environment to begin to port applications.
As for the configure log, there isn't one in the directory. The ./configure script for this program only runs qmake. The full shell script is:
#!/bin/sh qmake kjewishdatefinder.pro -o Makefile
Can I have a build environment set up to use both tqt3 and qt4? I can't compile qt4 apps now because it's trying to use tqt3 headers... sigh...
Yes, you can have tqt3 and qt4 build environments set up simultaneously. You will likely need to specify which version of qmake to use; try modifying that script to run qmake-qt3 instead of qmake.
Tim