00:19:55 .merges 00:19:56 -xmr-pr- 3165 3487 3491 3502 3503 3504 3505 3544 3559 3562 3565 3580 3582 3588 3590 3598 3599 3601 00:19:59 w0w 10:14:42 hello 13:30:10 hello 13:31:08 any suggestion on what is happening here http://paste.debian.net/1203145/ 15:51:49 that's a lot of merges 22:12:42 hello 22:13:27 any help on whats going on here http://paste.debian.net/1203145/ 22:22:30 I assume the include change did not help ? 22:23:03 Oh, actually, you might not be the same person. So: try, near the top: #include 22:23:17 Or QPrinter. Or similar, search the include files. 22:24:44 printout.cpp here 22:26:10 #include 22:26:13 there is 22:26:25 https://github.com/qt/qttools/blob/eae909e9046c1d4673c92c5a44f974c4a0911bef/src/linguist/linguist/printout.cpp line 31 22:27:23 Oh, that's in Qt actually. I missed that. 22:28:26 It might be picking some includes in your system tree rather than in the Qt tree. Not sure how to fix though (bar temp moving the OS Qt headres away). 22:28:33 * moneromooo guessing though 22:29:31 Weird though, I would not expect QPrinter to only forward define. 22:29:57 is docker 22:30:57 i must check for printout.cpp elsewhere not in my folder 22:31:02 in /usr for example 22:31:20 or for other file? 22:31:29 sorry other headers 22:31:53 I'd check the contents of QPrinter, see if it acrualy defines the QPrinter class. 22:32:18 I expect it to, but it looks like it's not. 22:32:54 Can you paste printout.h actually ? 22:33:29 https://github.com/qt/qttools/blob/eae909e9046c1d4673c92c5a44f974c4a0911bef/src/linguist/linguist/printout.h 22:33:46 Sorry, I could have worjed that one out :D 22:34:14 i didnt understand sorry 22:35:00 So it's finding the forward declaration on 41. Can you link QPrinter ? 22:36:21 how? 22:36:43 Well, find wherever it is in the tree, and paste the likn to it like you did above. 22:40:06 this one https://github.com/qt/qtbase/blob/dev/src/printsupport/kernel/qprinter.h 22:41:49 Assuming that gets included by QPrinter, it looks ok. Try adding "#warning kjshfkjsf" on that file, line 62. See it it gets printed when building. 22:42:09 It should. If not, then possibly some ifdef makarkey going on. 22:44:21 will need lot of time to insert and wait for that warning 22:44:37 better to insert include and hope that will work 22:45:29 i'll insert on printout.h ? 22:57:39 i hope that im not misunderstood 22:57:51 but i dont know what exactly to add and where 22:58:20 i just that some code with #include will work 23:00:39 I don't know either :) I assume the source is supposed to build, and there's some env issue somewhere. 23:02:44 if i do that wanring that u said we'll understand what to do next step? 23:02:50 i'll do it right now 23:04:10 It'll show whether the compiler sees that class. 23:04:32 If it doesn't, that's the problem. If it does, then... it might be the wrong version somehow. 23:23:01 sed -i '62a #warning kjshfkjsf' qtbase/src/printsupport/kernel/qprinter.h 23:23:07 is enough? 23:23:45 or to be sure sed -n '62p' qtbase/src/printsupport/kernel/qprinter.h 23:24:37 warning ddint appear anywhere 23:24:56 compile stops with same error 23:32:14 did i add right http://paste.debian.net/1203197/ 23:32:56 most probable compiler dont c that class 23:33:02 what to do 23:55:22 moneromooo what do u think