Hash :
dc7c42cd
Author :
Date :
2023-04-08T12:08:03
login_tty: Fix compilation error in C++ mode on Solaris 11.4. * m4/login_tty.m4 (gl_FUNC_LOGIN_TTY): Test whether <termios.h> exists. Consider it when testing whether login_tty is declared. * lib/utmp.in.h: If none of <util.h> and <libutil.h> exists, include <termios.h> instead. * doc/glibc-functions/login_tty.texi: Document the Solaris 11.4 problem.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
@node login_tty
@subsection @code{login_tty}
@findex login_tty
Documentation:
@itemize
@item
@ifinfo
@ref{Logging In and Out,,Logging In and Out,libc},
@end ifinfo
@ifnotinfo
@url{https://www.gnu.org/software/libc/manual/html_node/Logging-In-and-Out.html},
@end ifnotinfo
@item
@uref{https://www.kernel.org/doc/man-pages/online/pages/man3/login_tty.3.html,,man login_tty}.
@end itemize
Gnulib module: login_tty
Portability problems fixed by Gnulib:
@itemize
@item
This function is missing on some platforms:
Minix 3.1.8, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 11.3, Android 5.1.
@item
This function is declared in @code{<utmp.h>} on glibc, Cygwin, Android,
in @code{<util.h>} on macOS 11.1, NetBSD 5.0, OpenBSD 3.8,
in @code{<libutil.h>} on FreeBSD 13.0, Haiku,
and in @code{<termios.h>} on Solaris 11.4.
@c Also note that @code{<sys/types.h>} is
@c a prerequisite of @code{<utmp.h>} on FreeBSD 8.0, OpenBSD 4.6 and
@c of @code{<libutil.h>} on FreeBSD 8.0.
@item
This function requires linking with @code{-lutil} on some platforms:
glibc 2.3.6, FreeBSD 13.0, NetBSD 5.0, OpenBSD 3.8.
It is available without link options on other platforms:
macOS 11.1, Cygwin.
@end itemize
Portability problems not fixed by Gnulib:
@itemize
@item
This function is missing on some platforms:
mingw, MSVC 14.
@end itemize