comparison configure.in @ 740:e70f80e98f60

Actually hook the cpuinfo module into the library. :)
author Sam Lantinga <slouken@libsdl.org>
date Tue, 18 Nov 2003 02:16:57 +0000
parents 22dbf364c017
children 528a52626680
comparison
equal deleted inserted replaced
739:22dbf364c017 740:e70f80e98f60
223 if test x$enable_file = xyes; then 223 if test x$enable_file = xyes; then
224 SDL_EXTRADIRS="$SDL_EXTRADIRS file" 224 SDL_EXTRADIRS="$SDL_EXTRADIRS file"
225 SDL_EXTRALIBS="$SDL_EXTRALIBS file/libfile.la" 225 SDL_EXTRALIBS="$SDL_EXTRALIBS file/libfile.la"
226 else 226 else
227 CFLAGS="$CFLAGS -DDISABLE_FILE" 227 CFLAGS="$CFLAGS -DDISABLE_FILE"
228 fi
229 AC_ARG_ENABLE(cpuinfo,
230 [ --enable-cpuinfo Enable the cpuinfo subsystem [default=yes]],
231 , enable_cpuinfo=yes)
232 if test x$enable_cpuinfo = xyes; then
233 SDL_EXTRADIRS="$SDL_EXTRADIRS cpuinfo"
234 SDL_EXTRALIBS="$SDL_EXTRALIBS cpuinfo/libcpuinfo.la"
235 else
236 CFLAGS="$CFLAGS -DDISABLE_CPUINFO"
228 fi 237 fi
229 238
230 dnl See if the OSS audio interface is supported 239 dnl See if the OSS audio interface is supported
231 CheckOSS() 240 CheckOSS()
232 { 241 {