summaryrefslogtreecommitdiffstats
path: root/src/OSSupport/Errors.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix android builds (#4432)Alexander Harkness2020-01-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Terminate android build script early if any step fails * Remove deprecated android types * Use android NDK cmake support rather than cmake android NDK support as that support is better supported * Android uses GNU strerror_r? * Fix compilation * Rebase * Fix final issues * Drop submodule changes * Revert change * Parentheses * Lower api levels * Don't use GNU strerror_r for Android Co-authored-by: Mat <mail@mathias.is>
* Updated links and docs (#3488)mathiascode2016-12-191-1/+1
|
* Use CMake's Android generators to crosscompileTiger Wang2016-12-121-1/+1
|
* Bulk clearing of whitespaceLogicParrot2016-02-051-9/+9
|
* Check for __GLIBC__ to detect correct strerror_r versionThomas Boerger2015-11-191-1/+1
|
* Added the _UNICODE flag on WindowsTiger Wang2015-09-261-1/+1
|
* Support building on FreeBSDlinnemannr2015-05-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | SetFlags.cmake Add -lexecinfo to linker flags for FreeBSD to resolve backtrace() lib/sqlite/CMakeLists.txt Define _XOPEN_SOURCE to 600 instead of __POSIX_VISIBLE to 200112 for POSIX 1-2001 support. For POSIX standards, the _XOPEN_SOURCE define controls the eventual value of __POSIX_VISIBLE. _XOPEN_SOURCE is defined to 500 in sqlite.c if not already defined, which sets up _POSIX_C_SOURCE and __POSIX_VISIBLE to the 199506 for POSIX.1c lib/tolua++/CMakeLists.txt src/CMakeLists.txt Add /usr/local/lib to the library search path for FreeBSD builds src/OSSupport/Errors.cpp Correct the strerror_r() implementation determination to check whether _GNU_SOURCE is defined, not what it evaluates to
* En masse NULL -> nullptr replaceTiger Wang2014-10-231-2/+2
|
* Style: Normalized to no spaces before closing parenthesis.madmaxoft2014-07-211-6/+6
|
* Style: Normalized spaces after if, for and while.madmaxoft2014-07-211-2/+2
|
* More fixes to get it to compile for me on Mac 10.9. Mostly just newline additions, but some of the unused variables were causing errors, so I wrapped them in #ifndef __APPLE__ calls, since I didn't know if they were going to be used in the future.Samuel Barney2014-03-251-1/+1
| | | | Also had to undefine TOLUA_TEMPLATE_BIND a couple of times.
* Switched cEvent to GetOSErrorStringTycho2014-01-251-0/+1
|
* Extracted cSocket::GetErrorString into GetOSErrorStringTycho2014-01-251-0/+52