Bug 705412

Summary: libtirpc-0.2.2-0.fc16 includes unresolved deps
Product: [Fedora] Fedora Reporter: Nalin Dahyabhai <nalin>
Component: libtirpcAssignee: Steve Dickson <steved>
Status: CLOSED RAWHIDE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: medium Docs Contact:
Priority: medium    
Version: rawhideCC: jlayton, steved
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: libtirpc-0.2.2-1.fc16 Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2011-06-30 18:07:55 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Nalin Dahyabhai 2011-05-17 15:45:50 UTC
Description of problem:
When I attempt to link a sample program using libtirpc 0.2.2, I get an unresolved reference to _des_crypt_call.

Version-Release number of selected component (if applicable):
0.2.2-0.fc16

How reproducible:
Always

Steps to Reproduce:
1. cat > deps.c << EOF
#include <sys/types.h>
#include <stdio.h>
#include <string.h>
#include <rpc/xdr.h>

int
main(int argc, char **argv)
{
	XDR x;
	memset(&x, 0, sizeof(x));
	xdrstdio_create(&x, stdout, XDR_ENCODE);
	return 0;
}
EOF
2. gcc -o deps deps.c `pkg-config --cflags --libs libtirpc`
  
Actual results:
/lib/../lib64/libtirpc.so: undefined reference to `_des_crypt_call'
collect2: ld returned 1 exit status

Expected results:
Successful link.

Comment 1 Jeff Layton 2011-06-21 20:06:47 UTC
There's a package in koji that should fix this now:

http://koji.fedoraproject.org/koji/buildinfo?buildID=249705

Comment 2 Nalin Dahyabhai 2011-06-30 18:07:55 UTC
(In reply to comment #1)
> There's a package in koji that should fix this now:
> 
> http://koji.fedoraproject.org/koji/buildinfo?buildID=249705

Yes, I can confirm that this fixes my problem.  Thanks!