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
This commit is contained in:
Bernardo Innocenti 2004-02-09 08:06:35 +01:00 committed by Bernardo Innocenti
parent 4243752ca1
commit f19e9e4d16
3 changed files with 19 additions and 2 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -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().

View File

@ -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)