diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-09-03 09:26:15 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-09-03 09:26:15 +0000 |
commit | 72ef277e5a31c89fbd1aa9d1dc7d054223d650e5 (patch) | |
tree | dfc2682d001edb282774ade807d8a9be7271e3d9 /shadow/Makefile | |
parent | 4a244f0dcec00a37e8023851ab8ddc503b4aec7e (diff) | |
download | glibc-72ef277e5a31c89fbd1aa9d1dc7d054223d650e5.zip glibc-72ef277e5a31c89fbd1aa9d1dc7d054223d650e5.tar.gz glibc-72ef277e5a31c89fbd1aa9d1dc7d054223d650e5.tar.bz2 |
Update.
2003-09-03 Ulrich Drepper <drepper@redhat.com>
* grp/Makefile (CFLAGS-getgrent_r.c): Add -fexceptions.
(CFLAGS-getgrent.c): Likewise.
* pwd/Makefile (CFLAGS-getpwent_r.c): Add -fexceptions.
(CFLAGS-getpwent.c): Likewise.
* shadow/Makefile (CFLAGS-getspent_r.c): Add -fexceptions.
(CFLAGS-getspent.c): Likewise.
* inet/Makefile: Add -fexceptions to CFLAGS for the various
getXXent and getXXbyYY functions.
* locale/loadlocale.c: Use not-cancelable variants of open, close,
and read.
Diffstat (limited to 'shadow/Makefile')
-rw-r--r-- | shadow/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/shadow/Makefile b/shadow/Makefile index 4c55d14..bea9c7f 100644 --- a/shadow/Makefile +++ b/shadow/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1996 Free Software Foundation, Inc. +# Copyright (C) 1996, 2003 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -26,5 +26,7 @@ routines = getspent getspnam sgetspent fgetspent putspent \ getspent_r getspnam_r sgetspent_r fgetspent_r \ lckpwdf +CFLAGS-getspent_r.c = -fexceptions +CFLAGS-getspent.c = -fexceptions include ../Rules |