It's about time I tried out MySQL-5.0. I want to get comfortable with the stored procedures so I'm ready to go when it's released.
I'm running Gentoo ( current, of course ).
I ran:
export WANT_AUTOMAKE=1.5 export WANT_AUTOCONF_2_5=1
These are ( I think ) Gentoo-specific commands that make select the appropriate versions of the above tools ( as in the instructions in the 'installing from development source' ).
Then I ran:
aclocal
autoheader
autoconf
automake
cd innobase ; aclocal; autoheader; autoconf; automake
./configure --prefix=/usr/local/mysql --enable-assembler --enable-thread-safe-client --enable-local-infile
make
After a fair bit of compiling, I got:
gcc -O3 -DDBUG_OFF -O3 -rdynamic -o test-sslclient test-sslclient.o ../dbug/libdbug.a libvio.a ../mysys/libmysys.a ../strings/libmystrings.a -lpthread -lz -lcrypt -lnsl -lm -lpthread
make[2]: Leaving directory `/mnt/roomy/src/mysql/mysql-5.0_29-08-03/vio'
Making all in sql
make[2]: Entering directory `/mnt/roomy/src/mysql/mysql-5.0_29-08-03/sql'
bison -y -d sql_yacc.yy && mv y.tab.c sql_yacc.cc
conflicts: 380 shift/reduce
sql_yacc.yy:5962: fatal error: maximum table size (32767) exceeded
make[2]: *** [sql_yacc.cc] Error 1
make[2]: Leaving directory `/mnt/roomy/src/mysql/mysql-5.0_29-08-03/sql'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/mnt/roomy/src/mysql/mysql-5.0_29-08-03'
make: *** [all] Error 2
[EMAIL PROTECTED] mysql-5.0_29-08-03 $
Something I'm doing wrong?
Thanks!
Dan
-- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]