Re: [hackers] [scroll] Fix make on OpenBSD || Jochen Sprickerhof

2020-04-11 Thread Quentin Rameau
> Fix make on OpenBSD > > -scroll: config.h > +scroll: scroll.c config.h I think it'd be better to fix OpenBSD make or let OpenBSD port maintainers to patch the software rather than pushing changes do standard code because of some buggy implementations.

Re: [hackers] [scroll] Rework the Makefile a bit || Quentin Rameau

2020-04-11 Thread Quentin Rameau
Hey Jochen, Thanks for applying!

[hackers] [scroll] Fix make on OpenBSD || Jochen Sprickerhof

2020-04-11 Thread git
commit 4a454be5448811cf224d2e29797380e427e1b78e Author: Jochen Sprickerhof AuthorDate: Sat Apr 11 22:27:02 2020 +0200 Commit: Jochen Sprickerhof CommitDate: Sat Apr 11 22:27:02 2020 +0200 Fix make on OpenBSD diff --git a/Makefile b/Makefile index 4d415b7..c637c81 100644 --- a/Makefi

[hackers] [scroll] describe default behavior of scroll || Jan Klemkow

2020-04-11 Thread git
commit d5b72e0c65cbaed8b59b9c3c23f5f3fa0dce53b3 Author: Jan Klemkow AuthorDate: Sun Apr 12 00:12:03 2020 +0200 Commit: Jan Klemkow CommitDate: Sun Apr 12 00:12:03 2020 +0200 describe default behavior of scroll diff --git a/scroll.1 b/scroll.1 index f6fa3b1..2b892ec 100644 --- a/scro

[hackers] [scroll] Update TODO || Jochen Sprickerhof

2020-04-11 Thread git
commit bf921dd3152f80546e2172c024f9ab9e2f561c32 Author: Jochen Sprickerhof AuthorDate: Sat Apr 11 20:54:41 2020 +0200 Commit: Jochen Sprickerhof CommitDate: Sat Apr 11 20:54:41 2020 +0200 Update TODO diff --git a/TODO b/TODO index 5226388..7e6fe47 100644 --- a/TODO +++ b/TODO @@ -1,

[hackers] [scroll] remove dead code || Jan Klemkow

2020-04-11 Thread git
commit f1e7a78ba26a8c12f92afe9434f1e8744e08e378 Author: Jan Klemkow AuthorDate: Sat Apr 11 21:14:29 2020 +0200 Commit: Jan Klemkow CommitDate: Sat Apr 11 22:28:54 2020 +0200 remove dead code it seems we don't need non-blocking i/o. diff --git a/scroll.c b/scroll.c index bea

[hackers] [scroll] take default shell if no program argument is given || Jan Klemkow

2020-04-11 Thread git
commit e37cb1032aa76478be9955cecece16b37c954cfe Author: Jan Klemkow AuthorDate: Sun Apr 12 00:01:08 2020 +0200 Commit: Jan Klemkow CommitDate: Sun Apr 12 00:01:08 2020 +0200 take default shell if no program argument is given diff --git a/scroll.1 b/scroll.1 index f5e8d31..f6fa3b1 10

[hackers] [scroll] Rework the Makefile a bit || Quentin Rameau

2020-04-11 Thread git
commit 0188d2f8b73aa4a77aa2fdda313b1192d81aa0a6 Author: Quentin Rameau AuthorDate: Sat Apr 11 14:29:53 2020 +0200 Commit: Jochen Sprickerhof CommitDate: Sat Apr 11 18:24:37 2020 +0200 Rework the Makefile a bit diff --git a/Makefile b/Makefile index 4677e7a..c3e1c50 100644 --- a/Make

[hackers] [scroll] Add distclean make target || Quentin Rameau

2020-04-11 Thread git
commit 3578d0da42c9a39af72c295a0b531c2808a86e59 Author: Quentin Rameau AuthorDate: Sat Apr 11 14:30:11 2020 +0200 Commit: Jochen Sprickerhof CommitDate: Sat Apr 11 18:24:37 2020 +0200 Add distclean make target diff --git a/Makefile b/Makefile index c3e1c50..4d415b7 100644 --- a/Make

[hackers] [scroll][PATCH 1/2] Rework the Makefile a bit

2020-04-11 Thread Quentin Rameau
--- Makefile | 18 -- config.mk | 13 ++--- 2 files changed, 18 insertions(+), 13 deletions(-) diff --git a/Makefile b/Makefile index 4677e7a..c3e1c50 100644 --- a/Makefile +++ b/Makefile @@ -1,20 +1,21 @@ -include config.mk +.POSIX: -.PHONY: all clean install test +inc

[hackers] [scroll][PATCH 2/2] Add distclean make target

2020-04-11 Thread Quentin Rameau
--- Makefile | 11 +++ 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index c3e1c50..4d415b7 100644 --- a/Makefile +++ b/Makefile @@ -4,9 +4,6 @@ include config.mk all: scroll -clean: - rm -f scroll ptty - config.h: cp config.def.h con