From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39672) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e0JLv-0001yx-PK for guix-patches@gnu.org; Thu, 05 Oct 2017 23:31:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e0JLq-0003Ci-SH for guix-patches@gnu.org; Thu, 05 Oct 2017 23:31:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:43312) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e0JLq-0003CP-Np for guix-patches@gnu.org; Thu, 05 Oct 2017 23:31:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1e0JLq-0004KW-Gp for guix-patches@gnu.org; Thu, 05 Oct 2017 23:31:02 -0400 Subject: [bug#28717] [PATCH] gnu: sdl: Add debug output. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39476) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e0JKv-0001Bn-D4 for guix-patches@gnu.org; Thu, 05 Oct 2017 23:30:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e0JKq-0002cm-GJ for guix-patches@gnu.org; Thu, 05 Oct 2017 23:30:05 -0400 Received: from mail-lf0-x243.google.com ([2a00:1450:4010:c07::243]:53940) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e0JKq-0002cB-8K for guix-patches@gnu.org; Thu, 05 Oct 2017 23:30:00 -0400 Received: by mail-lf0-x243.google.com with SMTP id l23so12081565lfk.10 for ; Thu, 05 Oct 2017 20:29:59 -0700 (PDT) Received: from magnolia (95-55-115-15.dynamic.avangarddsl.ru. [95.55.115.15]) by smtp.gmail.com with ESMTPSA id l24sm107101ljb.41.2017.10.05.20.29.56 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Thu, 05 Oct 2017 20:29:56 -0700 (PDT) From: Oleg Pykhalov Date: Fri, 06 Oct 2017 06:29:56 +0300 Message-ID: <87poa12bt7.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-sdl-Add-debug-output.patch Content-Description: [PATCH] gnu: sdl: Add debug output. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 28717@debbugs.gnu.org >From be3174ded9bba108ee9ab102db7606e354a48f23 Mon Sep 17 00:00:00 2001 From: Oleg Pykhalov Date: Fri, 6 Oct 2017 06:26:10 +0300 Subject: [PATCH] gnu: sdl: Add debug output. * gnu/packages/sdl.scm (sdl, sdl-gfx, sdl-image, sdl-mixer, sdl-net, sdl-ttf): Add debug output. --- gnu/packages/sdl.scm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gnu/packages/sdl.scm b/gnu/packages/sdl.scm index af598ecb4..fa126afd9 100644 --- a/gnu/packages/sdl.scm +++ b/gnu/packages/sdl.scm @@ -83,6 +83,7 @@ ("glu" ,glu) ("alsa-lib" ,alsa-lib) ("pulseaudio" ,pulseaudio))) + (outputs '("out" "debug")) (synopsis "Cross platform game development library") (description "Simple DirectMedia Layer is a cross-platform development library designed to provide low level access to audio, keyboard, mouse, @@ -157,6 +158,7 @@ system, such as sound redirection over the network.") (base32 "0ijljhs0v99dj6y27hc10z6qchyp8gdp4199y6jzngy6dzxlzsvw")))) (build-system gnu-build-system) + (outputs '("out" "debug")) (arguments `(,@(if (any (cute string-prefix? <> (or (%current-system) (%current-target-system))) @@ -184,6 +186,7 @@ other supporting functions for SDL.") (base32 "16an9slbb8ci7d89wakkmyfvp7c0cval8xw4hkg0842nhhlp540b")))) (build-system gnu-build-system) + (outputs '("out" "debug")) (arguments ;; Explicitly link against shared libraries instead of dlopening them. '(#:configure-flags '("--disable-jpg-shared" @@ -220,6 +223,7 @@ WEBP, XCF, XPM, and XV.") (base32 "0alrhqgm40p4c92s26mimg9cm1y7rzr6m0p49687jxd9g6130i0n")))) (build-system gnu-build-system) + (outputs '("out" "debug")) ;; no check target ;; use libmad instead of smpeg ;; explicitly link against shared libraries instead of dlopening them @@ -260,6 +264,7 @@ MIDI, Ogg Vorbis, and MP3.") (build-system gnu-build-system) (propagated-inputs `(("sdl" ,sdl))) (native-inputs `(("pkg-config" ,pkg-config))) + (outputs '("out" "debug")) (synopsis "SDL networking library") (description "SDL_net is a small, cross-platform networking library for SDL.") @@ -283,6 +288,7 @@ SDL.") (inputs `(("freetype" ,freetype) ("mesa" ,mesa))) (native-inputs `(("pkg-config" ,pkg-config))) + (outputs '("out" "debug")) (synopsis "SDL TrueType font library") (description "SDL_ttf is a TrueType font rendering library for SDL.") (home-page "https://www.libsdl.org/projects/SDL_ttf/") -- 2.14.2