build: remove HAVE_PTHREAD define as its required on unix

This commit is contained in:
sithlord48
2025-06-13 22:23:54 -04:00
committed by Nick Bolton
parent 044c9b24f3
commit cb05ece6b6
2 changed files with 1 additions and 7 deletions

View File

@ -13,9 +13,6 @@
/* Define if you have a POSIX `sigwait` function. */
#cmakedefine HAVE_POSIX_SIGWAIT @HAVE_POSIX_SIGWAIT@
/* Define if you have POSIX threads libraries and header files. */
#cmakedefine HAVE_PTHREAD @HAVE_PTHREAD@
/* Define to 1 if you have the <sys/socket.h> header file. */
#cmakedefine HAVE_SYS_SOCKET_H @HAVE_SYS_SOCKET_H@

View File

@ -38,11 +38,8 @@
#include "arch/unix/ArchDaemonUnix.h"
#include "arch/unix/ArchLogUnix.h"
#include "arch/unix/ArchNetworkBSD.h"
#if HAVE_PTHREAD
#include "arch/unix/ArchMultithreadPosix.h"
#endif
#include "arch/unix/ArchNetworkBSD.h"
#endif