"Mark Detrick" <[EMAIL PROTECTED]> writes:
>
> scmsigs.c: In function 'ensure_signal_delivery_thread':
>
> scmsigs.c:191: warning: missing braces around initializer
>
> scmsigs.c:191: warning: (near initialization for
> 'once.__pthread_once_pad')

Thanks, that's some non-posix conformance in solaris.  We've got a
workaround in the cvs for the next release.  You can add braces to
SCM_I_PTHREAD_ONCE_INIT in pthread-threads.h.  The line

    #define SCM_I_PTHREAD_ONCE_INIT     PTHREAD_ONCE_INIT

becomes

    #define SCM_I_PTHREAD_ONCE_INIT     { PTHREAD_ONCE_INIT }


_______________________________________________
Bug-guile mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-guile

Reply via email to