Hi Claude, all!

[EMAIL PROTECTED] wrote:
Hi Joerg,

Thank for your answer.
 Her e are some details that you requested.


That other request was about MySQL 5.0.18 on Solaris 10, but I do not
remember any answer how that continued.
I have no idea why "libtool" causes such problems on Solaris.


I already red this email, but this has not explain/given a clear solution.
I can confirm that the AR value in my Makefile (or I am not right? ) is setted
to false.

Ok, that is causing all following effects.


I tried to set this AR field to true (or blank) , but it has nothing brought.

No, it cannot help - the correct command is (as I wrote)
   ar cru .libs/libz.a  adler32.o compress.o ...
so you need a setting
   AR=ar

This should be done by "configure" when it searches your machine for "ar", so I suspect you have no "ar" installed.

If you do not know what "ar" is used for, you need a basic text about compiling, building libraries, and linking: "ar" is a program to combine several object modules ("adler32.o", "compress.o", ...) into one library or "archive" ("libz.a"), which the linker will use later.

You should verify that "type ar" or "which ar" gives the name of an executable program, maybe "/usr/bin/ar" or so.
If you have no program "ar" installed, the build will fail.

So either ensure that your PATH includes "ar", or install it.



Do other calls "libtool ..... --mode=link" succeed in your build ?

The make try some "Entering directory /tmp/mysql-5.0.22 " Nothing to be done
Leaving....  , until the /zlib directory.

It seems in my  make that is the first  call and after that the make stopped....

Ok, at least consistent.


Which version of libtool do you have installed ?

The libtool used is 1.5.20 .

Sounds ok.


Typical versions we use are 1.4.3 and 1.5.6, depending on the hosts,
but I still suspect somehow "AR" has got a wrong value.

I hope that is help you

It is you who needs the help - I hope this here does.

Joerg

--
Joerg Bruehe, Senior Production Engineer
MySQL AB, www.mysql.com

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to