ObjFW  Check-in [41a9ba7c06]

Overview
Comment:platform.h: Fix the define for HURD
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 41a9ba7c06e34ebd82dc0f9fa82804daa949a049ab723510fb8b009314145247
User & Date: js on 2023-07-15 15:03:07
Other Links: manifest | tags
Context
2023-07-15
16:12
Add support for GNU/Hurd check-in: 6d93db9f98 user: js tags: trunk
15:03
platform.h: Fix the define for HURD check-in: 41a9ba7c06 user: js tags: trunk
14:48
platform.h: Add OF_HURD check-in: 340a3ac277 user: js tags: trunk
Changes

Modified src/platform.h from [d35ab8509f] to [865115b836].

147
148
149
150
151
152
153
154

155
156
157
158
159
160
161
162
163
164
165
166
147
148
149
150
151
152
153

154
155
156
157
158
159
160
161
162
163
164
165
166







-
+












#elif defined(__DJGPP__)
# define OF_DJGPP
# define OF_MSDOS
#elif defined(__riscos__)
# define OF_ACORN_RISC_OS
#elif defined(__MINT__)
# define OF_MINT
#elif defined(__gnu__)
#elif defined(__gnu_hurd__)
# define OF_HURD
#endif

#if defined(__ELF__)
# define OF_ELF
#elif defined(__MACH__)
# define OF_MACH_O
#endif

#if defined(__PIC__) || defined(__pic__)
# define OF_PIC
#endif