in reply to Re^4: How to add path to @INC
in thread How to add path to @INC
Not sure what the intent of Build.PL is, but if I wanted to install GraphViz then I would first install "dot".$ dot --help The program 'dot' is currently not installed. You can install it by ty +ping: sudo apt-get install graphviz $
I think you'll subsequently find that the DB library is also unlocatable - which will result in unresolved symbols when you try to run the module (eg during 'make test' stage of the build).export CPATH=/wherever/it/is:$CPATH
Or maybe you need to add the location of the static DB library (.a) to the LIBRARY_PATH environment variable.export LD_LIBRARY_PATH=/wherever/it/is:$LD_LIBRARY_PATH
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: How to add path to @INC
by TSN (Acolyte) on May 22, 2016 at 03:08 UTC | |
by syphilis (Archbishop) on May 22, 2016 at 03:47 UTC |