Danesh Dadachanji | 10 Feb 23:10
Picon
Favicon

[RFC][icedtea-web] Path to NEW_LINE_IFS is incorrect

Hi,

The var abs_top_builddir is used as the path to NEW_LINE_IFS when it 
should be abs_top_srcdir. When building outside of src dir (e.g. in 
icedtea-web/build with ../configure), this will fail when running say 
'make run-netx-dist-tests'. It mustn't have been caught yet because 
people are probably building in the src dir directly when testing..

ChangeLog:
+2012-02-10  Danesh Dadachanji  <ddadacha@...>
+
+	Fix path to NEW_LINE_IFS for when one builds outside of src directory.
+	* Makefile.am: Use top src directory instead of top build directory
+	for NEW_LINE_IFS
+

Is the attached patch okay for HEAD and 1.2?

Cheers,
Danesh
diff --git a/Makefile.am b/Makefile.am
--- a/Makefile.am
+++ b/Makefile.am
@@ -475,7 +475,7 @@ junit-jnlp-dist-signed.txt:
 stamps/netx-dist-tests-prepare-reproducers.stamp: stamps/junit-jnlp-dist-dirs
 	types=(simple signed); \
 	for which in "$${types[@]}" ; do \
-	  . $(abs_top_builddir)/NEW_LINE_IFS ; \
(Continue reading)

jvanek | 10 Feb 19:35
Favicon

/hg/release/icedtea6-1.8: backported 580478 patch

changeset dcb5503e60f7 in /hg/release/icedtea6-1.8
details: http://icedtea.classpath.org/hg/release/icedtea6-1.8?cmd=changeset;node=dcb5503e60f7
author: Jiri Vanek <jvanek@...>
date: Fri Feb 10 19:36:57 2012 +0100

	backported 580478 patch

diffstat:

 ChangeLog             |  13 +++++++++++++
 NEWS                  |   3 +++
 configure.ac          |  27 ++++++++++++++++-----------
 jconsole.desktop      |  10 ----------
 jconsole.desktop.in   |  10 ++++++++++
 policytool.desktop    |  10 ----------
 policytool.desktop.in |  10 ++++++++++
 7 files changed, 52 insertions(+), 31 deletions(-)

diffs (142 lines):

diff -r f096a6493463 -r dcb5503e60f7 ChangeLog
--- a/ChangeLog	Thu Jan 12 13:04:39 2012 +0000
+++ b/ChangeLog	Fri Feb 10 19:36:57 2012 +0100
@@ -1,3 +1,16 @@
+2012-01-25  Jiri Vanek  <jvanek@...>
+
+	fixes rhbz#580478
+	* configure.ac: abs-install-dir block moved outside conditional ENABLE_SYSTEMTAP block
+	 Added policytool.desktop and jconsole.desktop as AC_CONFIG_FILES
+	* jconsole.desktop:  removed, replaced by jconsole.desktop.in
(Continue reading)

Jiri Vanek | 10 Feb 13:51
Picon
Favicon

Backport of fixed RH580478 into 1.8

Hi Andrew!
This is changed patch which should fix hardcoded paths in desktop files you asked me to prepare. It is quite
changed comapred to 1.9-head serie, but I' think it is dooing the same thing. I have tested it and looks
correct. If you will consider it ok, will you want it to push it yourselves? (Considering security related
work you are doing on 1.8 branch), Or should I? When do you want me to push it?

J.

2012-01-25  Jiri Vanek  <jvanek@...>

	fixes rhbz#580478
	* configure.ac: abs-install-dir block moved outside conditional ENABLE_SYSTEMTAP block
	 Added policytool.desktop and jconsole.desktop as AC_CONFIG_FILES
	* jconsole.desktop:  removed, replaced by jconsole.desktop.in
	* jconsole.desktop.in: new file, stub for desktop file, have variable
	to be substituted during configure
	* policytool.desktop:  removed, replaced by policytool.desktop.in
	* policytool.desktop.in: new file, stub for desktop file, have variable
	to be substituted during configure
	* NEWS  updated
diff -r f096a6493463 NEWS
--- a/NEWS	Thu Jan 12 13:04:39 2012 +0000
+++ b/NEWS	Fri Feb 10 13:46:04 2012 +0100
@@ -10,6 +10,9 @@

 New in release 1.8.13 (XXXX-XX-XX):

+* Bug fixes
(Continue reading)

xranby | 10 Feb 12:38
Favicon
Gravatar

/hg/icedtea7: CACAO support for OpenJDK7

changeset ff55f6591be9 in /hg/icedtea7
details: http://icedtea.classpath.org/hg/icedtea7?cmd=changeset;node=ff55f6591be9
author: Xerxes Ranby <xerxes@...>
date: Fri Feb 10 13:28:45 2012 +0100

	CACAO support for OpenJDK7

	2012-02-10 Xerxes Ranby <xerxes@...>

	 * Makefile.am (CACAO_VERSION): Updated CACAO to
	2012-02-09 revision. (CACAO_SHA256SUM): Updated.
	(stamps/cacao.stamp): Use --with-java-runtime-library=openjdk7.
	Add -f when creating client and server symlinks to handle repeat
	builds. Link the fake libjsig.so to CACAO libjvm.so, and
	touch fake Xusage.txt to work with latest OpenJDK
	ALT_HOTSPOT_IMPORT_PATH functionality.
		* patches/cacao/version.patch: Removed, replaced by upstream CACAO
	changeset 30edcde287d9.

diffstat:

 ChangeLog                   |  11 +++++++++++
 Makefile.am                 |  11 ++++++-----
 patches/cacao/version.patch |  20 --------------------
 3 files changed, 17 insertions(+), 25 deletions(-)

diffs (82 lines):

diff -r ea914bacafad -r ff55f6591be9 ChangeLog
--- a/ChangeLog	Thu Feb 09 00:17:25 2012 +0000
(Continue reading)

Xerxes Rånby | 10 Feb 10:24
Picon
Favicon
Gravatar

Re: Cacao support for OpenJDK7 - icedtea7 patch

2012-02-09 15:54, David Flamme skrev:
> Hello Xerxes,
> 
> I missed some changes for the M4 macros to look in the right pathes, but this changeset should fix it: http://www.complang.tuwien.ac.at/hg/cacao/rev/a567bcb7f589
> 
> cheers david

Thank you David
This new version work, I have been able to build and run CACAO in combination with OpenJDK7 u2 by using the new
icedtea7 patch below:
Ok for icedtea7 HEAD?

xranby <at> xranby-ESPRIMO-P7935:~/test/cm30$
../../icedtea7-cacao-build/openjdk.build/j2sdk-image/bin/java -showversion CaffeineMarkEmbeddedApp
java version "1.7.0_02-icedtea"
IcedTea Runtime Environment (2.1pre+rea914bacafad+) (Ubuntu build 1.7.0_02-icedtea-b147)
CACAO (build 1.1.0pre2, compiled mode)

Sieve score = 59609 (98)
Loop score = 66877 (2017)
Logic score = 81621 (0)
String score = 19094 (708)
Float score = 31052 (185)
Method score = 55668 (166650)
Overall score = 46971

2012-02-10  Xerxes Rånby  <xerxes@...>

	* Makefile.am
	(CACAO_VERSION): Updated CACAO to 2012-02-09 revision.
(Continue reading)

andrew | 9 Feb 18:12
Favicon

/hg/release/icedtea6-1.9: Mention RH580478 in NEWS.

changeset eb61b840c119 in /hg/release/icedtea6-1.9
details: http://icedtea.classpath.org/hg/release/icedtea6-1.9?cmd=changeset;node=eb61b840c119
author: Andrew John Hughes <ahughes@...>
date: Thu Feb 09 12:45:55 2012 +0000

	Mention RH580478 in NEWS.

	2012-02-09 Andrew John Hughes <ahughes@...>

	 * NEWS: Mention RH580478.

diffstat:

 ChangeLog |  4 ++++
 NEWS      |  3 +++
 2 files changed, 7 insertions(+), 0 deletions(-)

diffs (24 lines):

diff -r c3ebe411bee3 -r eb61b840c119 ChangeLog
--- a/ChangeLog	Wed Jan 25 15:10:20 2012 +0100
+++ b/ChangeLog	Thu Feb 09 12:45:55 2012 +0000
@@ -1,3 +1,7 @@
+2012-02-09  Andrew John Hughes  <ahughes@...>
+
+	* NEWS: Mention RH580478.
+
 2012-01-25  Jiri Vanek  <jvanek@...>

 	fixes rhbz#580478
(Continue reading)

bugzilla | 9 Feb 16:27
Favicon

[Bug 872] New: LibreOffice crash

http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=872

             Bug #: 872
           Summary: LibreOffice crash
    Classification: Unclassified
           Product: IcedTea
           Version: 6-1.10.4
          Platform: x86_64
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P3
         Component: IcedTea6
        AssignedTo: unassigned@...
        ReportedBy: rb@...

Created attachment 657
  --> http://icedtea.classpath.org/bugzilla/attachment.cgi?id=657
LibreOffice crash

Hi,

it's my first bug report. I hope it will help to eliminate error.
LibreOffice is crashed - put in a big L-Office Document a text frame - with cat
and paste or a new frame.
Since yesterday - I can't work now with LibreOffice an this document.

Best regards from Germany.

Rudolf
(Continue reading)

andrew | 9 Feb 13:53
Favicon

/hg/release/icedtea6-1.10: Mention RH580478 in NEWS.

changeset 4dc8a468dbc0 in /hg/release/icedtea6-1.10
details: http://icedtea.classpath.org/hg/release/icedtea6-1.10?cmd=changeset;node=4dc8a468dbc0
author: Andrew John Hughes <ahughes@...>
date: Thu Feb 09 12:45:55 2012 +0000

	Mention RH580478 in NEWS.

	2012-02-09 Andrew John Hughes <ahughes@...>

	 * NEWS: Mention RH580478.

diffstat:

 ChangeLog |  4 ++++
 NEWS      |  3 +++
 2 files changed, 7 insertions(+), 0 deletions(-)

diffs (24 lines):

diff -r fec5c1edeb55 -r 4dc8a468dbc0 ChangeLog
--- a/ChangeLog	Wed Jan 25 14:57:48 2012 +0100
+++ b/ChangeLog	Thu Feb 09 12:45:55 2012 +0000
@@ -1,3 +1,7 @@
+2012-02-09  Andrew John Hughes  <ahughes@...>
+
+	* NEWS: Mention RH580478.
+
 2012-01-25  Jiri Vanek  <jvanek@...>

 	fixes rhbz#580478
(Continue reading)

andrew | 8 Feb 19:34
Favicon

/hg/icedtea7: 2 new changesets

changeset 5d5cf3cb4d46 in /hg/icedtea7
details: http://icedtea.classpath.org/hg/icedtea7?cmd=changeset;node=5d5cf3cb4d46
author: Andrew John Hughes <ahughes@...>
date: Wed Feb 08 17:22:49 2012 +0000

	Update to work with u2 updates.

	2012-10-08 Andrew John Hughes <ahughes@...>

	 * Makefile.am, (CORBA_CHANGESET): Updated.
	(HOTSPOT_CHANGESET): Likewise. (JAXP_CHANGESET): Likewise.
	(JAXWS_CHANGESET): Likewise. (JDK_CHANGESET): Likewise.
	(LANGTOOLS_CHANGESET): Likewise. (OPENJDK_CHANGESET):
	Likewise. (CORBA_SHA256SUM): Likewise.
	(HOTSPOT_SHA256SUM): Likewise. (JAXP_SHA256SUM): Likewise.
	(JAXWS_SHA256SUM): Likewise. (JDK_SHA256SUM): Likewise.
	(LANGTOOLS_SHA256SUM): Likewise. (OPENJDK_SHA256SUM):
	Likewise.
		* generated/java/nio/DirectByteBuffer.java,
		* generated/java/nio/DirectByteBufferR.java,
		* generated/java/nio/DirectCharBufferRS.java,
		* generated/java/nio/DirectCharBufferRU.java,
		* generated/java/nio/DirectCharBufferS.java,
		* generated/java/nio/DirectCharBufferU.java,
		* generated/java/nio/DirectDoubleBufferRS.java,
		* generated/java/nio/DirectDoubleBufferRU.java,
		* generated/java/nio/DirectDoubleBufferS.java,
		* generated/java/nio/DirectDoubleBufferU.java,
		* generated/java/nio/DirectFloatBufferRS.java,
		* generated/java/nio/DirectFloatBufferRU.java,
(Continue reading)

bugzilla | 8 Feb 17:47
Favicon

[Bug 871] New: javaws should try and use proxy from gconf

http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=871

             Bug #: 871
           Summary: javaws should try and use  proxy from gconf
    Classification: Unclassified
           Product: IcedTea-Web
           Version: hg
          Platform: x86_64
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P3
         Component: NetX (javaws)
        AssignedTo: omajid@...
        ReportedBy: omajid@...
                CC: unassigned@...

IcedTea6 contains patches to read proxy config from gconf and provide that as
the proxy to userspace applications. IcedTea-Web should try and use that if
possible.

--

-- 
Configure bugmail: http://icedtea.classpath.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

bugzilla | 7 Feb 19:01
Favicon

[Bug 870] New: Every Pages with Java Content Crash Xorg

http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=870

             Bug #: 870
           Summary: Every Pages with Java Content Crash Xorg
    Classification: Unclassified
           Product: IcedTea-Web
           Version: unspecified
          Platform: x86_64
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P3
         Component: Plugin
        AssignedTo: dbhole@...
        ReportedBy: nihilhill@...
                CC: unassigned@...

I experience a browser independent systematic severe Xorg crash whenever I
browse to Java enabled pages.

I'm using version 1.1.4.

--

-- 
Configure bugmail: http://icedtea.classpath.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


Gmane