summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVlad Glagolev2008-05-29 20:56:19 +0400
committerVlad Glagolev2008-05-29 20:56:19 +0400
commit3c055b5f9422ddc74f2d1c4910b66f2ef76a3667 (patch)
tree3ac9cd6e0c452f7274d1d1449298ec7223115a2b
parent39b9bb9ac0516c6ec277967f562ac3436a6010e3 (diff)
aespipe: added statically liked option for loop-AES usage, tests
-rwxr-xr-xcrypto/aespipe/BUILD7
-rwxr-xr-xcrypto/aespipe/CONFIGURE1
-rw-r--r--crypto/aespipe/HISTORY5
3 files changed, 12 insertions, 1 deletions
diff --git a/crypto/aespipe/BUILD b/crypto/aespipe/BUILD
new file mode 100755
index 0000000000..ff402a1eca
--- /dev/null
+++ b/crypto/aespipe/BUILD
@@ -0,0 +1,7 @@
+if [[ $AESPIPE_STATIC == y ]]; then
+ LDFLAGS="-static -s" default_build
+else
+ default_build
+fi &&
+
+make tests
diff --git a/crypto/aespipe/CONFIGURE b/crypto/aespipe/CONFIGURE
new file mode 100755
index 0000000000..29ecf4d824
--- /dev/null
+++ b/crypto/aespipe/CONFIGURE
@@ -0,0 +1 @@
+config_query AESPIPE_STATIC "Build statically linked (required for loop-AES)?" y
diff --git a/crypto/aespipe/HISTORY b/crypto/aespipe/HISTORY
index 47f9254a33..2a4cee5ff5 100644
--- a/crypto/aespipe/HISTORY
+++ b/crypto/aespipe/HISTORY
@@ -1,3 +1,7 @@
+2008-05-29 Vlad Glagolev <stealth@sourcemage.org>
+ * BUILD: make tests
+ * CONFIGURE: added option for static compile
+
2007-02-26 Ladislav Hagara <hgr@vabo.cz>
* DETAILS: 2.3d
@@ -18,4 +22,3 @@
2004-02-13 Ladislav Hagara <hgr@vabo.cz>
* DETAILS, HISTORY: created this spell, version 2.2a
-