Commit 9acde997 authored by Christophe Mutricy's avatar Christophe Mutricy

Fix mozilla plugin build on AMD64. from trunk [16136]

parent 3a223f41
......@@ -5290,6 +5290,19 @@ AS_IF([test "${enable_shared_libvlc}" != "no" || test "${enable_libtool}" != "no
AC_DEFINE(HAVE_SHARED_LIBVLC, 1, [Define to 1 if libvlc is built as a shared library.])
FILE_LIBVLC_DLL="!define LIBVLC_DLL libvlc.dll"],
FILE_LIBVLC_DLL="" )
dnl
dnl we need pic on amd64 fo the mozilla plugin
case "${target_cpu}" in
x86_64)
pic=pic
;;
*)
pic=""
;;
esac
AC_SUBST(pic)
dnl Import conditional variables generated by bootstrap
VLC_CONDITIONALS
......
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