aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2012-10-03minor macro cleanupRobin Haberkorn3-8/+11
2012-10-02added text layers based on SDL_ttfRobin Haberkorn8-48/+329
2012-10-01C linkage cleanupRobin Haberkorn1-1/+14
* decleared main() with C linkage since it might be renamed to SDL_main and libSDLmain's startup code expects C linkage * use a custom atexit() handler since SDL_Quit() calling conventions might differ from standard C calling conventions
2012-10-01fixed MinGW SDL stdio redirection issueRobin Haberkorn1-6/+19
instead of trying to reopen stdout and stderr, we ensure that stdio redirection is not initialized in the first place. * the workaround code could be in a separate C or C++ file but that would require conditional compilation and linking and therefore a new Automake conditional
2012-09-29minor automake refactoringRobin Haberkorn1-5/+4
2012-09-29link with gcc frontend to avoid having to link against libc explicitlyRobin Haberkorn1-2/+3
since this differs on MinGW
2012-09-28include some autoconf info stuff in helpRobin Haberkorn1-5/+12
2012-09-28fixed using compat/ headers if BSD headers are not detected during configureRobin Haberkorn1-0/+5
could have also used HAVE_BSD_SYS_QUEUE_H define but setting up the build system appropriately is cleaner
2012-09-28fixed compiling and linking (compile with -Wall, link without libstdc++)Robin Haberkorn1-1/+4
2012-09-28include config.hRobin Haberkorn6-0/+24
2012-09-28autotools based build systemRobin Haberkorn13-0/+1494