diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-01-06 14:05:35 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-01-06 14:07:13 -0500 |
commit | fcc78e5f8a3249eadfea31db1aca6884b31c1873 (patch) | |
tree | 3a3d576693c151d6395d13579c88915416999056 /changes | |
parent | cf2ac8e2556849fdcace74adf36da876f86af30a (diff) | |
download | tor-fcc78e5f8a3249eadfea31db1aca6884b31c1873.tar.gz tor-fcc78e5f8a3249eadfea31db1aca6884b31c1873.zip |
Use package-config output for -lsystemd correctly
In systemd 209, they deprecated -lsystemd-daemon in favor of
-lsystemd. So we'd better actually look at the pkg-config output,
or we'll get warnings on newer distributions.
For some as-yet-unknown-to-me reason, setting CFLAGS so early makes
it so -O2 -g doesn't get added to it later. So, adding it myself
later. Perhaps a better fix here can be found.
Fixes 14072; bugfix on 0.2.6.2-alpha. Based on a patch from h.venev
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug14072 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/changes/bug14072 b/changes/bug14072 new file mode 100644 index 0000000000..c810616cc0 --- /dev/null +++ b/changes/bug14072 @@ -0,0 +1,3 @@ + o Minor bugfixes (build): + - Avoid warnings when building with systemd 209 or later. + Fixes bug 14072; bugfix on 0.2.6.2-alpha. Patch from "h.venev". |