Version 3.23.1

Made HCapturedObjects non-deletable for DCE. (issue 2987)

Use a fixed random seed per default. (issue 1880, 2885)

Fixed y-umlaut to uppercase. (issue 2984)

Performance and stability improvements on all platforms.

git-svn-id: http://v8.googlecode.com/svn/trunk@17579 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
diff --git a/Makefile b/Makefile
index bbec440..64bf7bc 100644
--- a/Makefile
+++ b/Makefile
@@ -104,6 +104,10 @@
 ifeq ($(unalignedaccess), on)
   GYPFLAGS += -Dv8_can_use_unaligned_accesses=true
 endif
+# randomseed=12345, disable random seed via randomseed=0
+ifdef randomseed
+  GYPFLAGS += -Dv8_random_seed=$(randomseed)
+endif
 # soname_version=1.2.3
 ifdef soname_version
   GYPFLAGS += -Dsoname_version=$(soname_version)