diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-08-30 09:10:12 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-08-30 09:10:12 +0000 |
commit | cdbfa9f89fa7ccba5f573facbd0a2322e1a6fcb8 (patch) | |
tree | 2b5f5f3cd66ae759cbecac788f3571c6a5dd3599 /misc/Makefile | |
parent | 048466f6148f6d72994eeb234f435fd351e24559 (diff) | |
download | glibc-cdbfa9f89fa7ccba5f573facbd0a2322e1a6fcb8.tar.gz glibc-cdbfa9f89fa7ccba5f573facbd0a2322e1a6fcb8.tar.xz glibc-cdbfa9f89fa7ccba5f573facbd0a2322e1a6fcb8.zip |
Update.
* misc/Makefile (CFLAGS-getpass.c): Add -fexceptions. * misc/getpass.c (getpass): Add cleanup handler to ensure the stream is closed even if the thread is canceled. (call_fclose): New function. * posix/unistd.h: Remove __THROW from getpass prorotype. * posix/Makefile (CFLAGS-getopt.c): Add -fexceptions. * signal/signal.h (psignal): Remove __THROW. * stdio-common/Makefile (CFLAGS-psignal.c): Add -fexceptions.
Diffstat (limited to 'misc/Makefile')
-rw-r--r-- | misc/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/misc/Makefile b/misc/Makefile index 570ff081a1..5c93e43ec6 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -83,6 +83,7 @@ CFLAGS-writev.c = -fexceptions -fasynchronous-unwind-tables CFLAGS-usleep.c = -fexceptions CFLAGS-syslog.c = -fexceptions CFLAGS-error.c = -fexceptions +CFLAGS-getpass.c = -fexceptions include ../Rules |