jdk/make/sun/awt/mawt.gmk
author jchen
Thu, 23 May 2013 12:16:17 -0700
changeset 17673 33e311ad099a
parent 14342 8435a30053c1
permissions -rw-r--r--
8012629: java.lang.UnsatisfiedLinkError exception throw by getAllFonts() on MacOSX Reviewed-by: bae, prr
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#
14342
8435a30053c1 7197491: update copyright year to match last edit in jdk8 jdk repository
alanb
parents: 12292
diff changeset
     2
# Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2791
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2791
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2791
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2791
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2791
diff changeset
    23
# questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
# to create directory:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
INIT += $(LIB_LOCATION) 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
# Files
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
# mawt.gmk is just used in building X/Motif native code, so
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
# this list of java files is no longer included.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
#include FILES_java_unix.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
include $(BUILDDIR)/sun/awt/FILES_c_unix.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
include $(BUILDDIR)/sun/awt/FILES_export_unix.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
# Check which C files should be built.  Headless uses only
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
# non-motif files.  Also, a version-specific motif file is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
# compiled based on the motif version.
11093
e753252dc8a9 6996291: command line selection of MToolkit by -Dawt.toolkit=sun.awt.motif.MToolkit fails from jdk7 b21 on
serb
parents: 9002
diff changeset
    44
FILES_c = $(FILES_NO_MOTIF_c)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
17673
33e311ad099a 8012629: java.lang.UnsatisfiedLinkError exception throw by getAllFonts() on MacOSX
jchen
parents: 14342
diff changeset
    46
ifeq ($(PLATFORM), macosx)
33e311ad099a 8012629: java.lang.UnsatisfiedLinkError exception throw by getAllFonts() on MacOSX
jchen
parents: 14342
diff changeset
    47
FILES_objc = $(FILES_NO_MOTIF_objc)
33e311ad099a 8012629: java.lang.UnsatisfiedLinkError exception throw by getAllFonts() on MacOSX
jchen
parents: 14342
diff changeset
    48
endif # PLATFORM
33e311ad099a 8012629: java.lang.UnsatisfiedLinkError exception throw by getAllFonts() on MacOSX
jchen
parents: 14342
diff changeset
    49
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
ifeq ($(PLATFORM), solaris)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
  ifneq ($(ARCH), amd64)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    FILES_reorder += reorder-$(ARCH)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
# Rules
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
# Class files should be built & clobbered in make/sun/awt
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
# If removing this line, also reinclude sun_awt.jmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
DONT_CLOBBER_CLASSES = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
ifndef HEADLESS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
ifeq ($(VARIANT), OPT)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
FILES_m = ../awt/mapfile-mawt-vers
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
# Since this library will be living in a subdirectory below the other libraries
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
#   we need to add an extra runpath so that libraries in the upper directory
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
#   are found at runtime.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
LD_RUNPATH_EXTRAS = ..
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
include $(BUILDDIR)/common/Mapfile-vers.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
include $(BUILDDIR)/common/Library.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
$(LIB_LOCATION):
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
	$(MKDIR) -p $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
clean:: 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
# Add to the ambient vpath to pick up files in subdirectories
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/alphacomposite
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/image
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/image/gif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/image/cvutils
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/shell
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/medialib
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/../java2d/opengl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
vpath %.c   $(PLATFORM_SRC)/native/$(PKGDIR)/../java2d/opengl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
vpath %.c   $(PLATFORM_SRC)/native/$(PKGDIR)/../java2d/x11
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/debug
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/../font
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/../java2d
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/../java2d/loops
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/../java2d/pipe
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
vpath %.cpp $(SHARE_SRC)/native/$(PKGDIR)/image
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
vpath %.c   $(PLATFORM_SRC)/native/$(PKGDIR)/robot_child
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
17673
33e311ad099a 8012629: java.lang.UnsatisfiedLinkError exception throw by getAllFonts() on MacOSX
jchen
parents: 14342
diff changeset
   104
ifeq ($(PLATFORM), macosx)
33e311ad099a 8012629: java.lang.UnsatisfiedLinkError exception throw by getAllFonts() on MacOSX
jchen
parents: 14342
diff changeset
   105
vpath %.m   $(call NativeSrcDirList,,native/sun/font)
33e311ad099a 8012629: java.lang.UnsatisfiedLinkError exception throw by getAllFonts() on MacOSX
jchen
parents: 14342
diff changeset
   106
endif # PLATFORM
33e311ad099a 8012629: java.lang.UnsatisfiedLinkError exception throw by getAllFonts() on MacOSX
jchen
parents: 14342
diff changeset
   107
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
# Libraries to link in.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
2791
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 1175
diff changeset
   113
ifeq ($(DEBUG_BINARIES), true)
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 1175
diff changeset
   114
  CFLAGS += -g
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 1175
diff changeset
   115
endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
ifeq ($(HEADLESS),true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
CFLAGS += -DHEADLESS=$(HEADLESS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
CPPFLAGS += -DHEADLESS=$(HEADLESS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
OTHER_LDLIBS =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
LIBXTST = -lXtst
1175
026b52c440fe 6706121: makefile: unnecessary Motif classes compilation in JDK7
yan
parents: 2
diff changeset
   122
ifeq ($(PLATFORM), linux)
026b52c440fe 6706121: makefile: unnecessary Motif classes compilation in JDK7
yan
parents: 2
diff changeset
   123
   ifeq ($(ARCH_DATA_MODEL), 64)
026b52c440fe 6706121: makefile: unnecessary Motif classes compilation in JDK7
yan
parents: 2
diff changeset
   124
   # XXX what about the rest of them?
026b52c440fe 6706121: makefile: unnecessary Motif classes compilation in JDK7
yan
parents: 2
diff changeset
   125
        LIBXT = -lXt
026b52c440fe 6706121: makefile: unnecessary Motif classes compilation in JDK7
yan
parents: 2
diff changeset
   126
    else
026b52c440fe 6706121: makefile: unnecessary Motif classes compilation in JDK7
yan
parents: 2
diff changeset
   127
    # Allows for builds on Debian GNU Linux, X11 is in a different place 
9002
6ee0abf0167f 7030063: AWT support for SE-Embedded integration
dholmes
parents: 5506
diff changeset
   128
       LIBXT = $(firstword $(wildcard $(OPENWIN_LIB)/libXt.a) \
1175
026b52c440fe 6706121: makefile: unnecessary Motif classes compilation in JDK7
yan
parents: 2
diff changeset
   129
                        $(wildcard /usr/lib/libXt.a))
9002
6ee0abf0167f 7030063: AWT support for SE-Embedded integration
dholmes
parents: 5506
diff changeset
   130
       LIBSM = $(firstword $(wildcard $(OPENWIN_LIB)/libSM.a) \
1175
026b52c440fe 6706121: makefile: unnecessary Motif classes compilation in JDK7
yan
parents: 2
diff changeset
   131
                        $(wildcard /usr/lib/libSM.a))
9002
6ee0abf0167f 7030063: AWT support for SE-Embedded integration
dholmes
parents: 5506
diff changeset
   132
       LIBICE = $(firstword $(wildcard $(OPENWIN_LIB)/libICE.a) \
1175
026b52c440fe 6706121: makefile: unnecessary Motif classes compilation in JDK7
yan
parents: 2
diff changeset
   133
                         $(wildcard /usr/lib/libICE.a))
9002
6ee0abf0167f 7030063: AWT support for SE-Embedded integration
dholmes
parents: 5506
diff changeset
   134
       LIBXTST = $(firstword $(wildcard $(OPENWIN_LIB)/libXtst.a) \
1175
026b52c440fe 6706121: makefile: unnecessary Motif classes compilation in JDK7
yan
parents: 2
diff changeset
   135
                         $(wildcard /usr/lib/libXtst.a))
026b52c440fe 6706121: makefile: unnecessary Motif classes compilation in JDK7
yan
parents: 2
diff changeset
   136
   endif
026b52c440fe 6706121: makefile: unnecessary Motif classes compilation in JDK7
yan
parents: 2
diff changeset
   137
endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
# Use -lXmu for EditRes support
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
LIBXMU_DBG	= -lXmu
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
LIBXMU_OPT	=
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
LIBXMU		= $(LIBXMU_$(VARIANT))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
ifeq ($(PLATFORM), solaris)
1175
026b52c440fe 6706121: makefile: unnecessary Motif classes compilation in JDK7
yan
parents: 2
diff changeset
   145
OTHER_LDLIBS = -lXt -lXext $(LIBXTST) $(LIBXMU) -lX11 -lXi
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11093
diff changeset
   148
ifneq (,$(findstring $(PLATFORM), linux macosx))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
OTHER_CFLAGS += -DMLIB_NO_LIBSUNMATH
1175
026b52c440fe 6706121: makefile: unnecessary Motif classes compilation in JDK7
yan
parents: 2
diff changeset
   150
# XXX what is this define below? Isn't it motif-related?
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
OTHER_CFLAGS += -DXMSTRINGDEFINES=1
1175
026b52c440fe 6706121: makefile: unnecessary Motif classes compilation in JDK7
yan
parents: 2
diff changeset
   152
OTHER_LDLIBS =  $(LIBXMU) $(LIBXTST) -lXext $(LIBXT) $(LIBSM) $(LIBICE) -lX11 -lXi
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
# !HEADLESS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
OTHER_LDLIBS += $(JVMLIB) $(LIBCXX) \
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11093
diff changeset
   159
                -lawt $(LIBM) $(LIBDL)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
# Sun CC with -Xa misdefines __STDC__ to 0 (zero).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
# The following will force checking of X11 prototypes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
# 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
ifneq ($(CC_VERSION),gcc)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
CPPFLAGS += -DFUNCPROTO=15
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
# Other extra flags needed for compiling.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
CPPFLAGS += -I$(CUPS_HEADERS_PATH)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
ifndef HEADLESS
1175
026b52c440fe 6706121: makefile: unnecessary Motif classes compilation in JDK7
yan
parents: 2
diff changeset
   175
CPPFLAGS += -I$(OPENWIN_HOME)/include 
026b52c440fe 6706121: makefile: unnecessary Motif classes compilation in JDK7
yan
parents: 2
diff changeset
   176
LDFLAGS  += -L$(OPENWIN_LIB)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
endif # !HEADLESS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
CPPFLAGS += -I$(SHARE_SRC)/native/$(PKGDIR)/debug \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
            -I$(SHARE_SRC)/native/$(PKGDIR)/../font \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
            -I$(PLATFORM_SRC)/native/$(PKGDIR)/../font \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
            -I$(SHARE_SRC)/native/$(PKGDIR)/image \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
	    -I$(SHARE_SRC)/native/$(PKGDIR)/image/cvutils \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
	    -I$(SHARE_SRC)/native/$(PKGDIR)/shell \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
	    -I$(SHARE_SRC)/native/$(PKGDIR)/alphacomposite \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            -I$(SHARE_SRC)/native/$(PKGDIR)/medialib \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
            -I$(PLATFORM_SRC)/native/$(PKGDIR)/medialib \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
	    -I$(SHARE_SRC)/native/$(PKGDIR)/../java2d \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
	    -I$(PLATFORM_SRC)/native/$(PKGDIR)/../java2d \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
	    -I$(SHARE_SRC)/native/$(PKGDIR)/../java2d/loops \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
	    -I$(SHARE_SRC)/native/$(PKGDIR)/../java2d/pipe \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
            -I$(SHARE_SRC)/native/$(PKGDIR)/../java2d/opengl \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
            -I$(PLATFORM_SRC)/native/$(PKGDIR)/../java2d/opengl \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            -I$(PLATFORM_SRC)/native/$(PKGDIR)/../java2d/x11 \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        -I$(SHARE_SRC)/native/$(PKGDIR)/../dc/doe \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        -I$(SHARE_SRC)/native/$(PKGDIR)/../dc/path \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
            -I$(PLATFORM_SRC)/native/$(PKGDIR)/../jdga \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        -I$(PLATFORM_SRC)/native/$(PKGDIR) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        $(EVENT_MODEL)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11093
diff changeset
   202
ifeq ($(PLATFORM), macosx)
17673
33e311ad099a 8012629: java.lang.UnsatisfiedLinkError exception throw by getAllFonts() on MacOSX
jchen
parents: 14342
diff changeset
   203
CPPFLAGS += -I$(CUPS_HEADERS_PATH) \
33e311ad099a 8012629: java.lang.UnsatisfiedLinkError exception throw by getAllFonts() on MacOSX
jchen
parents: 14342
diff changeset
   204
			$(call NativeSrcDirList,-I,native/sun/awt) \
33e311ad099a 8012629: java.lang.UnsatisfiedLinkError exception throw by getAllFonts() on MacOSX
jchen
parents: 14342
diff changeset
   205
			$(call NativeSrcDirList,-I,native/sun/font)
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11093
diff changeset
   206
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11093
diff changeset
   207
ifndef HEADLESS
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11093
diff changeset
   208
CPPFLAGS += -I$(MOTIF_DIR)/include \
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11093
diff changeset
   209
            -I$(OPENWIN_HOME)/include 
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11093
diff changeset
   210
LDFLAGS  += -L$(MOTIF_LIB) -L$(OPENWIN_LIB)
17673
33e311ad099a 8012629: java.lang.UnsatisfiedLinkError exception throw by getAllFonts() on MacOSX
jchen
parents: 14342
diff changeset
   211
else
33e311ad099a 8012629: java.lang.UnsatisfiedLinkError exception throw by getAllFonts() on MacOSX
jchen
parents: 14342
diff changeset
   212
LDFLAGS  += -framework Accelerate \
33e311ad099a 8012629: java.lang.UnsatisfiedLinkError exception throw by getAllFonts() on MacOSX
jchen
parents: 14342
diff changeset
   213
			-framework ApplicationServices \
33e311ad099a 8012629: java.lang.UnsatisfiedLinkError exception throw by getAllFonts() on MacOSX
jchen
parents: 14342
diff changeset
   214
			-framework Cocoa \
33e311ad099a 8012629: java.lang.UnsatisfiedLinkError exception throw by getAllFonts() on MacOSX
jchen
parents: 14342
diff changeset
   215
			-F/System/Library/Frameworks/JavaVM.framework/Frameworks \
33e311ad099a 8012629: java.lang.UnsatisfiedLinkError exception throw by getAllFonts() on MacOSX
jchen
parents: 14342
diff changeset
   216
			-framework JavaNativeFoundation \
33e311ad099a 8012629: java.lang.UnsatisfiedLinkError exception throw by getAllFonts() on MacOSX
jchen
parents: 14342
diff changeset
   217
			-framework JavaRuntimeSupport
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11093
diff changeset
   218
endif # !HEADLESS
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11093
diff changeset
   219
endif # PLATFORM
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11093
diff changeset
   220
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
ifeq ($(PLATFORM), linux)
9002
6ee0abf0167f 7030063: AWT support for SE-Embedded integration
dholmes
parents: 5506
diff changeset
   222
  # Checking for the X11/extensions headers at the additional location
6ee0abf0167f 7030063: AWT support for SE-Embedded integration
dholmes
parents: 5506
diff changeset
   223
  CPPFLAGS += -I$(firstword $(wildcard $(OPENWIN_HOME)/include/X11/extensions) \
6ee0abf0167f 7030063: AWT support for SE-Embedded integration
dholmes
parents: 5506
diff changeset
   224
                        $(wildcard /usr/include/X11/extensions))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
12292
0066b3386371 7155585: Fix ifeq errors in makefiles [macosx]
michaelm
parents: 12047
diff changeset
   227
ifeq ($(PLATFORM), macosx)
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11093
diff changeset
   228
  CPPFLAGS += -I$(OPENWIN_HOME)/include/X11/extensions \
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11093
diff changeset
   229
              -I$(OPENWIN_HOME)/include 
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11093
diff changeset
   230
endif
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11093
diff changeset
   231
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
ifeq ($(PLATFORM), solaris)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
  CPPFLAGS += -I$(OPENWIN_HOME)/include/X11/extensions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11093
diff changeset
   236
ifeq ($(PLATFORM), macosx)
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11093
diff changeset
   237
  CPPFLAGS += -DX11_PATH=\"$(X11_PATH)\" -DPACKAGE_PATH=\"$(PACKAGE_PATH)\"
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11093
diff changeset
   238
endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
LDFLAGS += -L$(LIBDIR)/$(LIBARCH)/$(TSOBJDIR) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
	   $(AWT_RUNPATH)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
CLASSES.export += java.io.InputStream \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
		  java.lang.ThreadGroup
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245