From: Ulrich Drepper Date: Fri, 7 May 2004 20:46:26 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/fedora-base~478 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1fe42a2b00420dd7bfb44e9222d0eae72c2a0fed;p=thirdparty%2Fglibc.git Update. 2004-05-07 Ulrich Drepper * sysdeps/unix/sysv/linux/Makefile: mq_send.c and mq_receive.c need to be compiled with exceptions. --- diff --git a/ChangeLog b/ChangeLog index 07d8e0439f2..78cc4bf9f2f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-05-07 Ulrich Drepper + + * sysdeps/unix/sysv/linux/Makefile: mq_send.c and mq_receive.c + need to be compiled with exceptions. + 2004-05-06 Ulrich Drepper * sysdeps/unix/sysv/linux/ifreq.c (__ifreq): Fix memory handling. diff --git a/sysdeps/unix/sysv/linux/Makefile b/sysdeps/unix/sysv/linux/Makefile index 5964d0534d7..f83463738d8 100644 --- a/sysdeps/unix/sysv/linux/Makefile +++ b/sysdeps/unix/sysv/linux/Makefile @@ -145,3 +145,8 @@ sysdep-rtld-routines += dl-brk dl-sbrk CPPFLAGS-lddlibc4 += -DNOT_IN_libc endif + +ifeq ($(subdir),rt) +CFLAGS-mq_send.c += -fexceptions +CFLAGS-mq_receive.c += -fexceptions +endif