0013-fix-libtool.patch 1.2 KB

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