author | kbarrett |
Tue, 17 Nov 2015 16:40:52 -0500 | |
changeset 34148 | 6efbc7ffd767 |
parent 33442 | f75b19e407af |
child 36506 | 17612cee3530 |
permissions | -rw-r--r-- |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1 |
# |
33442 | 2 |
# Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved. |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
4 |
# |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
5 |
# This code is free software; you can redistribute it and/or modify it |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
7 |
# published by the Free Software Foundation. Oracle designates this |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
8 |
# particular file as subject to the "Classpath" exception as provided |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
10 |
# |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
15 |
# accompanied this code). |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
16 |
# |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
17 |
# You should have received a copy of the GNU General Public License version |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
20 |
# |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
22 |
# or visit www.oracle.com if you need additional information or have any |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
23 |
# questions. |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
24 |
# |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
25 |
|
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
26 |
AC_DEFUN_ONCE([SRCDIRS_SETUP_TOPDIRS], |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
27 |
[ |
33442 | 28 |
# Where are the sources. |
20363 | 29 |
LANGTOOLS_TOPDIR="$SRC_ROOT/langtools" |
30 |
CORBA_TOPDIR="$SRC_ROOT/corba" |
|
31 |
JAXP_TOPDIR="$SRC_ROOT/jaxp" |
|
32 |
JAXWS_TOPDIR="$SRC_ROOT/jaxws" |
|
33 |
HOTSPOT_TOPDIR="$SRC_ROOT/hotspot" |
|
34 |
NASHORN_TOPDIR="$SRC_ROOT/nashorn" |
|
35 |
JDK_TOPDIR="$SRC_ROOT/jdk" |
|
36 |
AC_SUBST(LANGTOOLS_TOPDIR) |
|
37 |
AC_SUBST(CORBA_TOPDIR) |
|
38 |
AC_SUBST(JAXP_TOPDIR) |
|
39 |
AC_SUBST(JAXWS_TOPDIR) |
|
40 |
AC_SUBST(HOTSPOT_TOPDIR) |
|
41 |
AC_SUBST(NASHORN_TOPDIR) |
|
42 |
AC_SUBST(JDK_TOPDIR) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
43 |
]) |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
44 |
|
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
45 |
AC_DEFUN_ONCE([SRCDIRS_SETUP_ALTERNATIVE_TOPDIRS], |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
46 |
[ |
33442 | 47 |
# This feature is no longer supported. |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
48 |
|
33442 | 49 |
BASIC_DEPRECATED_ARG_WITH(add-source-root) |
50 |
BASIC_DEPRECATED_ARG_WITH(override-source-root) |
|
51 |
BASIC_DEPRECATED_ARG_WITH(adds-and-overrides) |
|
52 |
BASIC_DEPRECATED_ARG_WITH(override-langtools) |
|
53 |
BASIC_DEPRECATED_ARG_WITH(override-corba) |
|
54 |
BASIC_DEPRECATED_ARG_WITH(override-jaxp) |
|
55 |
BASIC_DEPRECATED_ARG_WITH(override-jaxws) |
|
56 |
BASIC_DEPRECATED_ARG_WITH(override-hotspot) |
|
57 |
BASIC_DEPRECATED_ARG_WITH(override-nashorn) |
|
58 |
BASIC_DEPRECATED_ARG_WITH(override-jdk) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
59 |
]) |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
60 |
|
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
61 |
AC_DEFUN_ONCE([SRCDIRS_SETUP_OUTPUT_DIRS], |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
62 |
[ |
20363 | 63 |
BUILD_OUTPUT="$OUTPUT_ROOT" |
64 |
AC_SUBST(BUILD_OUTPUT) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
65 |
|
20363 | 66 |
HOTSPOT_DIST="$OUTPUT_ROOT/hotspot/dist" |
67 |
BUILD_HOTSPOT=true |
|
68 |
AC_SUBST(HOTSPOT_DIST) |
|
69 |
AC_SUBST(BUILD_HOTSPOT) |
|
70 |
AC_ARG_WITH(import-hotspot, [AS_HELP_STRING([--with-import-hotspot], |
|
71 |
[import hotspot binaries from this jdk image or hotspot build dist dir instead of building from source])]) |
|
72 |
if test "x$with_import_hotspot" != x; then |
|
14378
0ef5d942b98e
8002028: build-infra: need no-hotspot partial build
tbell
parents:
13697
diff
changeset
|
73 |
CURDIR="$PWD" |
0ef5d942b98e
8002028: build-infra: need no-hotspot partial build
tbell
parents:
13697
diff
changeset
|
74 |
cd "$with_import_hotspot" |
0ef5d942b98e
8002028: build-infra: need no-hotspot partial build
tbell
parents:
13697
diff
changeset
|
75 |
HOTSPOT_DIST="`pwd`" |
0ef5d942b98e
8002028: build-infra: need no-hotspot partial build
tbell
parents:
13697
diff
changeset
|
76 |
cd "$CURDIR" |
0ef5d942b98e
8002028: build-infra: need no-hotspot partial build
tbell
parents:
13697
diff
changeset
|
77 |
if ! (test -d $HOTSPOT_DIST/lib && test -d $HOTSPOT_DIST/jre/lib); then |
20363 | 78 |
AC_MSG_ERROR([You have to import hotspot from a full jdk image or hotspot build dist dir!]) |
14378
0ef5d942b98e
8002028: build-infra: need no-hotspot partial build
tbell
parents:
13697
diff
changeset
|
79 |
fi |
0ef5d942b98e
8002028: build-infra: need no-hotspot partial build
tbell
parents:
13697
diff
changeset
|
80 |
AC_MSG_CHECKING([if hotspot should be imported]) |
0ef5d942b98e
8002028: build-infra: need no-hotspot partial build
tbell
parents:
13697
diff
changeset
|
81 |
AC_MSG_RESULT([yes from $HOTSPOT_DIST]) |
0ef5d942b98e
8002028: build-infra: need no-hotspot partial build
tbell
parents:
13697
diff
changeset
|
82 |
BUILD_HOTSPOT=false |
20363 | 83 |
fi |
14378
0ef5d942b98e
8002028: build-infra: need no-hotspot partial build
tbell
parents:
13697
diff
changeset
|
84 |
|
20363 | 85 |
JDK_OUTPUTDIR="$OUTPUT_ROOT/jdk" |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
86 |
]) |