From owner-freebsd-multimedia@FreeBSD.ORG Mon Feb 16 21:08:16 2009 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8462F1065674; Mon, 16 Feb 2009 21:08:16 +0000 (UTC) (envelope-from aturetta@commit.it) Received: from mail.bestunion.it (mail.bestunion.it [85.18.201.87]) by mx1.freebsd.org (Postfix) with ESMTP id 06B558FC29; Mon, 16 Feb 2009 21:08:15 +0000 (UTC) (envelope-from aturetta@commit.it) Received: from [192.168.44.66] (adsl-ull-95-52.51-151.net24.it [151.51.52.95]) (authenticated bits=0) by mail.bestunion.it (8.14.3/8.14.3) with ESMTP id n1GKZXs7078680 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 16 Feb 2009 21:35:41 +0100 (CET) (envelope-from aturetta@commit.it) Message-ID: <4999CE0E.8050000@commit.it> Date: Mon, 16 Feb 2009 21:35:26 +0100 From: Angelo Turetta User-Agent: Thunderbird 2.0.0.19 (Windows/20081209) MIME-Version: 1.0 To: Oliver Heesakkers References: <200902161313.59518.dev2@heesakkers.info> In-Reply-To: <200902161313.59518.dev2@heesakkers.info> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV version 0.94.2, clamav-milter version 0.94.2 on mail.bestunion.it X-Virus-Status: Clean Cc: lwhsu@freebsd.org, multimedia@FreeBSD.org Subject: Re: gpac-libgpac needs libglut now X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Feb 2009 21:08:16 -0000 Oliver Heesakkers wrote: > Hello, > > I was unable to build gpac-libgpac because I did not have libglut installed. > Perhaps you need to add a dependency here. That's not enough. In my PC I have libGL, libGL, libglut installed, but the build stops at: cc -O3 -O2 -fno-strict-aliasing -pipe -fPIC -pthread -fno-strict-aliasing -Wno-pointer-sign -I/space/usr/ports/multimedia/gpac-libgpac/work/gpac/include -I../ -DGPAC_HAVE_CONFIG_H -fPIC -DPIC -c compositor/mesh.c -o compositor/mesh.opic In file included from compositor/mesh.c:33: compositor/gl_inc.h:45:19: error: GL/gl.h: No such file or directory The problem seems that this part of src/Makefile apparently is not used: # OpenGL support ifeq ($(HAS_OPENGL),yes) EXTRALIBS+= $(OGL_LIBS) COMPOSITOR_CFLAGS+=$(OGL_INCLS) endif config.mak contains: OGL_INCLS=-I/usr/local/include OGL_LIBS=-L/usr/local/lib -lGL -lglut I hope someone who better understand gmake can Angelo.