diff options
author | Aleric Inglewood | 2010-11-07 16:55:50 +0100 |
---|---|---|
committer | Aleric Inglewood | 2010-11-07 18:27:48 +0100 |
commit | 5b4356cefbaa7dbdc8656e7283c110a893b1a89c (patch) | |
tree | 43fae9945562c3281746370d623877840ed884b2 /linden/indra/cmake/APR.cmake | |
parent | IMP-688: ERROR: getString: Invalid string control nick01 (diff) | |
download | meta-impy-5b4356cefbaa7dbdc8656e7283c110a893b1a89c.zip meta-impy-5b4356cefbaa7dbdc8656e7283c110a893b1a89c.tar.gz meta-impy-5b4356cefbaa7dbdc8656e7283c110a893b1a89c.tar.bz2 meta-impy-5b4356cefbaa7dbdc8656e7283c110a893b1a89c.tar.xz |
IMP-692: SNOW-713: Global objects in libllcommon duplicated in plugins
See http://jira.secondlife.com/browse/SNOW-713
This patch makes llcommon shared. It contains the following snowglobe
(SVN) changesets: 3478, 3479, 3480, 3481, 3482, 3485, 3496, 3498, 3500,
3519 and 3531, plus the fix for all rejects. Note that changes
to scripts/automated_build_scripts/opensrc-build.sh (changesets 3500
and 3625) were ignored as we don't have scripts/automated_build_scripts.
Diffstat (limited to 'linden/indra/cmake/APR.cmake')
-rw-r--r-- | linden/indra/cmake/APR.cmake | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/linden/indra/cmake/APR.cmake b/linden/indra/cmake/APR.cmake index e9f6411..d1f0898 100644 --- a/linden/indra/cmake/APR.cmake +++ b/linden/indra/cmake/APR.cmake | |||
@@ -14,27 +14,27 @@ else (STANDALONE) | |||
14 | use_prebuilt_binary(apr_suite) | 14 | use_prebuilt_binary(apr_suite) |
15 | if (WINDOWS) | 15 | if (WINDOWS) |
16 | set(APR_LIBRARIES | 16 | set(APR_LIBRARIES |
17 | debug ${ARCH_PREBUILT_DIRS_DEBUG}/apr-1.lib | 17 | debug ${ARCH_PREBUILT_DIRS_DEBUG}/libapr-1.lib |
18 | optimized ${ARCH_PREBUILT_DIRS_RELEASE}/apr-1.lib | 18 | optimized ${ARCH_PREBUILT_DIRS_RELEASE}/libapr-1.lib |
19 | ) | 19 | ) |
20 | set(APRICONV_LIBRARIES | 20 | set(APRICONV_LIBRARIES |
21 | debug ${ARCH_PREBUILT_DIRS_DEBUG}/apriconv-1.lib | 21 | debug ${ARCH_PREBUILT_DIRS_DEBUG}/libapriconv-1.lib |
22 | optimized ${ARCH_PREBUILT_DIRS_RELEASE}/apriconv-1.lib | 22 | optimized ${ARCH_PREBUILT_DIRS_RELEASE}/libapriconv-1.lib |
23 | ) | 23 | ) |
24 | # Doesn't need to link with iconv.dll | 24 | # Doesn't need to link with iconv.dll |
25 | set(APRICONV_LIBRARIES "") | 25 | set(APRICONV_LIBRARIES "") |
26 | set(APRUTIL_LIBRARIES | 26 | set(APRUTIL_LIBRARIES |
27 | debug ${ARCH_PREBUILT_DIRS_DEBUG}/aprutil-1.lib ${APRICONV_LIBRARIES} | 27 | debug ${ARCH_PREBUILT_DIRS_DEBUG}/libaprutil-1.lib ${APRICONV_LIBRARIES} |
28 | optimized ${ARCH_PREBUILT_DIRS_RELEASE}/aprutil-1.lib ${APRICONV_LIBRARIES} | 28 | optimized ${ARCH_PREBUILT_DIRS_RELEASE}/libaprutil-1.lib ${APRICONV_LIBRARIES} |
29 | ) | 29 | ) |
30 | elseif (DARWIN) | 30 | elseif (DARWIN) |
31 | set(APR_LIBRARIES | 31 | set(APR_LIBRARIES |
32 | debug ${ARCH_PREBUILT_DIRS_DEBUG}/libapr-1.a | 32 | debug ${ARCH_PREBUILT_DIRS_DEBUG}/libapr-1.0.3.7.dylib |
33 | optimized ${ARCH_PREBUILT_DIRS_RELEASE}/libapr-1.a | 33 | optimized ${ARCH_PREBUILT_DIRS_RELEASE}/libapr-1.0.3.7.dylib |
34 | ) | 34 | ) |
35 | set(APRUTIL_LIBRARIES | 35 | set(APRUTIL_LIBRARIES |
36 | debug ${ARCH_PREBUILT_DIRS_DEBUG}/libaprutil-1.a | 36 | debug ${ARCH_PREBUILT_DIRS_DEBUG}/libaprutil-1.0.3.8.dylib |
37 | optimized ${ARCH_PREBUILT_DIRS_RELEASE}/libaprutil-1.a | 37 | optimized ${ARCH_PREBUILT_DIRS_RELEASE}/libaprutil-1.0.3.8.dylib |
38 | ) | 38 | ) |
39 | set(APRICONV_LIBRARIES iconv) | 39 | set(APRICONV_LIBRARIES iconv) |
40 | else (WINDOWS) | 40 | else (WINDOWS) |