Add support for Dec-alpha. Will currently only work (without warning)
authorEzra Peisach <epeisach@mit.edu>
Fri, 26 May 1995 16:43:37 +0000 (16:43 +0000)
committerEzra Peisach <epeisach@mit.edu>
Fri, 26 May 1995 16:43:37 +0000 (16:43 +0000)
for libcrypto.so

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5887 dc483132-0cff-0310-8789-dd5450dbe970

src/util/ChangeLog
src/util/makeshlib

index 9906a4a7c52bad33e9b01932c7533bb3af189630..ac85929288eed71e8b4924bc2447ddd8504cca04 100644 (file)
@@ -1,3 +1,8 @@
+Fri May 26 12:41:28 1995  Ezra Peisach  <epeisach@kangaroo.mit.edu>
+
+       * makeshlib (library): Added alpha-osf1 support. Will only work
+               for libcrypto at the moment.
+
 Thu May 25 21:39:02 1995  Theodore Y. Ts'o  (tytso@dcl)
 
        * makeshlib: Added shell script for creating shared libraries
index 1c7a06bd198aae6e2fbe668f9329a9ae1001876f..86750c49aa64cbd70d69dbd6434e094a5da6f430 100644 (file)
@@ -19,6 +19,17 @@ case $host in
        echo $CC -G -o $library $FILES
        $CC -G -o $library $FILES
        ;;
+alpha-*-osf*)
+       FILES=`for i 
+       do
+               sed -e "s;^;$i/;" -e "s; ; $i/;g" $i/DONE
+
+       done`
+
+       echo    ld -shared -o $library -all $FILES -none -lc
+       ld -shared -o $library -all $FILES -none -lc
+       ;;
+
 *)
        echo "Host type $host not supported!"
        exit 1