Mikulas Patocka wrote: > It is possible to add -I/usr/local/include -L/usr/local/lib to compiler > flags, I even distributed links with that for some time, and it turned out > that on other unix systems -L/usr/local/lib reversed search (first > /usr/local/lib and then /usr/lib, while it used to be /usr/lib first) and > caused linking failures.
export CPPFLAGS='-I/usr/local/include' LIBS='-L/usr/local/lib' # Han