diff options
author | Léo Le Bouter <lle-bout@zaclys.net> | 2021-03-28 19:50:49 +0200 |
---|---|---|
committer | Léo Le Bouter <lle-bout@zaclys.net> | 2021-03-28 20:13:22 +0200 |
commit | b20b45c6ce67593db9d446d066e02310671ad8d7 (patch) | |
tree | b0e04151b12ea1844f0573f9f35aefb7d31c40f2 /gnu/packages/gd.scm | |
parent | b8d70b956d50a8fec0643d4dda95ff330f44a226 (diff) | |
download | guix-b20b45c6ce67593db9d446d066e02310671ad8d7.tar.gz |
gnu: gd: Patch away recent pkg-config files change that breaks php build.
* gnu/packages/patches/gd-Revert-fix-303-gdlib.pc-use-Requires-instead-of-Libs.patch: New patch. * gnu/local.mk (dist_patch_DATA): Register it. * gnu/packages/gd.scm (gd): Apply patch.
Diffstat (limited to 'gnu/packages/gd.scm')
-rw-r--r-- | gnu/packages/gd.scm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/packages/gd.scm b/gnu/packages/gd.scm index b78d0da1dd..e37c485761 100644 --- a/gnu/packages/gd.scm +++ b/gnu/packages/gd.scm @@ -51,8 +51,13 @@ (sha256 (base32 "1yypywkh8vphcy4qqpf51kxpb0a3r7rjqk3fc61rpn70hiq092j7")) - (patches (search-patches "gd-fix-tests-on-i686.patch" - "gd-brect-bounds.patch")))) + (patches + (search-patches "gd-fix-tests-on-i686.patch" + "gd-brect-bounds.patch" + ;; Drop when + ;; https://github.com/libgd/libgd/issues/691 + ;; is solved. + "gd-Revert-fix-303-gdlib.pc-use-Requires-instead-of-Libs.patch")))) (build-system gnu-build-system) (arguments ;; As recommended by github.com/libgd/libgd/issues/278 to fix rounding |