Changeset 1954 for libcaca/trunk/configure.ac
- Timestamp:
- Nov 14, 2007, 12:55:07 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/configure.ac
r1953 r1954 63 63 AC_ARG_ENABLE(cxx, 64 64 [ --enable-cxx C++ bindings (default enabled)]) 65 AC_ARG_ENABLE(dotnet, 66 [ --enable-dotnet .NET bindings (autodetected)]) 65 67 AC_ARG_ENABLE(ruby, 66 68 [ --enable-ruby Ruby bindings (autodetected)]) … … 320 322 AM_CONDITIONAL(USE_CXX, test "${ac_cv_my_have_cxx}" = "yes") 321 323 324 # Build the DotNet bindings? 325 ac_cv_my_have_dotnet="no" 326 if test "${enable_dotnet}" != "no"; then 327 AC_PATH_PROG(GMCS, gmcs, no) 328 if test "${GMCS}" != "no"; then 329 ac_cv_my_have_dotnet="yes" 330 fi 331 fi 332 AM_CONDITIONAL(USE_DOTNET, test "${ac_cv_my_have_dotnet}" = "yes") 333 322 334 # Build the Ruby bindings? 323 335 ac_cv_my_have_ruby="no" … … 397 409 tools/Makefile 398 410 cxx/Makefile 411 DotNet/Makefile 399 412 ruby/Makefile 400 413 doc/Makefile
Note: See TracChangeset
for help on using the changeset viewer.