summaryrefslogtreecommitdiff
path: root/bridges/source
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2000-12-14 13:41:13 +0000
committerDaniel Boelzle <dbo@openoffice.org>2000-12-14 13:41:13 +0000
commit122e985b173b02a5650ec192c4b8cc36025c48c8 (patch)
tree66683dcdf8673af22b047f28e9c2cc450bb45ac2 /bridges/source
parentb65196c972c31a304540a96e8c0ea7f8aa41ad40 (diff)
fixed exports for macosX to be prefixed with libname
Diffstat (limited to 'bridges/source')
-rw-r--r--bridges/source/remote/urp/makefile.mk6
-rw-r--r--bridges/source/remote/urp/urp_environment.cxx11
2 files changed, 11 insertions, 6 deletions
diff --git a/bridges/source/remote/urp/makefile.mk b/bridges/source/remote/urp/makefile.mk
index 3eb061fb6e20..e641e67e1563 100644
--- a/bridges/source/remote/urp/makefile.mk
+++ b/bridges/source/remote/urp/makefile.mk
@@ -2,9 +2,9 @@
#
# $RCSfile: makefile.mk,v $
#
-# $Revision: 1.6 $
+# $Revision: 1.7 $
#
-# last change: $Author: hjs $ $Date: 2000-11-16 14:23:35 $
+# last change: $Author: dbo $ $Date: 2000-12-14 14:41:13 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@@ -76,6 +76,8 @@ NO_BSYMBOLIC=TRUE
# ------------------------------------------------------------------
+CFLAGS += -DBRIDGE_NAME=$(TARGET)
+
#CPPUMAKERFLAGS += -C
UNOUCRDEP=$(SOLARBINDIR)$/udkapi.rdb
UNOUCRRDB=$(SOLARBINDIR)$/udkapi.rdb
diff --git a/bridges/source/remote/urp/urp_environment.cxx b/bridges/source/remote/urp/urp_environment.cxx
index fbac6812c67a..085cfd1e632d 100644
--- a/bridges/source/remote/urp/urp_environment.cxx
+++ b/bridges/source/remote/urp/urp_environment.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: urp_environment.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: jbu $ $Date: 2000-12-04 11:19:13 $
+ * last change: $Author: dbo $ $Date: 2000-12-14 14:41:13 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -59,6 +59,8 @@
*
************************************************************************/
+#include <bridges/export.h>
+
#include <assert.h>
#include <stdio.h>
@@ -396,7 +398,8 @@ using namespace bridges_urp;
//##################################################################################################
-extern "C" SAL_DLLEXPORT void SAL_CALL uno_initEnvironment( uno_Environment * pEnvRemote )
+extern "C" SAL_DLLEXPORT void SAL_CALL BRIDGE_EXPORT(uno_initEnvironment)(
+ uno_Environment * pEnvRemote )
{
// set C-virtual methods
pEnvRemote->environmentDisposing = RemoteEnvironment::thisDisposing;
@@ -482,7 +485,7 @@ extern "C" SAL_DLLEXPORT void SAL_CALL uno_initEnvironment( uno_Environment * pE
//##################################################################################################
-extern "C" SAL_DLLEXPORT void SAL_CALL uno_ext_getMapping(
+extern "C" SAL_DLLEXPORT void SAL_CALL BRIDGE_EXPORT(uno_ext_getMapping)(
uno_Mapping ** ppMapping,
uno_Environment * pFrom,
uno_Environment * pTo )