Description
I am using the environment variable (FREETDS_DIR) to provide a path to freetds in my application.
Since I am using Cloud Foundry and can only use 1 buildpack, I need to vendor the freetds dependency (please see the custom libraries section here: https://docs.pivotal.io/pivotalcf/2-2/buildpacks/ruby/ruby-tips.html#custom-libraries)
I am unclear what I need to do in order to provide the freetds dependencies that tiny_tds needs. Do I need to build and compile freetds or simply download the zip file and unzip it?
Here is what I have done:
- cloned freetds-master on my local mac
- followed the instructions here: https://github.com/FreeTDS/freetds/blob/master/INSTALL.GIT.md
- I haven't done a
Make Install
, just aMake
. - next steps?
Is this sufficient, from looking at the tiny_tds code, it looks for a freetds/include folder and also a freetds/lib folder.
I don't see a lib folder anywhere.
Can I vendor the freetds dependency this way and what folders should I supply with my applications source code?
Thanks