SDL packages are available in the following sites.

http://www.libsdl.org/
SDL-devel-1.2.14-VC8.zip
http://www.libsdl.org/projects/SDL_image/
SDL_image-devel-1.2.10-VC.zip
http://www.libsdl.org/projects/SDL_mixer/
SDL_mixer-devel-1.2.11-VC.zip
http://www.libsdl.org/projects/SDL_ttf/
SDL_ttf-devel-2.0.10-VC.zip

When compiling a program with Borland-C, an error occurs in SDL_config_win32.h
containing "long long" declaration that is not supported by the compiler.
To avoid this error, define "__DMC__" macro as follows.

> bcc32 -D__DMC__ -ISDL-1.2.14\include -LSDL-1.2.14\lib hoge.cpp SDL.bcc.lib

This will direct the compiler to include stdint.h in SDL's include directory
that contains appropriate declarations for Borland-C.
