ObjFW  Check-in [cb0a90f26d]

Overview
Comment:Define SA_RESTART to 0 if it's missing

DJGPP has sigaction, but not SA_RESTART.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: cb0a90f26df3b00c0f4b6c291a304341e49aea33a58a09f518e55329d80c5a5f
User & Date: js on 2017-01-16 01:11:31
Other Links: manifest | tags
Context
2017-01-16
01:13
Do not check for off64_t on DJGPP check-in: cd8dea6265 user: js tags: trunk
01:11
Define SA_RESTART to 0 if it's missing check-in: cb0a90f26d user: js tags: trunk
2017-01-15
04:32
Add codepage 858 check-in: adbf31f2f9 user: js tags: trunk
Changes

Modified src/OFApplication.m from [a69e437cf3] to [735d2c61f2].

53
54
55
56
57
58
59






60
61
62
63
64
65
66
#endif

#ifdef OF_NINTENDO_DS
# define asm __asm__
# include <nds.h>
# undef asm
#endif







@interface OFApplication ()
- (void)OF_setArgumentCount: (int*)argc
	  andArgumentValues: (char**[])argv;
#ifdef OF_WINDOWS
- (void)OF_setArgumentCount: (int)argc
      andWideArgumentValues: (wchar_t*[])argv;







>
>
>
>
>
>







53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#endif

#ifdef OF_NINTENDO_DS
# define asm __asm__
# include <nds.h>
# undef asm
#endif

#ifdef HAVE_SIGACTION
# ifndef SA_RESTART
#  define SA_RESTART 0
# endif
#endif

@interface OFApplication ()
- (void)OF_setArgumentCount: (int*)argc
	  andArgumentValues: (char**[])argv;
#ifdef OF_WINDOWS
- (void)OF_setArgumentCount: (int)argc
      andWideArgumentValues: (wchar_t*[])argv;