Overview
Comment: | Fix wrong imports. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
d477b270f3cf42e1fe3e307109109119 |
User & Date: | js on 2012-10-28 12:37:11 |
Other Links: | manifest | tags |
Context
2012-10-28
| ||
12:38 | Switch to a headerdoc-compatible doc format. check-in: 1ad9565253 user: js tags: trunk | |
12:37 | Fix wrong imports. check-in: d477b270f3 user: js tags: trunk | |
2012-10-27
| ||
16:32 | Update ChangeLog for 0.7. check-in: 49f84877bf user: js tags: trunk | |
Changes
Modified src/OFDate.m from [66b4bbf344] to [da5cc3c73a].
︙ | ︙ | |||
26 27 28 29 30 31 32 | #include <sys/time.h> #import "OFDate.h" #import "OFString.h" #import "OFDictionary.h" #import "OFXMLElement.h" #ifdef OF_THREADS | | | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | #include <sys/time.h> #import "OFDate.h" #import "OFString.h" #import "OFDictionary.h" #import "OFXMLElement.h" #ifdef OF_THREADS # import "OFMutex.h" #endif #import "OFInitializationFailedException.h" #import "OFInvalidArgumentException.h" #import "OFInvalidFormatException.h" #import "OFOutOfRangeException.h" |
︙ | ︙ |
Modified src/OFTCPSocket.m from [da12c47fdd] to [c453a27f56].
︙ | ︙ | |||
54 55 56 57 58 59 60 | #import "macros.h" #ifndef INVALID_SOCKET # define INVALID_SOCKET -1 #endif #if defined(OF_THREADS) && !defined(HAVE_THREADSAFE_GETADDRINFO) | | | 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | #import "macros.h" #ifndef INVALID_SOCKET # define INVALID_SOCKET -1 #endif #if defined(OF_THREADS) && !defined(HAVE_THREADSAFE_GETADDRINFO) # import "OFMutex.h" # import "OFDataArray.h" static OFMutex *mutex = nil; #endif #ifdef _WIN32 # define close(sock) closesocket(sock) |
︙ | ︙ |