From 4c536785e44615d91b240de1618fd8f6e9bc4c3f Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 17 Nov 2019 19:52:23 +0100 Subject: [PATCH] Always compile with -pthread. --- Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 0e5fb2f..b4d8456 100644 --- a/Makefile.in +++ b/Makefile.in @@ -4,8 +4,8 @@ INSTALL=install PROTOC=protoc CPPFLAGS=@CPPFLAGS@ CPPFLAGS += -Itlse -DWITH_KTLS -DNO_TLS_LEGACY_SUPPORT -DNO_SSL_COMPATIBLE_INTERFACE -DLTM_DESC -DTLS_REEXPORTABLE -DNO_TLS_WITH_CHACHA20_POLY1305 -CXXFLAGS=-Wall @CXXFLAGS@ @protobuf_CFLAGS@ @libsystemd_CFLAGS@ @libtomcrypt_CFLAGS@ -LDFLAGS=@LDFLAGS@ +CXXFLAGS=-Wall @CXXFLAGS@ @protobuf_CFLAGS@ @libsystemd_CFLAGS@ @libtomcrypt_CFLAGS@ -pthread +LDFLAGS=@LDFLAGS@ -pthread LIBS=@LIBS@ @protobuf_LIBS@ @libsystemd_LIBS@ @libtomcrypt_LIBS@ OBJS=main.o client.o server.o stream.o udpstream.o serverpool.o input.o input_stats.o httpinput.o udpinput.o parse.o config.o acceptor.o stats.o accesslog.o thread.o util.o log.o metacube2.o sa_compare.o timespec.o state.pb.o tlse/tlse.o -- 2.39.2