diff options
author | 2012-03-15 16:52:50 +0000 | |
---|---|---|
committer | 2012-03-15 16:52:50 +0000 | |
commit | d7a311152e15710c7304134aac9ca75cfedcbe4c (patch) | |
tree | 48f1cbed108172ba662e2d64bd71cc1ccd7b610b /dev-java/icedtea/files | |
parent | Fixed ${S} (bug #408365) (diff) | |
download | historical-d7a311152e15710c7304134aac9ca75cfedcbe4c.tar.gz historical-d7a311152e15710c7304134aac9ca75cfedcbe4c.tar.bz2 historical-d7a311152e15710c7304134aac9ca75cfedcbe4c.zip |
- Use JAVA_PKG_WANT_BUILD_VM to limit build VM. This now respects system VM
setting if usable and simplifies pkg_setup.
- Add JamVM for alternative archs with IcedTea 7
- Fix building against >=glib-2.31. #402481
Thanks to Marien Zwart <marienz@gentoo.org> for the patch.
- Simplify USE=jbootstrap logic for icedtea-7.
Package-Manager: portage-2.1.10.49/cvs/Linux x86_64
Diffstat (limited to 'dev-java/icedtea/files')
-rw-r--r-- | dev-java/icedtea/files/icedtea-7.2.0-explicit-gthread.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dev-java/icedtea/files/icedtea-7.2.0-explicit-gthread.patch b/dev-java/icedtea/files/icedtea-7.2.0-explicit-gthread.patch new file mode 100644 index 000000000000..1f13e07df314 --- /dev/null +++ b/dev-java/icedtea/files/icedtea-7.2.0-explicit-gthread.patch @@ -0,0 +1,13 @@ +--- acinclude.m4.orig 2012-02-25 15:44:58.208371766 +0100 ++++ acinclude.m4 2012-02-25 15:46:03.592027548 +0100 +@@ -2011,7 +2011,9 @@ + AC_MSG_RESULT(${ENABLE_SYSTEM_GTK}) + if test x"${ENABLE_SYSTEM_GTK}" = "xyes"; then + dnl Check for Gtk+ headers and libraries. +- PKG_CHECK_MODULES(GTK, gtk+-2.0,[GTK_FOUND=yes],[GTK_FOUND=no]) ++ dnl Explicitly include gthread-2.0 to get g_thread_init even on glib 2.32 ++ dnl where it is deprecated. ++ PKG_CHECK_MODULES(GTK, gtk+-2.0 gthread-2.0,[GTK_FOUND=yes],[GTK_FOUND=no]) + if test "x${GTK_FOUND}" = xno + then + AC_MSG_ERROR([Could not find Gtk+; install Gtk+ or build with --disable-system-gtk to use the in-tree headers.]) |