changeset in /hg/icedtea6: Backport IcedTea7 support for --enabl...
Andrew John Hughes
gnu_andrew at member.fsf.org
Tue Dec 9 13:42:29 PST 2008
changeset 7e85e3fd25d7 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=7e85e3fd25d7
description:
Backport IcedTea7 support for --enable-hg.
2008-12-09 Andrew John Hughes <gnu_andrew at member.fsf.org>
* Makefile.am:
Support downloading from the Mercurial repository.
* acinclude.m4:
(ENABLE_HG): New macro.
* configure.ac:
Check for --enable-hg.
diffstat:
4 files changed, 61 insertions(+), 1 deletion(-)
ChangeLog | 9 +++++++++
Makefile.am | 30 +++++++++++++++++++++++++++++-
acinclude.m4 | 22 ++++++++++++++++++++++
configure.ac | 1 +
diffs (123 lines):
diff -r 62b109d14405 -r 7e85e3fd25d7 ChangeLog
--- a/ChangeLog Tue Dec 09 20:09:24 2008 +0000
+++ b/ChangeLog Tue Dec 09 21:42:14 2008 +0000
@@ -1,3 +1,12 @@ 2008-12-09 Andrew John Hughes <gnu_and
+2008-12-09 Andrew John Hughes <gnu_andrew at member.fsf.org>
+
+ * Makefile.am:
+ Support downloading from the Mercurial repository.
+ * acinclude.m4:
+ (ENABLE_HG): New macro.
+ * configure.ac:
+ Check for --enable-hg.
+
2008-12-09 Andrew John Hughes <gnu_andrew at member.fsf.org>
* Makefile.am:
diff -r 62b109d14405 -r 7e85e3fd25d7 Makefile.am
--- a/Makefile.am Tue Dec 09 20:09:24 2008 +0000
+++ b/Makefile.am Tue Dec 09 21:42:14 2008 +0000
@@ -290,11 +290,16 @@ snapshot: dist
# Download OpenJDK sources.
OPENJDK_URL = http://download.java.net/openjdk/jdk6/promoted/$(OPENJDK_VERSION)/
HOTSPOT_URL = http://hg.openjdk.java.net/jdk7/hotspot/hotspot/archive/
+OPENJDK_HG_URL = http://hg.openjdk.java.net/jdk6/jdk6
if USE_ALT_OPENJDK_SRC_ZIP
OPENJDK_SRC_ZIP = $(ALT_OPENJDK_SRC_ZIP)
else
+if USE_HG
+ OPENJDK_SRC_ZIP =
+else
OPENJDK_SRC_ZIP = openjdk-6-src-$(OPENJDK_VERSION)-$(OPENJDK_DATE).tar.gz
+endif
endif
if USE_ALT_HOTSPOT_SRC_ZIP
@@ -336,8 +341,27 @@ else
VISUALVM_SRC_ZIP = visualvm-20081031-src.tar.gz
endif
-stamps/download.stamp:
+stamps/hgforest.stamp:
if USE_ALT_OPENJDK_SRC_ZIP
+else
+if !USE_HG
+else
+ if ! $(HG) fclone -h; \
+ then \
+ echo "No forest extension found. Please refer to" \
+ "http://selenic.com/mercurial/wiki/index.cgi/ForestExtension"; \
+ exit 1; \
+ fi;
+endif
+endif
+ mkdir -p stamps
+ touch stamps/hgforest.stamp
+
+stamps/download.stamp: stamps/hgforest.stamp
+if USE_ALT_OPENJDK_SRC_ZIP
+else
+if USE_HG
+ $(HG) fclone -r jdk6-$(OPENJDK_VERSION) $(OPENJDK_HG_URL) openjdk;
else
if ! echo "$(OPENJDK_MD5SUM) $(OPENJDK_SRC_ZIP)" \
| $(MD5SUM) --check ; \
@@ -348,6 +372,7 @@ else
fi ; \
$(WGET) $(OPENJDK_URL)$(OPENJDK_SRC_ZIP) -O $(OPENJDK_SRC_ZIP); \
fi
+endif
endif
if WITH_ALT_HSBUILD
if USE_ALT_HOTSPOT_SRC_ZIP
@@ -414,6 +439,9 @@ endif
endif
mkdir -p stamps
touch stamps/download.stamp
+
+clean-hgforest:
+ rm -f stamps/hgforest.stamp
clean-download:
rm -f stamps/download.stamp
diff -r 62b109d14405 -r 7e85e3fd25d7 acinclude.m4
--- a/acinclude.m4 Tue Dec 09 20:09:24 2008 +0000
+++ b/acinclude.m4 Tue Dec 09 21:42:14 2008 +0000
@@ -966,3 +966,25 @@ AC_DEFUN([WITH_HOTSPOT_SRC_ZIP],
AC_MSG_RESULT(${ALT_HOTSPOT_SRC_ZIP})
AC_SUBST(ALT_HOTSPOT_SRC_ZIP)
])
+
+AC_DEFUN([ENABLE_HG],
+[
+ AC_MSG_CHECKING(whether to retrieve the source code from Mercurial)
+ AC_ARG_ENABLE([hg],
+ [AS_HELP_STRING(--enable-hg,download source code from Mercurial [[default=no]])],
+ [
+ case "${enableval}" in
+ no)
+ enable_hg=no
+ ;;
+ *)
+ enable_hg=yes
+ ;;
+ esac
+ ],
+ [
+ enable_hg=no
+ ])
+ AC_MSG_RESULT([${enable_hg}])
+ AM_CONDITIONAL([USE_HG], test x"${enable_hg}" = "xyes")
+])
diff -r 62b109d14405 -r 7e85e3fd25d7 configure.ac
--- a/configure.ac Tue Dec 09 20:09:24 2008 +0000
+++ b/configure.ac Tue Dec 09 21:42:14 2008 +0000
@@ -314,6 +314,7 @@ ENABLE_OPTIMIZATIONS
ENABLE_OPTIMIZATIONS
ENABLE_ZERO_BUILD
SET_CORE_OR_SHARK_BUILD
+ENABLE_HG
if test "x${enable_pulse_java}" = "xyes"
then
More information about the distro-pkg-dev
mailing list