| |
| |
| |
|
Page: 1 2 3 4
<akem> i m trying to build xgl and i have a pblm, in xglcmap.c it search 2 times for 'types' in _glitz_drawable_format_t but there s nothing like that in this struct <minra> Version: 6 <minra> Version: 6.8.2.dfsg.1-9 <gravity> minra: Is xlibs-mesa-dri the same version? <gravity> minra: And xlibmesa-gle? <gravity> ****. xlibmesa-dri and xlibmesa-gl <akem> ho _glitz_format_t <minra> apt-cache show xlibmesa-dri Version: 6.8.2.dfsg.1-9 <minra> W: Unable to locate package xlibmesa-gle <minra> ajhh -e <minra> Version: 6.8.2.dfsg.1-9 <minra> i guess i'll wait for a 6.9 and try again <gravity> Hrm <gravity> Well, 6.9RC0 is in experimental <gravity> And RC1 will be there shortly <minra> great :) <gravity> That error happens when you try to run any GL app? <minra> yes <gravity> Hrm... well that doesn't happen for me but I'm running the experimental packages <minra> this may be the result of having compiled cvs <gravity> Wait... what? <gravity> Compiled CVS? <gravity> Ugh <gravity> Yeah... Ok <gravity> So at least it's not my fault <minra> i was following a howto to put it in /opt <minra> :) <minra> in parallel <gravity> You're probably loading the CVS libGL <minra> can i force reinstall of the package? <gravity> Or are you trying to execute the cvs X server and it won't run GL apps? <minra> no, i would be happy with the 6.8 package <akem> doesnt solve my pblm, anyone using xgl? <gravity> What are you trying to run that won't run GL apps? The CVS server or the Debian one? <minra> debian <gravity> Ok. <minra> Build Date: 05 October 2005 <minra> at least that's what it appears to be <gravity> X -version <gravity> If it was built by David Nusinow, it's the Debian server <minra> doing a man apt-get to find how to X Window System Version 6.8.2 (Debian 6.8.2.dfsg.1-8 20051005041959 David Nusinow <dnusinow@debian.org>) <minra> find how to force the reinstall and overwrite anything i may have borked <gravity> Ok, so you've probably got the libGL from CVS loaded. <minra> maybe i can just use dpkg on the libGl <gravity> It should be in /opt, but maybe not <gravity> To be honest, I don't know how you should fix it <minra> do you know what package contains the libgl? <minra> xlibs_6.8.2.dfsg.1-8_all.deb <minra> i think there's a way to search for what provides a specific file <gravity> packages.debian.org <gravity> Or apt-file <minra> cool thx <minra> i manually got xlibmesa-gl now <minra> Setting up xlibmesa-gl (6.8.2.dfsg.1-9) <minra> and it wasn't already installed (!) <gravity> It may not do anything <gravity> If it's in /opt/lib or whatever and the linker is loading it from there reinstalling won't help <minra> nah nothing in /opt <minra> reinstalling brb <minra> aaah gravity is gravityboy i bet <gravity> He is <gravity> thanks <gravity> So people *do* read planet debian <gravity> Sometimes I wonder <minra> i am afraid i haven't <minra> http://www.livejournal.com/users/gravityboy/14794.html is where i found it on a search for experimental+xorg+debian <gravity> Ah, Ok <gravity> Well that works too <gravity> That's a *very* old entry though <minra> doing this: "add deb http://people.debian.org/~dnusinow/xorg ./" to your /etc/apt/sources.list file (without quotes) and you'll be running exactly the packages that I'd planned to upload to experimental. <gravity> That's for the 6.8 packages that are now in testing <minra> oh <gravity> Don't bother with that entry <minra> i've got experimental in there now <gravity> http://wiki.debian.org/experimental?highlight=%28experimental%29 <minra> but the install says Setting up xserver-xfree86 (6.8.2.dfsg.1-9) <minra> which isn't 6.9... <gravity> You probably need to pin it <minra> reading... <gravity> experimental is a huge pain in the *** <minra> heh <gravity> Why do you need the newest packages anyway? <minra> same error <gravity> That's because of totally separate reasons <gravity> We already went over that <minra> -rwxr-xr-x 1 root root 773505 Aug 16 16:13 libGL.so.1.2 <- that looks too old <minra> well, -rw-r--r-- 1 root root 405376 Oct 14 07:43 libGL.so.1.2.distrib <minra> lrwxrwxrwx 1 root root 20 Oct 19 04:22 libGL.so.1 -> libGL.so.1.2.distrib <gravity> .distrib? What is that? <gravity> Dude, I don't know what you did to your system but that's not normal <minra> i think that explains something <minra> The "distrib" version is libmesa-gl's <gravity> uh.... <gravity> No. <gravity> Debian packages don't ship with .distrib suffixes on libs <gravity> Unless they were moved by you in a past life <minra> i am expecting to find a libGL.so somewhere on the system that was installed with todays upgrade <minra> that would be expected, no? <gravity> It would be put in /usr/X11R6/lib <gravity> I don't know where your CVS compile libs went. Probably /opt/X11R6/lib <minra> that's the interesting thing, there's no new libGL.so <gravity> Dude, this is really hard to support you <minra> i am sorry <minra> i know it's farked <gravity> I don't know what sort of madness you've done to your system, but it's basically impossible for me to understand <IRCMonkey_> does anyone want to help me hack my i810 driver to get it run my laptop screen at the proper resolution <minra> falls under the heading "following bad advice" <Ensane|Sontek> Hey, Is there anything special needed to compile xorg in slackware? I tried "make World" and it errors out <minra> you probably are missing libraries <Ensane|Sontek> I got all 7 tarballs <minra> not enough <Ensane|Sontek> Is there a quick way to untar all of them at once? <minra> if you ran make world, they must already be untarred <Ensane|Sontek> I deleted it :P <Ensane|Sontek> I don't want to have to do each one again <minra> try using a wildcard <Ensane|Sontek> was hoping I could do something like tar -zxvf tar{1,2,3,4,5,6,7}.tar.gz <minra> try it i think it'll go <minra> or just tar* <ajax> for i in *.tar.gz ; do tar zxf $i ; done <ajax> the command you gave won't work, it'll look for a file named tar2.tar.gz inside tar1.tar.gz (and not find it, and fail) <deadchip> or write a bash script that provides pluggable matching functions for tar names via sourcing <Ensane|Sontek> ajax, yeah, I realized that :P <deadchip> and pluggable actions <deadchip> just provide the path with the tars as first arg, and the matching and action function containing sub-scripts as the 2nd and 3rd arg <rohara> deadchip: perhaps you would like to write such a thing and make it free and open? ;) <rohara> otherwise as I like to say KISS :) <deadchip> rohara, yeah now i'd might actually do it now that i spoke it out loud :) <deadchip> yeah i'm just at writing plugins for our apps right now <deadchip> so my head is full of plugins and plugin APIs <deadchip> s/apps/app <deadchip> actually it's realized trough the plugins being GTypeModules and implementing a GInterface for each plugin type, so there's not much to deal with :P <deadchip> (in terms of custom-plugology) <rohara> heh. custom-plugology...that's when you know youve done too many plugins <deadchip> heh <deadchip> :) <ajax> [This joke could not be displayed in your client. Click here to get the plugin.] <deadchip> lol <rohara> haha <deadchip> yeah and then you have to first install the plugin's base type providing plugin <akem> Xgl someone? :b <deadchip> :P <Ensane|Sontek> When I do "make World" i get the error: ft2build.h: No Such file or directory <Ensane|Sontek> fcfreetype.h:30: error: parse error before "FcFreeTypeCharIndex" <Ensane|Sontek> any idea what library is needed or how I can check its there? <ajax> freetype <Ensane|Sontek> why doesn't xorg have documentation on a full install? <ajax> because you haven't looked for it? <ajax> http://www.x.org/X11R6.8.2/doc/BUILD.html
Return to xorg or Go to some related
logs:
icmp deaktivieren iptables mysql beginner
|
|