Re: problems with libsavi on hp-ux 11.00
Lars Hecking <[email protected]>
| Newsgroups | gmane.comp.security.virus.vtools |
|---|---|
| Message-ID | <[email protected]> |
[email protected] writes: > Hello Lars, > I think that you mean this part: Precisely :-) > configure:4070: checking for location of libsavi > configure:4080: result: /usr/local/lib/ > configure:4089: checking for SAVIsweepFile in -lsavi > configure:4120: gcc -o conftest -g -O2 -Wall -Wl,-rpath,/usr/local/lib/ > -L/usr > /local/lib/ conftest.c -lsavi -lrt >&5 > /usr/ccs/bin/ld: Unrecognized argument: -rpath Here's the problem: the linker doesn't recognise the -rpath option. This linker command line should probably be either gcc -o ... -rpath /usr/local/lib -L/usr/local/lib ... or gcc -o ... -R /usr/local/lib -L/usr/local/lib ... Not having access to HP-UX 11.x, I can't say which. Looks like the section in configure that sets LDrpath needs to be adjusted.