summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorJames Cook <james@lindenlab.com>2009-11-28 20:56:15 -0800
committerJames Cook <james@lindenlab.com>2009-11-28 20:56:15 -0800
commit895d528524bd340285fa04e355e49d5ab76b3787 (patch)
tree4d34e3442595db5efa329703515c832f787ed5d9 /indra
parent8ff96a3515daa5c05d1c519f920c12b7aa78c4da (diff)
Fix build - exported globals must have LL_COMMON_API tag
Diffstat (limited to 'indra')
-rw-r--r--indra/llcommon/indra_constants.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/indra/llcommon/indra_constants.h b/indra/llcommon/indra_constants.h
index 5ce5fc4673..064841a95a 100644
--- a/indra/llcommon/indra_constants.h
+++ b/indra/llcommon/indra_constants.h
@@ -267,14 +267,15 @@ const U8 GOD_LIKE = 1;
const U8 GOD_NOT = 0;
// "agent id" for things that should be done to ALL agents
-extern const LLUUID LL_UUID_ALL_AGENTS;
+extern LL_COMMON_API const LLUUID LL_UUID_ALL_AGENTS;
-// Governor Linden's agent id.
-extern const LLUUID ALEXANDRIA_LINDEN_ID; // inventory library owner
-extern const LLUUID GOVERNOR_LINDEN_ID;
-extern const LLUUID REALESTATE_LINDEN_ID;
+// inventory library owner
+extern LL_COMMON_API const LLUUID ALEXANDRIA_LINDEN_ID;
+
+extern LL_COMMON_API const LLUUID GOVERNOR_LINDEN_ID;
+extern LL_COMMON_API const LLUUID REALESTATE_LINDEN_ID;
// Maintenance's group id.
-extern const LLUUID MAINTENANCE_GROUP_ID;
+extern LL_COMMON_API const LLUUID MAINTENANCE_GROUP_ID;
// Flags for kick message
const U32 KICK_FLAGS_DEFAULT = 0x0;