aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordequis <dx@dxzone.com.ar>2014-09-27 11:54:35 -0300
committerdequis <dx@dxzone.com.ar>2014-09-27 11:54:35 -0300
commitd3483776b4b7f45b99127240d76f3c978c260ca2 (patch)
tree7d3ba5018f34f45533eba7a9e15c907d3bc7e425
parent286cd480d844475d545ca90e422e4a0f72f851ca (diff)
Add -lgcrypt when building with OTR built-in
Needed when building without gnutls (which already depends on gcrypt)
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 9ac18d85..71502aa4 100755
--- a/configure
+++ b/configure
@@ -607,7 +607,7 @@ fi
if [ "$otr" = 1 ]; then
# BI == built-in
echo '#define OTR_BI' >> config.h
- echo "EFLAGS+=-L${otrprefix}/lib -lotr" >> Makefile.settings
+ echo "EFLAGS+=-L${otrprefix}/lib -lotr -lgcrypt" >> Makefile.settings
echo "CFLAGS+=-I${otrprefix}/include" >> Makefile.settings
echo 'OTR_BI=otr.o' >> Makefile.settings
elif [ "$otr" = "plugin" ]; then