Commit 51c792ff authored by Rafaël Carré's avatar Rafaël Carré

id3tag plugin can now be disabled

parent 7d637e88
...@@ -2845,10 +2845,16 @@ fi ...@@ -2845,10 +2845,16 @@ fi
dnl dnl
dnl libid3tag support (FIXME!!! doesn't work with new input) dnl libid3tag support (FIXME!!! doesn't work with new input)
dnl dnl
AC_CHECK_HEADERS(id3tag.h, [ AC_ARG_ENABLE( id3tag,
AC_CHECK_HEADERS(zlib.h, [ [ --disable-id3tag id3tag metadata reader plugin (default enabled)])
VLC_ADD_LDFLAGS([id3tag],[-lid3tag -lz]) AS_IF([test "${enable_id3tag}" != "no"], [
VLC_ADD_PLUGINS([id3tag])]) ]) AC_CHECK_HEADERS(id3tag.h, [
AC_CHECK_HEADERS(zlib.h, [
VLC_ADD_LDFLAGS([id3tag],[-lid3tag -lz])
VLC_ADD_PLUGINS([id3tag])
])
])
])
dnl dnl
dnl ffmpeg decoder/demuxer plugin dnl ffmpeg decoder/demuxer plugin
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment