1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

Disable C plugins on Cygwin

This commit is contained in:
James Booth 2016-09-08 00:36:11 +01:00
parent 4647fd8a4f
commit 56c0c533e3

View File

@ -96,6 +96,9 @@ else
fi
# c
if test "x$PLATFORM" = xcygwin; then
AM_CONDITIONAL([BUILD_C_API], [false])
else
LT_INIT
if test "x$enable_plugins" = xno; then
AM_CONDITIONAL([BUILD_C_API], [false])
@ -110,6 +113,7 @@ elif test "x$enable_c_plugins" != xno; then
else
AM_CONDITIONAL([BUILD_C_API], [false])
fi
fi
# threading
ACX_PTHREAD([], [AC_MSG_ERROR([pthread is required])])