Added initialization of static data members for template classes for Mac OS X
This commit is contained in:
parent
331224c215
commit
4bae27caf8
1 changed files with 9 additions and 2 deletions
|
@ -2,9 +2,9 @@
|
|||
#
|
||||
# $RCSfile: makefile.mk,v $
|
||||
#
|
||||
# $Revision: 1.2 $
|
||||
# $Revision: 1.3 $
|
||||
#
|
||||
# last change: $Author: jbu $ $Date: 2000-09-29 08:42:05 $
|
||||
# last change: $Author: pluby $ $Date: 2000-10-09 16:29:42 $
|
||||
#
|
||||
# The Contents of this file are made available subject to the terms of
|
||||
# either of the following licenses
|
||||
|
@ -104,6 +104,13 @@ SLOFILES= \
|
|||
$(SLO)$/urp_bridgeimpl.obj \
|
||||
$(SLO)$/urp_propertyobject.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)$/staticmbremoteurp.obj
|
||||
.ENDIF
|
||||
|
||||
SHL1TARGET= $(TARGET)
|
||||
|
||||
SHL1STDLIBS=\
|
||||
|
|
Loading…
Reference in a new issue