- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- where is the getspnam?
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2005 12:33 AM
01-09-2005 12:33 AM
I have installed the shadow password depot downloaded from software.hp.com.
Solved! Go to Solution.
- Tags:
- getspnam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2005 11:55 AM
01-09-2005 11:55 AM
Re: where is the getspnam?
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2005 09:10 PM
01-10-2005 09:10 PM
Re: where is the getspnam?
checking for getspnam... no
checking for getspnam in -lshadow... no
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2005 10:29 PM
01-10-2005 10:29 PM
Re: where is the getspnam?
/usr/ccs/bin/ld: Unsatisfied symbols:
getspnam (first referenced in pure-pwconvert.o) (code)
collect2: ld returned 1 exit status
*** Error exit code 1
Stop.
The output of "ar -t /usr/lib/libsec.a" is:
accept_pw.o
authcap.o
data.o
discr.o
fields.o
getdvagent.o
getpasswd.o
getprdfent.o
getprpwent.o
getprtcent.o
getspwent.o
identity.o
iscomsec.o
secdef.o
map_ids.o
passlen.o
putspent.o
putspwent.o
randomword.o
seed.o
tod.o
getspent.o
write_sec.o
thread.o
fgetprpwent.o
fgetpw_sec.o
libsec_cs.2_vers.o
I can not find the getspnam.o
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2005 11:23 PM
01-10-2005 11:23 PM
Re: where is the getspnam?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2005 11:42 PM
01-10-2005 11:42 PM
Re: where is the getspnam?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2005 01:32 AM
01-11-2005 01:32 AM
Solutionif test "${ac_cv_lib_shadow_getspnam+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lsec $LIBS"
cat >conftest.$ac_ext <<_ACEOF
/* confdefs.h. */
You must also change configure around line 11597 to look like this ...
int
main ()
{
return f != getspnam;
;
return 0;
}
_ACEOF
LIBS="-lsec $LIBS"
cp conftest.$ac_ext fred.c
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
I've added the LIBS line. This makes configure run correctly, but as I don't have a secure system, I can't tell if it actually compiles! :)
See how you get on with that, and post any errors you get.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2005 01:36 AM
01-11-2005 01:36 AM
Re: where is the getspnam?
cp conftest.$ac_ext fred.c
isn't necessary, I was just trying to see what it was trying to compile.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2005 02:00 AM
01-11-2005 02:00 AM