[vmkit-commits] [vmkit] r183678 - Adding Incinerator feature to J3. Updating configuration.

Koutheir Attouchi koutheir at gmail.com
Mon Jun 10 09:19:17 PDT 2013


Author: koutheir
Date: Mon Jun 10 11:19:17 2013
New Revision: 183678

URL: http://llvm.org/viewvc/llvm-project?rev=183678&view=rev
Log:
Adding Incinerator feature to J3. Updating configuration.

Removed:
    vmkit/branches/incinerator/autoconf/.gitignore
Modified:
    vmkit/branches/incinerator/autoconf/AutoRegen.sh
    vmkit/branches/incinerator/autoconf/configure.ac

Removed: vmkit/branches/incinerator/autoconf/.gitignore
URL: http://llvm.org/viewvc/llvm-project/vmkit/branches/incinerator/autoconf/.gitignore?rev=183677&view=auto
==============================================================================
--- vmkit/branches/incinerator/autoconf/.gitignore (original)
+++ vmkit/branches/incinerator/autoconf/.gitignore (removed)
@@ -1,3 +0,0 @@
-aclocal.m4
-autom4te.cache/
-configure.bak

Modified: vmkit/branches/incinerator/autoconf/AutoRegen.sh
URL: http://llvm.org/viewvc/llvm-project/vmkit/branches/incinerator/autoconf/AutoRegen.sh?rev=183678&r1=183677&r2=183678&view=diff
==============================================================================
--- vmkit/branches/incinerator/autoconf/AutoRegen.sh (original)
+++ vmkit/branches/incinerator/autoconf/AutoRegen.sh Mon Jun 10 11:19:17 2013
@@ -25,11 +25,11 @@ elif test -d ../../llvm/autoconf/m4 ; th
 else
   while true ; do
     echo "LLVM source root not found." 
-    read -p "Enter full path to LLVM source:"
+    read -p "Enter full path to LLVM source:" -r REPLY
     if test -d "$REPLY/autoconf/m4" ; then
       llvm_src_root="$REPLY"
       llvm_m4="$REPLY/autoconf/m4"
-      read -p "Enter full path to LLVM objects (empty for same as source):"
+      read -p "Enter full path to LLVM objects (empty for same as source):" -r REPLY
       if test -d "$REPLY" ; then
         llvm_obj_root="$REPLY"
       else

Modified: vmkit/branches/incinerator/autoconf/configure.ac
URL: http://llvm.org/viewvc/llvm-project/vmkit/branches/incinerator/autoconf/configure.ac?rev=183678&r1=183677&r2=183678&view=diff
==============================================================================
--- vmkit/branches/incinerator/autoconf/configure.ac (original)
+++ vmkit/branches/incinerator/autoconf/configure.ac Mon Jun 10 11:19:17 2013
@@ -340,6 +340,20 @@ esac
 
 AC_SUBST(classpathimpl)
 
+dnl **************************************************************************
+dnl Kill stale references
+dnl **************************************************************************
+AC_ARG_ENABLE(incinerator,
+              AS_HELP_STRING([--enable-incinerator],
+                             [Use incinerator to kill stale references in OSGi (default is NO)]),,
+                             enable_incinerator=no)
+case "$enable_incinerator" in
+  yes) AC_DEFINE(RESET_STALE_REFERENCES,[1]) ;;
+  no)  ;; #AC_DEFINE(RESET_STALE_REFERENCES,[0]) ;;
+  *) AC_MSG_ERROR([Invalid setting for --enable-incinerator. Use "yes" or "no"]) ;;
+esac
+
+
 dnl===-----------------------------------------------------------------------===
 dnl===
 dnl=== SECTION 4: Check for programs we need and that they are the right version





More information about the vmkit-commits mailing list