[Lunar-commits] r24116 - moonbase/trunk/libs/erlang

Dennis Veatch stumbles at lunar-linux.org
Wed Apr 18 03:14:31 CEST 2007


Author: stumbles
Date: 2007-04-18 03:14:31 +0200 (Wed, 18 Apr 2007)
New Revision: 24116

Modified:
   moonbase/trunk/libs/erlang/BUILD
   moonbase/trunk/libs/erlang/CONFIGURE
   moonbase/trunk/libs/erlang/DETAILS
Log:

Version bump with mostly bugfixes. Reworked the scripts.



Modified: moonbase/trunk/libs/erlang/BUILD
===================================================================
--- moonbase/trunk/libs/erlang/BUILD	2007-04-17 23:42:06 UTC (rev 24115)
+++ moonbase/trunk/libs/erlang/BUILD	2007-04-18 01:14:31 UTC (rev 24116)
@@ -1,13 +1,16 @@
 (
 
-  bad_flags ALL
-  
-  OPTS="$OPTS --enable-threads"
+# threads are automatic with enabled smp support
+  if [ "$USE_SMP" == "n" ]; then
+    OPTS="$OPTS --disable-smp-support --enable-threads"
+   else
+    OPTS="$OPTS --enable-smp-support"
+  fi &&
 
-  ./configure   --prefix=/usr  &&
+  ./configure   --prefix=/usr  \
+                $OPTS         &&
 
   default_make
 
 
 ) > $C_FIFO 2>&1
-  

Modified: moonbase/trunk/libs/erlang/CONFIGURE
===================================================================
--- moonbase/trunk/libs/erlang/CONFIGURE	2007-04-17 23:42:06 UTC (rev 24115)
+++ moonbase/trunk/libs/erlang/CONFIGURE	2007-04-18 01:14:31 UTC (rev 24116)
@@ -2,5 +2,6 @@
   if query "Install j2sdk for Java support? " y; then
       lin j2sdk
   fi
-fi
+fi &&
 
+mquery USE_SMP "Enable SMP support?" n

Modified: moonbase/trunk/libs/erlang/DETAILS
===================================================================
--- moonbase/trunk/libs/erlang/DETAILS	2007-04-17 23:42:06 UTC (rev 24115)
+++ moonbase/trunk/libs/erlang/DETAILS	2007-04-18 01:14:31 UTC (rev 24116)
@@ -1,14 +1,14 @@
           MODULE=erlang
-         VERSION=R11B-1
+         VERSION=R11B-4
           SOURCE=otp_src_${VERSION}.tar.gz
 SOURCE_DIRECTORY=$BUILD_DIRECTORY/otp_src_${VERSION}
       SOURCE_URL=http://www.erlang.org/download/
-      SOURCE_VFY=sha1:5831578f1c189a2cdf23b19b045be19589cd918f
+      SOURCE_VFY=sha1:10e37b6efe6e273f4593ea3764daeecaa17152e5
         WEB_SITE=http://www.erlang.org
          ENTERED=20021120
-         UPDATED=20060921
+         UPDATED=20070417
            SHORT="General-purpose programming language and runtime environment"
-
+           PSAFE=no
 cat << EOF
 Erlang is a general-purpose programming language and runtime
 environment. Erlang has built-in support for concurrency, distribution



More information about the Lunar-commits mailing list