summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew John Hughes <gnu_andrew@member.fsf.org>2010-05-27 11:58:08 +0000
committerAndrew John Hughes <gnu_andrew@member.fsf.org>2010-05-27 11:58:08 +0000
commit43b6a8d2580b5c9549a58db41a0239f3929e4b91 (patch)
tree23a94a4db5c89bd1cac66af3f300746117da134f
parente6c6a0238291db27ccdaee229bda59d7981a3182 (diff)
downloadclasspath-libgcj-import-20100921.tar.gz
Disable plugin by default and warn when enabled.libgcj-import-20100921
2010-05-27 Andrew John Hughes <ahughes@redhat.com> * configure.ac: Disable plugin by default and warn about unmaintained status when enabled.
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac8
2 files changed, 12 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index f1db8fcdb..dd0c96ed9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2010-05-27 Andrew John Hughes <ahughes@redhat.com>
+
+ * configure.ac:
+ Disable plugin by default and warn about
+ unmaintained status when enabled.
+
2010-05-04 Andrew John Hughes <ahughes@redhat.com>
* configure.ac:
diff --git a/configure.ac b/configure.ac
index 7f75a6ae6..f9105e909 100644
--- a/configure.ac
+++ b/configure.ac
@@ -234,7 +234,7 @@ AC_ARG_ENABLE([qt-peer],
AM_CONDITIONAL(CREATE_QT_PEER_LIBRARIES, test "x${COMPILE_QT_PEER}" = xyes)
dnl -----------------------------------------------------------
-dnl Plugin (enabled by default)
+dnl Plugin (disabled by default)
dnl -----------------------------------------------------------
AC_ARG_ENABLE([plugin],
[AS_HELP_STRING(--disable-plugin,compile gcjwebplugin (disabled by --disable-plugin) [default=yes])],
@@ -243,7 +243,7 @@ AC_ARG_ENABLE([plugin],
no) COMPILE_PLUGIN=no ;;
*) COMPILE_PLUGIN=yes ;;
esac],
- [COMPILE_PLUGIN=yes])
+ [COMPILE_PLUGIN=no])
AM_CONDITIONAL(CREATE_PLUGIN, test "x${COMPILE_PLUGIN}" = xyes)
dnl -----------------------------------------------------------
@@ -1158,3 +1158,7 @@ cat ${srcdir}/lib/standard.omit.in > lib/standard.omit
if test x$use_escher != xtrue; then
echo gnu/java/awt/peer/x/.*java$ >> lib/standard.omit
fi
+
+if test "x${COMPILE_PLUGIN}" = "xyes" ; then
+ AC_MSG_WARN([You have enabled the browser plugin. Please note that this is no longer maintained as part of GNU Classpath; development has moved to the IcedTea project.])
+fi