On 15 Nov 2008, at 03:51, Tommy Nordgren wrote:

By default the gsl headers and libraries are stored in /usr/local/ include and /usr/local/lib

The location of header and library files is highly OS / distribution- specific. It's /usr/local/include/gsl and /usr/local/lib on FreeBSD.

It is almost always better to use pkg_config than to hard-code the include and library paths. Something along the lines of this will generally be better:

${TOOL_NAME}_LDFLAGS += `pkg-config gls --libs`
${TOOL_NAME}_CPPFLAGS += `pkg-config gls --cflags`

David


_______________________________________________
Discuss-gnustep mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/discuss-gnustep

Reply via email to