From 92a07adb2d4c43ca2b4e81164fd3f7e1b85429e4 Mon Sep 17 00:00:00 2001 From: NicJA Date: Sun, 15 Feb 2015 22:56:03 +0000 Subject: [PATCH] don't enable objc by default (since it needs some components that don't compile on all archs,.) git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@50087 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- configure | 4 ++-- configure.in | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 4839919317..880956ee78 100755 --- a/configure +++ b/configure @@ -1590,7 +1590,7 @@ Optional Features: Enforce userspace AmigaOS compliance to a specific KickStart version (default=none). --disable-crosstools Do not build cross-compiler toolchain - --enable-objc Enable Objectve-C support (default=yes) + --enable-objc Enable Objectve-C support (default=no) --enable-java Enable Java support (default=no) --enable-includes=dir Alternative system include directory --enable-palm-debug-hack @@ -8683,7 +8683,7 @@ $as_echo_n "checking whether to enable Objective-C suppport... " >&6; } if test "${enable_objc+set}" = set; then : enableval=$enable_objc; objc="$enableval" else - objc="yes" + objc="no" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $objc" >&5 diff --git a/configure.in b/configure.in index 1f3c51014f..0eaceba71c 100644 --- a/configure.in +++ b/configure.in @@ -1587,7 +1587,7 @@ fi AC_MSG_RESULT($target_gcc_version) AC_MSG_CHECKING([whether to enable Objective-C suppport]) -AC_ARG_ENABLE(objc,AC_HELP_STRING([--enable-objc],[Enable Objectve-C support (default=yes)]),objc="$enableval",objc="yes") +AC_ARG_ENABLE(objc,AC_HELP_STRING([--enable-objc],[Enable Objectve-C support (default=no)]),objc="$enableval",objc="no") AC_MSG_RESULT($objc) if test "x$objc" = "xyes"; then objc_target="$objc" -- 2.11.4.GIT