Re: [PHP-DEV] Recent mysql related connection problems with 4.2.0

2002-04-25 Thread Daniel Swarbrick
Yep, just configure'd and built using that script - looks good. MySQL is connecting with unix socket when specifying simply 'localhost' as the host to connect to. The MySQL socket on Slackware 8.0+ systems is in /var/run/mysql/. Well done... "Edin Kadribasic" <[EMAIL PROTECTED]> wrote in messag

Re: [PHP-DEV] Recent mysql related connection problems with 4.2.0

2002-04-25 Thread derick
On Fri, 26 Apr 2002, Daniel Swarbrick wrote: > Ooops, sorry folks, jumped the gun on that one. Nope, still using TCP. autoconf 2.13 is the way to go Derick > > "Daniel Swarbrick" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > I just thought I'd pos

Re: [PHP-DEV] Recent mysql related connection problems with 4.2.0

2002-04-25 Thread Edin Kadribasic
Could you verify that configure script http://www.edin.dk/php/configure.gz works on your system. Also could you please tell us the location of mysql.sock on your system, so we can include it in the configure checks. Edin "Daniel Swarbrick" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">

Re: [PHP-DEV] Recent mysql related connection problems with 4.2.0

2002-04-25 Thread Daniel Swarbrick
Ooops, sorry folks, jumped the gun on that one. Nope, still using TCP. "Daniel Swarbrick" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I just thought I'd post my results with doing this on a fairly bleeding edge > Slackware 8.1beta system, mainly because it

Re: [PHP-DEV] Recent mysql related connection problems with 4.2.0

2002-04-25 Thread Daniel Swarbrick
I just thought I'd post my results with doing this on a fairly bleeding edge Slackware 8.1beta system, mainly because it has autoconf 2.53 on it.Previously I tried running buildconf with autoconf 2.50, which didn't generate any of the additional warnings. Although the the 'make'ed binary libphp4.

Re: [PHP-DEV] Recent mysql related connection problems with 4.2.0

2002-04-25 Thread Edin Kadribasic
Summary (mysql related connection problems) : 4.2.0 was packed with configure script made by autoconf 2.52 which doesn't seem to work correcly. configure built with autoconf 2.13 works fine. Resolutions: * wait for 4.2.1 (due in a week or so) * if you have autoconf 2.13 on you system, delete con

Re: [PHP-DEV] Recent mysql related connection problems with 4.2.0

2002-04-25 Thread Markus Fischer
Heh, ok, who did ? :-) - Markus On Thu, Apr 25, 2002 at 01:59:18PM +0200, [EMAIL PROTECTED] wrote : > On Thu, 25 Apr 2002, Markus Fischer wrote: > > > (similar if not identical with 4.1.2) > > > > Derick, are you sure you built 4.1.2 configure with 2.52 ?! > > I didn't say 4.

Re: [PHP-DEV] Recent mysql related connection problems with 4.2.0

2002-04-25 Thread derick
On Thu, 25 Apr 2002, Markus Fischer wrote: > (similar if not identical with 4.1.2) > > Derick, are you sure you built 4.1.2 configure with 2.52 ?! I didn't say 4.1.2, but 4.1.0/4.1.1. I didn't build 4.1.2 afaik Derick --

Re: [PHP-DEV] Recent mysql related connection problems with 4.2.0

2002-04-25 Thread Markus Fischer
4.1.2 from scratch: checking for ANSI C header files... (cached) yes checking for sgtty.h... yes checking for sys/ioctl.h... yes checking for fcntl.h... (cached) yes checking for float.h... yes checking for floatingpoint.h... no checking for ieeefp.h... (cached) no checking for limits.h... (cach

Re: [PHP-DEV] Recent mysql related connection problems with 4.2.0

2002-04-25 Thread derick
On Thu, 25 Apr 2002, Markus Fischer wrote: > Hi, > > after some digging I think I've found something, but I'm not > quite sure. > > The configure shipped with php-4.2.0 is unable to properly > detect and therefore does NOT set HAVE_SYS_UN_H > which is the basis for unix

[PHP-DEV] Recent mysql related connection problems with 4.2.0

2002-04-25 Thread Markus Fischer
Hi, after some digging I think I've found something, but I'm not quite sure. The configure shipped with php-4.2.0 is unable to properly detect and therefore does NOT set HAVE_SYS_UN_H which is the basis for unix socket support in ext/mysql/libmysql/ . I've rebui