-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
bump(main/dnsutils): 9.20.4 #23013
base: master
Are you sure you want to change the base?
bump(main/dnsutils): 9.20.4 #23013
Conversation
MrAdityaAlok
commented
Jan 23, 2025
- bump(main/dnsutils): 9.20.4
- addpkg(main): liburcu
10b439e
to
4d6f0fe
Compare
Signed-off-by: Aditya Alok <[email protected]>
- Required by `dnsutils` since version 9.20.4 Signed-off-by: Aditya Alok <[email protected]>
4d6f0fe
to
74c3153
Compare
@Grimler91 Please review. |
make -C bin/nsupdate install | ||
termux_step_post_configure() { | ||
# Android linker is unable to driectly reslove versoined libraries. | ||
# This will create a symlink to versoined library via `libname.so`. |
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.
nit: typos, you type too fast I guess :D
driectly
-> directly
reslove
-> resolve
versoined
-> versioned
(in two places)
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.
😅
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.
Fixing it...
termux_step_post_configure() { | ||
# Android linker is unable to driectly reslove versoined libraries. | ||
# This will create a symlink to versoined library via `libname.so`. | ||
sed -i 's|library_names_spec=.*|library_names_spec="\\\$libname\\\$release\\\$shared_ext \\\$libname\\\$shared_ext"|g' ./libtool |
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.
Hmm, why is this needed? The linuxandroid case in libtool.m4 already contains exactly this spec:
linux*android*)
version_type=none # Android doesn't support versioned libraries.
need_lib_prefix=no
need_version=no
library_names_spec='$libname$release$shared_ext $libname$shared_ext'
is it matching and using another case?
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.
Weird....
I do not have ($libname$shared_ext
) in library_names_spec
locally.
Which version did you check?