util-linux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Portability patches for GNU/Hurd
@ 2012-05-25 18:13 Thomas Schwinge
  2012-05-25 18:13 ` [PATCH] test_pager: Repair build for non-Linux Thomas Schwinge
  2012-05-25 18:16 ` [PATCH 1/7] kill, raw, rename: Don't explicitly enable for --enable-most-builds Thomas Schwinge
  0 siblings, 2 replies; 17+ messages in thread
From: Thomas Schwinge @ 2012-05-25 18:13 UTC (permalink / raw)
  To: util-linux

Hi!

The subject says is all.  :-)


Grüße,
 Thomas


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [PATCH] test_pager: Repair build for non-Linux.
  2012-05-25 18:13 Portability patches for GNU/Hurd Thomas Schwinge
@ 2012-05-25 18:13 ` Thomas Schwinge
  2012-05-29  8:00   ` Karel Zak
  2012-05-25 18:16 ` [PATCH 1/7] kill, raw, rename: Don't explicitly enable for --enable-most-builds Thomas Schwinge
  1 sibling, 1 reply; 17+ messages in thread
From: Thomas Schwinge @ 2012-05-25 18:13 UTC (permalink / raw)
  To: util-linux; +Cc: Thomas Schwinge

Signed-off-by: Thomas Schwinge <thomas@codesourcery.com>
---
 lib/Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib/Makefile.am b/lib/Makefile.am
index aed0ecd..01b59dc 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -27,6 +27,7 @@ test_blkdev_SOURCES = blkdev.c
 test_ismounted_SOURCES = ismounted.c
 test_wholedisk_SOURCES = wholedisk.c
 test_mangle_SOURCES = mangle.c
+test_pager_SOURCES = pager.c
 
 test_at_SOURCES = at.c
 test_at_CFLAGS = -DTEST_PROGRAM_AT
@@ -38,7 +39,6 @@ test_procutils_SOURCES = procutils.c
 if LINUX
 test_cpuset_SOURCES = cpuset.c
 test_sysfs_SOURCES = sysfs.c at.c
-test_pager_SOURCES = pager.c
 test_sysfs_CFLAGS = -DTEST_PROGRAM_SYSFS
 
 test_loopdev_SOURCES = \
-- 
1.7.9


^ permalink raw reply related	[flat|nested] 17+ messages in thread

* [PATCH 1/7] kill, raw, rename: Don't explicitly enable for --enable-most-builds.
  2012-05-25 18:13 Portability patches for GNU/Hurd Thomas Schwinge
  2012-05-25 18:13 ` [PATCH] test_pager: Repair build for non-Linux Thomas Schwinge
@ 2012-05-25 18:16 ` Thomas Schwinge
  2012-05-25 18:16   ` [PATCH 2/7] arch, eject, elvtune: Gracefully disable on non-Linux platforms Thomas Schwinge
                     ` (6 more replies)
  1 sibling, 7 replies; 17+ messages in thread
From: Thomas Schwinge @ 2012-05-25 18:16 UTC (permalink / raw)
  To: util-linux; +Cc: Thomas Schwinge

They're already dealt with in the default configuration.

Signed-off-by: Thomas Schwinge <thomas@codesourcery.com>
---
 configure.ac |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index eb67ada..76f73a1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -631,12 +631,9 @@ if test "x$enable_most_builds" = xyes; then
   enable_arch=yes
   enable_ddate=yes
   enable_elvtune=yes
-  enable_kill=yes
   enable_last=yes
   enable_line=yes
   enable_mesg=yes
-  enable_raw=yes
-  enable_rename=yes
   enable_reset=yes
   enable_login_utils=yes
   enable_write=yes
-- 
1.7.9


^ permalink raw reply related	[flat|nested] 17+ messages in thread

* [PATCH 2/7] arch, eject, elvtune: Gracefully disable on non-Linux platforms.
  2012-05-25 18:16 ` [PATCH 1/7] kill, raw, rename: Don't explicitly enable for --enable-most-builds Thomas Schwinge
@ 2012-05-25 18:16   ` Thomas Schwinge
  2012-05-29  8:01     ` Karel Zak
  2012-05-25 18:16   ` [PATCH 3/7] last, login, write: Provide a fallback for MAXHOSTNAMELEN, as elsewhere Thomas Schwinge
                     ` (5 subsequent siblings)
  6 siblings, 1 reply; 17+ messages in thread
From: Thomas Schwinge @ 2012-05-25 18:16 UTC (permalink / raw)
  To: util-linux; +Cc: Thomas Schwinge

Signed-off-by: Thomas Schwinge <thomas@codesourcery.com>
---
 configure.ac |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index 76f73a1..cd8fa4e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -628,9 +628,9 @@ AC_ARG_ENABLE([most-builds],
   [], enable_most_builds=no
 )
 if test "x$enable_most_builds" = xyes; then
-  enable_arch=yes
+  enable_arch=check
   enable_ddate=yes
-  enable_elvtune=yes
+  enable_elvtune=check
   enable_last=yes
   enable_line=yes
   enable_mesg=yes
@@ -862,7 +862,7 @@ AC_SUBST([ruman1dir])
 
 AC_ARG_ENABLE([eject],
   AS_HELP_STRING([--disable-eject], [do not build eject]),
-  [], enable_eject=yes
+  [], enable_eject=check
 )
 UL_BUILD_INIT([eject])
 UL_REQUIRES_LINUX([eject])
-- 
1.7.9


^ permalink raw reply related	[flat|nested] 17+ messages in thread

* [PATCH 3/7] last, login, write: Provide a fallback for MAXHOSTNAMELEN, as elsewhere.
  2012-05-25 18:16 ` [PATCH 1/7] kill, raw, rename: Don't explicitly enable for --enable-most-builds Thomas Schwinge
  2012-05-25 18:16   ` [PATCH 2/7] arch, eject, elvtune: Gracefully disable on non-Linux platforms Thomas Schwinge
@ 2012-05-25 18:16   ` Thomas Schwinge
  2012-05-29  8:10     ` Karel Zak
  2012-05-25 18:16   ` [PATCH 4/7] login: Include <linux/major.h> only if it exists Thomas Schwinge
                     ` (4 subsequent siblings)
  6 siblings, 1 reply; 17+ messages in thread
From: Thomas Schwinge @ 2012-05-25 18:16 UTC (permalink / raw)
  To: util-linux; +Cc: Thomas Schwinge

Signed-off-by: Thomas Schwinge <thomas@codesourcery.com>
---
 login-utils/last.c  |    8 ++++++++
 login-utils/login.c |    8 ++++++++
 term-utils/write.c  |    8 ++++++++
 3 files changed, 24 insertions(+), 0 deletions(-)

diff --git a/login-utils/last.c b/login-utils/last.c
index 1b1bee1..4d09c4b 100644
--- a/login-utils/last.c
+++ b/login-utils/last.c
@@ -62,6 +62,14 @@
 #include "xalloc.h"
 #include "c.h"
 
+#ifndef MAXHOSTNAMELEN
+# ifdef HOST_NAME_MAX
+#  define MAXHOSTNAMELEN HOST_NAME_MAX
+# else
+#  define MAXHOSTNAMELEN 64
+# endif
+#endif
+
 #define	SECDAY	(24*60*60)			/* seconds in a day */
 #define	NO	0				/* false/no */
 #define	YES	1				/* true/yes */
diff --git a/login-utils/login.c b/login-utils/login.c
index 7b4f8b5..f459b79 100644
--- a/login-utils/login.c
+++ b/login-utils/login.c
@@ -71,6 +71,14 @@
 
 #include "logindefs.h"
 
+#ifndef MAXHOSTNAMELEN
+# ifdef HOST_NAME_MAX
+#  define MAXHOSTNAMELEN HOST_NAME_MAX
+# else
+#  define MAXHOSTNAMELEN 64
+# endif
+#endif
+
 #define is_pam_failure(_rc)	((_rc) != PAM_SUCCESS)
 
 #define LOGIN_MAX_TRIES        3
diff --git a/term-utils/write.c b/term-utils/write.c
index 2a94792..c8aca7e 100644
--- a/term-utils/write.c
+++ b/term-utils/write.c
@@ -65,6 +65,14 @@
 #include "closestream.h"
 #include "nls.h"
 
+#ifndef MAXHOSTNAMELEN
+# ifdef HOST_NAME_MAX
+#  define MAXHOSTNAMELEN HOST_NAME_MAX
+# else
+#  define MAXHOSTNAMELEN 64
+# endif
+#endif
+
 static void __attribute__ ((__noreturn__)) usage(FILE * out);
 void search_utmp(char *, char *, char *, uid_t);
 void do_write(char *, char *, uid_t);
-- 
1.7.9


^ permalink raw reply related	[flat|nested] 17+ messages in thread

* [PATCH 4/7] login: Include <linux/major.h> only if it exists.
  2012-05-25 18:16 ` [PATCH 1/7] kill, raw, rename: Don't explicitly enable for --enable-most-builds Thomas Schwinge
  2012-05-25 18:16   ` [PATCH 2/7] arch, eject, elvtune: Gracefully disable on non-Linux platforms Thomas Schwinge
  2012-05-25 18:16   ` [PATCH 3/7] last, login, write: Provide a fallback for MAXHOSTNAMELEN, as elsewhere Thomas Schwinge
@ 2012-05-25 18:16   ` Thomas Schwinge
  2012-05-25 18:16   ` [PATCH 5/7] write: Use PATH_MAX instead of MAXPATHLEN, as elsewhere Thomas Schwinge
                     ` (3 subsequent siblings)
  6 siblings, 0 replies; 17+ messages in thread
From: Thomas Schwinge @ 2012-05-25 18:16 UTC (permalink / raw)
  To: util-linux; +Cc: Thomas Schwinge

It isn't required on non-Linux systems.

Signed-off-by: Thomas Schwinge <thomas@codesourcery.com>
---
 login-utils/login.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/login-utils/login.c b/login-utils/login.c
index f459b79..7384940 100644
--- a/login-utils/login.c
+++ b/login-utils/login.c
@@ -49,7 +49,9 @@
 #include <stdlib.h>
 #include <sys/syslog.h>
 #include <sys/sysmacros.h>
-#include <linux/major.h>
+#ifdef HAVE_LINUX_MAJOR_H
+# include <linux/major.h>
+#endif
 #include <netdb.h>
 #include <lastlog.h>
 #include <security/pam_appl.h>
-- 
1.7.9


^ permalink raw reply related	[flat|nested] 17+ messages in thread

* [PATCH 5/7] write: Use PATH_MAX instead of MAXPATHLEN, as elsewhere.
  2012-05-25 18:16 ` [PATCH 1/7] kill, raw, rename: Don't explicitly enable for --enable-most-builds Thomas Schwinge
                     ` (2 preceding siblings ...)
  2012-05-25 18:16   ` [PATCH 4/7] login: Include <linux/major.h> only if it exists Thomas Schwinge
@ 2012-05-25 18:16   ` Thomas Schwinge
  2012-05-29  8:14     ` Karel Zak
  2012-05-25 18:16   ` [PATCH 6/7] write: Don't explicitly include <asm/param.h> Thomas Schwinge
                     ` (2 subsequent siblings)
  6 siblings, 1 reply; 17+ messages in thread
From: Thomas Schwinge @ 2012-05-25 18:16 UTC (permalink / raw)
  To: util-linux; +Cc: Thomas Schwinge

Signed-off-by: Thomas Schwinge <thomas@codesourcery.com>
---
 term-utils/write.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/term-utils/write.c b/term-utils/write.c
index c8aca7e..901ddc4 100644
--- a/term-utils/write.c
+++ b/term-utils/write.c
@@ -102,7 +102,7 @@ int main(int argc, char **argv)
 	time_t atime;
 	uid_t myuid;
 	int msgsok, myttyfd, c;
-	char tty[MAXPATHLEN], *mytty;
+	char tty[PATH_MAX], *mytty;
 
 	static const struct option longopts[] = {
 		{"version", no_argument, NULL, 'V'},
@@ -296,7 +296,7 @@ void search_utmp(char *user, char *tty, char *mytty, uid_t myuid)
 int term_chk(char *tty, int *msgsokP, time_t * atimeP, int showerror)
 {
 	struct stat s;
-	char path[MAXPATHLEN];
+	char path[PATH_MAX];
 
 	if (strlen(tty) + 6 > sizeof(path))
 		return 1;
@@ -321,7 +321,7 @@ void do_write(char *tty, char *mytty, uid_t myuid)
 	char *login, *pwuid, *nows;
 	struct passwd *pwd;
 	time_t now;
-	char path[MAXPATHLEN], host[MAXHOSTNAMELEN], line[512];
+	char path[PATH_MAX], host[MAXHOSTNAMELEN], line[512];
 
 	/* Determine our login name(s) before the we reopen() stdout */
 	if ((pwd = getpwuid(myuid)) != NULL)
-- 
1.7.9


^ permalink raw reply related	[flat|nested] 17+ messages in thread

* [PATCH 6/7] write: Don't explicitly include <asm/param.h>.
  2012-05-25 18:16 ` [PATCH 1/7] kill, raw, rename: Don't explicitly enable for --enable-most-builds Thomas Schwinge
                     ` (3 preceding siblings ...)
  2012-05-25 18:16   ` [PATCH 5/7] write: Use PATH_MAX instead of MAXPATHLEN, as elsewhere Thomas Schwinge
@ 2012-05-25 18:16   ` Thomas Schwinge
  2012-05-29  8:14     ` Karel Zak
  2012-05-25 18:16   ` [PATCH 7/7] setsid: Include <sys/ioctl.h> instead of <termio.h> Thomas Schwinge
  2012-05-29  8:01   ` [PATCH 1/7] kill, raw, rename: Don't explicitly enable for --enable-most-builds Karel Zak
  6 siblings, 1 reply; 17+ messages in thread
From: Thomas Schwinge @ 2012-05-25 18:16 UTC (permalink / raw)
  To: util-linux; +Cc: Thomas Schwinge

It doesn't exist on some systems, but will come in via <sys/param.h> on the
others.

Signed-off-by: Thomas Schwinge <thomas@codesourcery.com>
---
 term-utils/write.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/term-utils/write.c b/term-utils/write.c
index 901ddc4..9964e08 100644
--- a/term-utils/write.c
+++ b/term-utils/write.c
@@ -57,7 +57,6 @@
 #include <sys/param.h>
 #include <sys/stat.h>
 #include <paths.h>
-#include <asm/param.h>
 #include <getopt.h>
 
 #include "c.h"
-- 
1.7.9


^ permalink raw reply related	[flat|nested] 17+ messages in thread

* [PATCH 7/7] setsid: Include <sys/ioctl.h> instead of <termio.h>.
  2012-05-25 18:16 ` [PATCH 1/7] kill, raw, rename: Don't explicitly enable for --enable-most-builds Thomas Schwinge
                     ` (4 preceding siblings ...)
  2012-05-25 18:16   ` [PATCH 6/7] write: Don't explicitly include <asm/param.h> Thomas Schwinge
@ 2012-05-25 18:16   ` Thomas Schwinge
  2012-05-29  8:14     ` Karel Zak
  2012-05-29  8:01   ` [PATCH 1/7] kill, raw, rename: Don't explicitly enable for --enable-most-builds Karel Zak
  6 siblings, 1 reply; 17+ messages in thread
From: Thomas Schwinge @ 2012-05-25 18:16 UTC (permalink / raw)
  To: util-linux; +Cc: Thomas Schwinge

Signed-off-by: Thomas Schwinge <thomas@codesourcery.com>
---
 sys-utils/setsid.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/sys-utils/setsid.c b/sys-utils/setsid.c
index 6d1eeda..52ad38f 100644
--- a/sys-utils/setsid.c
+++ b/sys-utils/setsid.c
@@ -15,7 +15,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <unistd.h>
-#include <termio.h>
+#include <sys/ioctl.h>
 
 #include "c.h"
 #include "nls.h"
-- 
1.7.9


^ permalink raw reply related	[flat|nested] 17+ messages in thread

* Re: [PATCH] test_pager: Repair build for non-Linux.
  2012-05-25 18:13 ` [PATCH] test_pager: Repair build for non-Linux Thomas Schwinge
@ 2012-05-29  8:00   ` Karel Zak
  0 siblings, 0 replies; 17+ messages in thread
From: Karel Zak @ 2012-05-29  8:00 UTC (permalink / raw)
  To: Thomas Schwinge; +Cc: util-linux

On Fri, May 25, 2012 at 08:13:41PM +0200, Thomas Schwinge wrote:
>  lib/Makefile.am |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)

 Applied, thanks.

-- 
 Karel Zak  <kzak@redhat.com>
 http://karelzak.blogspot.com

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH 1/7] kill, raw, rename: Don't explicitly enable for --enable-most-builds.
  2012-05-25 18:16 ` [PATCH 1/7] kill, raw, rename: Don't explicitly enable for --enable-most-builds Thomas Schwinge
                     ` (5 preceding siblings ...)
  2012-05-25 18:16   ` [PATCH 7/7] setsid: Include <sys/ioctl.h> instead of <termio.h> Thomas Schwinge
@ 2012-05-29  8:01   ` Karel Zak
  6 siblings, 0 replies; 17+ messages in thread
From: Karel Zak @ 2012-05-29  8:01 UTC (permalink / raw)
  To: Thomas Schwinge; +Cc: util-linux

On Fri, May 25, 2012 at 08:16:12PM +0200, Thomas Schwinge wrote:
>  configure.ac |    3 ---
>  1 files changed, 0 insertions(+), 3 deletions(-)

 Applied, thanks.

-- 
 Karel Zak  <kzak@redhat.com>
 http://karelzak.blogspot.com

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH 2/7] arch, eject, elvtune: Gracefully disable on non-Linux platforms.
  2012-05-25 18:16   ` [PATCH 2/7] arch, eject, elvtune: Gracefully disable on non-Linux platforms Thomas Schwinge
@ 2012-05-29  8:01     ` Karel Zak
  0 siblings, 0 replies; 17+ messages in thread
From: Karel Zak @ 2012-05-29  8:01 UTC (permalink / raw)
  To: Thomas Schwinge; +Cc: util-linux

On Fri, May 25, 2012 at 08:16:13PM +0200, Thomas Schwinge wrote:
>  configure.ac |    6 +++---
>  1 files changed, 3 insertions(+), 3 deletions(-)

 Applied, thanks.

-- 
 Karel Zak  <kzak@redhat.com>
 http://karelzak.blogspot.com

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH 3/7] last, login, write: Provide a fallback for MAXHOSTNAMELEN, as elsewhere.
  2012-05-25 18:16   ` [PATCH 3/7] last, login, write: Provide a fallback for MAXHOSTNAMELEN, as elsewhere Thomas Schwinge
@ 2012-05-29  8:10     ` Karel Zak
  2012-05-29  8:40       ` Thomas Schwinge
  0 siblings, 1 reply; 17+ messages in thread
From: Karel Zak @ 2012-05-29  8:10 UTC (permalink / raw)
  To: Thomas Schwinge; +Cc: util-linux

On Fri, May 25, 2012 at 08:16:14PM +0200, Thomas Schwinge wrote:
> Signed-off-by: Thomas Schwinge <thomas@codesourcery.com>
> ---
>  login-utils/last.c  |    8 ++++++++
>  login-utils/login.c |    8 ++++++++
>  term-utils/write.c  |    8 ++++++++
>  3 files changed, 24 insertions(+), 0 deletions(-)

 I have moved the fallback for MAXHOSTNAMELEN to c.h, it seems better
 than duplicate the code.  Thanks.

    Karel

-- 
 Karel Zak  <kzak@redhat.com>
 http://karelzak.blogspot.com

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH 5/7] write: Use PATH_MAX instead of MAXPATHLEN, as elsewhere.
  2012-05-25 18:16   ` [PATCH 5/7] write: Use PATH_MAX instead of MAXPATHLEN, as elsewhere Thomas Schwinge
@ 2012-05-29  8:14     ` Karel Zak
  0 siblings, 0 replies; 17+ messages in thread
From: Karel Zak @ 2012-05-29  8:14 UTC (permalink / raw)
  To: Thomas Schwinge; +Cc: util-linux

On Fri, May 25, 2012 at 08:16:16PM +0200, Thomas Schwinge wrote:
>  term-utils/write.c |    6 +++---
>  1 files changed, 3 insertions(+), 3 deletions(-)

 Applied, thanks.

-- 
 Karel Zak  <kzak@redhat.com>
 http://karelzak.blogspot.com

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH 6/7] write: Don't explicitly include <asm/param.h>.
  2012-05-25 18:16   ` [PATCH 6/7] write: Don't explicitly include <asm/param.h> Thomas Schwinge
@ 2012-05-29  8:14     ` Karel Zak
  0 siblings, 0 replies; 17+ messages in thread
From: Karel Zak @ 2012-05-29  8:14 UTC (permalink / raw)
  To: Thomas Schwinge; +Cc: util-linux

On Fri, May 25, 2012 at 08:16:17PM +0200, Thomas Schwinge wrote:
>  term-utils/write.c |    1 -
>  1 files changed, 0 insertions(+), 1 deletions(-)

 Applied, thanks.

-- 
 Karel Zak  <kzak@redhat.com>
 http://karelzak.blogspot.com

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH 7/7] setsid: Include <sys/ioctl.h> instead of <termio.h>.
  2012-05-25 18:16   ` [PATCH 7/7] setsid: Include <sys/ioctl.h> instead of <termio.h> Thomas Schwinge
@ 2012-05-29  8:14     ` Karel Zak
  0 siblings, 0 replies; 17+ messages in thread
From: Karel Zak @ 2012-05-29  8:14 UTC (permalink / raw)
  To: Thomas Schwinge; +Cc: util-linux

On Fri, May 25, 2012 at 08:16:18PM +0200, Thomas Schwinge wrote:
>  sys-utils/setsid.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)

 Applied, thanks.

-- 
 Karel Zak  <kzak@redhat.com>
 http://karelzak.blogspot.com

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH 3/7] last, login, write: Provide a fallback for MAXHOSTNAMELEN, as elsewhere.
  2012-05-29  8:10     ` Karel Zak
@ 2012-05-29  8:40       ` Thomas Schwinge
  0 siblings, 0 replies; 17+ messages in thread
From: Thomas Schwinge @ 2012-05-29  8:40 UTC (permalink / raw)
  To: Karel Zak; +Cc: util-linux

[-- Attachment #1: Type: text/plain, Size: 623 bytes --]

Hi!

On Tue, 29 May 2012 10:10:25 +0200, Karel Zak <kzak@redhat.com> wrote:
> On Fri, May 25, 2012 at 08:16:14PM +0200, Thomas Schwinge wrote:
> > Signed-off-by: Thomas Schwinge <thomas@codesourcery.com>
> > ---
> >  login-utils/last.c  |    8 ++++++++
> >  login-utils/login.c |    8 ++++++++
> >  term-utils/write.c  |    8 ++++++++
> >  3 files changed, 24 insertions(+), 0 deletions(-)
> 
>  I have moved the fallback for MAXHOSTNAMELEN to c.h, it seems better
>  than duplicate the code.  Thanks.

Yes, of course that makes even more sense.  Thanks also for applying the
others.


Grüße,
 Thomas

[-- Attachment #2: Type: application/pgp-signature, Size: 489 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2012-05-29  8:40 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-25 18:13 Portability patches for GNU/Hurd Thomas Schwinge
2012-05-25 18:13 ` [PATCH] test_pager: Repair build for non-Linux Thomas Schwinge
2012-05-29  8:00   ` Karel Zak
2012-05-25 18:16 ` [PATCH 1/7] kill, raw, rename: Don't explicitly enable for --enable-most-builds Thomas Schwinge
2012-05-25 18:16   ` [PATCH 2/7] arch, eject, elvtune: Gracefully disable on non-Linux platforms Thomas Schwinge
2012-05-29  8:01     ` Karel Zak
2012-05-25 18:16   ` [PATCH 3/7] last, login, write: Provide a fallback for MAXHOSTNAMELEN, as elsewhere Thomas Schwinge
2012-05-29  8:10     ` Karel Zak
2012-05-29  8:40       ` Thomas Schwinge
2012-05-25 18:16   ` [PATCH 4/7] login: Include <linux/major.h> only if it exists Thomas Schwinge
2012-05-25 18:16   ` [PATCH 5/7] write: Use PATH_MAX instead of MAXPATHLEN, as elsewhere Thomas Schwinge
2012-05-29  8:14     ` Karel Zak
2012-05-25 18:16   ` [PATCH 6/7] write: Don't explicitly include <asm/param.h> Thomas Schwinge
2012-05-29  8:14     ` Karel Zak
2012-05-25 18:16   ` [PATCH 7/7] setsid: Include <sys/ioctl.h> instead of <termio.h> Thomas Schwinge
2012-05-29  8:14     ` Karel Zak
2012-05-29  8:01   ` [PATCH 1/7] kill, raw, rename: Don't explicitly enable for --enable-most-builds Karel Zak

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).