summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Bogusz2006-08-22 21:23:26 (GMT)
committercvs2git2012-06-24 12:13:13 (GMT)
commite92f0f4c1f8ffc8e8ecce6161ab35346110c0862 (patch)
treef4afd2206ff5f54e04f3ce37baa6b06645025ed4
parent516a2b2df33fdd849311df604de53eeb20bb5d9b (diff)
downloadcryptsetup-e92f0f4c1f8ffc8e8ecce6161ab35346110c0862.zip
cryptsetup-e92f0f4c1f8ffc8e8ecce6161ab35346110c0862.tar.gz
- separate option for static cryptsetup
Changed files: cryptsetup-luks-nostatic.patch -> 1.1
-rw-r--r--cryptsetup-luks-nostatic.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/cryptsetup-luks-nostatic.patch b/cryptsetup-luks-nostatic.patch
new file mode 100644
index 0000000..8a67e06
--- /dev/null
+++ b/cryptsetup-luks-nostatic.patch
@@ -0,0 +1,17 @@
+--- cryptsetup-luks-1.0.3/configure.in.orig 2006-08-22 22:59:13.083565000 +0200
++++ cryptsetup-luks-1.0.3/configure.in 2006-08-22 23:11:52.943053250 +0200
+@@ -110,8 +110,12 @@
+
+ dnl ==========================================================================
+
+-AM_CONDITIONAL(STATIC_CRYPTSETUP, test x$enable_static = xyes)
+-AM_CONDITIONAL(DYNAMIC_CRYPTSETUP, test x$enable_static = xno)
++AC_ARG_ENABLE(static-cryptsetup,
++[ --enable-static-cryptsetup link cryptsetup statically [[default=no]]],
++[enable_static_cryptsetup=$enableval],[enable_static_cryptsetup=no])
++
++AM_CONDITIONAL(STATIC_CRYPTSETUP, test x$enable_static_cryptsetup = xyes)
++AM_CONDITIONAL(DYNAMIC_CRYPTSETUP, test x$enable_static_cryptsetup = xno)
+
+ dnl ==========================================================================
+