Hi,
My configure/compilation script is:
------------------
#!/usr/bin/ksh
D=mysql-4.0.13
#PORT=3306
PORT=3406
H=/usr/local/mysql-4-test
CC="cc -pthread"
export CC
CXX="cxx -pthread -O"
export CXX
cd $D
./configure \
--prefix=$H
--with-mysqld-user=mysql\
--with-tcp-port=$PORT\
--with-unix-socket-path=$H/var/mysql.sock\
--with-named-thread-libs="-lpthread -lmach -lexc -lc"\
--enable-thread-safe-client
gmake
------------------
I get this error in the output of the configure, but it goes on and
compiles with user as root instead of mysql as I specified in my script.
This worked fine under 3.x.
------------------
./do4[14]: --with-mysqld-user=mysql: not found
cd libmysql; gmake link_sources
gmake[1]: Entering directory `/src/net/db/mysql/mysql-4.0.13/libmysql'
------------------
This is just part of the output from my 'do4' script.
Thanks,
Douglas
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]