|
Bugzilla – Full Text Bug Listing |
| Summary: | Sudo 1.8.3p1 for ppc build fails on libsudoers.a | ||
|---|---|---|---|
| Product: | Sudo | Reporter: | vinay.hunsur |
| Component: | Configure | Assignee: | Todd C. Miller <Todd.Miller> |
| Status: | RESOLVED INVALID | ||
| Severity: | normal | ||
| Priority: | low | ||
| Version: | 1.8.3 | ||
| Hardware: | Other | ||
| OS: | Linux | ||
| Attachments: | config.log file | ||
|
Description
vinay.hunsur
2011-12-19 08:27:56 MST
It sounds like your system has dlopen() but libtool doesn't recognize it. Can you attach the config.log file? Created attachment 325 [details]
config.log file
Find the config.log file.
The problem is that libtool doesn't think that shared libraries are supported (which is incorrect). configure:13392: checking if libtool supports shared libraries configure:13394: result: no configure:13397: checking whether to build shared libraries configure:13418: result: no ... This is probably because you didn't specify the host operating system. You probably want something along the lines of --host powerpc-montavista-linux If that doesn't help, you can just build sudo without shared object support by passing configure the --disable-shared option which will just build a static version of sudo without plugin support. Incomplete --host argument was specified. Sudo 1.8.4 and higher will error out in configure if the system dlopen status conflicts with what libtools know about. |