0

I am not able to install DBD::Sybase module using Makefile.PL in linux. It's showing error

Please set the SYBASE in CONFIG, or set the $SYBASE environment variable

I am not able to identify which path need to set for SYBASE env variable as I set something it's shows there are no sybase library found.

Error can't locate dbd:sybase

brian d foy
  • 129,424
  • 31
  • 207
  • 592

1 Answers1

0

From the DBD::Sybase documentation:

The OpenClient library uses the environment variable SYBASE to find the location of the interfaces file, as well as other files that it needs (such as locale files). The SYBASE environment is the path to the Sybase installation (eg '/usr/local/sybase'). If you need to set it in your scripts, then you must set it in a BEGIN{} block:

brian d foy
  • 129,424
  • 31
  • 207
  • 592