Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Desktop Environments
  • Search

Modular X server bugs, annoyances and solutions (Part 2)

Problems with GUI applications? Questions about X, KDE, Gnome, Fluxbox, etc.? Come on in. NOTE: For multimedia, go up one forum
Post Reply
Advanced search
547 posts
  • Page 13 of 22
    • Jump to page:
  • Previous
  • 1
  • …
  • 11
  • 12
  • 13
  • 14
  • 15
  • …
  • 22
  • Next
Author
Message
mutlu_inek
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 141
Joined: Sat Nov 20, 2004 3:18 pm

  • Quote

Post by mutlu_inek » Tue May 02, 2006 12:30 pm

gcasillo wrote:I am running the new xorg now with KDE. Works great so far. However, I tried to clean things up a little recently, and when I did a pretend depclean, it appeared that xorg-x11 was going to be removed. I don't want this. Not sure what I have set, installed, or uninstalled for that to happen. I'd like to remove unneeded drivers since I finally got around to setting my video card and input devices in /etc/make.conf. Any ideas?
As far as I know --depclean is broken (at least regarding modular X) and noone seems to know of a way around this. You might want to write your own script or redirect --depclean's output to a file and copy&paste -C the things you don't want.
www.eff.org - www.fsf.org - www.againsttcpa.com - Video
Top
LynxofCP
n00b
n00b
Posts: 23
Joined: Fri Feb 11, 2005 2:53 pm
Location: Adelaide, Australia
Contact:
Contact LynxofCP
Website

  • Quote

Post by LynxofCP » Tue May 02, 2006 5:50 pm

zeek wrote:

Code: Select all

...
[ebuild  N    ]   virtual/xft-6.8  0 kB 
...
That's your problem right there Zeek.

I had the same problem a moment ago, turns out that wherever we got our list of packages to add to packages.keywords, they missed out virtual/xft from the list.

Just add "virtual/xft" to your package.keywords and it should stop trying to pull in any 6.x versions.
--Steven
Top
Jimmy Jazz
Guru
Guru
User avatar
Posts: 335
Joined: Mon Oct 04, 2004 5:29 pm
Location: Strasbourg

  • Quote

Post by Jimmy Jazz » Tue May 02, 2006 8:27 pm

richard77 wrote:
Hi all,
i'me emerging modular xorg 7 following the gentoo guide, but i've this error emerging xf86-input-moune-1.0.4:
You are using the xorg-server-1.0.99 from xorg-7.1rc1, that is binary INcompatible with drivers for 7.0.

I think the guide (which was written when xorg-7.0 was ~M) is outdated, because now xorg-7.0 is ~arch, and 7.1rc1 is hardmasked, so have a look at /etc/portage/package.[keyword,unmask]. I've removed (actually commented out) all references to xorg packages in package.unmask, and was able to compile xorg 7.0 successfully.
----------------------------------

My problem is that DIRECT RENDERING is not working (glxinfo -> direct rendering: No).
It worked well with 6.9 and previous compilation of xorg-7.0 (I've recompiled xorg-7.0 to add virtuals/xorg-7.0).

The strage thing is that in Xorg.0.log it says:

Code: Select all

(II) RADEON(0): Direct rendering enabled
The modules for AGP are loaded , and in Xorg.0.log there are no errors.
Any ideas?
Hello,

one of your libGL.la library file has certainly a size of zero. Use locate to find which one is bad.

You can replace it with the same file provided with mesa (/usr/lib/opengl/xorg-x11/lib/libGL.la) and modify the last line to point to ati's or nvidia's libGL.so file.

Code: Select all

libdir=/usr/lib/opengl/ati/lib
Jj
« La seule condition au triomphe du mal, c'est l'inaction des gens de bien » E.Burke

Code: Select all

+----+----+----+
|    |::::|    |
|    |::::|    |
+----+----+----+ 
motto: WeLCRO
WritE Less Code, Repeat Often
Top
fc01
n00b
n00b
Posts: 12
Joined: Fri Jun 03, 2005 7:29 pm

  • Quote

Post by fc01 » Wed May 03, 2006 2:40 pm

Jimmy Jazz wrote: Hello,

one of your libGL.la library file has certainly a size of zero. Use locate to find which one is bad.

You can replace it with the same file provided with mesa (/usr/lib/opengl/xorg-x11/lib/libGL.la) and modify the last line to point to ati's or nvidia's libGL.so file.

Code: Select all

libdir=/usr/lib/opengl/ati/lib
Jj
This also helped me to get kdebase 3.5.2 to compile - it failed on the first try because it didn't like the 0 byte libGL.la, but thanks to your instructions, I was able to fix that. Does anyone know what causes these 0 byte libGL.la files?
Top
Jimmy Jazz
Guru
Guru
User avatar
Posts: 335
Joined: Mon Oct 04, 2004 5:29 pm
Location: Strasbourg

  • Quote

Post by Jimmy Jazz » Wed May 03, 2006 4:17 pm

fc01 wrote: This also helped me to get kdebase 3.5.2 to compile - it failed on the first try because it didn't like the 0 byte libGL.la, but thanks to your instructions, I was able to fix that. Does anyone know what causes these 0 byte libGL.la files?
Sure, the ebuild file needs some improvements. The script doesn't handle as well as it should do with multilib amd64 flag.

Perhaps, you should try this (sorry i made the code on the fly and certainly contains some bugs):

Code: Select all

src_install-libs() {

    [..]

    # same as the xorg implementation
    dosym ../${X11_IMPLEM}/extensions ${ATI_ROOT}/extensions
    #Workaround
    if use opengl ; then
        if has_multilib_profile && [ $(get_abi_LIBDIR x86) = "lib32" ] ; then
            libdir=/usr/lib32
            einfo "Add libGL.la in ${libdir}"
            sed -e "/libdir=/s/xorg-x11/ati/" ${libdir}/opengl/${X11_IMPLEM}/lib/libGL.la \
                > $D/${libdir}/ati/${X11_IMPLEM}/lib/libGL.la
        fi

        libdir=/usr/lib
        einfo "Add libGL.la in ${libdir}"
        sed -e "/libdir=/s/xorg-x11/ati/" ${libdir}/opengl/${X11_IMPLEM}/lib/libGL.la \
                > $D/${libdir}/ati/${X11_IMPLEM}/lib/libGL.la
        dosym ../${X11_IMPLEM}/include ${ATI_ROOT}/include
    fi
    dosym ../${X11_IMPLEM}/include ${ATI_ROOT}/include

   [..]

That piece of "dirty" code is patent free so you are welcome to improve it at your convenience ;)

Jj
« La seule condition au triomphe du mal, c'est l'inaction des gens de bien » E.Burke

Code: Select all

+----+----+----+
|    |::::|    |
|    |::::|    |
+----+----+----+ 
motto: WeLCRO
WritE Less Code, Repeat Often
Top
GreenZuljin
n00b
n00b
Posts: 5
Joined: Mon May 01, 2006 1:05 pm

  • Quote

Post by GreenZuljin » Wed May 03, 2006 4:27 pm

Hi.

I dunno if this is stupid or not.. :) .. but I cant find my xorg.conf file :( it's not in /etc/X11/

where the hell is it? :)

pls help as soon as possible

Best Regards,
Zuljin
Top
Jimmy Jazz
Guru
Guru
User avatar
Posts: 335
Joined: Mon Oct 04, 2004 5:29 pm
Location: Strasbourg

  • Quote

Post by Jimmy Jazz » Wed May 03, 2006 6:28 pm

GreenZuljin wrote:Hi.

I dunno if this is stupid or not.. :) .. but I cant find my xorg.conf file :( it's not in /etc/X11/

where the hell is it? :)

pls help as soon as possible

Best Regards,
Zuljin
Hello,

use equery (gentoolkit)

Code: Select all


equery f xorg-x11

will give you the files contained in xorg-x11 package.


Otherwise you can also generate a new xorg.conf file with xorgconfig

Jj
« La seule condition au triomphe du mal, c'est l'inaction des gens de bien » E.Burke

Code: Select all

+----+----+----+
|    |::::|    |
|    |::::|    |
+----+----+----+ 
motto: WeLCRO
WritE Less Code, Repeat Often
Top
GreenZuljin
n00b
n00b
Posts: 5
Joined: Mon May 01, 2006 1:05 pm

  • Quote

Post by GreenZuljin » Wed May 03, 2006 7:38 pm

yep. :) the xorgconfig works.
Thanks!
Top
Sade
Guru
Guru
User avatar
Posts: 406
Joined: Tue Mar 22, 2005 10:35 am
Location: Netherlands - Eindhoven

  • Quote

Post by Sade » Thu May 04, 2006 1:50 pm

has anybody seen these types of errors while rebuilding parts of the modular xorg:

Code: Select all

Requested 'xorg-server >= 1.0.99.901' but version of xorg-server is 1.0.99.2
i got this error on several different builds (from the x11-drivers section) in an emerge -e world. (skipped them atm)
| 1.6Ghz atom N270 | adopt an unanswerd post | a nice way to post a config file |
Top
paul555
l33t
l33t
User avatar
Posts: 612
Joined: Mon Nov 22, 2004 11:35 pm
Location: Greece
Contact:
Contact paul555
Website

  • Quote

Post by paul555 » Thu May 04, 2006 7:30 pm

Hi all i recently migrated to modular X and i have two major problems.First when i try to launch xdtv i get this error :

Code: Select all

Warning: Cannot convert string "-*-ledfixed-medium-r-*--39-*-*-*-c-*-*-*" to type FontStruct
Warning: Missing charsets in String to FontSet conversion
Warning: Cannot convert string "-*-ledfixed-medium-r-semicondensed--39-*-*-*-c-*-*-*,  -*-bitstream vera sans-medium-r-normal--39-*-*-*-*-*-*-*,            -*-luxi sans-medium-r-normal--39-*-*-*-*-*-*-*,             -*-*-r-normal--39-*-*-*-*-*-*-*" to type FontSet
Warning: Missing charsets in String to FontSet conversion
Warning: Unable to load any usable fontset
Warning: Missing charsets in String to FontSet conversion
Warning: Unable to load any usable fontset
Error: Aborting: no fontset found
Second the fonts in codeblocks in firefox in gentooforums now are small and ugly nomatter what font i select from firefox.Any ideas?
"LINUX, MS-DOS, Windows : known as the Good, the Bad and the Ugly." :)
http://www.gnome.gr
Top
fourteen20
n00b
n00b
User avatar
Posts: 36
Joined: Fri Aug 15, 2003 8:12 pm
Location: Cornwall,uk

  • Quote

Post by fourteen20 » Thu May 04, 2006 11:37 pm

LynxofCP wrote:
zeek wrote:

Code: Select all

...
[ebuild  N    ]   virtual/xft-6.8  0 kB 
...
That's your problem right there Zeek.

I had the same problem a moment ago, turns out that wherever we got our list of packages to add to packages.keywords, they missed out virtual/xft from the list.

Just add "virtual/xft" to your package.keywords and it should stop trying to pull in any 6.x versions.

Thank god thought id just borked my system :P
I Wanna be a Guru
Top
Xake
Guru
Guru
User avatar
Posts: 588
Joined: Wed Feb 11, 2004 10:14 am
Location: Göteborg, the rainy part of scandinavia

  • Quote

Post by Xake » Wed May 10, 2006 7:42 am

Sade wrote:has anybody seen these types of errors while rebuilding parts of the modular xorg:

Code: Select all

Requested 'xorg-server >= 1.0.99.901' but version of xorg-server is 1.0.99.2
My resolutions to your problem would be to open your /etc/portage/package.unmask in a editor and remove every line starting with 'x11-' becouse if you do not know why you get this error then you should only install the 7.0 (the modular currently in ~arch) and not the 7.1RC.

The error itself is becouse you are using a beta of xorg-server (which is removed from the portage tree in favor for the RC) and tries to install drivers made to work with the RC. All packages associated with the beta/RC is masked and should not be unmasked if you do not know what you are doing.
Top
vitamin
n00b
n00b
Posts: 37
Joined: Fri May 05, 2006 9:43 am

  • Quote

Post by vitamin » Wed May 17, 2006 12:07 pm

I'm sorry for my stupid question but I'm a kind of new to Gentoo :oops: I'm running on unstable system (2006.0 with '~x86' set in /etc/make.conf) and I'd like to know if doing 'emerge xorg-x11' will install the latest modular X for me or it ain't that easy? Btw, currently I've got no X installed - it's pure and fresh console-based system ;)
Top
Kragen
Tux's lil' helper
Tux's lil' helper
Posts: 77
Joined: Tue Mar 28, 2006 7:30 pm

  • Quote

Post by Kragen » Wed May 17, 2006 12:42 pm

as far as I can tell... yes (but I'm no expert either :P)

There is only one real way to find out - do an emerge -p xorg-x11 and see what it wants to install. If it installs the modular version then you will get a whole load of dependencies and the last one will say xorg-x11-7.something
Top
__g_blade
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 101
Joined: Fri Jan 13, 2006 9:59 pm
Location: paderborn, germany

  • Quote

Post by __g_blade » Thu May 18, 2006 8:31 am

ABI fglrx problem
i've seen other people (in/outside this thread) having same problems
module mismatch version doesn't match
downgrading makes the same plus kernel panic
error is on the bottom of the post
i have

Code: Select all

Conrad-LiveCD fonts # eix xorg-server
* x11-base/xorg-server
     Available versions:  1.0.2-r4 1.0.99.903
     Installed:           1.0.99.903
     Homepage:            http://xorg.freedesktop.org/
     Description:         X.Org X servers


Found 1 matches
Conrad-LiveCD fonts # eix xorg-x11
* x11-base/xorg-x11
     Available versions:  6.8.2-r7 [M]6.9.0-r1 7.0-r1 7.1_rc2
     Installed:           7.1_rc2
     Homepage:            http://xorg.freedesktop.org
     Description:         An X11 implementation maintained by the X.Org Foundation (meta package)


Found 1 matches
Conrad-LiveCD fonts # eix input-keyboard
* x11-drivers/xf86-input-keyboard
     Available versions:  1.0.1.3 1.1.0
     Installed:           1.1.0
     Homepage:            http://xorg.freedesktop.org/
     Description:         X.Org driver for keyboard input devices


Found 1 matches
Conrad-LiveCD fonts # eix input-mouse
* x11-drivers/xf86-input-mouse
     Available versions:  1.0.4 1.1.0
     Installed:           1.1.0
     Homepage:            http://xorg.freedesktop.org/
     Description:         X.Org driver for mouse input devices


Found 1 matches
and emerge info (livecd has 2.6.17-rc2, i have the newest no-source on /)

Code: Select all

Portage 2.1_rc1-r2 (default-linux/x86/2006.0, gcc-4.1.1-pre20060513, glibc-2.4.90.20060511-r0, 2.6.17-rc2 i686)
=================================================================
System uname: 2.6.17-rc2 i686 AMD Sempron(tm) 2200+
Gentoo Base System version 1.12.0_pre19
dev-lang/python:     2.4.3-r1
dev-python/pycrypto: 2.0.1-r5
dev-util/ccache:     [Not Present]
dev-util/confcache:  [Not Present]
sys-apps/sandbox:    1.2.17
sys-devel/autoconf:  2.13, 2.59-r7
sys-devel/automake:  1.4_p6, 1.5, 1.6.3, 1.7.9-r1, 1.8.5-r3, 1.9.6-r2
sys-devel/binutils:  2.16.92
sys-devel/libtool:   1.5.22
virtual/os-headers:  2.6.16
ACCEPT_KEYWORDS="x86 ~x86"
AUTOCLEAN="yes"
CBUILD="i686-pc-linux-gnu"
CFLAGS="-O2 -march=athlon-xp -fomit-frame-pointer -pipe -ftracer -fweb -frename-registers"
CHOST="i686-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/kde/2/share/config /usr/kde/3.5/env /usr/kde/3.5/share/config /usr/kde/3.5/shutdown /usr/kde/3/share/config /usr/share/X11/xkb /usr/share/config /var/qmail/control"
CONFIG_PROTECT_MASK="/etc/eselect/compiler /etc/gconf /etc/revdep-rebuild /etc/splash /etc/terminfo /etc/env.d"
CXXFLAGS="-O2 -march=athlon-xp -fomit-frame-pointer -pipe -ftracer -fweb -frename-registers -fvisibility-inlines-hidden"
DISTDIR="/usr/portage/distfiles"
FEATURES="autoconfig distlocks metadata-transfer sandbox sfperms strict"
GENTOO_MIRRORS="http://distfiles.gentoo.org http://distro.ibiblio.org/pub/linux/distributions/gentoo"
LDFLAGS="-Wl,-O1 -Wl,--sort-common"
LINGUAS="en fr de es it tr"
PKGDIR="/usr/portage/packages"
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --compress --force --whole-file --delete --delete-after --stats --timeout=180 --exclude='/distfiles' --exclude='/local' --exclude='/packages'"
PORTAGE_TMPDIR="/var/tmp"
PORTDIR="/usr/portage"
PORTDIR_OVERLAY="/usr/local/portage"
SYNC="rsync://rsync.gentoo.org/gentoo-portage"
USE="x86 3dnow 3dnowext X aim alsa apache2 apic apm arts avi berkdb bidi bitmap-fonts cli cmov crypt cups cx8 de dri eds emboss
encode esd foomaticdb fortran fpu fxsr gdbm gif glibc-omitfp gnome gpm gstreamer gtk gtk2 icq imlib ipv6 irc isdnlog jabber javascript jpeg kde libg++ libwww lj mad mca mce mikmod mmx mmxext motif mp mp3 mpeg msn msr mtrr ncurses nls nptl nptlonly ogg opengl pae pam pat pcre pdflib perl pge png pppd pse pse36 python qt quicktime readline reflection rss sdl sep session spell spl sse ssl syscall tcpd truetype truetype-fonts ts tsc type1-fonts udev up vme vorbis xml xmms xorg xv yahoo zlib elibc_glibc kernel_linux linguas_en linguas_fr linguas_de linguas_es linguas_it linguas_tr userland_GNU"
Unset:  ASFLAGS, CTARGET, EMERGE_DEFAULT_OPTS, INSTALL_MASK, LANG, LC_ALL, MAKEOPTS, PORTAGE_RSYNC_EXTRA_OPTS
startx output

Code: Select all

xauth:  creating new authority file //.serverauth.19202


This is a pre-release version of the X server from The X.Org Foundation.
It is not supported in any way.
Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
Select the "xorg" product for bugs you find in this release.
Before reporting bugs in pre-release versions please check the
latest version in the X.Org Foundation CVS repository.
See http://wiki.x.org/wiki/CvsPage for CVS access instructions.

X Window System Version 7.0.99.903 (7.1.0 RC 3)
Release Date: 12 May 2006
X Protocol Version 11, Revision 0, Release 7.0.99.903
Build Operating System: Linux 2.6.17-rc2 i686
Current Operating System: Linux Conrad-LiveCD 2.6.17-rc2 #1 SMP PREEMPT Wed Apr 19 14:00:05 Local time zone must be set-- i686
Build Date: 17 May 2006
        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Thu May 18 10:31:03 2006
(==) Using config file: "/etc/X11/xorg.conf"
(EE) module ABI major version (0) doesn't match the server's version (1)
(EE) Failed to load module "fglrx" (module requirement mismatch, 0)
(EE) No drivers available.

Fatal server error:
no screens found
XIO:  fatal IO error 104 (Connection reset by peer) on X server ":0.0"
      after 0 requests (0 known processed) with 0 events remaining.
what to do
--eof--
Top
Serotonin0
n00b
n00b
User avatar
Posts: 16
Joined: Sun Apr 23, 2006 4:34 pm
Location: Ditchling, E. Sussex, UK
Contact:
Contact Serotonin0
Website

keysymdef.h

  • Quote

Post by Serotonin0 » Thu May 18, 2006 9:04 am

libXft , cairo etc depend on keysymdef.h think, what should be emerged?

checking keysymdef.h... configure: error: Cannot find keysymdef.h

!!! Please attach the following file when filing a report to bugs.gentoo.org:
!!! /var/tmp/portage/libX11-1.0.1/work/libX11-1.0.1/config.log

!!! ERROR: x11-libs/libX11-1.0.1 failed.
Call stack:
ebuild.sh, line 1527: Called dyn_compile
ebuild.sh, line 931: Called src_compile
ebuild.sh, line 1240: Called x-modular_src_compile
x-modular.eclass, line 316: Called x-modular_src_configure
x-modular.eclass, line 303: Called econf '--prefix=/usr' '--datadir=/usr/share' '--enable-ipv6'
ebuild.sh, line 533: Called die

!!! econf failed
!!! If you need support, post the topmost build error, and the call stack if relevant.

server ~ # kuroo
kuroo: error while loading shared libraries: libXcursor.so.1: cannot open shared object file: No such file or directory
S x

Founder, President & CEO

euphoricore ecstasy
Top
tbender
n00b
n00b
Posts: 11
Joined: Wed Mar 10, 2004 6:24 pm

[solved]can't emerge dependency mesa-progs-6.4.2

  • Quote

Post by tbender » Thu May 18, 2006 10:09 am

EDIT: Problem solved, by remering mesa and its dependencies. Thank you.

Hi.

I want to try xorg-x11-7.0-r1.

Code: Select all


emerge -p xorg-x11

These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild  N    ] x11-apps/mesa-progs-6.4.2  
[ebuild  N    ] x11-drivers/xf86-video-nv-1.0.2.0  USE="-debug" 
[ebuild  N    ] x11-drivers/xf86-video-v4l-0.0.1.5  USE="-debug" 
[ebuild  N    ] x11-libs/libXv-1.0.1  USE="-debug" 
[ebuild  N    ] x11-base/xorg-x11-7.0-r1  USE="-3dfx" INPUT_DEVICES="evdev keyboard mouse -acecad -aiptek -calcomp -citron -digitaledge -dmc -dynapro -elo2300 -elographics -fpit -hyperpen -jamstudio -joystick -magellan -magictouch -microtouch -mutouch -palmax -penmount -spaceorb -summa -synaptics -tek4957 -ur98 -vmmouse -void -wacom" VIDEO_CARDS="nv nvidia v4l -apm -ark -chips -cirrus -cyrix -dummy -fbdev -fglrx -glint -i128 -i740 -i810 -imstt -mach64 -mga -neomagic -nsc -r128 -radeon -rendition -s3 -s3virge -savage -siliconmotion -sis -sisusb -tdfx -tga -trident -tseng -vesa -vga -via -vmware -voodoo" 

But it failed emerging mesa-progs:

Code: Select all


Calculating dependencies... done!
>>> Emerging (1 of 5) x11-apps/mesa-progs-6.4.2 to /
>>> checking ebuild checksums ;-)
>>> checking auxfile checksums ;-)
>>> checking miscfile checksums ;-)
>>> checking MesaLib-6.4.2.tar.bz2 ;-)
>>> checking MesaDemos-6.4.2.tar.bz2 ;-)
>>> Unpacking source...
>>> Unpacking MesaLib-6.4.2.tar.bz2 to /var/tmp/portage/mesa-progs-6.4.2/work
>>> Unpacking MesaDemos-6.4.2.tar.bz2 to /var/tmp/portage/mesa-progs-6.4.2/work
>>> Source unpacked.
>>> Compiling source in /var/tmp/portage/mesa-progs-6.4.2/work/Mesa-6.4.2 ...
i686-pc-linux-gnu-gcc -I../../include -Wall -O3 -pipe -march=athlon-xp -fomit-frame-pointer  -m32 -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -D_GNU_SOURCE -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DGLX_DIRECT_RENDERING -DHAVE_ALIAS -DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM -std=c99 -ffast-math  glxinfo.c -L../../lib -lglut -lGLU -lGL -lm -o glxinfo
/usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.6/../../../../i686-pc-linux-gnu/bin/ld: cannot find -lGLU
collect2: ld returned 1 exit status
make: *** [glxinfo] Error 1

!!! ERROR: x11-apps/mesa-progs-6.4.2 failed.
Call stack:
  ebuild.sh, line 1527:   Called dyn_compile
  ebuild.sh, line 931:   Called src_compile
  mesa-progs-6.4.2.ebuild, line 68:   Called die

!!! glxinfo failed
!!! If you need support, post the topmost build error, and the call stack if relevant.

Does anyone have similar problems?
Thanks in advance,
Tobias
Last edited by tbender on Thu May 18, 2006 11:17 pm, edited 1 time in total.
Top
Serotonin0
n00b
n00b
User avatar
Posts: 16
Joined: Sun Apr 23, 2006 4:34 pm
Location: Ditchling, E. Sussex, UK
Contact:
Contact Serotonin0
Website

Re: can't emerge dependency mesa-progs-6.4.2

  • Quote

Post by Serotonin0 » Thu May 18, 2006 4:16 pm

tbender wrote:Hi.

I want to try xorg-x11-7.0-r1.

Code: Select all


emerge -p xorg-x11

These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild  N    ] x11-apps/mesa-progs-6.4.2  
[ebuild  N    ] x11-drivers/xf86-video-nv-1.0.2.0  USE="-debug" 
[ebuild  N    ] x11-drivers/xf86-video-v4l-0.0.1.5  USE="-debug" 
[ebuild  N    ] x11-libs/libXv-1.0.1  USE="-debug" 
[ebuild  N    ] x11-base/xorg-x11-7.0-r1  USE="-3dfx" INPUT_DEVICES="evdev keyboard mouse -acecad -aiptek -calcomp -citron -digitaledge -dmc -dynapro -elo2300 -elographics -fpit -hyperpen -jamstudio -joystick -magellan -magictouch -microtouch -mutouch -palmax -penmount -spaceorb -summa -synaptics -tek4957 -ur98 -vmmouse -void -wacom" VIDEO_CARDS="nv nvidia v4l -apm -ark -chips -cirrus -cyrix -dummy -fbdev -fglrx -glint -i128 -i740 -i810 -imstt -mach64 -mga -neomagic -nsc -r128 -radeon -rendition -s3 -s3virge -savage -siliconmotion -sis -sisusb -tdfx -tga -trident -tseng -vesa -vga -via -vmware -voodoo" 

But it failed emerging mesa-progs:

Code: Select all


Calculating dependencies... done!
>>> Emerging (1 of 5) x11-apps/mesa-progs-6.4.2 to /
>>> checking ebuild checksums ;-)
>>> checking auxfile checksums ;-)
>>> checking miscfile checksums ;-)
>>> checking MesaLib-6.4.2.tar.bz2 ;-)
>>> checking MesaDemos-6.4.2.tar.bz2 ;-)
>>> Unpacking source...
>>> Unpacking MesaLib-6.4.2.tar.bz2 to /var/tmp/portage/mesa-progs-6.4.2/work
>>> Unpacking MesaDemos-6.4.2.tar.bz2 to /var/tmp/portage/mesa-progs-6.4.2/work
>>> Source unpacked.
>>> Compiling source in /var/tmp/portage/mesa-progs-6.4.2/work/Mesa-6.4.2 ...
i686-pc-linux-gnu-gcc -I../../include -Wall -O3 -pipe -march=athlon-xp -fomit-frame-pointer  -m32 -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -D_GNU_SOURCE -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DGLX_DIRECT_RENDERING -DHAVE_ALIAS -DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM -std=c99 -ffast-math  glxinfo.c -L../../lib -lglut -lGLU -lGL -lm -o glxinfo
/usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.6/../../../../i686-pc-linux-gnu/bin/ld: cannot find -lGLU
collect2: ld returned 1 exit status
make: *** [glxinfo] Error 1

!!! ERROR: x11-apps/mesa-progs-6.4.2 failed.
Call stack:
  ebuild.sh, line 1527:   Called dyn_compile
  ebuild.sh, line 931:   Called src_compile
  mesa-progs-6.4.2.ebuild, line 68:   Called die

!!! glxinfo failed
!!! If you need support, post the topmost build error, and the call stack if relevant.

Does anyone have similar problems?
Thanks in advance,
Tobias
uninstalled/reinstalled related. next xextproto & x11-proto/scrnsaverproto documented here http://forums.gentoo.org/viewtopic-p-33 ... ml#3322862 and --pretend dropped dependencies, now above error starting to and will probably cause problems restarting X
S x

Founder, President & CEO

euphoricore ecstasy
Top
ecatmur
Advocate
Advocate
User avatar
Posts: 3595
Joined: Mon Oct 20, 2003 8:07 pm
Location: Edinburgh
Contact:
Contact ecatmur
Website

  • Quote

Post by ecatmur » Thu May 18, 2006 4:32 pm

That error output doesn't look to have anything to do with scrnsaverproto; more likely remerging media-libs/mesa would fix it.
No more cruft
dep: Revdeps that work
Using command-line ACCEPT_KEYWORDS?
Top
planet-admin
Apprentice
Apprentice
Posts: 213
Joined: Sat Mar 27, 2004 4:23 am
Location: Boise, ID
Contact:
Contact planet-admin
Website

  • Quote

Post by planet-admin » Thu May 18, 2006 9:26 pm

For those of you having trouble with random thousands of errror messages when building libX111 (xkbbind.c xrm.c, etc)

with root privleges, go to /usr/portage/x11-proto

create a bash script:

Code: Select all

for i in *
do
emerge $i -f
emerge $i
done
Fetch first in case there is corruption.

Try to re-emerge libX11, it should work. This seems to happen when you go from 7.0 to 6.8(or 9) back to 7.

Michael
Michael S. Moody
Sr. Systems Engineer
Global Systems Consulting
Web: http://www.GlobalSystemsConsulting.com
Top
Ibn al-Hazardous
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 133
Joined: Thu Sep 02, 2004 9:24 am
Location: Somewhere deep in the desert.
Contact:
Contact Ibn al-Hazardous
Website

  • Quote

Post by Ibn al-Hazardous » Fri May 19, 2006 2:16 pm

__g_blade wrote:ABI fglrx problem
i've seen other people (in/outside this thread) having same problems
module mismatch version doesn't match
downgrading makes the same plus kernel panic
error is on the bottom of the post
The solution has been posted tons of times. I last saw it posted by xake 2 or 3 posts above yours. fglrx is a binary module, and the ABI is changed in 7.1 - which is what you have installed. Anything with a version number of 7.1 or 1.1 in it is unstable and masked. Versions 7.0 and 1.0.x are merely unstable - so if you keep the packages in package.keywords but remove them from package.unmask, and run emerge -auvDN world, you'll get the downgrade you need to make it work.

This is getting a bit tiresome. Could someone make a FAQ-post for the x-org upgrade and make it sticky?
/Ibn
Top
Serotonin0
n00b
n00b
User avatar
Posts: 16
Joined: Sun Apr 23, 2006 4:34 pm
Location: Ditchling, E. Sussex, UK
Contact:
Contact Serotonin0
Website

  • Quote

Post by Serotonin0 » Fri May 19, 2006 3:42 pm

script worked well, back to hw error before last downgrade.

something like this:

ver-1.099.903/hw/xfree86/loader
make [3]: *** [all recursive] Error 1
make [3]: Leaving directory 'var/temp/portage/xorg-server-1.0.99.903/work/xorg-server-1.0.99.903/hw/cfree86
make [2]: [all] Error 2
make [2]: Leaving directory 'var/temp/portage/xorg-server-1.0.99.903/work/xorg-server-1.0.99.903/hw

!!! ERROR: x11-base/xorg-server-1.0.99.903 failed/
Call stack
ebuild.sh, line 1527:
called dyn_compile
ebuild.sh, line 931:
src_dyn_compile
ebuild.sh, line 1240:
x-modular_src_compile
x-modular.eclass, line 317:
x-modular.eclass, line 312:
called die

what's needed?
S x

Founder, President & CEO

euphoricore ecstasy
Top
mutlu_inek
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 141
Joined: Sat Nov 20, 2004 3:18 pm

  • Quote

Post by mutlu_inek » Sat May 20, 2006 12:19 am

Serotonin0, do you really want the version of xorg you are trying to emerge? Please read what Ibn al-Hazardous has just written above. The current unstable but unmasked xorg-server is version 1.0.2-r4 (at least it was yesterday;). The versions 1.0.99(...) belong to the 1.1 server with the API change. So if you want a nice running system with the binary drivers, you can just ignore the errors and remove xorg-server from package.unmask.
www.eff.org - www.fsf.org - www.againsttcpa.com - Video
Top
discomfitor
l33t
l33t
User avatar
Posts: 927
Joined: Fri Feb 21, 2003 11:51 pm
Location: None

  • Quote

Post by discomfitor » Sat May 20, 2006 7:46 am

Just switched over from 6.8.2 tonight, and it was an interesting experience. The only issues I had were the following:

1) Lack of direct rendering. For some reason, I had to eselect my nvidia interface several times before it "took". All better after that though.

2) Mouse buttons on my Logitech Cordless Mouseman screwed up (using normal mouse drivers, not evdev). Fixed with a quick `xmodmap -e "pointer = 1 2 3 9 4 5 7 6 8"`.


Been running it a couple hours now and doing some stress tests with gaming and whatnot, but so far it seems just as good as 6.8 except for the composite improvements with the nvidia driver and opengl. Big thanks to the Gentoo devs for making this as easy as it was.
There is no substitute for experience.
Imperfection indicates a lack of effort.
Top
chrismortimore
l33t
l33t
User avatar
Posts: 721
Joined: Sat Dec 03, 2005 1:14 am
Location: Edinburgh, UK

  • Quote

Post by chrismortimore » Sat May 20, 2006 7:59 pm

Out of curiosity, how is xorg7 coming along in terms of getting moved into x86? My xorg7 (running under VMware that is) is running with no problems at all, other than VMware being horribly slow. Is it because xorg7 still isn't ready, or because of it's dependancies?
Desktop: AMD Athlon64 3800+ Venice Core, 2GB PC3200, 2x160GB 7200rpm Maxtor DiamondMax 10, 2x320GB WD 7200rpm Caviar RE, Nvidia 6600GT 256MB
Laptop: Intel Pentium M, 512MB PC2700, 60GB 5400rpm IBM TravelStar, Nvidia 5200Go 64MB
Top
Post Reply

547 posts
  • Page 13 of 22
    • Jump to page:
  • Previous
  • 1
  • …
  • 11
  • 12
  • 13
  • 14
  • 15
  • …
  • 22
  • Next

Return to “Desktop Environments”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy

 

 

magic