in reply to Re^2: DBD::Sybase cygwin installation failure
in thread DBD::Sybase cygwin installation failure
I had to changeCan't find any Sybase libraries in /usr/local/lib or /usr/local/lib64 +at Makefile.PL line 155, <IN> line 44.
tomy @libdir = ( 'lib', 'lib64' ); if ($^O =~ /win/i) { @libdir = ( 'dll' ); }
(cygwin contains "win" , then the Makefile is looking for "dll" library subfolder, instead of "lib"/"lib64")my @libdir = ( 'lib', 'lib64' ); if ($^O =~ /^win/i) { @libdir = ( 'dll' ); }
|
|---|