summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-06-16 03:45:53 +0000
committerSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-06-16 03:45:53 +0000
commite6a8c4fc0200db6f535e61ebf4af4a3d4bf0b5f0 (patch)
tree2423a5ae4d4cdd72711a9ec29892f7b6ba23692e /configure.ac
parentdb58fd45dea16d5ee70ae04dbe2c6b25dc2c7b4e (diff)
downloadpcsxr-e6a8c4fc0200db6f535e61ebf4af4a3d4bf0b5f0.tar.gz
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@52641 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac15
1 files changed, 2 insertions, 13 deletions
diff --git a/configure.ac b/configure.ac
index 9c1b8124..bd43c43d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -36,24 +36,13 @@ AC_SUBST(GLADE2_LIBS)
AC_CONFIG_FILES([Makefile data/Makefile doc/Makefile libpcsxcore/Makefile gui/Makefile plugins/dfinput/Makefile plugins/dfsound/Makefile plugins/dfxvideo/Makefile plugins/dfcdrom/Makefile plugins/dfnet/Makefile pixmaps/Makefile po/Makefile.in])
-dnl Check for -fno-dse option support
-saved_CFLAGS="$CFLAGS"
-CFLAGS="$CFLAGS -fno-dse"
-AC_CACHE_CHECK([for -fno-dse option support], ac_cv_c_no_dse_support,
-AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>]], [[]])],[ac_cv_c_no_dse_support=yes],[ac_cv_c_no_dse_support=no]))
-CFLAGS="$saved_CFLAGS"
-if test "$ac_cv_c_no_dse_support" = "yes"
-then
- CFLAGS="$CFLAGS -fno-dse"
-fi
-
AM_CONDITIONAL(SOUND_OSS, false)
AM_CONDITIONAL(SOUND_SDL, false)
AM_CONDITIONAL(SOUND_NULL, false)
dnl Check for ALSA 1.x, OSS, or PulseAudio
-AC_ARG_ENABLE(sound, [ --enable-sound=... force selection of sound backend (alsa, null, oss, pulseaudio, sdl) (default: sdl)],
+AC_ARG_ENABLE(sound, [ --enable-sound=... force selection of sound backend (alsa/null/oss/pulseaudio/sdl) (default: sdl)],
[ SOUND="$enableval" ],[ SOUND="sdl" ])
if test "x$SOUND" = xalsa; then
@@ -138,7 +127,7 @@ AM_CONDITIONAL(ARCH_X86, false)
AM_CONDITIONAL(ARCH_X86_64, false)
AM_CONDITIONAL(ARCH_PPC, false)
-AC_ARG_ENABLE(dynarec, [ --enable-dynarec=... force selection of dynamic recompiler platform (x86, x86_64, ppc) (default: autodetect)],
+AC_ARG_ENABLE(dynarec, [ --enable-dynarec=... force selection of dynamic recompiler platform (auto/no/x86/x86_64/ppc) (default: auto)],
[ DYNAREC="$enableval" ],[ DYNAREC="auto" ])
if test "x$DYNAREC" = xauto; then