-
Notifications
You must be signed in to change notification settings - Fork 68
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
Hello, has anyone compiled the latest version of the library for Mac Os ? #161
Comments
At this time, please edit
I will update the configure when get some time. Thanks |
Hello, thanks for replying, now I get this error: main.c:964:21: error: call to undeclared function 'show_mime_types'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] |
You are compiling without OpenSSL, the most SMTP servers require authentication, so the program will not be that useful if compiled without OpenSSL. Anyway, this function was mistakenly inside HAVE_OPENSSL define. Edit mailsend.h and take the function show_mime_tyhpes() out of HAVE_OPENSSL block, like
Thanks. |
Hello , is that when I try to compile openSSL in static mode on Mac , ./config --prefix=/path/ssl110istatic -static I get the following error: ld: library not found for -lcrt0.o |
Please link with dynamic OpenSSL libs. Static linking in MacOS is not feasible. -static is used only for kernel in MacOS. Thanks. |
I try to compile it and I get the following error:
mutils_time.c:26:8: error: call to undeclared function 'gettimeofday'
The text was updated successfully, but these errors were encountered: