Displaying 20 results from an estimated 26 matches for "setut".
Did you mean:
setup
2003 Jun 25
0
[Bug 603] configure: error: OpenSSL version header not found
...) when we install openSSH
in Solaris 2.8.
dbtest-root:/opt/openssh-3.6p1
#./configure --prefix=/opt --sysconfdir=/etc/ssh --with-dir-ssl=/usr/local/ssl
::::::::::::::::::::::::::::::::::::::::::
::::::::::::::::::::::::::::::::::::::::::
::::::::::::::::::::::::::::::::::::::::::
checking for setutent... yes
checking for utmpname... yes
checking for endutxent... yes
checking for getutxent... yes
checking for getutxid... yes
checking for getutxline... yes
checking for pututxline... yes
checking for setutxent... yes
checking for utmpxname... yes
checking for daemon... no
checking for daemon in...
2000 Dec 27
2
implicit declaration warnings
Hi,
When I tested the latest snapshot on FreeBSD 4.2, I noticed some implicit
declaration warnings I didn't recall seeing on Linux.
I think this is caused by the fact that if autoconf does detect the
presence of some BSD capability, necessary header files and declarations
may not be included (as these are assumed to be the same ~everywhere, and
already included). If such capability is
2001 Feb 13
1
configure.in reorder patch
...id _getpty __b64_ntop)
-dnl Checks for time functions
-AC_CHECK_FUNCS(gettimeofday time)
-dnl Checks for libutil functions
-AC_CHECK_HEADERS(libutil.h)
-AC_CHECK_FUNCS(login logout updwtmp logwtmp)
-dnl Checks for utmp functions
-AC_CHECK_FUNCS(endutent getutent getutid getutline pututline setutent)
-AC_CHECK_FUNCS(utmpname)
-dnl Checks for utmpx functions
-AC_CHECK_FUNCS(endutxent getutxent getutxid getutxline pututxline )
-AC_CHECK_FUNCS(setutxent utmpxname)
-
-AC_CHECK_FUNC(getuserattr,
- [AC_DEFINE(HAVE_GETUSERATTR)],
- [AC_CHECK_LIB(s, getuserattr, [LIBS="$LIBS -ls"; AC_...
2001 Oct 31
1
OpenSSH-3.0p1-pre-CVS: configure.ac checks for login in -lutil and -lbsd?
OpenSSH-3.0p1-pre, from CVS as of about 2001-10-30 23:45 UTC.
Any particular reason why configure is checking for login() in -lutil,
finds it, then checks for it again in -lbsd?
Here's the relevant excerpts (Red Hat Linux 6.2, , kernel-2.2.19,
glibc-2.1.3, egcs-1.1.2, autoconf-2.52):
$ CFLAGS='-O2 -mpentium -Wall'; export CFLAGS
$ ./configure
2000 Aug 11
1
compiling openssh-2.1.1p4 on SPARC Solaris 8
...day... yes
checking for time... yes
checking for login... no
checking for logout... no
checking for updwtmp... yes
checking for logwtmp... no
checking for entutent... no
checking for getutent... yes
checking for getutid... yes
checking for getutline... yes
checking for pututline... yes
checking for setutent... yes
checking for utmpname... yes
checking for entutxent... no
checking for getutxent... yes
checking for getutxid... yes
checking for getutxline... yes
checking for pututxline... yes
checking for setutxent... yes
checking for utmpxname... yes
checking for getuserattr... no
checking for getuse...
2000 Jun 14
1
OpenSSH 2.1.1p1 on SCO Unixware 7.1.0
...day... yes
checking for time... yes
checking for login... no
checking for logout... no
checking for updwtmp... yes
checking for logwtmp... no
checking for entutent... no
checking for getutent... yes
checking for getutid... yes
checking for getutline... yes
checking for pututline... yes
checking for setutent... yes
checking for utmpname... yes
checking for entutxent... no
checking for getutxent... yes
checking for getutxid... yes
checking for getutxline... yes
checking for pututxline... yes
checking for setutxent... yes
checking for utmpxname... yes
checking for login... (cached) no
checking for log...
2000 Jul 03
0
FreeBSD 3.5-STABLE
...s
checking for time... yes
checking for login... yes
checking for logout... yes
checking for updwtmp... no
checking for logwtmp... yes
checking for entutent... no
checking for getutent... no
checking for getutid... no
checking for getutline... no
checking for pututline... no
checking for setutent... no
checking for utmpname... no
checking for entutxent... no
checking for getutxent... no
checking for getutxid... no
checking for getutxline... no
checking for pututxline... no
checking for setutxent... no
checking for utmpxname... no
checking for login... (cached) yes
checking for...
2001 Feb 01
0
warnings on aix325
...claration of function `syslog'
log-server.c:176: warning: implicit declaration of function `closelog'
loginrec.c: In function `login_set_current_time':
loginrec.c:376: warning: implicit declaration of function `gettimeofday'
loginrec.c:721: warning: implicit declaration of function `setutent'
loginrec.c:722: warning: implicit declaration of function `pututline'
servconf.c: In function `parse_token':
servconf.c:272: warning: implicit declaration of function `strcasecmp'
serverloop.c: In function `wait_until_can_do_something':
serverloop.c:197: warning: implicit de...
2002 May 09
2
OSSH_PATH_ENTROPY_PROG' unexpected
...hecking for _getpty... no
checking for dirname... yes
checking for libgen.h... yes
checking for gettimeofday... yes
checking for time... yes
checking for endutent... yes
checking for getutent... yes
checking for getutid... yes
checking for getutline... yes
checking for pututline... yes
checking for setutent... yes
checking for utmpname... yes
checking for endutxent... yes
checking for getutxent... yes
checking for getutxid... yes
checking for getutxline... yes
checking for pututxline... yes
checking for setutxent... yes
checking for utmpxname... yes
checking for getuserattr... no
checking for getus...
2001 Feb 08
0
openssh2.3.0p1 and /etc/limits
...ig = maxlogins;
+
+ limit = strtol(maxlogins, endptr, 10);
+ if (limit == 0 && ml_orig == *endptr) /* no chars read */
+ return 0;
+
+ if (limit == 0) /* maximum 0 logins ? */ {
+ syslog(LOG_WARNING, "No logins allowed for `%s'\n", name);
+ return LOGIN_ERROR_LOGIN;
+ }
+
+ setutent();
+ count = 0;
+ while ((ut = getutent())) {
+// if (ut->ut_type != USER_PROCESS)
+// continue;
+ if (ut->ut_user[0] == '\0')
+ continue;
+ if (strncmp(name, ut->ut_user, sizeof(ut->ut_user)) != 0)
+ continue;
+ if (++count > limit)
+ break;
+ }
+ endutent();...
2001 Oct 26
2
problems building on solaris 2.6
...cking for libutil.h... no
checking for login... (cached) no
checking for logout... no
checking for updwtmp... yes
checking for logwtmp... no
checking for endutent... yes
checking for getutent... yes
checking for getutid... yes
checking for getutline... yes
checking for pututline... yes
checking for setutent... yes
checking for utmpname... yes
checking for endutxent... yes
checking for getutxent... yes
checking for getutxid... yes
checking for getutxline... yes
checking for pututxline... yes
checking for setutxent... yes
checking for utmpxname... yes
checking for getuserattr... no
checking for getus...
2001 May 15
0
openssh 2.9p1 on Solaris 2.6 with AFS
.... yes
checking for libutil.h... no
checking for login... no
checking for logout... no
checking for updwtmp... yes
checking for logwtmp... no
checking for endutent... yes
checking for getutent... yes
checking for getutid... yes
checking for getutline... yes
checking for pututline... yes
checking for setutent... yes
checking for utmpname... yes
checking for endutxent... yes
checking for getutxent... yes
checking for getutxid... yes
checking for getutxline... yes
checking for pututxline... yes
checking for setutxent... yes
checking for utmpxname... yes
checking for getuserattr... no
checking for getus...
2000 May 17
4
Openssh-2.1.0p1 test release
This to announce a test release of 2.1.0p1 before making it widely
available.
This release includes many fixes to problems reported over the last
week. In particular:
- spurious error and coredumps caused by the inbuilt entropy gathering
- RSAref detection
- Compilation fixes for Solaris and others
It also contains (completely untested) support for compiling without
RSA support. This may be
2001 Apr 10
2
Compiling openssh 2.5.p1 on unixware 7.0.1
...logout... (cached) no
checking for updwtmp... (cached) yes
checking for logwtmp... (cached) no
checking for endutent... (cached) yes
checking for getutent... (cached) yes
checking for getutid... (cached) yes
checking for getutline... (cached) yes
checking for pututline... (cached) yes
checking for setutent... (cached) yes
checking for utmpname... (cached) yes
checking for endutxent... (cached) yes
checking for getutxent... (cached) yes
checking for getutxid... (cached) yes
checking for getutxline... (cached) yes
checking for pututxline... (cached) yes
checking for setutxent... (cached) yes
checkin...
2003 Jun 22
2
Problem with Configure
...ecking for strsep... yes
checking for dirname... no
checking for dirname in -lgen... no
checking for gettimeofday... yes
checking for time... yes
checking for endutent... no
checking for getutent... no
checking for getutid... no
checking for getutline... no
checking for pututline... no
checking for setutent... no
checking for utmpname... no
checking for endutxent... no
checking for getutxent... no
checking for getutxid... no
checking for getutxline... no
checking for pututxline... no
checking for setutxent... no
checking for utmpxname... no
checking for daemon... yes
checking for getpagesize... yes...
2001 Jul 11
0
Solaris 2.6: Undefined symbol seed_rng
.... yes
checking for libutil.h... no
checking for login... no
checking for logout... no
checking for updwtmp... yes
checking for logwtmp... no
checking for endutent... yes
checking for getutent... yes
checking for getutid... yes
checking for getutline... yes
checking for pututline... yes
checking for setutent... yes
checking for utmpname... yes
checking for endutxent... yes
checking for getutxent... yes
checking for getutxid... yes
checking for getutxline... yes
checking for pututxline... yes
checking for setutxent... yes
checking for utmpxname... yes
checking for getuserattr... no
checking for getus...
2000 Jul 08
1
sshd Pam problem for Redhat 6.2
...... yes
checking for time... yes
checking for login... yes
checking for logout... yes
checking for updwtmp... yes
checking for logwtmp... yes
checking for entutent... no
checking for getutent... yes
checking for getutid... yes
checking for getutline... yes
checking for pututline... yes
checking for setutent... yes
checking for utmpname... yes
checking for entutxent... no
checking for getutxent... yes
checking for getutxid... yes
checking for getutxline... yes
checking for pututxline... yes
checking for setutxent... yes
checking for utmpxname... yes
checking for login... (cached) yes
checking for da...
2006 Feb 06
1
Compile warning report of openssh 4.3p1 on Intel Macs
...er h_errno is declared... yes
checking for setresuid... no
checking for setresgid... no
checking for gettimeofday... yes
checking for time... yes
checking for endutent... no
checking for getutent... no
checking for getutid... no
checking for getutline... no
checking for pututline... no
checking for setutent... no
checking for utmpname... no
checking for endutxent... yes
checking for getutxent... yes
checking for getutxid... yes
checking for getutxline... yes
checking for pututxline... yes
checking for setutxent... yes
checking for utmpxname... no
checking for daemon... yes
checking for getpagesize....
2006 Apr 23
0
Configuration Warnings OpenSSH 4.3p2
...to work... yes
checking for setresgid... yes
checking if setresgid seems to work... yes
checking for gettimeofday... yes
checking for time... yes
checking for endutent... no
checking for getutent... no
checking for getutid... no
checking for getutline... no
checking for pututline... no
checking for setutent... no
checking for utmpname... no
checking for endutxent... no
checking for getutxent... no
checking for getutxid... no
checking for getutxline... no
checking for pututxline... no
checking for setutxent... no
checking for utmpxname... no
checking for daemon... yes
checking for getpagesize... yes...
2011 Sep 02
1
problems building openssh-5.8p1 on qnx
...setof is declared... yes
checking for setresuid... no
checking for setresgid... no
checking for gettimeofday... yes
checking for time... yes
checking for endutent... yes
checking for getutent... yes
checking for getutid... yes
checking for getutline... yes
checking for pututline... yes
checking for setutent... yes
checking for utmpname... yes
checking for endutxent... no
checking for getutxent... no
checking for getutxid... no
checking for getutxline... no
checking for getutxuser... no
checking for pututxline... no
checking for setutxdb... no
checking for setutxent... no
checking for utmpxname... n...