search for: getpwanam

Displaying 20 results from an estimated 37 matches for "getpwanam".

2000 May 12
0
SunOS 4.x port
.... This also supports SunOS 4.x shadow passwords (passwd adjunct). - todd --- configure.in.DIST Fri May 12 15:50:24 2000 +++ configure.in Fri May 12 16:08:22 2000 @@ -107,6 +107,10 @@ need_dash_r=1 AC_DEFINE(USE_UTMPX) ;; +*-*-sunos4*) + CFLAGS="$CFLAGS -DSUNOS4" + AC_CHECK_FUNCS(getpwanam) + ;; *-*-sysv*) CFLAGS="$CFLAGS -I/usr/local/include" LDFLAGS="$LDFLAGS -L/usr/local/lib" @@ -353,17 +357,6 @@ [size_t foo; foo = 1235;], [ AC_DEFINE(HAVE_SIZE_T) - AC_MSG_RESULT(yes) - ], - [AC_MSG_RESULT(no)] -) - -AC_MSG_CHECKING([for ssize_t]) -AC_TRY_COMPILE(...
2003 Sep 08
2
Variable declarations in xcrypt.c
.../openbsd-compat/xcrypt.c,v retrieving revision 1.4 diff -u -p -r1.4 xcrypt.c --- openbsd-compat/xcrypt.c 6 Sep 2003 23:43:42 -0000 1.4 +++ openbsd-compat/xcrypt.c 8 Sep 2003 06:52:26 -0000 @@ -96,18 +96,25 @@ shadow_pw(struct passwd *pw) pw_password = spw->sp_pwdp; # endif # if defined(HAVE_GETPWANAM) && !defined(DISABLE_SHADOW) - struct passwd_adjunct *spw; - if (issecure() && (spw = getpwanam(pw->pw_name)) != NULL) - pw_password = spw->pwa_passwd; + if (issecure()) { + struct passwd_adjunct *spw; + + if (spw = getpwanam(pw->pw_name) != NULL) + pw_password = spw-&...
2006 Jun 29
1
SunOS 4.1.4 "configure: WARNING" for sys/audit.h and sys/dir.h
...ependency is already present. One possibility is to add the line "AC_DEFINE(HAVE_SYS_TYPES_H)" to "configure.ac" as follows for openssh-SNAP-20060626/configure.ac: 429 *-*-sunos4*) 430 CPPFLAGS="$CPPFLAGS -DSUNOS4" 431 AC_CHECK_FUNCS(getpwanam) 432 AC_DEFINE(PAM_SUN_CODEBASE) + add this + AC_DEFINE(HAVE_SYS_TYPES_H) 433 conf_utmp_location=/etc/utmp 434 conf_wtmp_location=/var/adm/wtmp 435 conf_lastlog_location=/var/adm/lastlog 436 AC_DEFINE(USE_PIPES) 437 ;; Howe...
2002 Mar 12
2
sys/queue.h
...mode.o" @@ -123,7 +122,6 @@ check_for_libcrypt_later=1 AC_DEFINE(DONT_TRY_OTHER_AF) AC_DEFINE(PAM_TTY_KLUDGE) - AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H) inet6_default_4in6=yes ;; mips-sony-bsd|mips-sony-newsos4) @@ -175,7 +173,6 @@ CPPFLAGS="$CPPFLAGS -DSUNOS4" AC_CHECK_FUNCS(getpwanam) AC_DEFINE(PAM_SUN_CODEBASE) - AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H) conf_utmp_location=/etc/utmp conf_wtmp_location=/var/adm/wtmp conf_lastlog_location=/var/adm/lastlog @@ -185,7 +182,6 @@ CPPFLAGS="$CPPFLAGS -I/usr/local/include" LDFLAGS="$LDFLAGS -L/usr/local/lib" L...
1998 Jul 16
0
Encryption options/password file?
...passwd" >Using LIBS = How do I get it to use my NIS password file instead of /usr/local/samba/private/smbpasswd?? I'm assuming this is saying to use a SEPARATE database?! also: How can I find out more information on the following (what they are, do I have them, how to use them) # -DGETPWANAM if you wish to use getpwanam() call # -DPWDAUTH if you have and want to use the pwdauth() call # -DUFC_CRYPT if you want the fast crypt routine # -DQUOTAS for quota support in disk_free(). This probably only works # on some systems. # -DFAST_SHARE_MODES if you want the fast share...
1998 Oct 15
1
Problem to map home dir
...are additional flags that may apply # -DNETGROUP if your machine supports yp netgroups # -DAUTOMOUNT to ask for yp auto.home for users' home directories # -DNISPLUS add this to ask nis+ instead of yp for users' home directories # -DSHADOW_PWD if you are using shadow passwords # -DGETPWANAM if you wish to use getpwanam() call # -DPWDAUTH if you have and want to use the pwdauth() call # -DUFC_CRYPT if you want the fast crypt routine # -DALLOW_CHANGE_PASSWORD if you want users to be able to set their password # remotely (only works on some systems) # -D...
2000 Aug 01
2
[2.1.1p4] utmp patch for SunOS 4.1.x
.../* Define if you have the <usersec.h> header file. */ #undef HAVE_USERSEC_H *** configure.in.orig Fri Jul 14 21:59:14 2000 --- configure.in Mon Jul 31 23:44:12 2000 *************** *** 137,142 **** --- 137,147 ---- *-*-sunos4*) CFLAGS="$CFLAGS -DSUNOS4" AC_CHECK_FUNCS(getpwanam) + conf_utmp_location=/etc/utmp + conf_wtmp_location=/var/adm/wtmp + conf_lastlog_location=/var/adm/lastlog + MANTYPE='$(CATMAN)' + mansubdir=cat ;; *-sni-sysv*) CFLAGS="$CFLAGS -I/usr/local/include" *************** *** 216,225 ****...
2000 Jul 26
2
[2.1.1p4] utmp related patches plus unresolved bugs description
...se +# ifdef CONF_LASTLOG_FILE +# define LASTLOG_FILE CONF_LASTLOG_FILE +# endif +# endif #endif --- configure.in.orig-2.1.1p4 Sat Jul 15 00:59:14 2000 +++ configure.in Tue Jul 25 00:23:52 2000 @@ -137,6 +137,11 @@ *-*-sunos4*) CFLAGS="$CFLAGS -DSUNOS4" AC_CHECK_FUNCS(getpwanam) + conf_utmp_location=/etc/utmp + conf_wtmp_location=/var/adm/wtmp + conf_lastlog_location=/var/adm/lastlog + MANTYPE='$(CATMAN)' + mansubdir=cat ;; *-sni-sysv*) CFLAGS="$CFLAGS -I/usr/local/include" ========================================================================
2006 Sep 25
1
[PATCH] implementation of getpeereid() for Solaris
...enssh-SNAP-20060921-patched//config.h.in Mon Sep 25 11:49:06 2006 @@ -354,6 +354,9 @@ /* Define to 1 if you have the `getpeereid' function. */ #undef HAVE_GETPEEREID +/* Define to 1 if you have the `getpeerucred' function. */ +#define HAVE_GETPEERUCRED + /* Define to 1 if you have the `getpwanam' function. */ #undef HAVE_GETPWANAM @@ -375,6 +378,9 @@ /* Define to 1 if you have the `getttyent' function. */ #undef HAVE_GETTTYENT +/* Define to 1 if you have the <ucred.h> header file. */ +#define HAVE_UCRED_H + /* Define to 1 if you have the `getutent' function. */ #...
2002 Dec 25
1
Trouble installing samba
...ng for dup2... no > checking for lseek64... no > checking for ftruncate64... no > checking for readdir64... no > checking for fseek64... no > checking for fseeko64... no > checking for ftell64... no > checking for ftello64... no > checking for setluid... no > checking for getpwanam... no > checking for setlinebuf... no > checking for srandom... no > checking for random... no > checking for srand... no > checking for rand... no > checking for setenv... no > checking for usleep... no > checking for strcasecmp... no > checking for fcvt... no > check...
1999 Oct 26
0
Solaris 7 not compiling HEAD code
...king for fopen64... yes checking for atexit... yes checking for grantpt... yes checking for dup2... yes checking for lseek64... yes checking for ftruncate64... yes checking for fseek64... no checking for ftell64... no checking for setluid... no checking for yp_get_default_domain... yes checking for getpwanam... no checking for srandom... yes checking for random... yes checking for srand... yes checking for rand... yes checking for setenv... no checking for mmap64... yes checking for syscall... yes checking for _dup... yes checking for _dup2... yes checking for _opendir... yes checking for _readdir... y...
2001 Nov 07
1
Configuring 2.2.2 (or 2.0.7) on Digital Unix 4.0f fails - "No locking"
...it... yes checking for grantpt... yes checking for dup2... yes checking for lseek64... no checking for ftruncate64... no checking for readdir64... no checking for fseek64... no checking for fseeko64... no checking for ftell64... no checking for ftello64... no checking for setluid... no checking for getpwanam... no checking for setlinebuf... yes checking for srandom... yes checking for random... yes checking for srand... yes checking for rand... yes checking for setenv... yes checking for usleep... yes checking for strcasecmp... yes checking for fcvt... yes checking for fcvtl... no checking for symlink....
2002 Oct 21
1
compilation probs...
...texit... no checking for grantpt... no checking for dup2... no checking for lseek64... no checking for ftruncate64... no checking for readdir64... no checking for fseek64... no checking for fseeko64... no checking for ftell64... no checking for ftello64... no checking for setluid... no checking for getpwanam... no checking for setlinebuf... no checking for srandom... no checking for random... no checking for srand... no checking for rand... no checking for setenv... no checking for usleep... no checking for strcasecmp... no checking for fcvt... no checking for fcvtl... no checking for symlink... no che...
2002 Oct 29
1
Problem running ./configure
...texit... no checking for grantpt... no checking for dup2... no checking for lseek64... no checking for ftruncate64... no checking for readdir64... no checking for fseek64... no checking for fseeko64... no checking for ftell64... no checking for ftello64... no checking for setluid... no checking for getpwanam... no checking for setlinebuf... no checking for srandom... no checking for random... no checking for srand... no checking for rand... no checking for setenv... no checking for usleep... no checking for strcasecmp... no checking for fcvt... no checking for fcvtl... no checking for symlink... no che...
2003 Jun 02
2
./configure --with-pam fails allways
...k64 configure:5699: checking for ftruncate64 configure:5699: checking for readdir64 configure:5754: checking for fseek64 configure:5754: checking for fseeko64 configure:5754: checking for ftell64 configure:5754: checking for ftello64 configure:5754: checking for setluid configure:5754: checking for getpwanam configure:5754: checking for setlinebuf configure:5809: checking for srandom configure:5809: checking for random configure:5809: checking for srand configure:5809: checking for rand configure:5809: checking for setenv configure:5809: checking for usleep configure:5809: checking for strcasecmp confi...
2002 Nov 21
0
please can someone help me?
.... yes checking for grantpt... yes checking for dup2... yes checking for lseek64... yes checking for ftruncate64... yes checking for readdir64... no checking for fseek64... no checking for fseeko64... yes checking for ftell64... no checking for ftello64... yes checking for setluid... no checking for getpwanam... no checking for setlinebuf... no checking for srandom... yes checking for random... yes checking for srand... yes checking for rand... yes checking for setenv... no checking for usleep... yes checking for strcasecmp... yes checking for fcvt... yes checking for fcvtl... no checking for symlink......
2002 Jul 26
1
creating unicode_map.437 and unicode_map.ISO8859-1?
Hello, I am running HP-UX 11 with Samba 2.2.5 binaries for HPUX and I keep getting the error that Samba can't find the unicode_map.xxx file. Well, I notice that all I have in /usr/local/samba/lib/codepages is codepage type files, not unicode. Why do the binaries not include a compiled make_unicodemap? I did download the source and found the .c file for the command. When I try to run
2004 Dec 13
0
samba4 configure error
...... yes checking for realpath... yes checking for setpriv... no checking for setgidx... no checking for setuidx... no checking for setgroups... yes checking for sysconf... yes checking for mktime... yes checking for rename... yes checking for ftruncate... yes checking for setluid... no checking for getpwanam... no checking for setlinebuf... yes checking for srandom... yes checking for random... yes checking for srand... yes checking for rand... yes checking for setenv... yes checking for usleep... yes checking for strcasecmp... yes checking for fcvt... yes checking for fcvtl... no checking for symlink....
2002 Oct 11
0
[Fwd: samba-2.2.5 in Tru64 unix v4.0e]
...for lseek64... (cached) no checking for ftruncate64... (cached) no checking for readdir64... (cached) no checking for fseek64... (cached) no checking for fseeko64... (cached) no checking for ftell64... (cached) no checking for ftello64... (cached) no checking for setluid... (cached) no checking for getpwanam... (cached) no checking for setlinebuf... (cached) yes checking for srandom... (cached) yes checking for random... (cached) yes checking for srand... (cached) yes checking for rand... (cached) yes checking for setenv... (cached) yes checking for usleep... (cached) yes checking for strcasecmp... (ca...
2001 Jan 26
10
Please Help
I've downloaded the binary Samba 2.0.7 for AIX. I have no idea how to install this critter. Can anyone walk me thru this step by step? I think once i have it running, I'll be able to configure it based on the info at samba.org. It's just getting it running that troubles me. I have some experience with *nix, but not with compliling (sorry, no C compliler on system) and installing