diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 576a1af..34f71f3 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1349,6 +1349,17 @@ EFL_LIB_END_OPTIONAL([Eo_Js]) | |||
1349 | #### End of Eo JS | 1349 | #### End of Eo JS |
1350 | 1350 | ||
1351 | #### Efl C Sharp Bindings | 1351 | #### Efl C Sharp Bindings |
1352 | want_csharp_beta="no" | ||
1353 | AC_ARG_ENABLE([csharp-beta], | ||
1354 | [AS_HELP_STRING([--enable-csharp-beta],[enable C Sharp bindings. @<:@default=disabled@:>@])], | ||
1355 | [ | ||
1356 | if test "x${enableval}" = "xyes" ; then | ||
1357 | want_csharp_beta="yes" | ||
1358 | else | ||
1359 | want_csharp_beta="no" | ||
1360 | fi | ||
1361 | ], | ||
1362 | [want_csharp_beta="no"]) | ||
1352 | 1363 | ||
1353 | want_csharp="no" | 1364 | want_csharp="no" |
1354 | AC_ARG_ENABLE([csharp-bindings], | 1365 | AC_ARG_ENABLE([csharp-bindings], |
@@ -1372,6 +1383,11 @@ AC_DEFINE_IF([HAVE_CSHARP], [test "x${want_csharp}" = "xyes"], | |||
1372 | [1], [Compiling bindings for C Sharp]) | 1383 | [1], [Compiling bindings for C Sharp]) |
1373 | AC_SUBST([want_csharp]) | 1384 | AC_SUBST([want_csharp]) |
1374 | 1385 | ||
1386 | AM_CONDITIONAL([HAVE_CSHARP_BETA], [test "x${want_csharp_beta}" = "xyes"]) | ||
1387 | AC_DEFINE_IF([HAVE_CSHARP_BETA], [test "x${want_csharp_beta}" = "xyes"], | ||
1388 | [1], [Compiling bindings for C Sharp with beta methods, properties and classes]) | ||
1389 | AC_SUBST([want_csharp_beta]) | ||
1390 | |||
1375 | if test "x${have_windows}" = "xyes"; then | 1391 | if test "x${have_windows}" = "xyes"; then |
1376 | eflmonodlldir="$prefix/bin" | 1392 | eflmonodlldir="$prefix/bin" |
1377 | else | 1393 | else |