Jurek Bartuszek wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Greetings, > > after installing mono-1.2.6 from tarball I noticed that the > metadata/threads-types.h is not being installed into destination > directory. This causes other packages (like openoffice) to fail. What's > the reason for this header being omitted?
It's an internal header. The developer who has added these lines #include <mono/metadata/threads-types.h> extern void mono_thread_set_state (MonoThread *thread, MonoThreadState state); extern void mono_thread_clr_state (MonoThread *thread, MonoThreadState state); extern gboolean mono_thread_test_state (MonoThread *thread, MonoThreadState test); probably didn't know that threads-types.h is internal. You can temporarily fix this by commenting out these lines in your installation. Robert _______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
