]> git.pld-linux.org Git - packages/cryptsetup.git/blame - cryptsetup-luks-nostatic.patch
- separate option for static cryptsetup
[packages/cryptsetup.git] / cryptsetup-luks-nostatic.patch
CommitLineData
e92f0f4c
JB
1--- cryptsetup-luks-1.0.3/configure.in.orig 2006-08-22 22:59:13.083565000 +0200
2+++ cryptsetup-luks-1.0.3/configure.in 2006-08-22 23:11:52.943053250 +0200
3@@ -110,8 +110,12 @@
4
5 dnl ==========================================================================
6
7-AM_CONDITIONAL(STATIC_CRYPTSETUP, test x$enable_static = xyes)
8-AM_CONDITIONAL(DYNAMIC_CRYPTSETUP, test x$enable_static = xno)
9+AC_ARG_ENABLE(static-cryptsetup,
10+[ --enable-static-cryptsetup link cryptsetup statically [[default=no]]],
11+[enable_static_cryptsetup=$enableval],[enable_static_cryptsetup=no])
12+
13+AM_CONDITIONAL(STATIC_CRYPTSETUP, test x$enable_static_cryptsetup = xyes)
14+AM_CONDITIONAL(DYNAMIC_CRYPTSETUP, test x$enable_static_cryptsetup = xno)
15
16 dnl ==========================================================================
17
This page took 0.02527 seconds and 4 git commands to generate.