INTEGRATION: CWS tune03 (1.1.1.1.542); FILE MERGED

2004/08/19 12:54:26 mhu 1.1.1.1.542.2: #i29979# Disabled (temporarily) GCC -fvisibility=hidden (until exception typeinfo is somehow exported).
2004/08/08 12:54:19 mhu 1.1.1.1.542.1: #i29979# Added SD_DLLPUBLIC/PRIVATE (see sddllapi.h) to exported symbols/classes.
This commit is contained in:
Rüdiger Timm 2004-08-23 07:24:00 +00:00
parent a2b1eda193
commit daea25cd73

View file

@ -2,9 +2,9 @@
#
# $RCSfile: makefile.pmk,v $
#
# $Revision: 1.1.1.1 $
# $Revision: 1.2 $
#
# last change: $Author: hr $ $Date: 2000-09-18 16:48:46 $
# last change: $Author: rt $ $Date: 2004-08-23 08:24:00 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@ -60,3 +60,19 @@
#
#*************************************************************************
INCPRE+=$(SOLARINCDIR)$/offuh
# define SD_DLLIMPLEMENTATION (see @ sddllapi.h)
CDEFS += -DSD_DLLIMPLEMENTATION
# set default symbol visibility / scope to hidden
.IF "$(COMNAME)" == "gcc3"
.IF "$(CCNUMVER)" >= "000300040000"
#CFLAGS += -fvisibility=hidden
.ENDIF # 3.4.0
.ENDIF # gcc3
.IF "$(COMNAME)" == "sunpro5"
.IF "$(CCNUMVER)" >= "00050005"
CFLAGS += -xldscope=hidden
.ENDIF # 5.5
.ENDIF # sunpro5