From d70317a96c6335d5e4e77758c336e91bced9be5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Paul=20K=C3=BChne?= Date: Fri, 10 Aug 2012 16:02:33 +0200 Subject: [PATCH 13/20] fix libtool --- modules/arm_neon/Makefile.am | 4 ++++ modules/video_filter/Modules.am | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/modules/arm_neon/Makefile.am b/modules/arm_neon/Makefile.am index 4e73a4f..8631f76 100644 --- a/modules/arm_neon/Makefile.am +++ b/modules/arm_neon/Makefile.am @@ -1,3 +1,7 @@ +# When using a specific AS tool instead of gcc libtool goes mad +# without this. (This is the case with iOS). +LIBTOOL=@LIBTOOL@ --tag=CC + neondir = $(pluginsdir)/arm_neon libsimple_channel_mixer_neon_plugin_la_SOURCES = \ diff --git a/modules/video_filter/Modules.am b/modules/video_filter/Modules.am index 3bb8cdb..542abaa 100644 --- a/modules/video_filter/Modules.am +++ b/modules/video_filter/Modules.am @@ -1,3 +1,7 @@ +# When using a specific AS tool instead of gcc libtool goes mad +# without this. (This is the case with iOS). +LIBTOOL=@LIBTOOL@ --tag=CC + SOURCES_mosaic = mosaic.c mosaic.h SOURCES_transform = transform.c SOURCES_invert = invert.c -- 1.9.3 (Apple Git-50)