bc49b5d314
This version is focused on improved performance and stability, rather than introducing new functionality, hence it is called R9C. Build Process NEW The build process has been improved so that it is possible to build Erlang/OTP from source even on Windows platforms. There is also a completely new installation program for Windows. Observer crashdump_viewer NEW A HTML based tool for browsing Erlang crashdumps. The tool can handle crashdumps from OTP R7B, R8B and R9B as well but there is additional information in the crashdumps for R9C. OTP_MIBs NEW The OTP mibs that where included in the SASL application have been moved to this new application otp_mibs. This is a step too create a pure core for Erlang/OTP that does not depend on specific, non-mainstream applications such as SNMP.
30 lines
1,023 B
Text
30 lines
1,023 B
Text
$NetBSD: patch-aa,v 1.2 2003/08/31 01:01:56 jtb Exp $
|
|
|
|
--- erts/autoconf/config.guess.orig 2003-08-29 08:35:08.000000000 +0100
|
|
+++ erts/autoconf/config.guess 2003-08-29 08:37:07.000000000 +0100
|
|
@@ -153,11 +153,11 @@
|
|
UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \
|
|
/usr/sbin/$sysctl 2>/dev/null || echo unknown)`
|
|
case "${UNAME_MACHINE_ARCH}" in
|
|
- armeb) machine=armeb-unknown ;;
|
|
- arm*) machine=arm-unknown ;;
|
|
- sh3el) machine=shl-unknown ;;
|
|
- sh3eb) machine=sh-unknown ;;
|
|
- *) machine=${UNAME_MACHINE_ARCH}-unknown ;;
|
|
+ armeb) machine=armeb- ;;
|
|
+ arm*) machine=arm- ;;
|
|
+ sh3el) machine=shl- ;;
|
|
+ sh3eb) machine=sh- ;;
|
|
+ *) machine=${UNAME_MACHINE_ARCH}- ;;
|
|
esac
|
|
# The Operating System including object format, if it has switched
|
|
# to ELF recently, or will in the future.
|
|
@@ -188,7 +188,7 @@
|
|
release='-gnu'
|
|
;;
|
|
*)
|
|
- release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
|
|
+ release=
|
|
;;
|
|
esac
|
|
# Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:
|