This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

V3 PATCH: fix thinko in acinclude.m4



In my last cleanup I forgot to remove cpowl from the list of the
functions being checked althought the corresponding stub definition
was removed.  That is causing failures on plateforms on which that
function is non-existent.  Fixed thusly.

Bootstrapped and tested on an i686-pc-linux-gnu.  No regression.

-- Gaby
CodeSourcery, LLC            http://www.codesourcery.com
     http://www.codesourcery.com/gcc-compile.shtml

2000-12-08  Gabriel Dos Reis  <gdr@codesourcery.com>

	* acinclude.m4: Don't forget to remove check for cpowl as it is no
	longer needed, nor is the corresponding stub existent.
	* aclocal.m4: Regenarate.
	* configure: Regenarate.

Index: acinclude.m4
===================================================================
RCS file: /cvs/gcc/egcs/libstdc++-v3/acinclude.m4,v
retrieving revision 1.105
diff -p -r1.105 acinclude.m4
*** acinclude.m4	2000/12/06 21:44:44	1.105
--- acinclude.m4	2000/12/08 03:39:57
*************** AC_DEFUN(GLIBCPP_CHECK_COMPLEX_MATH_SUPP
*** 767,773 ****
    if test x$ac_cv_func_atan2l = x"yes" \
       && test x$ac_cv_func_copysignl = x"yes"; then
      USE_COMPLEX_LONG_DOUBLE=yes
!     AC_REPLACE_MATHFUNCS(ccoshl ccosl cexpl cpowl csinhl csinl \
      csqrtl ctanhl ctanl hypotl signbitl clog10l)
    fi
  
--- 767,773 ----
    if test x$ac_cv_func_atan2l = x"yes" \
       && test x$ac_cv_func_copysignl = x"yes"; then
      USE_COMPLEX_LONG_DOUBLE=yes
!     AC_REPLACE_MATHFUNCS(ccoshl ccosl cexpl csinhl csinl \
      csqrtl ctanhl ctanl hypotl signbitl clog10l)
    fi

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]