|
|
@@ -60,10 +60,10 @@ AC_ARG_ENABLE(vga, |
|
|
|
[ --enable-vga VGA support (default disabled)]) |
|
|
|
|
|
|
|
dnl language bindings |
|
|
|
AC_ARG_ENABLE(csharp, |
|
|
|
[ --enable-csharp C# bindings (autodetected)]) |
|
|
|
AC_ARG_ENABLE(cxx, |
|
|
|
[ --enable-cxx C++ bindings (default enabled)]) |
|
|
|
AC_ARG_ENABLE(dotnet, |
|
|
|
[ --enable-dotnet .NET bindings (autodetected)]) |
|
|
|
AC_ARG_ENABLE(ruby, |
|
|
|
[ --enable-ruby Ruby bindings (autodetected)]) |
|
|
|
|
|
|
@@ -321,15 +321,15 @@ if test "${enable_cxx}" != "no"; then |
|
|
|
fi |
|
|
|
AM_CONDITIONAL(USE_CXX, test "${ac_cv_my_have_cxx}" = "yes") |
|
|
|
|
|
|
|
# Build the DotNet bindings? |
|
|
|
ac_cv_my_have_dotnet="no" |
|
|
|
if test "${enable_dotnet}" != "no"; then |
|
|
|
# Build the .NET bindings? |
|
|
|
ac_cv_my_have_csharp="no" |
|
|
|
if test "${enable_csharp}" != "no"; then |
|
|
|
AC_PATH_PROG(GMCS, gmcs, no) |
|
|
|
if test "${GMCS}" != "no"; then |
|
|
|
ac_cv_my_have_dotnet="yes" |
|
|
|
ac_cv_my_have_csharp="yes" |
|
|
|
fi |
|
|
|
fi |
|
|
|
AM_CONDITIONAL(USE_DOTNET, test "${ac_cv_my_have_dotnet}" = "yes") |
|
|
|
AM_CONDITIONAL(USE_CSHARP, test "${ac_cv_my_have_csharp}" = "yes") |
|
|
|
|
|
|
|
# Build the Ruby bindings? |
|
|
|
ac_cv_my_have_ruby="no" |
|
|
@@ -411,8 +411,8 @@ AC_CONFIG_FILES([ |
|
|
|
src/Makefile |
|
|
|
test/Makefile |
|
|
|
tools/Makefile |
|
|
|
csharp/Makefile |
|
|
|
cxx/Makefile |
|
|
|
DotNet/Makefile |
|
|
|
ruby/Makefile |
|
|
|
doc/Makefile |
|
|
|
msvc/Makefile |
|
|
|