mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-06 10:06:55 +08:00
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:
parent
4243752ca1
commit
f19e9e4d16
@ -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
|
||||
|
8
libstdc++-v3/configure
vendored
8
libstdc++-v3/configure
vendored
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user