diff options
author | Michael Stahl <mstahl@redhat.com> | 2011-11-18 17:14:04 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2011-11-18 22:24:21 +0100 |
commit | eedfbf5b8b99049753f444ea71e0944a69dbc60c (patch) | |
tree | 1a31feb9202cd69d724512528e8488f108586487 /testtools | |
parent | 6c1ac01a4ac425456cb14e4ba34a3a2d9286453b (diff) |
fdo#42865: let's try map file for windows only
Diffstat (limited to 'testtools')
-rw-r--r-- | testtools/source/bridgetest/makefile.mk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testtools/source/bridgetest/makefile.mk b/testtools/source/bridgetest/makefile.mk index 8d2f21b25d31..142319085936 100644 --- a/testtools/source/bridgetest/makefile.mk +++ b/testtools/source/bridgetest/makefile.mk @@ -83,7 +83,11 @@ SHL1STDLIBS= \ SHL1LIBS= $(LIB1TARGET) SHL1DEF= $(MISC)$/$(SHL1TARGET).def DEF1NAME= $(SHL1TARGET) +.IF "$(GUI)"=="WNT" SHL1VERSIONMAP = $(SOLARENV)/src/component.map +.ELSE # just a quick hack for GCC fdo#42865 +SHL1USE_EXPORTS = name +.ENDIF # ---- test object ---- @@ -102,7 +106,12 @@ SHL2STDLIBS= \ SHL2LIBS= $(LIB2TARGET) SHL2DEF= $(MISC)$/$(SHL2TARGET).def DEF2NAME= $(SHL2TARGET) +.IF "$(GUI)"=="WNT" SHL2VERSIONMAP = $(SOLARENV)/src/component.map +.ELSE # just a quick hack for GCC fdo#42865 +SHL2USE_EXPORTS = name +.ENDIF + SHL3TARGET = $(ENFORCEDSHLPREFIX)constructors.uno SHL3OBJS = $(SLO)$/constructors.obj |