From owner-freebsd-stable@FreeBSD.ORG Sun Nov 10 13:11:46 2013 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C30A6644 for ; Sun, 10 Nov 2013 13:11:46 +0000 (UTC) (envelope-from senua1972@gmail.com) Received: from sam.nabble.com (sam.nabble.com [216.139.236.26]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 94D5129D8 for ; Sun, 10 Nov 2013 13:11:46 +0000 (UTC) Received: from [192.168.236.26] (helo=sam.nabble.com) by sam.nabble.com with esmtp (Exim 4.72) (envelope-from ) id 1VfUnp-0005s4-Ch for freebsd-stable@freebsd.org; Sun, 10 Nov 2013 05:11:45 -0800 Date: Sun, 10 Nov 2013 05:11:45 -0800 (PST) From: Seniae To: freebsd-stable@freebsd.org Message-ID: <1384089105386-5859921.post@n5.nabble.com> In-Reply-To: References: <78BFB16A90AF4E67B9CF57E9C7111D69@SeniaePC> <1383924262386-5859538.post@n5.nabble.com> <1384035336707-5859800.post@n5.nabble.com> <1384038404408-5859808.post@n5.nabble.com> Subject: Re: Several ports won't build FreeBSD 10 beta 3 with new xorg MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Nov 2013 13:11:46 -0000 Zenny I don't know if it helps but I've had problems installing xorg as well, so if you don't mind a little story ... I was running FreeBSD 9.x all was happy and fine till all of a sudden after a port upgrade my keyboard would not work anymore. It would work in console but not in X nor gnome, gdm, xdm or whatever else I tried. So I went searching the interwebs. Again nothing I found would work except for people mention the HAL or without HAL issue and adding a line WITH_NEW_XORG=yes to your make.conf file. Again I tried all that even did a clean install of 9.x but again nothing would work. I decided to update to 10.x. At that point it was still in BETA2. I tried and reconfigured and tried again ... nothing, no absolutely nothing would work. I wasn't the only one since I found quite some posts about this on the interwebs again. Also my xorg wouldn't build anymore. It would end with mysterious building errors I had no clue about. I decided to let it rest for a while. Untill I read something about "do you have the latest freebsd update". I thought I had because I burnt the cd just a few days ago. So I checked and found out they came out with BETA3 about 2 days earlier. Used my 10x beta 2 cd to reinstall Freebsd and updated it to beta 3. After building xorg it was complaining about my screen. I found out there was a double line of screen in my xorg.conf and removed the extra line. Since that moment it would all work again. So about my config files, no problem here you go: /boot/loader.conf <--- empty /etc/rc.conf: hostname="md" ifconfig_fxp0="DHCP" ifconfig_fxp0_ipv6="inet6 accept_rtadv" dumpdev="NO" /etc/X11/xorg.conf: Section "ServerLayout" Identifier "X.org Configured" Screen 0 "Screen0" 0 0 InputDevice "Mouse0" "CorePointer" InputDevice "Keyboard0" "CoreKeyboard" EndSection Section "Files" ModulePath "/usr/local/lib/xorg/modules" FontPath "/usr/local/lib/X11/fonts/misc/" FontPath "/usr/local/lib/X11/fonts/TTF/" FontPath "/usr/local/lib/X11/fonts/OTF/" FontPath "/usr/local/lib/X11/fonts/Type1/" FontPath "/usr/local/lib/X11/fonts/100dpi/" FontPath "/usr/local/lib/X11/fonts/75dpi/" EndSection Section "Module" Load "extmod" Load "record" Load "dbe" Load "dri" Load "dri2" Load "glx" EndSection Section "InputDevice" Identifier "Keyboard0" Driver "kbd" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/sysmouse" Option "ZAxisMapping" "4 5 6 7" EndSection Section "Monitor" Identifier "Monitor0" VendorName "Monitor Vendor" ModelName "Monitor Model" EndSection Section "Monitor" Identifier "Monitor1" VendorName "Monitor Vendor" ModelName "Monitor Model" EndSection Section "Device" ### Available Driver options are:- ### Values: /: integer, : float, : "True"/"False", ### : "String", : " Hz/kHz/MHz", ### : "%" ### [arg]: arg optional #Option "SWcursor" # [] #Option "HWcursor" # [] #Option "NoAccel" # [] #Option "ShadowFB" # [] #Option "UseFBDev" # [] #Option "Rotate" # [] #Option "VideoKey" # / #Option "FlatPanel" # [] #Option "FPDither" # [] #Option "CrtcNumber" # / #Option "FPScale" # [] #Option "FPTweak" # / #Option "DualHead" # [] Identifier "Card0" Driver "nv" BusID "PCI:1:0:0" EndSection Section "Device" ### Available Driver options are:- ### Values: /: integer, : float, : "True"/"False", ### : "String", : " Hz/kHz/MHz", ### : "%" ### [arg]: arg optional #Option "ShadowFB" # [] #Option "DefaultRefresh" # [] #Option "ModeSetClearScreen" # [] Identifier "Card1" Driver "vesa" BusID "PCI:1:0:0" EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" SubSection "Display" Viewport 0 0 Depth 1 EndSubSection SubSection "Display" Viewport 0 0 Depth 4 EndSubSection SubSection "Display" Viewport 0 0 Depth 8 EndSubSection SubSection "Display" Viewport 0 0 Depth 15 EndSubSection SubSection "Display" Viewport 0 0 Depth 16 EndSubSection SubSection "Display" Viewport 0 0 Depth 24 EndSubSection EndSection Section "Screen" Identifier "Screen1" Device "Card1" Monitor "Monitor1" SubSection "Display" Viewport 0 0 Depth 1 EndSubSection SubSection "Display" Viewport 0 0 Depth 4 EndSubSection SubSection "Display" Viewport 0 0 Depth 8 EndSubSection SubSection "Display" Viewport 0 0 Depth 15 EndSubSection SubSection "Display" Viewport 0 0 Depth 16 EndSubSection SubSection "Display" Viewport 0 0 Depth 24 EndSubSection EndSection Regards, Seniae -- View this message in context: http://freebsd.1045724.n5.nabble.com/Several-ports-won-t-build-FreeBSD-10-beta-3-with-new-xorg-tp5859170p5859921.html Sent from the freebsd-stable mailing list archive at Nabble.com.