diff options
author | pfg <pfg@FreeBSD.org> | 2013-08-13 20:28:21 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2013-08-13 20:28:21 +0000 |
commit | c86f3222f74c7d4a14c85e23854e22dc4b5dd493 (patch) | |
tree | e687df3514e7a7e7758816c5a9d168421090c07e /gnu | |
parent | b9f448f4b6a87ddf5b8e2bfce8afbff86c1dd7b3 (diff) | |
download | FreeBSD-src-c86f3222f74c7d4a14c85e23854e22dc4b5dd493.zip FreeBSD-src-c86f3222f74c7d4a14c85e23854e22dc4b5dd493.tar.gz |
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
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/lib/libstdc++/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/lib/libstdc++/config.h b/gnu/lib/libstdc++/config.h index 3351419..d0460a7 100644 --- a/gnu/lib/libstdc++/config.h +++ b/gnu/lib/libstdc++/config.h @@ -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 |