ObjFW  Check-in [97827c658e]

Overview
Comment:Fix compiling on Haiku r1beta5
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 1.2
Files: files | file ages | folders
SHA3-256: 97827c658eef051c09d35083d2d7de61a935447c5d3f4a0f9909a8d3ea060788
User & Date: js on 2024-11-13 00:01:56
Other Links: branch diff | manifest | tags
Context
2024-11-13
00:27
GitHub Actions: Pin NDS to last working container Leaf check-in: 6c4d17f2f6 user: js tags: 1.2
00:01
Fix compiling on Haiku r1beta5 check-in: 97827c658e user: js tags: 1.2
00:01
Fix compiling on Haiku r1beta5 check-in: b585f68973 user: js tags: trunk
2024-11-09
12:17
Set version to 1.2.1 check-in: 559577af46 user: js tags: 1.2, 1.2.1-release
Changes

Modified src/OFFileIRIHandler.m from [3b38bf74b9] to [9e20f4f6f5].

39
40
41
42
43
44
45

46
47
48
49
50
51
52
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53







+







#if defined(OF_LINUX) || defined(OF_MACOS)
# include <sys/xattr.h>
#endif
#if defined(OF_FREEBSD) || defined(OF_NETBSD)
# include <sys/extattr.h>
#endif
#ifdef OF_HAIKU
# include <TypeConstants.h>
# include <kernel/fs_attr.h>
#endif
#ifdef OF_DJGPP
# include <syslimits.h>
#endif

#ifdef HAVE_FCNTL_H

Modified tests/OFFileManagerTests.m from [08e4ea3058] to [fb37084320].

19
20
21
22
23
24
25




26
27
28
29
30
31
32
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36







+
+
+
+








#include "config.h"

#include <errno.h>

#import "ObjFW.h"
#import "ObjFWTest.h"

#ifdef OF_HAIKU
# include <TypeConstants.h>
#endif

@interface OFFileManagerTests: OTTestCase
{
	OFFileManager *_fileManager;
	OFIRI *_testsDirectoryIRI, *_testFileIRI;
}
@end