Ticket #167 (closed defect: invalid)
config.mak, no '-lpulse'
| Reported by: | Huulivoide | Owned by: | |
|---|---|---|---|
| Priority: | low | Milestone: | |
| Component: | General | Version: | devel |
| Severity: | minor | Keywords: | |
| Cc: | Platform: | Linux |
Description
After running configure.sh config.mak
doesn't include -lpulse in it, even tought
--enable-pulse was passed. This breaks the
linking of the final binary
Change History
Note: See
TracTickets for help on using
tickets.
You've misunderstood the semantics of "--enable-pulse". For most of the configure options that are autodetected by default, --enable-x means manually forcing on the feature and disabling all autodetection code in the configure script, including code that would add any compiler flags. Thus, you need to manually specify any compiler flags such as "-lpulse" if you use --enable-pulse. "-lpulse" is missing because you used --enable-pulse. Probably you should simply not specify such --enable options and rely on autodetection.