Subject: | typo in POD, linking against libXext unnecessary |
Hi,
I'm forwarding two small patches from the Debian packaging of X11-GUITest 0.27: an insignificant typo, and a library less to link against (which reduces package dependencies and thus makes library transitions easier).
Florian
Subject: | 01-fix-spelling-error.diff |
Description: Fix spelling error
Author: Fabrizio Regalli <fabreg@fabreg.it>
Last-Update: 2011-07-26
Forwarded: no
--- a/GUITest.pm
+++ b/GUITest.pm
@@ -973,7 +973,7 @@
Braces are used to quote special characters, for utilizing aliased key
names, or for special functionality. Multiple characters can be specified
in a brace by space delimiting the entries. Characters can be repeated using
-a number that is space delimited after the preceeding key.
+a number that is space delimited after the preceding key.
Quote Special Characters
Subject: | useless-dependency-on-libXext.patch |
Description: do not link against libXext, we use none of its symbols
Author: Florian Schlichting <fsfs@debian.org>
Forwarded:
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -46,9 +46,9 @@
my $un = `uname -a 2>&1` || "";
if ($un =~ /x86_64|amd64/i && $un !~ /OpenBSD/) {
# In case of x64, lets make sure we use x64 libs, system might have both.
- return ['-L/usr/X11R6/lib64 -L/usr/X/lib64 -lXtst -lXext -lX11'];
+ return ['-L/usr/X11R6/lib64 -L/usr/X/lib64 -lXtst -lX11'];
} else {
- return ['-L/usr/X11R6/lib -L/usr/X/lib -lXtst -lXext -lX11'];
+ return ['-L/usr/X11R6/lib -L/usr/X/lib -lXtst -lX11'];
}
}