diff options
author | James Booth <boothj5@gmail.com> | 2016-03-23 23:33:12 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2016-03-23 23:33:12 +0000 |
commit | 57ccfcee4d51913a752b85c10746c0e0818573d3 (patch) | |
tree | f645cf2483c1b30dc30e9c4c882a846d39940112 | |
parent | cbd021272563a0b54494b7c272752b393a4a3fd8 (diff) | |
parent | 5278572fec624a8c7a487ec21bcb3e59d1c6cf93 (diff) | |
download | profani-tty-57ccfcee4d51913a752b85c10746c0e0818573d3.tar.gz |
Merge remote-tracking branch 'pasis/python-plugins'
-rw-r--r-- | configure.ac | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 38ca4f6d..bda37020 100644 --- a/configure.ac +++ b/configure.ac @@ -68,7 +68,12 @@ AC_ARG_WITH([themes], # python if test "x$enable_plugins" = xno; then AM_CONDITIONAL([BUILD_PYTHON_API], [false]) -elif test "x$enable_python_plugins" != xno; then +# +# Python plugins are temporary disabled by default, because Profanity doesn't +# build with all python versions. Change `= xyes` to `!= xno` to enable it by +# default. +# +elif test "x$enable_python_plugins" = xyes; then AS_IF([test "x$PLATFORM" = xosx], [ AS_IF([test "x$PYTHON_FRAMEWORK" = x], [ PYTHON_FRAMEWORK="/Library/Frameworks/Python.framework" ]) AC_MSG_NOTICE([Symlinking Python.framework to $PYTHON_FRAMEWORK]) |