-
Notifications
You must be signed in to change notification settings - Fork 14
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
Miscellaneous patches #15
Comments
Sorry for my late response. I will look now your patches.Thanks. |
I applied fix-config_headers.patch and fix-getopt_long-delaration.patch. However, I must consider the fix-file-list-from-stdin.patch. If there is the daemon (which close stdin) do the following command.
If the 'file-list-from-stdin' feature is enabled, such the daemon try to read file list from stdin and does not achive. I think that it needs new command line option (-T like GNU tar)
What do you think about it? |
Hello. Apologies for the tardy reply, and thanks for applying the first two patches. Regarding the third, I think your approach sounds reasonable. I've honestly never used the feature myself (just posting as it seems to be a useful for others), so I'd defer to your expertise on the matter. Reusing -T from tar, which should be reasonably well recognized, seems like a good approach. Thanks again for your consideration on this. |
Hello. I'm assisting with packaging LHA for Gentoo and found a few issues that I wanted to call to your attention. Best I can tell these are not Gentoo-specific, so I thought it'd make sense to get them patched upstream.
I'm including patch files for each. Please forgive the manual approach to this - I'm not especially familiar with git and unsure how to submit a pull request.
fix-config_headers.patch
This updates AM_CONFIG_HEADER, which was deprecated by automake, with AC_CONFIG_HEADERS. Reference here:
https://www.gnu.org/software/automake/manual/automake.html
fix-getopt_long-delaration.patch
This updates the include syntax to support current versions of GCC, which requires using quotes to search for include files relative to the current file. The <> syntax only searches system directories now. Reference here:
https://gcc.gnu.org/onlinedocs/cpp/Search-Path.html
fix-file-list-from-stdin.patch
This re-enables support for specifying file lists via stdin, which was already present but disabled because it apparently doesn't work with mingw32. This patch detects whether mingw32 is being used and only then disables the code. No authoritative reference, but discussion here:
https://bugs.gentoo.org/184911
Please let me know if you need any additional info or I could assist further. Thanks!
The text was updated successfully, but these errors were encountered: