in reply to Re: Re4: DBD::Sybase with Sybase 15.0
in thread DBD::Sybase with Sybase 15.0

I know zip about MSVC, unfortunately. But that was the tips I found for compiling this on Windows. Yes, SYBASE is set along with

SYBASE=C:\sybase70 SYBASE_JRE=C:\sybase70\Shared\Sun\jre142 SYBASE_OCS=OCS-15_0 SYBASE_UA=C:\sybase70\ua INCLUDE=C:\sybase70\OCS-15_0\include LIB=C:\sybase70\OCS-15_0\lib

Edit: g0n - code tags

Replies are listed 'Best First'.
Re^3: Re4: DBD::Sybase with Sybase 15.0
by Anonymous Monk on Mar 04, 2008 at 22:15 UTC
    I have the same problem! Any another ideas??? Evandro (Free CMS in Perl)

      Hello, I was unable to get DBD::Sybase 1.09 to compile against Syb 15.5.5 on Windows XP, with MSVC 2008 Epxress; it was borking on the /LC:\Sybase/OCS-15_0/lib bit. After messing around with Makefile.PL and the Makefile, I eventually stumbled on adding this to the LDLOADLIBS = line:

      "C:\Sybase\OCS-15_0\lib\libsybct.lib" "C:\Sybase\OCS-15_0\lib\libsybbl +k.lib" "C:\Sybase\OCS-15_0\lib\libsybcs.lib" "C:\Sybase\OCS-15_0\lib\ +libsybdb.lib"

      Obviously, that should be changed for your install directory if necessary. I don't know whether this is a known MakeMaker/MSVC problem, but hopefully this might be helpful to anyone else whose employer makes them use Windows.