aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/cmake
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/cmake/00-Common.cmake15
-rw-r--r--linden/indra/cmake/GStreamer.cmake1
-rw-r--r--linden/indra/cmake/ViewerMiscLibs.cmake1
3 files changed, 9 insertions, 8 deletions
diff --git a/linden/indra/cmake/00-Common.cmake b/linden/indra/cmake/00-Common.cmake
index 8c6ca2d..9b3f423 100644
--- a/linden/indra/cmake/00-Common.cmake
+++ b/linden/indra/cmake/00-Common.cmake
@@ -112,15 +112,16 @@ if (LINUX)
112 endif (NOT ${GXX_VERSION} MATCHES " 4.1.*Red Hat") 112 endif (NOT ${GXX_VERSION} MATCHES " 4.1.*Red Hat")
113 endif (${GXX_VERSION} STREQUAL ${CXX_VERSION}) 113 endif (${GXX_VERSION} STREQUAL ${CXX_VERSION})
114 114
115 # GCC 4.3 introduces a pile of obnoxious new warnings, which we
116 # treat as errors due to -Werror. Quiet the most offensive and
117 # widespread of them.
118 115
119 if (${CXX_VERSION} MATCHES "4.3") 116 # Silence certain types of compiler warnings, to prevent them from
120 add_definitions(-Wno-deprecated -Wno-parentheses) 117 # breaking compile (due to -Werror treating them as errors).
121 endif (${CXX_VERSION} MATCHES "4.3") 118
119 add_definitions(
120 -Wno-deprecated
121 -Wno-parentheses
122 -Wno-unused-variable
123 )
122 124
123 # End of hacks.
124 125
125 add_definitions( 126 add_definitions(
126 -DLL_LINUX=1 127 -DLL_LINUX=1
diff --git a/linden/indra/cmake/GStreamer.cmake b/linden/indra/cmake/GStreamer.cmake
index 992b61e..55a8f43 100644
--- a/linden/indra/cmake/GStreamer.cmake
+++ b/linden/indra/cmake/GStreamer.cmake
@@ -97,6 +97,7 @@ else (WINDOWS)
97 97
98 else (DARWIN) # Linux 98 else (DARWIN) # Linux
99 99
100 use_prebuilt_binary(liboil)
100 use_prebuilt_binary(theora) 101 use_prebuilt_binary(theora)
101 102
102 set(GSTREAMER_LIBRARIES 103 set(GSTREAMER_LIBRARIES
diff --git a/linden/indra/cmake/ViewerMiscLibs.cmake b/linden/indra/cmake/ViewerMiscLibs.cmake
index 68ee881..2a8abda 100644
--- a/linden/indra/cmake/ViewerMiscLibs.cmake
+++ b/linden/indra/cmake/ViewerMiscLibs.cmake
@@ -2,7 +2,6 @@
2include(Prebuilt) 2include(Prebuilt)
3 3
4if (NOT STANDALONE) 4if (NOT STANDALONE)
5 use_prebuilt_binary(libstdc++)
6 use_prebuilt_binary(libuuid) 5 use_prebuilt_binary(libuuid)
7 use_prebuilt_binary(vivox) 6 use_prebuilt_binary(vivox)
8 use_prebuilt_binary(fontconfig) 7 use_prebuilt_binary(fontconfig)