diff options
author | sb <sb@openoffice.org> | 2010-01-29 17:01:54 +0100 |
---|---|---|
committer | sb <sb@openoffice.org> | 2010-01-29 17:01:54 +0100 |
commit | f4d7dfdfba90f304b067bfa7334c4a103c181152 (patch) | |
tree | 48f4397b15f292998bcbf747823e423706fc6f36 /sal | |
parent | 86c002eb0854a28da4f2a99644ca1ddb3e57200e (diff) |
sb118: #i108776# changed addsym.awk to also export STLport num_put symbols, and simplified it by requiring that first section is labeled UDK_3_0_0; adapted map files accordingly, replacing many individual ones with solenv/src templates
Diffstat (limited to 'sal')
-rwxr-xr-x | sal/qa/export.map | 2 | ||||
-rw-r--r-- | sal/qa/osl/module/export_dll.map | 2 | ||||
-rw-r--r-- | sal/qa/rtl/textenc/gcc3_export.map | 40 | ||||
-rw-r--r-- | sal/qa/rtl/textenc/makefile.mk | 8 |
4 files changed, 2 insertions, 50 deletions
diff --git a/sal/qa/export.map b/sal/qa/export.map index 9e347a81a1c3..5fcd70dc41f8 100755 --- a/sal/qa/export.map +++ b/sal/qa/export.map @@ -29,7 +29,7 @@ # #************************************************************************* -UDK_3.0 { +UDK_3_0_0 { global: cppunitTestPlugIn; diff --git a/sal/qa/osl/module/export_dll.map b/sal/qa/osl/module/export_dll.map index 0b8a37c365e6..2c2ff37f651c 100644 --- a/sal/qa/osl/module/export_dll.map +++ b/sal/qa/osl/module/export_dll.map @@ -29,7 +29,7 @@ # #************************************************************************* -UDK_3.0 { +UDK_3_0_0 { global: firstfunc; diff --git a/sal/qa/rtl/textenc/gcc3_export.map b/sal/qa/rtl/textenc/gcc3_export.map deleted file mode 100644 index 9d838c3df0e1..000000000000 --- a/sal/qa/rtl/textenc/gcc3_export.map +++ /dev/null @@ -1,40 +0,0 @@ -#************************************************************************* -# -# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2008 by Sun Microsystems, Inc. -# -# OpenOffice.org - a multi-platform office productivity suite -# -# $RCSfile: gcc3_export.map,v $ -# -# $Revision: 1.3 $ -# -# This file is part of OpenOffice.org. -# -# OpenOffice.org is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License version 3 -# only, as published by the Free Software Foundation. -# -# OpenOffice.org is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License version 3 for more details -# (a copy is included in the LICENSE file that accompanied this code). -# -# You should have received a copy of the GNU Lesser General Public License -# version 3 along with OpenOffice.org. If not, see -# <http://www.openoffice.org/license.html> -# for a copy of the LGPLv3 License. -# -#************************************************************************* - -UDK_3_0_0 { - global: - registerAllTestFunction; - - _ZN4_STL7num_put*; # STLport - - local: - *; -}; diff --git a/sal/qa/rtl/textenc/makefile.mk b/sal/qa/rtl/textenc/makefile.mk index 31f700b7b96a..177ae7cf213d 100644 --- a/sal/qa/rtl/textenc/makefile.mk +++ b/sal/qa/rtl/textenc/makefile.mk @@ -51,11 +51,7 @@ SHL1STDLIBS= $(SALLIB) $(CPPUNITLIB) $(TESTSHL2LIB) SHL1IMPLIB= i$(SHL1TARGET) DEF1NAME =$(SHL1TARGET) -.IF "$(COMNAME)" == "gcc3" -SHL1VERSIONMAP = gcc3_export.map -.ELSE SHL1VERSIONMAP = $(PRJ)$/qa$/export.map -.ENDIF # END -------------------------------------------------------------- @@ -67,11 +63,7 @@ SHL2STDLIBS= $(SALLIB) $(CPPUNITLIB) $(TESTSHL2LIB) SHL2IMPLIB= i$(SHL2TARGET) DEF2NAME =$(SHL2TARGET) -.IF "$(COMNAME)" == "gcc3" -SHL2VERSIONMAP = gcc3_export.map -.ELSE SHL2VERSIONMAP = $(PRJ)$/qa$/export.map -.ENDIF # END -------------------------------------------------------------- |