We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
AIX neither has vsyslog nor vsyslog_r.
ld: 0711-317 ERROR: Undefined symbol: .vsyslog_r
This happens with 4.0.0 as well as 3.9.2 and likely others. Adding the following to crypto/cryptlib.c worked for me:
#ifdef _AIX #ifdef HAVE_SYSLOG void vsyslog(int facility_priority, const char *format, va_list arglist) { char *msg = NULL; vasprintf(&msg, format, arglist); if (!msg) return; syslog(facility_priority, "%s", msg); free(msg); } #endif /* HAVE_SYSLOG */ void vsyslog_r(int pri, struct syslog_data *data, const char *fmt, va_list ap) { vsyslog(pri, fmt, ap); } #endif /* AIX */
The text was updated successfully, but these errors were encountered:
No branches or pull requests
AIX neither has vsyslog nor vsyslog_r.
This happens with 4.0.0 as well as 3.9.2 and likely others. Adding the following to crypto/cryptlib.c worked for me:
The text was updated successfully, but these errors were encountered: