diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-10-03 07:33:54 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-10-03 07:33:54 +0000 |
commit | fc03df7aa6d9de00d09ddaf9c27074fb4ea6d3ef (patch) | |
tree | 5e6dd3168abddd4511556a6c9a82895afb349bbe /sysdeps | |
parent | 1945c96f2b0ad2bf09b1a2e182d2d0d98a30698e (diff) | |
download | glibc-fc03df7aa6d9de00d09ddaf9c27074fb4ea6d3ef.tar.gz glibc-fc03df7aa6d9de00d09ddaf9c27074fb4ea6d3ef.tar.xz glibc-fc03df7aa6d9de00d09ddaf9c27074fb4ea6d3ef.zip |
Update.
2004-10-03 Ulrich Drepper <drepper@redhat.com> * nscd/connections.c: Implement alternative loop for main thread which uses epoll. * sysdeps/unix/sysv/linux/Makefile [subdir=nscd] (CFLAGS-connections.c): Add -DHAVE_EPOLL. * nscd/Makefile (CFLAGS-initgrcache.c): Add to CFLAGS-* variables, don't replace old content.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/Makefile b/sysdeps/unix/sysv/linux/Makefile index f83463738d..fd089dd236 100644 --- a/sysdeps/unix/sysv/linux/Makefile +++ b/sysdeps/unix/sysv/linux/Makefile @@ -150,3 +150,7 @@ ifeq ($(subdir),rt) CFLAGS-mq_send.c += -fexceptions CFLAGS-mq_receive.c += -fexceptions endif + +ifeq ($(subdir),nscd) +CFLAGS-connections.c += -DHAVE_EPOLL +endif |