# HG changeset patch # User Charles Pigott # Date 2019-03-03 16:58:32 # Node ID 820e856e5b35ff8f38e5923da924fe4511069acb # Parent 4ae1afb8cfb71d66d3517ad4099e25422db51b2a Fix 95ccddd6: SDL static library flags was not updated to use pkg-config format diff --git a/config.lib b/config.lib --- a/config.lib +++ b/config.lib @@ -1683,7 +1683,7 @@ make_cflags_and_ldflags() { CFLAGS="$CFLAGS `$sdl_config --cflags | sed 's@-D_GNU_SOURCE[^ ]*@@'`" if [ "$os" != "MINGW" ] && [ "$os" != "CYGWIN" ]; then if [ "$enable_static" != "0" ]; then - LIBS="$LIBS `$sdl_config --static-libs`" + LIBS="$LIBS `$sdl_config --static --libs`" else LIBS="$LIBS `$sdl_config --libs`" fi