[kaffe] CVS kaffe (robilad): disable the mozilla plugin build by default

Kaffe CVS cvs-commits at kaffe.org
Fri Jul 14 13:35:54 PDT 2006


PatchSet 7337 
Date: 2006/07/14 20:21:39
Author: robilad
Branch: HEAD
Tag: (none) 
Log:
disable the mozilla plugin build by default

2006-07-14  Dalibor Topic  <robilad at kaffe.org>

        * configure.ac: Disable mozilla plugin building by
        default.

Members: 
	ChangeLog:1.4840->1.4841 
	configure:1.553->1.554 
	configure.ac:1.231->1.232 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.4840 kaffe/ChangeLog:1.4841
--- kaffe/ChangeLog:1.4840	Fri Jul 14 19:15:19 2006
+++ kaffe/ChangeLog	Fri Jul 14 20:21:39 2006
@@ -1,3 +1,8 @@
+2006-07-14  Dalibor Topic  <robilad at kaffe.org>
+
+	* configure.ac: Disable mozilla plugin building by 
+	default.
+
 2006-07-14  Ito Kazumitsu  <kaz at maczuka.gcd.org>
 
 	* test/jni/Makefile.am: (AM_CFLAGS):
Index: kaffe/configure
diff -u kaffe/configure:1.553 kaffe/configure:1.554
--- kaffe/configure:1.553	Thu Jul 13 20:22:40 2006
+++ kaffe/configure	Fri Jul 14 20:21:41 2006
@@ -1098,7 +1098,7 @@
                           default=yes
   --disable-gtk-peer      compile GTK native peers (disabled by --disable-jni)
                           default=yes
-  --disable-plugin        compile gcjwebplugin (disabled by --disable-plugin)
+  --enable-plugin         compile gcjwebplugin (disabled by --disable-plugin)
                           default=yes
   --disable-boehm-gc-configuration
                           Don't run boehm-gc configure script. Boehm gc does
@@ -25361,7 +25361,7 @@
                 *) COMPILE_PLUGIN=yes ;;
               esac
 else
-  COMPILE_PLUGIN=yes
+  COMPILE_PLUGIN=no
 fi;
 
 
@@ -50966,6 +50966,10 @@
 
 if test x"$enable_native_awt" = x"no"; then
   ac_configure_args="$ac_configure_args --disable-gtk-peer"
+fi
+
+if test x"$COMPILE_PLUGIN" = x"no"; then
+  ac_configure_args="$ac_configure_args --disable-plugin"
 fi
 
 ac_configure_args="$ac_configure_args --with-vm=${prefix}/bin/kaffe"
Index: kaffe/configure.ac
diff -u kaffe/configure.ac:1.231 kaffe/configure.ac:1.232
--- kaffe/configure.ac:1.231	Thu Jul 13 20:22:56 2006
+++ kaffe/configure.ac	Fri Jul 14 20:21:53 2006
@@ -802,16 +802,16 @@
 AM_CONDITIONAL(CREATE_GTK_PEER_LIBRARIES, test "x${COMPILE_GTK_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])],
+              [AS_HELP_STRING(--enable-plugin,compile gcjwebplugin (disabled by --disable-plugin) [default=yes])],
               [case "${enableval}" in
                 yes) COMPILE_PLUGIN=yes ;;
                 no) COMPILE_PLUGIN=no ;;
                 *) COMPILE_PLUGIN=yes ;;
               esac],
-              [COMPILE_PLUGIN=yes])
+              [COMPILE_PLUGIN=no])
 AM_CONDITIONAL(CREATE_PLUGIN, test "x${COMPILE_PLUGIN}" = xyes)
 
 dnl -----------------------------------------------------------------------
@@ -2475,6 +2475,10 @@
 
 if test x"$enable_native_awt" = x"no"; then
   ac_configure_args="$ac_configure_args --disable-gtk-peer"
+fi
+
+if test x"$COMPILE_PLUGIN" = x"no"; then
+  ac_configure_args="$ac_configure_args --disable-plugin"
 fi
 
 ac_configure_args="$ac_configure_args --with-vm=${prefix}/bin/kaffe"




More information about the kaffe mailing list