Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 738450
Collapse All | Expand All

(-)a/configure.ac (+5 lines)
Lines 320-325 case "$host" in Link Here
320
                	# available during cross-compilation
320
                	# available during cross-compilation
321
                	mono_cv_uscore=no
321
                	mono_cv_uscore=no
322
                fi
322
                fi
323
                case "$host" in
324
                *-musl)
325
                        AC_DEFINE(MUSL, 1, [musl libc])
326
                        ;;
327
                esac
323
		case "$host" in
328
		case "$host" in
324
		*-tizen-linux-*)
329
		*-tizen-linux-*)
325
			platform_tizen=yes
330
			platform_tizen=yes
(-)a/mono/utils/mono-os-mutex.h (-1 / +1 lines)
Lines 59-65 mono_os_mutex_init_type (mono_mutex_t *mutex, int type) Link Here
59
	if (G_UNLIKELY (res != 0))
59
	if (G_UNLIKELY (res != 0))
60
		g_error ("%s: pthread_mutexattr_settype failed with \"%s\" (%d)", __func__, g_strerror (res), res);
60
		g_error ("%s: pthread_mutexattr_settype failed with \"%s\" (%d)", __func__, g_strerror (res), res);
61
61
62
#if !defined(__HAIKU__) && defined (PTHREAD_PRIO_INHERIT) && HAVE_DECL_PTHREAD_MUTEXATTR_SETPROTOCOL
62
#if !defined(__HAIKU__) && !defined(MUSL) && defined (PTHREAD_PRIO_INHERIT) && HAVE_DECL_PTHREAD_MUTEXATTR_SETPROTOCOL
63
	/* use PTHREAD_PRIO_INHERIT if possible */
63
	/* use PTHREAD_PRIO_INHERIT if possible */
64
	res = pthread_mutexattr_setprotocol (&attr, PTHREAD_PRIO_INHERIT);
64
	res = pthread_mutexattr_setprotocol (&attr, PTHREAD_PRIO_INHERIT);
65
	if (G_UNLIKELY (res != 0 && res != ENOTSUP))
65
	if (G_UNLIKELY (res != 0 && res != ENOTSUP))

Return to bug 738450