Bug 705412
| Summary: | libtirpc-0.2.2-0.fc16 includes unresolved deps | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Nalin Dahyabhai <nalin> |
| Component: | libtirpc | Assignee: | Steve Dickson <steved> |
| Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | rawhide | CC: | 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: | |||
There's a package in koji that should fix this now: http://koji.fedoraproject.org/koji/buildinfo?buildID=249705 (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! |
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.