From e74fbfef5d5b39cbc22ecadeed998007e555b20e Mon Sep 17 00:00:00 2001 From: Ezra Peisach Date: Fri, 26 May 1995 16:43:37 +0000 Subject: Add support for Dec-alpha. Will currently only work (without warning) for libcrypto.so git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5887 dc483132-0cff-0310-8789-dd5450dbe970 --- src/util/makeshlib | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/util/makeshlib') diff --git a/src/util/makeshlib b/src/util/makeshlib index 1c7a06bd1..86750c49a 100644 --- a/src/util/makeshlib +++ b/src/util/makeshlib @@ -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 -- cgit