mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-27 05:29:27 +03:00
3315f35e31
* acinclude.m4 (MC_WITH_VFS): ... here. * extraconf.h: Remove VFS logic, it's enforced in configure now.
27 lines
749 B
C
27 lines
749 B
C
/*
|
|
This file is included directly from config.h.
|
|
Don't include it from any other files.
|
|
|
|
The only code that belongs here is preprocessor directives that:
|
|
|
|
1) change the configuration setting defined in config.h if there is a
|
|
conflict between them.
|
|
|
|
2) define symbols that fully depend on those in config.h to eliminate
|
|
the need to embed this logic into configure.in.
|
|
*/
|
|
|
|
#if defined(HAVE_SIGADDSET) && defined(HAVE_SIGEMPTYSET)
|
|
# if defined(HAVE_SIGACTION) && defined(HAVE_SIGPROCMASK)
|
|
# define SLANG_POSIX_SIGNALS
|
|
# endif
|
|
#endif
|
|
|
|
#if defined (__QNX__) && !defined(__QNXNTO__) && !defined (HAVE_INFOMOUNT_LIST)
|
|
# define HAVE_INFOMOUNT_QNX
|
|
#endif
|
|
|
|
#if defined(HAVE_INFOMOUNT_LIST) || defined(HAVE_INFOMOUNT_QNX)
|
|
# define HAVE_INFOMOUNT
|
|
#endif
|