-
Notifications
You must be signed in to change notification settings - Fork 112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: make libcheck fatal if missing with --with-check #255
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding [found_check=no]
and if test "x$found_check" = xno; then
for getting a AC_MSG_ERROR()
feels over complicated.
Complicated but this is the "correct" autoconf way to do it. |
On Wed, Jan 22, 2025 at 11:45:45AM -0800, Robin H. Johnson wrote:
Complicated but this is the "correct" autoconf way to do it.
Please add that insight to the commit message.
Groeten
Geert Stappers
Doesn't like single line commit messages.
--
Silence is hard to parse
|
Without this, trying to run `make check` after `configure --without-check` fails to link: `undefined reference to `srunner_create'` Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
9b9f173
to
6434c57
Compare
More details in the commit now |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK
|
On Thu, Jan 23, 2025 at 01:05:34PM -0800, Robin H. Johnson wrote:
> Strange:
You do have the `write` permission already
Ah, I see. And I will have a closer look when the oppurtunity rises.
Groeten
Geert Stappers
--
Silence is hard to parse
|
Without this, trying to run
make check
afterconfigure --without-check
fails to link:undefined reference to
srunner_create'`Signed-off-by: Robin H. Johnson robbat2@gentoo.org