From: dbs Date: Tue, 7 Oct 2008 14:36:33 +0000 (+0000) Subject: Disable Python by default as it is not currently required X-Git-Tag: osrf_rel_2_0_1~545 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=f2c7db06522ba477d289b5638e37dabdcd56f1b9;p=OpenSRF.git Disable Python by default as it is not currently required git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1449 9efc2488-bf62-4759-914b-345cdb29e865 --- diff --git a/configure.ac b/configure.ac index 9ebe579..ba492b3 100644 --- a/configure.ac +++ b/configure.ac @@ -69,13 +69,13 @@ AC_SUBST([OSRF_INSTALL_JAVA]) # build and install the python modules AC_ARG_ENABLE([python], -[ --disable-python disable building and installing python modules], +[ --enable-python disable building and installing python modules], [case "${enableval}" in yes) OSRF_INSTALL_PYTHON=true ;; no) OSRF_INSTALL_PYTHON=false ;; *) AC_MSG_ERROR([please choose another value for --enable-python (supported values are yes or no)]) ;; esac], -[OSRF_INSTALL_PYTHON=true]) +[OSRF_INSTALL_PYTHON=false]) AM_CONDITIONAL([BUILDPYTHON], [test x$OSRF_INSTALL_PYTHON = xtrue]) AC_SUBST([OSRF_INSTALL_PYTHON])