When building Wine on FreeBSD with libc_r (r for reentrant) instead of libc, I now trigger the following FIXME in scheduler/pthread.c:
/***** CONDITIONS *****/ /* not implemented right now */
int __pthread_cond_init(pthread_cond_t *cond, const pthread_condattr_t *cond_attr) { P_OUTPUT("FIXME:pthread_cond_init\n"); return 0; }
What's the proper way to address this? (I'm afraid, it's beyond what I'll be able to implement, though.)
Gerald