[Libreoffice-commits] core.git: solenv/README solenv/src
Matúš Kukan
matus.kukan at gmail.com
Thu Feb 28 09:20:24 PST 2013
solenv/README | 5 +++++
solenv/src/component.map | 23 +++++++++++++++++++++++
solenv/src/reg-component.map | 24 ++++++++++++++++++++++++
solenv/src/solaris_noexstk.map | 21 +++++++++++++++++++++
solenv/src/unloadablecomponent.map | 24 ++++++++++++++++++++++++
5 files changed, 97 insertions(+)
New commits:
commit 4b750d5052b8e473f2ec4db48724f02deb497b78
Author: Matúš Kukan <matus.kukan at gmail.com>
Date: Thu Feb 28 18:17:57 2013 +0100
Revert "rm -r solenv/src"
This reverts commit 6b7595c57228e86447dbd638a95bc35b55e67180.
solenv/src/component.map is actually used in
odk/CustomTarget_settings.mk
Change-Id: I01dba8e7e37cc9639ae5ea6f9ee7a7bb8fc6c496
diff --git a/solenv/README b/solenv/README
index 975c8bf..983b4c6 100644
--- a/solenv/README
+++ b/solenv/README
@@ -32,3 +32,8 @@ gdb/
inc/
old / increasingly obsolete dmake setup and includes, we are
trying to entirely rid ourselves of this
+
+src/
+ useful standard / re-usable component map files for components
+ which shouldn't export anything more than a few registration
+ symbols.
diff --git a/solenv/src/component.map b/solenv/src/component.map
new file mode 100644
index 0000000..db10831
--- /dev/null
+++ b/solenv/src/component.map
@@ -0,0 +1,23 @@
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+# This file incorporates work covered by the following license notice:
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed
+# with this work for additional information regarding copyright
+# ownership. The ASF licenses this file to you under the Apache
+# License, Version 2.0 (the "License"); you may not use this file
+# except in compliance with the License. You may obtain a copy of
+# the License at http://www.apache.org/licenses/LICENSE-2.0 .
+#
+UDK_3_0_0 {
+ global:
+ component_getFactory;
+ local:
+ *;
+};
diff --git a/solenv/src/reg-component.map b/solenv/src/reg-component.map
new file mode 100644
index 0000000..a071966
--- /dev/null
+++ b/solenv/src/reg-component.map
@@ -0,0 +1,24 @@
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+# This file incorporates work covered by the following license notice:
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed
+# with this work for additional information regarding copyright
+# ownership. The ASF licenses this file to you under the Apache
+# License, Version 2.0 (the "License"); you may not use this file
+# except in compliance with the License. You may obtain a copy of
+# the License at http://www.apache.org/licenses/LICENSE-2.0 .
+#
+UDK_3_0_0 {
+ global:
+ component_writeInfo;
+ component_getFactory;
+ local:
+ *;
+};
diff --git a/solenv/src/solaris_noexstk.map b/solenv/src/solaris_noexstk.map
new file mode 100644
index 0000000..27fdb9c
--- /dev/null
+++ b/solenv/src/solaris_noexstk.map
@@ -0,0 +1,21 @@
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+# This file incorporates work covered by the following license notice:
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed
+# with this work for additional information regarding copyright
+# ownership. The ASF licenses this file to you under the Apache
+# License, Version 2.0 (the "License"); you may not use this file
+# except in compliance with the License. You may obtain a copy of
+# the License at http://www.apache.org/licenses/LICENSE-2.0 .
+#
+# mapfile for non-executable stack
+# see @ /usr/lib/ld/map.noexstk
+#
+stack = STACK ?RW;
diff --git a/solenv/src/unloadablecomponent.map b/solenv/src/unloadablecomponent.map
new file mode 100644
index 0000000..5ea17d0
--- /dev/null
+++ b/solenv/src/unloadablecomponent.map
@@ -0,0 +1,24 @@
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+# This file incorporates work covered by the following license notice:
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed
+# with this work for additional information regarding copyright
+# ownership. The ASF licenses this file to you under the Apache
+# License, Version 2.0 (the "License"); you may not use this file
+# except in compliance with the License. You may obtain a copy of
+# the License at http://www.apache.org/licenses/LICENSE-2.0 .
+#
+UDK_3_0_0 {
+ global:
+ component_getFactory;
+ component_canUnload;
+ local:
+ *;
+};
More information about the Libreoffice-commits
mailing list