summaryrefslogtreecommitdiff
path: root/src/unix/system.c
AgeCommit message (Collapse)Author
2013-09-03Add experimental SDL 2 backend.Andrey Nazarov
2013-04-12Allow fixed linking to LIBGL/LIBAL.Andrey Nazarov
Also check that all core functions are present when doing dynamic linking to improve robustness.
2013-01-18Fix listing of POSIX symlinks.Andrey Nazarov
2013-01-15Make some variables static.Andrey Nazarov
2012-11-12Be more verbose about game library loading.Andrey Nazarov
Print complete error message if Sys_LoadLibrary fails. Also print where the server attempts to load game library from.
2012-08-12Minimize work done in signal handlers.Andrey Nazarov
In particular, don't make any X11 calls to avoid deadlock if interrupted within libX11.
2012-08-12Split TTY code into separate file.Andrey Nazarov
2012-08-05Rename Com_IsDedicated() to COM_DEDICATED.Andrey Nazarov
2012-08-03Try to avoid calling stat() when listing files.Andrey Nazarov
2012-07-27Fix wrong TTY flags being cleared.Andrey Nazarov
2012-07-25Fix arithmetic on void pointers.Andrey Nazarov
2012-07-25Update GPLv2 text and headers.Andrey Nazarov
Sync with http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
2012-07-24Rework source tree layout.Andrey Nazarov
Instead of having a mix of semi-randomly prefixed .c and .h files at src/, split the sources and public headers into src/ and inc/ directories. Further partition them down per subsystem. Add include guards to public headers. Split some headers into multiple ones.