diff options
author | Patrick Luby <pluby@openoffice.org> | 2000-10-06 15:30:31 +0000 |
---|---|---|
committer | Patrick Luby <pluby@openoffice.org> | 2000-10-06 15:30:31 +0000 |
commit | c68f4b72714456b782b64ff48904b4f43362db41 (patch) | |
tree | 0fc44d0e576655b773e75984137d22daf0da52e3 /UnoControls/source/base | |
parent | 6b518cfbebb6dd7cf462ad116f083680c3e4823b (diff) |
Added initialization of Sequence<X>::s_pType static data members for Mac OS X
Diffstat (limited to 'UnoControls/source/base')
-rw-r--r-- | UnoControls/source/base/makefile.mk | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/UnoControls/source/base/makefile.mk b/UnoControls/source/base/makefile.mk index 584aefb810ec..266225ff1109 100644 --- a/UnoControls/source/base/makefile.mk +++ b/UnoControls/source/base/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.1.1.1 $ +# $Revision: 1.2 $ # -# last change: $Author: hr $ $Date: 2000-09-18 16:11:17 $ +# last change: $Author: pluby $ $Date: 2000-10-06 16:30:31 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -78,6 +78,13 @@ SLOFILES= $(SLO)$/multiplexer.obj \ $(SLO)$/basecontainercontrol.obj \ $(SLO)$/registercontrols.obj +# NETBSD: somewhere we have to instantiate the static data members. +# NETBSD-1.2.1 doesn't know about weak symbols so the default mechanism for GCC won't work. +# SCO and MACOSX: the linker does know about weak symbols, but we can't ignore multiple defined symbols +.IF "$(OS)"=="NETBSD" || "$(OS)"=="SCO" || "$(OS)$(COM)"=="OS2GCC" || "$(OS)"=="MACOSX" +SLOFILES+=$(SLO)$/staticmbbase.obj +.ENDIF + #LIB1TARGET= $(SLB)$/$(TARGET).lib #LIB1OBJFILES= $(SLOFILES) |