diff options
| author | Ezra Peisach <epeisach@mit.edu> | 1995-05-26 16:43:37 +0000 |
|---|---|---|
| committer | Ezra Peisach <epeisach@mit.edu> | 1995-05-26 16:43:37 +0000 |
| commit | e74fbfef5d5b39cbc22ecadeed998007e555b20e (patch) | |
| tree | 4298457e22069e0eaf27e49faf9b12e288239f2d /src | |
| parent | 3f850982c43eee71805f070370970c858546d4af (diff) | |
| download | krb5-e74fbfef5d5b39cbc22ecadeed998007e555b20e.tar.gz krb5-e74fbfef5d5b39cbc22ecadeed998007e555b20e.tar.xz krb5-e74fbfef5d5b39cbc22ecadeed998007e555b20e.zip | |
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
Diffstat (limited to 'src')
| -rw-r--r-- | src/util/ChangeLog | 5 | ||||
| -rw-r--r-- | src/util/makeshlib | 11 |
2 files changed, 16 insertions, 0 deletions
diff --git a/src/util/ChangeLog b/src/util/ChangeLog index 9906a4a7c..ac8592928 100644 --- a/src/util/ChangeLog +++ b/src/util/ChangeLog @@ -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 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 |
