diff options
author | Kyle McKay <scot@lindenlab.com> | 2008-07-10 02:16:54 +0000 |
---|---|---|
committer | Kyle McKay <scot@lindenlab.com> | 2008-07-10 02:16:54 +0000 |
commit | c8eae77636ec874f4117ae09288e0872269f5976 (patch) | |
tree | d06c3b3f78f0346f3f8f8270c115f74f4204a374 /indra/llaudio | |
parent | 6626767245e90196711961c3d899001185590168 (diff) |
Check the actual version of the compiler we're going to use to compile the sources to determine which options need to be added rather than the version of some other compiler on the system.
Diffstat (limited to 'indra/llaudio')
-rw-r--r-- | indra/llaudio/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llaudio/CMakeLists.txt b/indra/llaudio/CMakeLists.txt index 1d51145d6e..b662023348 100644 --- a/indra/llaudio/CMakeLists.txt +++ b/indra/llaudio/CMakeLists.txt @@ -52,10 +52,10 @@ if (FMOD) ) if (LINUX) - if (${GXX_VERSION} MATCHES "4.[23]") + if (${CXX_VERSION} MATCHES "4.[23]") set_source_files_properties(audioengine_fmod.cpp COMPILE_FLAGS -Wno-error=write-strings) - endif (${GXX_VERSION} MATCHES "4.[23]") + endif (${CXX_VERSION} MATCHES "4.[23]") endif (LINUX) endif (FMOD) |