summaryrefslogtreecommitdiff
path: root/emulators/retroarch
diff options
context:
space:
mode:
authornia <nia@pkgsrc.org>2018-08-08 23:21:12 +0000
committernia <nia@pkgsrc.org>2018-08-08 23:21:12 +0000
commit98f913ccfa92e0a1979e17432fd0a036a72b1090 (patch)
treef2d5f1eb18073625e01f8cb1d53915669e44a396 /emulators/retroarch
parent40b2333491039f250cdec951496826fc44bbcd65 (diff)
downloadpkgsrc-98f913ccfa92e0a1979e17432fd0a036a72b1090.tar.gz
emulators/retroarch: Remove old patches.
Diffstat (limited to 'emulators/retroarch')
-rw-r--r--emulators/retroarch/patches/patch-Makefile.common24
-rw-r--r--emulators/retroarch/patches/patch-audio_audio__utils.c22
-rw-r--r--emulators/retroarch/patches/patch-audio_audio__utils.h13
-rw-r--r--emulators/retroarch/patches/patch-audio_drivers__resampler_cc__resampler.c13
-rw-r--r--emulators/retroarch/patches/patch-audio_drivers__resampler_sinc.c31
-rw-r--r--emulators/retroarch/patches/patch-performance.c31
-rw-r--r--emulators/retroarch/patches/patch-qb_config.libs.sh22
-rw-r--r--emulators/retroarch/patches/patch-qb_qb.libs.sh13
8 files changed, 0 insertions, 169 deletions
diff --git a/emulators/retroarch/patches/patch-Makefile.common b/emulators/retroarch/patches/patch-Makefile.common
deleted file mode 100644
index 56b6d7189c7..00000000000
--- a/emulators/retroarch/patches/patch-Makefile.common
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-Makefile.common,v 1.1 2015/02/04 22:56:43 jmcneill Exp $
-
---- Makefile.common.orig 2015-02-03 06:43:44.000000000 +0000
-+++ Makefile.common
-@@ -205,9 +205,7 @@ endif
-
- ifeq ($(HAVE_OSS), 1)
- OBJ += audio/drivers/oss.o
--endif
--
--ifeq ($(HAVE_OSS_BSD), 1)
-+else ifeq ($(HAVE_OSS_BSD), 1)
- OBJ += audio/drivers/oss.o
- endif
-
-@@ -418,7 +416,7 @@ ifeq ($(HAVE_OPENGL), 1)
- endif
-
- ifeq ($(HAVE_X11), 1)
-- ifeq ($(HAVE_GLES), 0)
-+ ifneq ($(HAVE_GLES), 1)
- OBJ += gfx/drivers_context/glx_ctx.o
- endif
- ifeq ($(HAVE_EGL), 1)
diff --git a/emulators/retroarch/patches/patch-audio_audio__utils.c b/emulators/retroarch/patches/patch-audio_audio__utils.c
deleted file mode 100644
index 47a8568122d..00000000000
--- a/emulators/retroarch/patches/patch-audio_audio__utils.c
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-audio_audio__utils.c,v 1.1 2015/04/21 17:18:01 joerg Exp $
-
---- audio/audio_utils.c.orig 2015-04-17 14:35:27.000000000 +0000
-+++ audio/audio_utils.c
-@@ -216,7 +216,7 @@ void audio_convert_float_to_s16_altivec(
- }
- audio_convert_float_to_s16_C(out, in, samples_in);
- }
--#elif defined(__ARM_NEON__)
-+#elif defined(HAVE_NEON)
- /* Avoid potential hard-float/soft-float ABI issues. */
- void audio_convert_s16_float_asm(float *out, const int16_t *in,
- size_t samples, const float *gain);
-@@ -402,7 +402,7 @@ void audio_convert_float_to_s16_ALLEGREX
- **/
- void audio_convert_init_simd(void)
- {
--#if defined(__ARM_NEON__)
-+#if defined(HAVE_NEON)
- unsigned cpu = rarch_get_cpu_features();
- audio_convert_s16_to_float_arm = cpu & RETRO_SIMD_NEON ?
- audio_convert_s16_to_float_neon : audio_convert_s16_to_float_C;
diff --git a/emulators/retroarch/patches/patch-audio_audio__utils.h b/emulators/retroarch/patches/patch-audio_audio__utils.h
deleted file mode 100644
index 4ba35b48694..00000000000
--- a/emulators/retroarch/patches/patch-audio_audio__utils.h
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-audio_audio__utils.h,v 1.1 2015/04/21 17:18:01 joerg Exp $
-
---- audio/audio_utils.h.orig 2015-04-17 14:35:56.000000000 +0000
-+++ audio/audio_utils.h
-@@ -93,7 +93,7 @@ void audio_convert_s16_to_float_altivec(
- void audio_convert_float_to_s16_altivec(int16_t *out,
- const float *in, size_t samples);
-
--#elif defined(__ARM_NEON__)
-+#elif defined(HAVE_NEON)
- #define audio_convert_s16_to_float audio_convert_s16_to_float_arm
- #define audio_convert_float_to_s16 audio_convert_float_to_s16_arm
-
diff --git a/emulators/retroarch/patches/patch-audio_drivers__resampler_cc__resampler.c b/emulators/retroarch/patches/patch-audio_drivers__resampler_cc__resampler.c
deleted file mode 100644
index 7f7a76a41e5..00000000000
--- a/emulators/retroarch/patches/patch-audio_drivers__resampler_cc__resampler.c
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-audio_drivers__resampler_cc__resampler.c,v 1.1 2015/04/21 17:18:01 joerg Exp $
-
---- audio/drivers_resampler/cc_resampler.c.orig 2015-04-17 14:34:27.000000000 +0000
-+++ audio/drivers_resampler/cc_resampler.c
-@@ -388,7 +388,7 @@ static void resampler_CC_upsample(void *
- }
-
-
--#elif defined (__ARM_NEON__)
-+#elif defined (HAVE_NEON)
-
- #define CC_RESAMPLER_IDENT "NEON"
-
diff --git a/emulators/retroarch/patches/patch-audio_drivers__resampler_sinc.c b/emulators/retroarch/patches/patch-audio_drivers__resampler_sinc.c
deleted file mode 100644
index b78a0261244..00000000000
--- a/emulators/retroarch/patches/patch-audio_drivers__resampler_sinc.c
+++ /dev/null
@@ -1,31 +0,0 @@
-$NetBSD: patch-audio_drivers__resampler_sinc.c,v 1.1 2015/04/21 17:18:01 joerg Exp $
-
---- audio/drivers_resampler/sinc.c.orig 2015-02-03 06:43:44.000000000 +0000
-+++ audio/drivers_resampler/sinc.c
-@@ -399,7 +399,7 @@ static void process_sinc(rarch_sinc_resa
- /* movehl { X, R, X, L } == { X, R, X, R } */
- _mm_store_ss(out_buffer + 1, _mm_movehl_ps(sum, sum));
- }
--#elif defined(__ARM_NEON__)
-+#elif defined(HAVE_NEON)
-
- #if SINC_COEFF_LERP
- #error "NEON asm does not support SINC lerp."
-@@ -504,7 +504,7 @@ static void *resampler_sinc_new(const st
- }
-
- /* Be SIMD-friendly. */
--#if (defined(__AVX__) && ENABLE_AVX) || defined(__ARM_NEON__)
-+#if (defined(__AVX__) && ENABLE_AVX) || defined(HAVE_NEON)
- re->taps = (re->taps + 7) & ~7;
- #else
- re->taps = (re->taps + 3) & ~3;
-@@ -532,7 +532,7 @@ static void *resampler_sinc_new(const st
- RARCH_LOG("Sinc resampler [AVX]\n");
- #elif defined(__SSE__)
- RARCH_LOG("Sinc resampler [SSE]\n");
--#elif defined(__ARM_NEON__)
-+#elif defined(HAVE_NEON)
- process_sinc_func = mask & RESAMPLER_SIMD_NEON
- ? process_sinc_neon : process_sinc_C;
- RARCH_LOG("Sinc resampler [%s]\n",
diff --git a/emulators/retroarch/patches/patch-performance.c b/emulators/retroarch/patches/patch-performance.c
deleted file mode 100644
index d661905f049..00000000000
--- a/emulators/retroarch/patches/patch-performance.c
+++ /dev/null
@@ -1,31 +0,0 @@
-$NetBSD: patch-performance.c,v 1.1 2015/04/21 17:18:01 joerg Exp $
-
---- performance.c.orig 2015-04-17 14:36:16.000000000 +0000
-+++ performance.c
-@@ -306,7 +306,7 @@ static uint64_t xgetbv_x86(uint32_t idx)
- }
- #endif
-
--#if defined(__ARM_NEON__)
-+#if defined(HAVE_NEON)
- static void arm_enable_runfast_mode(void)
- {
- /* RunFast mode. Enables flush-to-zero and some
-@@ -464,7 +464,7 @@ uint64_t rarch_get_cpu_features(void)
- uint64_t cpu_flags = android_getCpuFeatures();
- (void)cpu_flags;
-
--#ifdef __ARM_NEON__
-+#ifdef HAVE_NEON
- if (cpu_flags & ANDROID_CPU_ARM_FEATURE_NEON)
- {
- cpu |= RETRO_SIMD_NEON;
-@@ -472,7 +472,7 @@ uint64_t rarch_get_cpu_features(void)
- }
- #endif
-
--#elif defined(__ARM_NEON__)
-+#elif defined(HAVE_NEON)
- cpu |= RETRO_SIMD_NEON;
- arm_enable_runfast_mode();
- #elif defined(__ALTIVEC__)
diff --git a/emulators/retroarch/patches/patch-qb_config.libs.sh b/emulators/retroarch/patches/patch-qb_config.libs.sh
deleted file mode 100644
index 5b8edb00d9b..00000000000
--- a/emulators/retroarch/patches/patch-qb_config.libs.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-qb_config.libs.sh,v 1.1 2015/02/04 22:56:43 jmcneill Exp $
-
---- qb/config.libs.sh.orig 2015-02-03 06:43:44.000000000 +0000
-+++ qb/config.libs.sh
-@@ -99,7 +99,7 @@ if [ "$HAVE_EGL" != "no" ]; then
- # some systems have EGL libs, but no pkgconfig
- if [ "$HAVE_EGL" = "no" ]; then
- HAVE_EGL=auto && check_lib EGL "-lEGL $EXTRA_GL_LIBS"
-- [ "$HAVE_EGL" = "yes" ] && EGL_LIBS=-lEGL
-+ [ "$HAVE_EGL" = "yes" ] && EGL_LIBS="-lEGL $EXTRA_GL_LIBS"
- else
- EGL_LIBS="$EGL_LIBS $EXTRA_GL_LIBS"
- fi
-@@ -278,7 +278,7 @@ if [ "$HAVE_EGL" = "yes" ]; then
- add_define_make GLES_CFLAGS "$GLES_CFLAGS"
- else
- HAVE_GLES=auto check_pkgconf GLES glesv2
-- [ "$HAVE_GLES" = "no" ] && HAVE_GLES=auto check_lib GLES "-lGLESv2 $EXTRA_GL_LIBS" && add_define_make GLES_LIBS "-lGLESv2 $EXTRA_GL_LIBS"
-+ [ "$HAVE_GLES" = "no" -o "$HAVE_GLES" = "auto" ] && HAVE_GLES=auto check_lib GLES "-lGLESv2 $EXTRA_GL_LIBS" && add_define_make GLES_LIBS "-lGLESv2 $EXTRA_GL_LIBS" && HAVE_GLES=yes
- fi
- fi
- if [ "$HAVE_VG" != "no" ]; then
diff --git a/emulators/retroarch/patches/patch-qb_qb.libs.sh b/emulators/retroarch/patches/patch-qb_qb.libs.sh
deleted file mode 100644
index 4f93ab69fb0..00000000000
--- a/emulators/retroarch/patches/patch-qb_qb.libs.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-qb_qb.libs.sh,v 1.1 2015/02/04 22:56:43 jmcneill Exp $
-
---- qb/qb.libs.sh.orig 2015-02-03 06:43:44.000000000 +0000
-+++ qb/qb.libs.sh
-@@ -17,7 +17,7 @@ add_include_dirs()
- { while [ "$1" ]; do INCLUDE_DIRS="$INCLUDE_DIRS -I$1"; shift; done;}
-
- add_library_dirs()
--{ while [ "$1" ]; do LIBRARY_DIRS="$LIBRARY_DIRS -L$1"; shift; done;}
-+{ while [ "$1" ]; do LIBRARY_DIRS="$LIBRARY_DIRS -Wl,-R$1 -L$1"; shift; done;}
-
- check_lib() #$1 = HAVE_$1 $2 = lib $3 = function in lib $4 = extralibs $5 = headers
- { tmpval="$(eval echo \$HAVE_$1)"