unofficial mirror of bug-guile@gnu.org 
 help / color / mirror / Atom feed
* Bug in libguile/scmsigs.c Guile 1.8.0
@ 2006-09-25 14:06 Mark Detrick
  2006-09-25 22:57 ` Kevin Ryde
  0 siblings, 1 reply; 2+ messages in thread
From: Mark Detrick @ 2006-09-25 14:06 UTC (permalink / raw)



[-- Attachment #1.1.1: Type: text/plain, Size: 3551 bytes --]


Built using:

./configure --with-gnu-ld --with-libiconv-prefix=/usr/local
--with-threads



Tools:

GNU libtool, binutils, gcc-4.1.1



Platform:

SunOS hassium 5.10 Generic_118833-22 sun4u sparc SUNW,Ultra-60



Error output:

hassium-bash /appl/guile/guile-1.8.0 # make

make  all-recursive

make[1]: Entering directory `/usr/local/appl/guile/guile-1.8.0'

Making all in oop

make[2]: Entering directory `/usr/local/appl/guile/guile-1.8.0/oop'

Making all in goops

make[3]: Entering directory
`/usr/local/appl/guile/guile-1.8.0/oop/goops'

make[3]: Nothing to be done for `all'.

make[3]: Leaving directory `/usr/local/appl/guile/guile-1.8.0/oop/goops'

make[3]: Entering directory `/usr/local/appl/guile/guile-1.8.0/oop'

make[3]: Nothing to be done for `all-am'.

make[3]: Leaving directory `/usr/local/appl/guile/guile-1.8.0/oop'

make[2]: Leaving directory `/usr/local/appl/guile/guile-1.8.0/oop'

Making all in libguile

make[2]: Entering directory `/usr/local/appl/guile/guile-1.8.0/libguile'

if /usr/bin/bash ../libtool --tag=CC --mode=compile /usr/local/bin/gcc
-DHAVE_CONFIG_H -I. -I. -I.. -I.. -I..   -D_REENTRANT -pthread -g -O2
-Wall -Wmissing-prototypes -Werror -MT libguile_la-scmsigs.lo -MD -MP
-MF ".deps/libguile_la-scmsigs.Tpo" -c -o libguile_la-scmsigs.lo `test
-f 'scmsigs.c' || echo './'`scmsigs.c; \

        then mv -f ".deps/libguile_la-scmsigs.Tpo"
".deps/libguile_la-scmsigs.Plo"; else rm -f
".deps/libguile_la-scmsigs.Tpo"; exit 1; fi

 /usr/local/bin/gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I.. -D_REENTRANT
-pthread -g -O2 -Wall -Wmissing-prototypes -Werror -MT
libguile_la-scmsigs.lo -MD -MP -MF .deps/libguile_la-scmsigs.Tpo -c
scmsigs.c  -fPIC -DPIC -o .libs/libguile_la-scmsigs.o

cc1: warnings being treated as errors

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')

make[2]: *** [libguile_la-scmsigs.lo] Error 1

make[2]: Leaving directory `/usr/local/appl/guile/guile-1.8.0/libguile'

make[1]: *** [all-recursive] Error 1

make[1]: Leaving directory `/usr/local/appl/guile/guile-1.8.0'

make: *** [all] Error 2

hassium-bash /appl/guile/guile-1.8.0 #



 Mark S. Detrick, CCIE 6336

IP Solutions Expert

Technical Marketing Group

503.645.2488 o

503.936.4137 c





"Sir, we're surrounded!"

"Excellent; we can attack in any direction!"





SPECIAL NOTICE

All information transmitted hereby is intended only for the use of the
addressee(s) named above and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or distribution
of confidential and privileged information is prohibited. If the reader
of this message is not the intended recipient(s) or the employee or agent
responsible for delivering the message to the intended recipient, you are
hereby notified that you must not read this transmission and that disclosure,
copying, printing, distribution or use of any of the information contained
in or attached to this transmission is STRICTLY PROHIBITED.

Anyone who receives confidential and privileged information in error should
notify us immediately by telephone and mail the original message to us at
the above address and destroy all copies.  To the extent any portion of this
communication contains public information, no such restrictions apply to that
information. (gate02)

[-- Attachment #1.1.2: Type: text/html, Size: 13953 bytes --]

[-- Attachment #1.2: image001.jpg --]
[-- Type: image/jpeg, Size: 16678 bytes --]

[-- Attachment #1.3: image003.jpg --]
[-- Type: image/jpeg, Size: 2208 bytes --]

[-- Attachment #2: Type: text/plain, Size: 137 bytes --]

_______________________________________________
Bug-guile mailing list
Bug-guile@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-guile

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Bug in libguile/scmsigs.c Guile 1.8.0
  2006-09-25 14:06 Bug in libguile/scmsigs.c Guile 1.8.0 Mark Detrick
@ 2006-09-25 22:57 ` Kevin Ryde
  0 siblings, 0 replies; 2+ messages in thread
From: Kevin Ryde @ 2006-09-25 22:57 UTC (permalink / raw)
  Cc: bug-guile

"Mark Detrick" <Mark.Detrick@MCDATA.com> 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
Bug-guile@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-guile


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-09-25 22:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-09-25 14:06 Bug in libguile/scmsigs.c Guile 1.8.0 Mark Detrick
2006-09-25 22:57 ` Kevin Ryde

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).