mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-01 03:52:25 +00:00
Configure: Use mcs instead of gmcs
On some machines gmcs links to mscorlib 2.0 but that's too old, so we use the recommended mcs compiler.
This commit is contained in:
parent
1ac3cd8193
commit
2be4dbaeff
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ PKG_CHECK_MODULES(MONO_DEPENDENCY, mono >= 1.0, has_mono=true, has_mono=false)
|
|||
|
||||
if test "x$has_mono" = "xtrue"; then
|
||||
AC_PATH_PROG(RUNTIME, mono, no)
|
||||
AC_PATH_PROG(CSC, gmcs, no)
|
||||
AC_PATH_PROG(CSC, mcs, no)
|
||||
LIB_PREFIX=.so
|
||||
LIB_SUFFIX=
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue