From 8b1ee6a2b1c7b3dc229d4db2b1d43ca6201b3d51 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 5 Sep 2016 20:51:23 +0200 Subject: [PATCH] Update --- cores/libretro-ffmpeg/Makefile | 6 ------ cores/libretro-ffmpeg/Makefile.ffmpeg | 6 ++++++ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/cores/libretro-ffmpeg/Makefile b/cores/libretro-ffmpeg/Makefile index bba468a2e1..83a20ca352 100644 --- a/cores/libretro-ffmpeg/Makefile +++ b/cores/libretro-ffmpeg/Makefile @@ -187,12 +187,6 @@ else CFLAGS += -O3 endif -ifeq ($(HAVE_NEON),1) - CFLAGS += -DHAVE_INTRINSICS_NEON=1 -else - CFLAGS += -DHAVE_INTRINSICS_NEON=0 -endif - OBJECTS := $(SOURCES_C:.c=.o) $(SOURCES_CXX:.cpp=.o) all: $(TARGET) diff --git a/cores/libretro-ffmpeg/Makefile.ffmpeg b/cores/libretro-ffmpeg/Makefile.ffmpeg index 7417dc0ec2..2ed09c31dd 100644 --- a/cores/libretro-ffmpeg/Makefile.ffmpeg +++ b/cores/libretro-ffmpeg/Makefile.ffmpeg @@ -72,6 +72,12 @@ else DEPS_SOURCE += $(wildcard $(DEPS_DIR)/libmp3lame/*.c) endif +ifeq ($(HAVE_NEON),1) + DEFINES += -DHAVE_INTRINSICS_NEON=1 +else + DEFINES += -DHAVE_INTRINSICS_NEON=0 +endif + ifeq ($(INTERNAL_LIBSPEEX),0) #LIBS += -lspeex #HAVE_LIBSPEEX = 1