perl-Tk/perl-Tk-freetype25.patch
Andreas Bierfert 85c5767e45 804.031-6
- add patch from Yaakov Selkowitz to fix freetype detection (rhbz#1110872)
2014-06-20 16:31:30 +02:00

20 lines
517 B
Diff

--- a/perl-Tk-freetype25.patch
+++ a/perl-Tk-freetype25.patch
@@ -0,0 +1,16 @@
+diff --git a/myConfig b/myConfig
+index e0ace45..c0ae343 100755
+--- a/myConfig
++++ b/myConfig
+@@ -147,9 +147,9 @@ sub Ift
+ {
+ foreach (map { "$_/freetype2" } @_)
+ {
+- if (-d $_ && -d "$_/freetype" && -r "$_/freetype/freetype.h")
++ if (-d $_ && -r "$_/freetype.h")
+ {
+- print "Using -I$_ to find $_/freetype/freetype.h\n";
++ print "Using -I$_ to find $_/freetype.h\n";
+ return "-I$_";
+ }
+ }