diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2011-09-21 16:34:46 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2011-09-21 18:16:43 +0200 |
commit | 9ffee68dc027662fd8e6aa044d7ee01b0ed5df16 (patch) | |
tree | 25f265198a400f9ac4a17c6ccc73e30ddf4187b8 /sal/util | |
parent | 6560e48afa53a0ca1ab9417ac2637f8d64332375 (diff) |
Cleaned up sal_textenc, making it work on Mac OS X.
Diffstat (limited to 'sal/util')
-rw-r--r-- | sal/util/makefile.mk | 9 | ||||
-rw-r--r-- | sal/util/sal_textenc/makefile.mk | 46 | ||||
-rw-r--r-- | sal/util/sal_textenc/saltextenc.map | 32 | ||||
-rw-r--r-- | sal/util/saltextenc.map | 6 |
4 files changed, 78 insertions, 15 deletions
diff --git a/sal/util/makefile.mk b/sal/util/makefile.mk index 3a3a164480ee..981f3cbbe632 100644 --- a/sal/util/makefile.mk +++ b/sal/util/makefile.mk @@ -152,15 +152,6 @@ SHL1STDLIBS+=-lgcc .ENDIF .ENDIF -SHL4DEPN+=$(SHL1TARGETN) -SHL4LIBS=$(SLB)$/textenc_tables.lib -SHL4TARGET=sal_textenc -SHL4STDLIBS=$(SALLIB) -SHL4VERSIONMAP=saltextenc.map - -SHL4DEF=$(MISC)$/$(SHL4TARGET).def -DEF4NAME=$(SHL4TARGET) - # --- Targets ------------------------------------------------------ .ENDIF # $(header) != "" diff --git a/sal/util/sal_textenc/makefile.mk b/sal/util/sal_textenc/makefile.mk new file mode 100644 index 000000000000..96a054098450 --- /dev/null +++ b/sal/util/sal_textenc/makefile.mk @@ -0,0 +1,46 @@ +# Version: MPL 1.1 / GPLv3+ / LGPLv3+ +# +# The contents of this file are subject to the Mozilla Public License Version +# 1.1 (the "License"); you may not use this file except in compliance with +# the License or as specified alternatively below. You may obtain a copy of +# the License at http://www.mozilla.org/MPL/ +# +# Software distributed under the License is distributed on an "AS IS" basis, +# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +# for the specific language governing rights and limitations under the +# License. +# +# Major Contributor(s): +# [ Copyright (C) 2011 Stephan Bergmann, Red Hat Inc. <sbergman@redhat.com> +# (initial developer) ] +# +# All Rights Reserved. +# +# For minor contributions see the git repository. +# +# Alternatively, the contents of this file may be used under the terms of +# either the GNU General Public License Version 3 or later (the "GPLv3+"), or +# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"), +# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable +# instead of those above. + +PRJ = ../.. +PRJNAME = sal +TARGET = sal_textenc + +# Should be VISIBILITY_HIDDEN=TRUE, but sal/textenc contains objects that end up +# in both sal and sal_textenc libraries, so need to use a map file here for now. + +.INCLUDE: settings.mk + +# Should be DLLPRE= as it is loaded dynamically, but IOS links against it. + +SHL1IMPLIB = i$(SHL1TARGET) +SHL1LIBS = $(SLB)/textenc_tables.lib +SHL1RPATH = URELIB +SHL1STDLIBS = $(SALLIB) +SHL1TARGET = sal_textenc +SHL1VERSIONMAP = saltextenc.map +DEF1NAME = $(SHL1TARGET) + +.INCLUDE: target.mk diff --git a/sal/util/sal_textenc/saltextenc.map b/sal/util/sal_textenc/saltextenc.map new file mode 100644 index 000000000000..45024c0ccb59 --- /dev/null +++ b/sal/util/sal_textenc/saltextenc.map @@ -0,0 +1,32 @@ +# Version: MPL 1.1 / GPLv3+ / LGPLv3+ +# +# The contents of this file are subject to the Mozilla Public License Version +# 1.1 (the "License"); you may not use this file except in compliance with +# the License or as specified alternatively below. You may obtain a copy of +# the License at http://www.mozilla.org/MPL/ +# +# Software distributed under the License is distributed on an "AS IS" basis, +# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +# for the specific language governing rights and limitations under the +# License. +# +# Major Contributor(s): +# [ Copyright (C) 2011 Stephan Bergmann, Red Hat Inc. <sbergman@redhat.com> +# (initial developer) ] +# +# All Rights Reserved. +# +# For minor contributions see the git repository. +# +# Alternatively, the contents of this file may be used under the terms of +# either the GNU General Public License Version 3 or later (the "GPLv3+"), or +# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"), +# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable +# instead of those above. + +UDK_3_0_0 { + global: + sal_getFullTextEncodingData; + local: + *; +}; diff --git a/sal/util/saltextenc.map b/sal/util/saltextenc.map deleted file mode 100644 index e88a0af15723..000000000000 --- a/sal/util/saltextenc.map +++ /dev/null @@ -1,6 +0,0 @@ -UDK_3_0_0 { - global: - Impl_getTextEncodingData; - local: - *; -}; |