Well it seems for me that the ./configure has some problems...
This:
else
mysql=no
echo "$ac_t""no" 1>&6
{ echo "configure: error: Invalid MySQL directory - unable to find mysql.h under $mysql" 1>&2; exit 1; }
fi
mysql=no
echo "$ac_t""no" 1>&6
{ echo "configure: error: Invalid MySQL directory - unable to find mysql.h under $mysql" 1>&2; exit 1; }
fi
it should be this:
else
echo "$ac_t""no" 1>&6
{ echo "configure: error: Invalid MySQL directory - unable to find mysql.h under $mysql" 1>&2; exit 1; }
mysql=no
fi
echo "$ac_t""no" 1>&6
{ echo "configure: error: Invalid MySQL directory - unable to find mysql.h under $mysql" 1>&2; exit 1; }
mysql=no
fi
and it will echo the right
path.
Also in /usr/lib/mysql I have directly the mysql.h
file, not an include file.
I'm wondering if I have some mysql missing files...
what you have in /usr/lib/mysql guys ? (RedHat or
Mandrake)
Yours,
M
-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Marian Vasile
Sent: Thursday, December 12, 2002 11:49 AM
To: [EMAIL PROTECTED]
Subject: [aseek-users] What is wrong with: ./configure --with-mysql=/usr/lib/mysql/ ???I tried:
./configure --with-mysql=/usr/lib/mysql/
and I got:
checking for MySQL support... no
configure: error: Invalid MySQL directory - unable to find mysql.h under no
I don't get it ?
under: "no"... it should be, at least, the path over there...
I have also tried:
./configure --with-mysql=/usr/lib/mysql/
./configure --with-mysql=/usr/lib/mysql
./configure --with-mysql=yes
./configure --with-mysql
but all the time this error:
configure: error:
***
*** You should select database!
***Yours,M
