# HG changeset patch # User nick # Date 1004194713 0 # Node ID 13e4620eccb7eb62abe1fa4939e63db919ed0ff4 # Parent 38bb41c48d1f2c0fdaf91c5087437387c54340d3 Suppress implicit usage of /usr/local stuff diff -r 38bb41c48d1f -r 13e4620eccb7 configure --- a/configure Sat Oct 27 14:30:43 2001 +0000 +++ b/configure Sat Oct 27 14:58:33 2001 +0000 @@ -422,12 +422,19 @@ fi # Lots of stuff are installed under /usr/local - +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# NK: But we should never use this stuff implicitly +# since we call compiler from /usr we should be sure +# that there no effects from other compilers (libraries) +# which might be installed into /usr/local. +# Let users use this stuff explicitly as command line argument. +# In other words: It would be resonable have or only /usr/include +# or only /usr/local/include. if test -z "$_extralibdir" ; then -_extralibdir=-L/usr/local/lib +_extralibdir=-L/usr/lib fi if test -z "$_extraincdir" ; then -_extraincdir=-I/usr/local/include +_extraincdir=-I/usr/include fi if test -z "$_sdlconfig" ; then