summary refs log tree commit diff
path: root/gnu/packages/patches
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2016-01-31 14:30:31 +0200
committerEfraim Flashner <efraim@flashner.co.il>2016-01-31 14:36:08 +0200
commite5a2edeba04406b652179e4675d845f4432baa02 (patch)
tree2076bff1c717ceaed499d0e02cbaea6850007c7b /gnu/packages/patches
parent39eefcee9773cd4a337cec639cfbdbeca27b3ad9 (diff)
downloadguix-e5a2edeba04406b652179e4675d845f4432baa02.tar.gz
gnu: perl-tk: Update to 804.033.
* gnu/packages/tcl.scm (perl-tk): Update to 804.033.
[source]: Remove patch.
* gnu/packages/patches/perl-tk-x11-discover.patch: Remove file.
* gnu-system.am (dist_patch_DATA): Remove patch.
Diffstat (limited to 'gnu/packages/patches')
-rw-r--r--gnu/packages/patches/perl-tk-x11-discover.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/gnu/packages/patches/perl-tk-x11-discover.patch b/gnu/packages/patches/perl-tk-x11-discover.patch
deleted file mode 100644
index f4365e6882..0000000000
--- a/gnu/packages/patches/perl-tk-x11-discover.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-On non-x86_64 systems, this conditional can cause a specified X11 build value
-to be overwritten to null, causing x11 discovery to fail.
-
---- a/myConfig	2014-05-12 11:16:48.152719722 -0500
-+++ b/myConfig	2014-05-12 11:16:24.704719113 -0500
-@@ -350,7 +350,7 @@
-   #
-   # Prefer 64bit libraries on certain architectures
-   #
--  unless (defined $xlib and $Config{'archname'} =~ m/x86_64/)
-+  unless (defined $xlib or not $Config{'archname'} =~ m/x86_64/)
-     {
-       $xlib64 = &lX11(0, chooseX11(</usr/X11*/lib64>));
-     }