* Make shared libs work on AIX
authorSam Hartman <hartmans@mit.edu>
Sat, 22 Feb 1997 08:00:56 +0000 (08:00 +0000)
committerSam Hartman <hartmans@mit.edu>
Sat, 22 Feb 1997 08:00:56 +0000 (08:00 +0000)
commit971424e6b844ee70802768823ccdaa4e15278b1c
tree1afcae7f9b632d21e89c41bb7140ccff84ad83e5
parent259d6f7c55696d724b5812984b94734f5453a62a
* Make shared libs work on AIX
* DO not use #ifdef unix
* move krb5/krb/crypto_glue.c to crypto/krb5_glue.c

crypto_glue.c contained a bunch of functions that used to be macros.  They do belong in libkrb5, but if they go there,
they create a circular dependency because libcrypto uses them.
The obvious long-term right answer is to get libcrypto to stop using interfaces
with names like krb5_*.
I didn't feel like tackling that in the middle of getting things working on AIX
so I just moved the functions to be declared in the same library as use.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9949 dc483132-0cff-0310-8789-dd5450dbe970
src/lib/crypto/ChangeLog
src/lib/crypto/Makefile.in
src/lib/crypto/krb5_glue.c [new file with mode: 0644]