TEOS-10 / GSW-C

C implementation of the Thermodynamic Equation Of Seawater - 2010 (TEOS-10)
Other
18 stars 17 forks source link

BUG: fix include syntax for local include files #5

Closed efiring closed 7 years ago

efiring commented 7 years ago

Local files such as gswteos-10.h should be included using quote syntax rather than the angle-bracket syntax which is for system files. Fixing this is needed for wrapping the library in R and Python, when not relying on the library having been installed at the system level.

dankelley commented 7 years ago

Eric, I agree on this. In fact, in the GSW-R source, the only diff to your code is that I change from <> to "". With R, we really cannot be asking that the building computer have anything installed just for one package -- it simply goes against R packaging policies.