Phoronix Forums  

Go Back   Phoronix Forums > Linux Graphics / X.Org Drivers > X.Org & Mesa

X.Org & Mesa Discussion of X.Org and Mesa / Gallium3D. This includes the discussion of the X Server, RandR, OpenGL, Kernel-based Mode-Setting, and other X components not covered by other forums.

Reply
 
Thread Tools Display Modes
  #1  
Old 10-24-2007, 03:09 AM
TheIcebreaker TheIcebreaker is offline
Junior Member
 
Join Date: Oct 2007
Location: Mumbai India
Posts: 39
Default Xorg 7.3 install guide

CAn somebody who is successful post a brief guide to build Xorg 7.3.

I am facing problems dloading from git as i am behind a http proxy requiring authentication.

I am running FC4 Xorg 6.8.2 kernel 2.6.17 and have my reasons not to upgrade the distro.

Will 7.3 work with this.

Thanks any way
Reply With Quote
  #2  
Old 10-24-2007, 04:14 AM
TheIcebreaker TheIcebreaker is offline
Junior Member
 
Join Date: Oct 2007
Location: Mumbai India
Posts: 39
Default

Well folks now i think that since 7.3 is toooo new to install i will make do with 7.2

i have dloaded the tarballs
what do i do next.????
Reply With Quote
  #3  
Old 10-24-2007, 07:59 AM
Michael Michael is offline
Phoronix
 
Join Date: Jun 2006
Location: United States
Posts: 4,564
Default

Have you considered just pointing your yum repos to one from say Fedora 7 and then selectively upgrading all X related packages?
Reply With Quote
  #4  
Old 10-24-2007, 09:26 PM
TheIcebreaker TheIcebreaker is offline
Junior Member
 
Join Date: Oct 2007
Location: Mumbai India
Posts: 39
Default

Quote:
Originally Posted by Michael View Post
Have you considered just pointing your yum repos to one from say Fedora 7 and then selectively upgrading all X related packages?
are you sure that wont vreate any probs wht soever
can generaly packages created for fc7 be installed on another Fc (lower versions)

wont it have higher dependencies


moreover i wud really like to bbuild X and keep my original as well so that i can switch when necessary
Reply With Quote
  #5  
Old 10-25-2007, 10:29 AM
Xipeos Xipeos is offline
Senior Member
 
Join Date: Jun 2007
Location: .ro/.ca
Posts: 155
Default

See this.

Short version:
1. download everything from here
2. download damageproto 1.1 separately
3. download latest Mesa3D and unpack it somewhere near
4. download the build-from-tarballs.sh script
5. assuming you're installing to /usr/X11R7.3:
- export PATH=/usr/X11R7.3/bin:$PATH
- export PKG_CONFIG_PATH=/usr/X11R7.3/lib/pkgconfig:$PKG_CONFIG_PATH

6. ./build-from-tarballs.sh -m PATH_TO_MESA -n -bz2 -e /usr/X11R7.3

That's it.

EDIT: you may have to modify the script to suit your needs. I added -j8 to make, removed fonts, docs and all the drivers I didn't need.
__________________
ATI fanboy

Last edited by Xipeos; 10-25-2007 at 10:37 AM.
Reply With Quote
  #6  
Old 10-25-2007, 08:58 PM
TheIcebreaker TheIcebreaker is offline
Junior Member
 
Join Date: Oct 2007
Location: Mumbai India
Posts: 39
Default

Quote:
Originally Posted by Xipeos View Post
See this.

Short version:
1. download everything from here
2. download damageproto 1.1 separately
3. download latest Mesa3D and unpack it somewhere near
4. download the build-from-tarballs.sh script
5. assuming you're installing to /usr/X11R7.3:
- export PATH=/usr/X11R7.3/bin:$PATH
- export PKG_CONFIG_PATH=/usr/X11R7.3/lib/pkgconfig:$PKG_CONFIG_PATH

6. ./build-from-tarballs.sh -m PATH_TO_MESA -n -bz2 -e /usr/X11R7.3

That's it.

EDIT: you may have to modify the script to suit your needs. I added -j8 to make, removed fonts, docs and all the drivers I didn't need.
Ok thanks but a couple of things still linger:-

1. why do you need to dload damageproto separately.
2. I have X116.8.2 installed in /usr/X11R6 and i want to use both interghangeably just for the reason that I may end up with some problem in 7.3.
i) Will running X11R7.3 change my system so that i cant revert back.
ii) How could i accomplish this.
Reply With Quote
  #7  
Old 10-26-2007, 03:31 AM
Xipeos Xipeos is offline
Senior Member
 
Join Date: Jun 2007
Location: .ro/.ca
Posts: 155
Default

Quote:
Originally Posted by TheIcebreaker View Post
1. why do you need to dload damageproto separately.
You need damageproto 1.1.0 to compile, but only 1.0.3 is provided in the 7.3 tree.

*EDIT: meh this is no longer true, sorry for the false information.

Quote:
Originally Posted by TheIcebreaker View Post
2. I have X116.8.2 installed in /usr/X11R6 and i want to use both interghangeably just for the reason that I may end up with some problem in 7.3.
i) Will running X11R7.3 change my system so that i cant revert back.
ii) How could i accomplish this.
Move /usr/X11R6 to /usr/X11R6_old then create a link from 7.3 to R6:
Code:
mv /usr/X11R6 /usr/X11R6_old&&ln -s /usr/X11R7.3 /usr/X11R6
Some people intall X11 directly in /usr, but this way it's cleaner and much easier to up/downgrade.

When you want to go back, simply remove the link and rename X11R6_old to X11R6.
__________________
ATI fanboy

Last edited by Xipeos; 10-26-2007 at 03:34 AM.
Reply With Quote
  #8  
Old 10-28-2007, 09:55 AM
TheIcebreaker TheIcebreaker is offline
Junior Member
 
Join Date: Oct 2007
Location: Mumbai India
Posts: 39
Default

I tried the above metod got all the dependencies and after multiple build attempts i am getting errors.

error in building input evdev ,vmmouse for a few
what do i do.


Quote:
Originally Posted by Xipeos View Post
You need damageproto 1.1.0 to compile, but only 1.0.3 is provided in the 7.3 tree.

*EDIT: meh this is no longer true, sorry for the false information.



Move /usr/X11R6 to /usr/X11R6_old then create a link from 7.3 to R6:
Code:
mv /usr/X11R6 /usr/X11R6_old&&ln -s /usr/X11R7.3 /usr/X11R6
Some people intall X11 directly in /usr, but this way it's cleaner and much easier to up/downgrade.

When you want to go back, simply remove the link and rename X11R6_old to X11R6.
Reply With Quote
  #9  
Old 10-28-2007, 09:59 AM
Xipeos Xipeos is offline
Senior Member
 
Join Date: Jun 2007
Location: .ro/.ca
Posts: 155
Default

Quote:
Originally Posted by TheIcebreaker View Post
error in building input evdev ,vmmouse for a few
what do i do.
You most likely do not need any other input drivers than keyboard, mouse and joystick. I do not know why evdev, vmmouse and the others fail, but I don't really care (I just removed them from the beginning like I said before).
__________________
ATI fanboy
Reply With Quote
  #10  
Old 10-28-2007, 11:03 AM
TheIcebreaker TheIcebreaker is offline
Junior Member
 
Join Date: Oct 2007
Location: Mumbai India
Posts: 39
Default

can you just post an ls -R of your build directory

Quote:
Originally Posted by Xipeos View Post
You most likely do not need any other input drivers than keyboard, mouse and joystick. I do not know why evdev, vmmouse and the others fail, but I don't really care (I just removed them from the beginning like I said before).
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 01:40 AM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Copyright ©2004 - 2009 by Phoronix Media.