On Sat, 23 Jun 2018, Gary Hodder wrote:

I'm having no luck compiling qt3 on the latest debian.

Here are my notes on compiling QT3 under Debian 9:

Fix QT3 C errors

You need to add the following line to two separate files

#include <stddef.h>

Inside /usr/local/qt3/include/qvaluelist.h on line 52 you'll see this

#include <list>
#endif

Underneath this add the stddef line and it will look like this
#include <list>
#endif
#include <stddef.h>

Inside /usr/local/qt3/include/qmap.h on line 54 you have this
#include <map>
#endif

Add the same stddef line underneath the end if like you did before.
Compiling QT3
Now you can compile QT3 without any issues


Rob

--
Я там, где ребята толковые,
Я там, где плакаты "Вперёд",
Где песни рабочие новые
Страна трудовая поёт.
_______________________________________________
Rivendell-dev mailing list
[email protected]
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev

Reply via email to