From 13d40aa64c8c073c296ad2c8df0bae6d607aff07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnther=20Noack?= Date: Thu, 19 Sep 2019 22:49:08 +0200 Subject: 9l: support Linux version 5.0+ (#274) Update 9l to support Linux 5.x. --- bin/9l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/9l b/bin/9l index 6195815f..4266b10e 100755 --- a/bin/9l +++ b/bin/9l @@ -40,7 +40,7 @@ case "$tag" in userpath=true extralibs="$extralibs -lutil -lresolv" case "${SYSVERSION:-`uname -r`}" in - 2.6.* | 3.* | 4.*) + 2.6.* | [3-9].* | [1-9][0-9].*) extralibs="$extralibs -lpthread" ;; esac -- cgit v1.2.3 From 715807d706cd13bc583588477a84090fbf02e057 Mon Sep 17 00:00:00 2001 From: Francis Conti Date: Thu, 19 Sep 2019 13:50:44 -0700 Subject: =?UTF-8?q?Teach=209l=20about=20FreeBSD=20=E2=89=A5=2012;=20addres?= =?UTF-8?q?s=20issue=20#247.=20(#249)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bin/9l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/9l b/bin/9l index 4266b10e..0e939524 100755 --- a/bin/9l +++ b/bin/9l @@ -19,7 +19,7 @@ case "$tag" in 5.2.*) extralibs="$extralibs -lkse" ;; - [5-9].*|1[0-1].*) + [5-9].*|1[0-9].*) extralibs="$extralibs -lpthread" ;; esac -- cgit v1.2.3