Cygwin: Allow to build without experimental AF_UNIX code by default
Introduce __WITH_AF_UNIX preprocessor flag to enable the new code Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
@@ -520,9 +520,11 @@ fh_alloc (path_conv& pc)
|
||||
case FH_LOCAL:
|
||||
fh = cnew (fhandler_socket_local);
|
||||
break;
|
||||
#ifdef __WITH_AF_UNIX
|
||||
case FH_UNIX:
|
||||
fh = cnew (fhandler_socket_unix);
|
||||
break;
|
||||
#endif /* __WITH_AF_UNIX */
|
||||
case FH_FS:
|
||||
fh = cnew (fhandler_disk_file);
|
||||
break;
|
||||
|
Reference in New Issue
Block a user