summaryrefslogtreecommitdiff
path: root/games/koth/patches
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2006-10-14 01:44:23 +0000
committerrillig <rillig@pkgsrc.org>2006-10-14 01:44:23 +0000
commit7be8c25d5aa6bcafe53a98bed96707697185d85c (patch)
tree6b468f0d6fbd1d873d3b46927c905036037a1b35 /games/koth/patches
parentcb958ce8079eb1bc2d4ecd196290f29c7ca7c3b6 (diff)
downloadpkgsrc-7be8c25d5aa6bcafe53a98bed96707697185d85c.tar.gz
Fixed "test ==".
Diffstat (limited to 'games/koth/patches')
-rw-r--r--games/koth/patches/patch-ad13
-rw-r--r--games/koth/patches/patch-ae13
2 files changed, 26 insertions, 0 deletions
diff --git a/games/koth/patches/patch-ad b/games/koth/patches/patch-ad
new file mode 100644
index 00000000000..e07b0843db2
--- /dev/null
+++ b/games/koth/patches/patch-ad
@@ -0,0 +1,13 @@
+$NetBSD: patch-ad,v 1.1 2006/10/14 01:50:42 rillig Exp $
+
+--- configure.orig 2006-10-14 03:44:05.000000000 +0200
++++ configure 2006-10-14 03:49:57.000000000 +0200
+@@ -1109,7 +1109,7 @@ CFLAGS="-g -O2 -Wall -Wimplicit $USER_CF
+ # Check whether --enable-client or --disable-client was given.
+ if test "${enable_client+set}" = set; then
+ enableval="$enable_client"
+- if test $enableval == no; then
++ if test $enableval = no; then
+ echo "$ac_t""Skipping libggi detection - you will only be able to build the server!" 1>&6
+ DO_USE_GGI=0
+ else
diff --git a/games/koth/patches/patch-ae b/games/koth/patches/patch-ae
new file mode 100644
index 00000000000..5e3b43bb09a
--- /dev/null
+++ b/games/koth/patches/patch-ae
@@ -0,0 +1,13 @@
+$NetBSD: patch-ae,v 1.1 2006/10/14 01:50:42 rillig Exp $
+
+--- configure.in.orig 2003-02-06 03:17:17.000000000 +0100
++++ configure.in 2006-10-14 03:49:24.000000000 +0200
+@@ -15,7 +15,7 @@ AC_PROG_RANLIB
+ CFLAGS="-g -O2 -Wall -Wimplicit $USER_CFLAGS"
+ dnl Checks for library functions.
+ AC_ARG_ENABLE(client, [ --disable-client disable libggi detection (can only build server)],
+- if test $enableval == no; then
++ if test $enableval = no; then
+ AC_MSG_RESULT([Skipping libggi detection - you will only be able to build the server!])
+ DO_USE_GGI=0
+ else