Hello list! After updating qt3 from the official opt repo (3.3.6 -> 3.3.7), all KDE apps give me the following error: symbol lookup error: /usr/lib/libqt-mt.so.3: undefined symbol: XF86VidModeQueryVersion KDE version is 3.5.4 I tried to update the packages from Alan Mizrahi's repo but they don't compile. The configure script says the following: --------------------------------------------------- checking for Qt... configure: error: Qt (>= Qt 3.3 and < 4.0) (library qt-mt) not found. Please check your installation! --------------------------------------------------- Do you have any suggestion? Thanks, kodiak
El Miércoles, 8 de Noviembre de 2006 7:02 PM, kodiak escribió:
Hello list!
After updating qt3 from the official opt repo (3.3.6 -> 3.3.7), all KDE apps give me the following error:
symbol lookup error: /usr/lib/libqt-mt.so.3: undefined symbol: XF86VidModeQueryVersion
Are you using x11 7.0? If so, please install xorg-libxxf86vm and retry the build. If not, please check that you have the files: /usr/X11R6/lib/libXxf86vm.so /usr/include/X11/extensions/xf86vmode.h If you DO have the files, try to build this program using: gcc -L/usr/X11R6/lib -lXxf86vm #include <X11/Xlib.h> #include <X11/Xatom.h> #include<X11/extensions/xf86vmode.h> int main(int a, char *b[]) { XF86VidModeGetPermissions(NULL, 0, NULL); } Then send me any error messages you get. Regards, -- Alan Mizrahi
Hi Alan! Alan Mizrahi wrote:
Are you using x11 7.0?
No, i'm still using 6.9.0-4
If not, please check that you have the files: /usr/X11R6/lib/libXxf86vm.so /usr/include/X11/extensions/xf86vmode.h
I've got them, they belong to the x11 package.
If you DO have the files, try to build this program using: gcc -L/usr/X11R6/lib -lXxf86vm
#include <X11/Xlib.h> #include <X11/Xatom.h> #include<X11/extensions/xf86vmode.h> int main(int a, char *b[]) { XF86VidModeGetPermissions(NULL, 0, NULL); }
Then send me any error messages you get.
It builds without error messages. Do you have any idea about the configure error? Qt3 installed fine.
On Thursday 09 November 2006 3:51 pm, kodiak wrote:
Are you using x11 7.0?
No, i'm still using 6.9.0-4
If not, please check that you have the files: /usr/X11R6/lib/libXxf86vm.so /usr/include/X11/extensions/xf86vmode.h
I've got them, they belong to the x11 package.
If you DO have the files, try to build this program using: gcc -L/usr/X11R6/lib -lXxf86vm
#include <X11/Xlib.h> #include <X11/Xatom.h> #include<X11/extensions/xf86vmode.h> int main(int a, char *b[]) { XF86VidModeGetPermissions(NULL, 0, NULL); }
Then send me any error messages you get.
It builds without error messages.
Do you have any idea about the configure error? Qt3 installed fine.
Please try to build the package that fails with: pkgmk -kw Then send me the generated config.log file in the workdir. -- Alan Mizrahi
participants (2)
-
Alan Mizrahi
-
kodiak