diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-04-03 20:47:43 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-04-03 23:55:51 +0200 |
commit | ef0383eeca188f244e92a1e1b72dac9da65c25b9 (patch) | |
tree | 1b5b45aac57b0d4ee486b6b21a048b5fc9cff468 /gnu | |
parent | bb184d9884891ad190f2ebc4ffb71d6f361ab488 (diff) | |
download | guix-ef0383eeca188f244e92a1e1b72dac9da65c25b9.tar guix-ef0383eeca188f244e92a1e1b72dac9da65c25b9.tar.gz |
gnu: inkscape: Use libgc 7.2.
* gnu/packages/inkscape.scm (inkscape): Use LIBGC-7.2 instead of LIBGC.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/inkscape.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/inkscape.scm b/gnu/packages/inkscape.scm index 6b8669f373..845853f665 100644 --- a/gnu/packages/inkscape.scm +++ b/gnu/packages/inkscape.scm @@ -61,7 +61,11 @@ ("libpng" ,libpng) ("libxml2" ,libxml2) ("libxslt" ,libxslt) - ("libgc" ,libgc) + + ;; With libgc 7.4, compilation fails with: + ;; gc.cpp:123:1: error: invalid conversion from 'int (*)(void**, const void*)' to 'int (*)(void**, void*)' + ("libgc" ,libgc-7.2) + ("freetype" ,freetype) ("popt" ,popt) ("python" ,python-2) |