summaryrefslogtreecommitdiffstats
path: root/src/OSSupport/Errors.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-09-26Added the _UNICODE flag on WindowsTiger Wang1-1/+1
2015-05-25Support building on FreeBSDlinnemannr1-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
2014-10-23En masse NULL -> nullptr replaceTiger Wang1-2/+2
2014-10-20En masse NULL -> nullptr replaceTiger Wang1-2/+2
2014-07-21Style: Normalized to no spaces before closing parenthesis.madmaxoft1-6/+6
2014-07-21Style: Normalized spaces after if, for and while.madmaxoft1-2/+2
2014-03-25More 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 Barney1-1/+1
Also had to undefine TOLUA_TEMPLATE_BIND a couple of times.
2014-01-25Switched cEvent to GetOSErrorStringTycho1-0/+1
2014-01-25Extracted cSocket::GetErrorString into GetOSErrorStringTycho1-0/+52