2000-09-18 11:15:01 -05:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
2005-09-08 20:10:52 -05:00
|
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 11:15:01 -05:00
|
|
|
#
|
2005-09-08 20:10:52 -05:00
|
|
|
# $RCSfile: sw.mk,v $
|
2000-09-18 11:15:01 -05:00
|
|
|
#
|
2006-08-14 09:31:42 -05:00
|
|
|
# $Revision: 1.14 $
|
2000-09-18 11:15:01 -05:00
|
|
|
#
|
2006-08-14 09:31:42 -05:00
|
|
|
# last change: $Author: hr $ $Date: 2006-08-14 15:31:42 $
|
2000-09-18 11:15:01 -05:00
|
|
|
#
|
2005-09-08 20:10:52 -05:00
|
|
|
# The Contents of this file are made available subject to
|
|
|
|
# the terms of GNU Lesser General Public License Version 2.1.
|
2000-09-18 11:15:01 -05:00
|
|
|
#
|
|
|
|
#
|
2005-09-08 20:10:52 -05:00
|
|
|
# GNU Lesser General Public License Version 2.1
|
|
|
|
# =============================================
|
|
|
|
# Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
# 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2000-09-18 11:15:01 -05:00
|
|
|
#
|
2005-09-08 20:10:52 -05:00
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License version 2.1, as published by the Free Software Foundation.
|
2000-09-18 11:15:01 -05:00
|
|
|
#
|
2005-09-08 20:10:52 -05:00
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Lesser General Public License for more details.
|
2000-09-18 11:15:01 -05:00
|
|
|
#
|
2005-09-08 20:10:52 -05:00
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
# MA 02111-1307 USA
|
2000-09-18 11:15:01 -05:00
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
|
|
|
# CDEFS=$(CDEFS) -DXXX
|
|
|
|
|
|
|
|
# Bereiche aktivieren
|
|
|
|
|
|
|
|
#CDEFS+=-DXML_CORE_API
|
2002-03-06 04:49:01 -06:00
|
|
|
CDEFS+=-DACCESSIBLE_LAYOUT
|
2000-09-18 11:15:01 -05:00
|
|
|
|
2004-08-23 02:38:34 -05:00
|
|
|
# define SW_DLLIMPLEMENTATION (see @ swdllapi.h)
|
|
|
|
CDEFS += -DSW_DLLIMPLEMENTATION
|
|
|
|
|
|
|
|
# set default symbol visibility / scope to hidden
|
|
|
|
.IF "$(COMNAME)" == "gcc3"
|
2004-10-27 09:24:10 -05:00
|
|
|
.IF "$(HAVE_GCC_VISIBILITY_FEATURE)" == "TRUE"
|
2004-10-22 04:57:57 -05:00
|
|
|
CFLAGS += -fvisibility=hidden
|
2004-10-27 09:24:10 -05:00
|
|
|
.ENDIF # "$(HAVE_GCC_VISIBILITY_FEATURE)" == "TRUE"
|
2004-08-23 02:38:34 -05:00
|
|
|
.ENDIF # gcc3
|
|
|
|
|
|
|
|
.IF "$(COMNAME)" == "sunpro5"
|
|
|
|
.IF "$(CCNUMVER)" >= "00050005"
|
|
|
|
CFLAGS += -xldscope=hidden
|
|
|
|
.ENDIF # 5.5
|
|
|
|
.ENDIF # sunpro5
|
|
|
|
|
2000-09-18 11:15:01 -05:00
|
|
|
# ------------------------------------------------------------------------
|