From owner-freebsd-questions@FreeBSD.ORG Sun Jul 24 18:21:49 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C04F16A420 for ; Sun, 24 Jul 2005 18:21:49 +0000 (GMT) (envelope-from apredoehl@go.mailsvc.com) Received: from mailsvc.com (mail.mailsvc.com [63.247.192.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA1B243D46 for ; Sun, 24 Jul 2005 18:21:48 +0000 (GMT) (envelope-from apredoehl@go.mailsvc.com) Received: by mailsvc.com (CommuniGate Pro PIPE 4.3.2) with PIPE id 246401029; Sun, 24 Jul 2005 12:21:48 -0600 Received: from [66.44.0.172] (account apredoehl@go.mailsvc.com) by mailsvc.com (CommuniGate Pro WebUser 4.3.2) with HTTP id 246400966; Sun, 24 Jul 2005 12:21:42 -0600 From: "Andrew Predoehl" To: no-html@jonathan-glaschke.de X-Mailer: CommuniGate Pro WebUser Interface v.4.3.2 Date: Sun, 24 Jul 2005 12:21:42 -0600 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1"; format="flowed" Content-Transfer-Encoding: 8bit X-CIT-MailScanner-Information: Please contact 719-473-2800 for more information X-CIT-MailScanner-MS5: Not scanned for viruses: Contact Colorado Information Technologies at 1-866-469-3310 to add Virus and Spam filtering services X-CIT-MailScanner-SpamCheck: X-MailScanner-From: apredoehl@go.mailsvc.com Cc: freebsd-questions@freebsd.org Subject: SOLVED: KPovModeler port problem: why no OpenGL? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Jul 2005 18:21:49 -0000 >> I found a problem when I recompiled the >> graphics/kdegraphics3 port; the build and install were >> OK, but now when I run KPovModeler, it tells me, "No >> OpenGL support" and does not show wireframes anymore. >> >> I'm running FreeBSD-5.4-RELEASE-p4, and recompiling >> because I'm just doing an ordinary portupgrade on >> kdegraphics3. >> >> There was no problem during the configure step. Configure >> found GL, GLU, GLX, but found them.... >> >> checking GL/gl.h usability... yes >> checking GL/gl.h presence... yes >> checking for GL/gl.h... yes >> checking GL/glu.h usability... yes >> checking GL/glu.h presence... yes >> checking for GL/glu.h... yes >> checking GL/glx.h usability... yes >> checking GL/glx.h presence... yes >> checking for GL/glx.h... yes >> checking for GL... yes >> >> The only thing configure said I was missing was libsane, >> which I don't even need because I don't have a scanner. >> >> I'd really like to be able to use KPovModeler properly. >> Does anyone know how to fix this? Should I just give up >> and use a package? Do I need to install Mesa? It is not >> listed as a dependency, and in fact when I tried to make >> the graphics/mesagl port it says this: >> >> landru# cd /usr/ports/graphics/mesagl/ >> landru# make configure >> ===> Mesa-5.0.1_3 is unnecessary because libGL and libGLU >> come with XFree86 4.0 and higher. >> >> I have libglut-6.0.1 and xorg 6.8.2 already installed, >> along with the all the rest of KDE 3.4.1. >> >> Thanks, >> >> Andrew Predoehl > >Uncomment Load "glx" and Load "dri" in /etc/X11/xorg.conf, >and restart X. >That may help you. > ># This loads the GLX module > Load "glx" ># This loads the DRI module > Load "dri" > >Jonathan Thanks Jonathan, that solved it! I didn't have either module loaded. For the record, just plain Load "glx" alone was enough to solve the problem. I had removed both of these Load commands when I upgraded from XFree86 to Xorg, and I thought maybe I didn't need them anymore, since the example xorg.conf file /usr/X11R6/lib/X11/xorg.conf.eg does not indicate loading these modules. Then, I forgot that I'd removed them... Thanks again! AMP