We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd07aec commit 9c68464Copy full SHA for 9c68464
PC/pyconfig.h
@@ -672,7 +672,11 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */
672
/* #define HAVE_SYS_UN_H 1 */
673
674
/* Define if you have the <afunix.h> header file. */
675
-#define HAVE_AFUNIX_H 1
+#if defined(__has_include) && __has_include(<afunix.h>)
676
+ #define HAVE_AFUNIX_H 1
677
+#else
678
+ #define HAVE_AFUNIX_H 0
679
+#endif
680
681
/* Define if you have the <sys/utime.h> header file. */
682
/* #define HAVE_SYS_UTIME_H 1 */
0 commit comments