Error trying to install Qxt to send email

I need to use the module QxtSMTPto send email through Qt. I downloaded the package from here . In accordance with the instructions I did .configureand make. At the time, make installhe threw an error - (OS X, 10.10)

/Users/Cupidvogel/Desktop/mail/libqxt-master/src/core/qxtglobal.cpp:201: Undocumented parameter 'PUB' in QXT_P()
/Users/Cupidvogel/Desktop/mail/libqxt-master/src/core/qxtglobal.cpp:201: No such parameter 'QXT_DECLARE_PUBLIC' in QXT_P()
qdoc3(31442,0x7fff79948300) malloc: *** error for object 0x1109c1a40: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug
/bin/sh: line 1: 31442 Abort trap: 6 ( QXT_SOURCE_TREE=/Users/Cupidvogel/Desktop/mail/libqxt-master QXT_BUILD_TREE=/Users/Cupidvogel/Desktop/mail/libqxt-master /Users/Cupidvogel/Desktop/mail/libqxt-master/tools/3rdparty/qdoc3/qdoc3 -DQXT_DOXYGEN_RUN /Users/Cupidvogel/Desktop/mail/libqxt-master/doc/src/qxt.qdocconf )
make: *** [adp_docs] Error 134

As a result, I cannot install the libraries. How to fix it?

And secondly, I need the header files and libraries needed to send email. I do not want to do this with a README file, setting up the Qxt and CONFIG variables . So which libraries do I need to link?

+4
source share
1 answer

Qxt CONFIG, .

src/network/qxtsmtp.h src/network/qxtsmtp.cpp ( ). , 2 qxt. src/network/qxtsmtp.h #include "qxtglobal.h" #include "qxtmailmessage.h".

, SMTP- . .

MailCore. MacOS: https://github.com/MailCore/mailcore2/blob/master/build-mac/README.md

+1

All Articles