diff options
-rw-r--r-- | ChangeLog.txt | 7 | ||||
-rw-r--r-- | linden/indra/cmake/CopyWinLibs.cmake | 62 | ||||
-rw-r--r-- | linden/install.xml | 7 |
3 files changed, 7 insertions, 69 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt index 3ad4e9c..2457125 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt | |||
@@ -3,6 +3,13 @@ | |||
3 | * Updated Imprudence to be based on SL 1.22.11. | 3 | * Updated Imprudence to be based on SL 1.22.11. |
4 | 4 | ||
5 | 5 | ||
6 | McCabe Maxsted <hakushakukun@gmail.com> | ||
7 | |||
8 | * Fixed CopyWinLibs.CMake errors. | ||
9 | |||
10 | modified: linden/indra/cmake/CopyWinLibs.cmake | ||
11 | modified: linden/install.xml | ||
12 | |||
6 | 13 | ||
7 | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- | 14 | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- |
8 | =- 1.1.0 -= | 15 | =- 1.1.0 -= |
diff --git a/linden/indra/cmake/CopyWinLibs.cmake b/linden/indra/cmake/CopyWinLibs.cmake index 0c16d9f..4485111 100644 --- a/linden/indra/cmake/CopyWinLibs.cmake +++ b/linden/indra/cmake/CopyWinLibs.cmake | |||
@@ -172,15 +172,6 @@ copy_if_different( | |||
172 | ) | 172 | ) |
173 | set(all_targets ${all_targets} ${out_targets}) | 173 | set(all_targets ${all_targets} ${out_targets}) |
174 | 174 | ||
175 | set(vivox_src_dir "${CMAKE_SOURCE_DIR}/newview/vivox-runtime/i686-win32") | ||
176 | set(vivox_files | ||
177 | SLVoice.exe | ||
178 | alut.dll | ||
179 | vivoxsdk.dll | ||
180 | ortp.dll | ||
181 | wrap_oal.dll | ||
182 | ) | ||
183 | |||
184 | set(debug_src_dir "${CMAKE_SOURCE_DIR}/../libraries/i686-win32/lib/debug") | 175 | set(debug_src_dir "${CMAKE_SOURCE_DIR}/../libraries/i686-win32/lib/debug") |
185 | set(debug_files | 176 | set(debug_files |
186 | alut.dll | 177 | alut.dll |
@@ -256,14 +247,6 @@ copy_if_different( | |||
256 | ) | 247 | ) |
257 | set(all_targets ${all_targets} ${out_targets}) | 248 | set(all_targets ${all_targets} ${out_targets}) |
258 | 249 | ||
259 | copy_if_different( | ||
260 | ${vivox_src_dir} | ||
261 | "${CMAKE_CURRENT_BINARY_DIR}/Debug" | ||
262 | out_targets | ||
263 | ${vivox_files} | ||
264 | ) | ||
265 | set(all_targets ${all_targets} ${out_targets}) | ||
266 | |||
267 | set(release_src_dir "${CMAKE_SOURCE_DIR}/../libraries/i686-win32/lib/release") | 250 | set(release_src_dir "${CMAKE_SOURCE_DIR}/../libraries/i686-win32/lib/release") |
268 | set(release_files | 251 | set(release_files |
269 | alut.dll | 252 | alut.dll |
@@ -339,14 +322,6 @@ copy_if_different( | |||
339 | set(all_targets ${all_targets} ${out_targets}) | 322 | set(all_targets ${all_targets} ${out_targets}) |
340 | 323 | ||
341 | copy_if_different( | 324 | copy_if_different( |
342 | ${vivox_src_dir} | ||
343 | "${CMAKE_CURRENT_BINARY_DIR}/Release" | ||
344 | out_targets | ||
345 | ${vivox_files} | ||
346 | ) | ||
347 | set(all_targets ${all_targets} ${out_targets}) | ||
348 | |||
349 | copy_if_different( | ||
350 | ${release_src_dir} | 325 | ${release_src_dir} |
351 | "${CMAKE_CURRENT_BINARY_DIR}/RelWithDebInfo" | 326 | "${CMAKE_CURRENT_BINARY_DIR}/RelWithDebInfo" |
352 | out_targets | 327 | out_targets |
@@ -354,43 +329,6 @@ copy_if_different( | |||
354 | ) | 329 | ) |
355 | set(all_targets ${all_targets} ${out_targets}) | 330 | set(all_targets ${all_targets} ${out_targets}) |
356 | 331 | ||
357 | copy_if_different( | ||
358 | ${vivox_src_dir} | ||
359 | "${CMAKE_CURRENT_BINARY_DIR}/RelWithDebInfo" | ||
360 | out_targets | ||
361 | ${vivox_files} | ||
362 | ) | ||
363 | set(all_targets ${all_targets} ${out_targets}) | ||
364 | |||
365 | |||
366 | # Copy MS C runtime dlls, required for packaging. | ||
367 | # *TODO - Adapt this to support VC9 | ||
368 | if (MSVC80) | ||
369 | FIND_PATH(debug_msvc8_redist_path msvcr80d.dll | ||
370 | PATHS | ||
371 | [HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0\\Setup\\VC;ProductDir]/redist/Debug_NonRedist/x86/Microsoft.VC80.DebugCRT | ||
372 | ) | ||
373 | |||
374 | if(EXISTS ${debug_msvc8_redist_path}) | ||
375 | set(debug_msvc8_files | ||
376 | msvcr80d.dll | ||
377 | msvcp80d.dll | ||
378 | Microsoft.VC80.DebugCRT.manifest | ||
379 | ) | ||
380 | |||
381 | copy_if_different( | ||
382 | ${debug_msvc8_redist_path} | ||
383 | "${CMAKE_CURRENT_BINARY_DIR}/Debug" | ||
384 | out_targets | ||
385 | ${debug_msvc8_files} | ||
386 | ) | ||
387 | set(all_targets ${all_targets} ${out_targets}) | ||
388 | endif (EXISTS ${debug_msvc8_redist_path}) | ||
389 | |||
390 | FIND_PATH(release_msvc8_redist_path msvcr80.dll | ||
391 | PATHS | ||
392 | [HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0\\Setup\\VC;ProductDir]/redist/x86/Microsoft.VC80.CRT | ||
393 | ) | ||
394 | 332 | ||
395 | # Copy MS C runtime dlls, required for packaging. | 333 | # Copy MS C runtime dlls, required for packaging. |
396 | # *TODO - Adapt this to support VC9 | 334 | # *TODO - Adapt this to support VC9 |
diff --git a/linden/install.xml b/linden/install.xml index 2263405..f5e8974 100644 --- a/linden/install.xml +++ b/linden/install.xml | |||
@@ -1390,13 +1390,6 @@ anguage Infrstructure (CLI) international standard</string> | |||
1390 | <key>url</key> | 1390 | <key>url</key> |
1391 | <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/vivox-2.1.3010.6151-linux-20090218.tar.bz2</uri> | 1391 | <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/vivox-2.1.3010.6151-linux-20090218.tar.bz2</uri> |
1392 | </map> | 1392 | </map> |
1393 | <key>windows</key> | ||
1394 | <map> | ||
1395 | <key>md5sum</key> | ||
1396 | <string>311bedab0abbd3a0ddf07216711af0ea</string> | ||
1397 | <key>url</key> | ||
1398 | <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/vivox-2.1.3010.6151-windows-20090218.tar.bz2</uri> | ||
1399 | </map> | ||
1400 | </map> | 1393 | </map> |
1401 | </map> | 1394 | </map> |
1402 | <key>xmlrpc-epi</key> | 1395 | <key>xmlrpc-epi</key> |