From dff14448f7521b27349af4e67d141aba1c9d7edd Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 26 Jun 1998 14:47:05 +0000 Subject: Update. 1998-06-26 14:37 Ulrich Drepper * configure.in: Check for -fexceptions. * config.make.in: Define exceptions, not no-exceptions. * misc/sys/cdefs.h: Define __PMS. When using modern g++ define __P to use throw(). * misc/Makefile: Define CFLAGS-tsearch.c and CFLAGS-lsearch.c to $(exceptions). * stdlib/Makefile: Likewise for bsearch.c, msort.c, and qsort.c. * misc/search.h: Use __PMS in tsearch, tfind, tdelete, twalk, tdestroy, lfind, and lsearch prototpypes. * stdlib/stdlib.h: Likewise for bsearch and qsort. 1998-06-26 Ulrich Drepper * sysdeps/i386/fpu/bits/mathinline.h (__finite): Use C code, not asm. 1998-06-25 Andreas Schwab * Makefile (remove-old-headers): Make phony. * configure.in: Substitute @old_glibc_headers@. 1998-06-26 Ulrich Drepper * libc.map: Remove __libc_uid. 1998-06-24 Andreas Schwab * manual/terminal.texi (Allocation, Pseudo-Terminal Pairs): Fix typos. 1998-06-26 Ulrich Drepper * libc.map: Add Alpha-specific io function from protected namespace. --- configure.in | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index 7dc7d4b560..b64e31cdb7 100644 --- a/configure.in +++ b/configure.in @@ -892,7 +892,7 @@ if test $libc_cv_ld_no_whole_archive = yes; then fi AC_SUBST(no_whole_archive)dnl -AC_CACHE_CHECK(for gcc -fno-exceptions, libc_cv_gcc_no_exceptions, [dnl +AC_CACHE_CHECK(for gcc -fexceptions, libc_cv_gcc_exceptions, [dnl cat > conftest.c <<\EOF _start () {} int __eh_pc; @@ -900,17 +900,17 @@ __throw () {} EOF dnl No \ in command here because it ends up inside ''. if AC_TRY_COMMAND([${CC-cc} $CFLAGS - -nostdlib -nostartfiles -fno-exceptions + -nostdlib -nostartfiles -fexceptions -o conftest conftest.c 1>&AC_FD_CC]); then - libc_cv_gcc_no_exceptions=yes + libc_cv_gcc_exceptions=yes else - libc_cv_gcc_no_exceptions=no + libc_cv_gcc_exceptions=no fi rm -f conftest*]) -if test $libc_cv_ld_no_whole_archive = yes; then - no_exceptions=-fno-exceptions +if test $libc_cv_gcc_exceptions = yes; then + exceptions=-fexceptions fi -AC_SUBST(no_exceptions)dnl +AC_SUBST(exceptions)dnl if test "$base_machine" = alpha ; then AC_CACHE_CHECK(for function ..ng prefix, libc_cv_gcc_alpha_ng_prefix, [dnl -- cgit 1.4.1