not sure where else i should ask such a question.
in configure SDL targets are always built with shared objects.
Code: Select all
append_var LIBS "`$_sdlconfig --prefix="$_sdlpath" --libs`"
Do i have to change configure manually every time to
Code: Select all
append_var LIBS "`$_sdlconfig --prefix="$_sdlpath" --staic-libs`"
I could add a new target for my platform, but that would be overkill as it's just that one little edit and it would still be permament, so i'd have to manually edit it aswell.
Thank you