diff options
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 7231ff80c9..73923e7908 100644 --- a/configure.in +++ b/configure.in @@ -1250,7 +1250,12 @@ XB_FIND_SONAME([VORBIS], [vorbis]) XB_FIND_SONAME([VORBISFILE], [vorbisfile]) XB_FIND_SONAME([MODPLUG], [modplug]) XB_FIND_SONAME([ASS], [ass]) -XB_FIND_SONAME([MPEG2], [mpeg2]) + +#link statically against mpeg2 on ios because of ios7 +#crash & burn if dyloaded +if test "$ARCH" != "arm-osx" ; then + XB_FIND_SONAME([MPEG2], [mpeg2]) +fi # Audio encoders if test "x$use_libmp3lame" != "xno"; then |