Kaydet (Commit) 48cc828b authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Don't error out if we can't detect shared MinGW libgcc and libstdc++

It might be a false negative, or something.
üst 1a777329
...@@ -3218,7 +3218,8 @@ using namespace std; ...@@ -3218,7 +3218,8 @@ using namespace std;
MINGW_SHARED_GCCLIB=YES MINGW_SHARED_GCCLIB=YES
AC_MSG_RESULT([ $MINGW_GCCDLL]) AC_MSG_RESULT([ $MINGW_GCCDLL])
else else
AC_MSG_ERROR([no]) MINGW_SHARED_GCCLIB=NO
AC_MSG_RESULT([no])
fi fi
], ],
[ AC_MSG_RESULT([no]) [ AC_MSG_RESULT([no])
...@@ -3240,7 +3241,8 @@ using namespace std; ...@@ -3240,7 +3241,8 @@ using namespace std;
MINGW_SHARED_GXXLIB=YES MINGW_SHARED_GXXLIB=YES
AC_MSG_RESULT([$MINGW_GXXDLL]) AC_MSG_RESULT([$MINGW_GXXDLL])
else else
AC_MSG_ERROR([no]) MINGW_SHARED_GXXLIB=NO
AC_MSG_RESULT([no])
fi fi
], ],
[ AC_MSG_RESULT([no]) [ AC_MSG_RESULT([no])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment