in reply to Re^2: DBD::Sybase cygwin installation failure
in thread DBD::Sybase cygwin installation failure

Thank you for your post, It helped me compiling the DBD::Sybase (v.1.15) with FreeTds. However, the next error I've encountered was:
Can't find any Sybase libraries in /usr/local/lib or /usr/local/lib64 +at Makefile.PL line 155, <IN> line 44.
I had to change
my @libdir = ( 'lib', 'lib64' ); if ($^O =~ /win/i) { @libdir = ( 'dll' ); }
to
my @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")