Changeset 4398 for libcaca/trunk/configure.ac
- Timestamp:
- May 21, 2010, 1:32:35 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/configure.ac
r4333 r4398 86 86 AC_ARG_ENABLE(cxx, 87 87 [ --enable-cxx C++ bindings (autodetected)]) 88 AC_ARG_ENABLE(python, 89 [ --enable-python Python bindings (autodetected)]) 88 90 AC_ARG_ENABLE(ruby, 89 91 [ --enable-ruby Ruby bindings (autodetected)]) … … 465 467 AM_CONDITIONAL(USE_JAVA, test "${ac_cv_my_have_java}" = "yes") 466 468 469 # Build the Python bindings? 470 ac_cv_my_have_python="no" 471 if test "${enable_python}" != "no"; then 472 AM_PATH_PYTHON(2.2, ac_cv_my_have_python="yes", :) 473 fi 474 AM_CONDITIONAL(USE_PYTHON, test "${ac_cv_my_have_python}" = "yes") 475 467 476 # Build the Ruby bindings? 468 477 ac_cv_my_have_ruby="no"
Note: See TracChangeset
for help on using the changeset viewer.