diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-08-30 18:30:23 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-08-30 18:30:23 +0000 |
commit | 2b29b09e66c3999dbe75aee6227f975527531d96 (patch) | |
tree | c32a8bf869debbc1edfc869006cc66aa173ef07f /argp/Makefile | |
parent | b9cc1576e98a737b17e857e8c7ef0a419ebf70da (diff) | |
download | glibc-2b29b09e66c3999dbe75aee6227f975527531d96.tar.gz glibc-2b29b09e66c3999dbe75aee6227f975527531d96.tar.xz glibc-2b29b09e66c3999dbe75aee6227f975527531d96.zip |
Update.
* argp/Makefile (CFLAGS-argp-help.c): Add -fexceptions. (CFLAGS-argp-fmtstream.c): Likewise. * argp/argp.h: Remove a number of __THROW.
Diffstat (limited to 'argp/Makefile')
-rw-r--r-- | argp/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/argp/Makefile b/argp/Makefile index e5291599e7..d341e57006 100644 --- a/argp/Makefile +++ b/argp/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1997, 2002 Free Software Foundation, Inc. +# Copyright (C) 1997, 2002, 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 @@ -28,4 +28,7 @@ routines = $(addprefix argp-, ba fmtstream fs-xinl help parse pv \ tests = argp-test tst-argp1 +CFLAGS-argp-help.c = -fexceptions +CFLAGS-argp-fmtstream.c = -fexceptions + include ../Rules |