Skip to content

Commit

Permalink
config: detect linux-mips* targets.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Polyakov committed Sep 19, 2012
1 parent 800a4a7 commit b8c5929
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,10 @@

Changes between 1.0.1 and 1.0.2 [xx XXX xxxx]

*) MIPS assembly pack updates: support for MIPS32r2 and SmartMIPS ASE,
platform support for Linux and Android.
[Andy Polyakov]

*) Call OCSP Stapling callback after ciphersuite has been chosen, so
the right response is stapled. Also change current certificate to
the certificate actually sent.
Expand Down
10 changes: 10 additions & 0 deletions config
Original file line number Diff line number Diff line change
Expand Up @@ -596,6 +596,16 @@ case "$GUESSOS" in
OUT="linux-ppc"
;;
ppc-*-linux2) OUT="linux-ppc" ;;
mips64*-*-linux2)
echo "WARNING! If you wish to build 64-bit library, then you have to"
echo " invoke './Configure linux64-mips64' *manually*."
if [ "$TEST" = "false" -a -t 1 ]; then
echo " You have about 5 seconds to press Ctrl-C to abort."
(trap "stty `stty -g`" 2 0; stty -icanon min 0 time 50; read waste) <&1
fi
OUT="linux-mips64"
;;
mips*-*-linux2) OUT="linux-mips32" ;;
ppc60x-*-vxworks*) OUT="vxworks-ppc60x" ;;
ppcgen-*-vxworks*) OUT="vxworks-ppcgen" ;;
pentium-*-vxworks*) OUT="vxworks-pentium" ;;
Expand Down

0 comments on commit b8c5929

Please sign in to comment.