Remove select() and use poll() ()

* Revert "Fix typo in meson.build ()"

This reverts commit 5c0135fa5d.

* Revert "build(meson): automatically use poll or select as needed ()"

This reverts commit 2b5d1eea8d.

* Revert "Make poll() the default ()"

This reverts commit 6e73a63153.

* Remove select() and use poll()
This commit is contained in:
Florian Albrechtskirchinger 2025-02-21 00:51:35 +01:00 committed by GitHub
parent b944f942ee
commit 22d90c29b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 8 additions and 145 deletions

View file

@ -1,10 +1,6 @@
CXX = clang++
CXXFLAGS = -g -std=c++11 -I. -Wall -Wextra -Wtype-limits -Wconversion -Wshadow # -fno-exceptions -DCPPHTTPLIB_NO_EXCEPTIONS -fsanitize=address
ifeq ($(SELECT_IMPL),select)
CXXFLAGS += -DCPPHTTPLIB_USE_SELECT
endif
PREFIX ?= $(shell brew --prefix)
OPENSSL_DIR = $(PREFIX)/opt/openssl@3