You are not logged in.

#1 2009-06-04 04:01:17

hunterthomson
Member
Registered: 2008-06-22
Posts: 794
Website

xorg-server-catalyst Not Building

Helo,

I tried to build the AUR package xorg-server-catalyst-maximise-fix and it Fails out of makepkg with 2 errors. There was no usefull information given that I could see. Only that the errors had [Install] and [recursive-install] with them.

I also tried to buid the AUR package xorg-server-catalyst and it Fails out with...

Hunk #1 FAILED at 483

I hope one of these could be fixed with some little thing I just don't know about. I tried to install both with yaourt and by downloading the tar ball and running makepkg myself but didn't make a differences


Thank you for reading this smile

Last edited by hunterthomson (2009-06-04 04:02:25)


OpenBSD-current Thinkpad X230, i7-3520M, 16GB CL9 Kingston, Samsung 830 256GB
Contributor: linux-grsec

Offline

#2 2009-06-04 05:22:24

DevoidOfWindows
Member
Registered: 2009-05-24
Posts: 133

Re: xorg-server-catalyst Not Building

Try the regular catalyst from the AUR.

Last edited by DevoidOfWindows (2009-06-04 05:23:32)

Offline

#3 2009-06-04 05:30:04

hunterthomson
Member
Registered: 2008-06-22
Posts: 794
Website

Re: xorg-server-catalyst Not Building

DevoidOfWindows wrote:

Try the regular catalyst from the AUR.

It is not the catalyst it is a patched Xserver with no-bakfill

This patched Xserver is needed otherwise the whole computer freezes for like 5 sec's just to resize a window.
It works for me in Ubuntu.

Last edited by hunterthomson (2009-06-04 05:30:30)


OpenBSD-current Thinkpad X230, i7-3520M, 16GB CL9 Kingston, Samsung 830 256GB
Contributor: linux-grsec

Offline

#4 2009-06-04 06:01:15

tomk
Forum Fellow
From: Ireland
Registered: 2004-07-21
Posts: 9,839

Re: xorg-server-catalyst Not Building

hunterthomson wrote:

it Fails out of makepkg with 2 errors. There was no usefull information given that I could see.

No offense, but maybe someone else could see. smile
That's why it's always recommended that you post the entire build output - makepkg -L will create a build log that you can post here (in code tags, of course).

hunterthomson wrote:
Hunk #1 FAILED at 483

Notify the package maintainer of both errors via AUR comments - for the second one, he needs to amend the patch.

Offline

#5 2009-06-05 07:04:49

hunterthomson
Member
Registered: 2008-06-22
Posts: 794
Website

Re: xorg-server-catalyst Not Building

Ok I didn't know about the -L flag. I'll remember that.

I already commented on both of coarse.

I am doing this on a different HHD so I don't want to take apart my laptop again and again until I get something worth trying.

I guess I just have to learn how to patch the Xserver myself....

Last edited by hunterthomson (2009-06-05 07:14:23)


OpenBSD-current Thinkpad X230, i7-3520M, 16GB CL9 Kingston, Samsung 830 256GB
Contributor: linux-grsec

Offline

#6 2009-06-06 21:20:25

hunterthomson
Member
Registered: 2008-06-22
Posts: 794
Website

Re: xorg-server-catalyst Not Building

Here is the log.

Well it will not let me post the log. Too long. So here is the error part.


make[6]: *** [install-sdkHEADERS] Error 1
make[6]: Leaving directory `/home/cruzer/xorg-server-catalyst-maximize-fix/src/xorg-server-1.6.1/hw/xfree86/common'
make[5]: *** [install-am] Error 2
make[5]: Leaving directory `/home/cruzer/xorg-server-catalyst-maximize-fix/src/xorg-server-1.6.1/hw/xfree86/common'
make[4]: *** [install] Error 2
make[4]: Leaving directory `/home/cruzer/xorg-server-catalyst-maximize-fix/src/xorg-server-1.6.1/hw/xfree86/common'
make[3]: *** [install-recursive] Error 1
make[3]: Leaving directory `/home/cruzer/xorg-server-catalyst-maximize-fix/src/xorg-server-1.6.1/hw/xfree86'
make[2]: *** [install] Error 2
make[2]: Leaving directory `/home/cruzer/xorg-server-catalyst-maximize-fix/src/xorg-server-1.6.1/hw/xfree86'
make[1]: *** [install-recursive] Error 1
make[1]: Leaving directory `/home/cruzer/xorg-server-catalyst-maximize-fix/src/xorg-server-1.6.1/hw'
make: *** [install-recursive] Error 1

OpenBSD-current Thinkpad X230, i7-3520M, 16GB CL9 Kingston, Samsung 830 256GB
Contributor: linux-grsec

Offline

#7 2009-06-06 21:21:40

hunterthomson
Member
Registered: 2008-06-22
Posts: 794
Website

Re: xorg-server-catalyst Not Building

I would be ever grateful if someone could explain this guys remark to me? I understand what he is saying but I don't know how to implement his suggestion.

this is the problem of autotools. If a file is repeated more than once in Makefile.am, it will show error while "make install".

--- ../../xorg-server-1.6.1/hw/xfree86/common/Makefile.am 2009-04-15 01:14:57.000000000 +0800
+++ hw/xfree86/common/Makefile.am 2009-06-04 01:14:41.521580329 +0800
@@ -46,7 +46,7 @@
sdk_HEADERS = compiler.h fourcc.h xf86.h xf86Module.h xf86Opt.h \
xf86PciInfo.h xf86Priv.h xf86Privstr.h xf86Resources.h \
xf86cmap.h xf86fbman.h xf86str.h xf86RAC.h xf86Xinput.h xisb.h \
- $(XVSDKINCS) xorgVersion.h \
+ xorgVersion.h \
xf86sbusBus.h xf86xv.h xf86xvmc.h xf86xvpriv.h

DISTCLEANFILES = xf86Build.h

Here is a patch.

As you can see, $(XVSDKINCS) already have "xf86xv.h" and "xf86xvmc.h", and on the last line it repeat again. It was said that it's caused by automake-1.10b, but I'm using automake-1.11 though.


OpenBSD-current Thinkpad X230, i7-3520M, 16GB CL9 Kingston, Samsung 830 256GB
Contributor: linux-grsec

Offline

#8 2009-06-06 21:22:45

hunterthomson
Member
Registered: 2008-06-22
Posts: 794
Website

Re: xorg-server-catalyst Not Building

Also, I there a way to contact the person who is managing the AUR package ? There should be a way to flag BROKEN. So the manager fixes it. Two packages nether of them work and nether of the managers are saying or doing anything.


OpenBSD-current Thinkpad X230, i7-3520M, 16GB CL9 Kingston, Samsung 830 256GB
Contributor: linux-grsec

Offline

#9 2009-06-06 21:49:40

tomk
Forum Fellow
From: Ireland
Registered: 2004-07-21
Posts: 9,839

Re: xorg-server-catalyst Not Building

Two things:
- the error output you posted above comes after the stuff that's actually useful for debugging. Post the build log on some pastebin and link to it.
- you have already contacted the AUR package maintainer by commenting on it (maintainers are notified by mail if a comment is posted). That was two days ago, and your comment provided absolutely no information that might help the maintainer to solve the problem. Be patient, and remember that AUR maintainers do what they do in their spare time, for no money - just like Arch devs, forum moderators, IRC Ops, wiki contributors, bug wranglers, etc....

Offline

#10 2009-06-07 05:48:01

hunterthomson
Member
Registered: 2008-06-22
Posts: 794
Website

Re: xorg-server-catalyst Not Building

Wow,

Well I hope this gets fixed at some point.

But, I got the catalyst to work in Archlinux big_smile

I knew the patched xserver was only "Suppose to" be needed when any composite manager was running. However, I was getting the problem before even though I had no composit manager installed. I was like WTF. I though it must have been a problem with Archlinux no matter what.

BUT,

As it turns out the problem was in in the configureation file for terminator terminal. What a curve ball...
I was using a config file I had from my old system in which I had xcomposer installed for transparency. So, in terminator's config file I had the line.
enable-true-transparency=true
That is all it took to mess up Catalyst and bring in the  5second whole computer lockup and stuff.

Wow, What a curve ball.
Moral of the story, Don't use configuration files from an old install. Always, start fresh.

and a funny thing to add... I was using terminator as my test app to see if I was still getting the lockup on window resize and move LOL
===========================================
What a ****ing relief. I gained a new level of hatred for Ubuntu.
Ubuntu is so full of crap. Stuff brakes and it is like finding a needle in a haystack to fix ANY problem.
I LOVE ARCHLINUX smile I think I am going to donate some money smile Keep up the good work guys and girls.
This is the best Disto Ever. I am so happy to be back. Arch is the perfect mix of configurability, ease of use.
Gentoo is too configurable and Ubuntu is too easy it brakes all the time. Arch is just right, a little pain to set up but after that it works and Stays working.

Arch dose what you tell it to do, Nothing more, Nothing less.... Just make sure your telling it to do the right thing....:rolleyes:

Last edited by hunterthomson (2009-06-07 05:55:29)


OpenBSD-current Thinkpad X230, i7-3520M, 16GB CL9 Kingston, Samsung 830 256GB
Contributor: linux-grsec

Offline

Board footer

Powered by FluxBB