Mercurial > sdl-ios-xcode
comparison configure.in @ 5231:710d00cb3a6a
Made it possible to disable the rendering subsystem with configure --disable-render
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 08 Feb 2011 10:04:09 -0800 |
parents | 5d01d426f2ea |
children | 6a65c1fc07af |
comparison
equal
deleted
inserted
replaced
5230:5d01d426f2ea | 5231:710d00cb3a6a |
---|---|
359 AC_ARG_ENABLE(video, | 359 AC_ARG_ENABLE(video, |
360 AC_HELP_STRING([--enable-video], [Enable the video subsystem [[default=yes]]]), | 360 AC_HELP_STRING([--enable-video], [Enable the video subsystem [[default=yes]]]), |
361 , enable_video=yes) | 361 , enable_video=yes) |
362 if test x$enable_video != xyes; then | 362 if test x$enable_video != xyes; then |
363 AC_DEFINE(SDL_VIDEO_DISABLED) | 363 AC_DEFINE(SDL_VIDEO_DISABLED) |
364 fi | |
365 AC_ARG_ENABLE(render, | |
366 AC_HELP_STRING([--enable-render], [Enable the render subsystem [[default=yes]]]), | |
367 , enable_render=yes) | |
368 if test x$enable_render != xyes; then | |
369 AC_DEFINE(SDL_RENDER_DISABLED) | |
364 fi | 370 fi |
365 AC_ARG_ENABLE(events, | 371 AC_ARG_ENABLE(events, |
366 AC_HELP_STRING([--enable-events], [Enable the events subsystem [[default=yes]]]), | 372 AC_HELP_STRING([--enable-events], [Enable the events subsystem [[default=yes]]]), |
367 , enable_events=yes) | 373 , enable_events=yes) |
368 if test x$enable_events != xyes; then | 374 if test x$enable_events != xyes; then |