summaryrefslogtreecommitdiff
path: root/games-action/bzflag/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
commit0cf2f20608308acdf3cb922c3736446bbd8f3388 (patch)
tree07815070629c7c11000a7f51ceb8ccbccb49a809 /games-action/bzflag/files
parent1798c4aeca70ac8d0a243684d6a798fbc65735f8 (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'games-action/bzflag/files')
-rw-r--r--games-action/bzflag/files/bzflag-2.4.12-configure.patch36
-rw-r--r--games-action/bzflag/files/bzflag-2.4.12-sdl2-cppflags.patch19
-rw-r--r--games-action/bzflag/files/bzflag-2.4.12-tinfo.patch15
3 files changed, 0 insertions, 70 deletions
diff --git a/games-action/bzflag/files/bzflag-2.4.12-configure.patch b/games-action/bzflag/files/bzflag-2.4.12-configure.patch
deleted file mode 100644
index e1c546f37a34..000000000000
--- a/games-action/bzflag/files/bzflag-2.4.12-configure.patch
+++ /dev/null
@@ -1,36 +0,0 @@
---- a/configure.ac
-+++ b/configure.ac
-@@ -215,7 +215,7 @@
- AC_SUBST(AR)
- AC_SUBST(AR_FLAGS)
-
--AC_PATH_PROG(CCACHE, ccache)
-+AC_PATH_PROG(CCACHE, ccachex)
- if test "$CCACHE" ; then
- CC="ccache $CC"
- CXX="ccache $CXX"
-@@ -747,13 +747,13 @@
- #
- # the GCC version is known to be at least 4.3 because it has C++0x support
- # possible future warnings: -Wconversion (1894) -Wfloat-equal (317)
--FLAGS="-Wall -Wextra -Wcast-qual -Wredundant-decls -Wshadow -Wundef -pedantic"
-+FLAGSx="-Wall -Wextra -Wcast-qual -Wredundant-decls -Wshadow -Wundef -pedantic"
- case $host_os in
- linux*)
- AC_DEFINE(HALF_RATE_AUDIO, 1, [Half rate Audio])
- CONF_CFLAGS="$CONF_CFLAGS $FLAGS"
- CONF_CXXFLAGS="$CONF_CXXFLAGS $FLAGS"
-- case $host_vendor in
-+ case $host_vendorx in
- pc)
- if expr `$CC -dumpversion` \>= "3.4" > /dev/null ; then
- FLAGS=-mtune
-@@ -836,7 +836,7 @@
- CXXFLAGS="$user_CXXFLAGS"
- AC_DEFINE(DEBUG, 1, [Debugging enabled])
- else
-- if test "$GCC" = yes ; then
-+ if test "$GCC" = yesx ; then
- case "`$CC --version 2>&1`" in
- *LLVM*)
- # Apple LLVM falsely claims to be GCC
diff --git a/games-action/bzflag/files/bzflag-2.4.12-sdl2-cppflags.patch b/games-action/bzflag/files/bzflag-2.4.12-sdl2-cppflags.patch
deleted file mode 100644
index f7f6dfd7f14c..000000000000
--- a/games-action/bzflag/files/bzflag-2.4.12-sdl2-cppflags.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- a/configure.ac
-+++ b/configure.ac
-@@ -236,6 +236,7 @@
- AC_PROG_CC
- AC_PROG_LN_S
- AC_CHECK_PROG(AR, ar, ar)
-+PKG_PROG_PKG_CONFIG
- AC_SUBST(AR)
- AC_SUBST(AR_FLAGS)
-
-@@ -716,6 +717,8 @@
- fi
- if test "x$with_SDL" = "x2"; then
- AC_DEFINE(HAVE_SDL2, 1, [Using SDL2])
-+ PKG_CHECK_MODULES(sdl2, sdl2,
-+ [CONF_CPPFLAGS="$CONF_CPPFLAGS $sdl2_CFLAGS"],[])
- fi
-
- AM_CONDITIONAL(HAVE_SDL, test x$with_SDL = x1 -o x$with_SDL = x2)
diff --git a/games-action/bzflag/files/bzflag-2.4.12-tinfo.patch b/games-action/bzflag/files/bzflag-2.4.12-tinfo.patch
deleted file mode 100644
index aa43980b9b67..000000000000
--- a/games-action/bzflag/files/bzflag-2.4.12-tinfo.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- a/configure.ac
-+++ b/configure.ac
-@@ -125,7 +125,11 @@
- BZ_CONFIGURE_STAGE([arguments], [1 of 9])
-
- # provide a with-curses option, test for curses
--MP_WITH_CURSES
-+PKG_CHECK_MODULES(ncurses, ncurses,
-+ [CURSES_LIB="$ncurses_LIBS"]
-+ AC_DEFINE(HAVE_NCURSES_H, , [Use the header file ncurses.h]),
-+ AC_MSG_ERROR([Could not find ncurses]))
-+AC_SUBST(CURSES_LIB)
-
- # check for SDL option (enabled by default now)
- AC_ARG_WITH(SDL, AS_HELP_STRING([--without-SDL | --with-SDL={1,2}],[Do not use Simple DirectMedia Layer or force using a specific version (by default tries 2, then 1, then resorts to native platform code if available]), sdl_version="$withval", sdl_version="detect")