Overview
| Comment: | Fix missing includes and typos. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
35f59c61c6351c1389f41c184816941f |
| User & Date: | js on 2010-01-30 14:14:11 |
| Other Links: | manifest | tags |
Context
|
2010-01-30
| ||
| 14:26 | Don't define methods unavailable on Windows. (check-in: c9e9ea561c user: js tags: trunk) | |
| 14:14 | Fix missing includes and typos. (check-in: 35f59c61c6 user: js tags: trunk) | |
| 13:33 | Move some stuff from OFSocket to OFTCPSocket. (check-in: fe6787bc79 user: js tags: trunk) | |
Changes
Modified src/Makefile from [bac1f4e24e] to [cffb8debfd].
| ︙ | |||
35 36 37 38 39 40 41 | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | - + |
OFMacros.h \
ObjFW.h \
asprintf.h \
${ATOMIC_H} \
objfw-defs.h \
${THREADING_H}
|
Modified src/OFSocket.m from [e6b38c0bf2] to [7c0069f9e8].
| ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | + + + + + | * the packaging of this file. */ #include "config.h" #include <string.h> #include <fcntl.h> #ifndef _WIN32 # include <sys/types.h> # include <sys/socket.h> #endif #import "OFSocket.h" #import "OFExceptions.h" #ifndef INVALID_SOCKET #define INVALID_SOCKET -1 #endif |
| ︙ |
Modified src/OFTCPSocket.m from [5ad68e30bb] to [0a606f2f49].
| ︙ | |||
27 28 29 30 31 32 33 34 35 36 37 38 39 40 | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | + | #ifndef INVALID_SOCKET #define INVALID_SOCKET -1 #endif #if defined(OF_THREADS) && !defined(HAVE_THREADSAFE_GETADDRINFO) #import "OFThread.h" # import "OFDataArray.h" static OFMutex *mutex = nil; #endif @implementation OFTCPSocket #if defined(OF_THREADS) && !defined(HAVE_THREADSAFE_GETADDRINFO) + (void)initialize |
| ︙ |
Modified src/threading.h from [27e884cfec] to [ec6d801a5e].
1 2 3 4 5 6 7 8 9 10 11 12 13 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | - + | /* * Copyright (c) 2008 - 2009 * Jonathan Schleifer <js@webkeks.org> * * All rights reserved. * * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFMacros.h" |
| ︙ |