From 1fe42a2b00420dd7bfb44e9222d0eae72c2a0fed Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 7 May 2004 20:46:26 +0000 Subject: [PATCH] Update. 2004-05-07 Ulrich Drepper * sysdeps/unix/sysv/linux/Makefile: mq_send.c and mq_receive.c need to be compiled with exceptions. --- ChangeLog | 5 +++++ sysdeps/unix/sysv/linux/Makefile | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/ChangeLog b/ChangeLog index 07d8e0439f..78cc4bf9f2 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 5964d0534d..f83463738d 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