Fixed configure.ac for --disable-otr

This commit is contained in:
James Booth
2014-01-16 22:55:30 +00:00
parent 4f98bc8c25
commit 3f73cb7732

View File

@@ -134,6 +134,8 @@ AM_CONDITIONAL([BUILD_OTR], [true])
if test "x$enable_otr" = xyes; then
AC_CHECK_LIB([otr], [main], [],
[AC_MSG_ERROR([libotr is required for otr encryption support])])
elif test "x$enable_otr" = xno; then
AM_CONDITIONAL([BUILD_OTR], [false])
elif test "x$enable_otr" = x; then
AC_CHECK_LIB([otr], [main], [],
[AM_CONDITIONAL([BUILD_OTR], [false]) AC_MSG_NOTICE([libotr not found, otr entryption support not enabled])])