Fix erroneous configure change

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@29631 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2010-02-14 17:22:47 +00:00
parent e13fce3def
commit da2a563929
4 changed files with 7840 additions and 7920 deletions

View file

@ -124,8 +124,8 @@ extern "C" {
*(anIterator) = (*((struct objc_method_list**)(anIterator)))->method_next; \
}), *(anIterator))
#define object_getClass(O) ((Class)*(void**)O)
#define object_setClass(O,C) (*((Class**)O) = C)
#define object_getClass(O) ((Class)*(Class*)O)
#define object_setClass(O,C) (*((Class*)O) = C)
#endif

View file

@ -27,9 +27,6 @@
/* Define to 1 if you have the <callback.h> header file. */
#undef HAVE_CALLBACK_H
/* Define to 1 if you have the `class_getProperty' function. */
#undef HAVE_CLASS_GETPROPERTY
/* Define to 1 if you have the `ctime' function. */
#undef HAVE_CTIME
@ -226,6 +223,9 @@
/* Define to 1 if you have the `objc_sync_enter' function. */
#undef HAVE_OBJC_SYNC_ENTER
/* Define to 1 if you have the `objc_thread_add' function. */
#undef HAVE_OBJC_THREAD_ADD
/* Define to 1 if you have the `poll' function. */
#undef HAVE_POLL

15746
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -654,9 +654,9 @@ fi
# Don't revert any Objective-C flags as they are used in the next test
#--------------------------------------------------------------------
# If we have property support, we are using the objc 2 runtime
# Check for ability to add a thread in runtime
#--------------------------------------------------------------------
AC_CHECK_FUNCS(class_getProperty)
AC_CHECK_FUNCS(objc_thread_add)
# Don't revert any Objective-C flags as they are used in the next test