diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-10-17 23:08:20 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-10-17 23:23:20 +0200 |
commit | 1d830bc0c2fd3c149d711d8d265a04a5f4751388 (patch) | |
tree | 01b86575c78be0ee49352ed9809f72b6a8f3dec9 /gnu/packages/sdl.scm | |
parent | e5997888fa75f13735107166d51a1359381d8a79 (diff) | |
download | patches-1d830bc0c2fd3c149d711d8d265a04a5f4751388.tar patches-1d830bc0c2fd3c149d711d8d265a04a5f4751388.tar.gz |
gnu: sdl-gfx: Build only on Intel machines.
* gnu/packages/sdl.scm (sdl-gfx): Add 'supported-systems' field.
Diffstat (limited to 'gnu/packages/sdl.scm')
-rw-r--r-- | gnu/packages/sdl.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/sdl.scm b/gnu/packages/sdl.scm index 02e9c29024..9fb40f2edc 100644 --- a/gnu/packages/sdl.scm +++ b/gnu/packages/sdl.scm @@ -130,7 +130,11 @@ system, such as sound redirection over the network.") (description "SDL_gfx provides graphics drawing primitives, rotozoom and other supporting functions for SDL.") (home-page "http://www.ferzkopp.net/joomla/software-mainmenu-14/4-ferzkopps-linux-software/19-sdlgfx") - (license zlib))) + (license zlib) + + ;; The code apparently includes Intel assembly, which fails to build on + ;; MIPS, at least. + (supported-systems '("i686-linux" "x86_64-linux")))) (define sdl-image (package |