| help on how to install tls.h on debian - geomyidae - A small C-based gopherd. | |
| git clone git://bitreich.org/geomyidae/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfri… | |
| Log | |
| Files | |
| Refs | |
| Tags | |
| README | |
| LICENSE | |
| --- | |
| commit d153299b5c0c1c6e09758a3435b1867b03d5e61b | |
| parent f947f2ed8c2f505aea020794c1a9addd1a77bfbf | |
| Author: Marc Chantreux <[email protected]> | |
| Date: Mon, 14 Jul 2025 19:16:46 +0200 | |
| help on how to install tls.h on debian | |
| Signed-off-by: Christoph Lohmann <[email protected]> | |
| Diffstat: | |
| M Makefile | 4 +++- | |
| 1 file changed, 3 insertions(+), 1 deletion(-) | |
| --- | |
| diff --git a/Makefile b/Makefile | |
| @@ -12,7 +12,9 @@ MANDIR = ${PREFIX}/share/man/man8 | |
| # Comment to disable TLS support | |
| TLS_CFLAGS = -DENABLE_TLS | |
| # libtls is provided using for example LibreSSL. | |
| -TLS_LDFLAGS = -ltls | |
| +# (apt install libtls-dev on debian) | |
| +TLS_LDFLAGS = -ltls | |
| + | |
| GEOM_CFLAGS = -D_DEFAULT_SOURCE -I. -I/usr/include ${TLS_CFLAGS} ${CFLAGS} | |
| GEOM_LDFLAGS = -L/usr/lib -L. ${TLS_LDFLAGS} ${LDFLAGS} |