Commit 7cc72564 authored by Filippo Carone's avatar Filippo Carone

pic libraries are now correctly installed when needed:

* --enable-pic added in configure.ac
* bootstrap modified to use BUILD_PIC in place of BUILD_MOZILLA where needed
parent 31c1e82e
......@@ -305,7 +305,7 @@ else
;; \
esac; \
done
if BUILD_MOZILLA
if BUILD_PIC
@z=\$\$(\$(VLC_CONFIG) --list builtin); \
for mod in \$(mods); do \
case "\$\$z " \
......@@ -345,7 +345,7 @@ else
;; \
esac; \
done
if BUILD_MOZILLA
if BUILD_PIC
@z=\$\$(\$(VLC_CONFIG) --list builtin); \
for mod in \$(mods); do \
case "\$\$z " \
......
......@@ -5256,6 +5256,17 @@ then
build_pic=yes
fi
dnl
dnl Enable pic libraries
dnl
AC_ARG_ENABLE(pic,
[ --enable-pic Enable pic libraries (default disabled)])
AM_CONDITIONAL(BUILD_PIC, [test "${enable_pic}" = "yes"])
if test "${enable_pic}" = "yes"
then
build_pic=yes
fi
dnl
dnl test plugins
......
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