Linux PPC support.
authorBen Laurie <ben@openssl.org>
Sat, 27 Mar 1999 13:03:37 +0000 (13:03 +0000)
committerBen Laurie <ben@openssl.org>
Sat, 27 Mar 1999 13:03:37 +0000 (13:03 +0000)
CHANGES
Configure
config

diff --git a/CHANGES b/CHANGES
index 38c268fca683ae9c5db163d9a656fa0d231da9b5..13e41f3ed68bf2bec7a03f711c40671737f7ccdd 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -5,6 +5,9 @@
 
  Changes between 0.9.2b and 0.9.3
 
+  *) Add LinuxPPC support.
+     [Jeff Dubrule <igor@pobox.org>]
+
   *) Get rid of redundant BN file bn_mulw.c, and rename bn_div64 to
      bn_div_words in alpha.s.
      [Hannes Reinecke <H.Reinecke@hw.ac.uk> and Ben Laurie]
index bea1230f040c041c1923bb7ea761de50f9774693..e4089268e22a7483fee4703fa40246a57cb6aed9 100755 (executable)
--- a/Configure
+++ b/Configure
@@ -151,8 +151,8 @@ my %table=(
 "linux-elf",   "gcc:-DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -m486 -Wall -Wuninitialized::BN_LLONG $x86_gcc_des $x86_gcc_opts:$x86_elf_asm",
 "debug-linux-elf","gcc:-DREF_CHECK -DCRYPTO_MDEBUG -DL_ENDIAN -DTERMIO -g -m486 -Wall:-lefence:BN_LLONG $x86_gcc_des $x86_gcc_opts:$x86_elf_asm",
 "linux-aout",  "gcc:-DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -m486 -Wall::BN_LLONG $x86_gcc_des $x86_gcc_opts:$x86_out_asm",
-"linux-mips",    "gcc:-DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -Wall
--Wuninitialized:::BN_LLONG:",
+"linux-mips",   "gcc:-DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -Wall -Wuninitialized:::BN_LLONG:",
+"linux-ppc",    "gcc:-DB_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -Wall::::",
 "NetBSD-sparc",        "gcc:-DTERMIOS -O3 -fomit-frame-pointer -mv8 -Wall -DB_ENDIAN::BN_LLONG MD2_CHAR RC4_INDEX DES_UNROLL:::",
 "NetBSD-m68",  "gcc:-DTERMIOS -O3 -fomit-frame-pointer -Wall -DB_ENDIAN::BN_LLONG MD2_CHAR RC4_INDEX DES_UNROLL:::",
 "NetBSD-x86",  "gcc:-DTERMIOS -D_ANSI_SOURCE -O3 -fomit-frame-pointer -m486 -Wall::BN_LLONG $x86_gcc_des $x86_gcc_opts:",
diff --git a/config b/config
index 690f6630bc94154e5054ef8d4aafa70b421c5e2b..3deaf94dd087780624d03893e75b6dff0d2113b0 100755 (executable)
--- a/config
+++ b/config
@@ -303,6 +303,7 @@ fi
 # more time that I want to waste at the moment
 case "$GUESSOS" in
   alpha-*-linux2) OUT="alpha-gcc" ;;
+  ppc-*-linux2) OUT="linux-ppc" ;;
   *-*-linux2) OUT="linux-elf" ;;
   *-*-linux1) OUT="linux-aout" ;;
   sun4*-sun-solaris2) OUT="solaris-sparc-$CC" ;;