diff options
author | Kai Sommerfeld <kso@openoffice.org> | 2002-06-25 12:04:58 +0000 |
---|---|---|
committer | Kai Sommerfeld <kso@openoffice.org> | 2002-06-25 12:04:58 +0000 |
commit | 146ffeae3a4f39f1ef26b59cbccbe926685b3aa5 (patch) | |
tree | f5f2661a5e19bc398c048a16c67f207ff1bc4a66 /ucb/source/ucp/file | |
parent | 73b0b6c119be2df2bc58cb4e96b2c6b419c8511b (diff) |
Replaced filter file by exports file.
Diffstat (limited to 'ucb/source/ucp/file')
-rw-r--r-- | ucb/source/ucp/file/exports.map | 8 | ||||
-rw-r--r-- | ucb/source/ucp/file/makefile.mk | 28 |
2 files changed, 16 insertions, 20 deletions
diff --git a/ucb/source/ucp/file/exports.map b/ucb/source/ucp/file/exports.map new file mode 100644 index 000000000000..a8bd267fc9e9 --- /dev/null +++ b/ucb/source/ucp/file/exports.map @@ -0,0 +1,8 @@ +FIL_1_0 { + global: + component_getImplementationEnvironment; + component_writeInfo; + component_getFactory; + local: + *; +}; diff --git a/ucb/source/ucp/file/makefile.mk b/ucb/source/ucp/file/makefile.mk index 7ad512fbf6ef..6e13a37790df 100644 --- a/ucb/source/ucp/file/makefile.mk +++ b/ucb/source/ucp/file/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.9 $ +# $Revision: 1.10 $ # -# last change: $Author: abi $ $Date: 2001-11-19 11:11:29 $ +# last change: $Author: kso $ $Date: 2002-06-25 13:04:58 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -104,11 +104,13 @@ SHL1STDLIBS=\ $(UCBHELPERLIB) \ $(UNOTOOLSLIB) -DEF1DEPN=$(MISC)$/$(SHL1TARGET).flt +.IF "$(OS)"=="MACOSX" +.ELSE +SHL1VERSIONMAP=exports.map +.ENDIF + DEF1NAME=$(SHL1TARGET) -DEF1EXPORT1 =component_getImplementationEnvironment -DEF1EXPORT2 =component_writeInfo -DEF1EXPORT3 =component_getFactory +DEF1EXPORTFILE=exports.dxp DEF1DES=UCB : File System Content Provider # Make symbol renaming match library name for Mac OS X @@ -118,17 +120,3 @@ SYMBOLPREFIX=$(TARGET)$(UCPFILE_MAJOR) .INCLUDE: target.mk -$(MISC)$/$(SHL1TARGET).flt: - @echo ------------------------------ - @echo Making: $@ -# @echo Type >> $@ - @echo cpp >> $@ - @echo m_ >> $@ - @echo rtl >> $@ - @echo vos >> $@ - @echo component_getImplementationEnvironment >> $@ - @echo component_writeInfo >> $@ - @echo component_getFactory >> $@ -.IF "$(COM)"=="MSC" - @echo ??_ >> $@ -.ENDIF # COM MSC |