diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2016-02-01 18:18:56 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2016-02-01 19:07:32 +0000 |
commit | 2592e6c0eda522da0f6a33f4d32e33598288eb6e (patch) | |
tree | 2f6a0dfb118ea9fd715a4edfbe5d2ac86c17914a /src/scripts | |
parent | 939c3e349db9662100c7cafa8bc1298dfd8d3798 (diff) |
DKIM: replace SHA and RSA routines from gnutls, under earlier library
versions, using libgcrypt and libtasn1 directly. Bug 1772
Diffstat (limited to 'src/scripts')
-rwxr-xr-x | src/scripts/MakeLinks | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/scripts/MakeLinks b/src/scripts/MakeLinks index 4f6747f7c..886214030 100755 --- a/src/scripts/MakeLinks +++ b/src/scripts/MakeLinks @@ -82,17 +82,12 @@ cd .. # Likewise for the code for the PDKIM library mkdir pdkim cd pdkim -for f in README Makefile crypt_ver.h part-x509parse.c pdkim.c \ - pdkim.h sha1.c sha2.c +for f in README Makefile crypt_ver.h pdkim.c \ + pdkim.h hash.c hash.h rsa.c rsa.h blob.h do ln -s ../../src/pdkim/$f $f done -mkdir polarssl -cd polarssl -for i in `ls ../../../src/pdkim/polarssl/` ; do - ln -s ../../../src/pdkim/polarssl/$i $i -done -cd ../.. +cd .. # The basic source files for Exim and utilities. NB local_scan.h gets linked, # but local_scan.c does not, because its location is taken from the build-time |