From owner-freebsd-questions@FreeBSD.ORG Sun May 1 20:29:22 2005 Return-Path: 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 40B3A16A4CE for ; Sun, 1 May 2005 20:29:22 +0000 (GMT) Received: from mail48-s.fg.online.no (mail48-s.fg.online.no [148.122.161.48]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3564443D39 for ; Sun, 1 May 2005 20:29:21 +0000 (GMT) (envelope-from janchris@stud.ntnu.no) Received: from [192.168.123.1] (ti500710a080-14787.bb.online.no [85.167.185.195])j41KTII7005815; Sun, 1 May 2005 22:29:19 +0200 (CEST) From: "Jan C. Meyer" To: Jose Luis Alarcon Sanchez Date: Sun, 1 May 2005 22:29:16 +0200 User-Agent: KMail/1.8 References: <1114975313.1115.6.camel@Endeavour.lordofunix.org> In-Reply-To: <1114975313.1115.6.camel@Endeavour.lordofunix.org> MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200505012229.17086.janchris@stud.ntnu.no> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: OpenGL packages X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2005 20:29:22 -0000 Hello, Jose. > I want to do OpenGL programming under my FreeBSD 5.4-RC3 system, but i > am not able to find what packages i must have installed. > Any kind of help, please?. If you have X11 in place, everything is probably already there, you just need to link to the right libraries. I compile my OpenGL stuff thusly: gcc -I/usr/X11R6/include -L/usr/X11R6/lib -lglut -lGL -lpthread -lm \ -o glprogram glprogram.c Should work for you too. Cheers, -Jan Christian