aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra
diff options
context:
space:
mode:
authorAleric Inglewood2010-10-02 21:12:22 +0200
committerAleric Inglewood2010-10-02 21:12:22 +0200
commite14cd4c42432fa5825f06248c8cf45cf944505f3 (patch)
treed21f4742f6d7b10543918265854c4b990056ab8a /linden/indra
parentRED-560: Revert changes to indra/cmake/OPENAL.cmake (diff)
downloadmeta-impy-e14cd4c42432fa5825f06248c8cf45cf944505f3.zip
meta-impy-e14cd4c42432fa5825f06248c8cf45cf944505f3.tar.gz
meta-impy-e14cd4c42432fa5825f06248c8cf45cf944505f3.tar.bz2
meta-impy-e14cd4c42432fa5825f06248c8cf45cf944505f3.tar.xz
RED-560: Add support for STANDALONE to OPENAL.cmake
Use pkg_check_modules to find freealut (and openal) for STANDALONE. Non-standalone is untouched by this version. The changes relative to snowglobe (for the STANDALONE path) is that I removed the 'include(FindOpenAL) (that comes with cmake) which not only doesn't find libalut, but even sets the wrong cmake variables (it sets OPENAL_LIBRARY, and our cmake scripts *use* OPENAL_LIBRARIES). Moreover, under the assumption that STANDALONE really is only for linux (and I think that is so), every linux distribution DOES have freealut (and openal) installed with a pkg-config anyway. I also removed pkg_check_modules(openal) because it is redundant: freealut pulls that in already.
Diffstat (limited to 'linden/indra')
-rw-r--r--linden/indra/cmake/OPENAL.cmake14
1 files changed, 12 insertions, 2 deletions
diff --git a/linden/indra/cmake/OPENAL.cmake b/linden/indra/cmake/OPENAL.cmake
index 4f0e0cc..b9efd57 100644
--- a/linden/indra/cmake/OPENAL.cmake
+++ b/linden/indra/cmake/OPENAL.cmake
@@ -2,11 +2,21 @@
2 2
3include(Variables) 3include(Variables)
4include(Linking) 4include(Linking)
5include(FindPkgConfig)
5 6
6set(OPENAL ON CACHE BOOL "Enable OpenAL") 7set(OPENAL ON CACHE BOOL "Enable OpenAL")
7 8
9# If STANDALONE but NOT PKG_CONFIG_FOUND we should fail,
10# but why try to find it as prebuilt?
11if (OPENAL AND STANDALONE AND PKG_CONFIG_FOUND)
8 12
9if (OPENAL) 13 # This module defines
14 # OPENAL_INCLUDE_DIRS
15 # OPENAL_LIBRARIES
16 # OPENAL_FOUND
17 pkg_check_modules(OPENAL REQUIRED freealut) # freealut links with openal.
18
19elseif (OPENAL)
10 20
11 # message(STATUS "Building with OpenAL audio support") 21 # message(STATUS "Building with OpenAL audio support")
12 22
@@ -110,4 +120,4 @@ if (OPENAL)
110 "Found OpenAL and ALUT libraries successfully" 120 "Found OpenAL and ALUT libraries successfully"
111 ) 121 )
112 122
113endif (OPENAL) 123endif (OPENAL AND STANDALONE AND PKG_CONFIG_FOUND)