Overview
Comment: | Check for NSObject.h instead of Foundation.h. Really speeds things up. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
550c4824669c98633285cccde7452d33 |
User & Date: | js on 2011-02-09 09:19:04 |
Other Links: | manifest | tags |
Context
2011-02-09
| ||
09:37 | Add -[containsString:] to OFString. check-in: a6c5af136b user: js tags: trunk | |
09:19 | Check for NSObject.h instead of Foundation.h. Really speeds things up. check-in: 550c482466 user: js tags: trunk | |
2011-02-08
| ||
17:22 | OFDataArray: Return void*, but accept const void*. check-in: 4cad2a499b user: js tags: trunk | |
Changes
Modified configure.ac from [18c25283af] to [d6ec578bbd].
︙ | ︙ | |||
429 430 431 432 433 434 435 | ]) AC_CHECK_FUNC(madvise, [ AC_DEFINE(HAVE_MADVISE, 1, [Whether we have madvise]) ]) AS_IF([test x"$objc_runtime" = x"Apple"], [ | | | 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 | ]) AC_CHECK_FUNC(madvise, [ AC_DEFINE(HAVE_MADVISE, 1, [Whether we have madvise]) ]) AS_IF([test x"$objc_runtime" = x"Apple"], [ AC_CHECK_HEADER(Foundation/NSObject.h, [ AC_SUBST(FOUNDATION_COMPAT_M, "foundation-compat.m") ]) ]) AS_IF([test x"$GOBJC" = x"yes"], [ OBJCFLAGS="$OBJCFLAGS -Werror" |
︙ | ︙ |