Opened 15 years ago
Closed 15 years ago
#320 closed enhancement (fixed)
use `apr-config --link-libtool --libs`
Reported by: | Peter Johansson | Owned by: | Peter Johansson |
---|---|---|---|
Priority: | minor | Milestone: | svndigest 0.7 |
Component: | build | Version: | trunk |
Keywords: | Cc: |
Description
related to ticket:319
help output from apr-config v0.9.17 says
hen linking with libtool, an application should do something like: APR_LIBS="`apr-config --link-libtool --libs`" or when linking directly: APR_LIBS="`apr-config --link-ld --libs`"
and as we are indeed using libtool so we should use the option --link-libtool
. However, changing straight ahead makes the following svn test to fail.
Also, we should add the --libs
option (although these libs might not be needed for the functionality we are using (at least not yet))
Change History (2)
comment:1 Changed 15 years ago by
comment:2 Changed 15 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
The
--libs
option is not needed. Only libs used directly need to be added toLIBS
, because libtool takes care of adding secondary libs. Magic!