Commit c5e0f9db authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fail loudly if --enable-java-bindings is used

as it does not work anymore
parent 456aa837
...@@ -201,6 +201,10 @@ New Localizations: ...@@ -201,6 +201,10 @@ New Localizations:
* Persian * Persian
* Polish * Polish
Developpers:
* LibVLC now supports externally built plugins properly.
A "vlc-plugin" pkg-config package is provided.
* Java bindings are now built from a separate source.
Changes between 0.8.6e and 0.8.6f: Changes between 0.8.6e and 0.8.6f:
---------------------------------- ----------------------------------
......
...@@ -6167,19 +6167,11 @@ dnl ...@@ -6167,19 +6167,11 @@ dnl
dnl Java bindings dnl Java bindings
dnl dnl
AC_ARG_ENABLE(java-bindings, AC_ARG_ENABLE(java-bindings,
[ --enable-java-bindings Enable Java bindings (default disabled)]) [ --enable-java-bindings Always fail for historical reasons],,
if test "${enable_java_bindings}" = "yes" [enable_java_bindings="no"])
then AS_IF([test "${enable_java_bindings}" != "no"], [
echo "" AC_MSG_ERROR([Java bindings are now built from a separate source package])
echo "****** WARNING **** WARNING ***** WARNING *************" ])
echo "*** To compile the java bindings go to the "
echo "*** bindings/java folder and run mvn install. "
echo "*** You need maven2 installed. "
echo "*** This configuration will continue, so you will be "
echo "*** able to compile VideoLAN as usual. "
echo "*******************************************************"
echo ""
fi
dnl dnl
dnl test plugins 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