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> 2004-02-08 Richard Henderson <rth@redhat.com>
PR libstdc++/14026 PR libstdc++/14026
......
...@@ -52843,10 +52843,16 @@ echo "${ECHO_T}$enable_wchar_t" >&6 ...@@ -52843,10 +52843,16 @@ echo "${ECHO_T}$enable_wchar_t" >&6
#define HAVE_INT64_T 1 #define HAVE_INT64_T 1
_ACEOF _ACEOF
case "$target" in
*-uclinux*)
# Don't enable LFS with uClibc
;;
*)
cat >>confdefs.h <<\_ACEOF cat >>confdefs.h <<\_ACEOF
#define _GLIBCXX_USE_LFS 1 #define _GLIBCXX_USE_LFS 1
_ACEOF _ACEOF
esac
# For showmanyc_helper(). # For showmanyc_helper().
...@@ -134,7 +134,13 @@ case "${host}" in ...@@ -134,7 +134,13 @@ case "${host}" in
# For LFS. # For LFS.
AC_DEFINE(HAVE_INT64_T) AC_DEFINE(HAVE_INT64_T)
case "$target" in
*-uclinux*)
# Don't enable LFS with uClibc
;;
*)
AC_DEFINE(_GLIBCXX_USE_LFS) AC_DEFINE(_GLIBCXX_USE_LFS)
esac
# For showmanyc_helper(). # For showmanyc_helper().
AC_CHECK_HEADERS(sys/ioctl.h sys/filio.h) 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