Changeset 1953
- Timestamp:
- Nov 14, 2007, 12:55:05 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/configure.ac
r1951 r1953 62 62 dnl language bindings 63 63 AC_ARG_ENABLE(cxx, 64 [ --enable-cxx C++ bindings (default disabled)])64 [ --enable-cxx C++ bindings (default enabled)]) 65 65 AC_ARG_ENABLE(ruby, 66 [ --enable-ruby Ruby bindings ( default disabled)])66 [ --enable-ruby Ruby bindings (autodetected)]) 67 67 68 68 dnl example programs features … … 315 315 # Build the C++ bindings? 316 316 ac_cv_my_have_cxx="no" 317 if test "${enable_cxx}" = "yes"; then317 if test "${enable_cxx}" != "no"; then 318 318 ac_cv_my_have_cxx="yes" 319 319 fi … … 322 322 # Build the Ruby bindings? 323 323 ac_cv_my_have_ruby="no" 324 if test "${enable_ruby}" = "yes"; then324 if test "${enable_ruby}" != "no"; then 325 325 AC_PATH_PROG(RUBY, ruby, no) 326 326 if test "${RUBY}" != "no"; then
Note: See TracChangeset
for help on using the changeset viewer.