Re: #24005 [Opn->Asn]: Distributions version of mnoGoSearch extension does not work with MySQL 4

php.internals

Sergey Kartashoff

23 years ago
Hi! Friday, June 6, 2003, 2:32:33 PM, you wrote: spn> gluke@php.net you have just been assigned to this bug by sniper@php.net spn> ./configure --with-mysql=/usr --with-gd --with-ttf --enable-track-vars spn> --with-apxs2=/usr/local/apache2/bin/apxs --with-mnogosearch spn> --with-jpeg-dir=/root/source/jpeg-6b/ spn> --with-png-dir=/usr/local/lib/libpng.a spn> --with-zlib-dir=/usr/local/lib/zlib.a spn> --with-tiff-dir=/usr/local/lib/libtiff.a --with-mnogosearch spn> It failed complaining about "ext/mysql/phpmysql.c: undefined reference spn> to mysql_create_db". I downloaded the latest php-extension from spn> www.mnogosearch.org (mnogosearch-php-extension-1.7.3.tar.gz) and spn> replaced the contents of ext/mnogosearch with the files in this archive spn> and it all worked a treat (with a quick edit to remove the second spn> reference to -lmysqlclient in the EXTRA_LIBS line the PHP Makefile... spn> but I think that mnoGo's fault!) spn> Sergey, deal with this. Could you please help me with this ? Could it be because of twice --with-mnogosearch string in configure ? I thought that error could be caused by buggy linker, since gcc does support multiple references to the same library. The second reference to libmysqlclient come from udmconfig script while configuring php. It return compiler swithes that used to compile mnogosearch. E.g. -lmysqlclient -L/usr. It worked for many users for years, and i really dont understand how to fix this at now.
-- Regards, Sergey aka gluke.

Jani Taskinen

23 years ago
On Fri, 6 Jun 2003, Sergey Kartashoff wrote:
>spn> It failed complaining about "ext/mysql/phpmysql.c: undefined reference >spn> to mysql_create_db". I downloaded the latest php-extension from >spn> www.mnogosearch.org (mnogosearch-php-extension-1.7.3.tar.gz) and >spn> replaced the contents of ext/mnogosearch with the files in this archive >spn> and it all worked a treat (with a quick edit to remove the second >spn> reference to -lmysqlclient in the EXTRA_LIBS line the PHP Makefile... >spn> but I think that mnoGo's fault!) > >Could it be because of twice --with-mnogosearch string in configure ?
No.
> I thought that error could be >caused by buggy linker, since gcc does support multiple references to the >same library. The second reference to libmysqlclient come from udmconfig >script while configuring php. It return compiler swithes that used to >compile mnogosearch. E.g. -lmysqlclient -L/usr. It worked for many users
It should return the -L/path/to/dir where it thinks libmysqlclient is. Doesn't it? --Jani

Sergey Kartashoff

23 years ago
Hi!
>>spn> www.mnogosearch.org (mnogosearch-php-extension-1.7.3.tar.gz) and >>spn> replaced the contents of ext/mnogosearch with the files in this archive >>spn> and it all worked a treat (with a quick edit to remove the second >>spn> reference to -lmysqlclient in the EXTRA_LIBS line the PHP Makefile... >>spn> but I think that mnoGo's fault!) >> >>Could it be because of twice --with-mnogosearch string in configure ?
JT> No. But user says thats the error.
>> I thought that error could be >>caused by buggy linker, since gcc does support multiple references to the >>same library. The second reference to libmysqlclient come from udmconfig >>script while configuring php. It return compiler swithes that used to >>compile mnogosearch. E.g. -lmysqlclient -L/usr. It worked for many users
JT> It should return the -L/path/to/dir where it thinks libmysqlclient is. JT> Doesn't it? Yes, i show just an example. It returns the path to mysql libraries.
-- Regards, Sergey aka gluke.