[rtorrent] Update global CFLAGS/CXXFLAGS/LIBS at the end of configure.ac#120
Open
zetafunction wants to merge 1 commit into
Open
[rtorrent] Update global CFLAGS/CXXFLAGS/LIBS at the end of configure.ac#120zetafunction wants to merge 1 commit into
zetafunction wants to merge 1 commit into
Conversation
Changes to CFLAGS/CXXFLAGS/LIBS affect following lines in configure.ac. As originally written, this would cause random libraries, such as libtorrent, to be linked into the autoconf test program. Occasionally, this would cause the things like the pkgconfig checks to fail with mysterious linker errors (e.g. pyroscope#76). Instead, only populate these global flags with the additional flags for dependencies at the very end, before the invocation of AC_OUTPUT.
9fb9d88 to
443d3c1
Compare
zetafunction
commented
Jan 14, 2019
| +++ b/configure.ac | ||
| @@ -42,10 +42,6 @@ | ||
| PKG_CHECK_MODULES([CPPUNIT], [cppunit],, [no_cppunit="yes"]) | ||
| PKG_CHECK_MODULES([DEPENDENCIES], [libtorrent >= 0.13.7]) |
Author
There was a problem hiding this comment.
I checked that this patch applies successfully against both 0.13.6/0.9.6 and 0.13.7/0.9.7, but I'm happy to change this if you want.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes to CFLAGS/CXXFLAGS/LIBS affect following lines in configure.ac.
As originally written, this would cause random libraries, such as
libtorrent, to be linked into the autoconf test program. Occasionally,
this would cause the things like the pkgconfig checks to fail with
mysterious linker errors (e.g. #76).
Instead, only populate these global flags with the additional flags for
dependencies at the very end, before the invocation of AC_OUTPUT.
This is a followup to #118 and fixes the root cause of random autoconf failures.
config.log for XMLRPC-C check before this change:
config.log for XMLRPC-C check after this change:
This is a separate patch file from
rt-base-cppunit-pkgconfig.patch, since that patch file is no longer needed in rtorrent 0.9.7 and later.