Author: glen                         Date: Thu Oct 30 11:01:08 2008 GMT
Module: SOURCES                       Tag: MYSQL_5_0
---- Log message:
- another ugly hack for the insane alpha stacksize:
[EMAIL PROTECTED] ~$ ulimit -s
8192
[EMAIL PROTECTED] ~$ make
sh -c 'ulimit -s'
18014398509481983
[EMAIL PROTECTED] ~$ cat Makefile
all:
   sh -c 'ulimit -s'
Actual error from build:
./gen_lex_hash > lex_hash.h-t
gen_lex_hash: allocatestack.c:404: allocate_stack: Assertion `size != 0' failed.
Abort

---- Files affected:
SOURCES:
   mysql-alpha-stack.patch (NONE -> 1.1.2.1)  (NEW)

---- Diffs:

================================================================
Index: SOURCES/mysql-alpha-stack.patch
diff -u /dev/null SOURCES/mysql-alpha-stack.patch:1.1.2.1
--- /dev/null   Thu Oct 30 12:01:08 2008
+++ SOURCES/mysql-alpha-stack.patch     Thu Oct 30 12:01:02 2008
@@ -0,0 +1,11 @@
+--- mysql-5.0.68/sql/Makefile.am~      2008-10-29 05:57:43.000000000 +0000
++++ mysql-5.0.68/sql/Makefile.am       2008-10-30 13:47:56.000000000 +0000
+@@ -167,7 +167,7 @@
+ # this avoid the rebuild of the built files in a source dist
+ lex_hash.h:   gen_lex_hash.cc lex.h
+               $(MAKE) $(AM_MAKEFLAGS) gen_lex_hash$(EXEEXT)
+-              ./gen_lex_hash$(EXEEXT) > [EMAIL PROTECTED]
++              sh -c 'ulimit -s 8192; ./gen_lex_hash$(EXEEXT) > [EMAIL 
PROTECTED]'
+               $(MV) [EMAIL PROTECTED] $@
+ 
+ # For testing of udf_example.so
================================================================
_______________________________________________
pld-cvs-commit mailing list
[email protected]
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit

Reply via email to