ObjFW  Check-in [e630807216]

Overview
Comment:OFThread: Fix missing include

This was only a problem with --disable-sockets, as sockets pull in
OFString.h via OFRunLoop.h.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: e63080721627f857dd833a9c0072943a9146356375748fb9d6c6b90a6b5cbf26
User & Date: js on 2016-04-18 17:00:08
Other Links: manifest | tags
Context
2016-04-18
17:20
OFRunLoop: Small clean up check-in: ba813e24da user: js tags: trunk
17:00
OFThread: Fix missing include check-in: e630807216 user: js tags: trunk
16:02
Improve of_condition_wait error handling on Win32 check-in: d07ed3f5df user: js tags: trunk
Changes

Modified src/OFThread.m from [d451c32cdd] to [b9ed17bd65].

50
51
52
53
54
55
56

57
58
59
60
61
62
63
#ifdef OF_NINTENDO_3DS
# include <3ds/svc.h>
#endif

#import "OFThread.h"
#import "OFThread+Private.h"
#import "OFRunLoop.h"

#import "OFList.h"
#import "OFDate.h"
#import "OFDictionary.h"
#import "OFAutoreleasePool.h"
#import "OFAutoreleasePool+Private.h"

#ifdef OF_WINDOWS







>







50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#ifdef OF_NINTENDO_3DS
# include <3ds/svc.h>
#endif

#import "OFThread.h"
#import "OFThread+Private.h"
#import "OFRunLoop.h"
#import "OFString.h"
#import "OFList.h"
#import "OFDate.h"
#import "OFDictionary.h"
#import "OFAutoreleasePool.h"
#import "OFAutoreleasePool+Private.h"

#ifdef OF_WINDOWS