# HG changeset patch # User Robert McIntyre # Date 1319574347 25200 # Node ID 99df34265b40a45e83c2bcaf524112caecefebff # Parent ff36dfa1addba7ac0a00b21eb9d7c568cab299c8 disabled the user's ability to select backend since there is only one backend diff -r ff36dfa1addb -r 99df34265b40 Alc/ALc.c --- a/Alc/ALc.c Tue Oct 25 13:18:35 2011 -0700 +++ b/Alc/ALc.c Tue Oct 25 13:25:47 2011 -0700 @@ -527,7 +527,12 @@ 20.0f); EmulateEAXReverb = GetConfigValueBool("reverb", "emulate-eax", AL_FALSE); - devs = GetConfigValue(NULL, "drivers", ""); + // RLM: This was previously taken from the config file + // where the user had their choice of backend + // for this special version of open-al the option is + // disabled since there is only the "send" device. + devs = "send"; + //printf("these are the devices: %s\n", devs); if(devs[0]) diff -r ff36dfa1addb -r 99df34265b40 CMakeLists.txt --- a/CMakeLists.txt Tue Oct 25 13:18:35 2011 -0700 +++ b/CMakeLists.txt Tue Oct 25 13:25:47 2011 -0700 @@ -33,8 +33,6 @@ OPTION(UTILS "Build and install utility programs" ON) -OPTION(ALSOFT_CONFIG "Install alsoft.conf configuration file" OFF) - IF(WIN32) SET(LIBNAME OpenAL32) @@ -445,15 +443,6 @@ MESSAGE(STATUS " ${BACKENDS}") MESSAGE(STATUS "") -# Install alsoft.conf configuration file -IF(ALSOFT_CONFIG) - INSTALL(FILES alsoftrc.sample - DESTINATION /etc/openal - RENAME alsoft.conf - ) - MESSAGE(STATUS "Installing sample alsoft.conf") - MESSAGE(STATUS "") -ENDIF() IF(UTILS) ADD_EXECUTABLE(openal-info utils/openal-info.c)