From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: Re: [PATCH] gnu: Add abbaye Date: Fri, 2 May 2014 15:59:13 +0200 Message-ID: <20140502135913.GA1136@debian> References: <878uqmwcom.fsf@labrys.i-did-not-set--mail-host-address--so-tickle-me> <87d2fx3h2a.fsf@gnu.org> <87tx99hgdg.fsf@labrys.i-did-not-set--mail-host-address--so-tickle-me> <877g6531n6.fsf@gnu.org> <87lhukbqym.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54722) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WgDzq-0008W0-Ay for guix-devel@gnu.org; Fri, 02 May 2014 09:59:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WgDzk-0004CZ-DO for guix-devel@gnu.org; Fri, 02 May 2014 09:59:26 -0400 Content-Disposition: inline In-Reply-To: List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: "Thompson, David" Cc: guix-devel On Fri, May 02, 2014 at 08:55:58AM -0400, Thompson, David wrote: > Thanks for investigating. Abbaye doesn't directly use libpng, > SDL_image does, so I think that your copy of Abbaye is not using the > latest sdl-image package that propagates libpng (and others). Did you > build abbaye yourself or use a substitute from hydra? I noticed that > there have been some build failures of SDL libraries to another > dependency failing to build. > http://hydra.gnu.org/job/gnu/master/sdl-image-1.2.12.x86_64-linux It happens with the git trunk, which downloads the sdl-image package from hydra. The library is not linked with libpng: $ ldd /gnu/store/0sp8kyd2vrmsw79gnw0g31wvvdjnfxwc-sdl-image-1.2.12/lib/libSDL_image-1.2.so.0.8.4 | grep png prints nothing. So maybe an explicit linking step is needed? Or does sdl-image dlopen the libpng library? Then more work might be needed so that the sources contain the correct path. Andreas