cd19f8d470
Version 4.6.1 (10/07/2017): * Fixes: - problems with starting session in some cases - parallel make install - segfault when querying info on nonUTF locale Version 4.6.0 (28/06/2017): * Update Unicode wide tables to 9.0 * Support more serial speeds * Improved namespaces support * Migrate from fifos to sockets * Start viewing scrollback at first line of output
43 lines
1.2 KiB
Text
43 lines
1.2 KiB
Text
$NetBSD: patch-ai,v 1.8 2017/07/18 23:02:18 kim Exp $
|
|
|
|
This glues in the code from patch-am (see also patch-al and patch-an).
|
|
|
|
--- os.h.orig 2016-06-19 19:41:03.000000000 +0000
|
|
+++ os.h
|
|
@@ -71,9 +71,6 @@
|
|
# undef exit
|
|
#endif /* sun */
|
|
|
|
-#ifndef linux /* all done in <errno.h> */
|
|
-extern int errno;
|
|
-#endif /* linux */
|
|
#ifndef HAVE_STRERROR
|
|
/* No macros, please */
|
|
#undef strerror
|
|
@@ -250,9 +247,15 @@ extern int errno;
|
|
#endif
|
|
|
|
#if defined(UTMPOK) || defined(BUGGYGETLOGIN)
|
|
-# if defined(SVR4) && !defined(DGUX) && !defined(__hpux) && !defined(linux)
|
|
+# if defined(SVR4) && !defined(DGUX) && !defined(__hpux) && !defined(linux) \
|
|
+ || (defined(__NetBSD_Version__) && (__NetBSD_Version__ >= 106050000)) \
|
|
+ || (defined(__DragonFly__) && (__DragonFly_version >= 200902))
|
|
# include <utmpx.h>
|
|
+#if defined(UTMPX_FILE) /* GNU extension */
|
|
# define UTMPFILE UTMPX_FILE
|
|
+#elif defined(_PATH_UTMPX)
|
|
+# define UTMPFILE _PATH_UTMPX
|
|
+#endif
|
|
# define utmp utmpx
|
|
# define getutent getutxent
|
|
# define getutid getutxid
|
|
@@ -261,6 +264,9 @@ extern int errno;
|
|
# define setutent setutxent
|
|
# define endutent endutxent
|
|
# define ut_time ut_xtime
|
|
+# if defined(__NetBSD__)
|
|
+# define NetBSD_UTMP
|
|
+# endif
|
|
# else /* SVR4 */
|
|
# include <utmp.h>
|
|
# endif /* SVR4 */
|