Overview
Comment: | Fix a typo. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
4c71fdcf43d39f5c1ffeb6df94db6d96 |
User & Date: | js on 2011-09-10 19:47:20 |
Other Links: | manifest | tags |
Context
2011-09-10
| ||
19:54 | Add new files to Xcode project. check-in: b0a56c3273 user: js tags: trunk | |
19:47 | Fix a typo. check-in: 4c71fdcf43 user: js tags: trunk | |
19:37 | Make OFStreamObserver an abstract class. check-in: b1ffd7732a user: js tags: trunk | |
Changes
Modified configure.ac from [af0754cd6e] to [53adb0e079].
︙ | ︙ | |||
467 468 469 470 471 472 473 | ]) AC_CHECK_HEADER(poll.h, [ AC_DEFINE(HAVE_POLL_H, 1, [Whether we have poll.h]) AC_SUBST(OFSTREAMPOLLOBSERVER_M, "OFStreamPollObserver.m") ]) AC_CHECK_HEADERS(sys/select.h, [ | | | 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 | ]) AC_CHECK_HEADER(poll.h, [ AC_DEFINE(HAVE_POLL_H, 1, [Whether we have poll.h]) AC_SUBST(OFSTREAMPOLLOBSERVER_M, "OFStreamPollObserver.m") ]) AC_CHECK_HEADERS(sys/select.h, [ AC_DEFINE(OF_HAVE_SYS_SELECT_H, 1, [Whether we have sys/select.h]) AC_SUBST(OFSTREAMSELECTOBSERVER_M, "OFStreamSelectObserver.m") ]) AC_MSG_CHECKING(for getaddrinfo) AC_TRY_COMPILE([ #include <stddef.h> #ifndef _WIN32 |
︙ | ︙ |
Modified src/objfw-defs.h.in from [5f2f5a13db] to [77d879db89].
1 2 3 4 5 6 7 8 9 10 11 12 | #undef OF_APPLE_RUNTIME #undef OF_ATOMIC_OPS #undef OF_BIG_ENDIAN #undef OF_FLOAT_BIG_ENDIAN #undef OF_GNU_RUNTIME #undef OF_HAVE_ASPRINTF #undef OF_HAVE_BLOCKS #undef OF_HAVE_FAST_ENUMERATION #undef OF_HAVE_GCC_ATOMIC_OPS #undef OF_HAVE_OPTIONAL_PROTOCOLS #undef OF_HAVE_OSATOMIC #undef OF_HAVE_OSATOMIC_64 | < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #undef OF_APPLE_RUNTIME #undef OF_ATOMIC_OPS #undef OF_BIG_ENDIAN #undef OF_FLOAT_BIG_ENDIAN #undef OF_GNU_RUNTIME #undef OF_HAVE_ASPRINTF #undef OF_HAVE_BLOCKS #undef OF_HAVE_FAST_ENUMERATION #undef OF_HAVE_GCC_ATOMIC_OPS #undef OF_HAVE_OPTIONAL_PROTOCOLS #undef OF_HAVE_OSATOMIC #undef OF_HAVE_OSATOMIC_64 #undef OF_HAVE_PROPERTIES #undef OF_HAVE_PTHREADS #undef OF_HAVE_PTHREAD_SPINLOCKS #undef OF_HAVE_SCHED_YIELD #undef OF_HAVE_SYS_SELECT_H #undef OF_OBJFW_RUNTIME #undef OF_OLD_GNU_RUNTIME |
︙ | ︙ |