Overview
| Comment: | Add OFDate. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
39cb19595d1051d371a2bf911adbffb8 |
| User & Date: | js on 2010-12-25 19:31:43 |
| Other Links: | manifest | tags |
Context
|
2010-12-25
| ||
| 23:29 | Add +[OFFile modificationDateOfFile:] and change -[OFDate description]. (check-in: 2d8533a428 user: js tags: trunk) | |
| 19:31 | Add OFDate. (check-in: 39cb19595d user: js tags: trunk) | |
| 14:48 |
Fix broken snprintf test. This was broken by 60aa070105ac. (check-in: 5ebb07a3e4 user: js tags: trunk) | |
Changes
Modified .hgignore from [0cbe01f9c4] to [fb4ec2287f].
| ︙ | |||
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | + + | config.h.in config.log config.status configure docs extra.mk generators/gen_tables generators/gen_tables.exe generators/CaseFolding.txt generators/UnicodeData.txt objfw-config ObjFW.xcodeproj/*.mode1v3 ObjFW.xcodeproj/*.pbxuser src/objfw-defs.h src/ObjFW tests/tests tests/tests.exe |
Modified configure.ac from [b48af55818] to [72341d46d1].
| ︙ | |||
337 338 339 340 341 342 343 344 345 346 347 348 349 350 | 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 | + + + + | AC_DEFINE(OF_ATOMIC_OPS, 1, [Whether we have atomic operations]) AC_SUBST(ATOMIC_H, "atomic.h") ]) AC_MSG_RESULT($atomic_ops) AC_CHECK_LIB(socket, socket, LIBS="$LIBS -lsocket") AC_CHECK_LIB(ws2_32, main, LIBS="$LIBS -lws2_32") AC_CHECK_FUNC(gmtime_r, [ AC_DEFINE(HAVE_GMTIME_R, 1, [Whether we have gmtime_r]) ]) AC_CHECK_HEADER(poll.h, [ AC_DEFINE(OF_HAVE_POLL, 1, [Whether poll is supported]) ]) AC_CHECK_HEADERS(sys/select.h, [ AC_DEFINE(OF_HAVE_SYS_SELECT_H, 1, [Whether we have sys/select.h]) ]) |
| ︙ |
Modified src/Makefile from [a18fe9b7a4] to [166d734b1c].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | + |
include ../extra.mk
LIB = ${OBJFW_SHARED_LIB}
LIB_MAJOR = ${OBJFW_LIB_MAJOR}
LIB_MINOR = ${OBJFW_LIB_MINOR}
STATIC_LIB = ${OBJFW_STATIC_LIB}
SRCS = OFApplication.m \
OFArray.m \
OFAutoreleasePool.m \
OFBlock.m \
OFConstantString.m \
OFDataArray.m \
OFDate.m \
OFDictionary.m \
OFExceptions.m \
OFFile.m \
OFHash.m \
OFEnumerator.m \
OFList.m \
OFMD5Hash.m \
|
| ︙ |
Added src/OFDate.h version [c40f1e470a].
|
Added src/OFDate.m version [d05453646d].