-
-
Notifications
You must be signed in to change notification settings - Fork 107
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
3ds-curl not working for ftp URLs #130
Comments
On 3DS, we implement select (which is an obsolete deprecated API btw) with poll, so switching that up would accomplish nothing (if all, it would make it worse). |
Ok, so the define HAVE_POLL_FINE breaks something else on the 3DS. Anyways, getting rid of this define fixes curl for ftp URLs |
Just opened a PR: #131 |
This is working with latest libs. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The current version of 3ds-curl will always exit with "select/poll error" when trying to download ftp urls. This can be fixed by removing "#define HAVE_POLL_FINE 1" in file lib/curl_config.h, line 540 after executing ./configure and before executing make.
Seems like the poll() implementation is buggy on the 3DS and curl should rather rely on select().
The text was updated successfully, but these errors were encountered: