about summary refs log tree commit diff
path: root/argp
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-09-16 05:54:09 +0000
committerUlrich Drepper <drepper@redhat.com>2003-09-16 05:54:09 +0000
commite07bb02a4f9e7d98f79f428a661c5b982286869d (patch)
tree7ced4d56fa4f3822b7ac24e4216a660585ddf7f7 /argp
parent005f8d92720387e74ab5decd8407c2c50a6e454e (diff)
downloadglibc-e07bb02a4f9e7d98f79f428a661c5b982286869d.tar.gz
glibc-e07bb02a4f9e7d98f79f428a661c5b982286869d.tar.xz
glibc-e07bb02a4f9e7d98f79f428a661c5b982286869d.zip
Update.
2003-09-15  Jakub Jelinek  <jakub@redhat.com>

	* argp/argp.h (argp_parse, __argp_parse): Remove __THROW.
	* argp/Makefile (CFLAGS-argp-help.c, CFLAGS-argp-parse.c): Add
	$(uses-callbacks).
	* dirent/Makefile (CFLAGS-scandir.c, CFLAGS-scandir64.c): Likewise.
	* elf/Makefile (CFLAGS-dl-iterate-phdr.c,
	CFLAGS-dl-iterate-phdr-static.c): Add $(uses-callbacks).
	* elf/dl-iteratephdr.c (cancel_handler): New function.
	(__dl_iterate_phdr): Add __libc_cleanup_{push,pop}.
	* elf/link.h (dl_iterate_phdr): Remove __THROW.
	* io/Makefile (CFLAGS-fts.c): Merge into one assignment.
	Add $(uses-callbacks).
	(CFLAGS-ftw.c, CFLAGS-ftw64.c): Add $(uses-callbacks).
	* misc/Makefile (CFLAGS-tsearch.c, CFLAGS-lsearch.c): Change
	$(exceptions) to $(uses-callbacks).
	* Makeconfig (uses-callbacks): Set to $(exceptions).
	* posix/Makefile (CFLAGS-glob.c, CFLAGS-glob64.c): Add
	$(uses-callbacks).
	* stdlib/Makefile (CFLAGS-bsearch.c, CFLAGS-msort.c, CFLAGS-qsort.c):
	Likewise.
Diffstat (limited to 'argp')
-rw-r--r--argp/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/argp/Makefile b/argp/Makefile
index d341e57006..a68ca1bee3 100644
--- a/argp/Makefile
+++ b/argp/Makefile
@@ -28,7 +28,8 @@ routines	= $(addprefix argp-, ba fmtstream fs-xinl help parse pv \
 
 tests		= argp-test tst-argp1
 
-CFLAGS-argp-help.c = -fexceptions
+CFLAGS-argp-help.c = $(uses-callbacks) -fexceptions
+CFLAGS-argp-parse.c = $(uses-callbacks)
 CFLAGS-argp-fmtstream.c = -fexceptions
 
 include ../Rules