XCB error during install (Linux)
-
Hi,
During configure I noticed that xbs_libs weren't installed so I re-ran with the -qt-xcb switch to use the xcb libs bundled with Qt.
No problems there...Then during my gmake I got numerous errors that all the XCB_ATOM_* definitions were undeclared. I.E.:
../../../../3rdparty/xcb/xcb-util-wm/icccm.c:90:38: error: 'XCB_ATOM_WM_NAME' undeclared (first use in this function)
../../../../3rdparty/xcb/xcb-util-wm/icccm.c:134:38: error: 'XCB_ATOM_WM_ICON_NAME' undeclared (first use in this function)
../../../../3rdparty/xcb/xcb-util-wm/icccm.c:204:27: error: 'XCB_ATOM_WINDOW' undeclared (first use in this function)
../../../../3rdparty/xcb/xcb-util-wm/icccm.c:303:57: error: 'XCB_ATOM_STRING' undeclared (first use in this function)etc...
Anything I'm missing?
Thanks!
-Adam -
HI and welcome to devnet,
Did you just re-ran configure or did you do it from a clean state ?
-
It's always better to call configure from a clean state.
To avoid the "cleaning part" you can use out of source builds so if something goes wrong you also have the option to just erase everything and start again.
-
Not necessarily, IIRC, it's
make confclean
but I always do out of source builds. It's way simpler especially when you build for several platforms.