Hey folks,
Now that we have graphviz, I decided to try to build mono. Aside from a
PATH_MAX issue, it appears that we don't define: PTHREAD_STACK_MIN
The following code seems to be the culprit: mono/io-layer/collection.c
#ifdef HAVE_PTHREAD_ATTR_SETSTACKSIZE
#ifdef __FreeBSD__
ret = pthread_attr_setstacksize (&attr, 65536);
#else
ret = pthread_attr_setstacksize (&attr, PTHREAD_STACK_MIN);
#endif
g_assert (ret == 0);
#endif
Should we be defining PTHREAD_STACK_MIN or should I add something like
#ifdef __FreeBSD__ || __GNU__
Thanks,
Barry deFreese (aka bddebian)
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]