Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 13 Aug 2013 20:28:21 +0000 (UTC)
From:      "Pedro F. Giffuni" <pfg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r254295 - head/gnu/lib/libstdc++
Message-ID:  <201308132028.r7DKSLBJ078767@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pfg
Date: Tue Aug 13 20:28:21 2013
New Revision: 254295
URL: http://svnweb.freebsd.org/changeset/base/254295

Log:
  Teach libstdc++ about logl(3).
  
  The logl(3) family of functions were implemented in r251292.
  Define them in libstdc++'s configuration so they can be used.
  
  Reviewed by:	dim

Modified:
  head/gnu/lib/libstdc++/config.h

Modified: head/gnu/lib/libstdc++/config.h
==============================================================================
--- head/gnu/lib/libstdc++/config.h	Tue Aug 13 20:22:57 2013	(r254294)
+++ head/gnu/lib/libstdc++/config.h	Tue Aug 13 20:28:21 2013	(r254295)
@@ -212,13 +212,13 @@
 #define HAVE_LOG10F 1
 
 /* Define to 1 if you have the `log10l' function. */
-/* #undef HAVE_LOG10L */
+#define HAVE_LOG10L 1
 
 /* Define to 1 if you have the `logf' function. */
 #define HAVE_LOGF 1
 
 /* Define to 1 if you have the `logl' function. */
-/* #undef HAVE_LOGL */
+#define HAVE_LOGL 1
 
 /* Define to 1 if you have the <machine/endian.h> header file. */
 #define HAVE_MACHINE_ENDIAN_H 1



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308132028.r7DKSLBJ078767>