Commit f19e9e4d by Bernardo Innocenti Committed by Bernardo Innocenti

crossconfig.m4: Don't enable _GLIBCXX_USE_LFS on *-uclinux*.

	* crossconfig.m4: Don't enable _GLIBCXX_USE_LFS on *-uclinux*.
	* configure: Regenerate.

From-SVN: r77523
parent 4243752c
2004-02-09 Bernardo Innocenti <bernie@develer.com>
* crossconfig.m4: Don't enable _GLIBCXX_USE_LFS on *-uclinux*.
* configure: Regenerate.
2004-02-08 Richard Henderson <rth@redhat.com>
PR libstdc++/14026
......
......@@ -52843,10 +52843,16 @@ echo "${ECHO_T}$enable_wchar_t" >&6
#define HAVE_INT64_T 1
_ACEOF
cat >>confdefs.h <<\_ACEOF
case "$target" in
*-uclinux*)
# Don't enable LFS with uClibc
;;
*)
cat >>confdefs.h <<\_ACEOF
#define _GLIBCXX_USE_LFS 1
_ACEOF
esac
# For showmanyc_helper().
......@@ -134,7 +134,13 @@ case "${host}" in
# For LFS.
AC_DEFINE(HAVE_INT64_T)
AC_DEFINE(_GLIBCXX_USE_LFS)
case "$target" in
*-uclinux*)
# Don't enable LFS with uClibc
;;
*)
AC_DEFINE(_GLIBCXX_USE_LFS)
esac
# For showmanyc_helper().
AC_CHECK_HEADERS(sys/ioctl.h sys/filio.h)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment