mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-01 01:01:03 +00:00
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:
parent
0f55cc88f3
commit
a958c06c8e
4 changed files with 7840 additions and 7920 deletions
|
@ -124,8 +124,8 @@ extern "C" {
|
||||||
*(anIterator) = (*((struct objc_method_list**)(anIterator)))->method_next; \
|
*(anIterator) = (*((struct objc_method_list**)(anIterator)))->method_next; \
|
||||||
}), *(anIterator))
|
}), *(anIterator))
|
||||||
|
|
||||||
#define object_getClass(O) ((Class)*(void**)O)
|
#define object_getClass(O) ((Class)*(Class*)O)
|
||||||
#define object_setClass(O,C) (*((Class**)O) = C)
|
#define object_setClass(O,C) (*((Class*)O) = C)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -27,9 +27,6 @@
|
||||||
/* Define to 1 if you have the <callback.h> header file. */
|
/* Define to 1 if you have the <callback.h> header file. */
|
||||||
#undef HAVE_CALLBACK_H
|
#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. */
|
/* Define to 1 if you have the `ctime' function. */
|
||||||
#undef HAVE_CTIME
|
#undef HAVE_CTIME
|
||||||
|
|
||||||
|
@ -226,6 +223,9 @@
|
||||||
/* Define to 1 if you have the `objc_sync_enter' function. */
|
/* Define to 1 if you have the `objc_sync_enter' function. */
|
||||||
#undef HAVE_OBJC_SYNC_ENTER
|
#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. */
|
/* Define to 1 if you have the `poll' function. */
|
||||||
#undef HAVE_POLL
|
#undef HAVE_POLL
|
||||||
|
|
||||||
|
|
|
@ -654,9 +654,9 @@ fi
|
||||||
# Don't revert any Objective-C flags as they are used in the next test
|
# 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
|
# Don't revert any Objective-C flags as they are used in the next test
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue