id,summary,reporter,owner,description,type,status,priority,milestone,component,resolution,keywords,cc,planetversion,pltversion
305,spgsql erroneously believes that sockets are not supported on 64-bit Linux machines,paul.stansifer@…,schematics,"This kind of connect command...
{{{
(connect #:socket ""/var/run/postgresql/.s.PGSQL.5432""
         #:user ""user_name""
         #:database ""db_name""
         #:password ""local_login_password""))
}}}
...encounters this error on my 64-bit Intel Linux system...
{{{
unix-socket-connect: unix-domain sockets not supported on this platform
}}}

On my system, {{{(system-type 'machine)}}} returns
{{{""Linux saffron 2.6.35-22-generic #35-Ubuntu SMP Sat Oct 16 20:45:36 UTC 2010 x86_64 GNU/Linux""}}}

When I change socket.ss from detecting Linux from this way...
{{{
[(regexp-match #rx""Linux.*i.86"" machine) 'linux86]
}}}
...to this way...
{{{
[(regexp-match #rx""Linux.*86"" machine) 'linux86]
}}}
...the library works as expected.



",defect,closed,major,,schematics/spgsql.plt,fixed,,,(2 3),5.0
