changeset 1737:5ff85a33bb11

Turn off plugin by default and warn about its use. 2010-07-21 Andrew John Hughes <ahughes@redhat.com> * configure.ac: Turn off plugin by default and warn about its use.
author Andrew John Hughes <ahughes@redhat.com>
date Wed, 21 Jul 2010 09:30:05 +0100
parents 77b720a556d3
children 3ac8e6470d4f
files ChangeLog configure.ac
diffstat 2 files changed, 10 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed Jul 21 09:22:50 2010 +0100
+++ b/ChangeLog	Wed Jul 21 09:30:05 2010 +0100
@@ -1,3 +1,8 @@
+2010-07-21  Andrew John Hughes  <ahughes@redhat.com>
+
+	* configure.ac:
+	Turn off plugin by default and warn about its use.
+
 2010-07-20  Andrew John Hughes  <ahughes@redhat.com>
 
 	* overlays/nio2/openjdk/jdk/src/solaris/native/sun/nio/fs/UnixNativeDispatcher.c:
--- a/configure.ac	Wed Jul 21 09:22:50 2010 +0100
+++ b/configure.ac	Wed Jul 21 09:30:05 2010 +0100
@@ -95,10 +95,14 @@
 AC_ARG_ENABLE([plugin],
               [AS_HELP_STRING([--disable-plugin],
                               [Disable compilation of browser plugin])],
-              [enable_plugin="${enableval}"], [enable_plugin="yes"])
+              [enable_plugin="${enableval}"], [enable_plugin="no"])
 AM_CONDITIONAL(ENABLE_PLUGIN, test "x${enable_plugin}" = "xyes")
 AC_MSG_RESULT(${enable_plugin})
 
+if test "x${enable_plugin}" = "xyes"; then
+  AC_MSG_WARN([The plugin supplied with IcedTea6 ${PACKAGE_VERSION} is no longer maintained.  Please upgrade to IcedTea6 1.7.3 or later for plugin support.])
+fi
+
 AC_MSG_CHECKING([whether to build the new experimental browser plugin based on npruntime])
 AC_ARG_ENABLE([npplugin],
               [AS_HELP_STRING([--enable-npplugin],