summaryrefslogtreecommitdiff
path: root/src/scripts
diff options
context:
space:
mode:
authorAndreas Metzler <ametzler@downhill.at.eu.org>2015-06-14 21:10:48 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2015-11-29 22:56:04 +0000
commitac3ad4262e3fe4b6ca02532c706069251c32106e (patch)
tree7eda74f8e59f9a5f0dc05e428301735e3eae5150 /src/scripts
parent6a11a9e618a72b8d96aecb2ad9aa300b98f8d991 (diff)
Separate PolarSSL from PDKIM. Bug 1192
This is intended to be a step towards replacing the PolarSSL code with either OpenSSL of GnuTLS equivalents.
Diffstat (limited to 'src/scripts')
-rwxr-xr-xsrc/scripts/MakeLinks11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/scripts/MakeLinks b/src/scripts/MakeLinks
index ea6265002..b7e0fabbd 100755
--- a/src/scripts/MakeLinks
+++ b/src/scripts/MakeLinks
@@ -82,12 +82,17 @@ cd ..
# Likewise for the code for the PDKIM library
mkdir pdkim
cd pdkim
-for f in README Makefile base64.c base64.h bignum.c bignum.h bn_mul.h pdkim.c \
- pdkim.h rsa.c rsa.h sha1.c sha1.h sha2.c sha2.h
+for f in README Makefile base64.c bignum.c part-x509parse.c pdkim.c \
+ pdkim.h pdkim-rsa.c pdkim-rsa.h rsa.c sha1.c sha2.c
do
ln -s ../../src/pdkim/$f $f
done
-cd ..
+mkdir polarssl
+cd polarssl
+for i in `ls ../../../src/pdkim/polarssl/` ; do
+ ln -s ../../../src/pdkim/polarssl/$i $i
+done
+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