forked from mirrors/nixpkgs
GNU Gnash: Depend on Libtool.
This (1) allows Gnash to be linked against the available `libltdl' rather than its own, and (2) it prevents `libtld.h' to be installed (which was the case when Gnash's own libltdl was used), thereby avoiding a collision with Libtool. svn path=/nixpkgs/trunk/; revision=12292
This commit is contained in:
parent
4987da9c2b
commit
834144b5d3
|
@ -1,6 +1,6 @@
|
|||
{ stdenv, fetchurl
|
||||
, SDL, SDL_mixer, GStreamer
|
||||
, libogg, libxml2, libjpeg, mesa, libpng
|
||||
, libogg, libxml2, libjpeg, mesa, libpng, libtool
|
||||
, boost, freetype, agg, dbus, curl, pkgconfig
|
||||
, glib, gtk, x11
|
||||
, lib}:
|
||||
|
@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
|
||||
# XXX: KDE is supported as well so we could make it available optionally.
|
||||
buildInputs = [x11 SDL SDL_mixer GStreamer
|
||||
buildInputs = [x11 SDL SDL_mixer GStreamer libtool
|
||||
libogg libxml2 libjpeg mesa libpng boost freetype agg
|
||||
dbus curl pkgconfig glib gtk];
|
||||
inherit SDL_mixer SDL;
|
||||
|
|
|
@ -5946,7 +5946,7 @@ let pkgs = rec {
|
|||
|
||||
gnash = assert mesaSupported; import ../applications/video/gnash {
|
||||
inherit fetchurl stdenv SDL SDL_mixer libogg libxml2 libjpeg mesa libpng
|
||||
boost freetype agg dbus curl pkgconfig x11 lib;
|
||||
boost freetype agg dbus curl pkgconfig x11 libtool lib;
|
||||
inherit (gtkLibs) glib gtk;
|
||||
GStreamer = gst_all.gstreamer;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue