Hi

Hope this helps you to make mysql working on ARM architecture, too.

bye,

 -christian-

-- 
Christian Hammers    WESTEND GmbH - Aachen und Dueren     Tel 0241/701333-0
[EMAIL PROTECTED]     Internet & Security for Professionals    Fax 0241/911879
           WESTEND ist CISCO Systems Partner - Premium Certified


This isn't actually a signed-char issue.  The signedness problem comes about 
because mysql's configure script is spuriously selecting "int" rather than 
"socklen_t" as SOCKET_SIZE_TYPE.

The root cause is actually that the configure script tries to build things 
with "-g -fomit-frame-pointer -Werror".  Mixing -g and -fomit-frame-pointer 
always elicits a "may not give sensible debugging" warning; combined with 
-Werror this means that every test is deemed to have failed.  For ARM, the 
performance gain from -fomit-frame-pointer is going to be marginal anyway so 
the best thing to do is probably just to take it out.

p.





---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to