Tidied up a couple of messages in configure

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@31753 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2010-12-22 16:03:52 +00:00
parent 073b0c24e6
commit 97600a0e82
3 changed files with 13 additions and 10 deletions

View file

@ -1,3 +1,8 @@
2010-12-22 Nicola Pero <nicola.pero@meta-innovation.com>
* configure.ac: Tidied up a few messages.
* configure: Regenerated.
2010-10-20 Adam Fedor <fedor@gnu.org>
* target.make: Add c99 flag for solaris
@ -43,7 +48,7 @@
used in GNUstep.conf so if you don't want the new default you only
need to specify --with-layout= the first time you configure/install.
2010-09-10 Nicola Pero <nicola@nicola.brainstorm.co.uk>
2010-09-10 Nicola Pero <nicola.pero@meta-innovation.com>
* configure.ac: When threading tests fail with all expected
threading flags/libs, do a last attempt with no explicit threading

9
configure vendored
View file

@ -1521,8 +1521,7 @@ Optional Features:
--enable-objc-nonfragile-abi
Use the non-fragile ABI for Objective-C. Use this option if you want
to use non-fragile instance variables provided by clang and the new
objc runtime.
to use non-fragile instance variables provided by clang and libobjc2.
--disable-native-objc-exceptions
@ -1532,7 +1531,7 @@ Optional Features:
is GCC >= 4.5.0. Use this option if you do not want to use
the native Objective-C exception support provided by newer GCC
compilers, or if you want to enable it with older compilers (where
you most likely would need to use a custom libobjc).
you would most likely need to use a custom libobjc).
--enable-debug-by-default
@ -6560,8 +6559,8 @@ $as_echo "no: gcc <= 4.3 has lacking runtime support for native exceptions" >&6;
fi
fi
if test x"$USE_OBJC_EXCEPTIONS" = x"yes"; then
{ $as_echo "$as_me:$LINENO: result: yes: well supported by the compiler" >&5
$as_echo "yes: well supported by the compiler" >&6; }
{ $as_echo "$as_me:$LINENO: result: yes: supported by the compiler" >&5
$as_echo "yes: supported by the compiler" >&6; }
fi
CFLAGS="$CFLAGS_no_exceptions"
LIBS="$LIBS_no_exceptions"

View file

@ -1319,8 +1319,7 @@ AC_SUBST(ac_cv_objc_threaded)
AC_ARG_ENABLE(objc-nonfragile-abi, [
--enable-objc-nonfragile-abi
Use the non-fragile ABI for Objective-C. Use this option if you want
to use non-fragile instance variables provided by clang and the new
objc runtime.
to use non-fragile instance variables provided by clang and libobjc2.
],
USE_NONFRAGILE_ABI=$enableval,
USE_NONFRAGILE_ABI=no)
@ -1409,7 +1408,7 @@ AC_ARG_ENABLE(native-objc-exceptions, [
is GCC >= 4.5.0. Use this option if you do not want to use
the native Objective-C exception support provided by newer GCC
compilers, or if you want to enable it with older compilers (where
you most likely would need to use a custom libobjc).
you would most likely need to use a custom libobjc).
],
USE_OBJC_EXCEPTIONS=$enableval,
USE_OBJC_EXCEPTIONS=maybe)
@ -1466,7 +1465,7 @@ int main(int argc, char **argv)
fi
fi
if test x"$USE_OBJC_EXCEPTIONS" = x"yes"; then
AC_MSG_RESULT(yes: well supported by the compiler)
AC_MSG_RESULT(yes: supported by the compiler)
fi
CFLAGS="$CFLAGS_no_exceptions"
LIBS="$LIBS_no_exceptions"