source-dirs.m4 revision 2381:74485ef9aacb
1#
2# Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved.
3# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4#
5# This code is free software; you can redistribute it and/or modify it
6# under the terms of the GNU General Public License version 2 only, as
7# published by the Free Software Foundation.  Oracle designates this
8# particular file as subject to the "Classpath" exception as provided
9# by Oracle in the LICENSE file that accompanied this code.
10#
11# This code is distributed in the hope that it will be useful, but WITHOUT
12# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14# version 2 for more details (a copy is included in the LICENSE file that
15# accompanied this code).
16#
17# You should have received a copy of the GNU General Public License version
18# 2 along with this work; if not, write to the Free Software Foundation,
19# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20#
21# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22# or visit www.oracle.com if you need additional information or have any
23# questions.
24#
25
26AC_DEFUN_ONCE([SRCDIRS_SETUP_TOPDIRS],
27[
28  # Where are the sources.
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)
43])
44
45AC_DEFUN_ONCE([SRCDIRS_SETUP_ALTERNATIVE_TOPDIRS],
46[
47  # This feature is no longer supported.
48
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)
59])
60
61AC_DEFUN_ONCE([SRCDIRS_SETUP_OUTPUT_DIRS],
62[
63  BUILD_OUTPUT="$OUTPUT_ROOT"
64  AC_SUBST(BUILD_OUTPUT)
65  JDK_OUTPUTDIR="$OUTPUT_ROOT/jdk"
66
67  BASIC_DEPRECATED_ARG_WITH(import_hotspot)
68])
69
70################################################################################
71# Define a mechanism for importing extra prebuilt modules
72#
73
74AC_DEFUN_ONCE([SRCDIRS_SETUP_IMPORT_MODULES],
75[
76  AC_ARG_WITH(import-modules, [AS_HELP_STRING([--with-import-modules],
77      [import a set of prebuilt modules either as a zip file or an exploded directory])])
78
79  if test "x$with_import_modules" != x \
80      && test "x$with_import_modules" != "xno"; then
81    if test -d "$with_import_modules"; then
82      IMPORT_MODULES_TOPDIR="$with_import_modules"
83      BASIC_FIXUP_PATH([IMPORT_MODULES_TOPDIR])
84    elif test -e "$with_import_modules"; then
85      IMPORT_MODULES_TOPDIR="$CONFIGURESUPPORT_OUTPUTDIR/import-modules"
86      $RM -rf "$IMPORT_MODULES_TOPDIR"
87      $MKDIR -p "$IMPORT_MODULES_TOPDIR"
88      if ! $UNZIP -q "$with_import_modules" -d "$IMPORT_MODULES_TOPDIR"; then
89        AC_MSG_ERROR([--with-import-modules="$with_import_modules" must point to a dir or a zip file])
90      fi
91    else
92      AC_MSG_ERROR([--with-import-modules="$with_import_modules" must point to a dir or a zip file])
93    fi
94  fi
95
96  if test -d "$IMPORT_MODULES_TOPDIR/modules"; then
97    IMPORT_MODULES_CLASSES="$IMPORT_MODULES_TOPDIR/modules"
98  fi
99  if test -d "$IMPORT_MODULES_TOPDIR/modules_cmds"; then
100    IMPORT_MODULES_CMDS="$IMPORT_MODULES_TOPDIR/modules_cmds"
101  fi
102  if test -d "$IMPORT_MODULES_TOPDIR/modules_libs"; then
103    IMPORT_MODULES_LIBS="$IMPORT_MODULES_TOPDIR/modules_libs"
104  fi
105  if test -d "$IMPORT_MODULES_TOPDIR/modules_conf"; then
106    IMPORT_MODULES_CONF="$IMPORT_MODULES_TOPDIR/modules_conf"
107  fi
108  if test -d "$IMPORT_MODULES_TOPDIR/modules_legal"; then
109    IMPORT_MODULES_LEGAL="$IMPORT_MODULES_TOPDIR/modules_legal"
110  fi
111  if test -d "$IMPORT_MODULES_TOPDIR/modules_man"; then
112    IMPORT_MODULES_MAN="$IMPORT_MODULES_TOPDIR/modules_man"
113  fi
114  if test -d "$IMPORT_MODULES_TOPDIR/modules_src"; then
115    IMPORT_MODULES_SRC="$IMPORT_MODULES_TOPDIR/modules_src"
116  fi
117  # Workaround for using different imported module-info.java in Jake due to a
118  # change in format. Remove once new format is standard in JDK 9 and javafx
119  # delivers just that.
120  if test -d "$IMPORT_MODULES_TOPDIR/modules_src_jake"; then
121    IMPORT_MODULES_SRC="$IMPORT_MODULES_TOPDIR/modules_src_jake $IMPORT_MODULES_SRC"
122  fi
123  if test -d "$IMPORT_MODULES_TOPDIR/make"; then
124    IMPORT_MODULES_MAKE="$IMPORT_MODULES_TOPDIR/make"
125  fi
126
127  AC_SUBST(IMPORT_MODULES_CLASSES)
128  AC_SUBST(IMPORT_MODULES_CMDS)
129  AC_SUBST(IMPORT_MODULES_LIBS)
130  AC_SUBST(IMPORT_MODULES_CONF)
131  AC_SUBST(IMPORT_MODULES_SRC)
132  AC_SUBST(IMPORT_MODULES_MAKE)
133])
134