# HG changeset patch # User Sam Lantinga # Date 1013975668 0 # Node ID c5010ab8ba35df46e6495f14e8cf05a1031be604 # Parent 0ddcea45d8298d6130645c2feaebf7db3b92d578 Added initial support for Atari (thanks Patrice!) diff -r 0ddcea45d829 -r c5010ab8ba35 CREDITS --- a/CREDITS Thu Feb 14 21:26:42 2002 +0000 +++ b/CREDITS Sun Feb 17 19:54:28 2002 +0000 @@ -19,11 +19,13 @@ * Patrick Trainor and Jim Boucher, for the QNX Neutrino port -* Hannu Viitala for the EPOC port +* Carsten Griwodz for the AIX port * Gabriele Greco, for the Amiga port -* Carsten Griwodz for the AIX port +* Patrice Mandin, for the Atari port + +* Hannu Viitala for the EPOC port * Peter Valchev for nagging me about the OpenBSD port until I got it right. :) diff -r 0ddcea45d829 -r c5010ab8ba35 Makefile.am --- a/Makefile.am Thu Feb 14 21:26:42 2002 +0000 +++ b/Makefile.am Sun Feb 17 19:54:28 2002 +0000 @@ -28,6 +28,7 @@ README.Epoc \ README.MacOS \ README.MacOSX \ + README.MiNT \ README.NanoX \ README.OpenBSD \ README.QNX \ diff -r 0ddcea45d829 -r c5010ab8ba35 README --- a/README Thu Feb 14 21:26:42 2002 +0000 +++ b/README Sun Feb 17 19:54:28 2002 +0000 @@ -17,8 +17,8 @@ The current version supports Linux, Windows, BeOS, MacOS, MacOS X, FreeBSD, BSD/OS, Solaris, and IRIX. The code contains support for -Windows CE, OpenBSD, NetBSD, AIX, OSF/Tru64, and QNX, but these are -not yet officially supported. +Atari, Windows CE, OpenBSD, NetBSD, AIX, OSF/Tru64, and QNX, but these +are not yet officially supported. This library is distributed under GNU LGPL version 2, which can be found in the file "COPYING". This license allows you to use SDL diff -r 0ddcea45d829 -r c5010ab8ba35 README.MiNT --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README.MiNT Sun Feb 17 19:54:28 2002 +0000 @@ -0,0 +1,80 @@ + +============================================================================== +Using the Simple DirectMedia Layer on Atari +============================================================================== + +============================================================================== +I. Building the Simple DirectMedia Layer libraries: + (This step isn't necessary if you have the SDL binary distribution) + + Do the classic configure, with --disable-shared --enable-static and: + + Tos version (should run everywhere): + --disable-audio --disable-threads + Tos does not support threads, so can not support audio, maybe in a future + version audio support will be added via interrupts. + + MiNT version (maybe Magic, only for multitasking OS): + --disable-pthreads --enable-pth + Mint and Magic may supports threads, so audio can be used with current + devices, like Sun audio, or disk-writing support. Like Tos, interrupt + audio without threads is more suited for Atari machines. + + Then you can make ; make install it. + +============================================================================== +II. Building the Simple DirectMedia Layer test programs: + + Do the classic configure, then make. + + Run them ! + +============================================================================== +III. Enjoy! :) + + If you have a project you'd like me to know about, or want to ask questions, + go ahead and join the SDL developer's mailing list by sending e-mail to: + + sdl-request@libsdl.org + + and put "subscribe" into the subject of the message. Or alternatively you + can use the web interface: + + http://www.libsdl.org/mailman/listinfo/sdl + +============================================================================== +IV. What is supported: + +Keyboard (GEMDOS, BIOS, Ikbd) +Mouse (XBIOS, GEM, Ikbd) +Video (XBIOS (Fullscreen), GEM (Windowed and Fullscreen)) +Timer (VBL vector) + +- What is missing: +Audio support (TOS) +CDROM support (Metados, /dev/cdrom) +Joystick and joypad support (Hardware) +Threads support (TOS) + +- Driver combinations: +Video Kbd Mouse Timer +xbios ikbd ikbd vbl +xbios gemdos xbios vbl +xbios bios xbios vbl +gem gem gem vbl + +============================================================================== +V. Environment variables: + +SDL_ATARI_EVENTSDRIVER + Set to 'ikbd' to force IKBD 6301 keyboard driver + Set to 'gemdos' to force gemdos keyboard driver + Set to 'bios' to force bios keyboard driver + +SDL_VIDEODRIVER: + Set to 'xbios' to force xbios video driver + Set to 'gem' to force gem video driver + +-- +Patrice Mandin +http://www.multimania.com/pmandin diff -r 0ddcea45d829 -r c5010ab8ba35 configure.in --- a/configure.in Thu Feb 14 21:26:42 2002 +0000 +++ b/configure.in Sun Feb 17 19:54:28 2002 +0000 @@ -909,6 +909,49 @@ fi } +dnl Set up the Atari Xbios driver +CheckAtariXbiosVideo() +{ + AC_ARG_ENABLE(xbios, +[ --enable-video-xbios use Atari Xbios video driver [default=yes]], + , enable_video_xbios=yes) + video_xbios=no + if test x$enable_video = xyes -a x$enable_video_xbios = xyes; then + video_xbios=yes + CFLAGS="$CFLAGS -DENABLE_XBIOS" + VIDEO_SUBDIRS="$VIDEO_SUBDIRS xbios" + VIDEO_DRIVERS="$VIDEO_DRIVERS xbios/libvideo_xbios.la" + fi +} + +dnl Set up the Atari Gem driver +CheckAtariGemVideo() +{ + AC_ARG_ENABLE(gem, +[ --enable-video-gem use Atari Gem video driver [default=yes]], + , enable_video_gem=yes) + if test x$enable_video = xyes -a x$enable_video_gem = xyes; then + video_gem=no + AC_CHECK_HEADER(gem.h, have_gem_hdr=yes) + AC_CHECK_LIB(gem, appl_init, have_gem_lib=yes) + if test x$have_gem_hdr = xyes -a x$have_gem_lib = xyes; then + video_gem=yes + CFLAGS="$CFLAGS -DENABLE_GEM" + SYSTEM_LIBS="$SYSTEM_LIBS -lgem" + VIDEO_SUBDIRS="$VIDEO_SUBDIRS gem" + VIDEO_DRIVERS="$VIDEO_DRIVERS gem/libvideo_gem.la" + fi + fi +} + +dnl Set up the Atari Bios keyboard driver +CheckAtariBiosEvent() +{ + CFLAGS="$CFLAGS -I\$(top_srcdir)/src/video/ataricommon" + VIDEO_SUBDIRS="$VIDEO_SUBDIRS ataricommon" + VIDEO_DRIVERS="$VIDEO_DRIVERS ataricommon/libvideo_ataricommon.la" +} + dnl rcg04172001 Set up the Null video driver. CheckDummyVideo() { @@ -2165,6 +2208,57 @@ SDL_CFLAGS="$SDL_CFLAGS -F/System/Library/Frameworks/Carbon.framework -F/System/Library/Frameworks/Cocoa.framework" SDL_LIBS="-lSDLmain $SDL_LIBS -framework Carbon -framework Cocoa" ;; + *-*-mint*) + ARCH=mint + CheckDummyVideo + CheckDiskAudio + CheckAtariBiosEvent + CheckAtariXbiosVideo + CheckAtariGemVideo + CheckPTH + # Set up files for the main() stub + COPY_ARCH_SRC(src/main, linux, SDL_main.c) + # Set up files for the audio library + if test x$enable_audio = xyes; then + AUDIO_SUBDIRS="$AUDIO_SUBDIRS sun" + AUDIO_DRIVERS="$AUDIO_DRIVERS sun/libaudio_sun.la" + fi + # Set up files for the joystick library + # (No joystick support yet) + if test x$enable_joystick = xyes; then + JOYSTICK_SUBDIRS="$JOYSTICK_SUBDIRS dummy" + JOYSTICK_DRIVERS="$JOYSTICK_DRIVERS dummy/libjoystick_dummy.la" + fi + # Set up files for the cdrom library + if test x$enable_cdrom = xyes; then + CDROM_SUBDIRS="$CDROM_SUBDIRS dummy" + CDROM_DRIVERS="$CDROM_DRIVERS dummy/libcdrom_dummy.la" + fi + # Set up files for the thread library + if test x$enable_threads = xyes; then + if test x$enable_pth = xyes; then + COPY_ARCH_SRC(src/thread, pth, SDL_systhread.c) + COPY_ARCH_SRC(src/thread, pth, SDL_systhread_c.h) + else + COPY_ARCH_SRC(src/thread, generic, SDL_systhread.c) + COPY_ARCH_SRC(src/thread, generic, SDL_systhread_c.h) + fi + COPY_ARCH_SRC(src/thread, generic, SDL_sysmutex.c) + COPY_ARCH_SRC(src/thread, generic, SDL_sysmutex_c.h) + COPY_ARCH_SRC(src/thread, linux, SDL_syssem.c) + COPY_ARCH_SRC(src/thread, generic, SDL_syssem_c.h) + COPY_ARCH_SRC(src/thread, generic, SDL_syscond.c) + COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) + fi + # Set up files for the timer library + if test x$enable_timers = xyes; then + COPY_ARCH_SRC(src/timer, mint, SDL_systimer.c) + COPY_ARCH_SRC(src/timer, mint, SDL_vbltimer.S) + COPY_ARCH_SRC(src/timer, mint, SDL_vbltimer_s.h) + fi + # MiNT does not define "unix" + CFLAGS="$CFLAGS -Dunix" + ;; *) AC_MSG_ERROR(Unsupported target: Please add to configure.in) ;; @@ -2185,6 +2279,7 @@ AM_CONDITIONAL(TARGET_MACOS, test $ARCH = macos) AM_CONDITIONAL(TARGET_MACOSX, test $ARCH = macosx) AM_CONDITIONAL(TARGET_QNX, test $ARCH = qnx) +AM_CONDITIONAL(TARGET_MINT, test $ARCH = mint) # Set conditional variables for shared and static library selection. # These are not used in any Makefile.am but in sdl-config.in. @@ -2318,10 +2413,14 @@ src/video/photon/Makefile src/video/epoc/Makefile src/video/dummy/Makefile +src/video/ataricommon/Makefile +src/video/xbios/Makefile +src/video/gem/Makefile src/events/Makefile src/joystick/Makefile src/joystick/amigaos/Makefile src/joystick/beos/Makefile +src/joystick/bsd/Makefile src/joystick/darwin/Makefile src/joystick/dummy/Makefile src/joystick/linux/Makefile diff -r 0ddcea45d829 -r c5010ab8ba35 docs.html --- a/docs.html Thu Feb 14 21:26:42 2002 +0000 +++ b/docs.html Sun Feb 17 19:54:28 2002 +0000 @@ -16,6 +16,7 @@ Major changes since SDL 1.0.0: