mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: perl-tk: Patch for i686
* gnu/packages/patches/perl-tk-x11-discover.patch: New patch. * gnu-system.am [dist_patch_DATA]: Add it. * gnu/packages/tcl.scm (perl-tk)[origin]: Use it.
This commit is contained in:
parent
ab6a279abb
commit
f5ea273a00
3 changed files with 18 additions and 1 deletions
14
gnu/packages/patches/perl-tk-x11-discover.patch
Normal file
14
gnu/packages/patches/perl-tk-x11-discover.patch
Normal file
|
@ -0,0 +1,14 @@
|
|||
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>));
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue