diff options
author | Tom Hacohen <tom@stosb.com> | 2014-09-02 09:29:57 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2014-09-02 09:29:57 +0100 |
commit | d46fa601ef45d579d1448b19887d02ff2dfbb576 (patch) | |
tree | 64497c13816b062364d785889fe01c326bc496ac /configure.ac | |
parent | a4f5e88ec0d35d5fa1369cd30dd58267b8b35e36 (diff) |
C++ bindings: disable generation by default (to follow the efl).
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index c076de52d..3d436e8a4 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -231,11 +231,10 @@ requirement_elm="\ | |||
231 | " | 231 | " |
232 | 232 | ||
233 | EFL_CXX_COMPILE_STDCXX_11([ext]) | 233 | EFL_CXX_COMPILE_STDCXX_11([ext]) |
234 | want_cxx11="yes" | ||
235 | AC_ARG_ENABLE([cxx-bindings], | 234 | AC_ARG_ENABLE([cxx-bindings], |
236 | [AC_HELP_STRING([--disable-cxx-bindings], | 235 | [AC_HELP_STRING([--enable-cxx-bindings], |
237 | [disable C++11 bindings. @<:@default=enabled@:>@])], | 236 | [enable C++11 bindings. @<:@default=disabled@:>@])], |
238 | [want_cxx11="${enableval}"]) | 237 | [want_cxx11="${enableval}"], [want_cxx11="no"]) |
239 | 238 | ||
240 | if test "x${HAVE_CXX11}" = "x1" -a "x${want_cxx11}" = "xyes"; then | 239 | if test "x${HAVE_CXX11}" = "x1" -a "x${want_cxx11}" = "xyes"; then |
241 | PKG_CHECK_MODULES([ELEMENTARY_CXX], | 240 | PKG_CHECK_MODULES([ELEMENTARY_CXX], |