summaryrefslogtreecommitdiffstats
path: root/dbaccess/util/makefile.pmk
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2007-07-06 07:46:53 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2007-07-06 07:46:53 +0000
commit692111189c4a29011124b5737990a681cb4d3168 (patch)
tree0c8663b52204da4078a0d398c1f062bd703674d0 /dbaccess/util/makefile.pmk
parentINTEGRATION: CWS oj14 (1.25.8); FILE MERGED (diff)
downloadcore-692111189c4a29011124b5737990a681cb4d3168.tar.gz
core-692111189c4a29011124b5737990a681cb4d3168.zip
INTEGRATION: CWS oj14 (1.1.2); FILE ADDED
2006/01/03 08:57:09 oj 1.1.2.1: makefile ext
Diffstat (limited to 'dbaccess/util/makefile.pmk')
-rw-r--r--dbaccess/util/makefile.pmk51
1 files changed, 51 insertions, 0 deletions
diff --git a/dbaccess/util/makefile.pmk b/dbaccess/util/makefile.pmk
new file mode 100644
index 000000000000..fdaf2fd57d41
--- /dev/null
+++ b/dbaccess/util/makefile.pmk
@@ -0,0 +1,51 @@
+#*************************************************************************
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# $RCSfile: makefile.pmk,v $
+#
+# $Revision: 1.2 $
+#
+# last change: $Author: rt $ $Date: 2007-07-06 08:46:53 $
+#
+# The Contents of this file are made available subject to
+# the terms of GNU Lesser General Public License Version 2.1.
+#
+#
+# GNU Lesser General Public License Version 2.1
+# =============================================
+# Copyright 2005 by Sun Microsystems, Inc.
+# 901 San Antonio Road, Palo Alto, CA 94303, USA
+#
+# 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.
+#
+# 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.
+#
+# 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
+#
+#*************************************************************************
+
+# define DBACCESS_DLLIMPLEMENTATION (see @ dbaccessdllapi.h)
+CDEFS += -DDBACCESS_DLLIMPLEMENTATION
+
+# set default symbol visibility / scope to hidden
+.IF "$(COMNAME)" == "gcc3"
+.IF "$(HAVE_GCC_VISIBILITY_FEATURE)" == "TRUE"
+ CFLAGS += -fvisibility=hidden
+.ENDIF # HAVE_GCC_VISIBILITY_FEATURE
+.ENDIF # gcc3
+
+.IF "$(COMNAME)" == "sunpro5"
+.IF "$(CCNUMVER)" >= "00050005"
+ CFLAGS += -xldscope=hidden
+.ENDIF # 5.5
+.ENDIF # sunpro5
+