From 2e1786908dd448b6ce86c08d917f12b556c0678e Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Fri, 03 Aug 2007 15:31:30 +0000
Subject: [PATCH] Update the build script so that the server can use up to 192MB of memory when compiling, generating javadoc, running unit tests, etc.

---
 opends/build.xml |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/opends/build.xml b/opends/build.xml
index 5e18d8e..890626a 100644
--- a/opends/build.xml
+++ b/opends/build.xml
@@ -257,7 +257,7 @@
       </not>
     </condition>
 
-    <condition property="MEM" value="128M">
+    <condition property="MEM" value="192M">
       <not>
         <isset property="MEM" />
       </not>
@@ -563,7 +563,7 @@
   <target name="rebuild"
        description="Rebuild the server without destroying config or data.">
     <!-- Set the amount of memory to use for the build -->
-    <condition property="MEM" value="128M">
+    <condition property="MEM" value="192M">
       <not>
         <isset property="MEM" />
       </not>
@@ -1463,7 +1463,7 @@
   <target name="buildtools" depends="init"
         description="Builds the build tools">
     <!-- Set the amount of memory to use for the build -->
-    <condition property="MEM" value="128M">
+    <condition property="MEM" value="192M">
       <not>
         <isset property="MEM" />
       </not>

--
Gitblit v1.10.0