Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Build: add FreeBSD & libc++ compilation support (#288) | Jan Engelhardt | 2023-12-31 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | * build: add FreeBSD compilation support * build: unbreak compilation with clang libc++ unary_function is obsolete with C++11 and removed in C++17. gnu-gcc-libstdc++ still has the class, but llvm-clang-libc++ does not, and there is a compile error. vmime should have just stopped using unary_function with commit v0.9.2-48-g8564b2f8. $ cat x.cpp $ clang++ -std=c++17 -stdlib=libc++ -c x.cpp In file included from x.cpp:1: In file included from /usr/local/include/vmime/net/transport.hpp:34: In file included from /usr/local/include/vmime/net/service.hpp:36: In file included from /usr/local/include/vmime/net/session.hpp:40: In file included from /usr/local/include/vmime/utility/url.hpp:30: /usr/local/include/vmime/propertySet.hpp:339:33: error: no template named /'unary_function' in namespace 'std'; did you mean '__unary_function'? class propFinder : public std::unary_function <shared_ptr <property>, bool> { ~~~~~^~~~~~~~~~~~~~ __unary_function | ||||
* | Build: add Solaris compilation support (#282) | Jan Engelhardt | 2023-11-09 | 1 | -0/+1 |
| | |||||
* | #193 Dropped support for boot::shared_ptr<>, enabled C++11 support in CMake | Vincent Richard | 2018-04-01 | 26 | -551/+0 |
| | |||||
* | Fixed #177: thread id on OpenBSD. | Vincent Richard | 2017-08-09 | 1 | -0/+1 |
| | |||||
* | Fixed #171: cross-compiling detection. | Vincent Richard | 2017-05-04 | 1 | -3/+3 |
| | |||||
* | Removed unused VMIME_TARGET_* defines. | Vincent Richard | 2017-04-26 | 1 | -4/+0 |
| | |||||
* | Remove target architecture detection. | 0xd34df00d | 2017-04-09 | 1 | -136/+0 |
| | |||||
* | Fixed #142: fixed install location of generated headers. | Vincent Richard | 2016-09-19 | 1 | -1/+1 |
| | |||||
* | Issue #138: fixed MSG_NOSIGNAL on Mac OS. | Vincent Richard | 2016-04-25 | 1 | -0/+2 |
| | |||||
* | Misc fixes in error handling. | Vincent Richard | 2016-03-25 | 1 | -0/+1 |
| | |||||
* | Asynchronous resolving. | Vincent Richard | 2016-03-02 | 1 | -0/+1 |
| | |||||
* | Added support for TCP Keepalive. | Vincent Richard | 2016-02-28 | 1 | -0/+1 |
| | |||||
* | Windows charset converter (thanks to ElmüSoft). | Vincent Richard | 2014-02-06 | 1 | -0/+1 |
| | |||||
* | Merged source and header files in directory structure. Got rid of SConstruct ↵ | Vincent Richard | 2013-12-29 | 1 | -2/+2 |
| | | | | build. | ||||
* | Boost/C++11 shared pointers. | Vincent Richard | 2013-11-21 | 27 | -0/+553 |
| | |||||
* | Added support for standard 64-bit integer type. | Vincent Richard | 2013-09-02 | 1 | -0/+5 |
| | |||||
* | 64-bit type detection. | Vincent Richard | 2013-07-15 | 1 | -0/+3 |
| | |||||
* | Export class and functions in shared libraries. | Vincent Richard | 2013-05-12 | 1 | -0/+3 |
| | |||||
* | Added support for charset conversion with ICU (thanks to Mehmet Bozkurt). | Vincent Richard | 2013-03-25 | 2 | -0/+318 |
| | |||||
* | Check for MLang on Windows platform. | Vincent Richard | 2013-02-10 | 1 | -0/+1 |
| | |||||
* | Check for localtime_r and gmtime_r at build instead of testing _REENTRANT. ↵ | Vincent Richard | 2013-02-05 | 1 | -0/+4 |
| | | | | Use localtime_s and gmtime_s on Windows, if available. | ||||
* | Trivial 64-bit warning fixes. | Vincent Richard | 2012-12-12 | 1 | -0/+2 |
| | |||||
* | OpenSSL support (thanks to Mehmet Bozkurt). | Vincent Richard | 2012-11-03 | 1 | -0/+4 |
| | |||||
* | Migrated build system to CMake. Conditional file compilation. Automatic ↵ | Vincent Richard | 2012-11-01 | 6 | -0/+361 |
selection of platform handler. |