- (bal) Collection of Cray patches (bsd-cray.h fix for CRAYT3E and improved
guessing rules)
This commit is contained in:
parent
d54d9382a4
commit
a5a2648b81
|
@ -8,6 +8,8 @@
|
||||||
enter 3.6
|
enter 3.6
|
||||||
- (bal) The days of lack of int64_t support are over. Sorry kids.
|
- (bal) The days of lack of int64_t support are over. Sorry kids.
|
||||||
- (bal) scp.c 'limit' conflicts with Cray. Rename to 'limitbw'
|
- (bal) scp.c 'limit' conflicts with Cray. Rename to 'limitbw'
|
||||||
|
- (bal) Collection of Cray patches (bsd-cray.h fix for CRAYT3E and improved
|
||||||
|
guessing rules)
|
||||||
|
|
||||||
20030318
|
20030318
|
||||||
- (tim) [configure.ac openbsd-compat/bsd-misc.c openbsd-compat/bsd-misc.h]
|
- (tim) [configure.ac openbsd-compat/bsd-misc.c openbsd-compat/bsd-misc.h]
|
||||||
|
@ -1233,4 +1235,4 @@
|
||||||
save auth method before monitor_reset_key_state(); bugzilla bug #284;
|
save auth method before monitor_reset_key_state(); bugzilla bug #284;
|
||||||
ok provos@
|
ok provos@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2635 2003/03/21 00:55:32 mouring Exp $
|
$Id: ChangeLog,v 1.2636 2003/03/21 01:05:37 mouring Exp $
|
||||||
|
|
|
@ -726,6 +726,9 @@ EOF
|
||||||
CRAY*SV1:*:*:*)
|
CRAY*SV1:*:*:*)
|
||||||
echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
|
echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
|
||||||
exit 0 ;;
|
exit 0 ;;
|
||||||
|
*:UNICOS/mp:*:*)
|
||||||
|
echo nv1-cray-unicosmp | sed -e 's/\.[^.]*$/.X/'
|
||||||
|
exit 0 ;;
|
||||||
F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)
|
F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)
|
||||||
FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
|
FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
|
||||||
FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
|
FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
|
||||||
|
|
|
@ -315,7 +315,7 @@ case $basic_machine in
|
||||||
| mipsisa64-* | mipsisa64el-* \
|
| mipsisa64-* | mipsisa64el-* \
|
||||||
| mipsisa64sb1-* | mipsisa64sb1el-* \
|
| mipsisa64sb1-* | mipsisa64sb1el-* \
|
||||||
| mipstx39 | mipstx39el \
|
| mipstx39 | mipstx39el \
|
||||||
| none-* | np1-* | ns16k-* | ns32k-* \
|
| none-* | np1-* | ns16k-* | ns32k-* | nv1-* \
|
||||||
| orion-* \
|
| orion-* \
|
||||||
| pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
|
| pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
|
||||||
| powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
|
| powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
|
||||||
|
@ -715,6 +715,9 @@ case $basic_machine in
|
||||||
nsr-tandem)
|
nsr-tandem)
|
||||||
basic_machine=nsr-tandem
|
basic_machine=nsr-tandem
|
||||||
;;
|
;;
|
||||||
|
nv1)
|
||||||
|
basic_machine=nv1-cray
|
||||||
|
;;
|
||||||
op50n-* | op60c-*)
|
op50n-* | op60c-*)
|
||||||
basic_machine=hppa1.1-oki
|
basic_machine=hppa1.1-oki
|
||||||
os=-proelf
|
os=-proelf
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* $Id: bsd-cray.h,v 1.6 2003/01/27 21:15:11 mouring Exp $
|
* $Id: bsd-cray.h,v 1.7 2003/03/21 01:05:38 mouring Exp $
|
||||||
*
|
*
|
||||||
* bsd-cray.h
|
* bsd-cray.h
|
||||||
*
|
*
|
||||||
|
@ -49,8 +49,10 @@ extern char cray_tmpdir[]; /* cray tmpdir */
|
||||||
#ifndef MAXHOSTNAMELEN
|
#ifndef MAXHOSTNAMELEN
|
||||||
#define MAXHOSTNAMELEN 64
|
#define MAXHOSTNAMELEN 64
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef _CRAYT3E
|
||||||
#include <sys/ttold.h>
|
#include <sys/ttold.h>
|
||||||
#define TIOCGPGRP (tIOC|20)
|
#define TIOCGPGRP (tIOC|20)
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* _BSD_CRAY_H */
|
#endif /* _BSD_CRAY_H */
|
||||||
|
|
Loading…
Reference in New Issue