Since updating to X.Org 6.8.2 I see these warning/errors in the Xserver logfile: Skipping "/usr/X11R6/lib/modules/libfb.a:fbmmx.o": No symbols found Looking at the sources it seems that these symbols are only included when USE_MMX is set (obviously it was not set in my build). So can these warnings/errors be ignored and is this only a bug in Imakefile so these files should not have been included by libGLcore.a when USE_MMX is not set?
*** Bug 2685 has been marked as a duplicate of this bug. ***
*** Bug 2683 has been marked as a duplicate of this bug. ***
Already fixed in CVS Head by Egbert this way: --- programs/Xserver/hw/xfree86/loader/loader.c 29 Aug 2004 21:06:00 -0000 1.3 +++ programs/Xserver/hw/xfree86/loader/loader.c 11 Mar 2005 15:20:35 -0000 @@ -1146,7 +1146,9 @@ lseek(arfd, 1, SEEK_CUR); /* make it an even boundary */ if (tmp->private == (void *)-1L) { - ErrorF("Skipping \"%s\": No symbols found\n", tmp->name); + xf86Msg(X_INFO, "Skipping \"%s\": " + "object file contains no symbols\n", + tmp->name); continue; } else ret = tmp->private;
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.