comparison configure.in @ 1035:974ba6ae0fa3

Date: Wed, 26 Jan 2005 13:37:09 GMT From: Peter Naulls Subject: RISC OS SDL Patches Sam, I've attached a diff of the latest changes to libSDL for RISC OS support. These changes are by Alan Buckley and myself. The most significant of these are: Optimised assembler blit rountines - I've attached the file src/video/riscos/SDL_riscosASM.s which is needed for this. Move to using /dev/dsp instead of its own audio implementation. This means that src/audio/riscos/SDL_drenderer.c should be removed Typo fixes. Mainly correct spelling of "RISC OS", but some from elsewhere too.
author Sam Lantinga <slouken@libsdl.org>
date Sat, 12 Feb 2005 18:01:31 +0000
parents cca9aeb2934f
children ffaaf7ecf685
comparison
equal deleted inserted replaced
1034:2eca15c3f609 1035:974ba6ae0fa3
2642 fi 2642 fi
2643 fi 2643 fi
2644 # MiNT does not define "unix" 2644 # MiNT does not define "unix"
2645 CFLAGS="$CFLAGS -Dunix" 2645 CFLAGS="$CFLAGS -Dunix"
2646 ;; 2646 ;;
2647 *-*-riscos) 2647 *-riscos)
2648 ARCH=riscos 2648 ARCH=riscos
2649 # Set up files for the video library 2649 # Set up files for the video library
2650 if test x$enable_video = xyes; then 2650 if test x$enable_video = xyes; then
2651 VIDEO_SUBDIRS="$VIDEO_SUBDIRS riscos" 2651 VIDEO_SUBDIRS="$VIDEO_SUBDIRS riscos"
2652 VIDEO_DRIVERS="$VIDEO_DRIVERS riscos/libvideo_riscos.la" 2652 VIDEO_DRIVERS="$VIDEO_DRIVERS riscos/libvideo_riscos.la"
2653 fi 2653 fi
2654 # Set up files for the audio library 2654 # Set up files for the audio library
2655 if test x$enable_audio = xyes; then 2655 if test x$enable_audio = xyes; then
2656 AUDIO_SUBDIRS="$AUDIO_SUBDIRS riscos" 2656 CFLAGS="$CFLAGS -DOSS_SUPPORT"
2657 AUDIO_DRIVERS="$AUDIO_DRIVERS riscos/libaudio_riscos.la" 2657 AUDIO_SUBDIRS="$AUDIO_SUBDIRS dsp"
2658 AUDIO_DRIVERS="$AUDIO_DRIVERS dsp/libaudio_dsp.la"
2659 AUDIO_SUBDIRS="$AUDIO_SUBDIRS dma"
2660 AUDIO_DRIVERS="$AUDIO_DRIVERS dma/libaudio_dma.la"
2658 fi 2661 fi
2659 # Set up files for the joystick library 2662 # Set up files for the joystick library
2660 if test x$enable_joystick = xyes; then 2663 if test x$enable_joystick = xyes; then
2661 JOYSTICK_SUBDIRS="$JOYSTICK_SUBDIRS riscos" 2664 JOYSTICK_SUBDIRS="$JOYSTICK_SUBDIRS riscos"
2662 JOYSTICK_DRIVERS="$JOYSTICK_DRIVERS riscos/libjoystick_riscos.la" 2665 JOYSTICK_DRIVERS="$JOYSTICK_DRIVERS riscos/libjoystick_riscos.la"
2682 # Set up files for the timer library 2685 # Set up files for the timer library
2683 if test x$enable_timers = xyes; then 2686 if test x$enable_timers = xyes; then
2684 COPY_ARCH_SRC(src/timer, riscos, SDL_systimer.c) 2687 COPY_ARCH_SRC(src/timer, riscos, SDL_systimer.c)
2685 fi 2688 fi
2686 2689
2687 CFLAGS="$CFLAGS -DENABLE_RISCOS -DDRENDERER_SUPPORT" 2690 CFLAGS="$CFLAGS -DENABLE_RISCOS"
2688 2691
2689 SYSTEM_LIBS="$SYSTEM_LIBS -ljpeg -ltiff -lpng -lz" 2692 SYSTEM_LIBS="$SYSTEM_LIBS -ljpeg -ltiff -lpng -lz"
2690 ;; 2693 ;;
2691 *) 2694 *)
2692 AC_MSG_ERROR(Unsupported target: Please add to configure.in) 2695 AC_MSG_ERROR(Unsupported target: Please add to configure.in)
2857 src/audio/mme/Makefile 2860 src/audio/mme/Makefile
2858 src/audio/nas/Makefile 2861 src/audio/nas/Makefile
2859 src/audio/nto/Makefile 2862 src/audio/nto/Makefile
2860 src/audio/openbsd/Makefile 2863 src/audio/openbsd/Makefile
2861 src/audio/paudio/Makefile 2864 src/audio/paudio/Makefile
2862 src/audio/riscos/Makefile
2863 src/audio/sun/Makefile 2865 src/audio/sun/Makefile
2864 src/audio/ums/Makefile 2866 src/audio/ums/Makefile
2865 src/audio/windib/Makefile 2867 src/audio/windib/Makefile
2866 src/audio/windx5/Makefile 2868 src/audio/windx5/Makefile
2867 src/video/Makefile 2869 src/video/Makefile