From 2b01af6a55a3935575f136c3cd16e6e1f873a0a7 Mon Sep 17 00:00:00 2001 From: nrnhines Date: Sun, 24 Sep 2023 10:45:20 -0400 Subject: [PATCH] HAVE_SYS_SELECT_H not defined for MAC Ventura 13.5 Xcode 15 (#48) --- src/lib/Dispatch/dispatcher.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/lib/Dispatch/dispatcher.cpp b/src/lib/Dispatch/dispatcher.cpp index 83ee7c4..72f68a8 100644 --- a/src/lib/Dispatch/dispatcher.cpp +++ b/src/lib/Dispatch/dispatcher.cpp @@ -48,9 +48,7 @@ #endif #undef NULL #include -#ifdef HAVE_SYS_SELECT_H //#if defined(AIXV3) || defined(svr4) || defined(AIXV4) #include -#endif #include #include #include @@ -59,9 +57,6 @@ /* no standard place for this */ extern "C" { -#ifndef HAVE_SYS_SELECT_H // #if !defined(AIXV3) && !defined(SVR4) && !defined(__lucid) - extern int select(int, fd_set*, fd_set*, fd_set*, struct timeval*); -#endif #ifdef NEED_GETTIMEOFDAY_PROTOTYPE // #if (defined(__DECCXX) || (defined(__GNUC__) && !defined(SVR4))) extern int gettimeofday(struct timeval*, struct timezone*); #endif