-
Notifications
You must be signed in to change notification settings - Fork 131
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
Available library/driver detection in ruby/GNUmakefile is unreliable #321
Comments
I wrote a patch to make higan use pkg-config, but it significantly slowed down the build process on FreeBSD so he declined to apply it to ares and did his own thing instead. That said, applications shouldn't link with |
You are right I forgot to install the devel package for libudev. |
I'd be willing to take a look at this if you could create a pull-request |
Isn't this issue fixed with be1f424 since two years? And regarding:
no problem here on FreeBSD ;) |
I realized when compiling ares on an opensuse tumbleweed machine that drivers are not being included. There seems to be a broad check in
ruby/GNUmakefile
withtest -e /usr/lib/lib$1.so
to check whether certain*.so
files are available.Unfortunately, this does not work like this on some distros. For example mylibudev
has the following full path:/usr/lib/libudev.so.1
.Maybe consider using
pkg-config
instead to do the detection?The text was updated successfully, but these errors were encountered: