svn commit: r254295 - head/gnu/lib/libstdc++

Pedro F. Giffuni pfg at FreeBSD.org
Tue Aug 13 20:28:22 UTC 2013


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


More information about the svn-src-head mailing list