File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2287,9 +2287,10 @@ CF_EXPORT int _CFPosixSpawnFileActionsChdir(_CFPosixSpawnFileActionsRef file_act
2287
2287
// Glibc versions prior to 2.29 don't support posix_spawn_file_actions_addchdir_np, impacting:
2288
2288
// - Amazon Linux 2 (EoL mid-2025)
2289
2289
return ENOSYS ;
2290
- #elif defined(__OpenBSD__ )
2290
+ #elif defined(__OpenBSD__ ) || defined( __QNX__ )
2291
2291
// Currently missing as of:
2292
2292
// - OpenBSD 7.5 (April 2024)
2293
+ // - QNX 8 (December 2023)
2293
2294
return ENOSYS ;
2294
2295
#elif defined(__GLIBC__ ) || TARGET_OS_DARWIN || defined(__FreeBSD__ ) || (defined(__ANDROID__ ) && __ANDROID_API__ >= 34 ) || defined(__musl__ )
2295
2296
// Pre-standard posix_spawn_file_actions_addchdir_np version available in:
@@ -2304,7 +2305,6 @@ CF_EXPORT int _CFPosixSpawnFileActionsChdir(_CFPosixSpawnFileActionsRef file_act
2304
2305
// Standardized posix_spawn_file_actions_addchdir version (POSIX.1-2024, June 2024) available in:
2305
2306
// - Solaris 11.4 (August 2018)
2306
2307
// - NetBSD 10.0 (March 2024)
2307
- // - QNX 8 (December 2023)
2308
2308
return posix_spawn_file_actions_addchdir ((posix_spawn_file_actions_t * )file_actions , path );
2309
2309
#endif
2310
2310
}
You can’t perform that action at this time.
0 commit comments