[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] gnu: Propagate necessary inputs for sdl-image
From: |
David Thompson |
Subject: |
[PATCH] gnu: Propagate necessary inputs for sdl-image |
Date: |
Wed, 30 Apr 2014 20:40:56 -0400 |
User-agent: |
Notmuch/0.17 (http://notmuchmail.org) Emacs/24.3.1 (x86_64-pc-linux-gnu) |
The libraries for loading JPG, PNG, and TIFF images need to be
propagated inputs in order for SDL image to work properly.
>From 6b3dfa3d5ad01efa29494f34f093fa1aa2dad437 Mon Sep 17 00:00:00 2001
From: David Thompson <address@hidden>
Date: Wed, 30 Apr 2014 20:35:45 -0400
Subject: [PATCH 1/2] gnu: Propagate necessary inputs for sdl-image.
* gnu/packages/sdl.scm (sdl-image): Propagate jpeg, png, and tiff
libraries.
---
gnu/packages/sdl.scm | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/sdl.scm b/gnu/packages/sdl.scm
index d86ecde..713700d 100644
--- a/gnu/packages/sdl.scm
+++ b/gnu/packages/sdl.scm
@@ -147,12 +147,12 @@ other supporting functions for SDL.")
(base32
"16an9slbb8ci7d89wakkmyfvp7c0cval8xw4hkg0842nhhlp540b"))))
(build-system gnu-build-system)
+ (native-inputs `(("pkg-config" ,pkg-config)))
;; FIXME: Add webp
- (inputs `(("libpng" ,libpng)
- ("libjpeg" ,libjpeg)
- ("libtiff" ,libtiff)
- ("pkg-config" ,pkg-config)))
- (propagated-inputs `(("sdl" ,sdl)))
+ (propagated-inputs `(("sdl" ,sdl)
+ ("libjpeg" ,libjpeg)
+ ("libpng" ,libpng)
+ ("libtiff" ,libtiff)))
(synopsis "SDL image loading library")
(description "SDL_image is an image file loading library for SDL that
supports the following formats: BMP, GIF, JPEG, LBM, PCX, PNG, PNM, TGA, TIFF,
--
1.8.4
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [PATCH] gnu: Propagate necessary inputs for sdl-image,
David Thompson <=