Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 9 May 2022 18:11:13 GMT
From:      Cy Schubert <cy@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 42254d38fc21 - main - sysutils/screen: Socket directory location option
Message-ID:  <202205091811.249IBDU4085297@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by cy:

URL: https://cgit.FreeBSD.org/ports/commit/?id=42254d38fc21ae531687824fe6b12d5d52acf3e7

commit 42254d38fc21ae531687824fe6b12d5d52acf3e7
Author:     Cy Schubert <cy@FreeBSD.org>
AuthorDate: 2022-04-04 16:05:21 +0000
Commit:     Cy Schubert <cy@FreeBSD.org>
CommitDate: 2022-05-09 17:48:13 +0000

    sysutils/screen: Socket directory location option
    
    Allow the user to specify the location of the socket directory through a
    make.conf or make command line option called SCREEN_SOCKET_DIR. Simply
    add SCREEN_SOCKET_DIR= to make.conf or put it on the command line.
---
 sysutils/screen/Makefile | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/sysutils/screen/Makefile b/sysutils/screen/Makefile
index 53d60822795b..34625ae2bf9d 100644
--- a/sysutils/screen/Makefile
+++ b/sysutils/screen/Makefile
@@ -82,6 +82,11 @@ CFLAGS+=	-DNONETHACK
 CONFIGURE_ARGS+=	--disable-socket-dir
 .endif
 
+.if defined(SCREEN_SOCKET_DIR)
+CONFIGURE_ARGS+=	--with-socket-dir=${SCREEN_SOCKET_DIR}
+.endif
+
+
 post-patch:
 	@${RM} ${WRKSRC}/doc/screen.info*
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202205091811.249IBDU4085297>