Re: RFR [9] Modular Source Code

2014-08-28 Thread Anthony Petrov
Thanks! -- best regards, Anthony On 8/28/2014 1:00 PM, Magnus Ihse Bursie wrote: On 2014-08-27 12:57, Anthony Petrov wrote: Hi Magnus, Those look like reasonable suggestions. Could you please file separate bugs for each of these issues? Also, please note that most of them belong to 2D

Re: RFR [9] Modular Source Code

2014-08-27 Thread Anthony Petrov
. -- best regards, Anthony On 8/25/2014 1:14 PM, Magnus Ihse Bursie wrote: On 2014-08-20 11:14, Magnus Ihse Bursie wrote: On 2014-08-18 16:15, Anthony Petrov wrote: So I'm not sure if the current set of AWT libraries could be simplified any further. Hope this helps. Thank you for the clarification

Re: RFR [9] Modular Source Code

2014-08-18 Thread Anthony Petrov
On 8/18/2014 5:47 PM, Magnus Ihse Bursie wrote: libawt et al: The relation between libawt, libawt_headless, libjawt, libawt_xawt and libawt_lwawt are hairy enough to make my brain curl up. I believe there are simplifications to be made but I gave up trying to figure them out. libawt

Re: AWT Dev [9] Review Request: 8047336 Read flavormap.properties as resource

2014-07-02 Thread Anthony Petrov
Thanks. Note that your email editor messed up the HTML part of the email (see below a text-only quote), so here's the correct link to the webrev: http://cr.openjdk.java.net/~pchelko/9/8047336/webrev.01/ The fix looks fine to me. -- best regards, Anthony On 7/2/2014 3:10 PM, Petr Pchelko

Re: [9] Review Request: 8047336 Read flavormap.properties as resource

2014-06-20 Thread Anthony Petrov
Hi Petr, I ran the following query: https://www.google.com/#q=custom+flavormap.properties and the search yielded the following forum thread: https://community.oracle.com/thread/1293314?start=0tstart=0 where developers seem to suggest they do edit the $JDKHOME/jre/lib/flavormap.properties

Re: AWT Dev [9] Review Request: 8047336 Read flavormap.properties as resource

2014-06-20 Thread Anthony Petrov
requests which consume time. Thank you. With best regards. Petr. On 20 июня 2014 г., at 15:29, Artem Ananiev artem.anan...@oracle.com wrote: On 6/20/2014 3:19 PM, Anthony Petrov wrote: Hi Petr, I ran the following query: https://www.google.com/#q=custom+flavormap.properties and the search yielded

Re: AWT Dev [OpenJDK 2D-Dev] RFR: Allow using the system libjpeg

2014-05-22 Thread Anthony Petrov
I think that it would be useful to have a bug id prior to sending a review request, so that a review thread for the bug can be easily found in the mailing archive. In the future, please do file a bug first and put its id in the subject line of your review requests. -- best regards, Anthony

Re: RFR: 8043805: Allow using a system-installed libjpeg

2014-05-22 Thread Anthony Petrov
Thanks, Omair. -- best regards, Anthony On 5/23/2014 1:01 AM, Omair Majid wrote: * Anthony Petrov anthony.pet...@oracle.com [2014-05-22 16:48]: I think that it would be useful to have a bug id prior to sending a review request, so that a review thread for the bug can be easily found

Re: AWT Dev RFR: Allow using the system libjpeg

2014-05-19 Thread Anthony Petrov
Hi Omair, common/autoconf/libraries.m4 624 [use libjpeg from build system or OpenJDK source (system, bundled) @:bundled@:@])]) @:bundled@:@ should read @:@bundled@:@ - note the missing @. make/lib/Awt2dLibraries.gmk 1236 LIBJPEG_CFLAGS :=

Re: AWT Dev RFR: Allow using a system installed libpng

2014-02-21 Thread Anthony Petrov
Hi Andrew, Client code is basically anything in 2D, AWT, i18n, beans, a11y, ImageIO, Sound, or Swing. I.e., anything related to GUI/desktop. In this particular case Omair is changing the SplashScreen code which belongs to AWT, hence the choice of the client repo for integration. -- best

hg: jdk8/build/jdk: 8027912: [macosx] Provide means to force the headful mode on OS X when running via ssh

2013-11-08 Thread anthony . petrov
Changeset: 43168d403243 Author:anthony Date: 2013-11-08 20:07 +0400 URL: http://hg.openjdk.java.net/jdk8/build/jdk/rev/43168d403243 8027912: [macosx] Provide means to force the headful mode on OS X when running via ssh Summary: Bypass AquaSession check if AWT_FORCE_HEADFUL env.

Re: AWT Dev RFR: 8025673: Disable X11 AWT toolkit

2013-10-24 Thread Anthony Petrov
Hi David, The fix looks fine to me. Thanks for all your hard work. -- best regards, Anthony On 10/24/2013 03:52 AM, David DeHaven wrote: Another option (I think would make everyone happy) would be to add a native method to LWCToolkit.{java,m} that implements isAquaSession and returns a

Re: AWT Dev RFR: 8025673: Disable X11 AWT toolkit

2013-10-23 Thread Anthony Petrov
On 10/23/2013 08:52 AM, David Holmes wrote: On 23/10/2013 2:10 PM, David DeHaven wrote: Updated webrev: http://cr.openjdk.java.net/~ddehaven/8025673/jdk.2/ Summary of changes since last: - Added awt_headless to java_props_t (set to NULL by default which does not set the property) Not sure

Re: AWT Dev RFR: 8025673: Disable X11 AWT toolkit

2013-10-23 Thread Anthony Petrov
On 10/23/2013 07:11 PM, Artem Ananiev wrote: On 10/23/2013 4:34 PM, Anthony Petrov wrote: On 10/23/2013 08:52 AM, David Holmes wrote: On 23/10/2013 2:10 PM, David DeHaven wrote: Updated webrev: http://cr.openjdk.java.net/~ddehaven/8025673/jdk.2/ Summary of changes since last: - Added

Re: AWT Dev RFR: 8025673: Disable X11 AWT toolkit

2013-10-23 Thread Anthony Petrov
On 10/23/2013 08:49 PM, David DeHaven wrote: Not sure about this part. We already force this property to be set in Embedded without needing any changes in the code you have modified and I'm not sure if your changes will break what we already do. Why do you need to do it? I'm getting concerned

Re: AWT Dev RFR: 8025673: Disable X11 AWT toolkit

2013-10-22 Thread Anthony Petrov
Artem is correct. On Mac we can't start a GUI session via ssh, for example. Thus we choose the headless mode then. The isInAquaSession() is supposed to perform exactly this check. This logic needs to be preserved. -- best regards, Anthony On 10/22/2013 01:23 PM, Artem Ananiev wrote: Hi,

Re: AWT Dev RFR: 8025673: Disable X11 AWT toolkit

2013-10-22 Thread Anthony Petrov
We don't have to. IIRC, the choice of HToolkit on Mac was made by chance. Since we must load the lwawt lib in headless on Mac anyway, we may as well use the CToolkit (properly wrapped in the HeadlessToolkit). But there's no need to continue to use the HToolkit on Mac. -- best regards,

Re: RFR: 8016096: [macosx] jawt_md.h shipped with jdk is outdated

2013-10-21 Thread Anthony Petrov
Hi David, The fix looks fine to me. -- best regards, Anthony On 10/20/2013 11:53 PM, David DeHaven wrote: CCing: build-dev, macosx-port-dev Request for review of JDK-8016096: https://bugs.openjdk.java.net/browse/JDK-8016096 Proposed changes: http://cr.openjdk.java.net/~ddehaven/8016096/

Re: RFR: 8025673: Disable X11 AWT toolkit

2013-10-21 Thread Anthony Petrov
This fix looks fine to me as well. -- best regards, Anthony On 10/20/2013 11:56 PM, David DeHaven wrote: CCing: build-dev, macosx-port-dev, hotspot-dev Request for review of JDK-8025673: https://bugs.openjdk.java.net/browse/JDK-8025673 Proposed changes:

Re: AWT Dev [7u] Review request for 7129133: [macosx] Accelerators are displayed as Meta instead of the Command symbol

2013-10-01 Thread Anthony Petrov
The fix looks fine to me. -- best regards, Anthony On 10/01/2013 09:39 AM, dmitry markov wrote: Hello, Could you review a back-port of 7129133 to JDK 7u, please? The back-port and the main fix integrated into jdk8 are slightly different. bug: http://bugs.sun.com/view_bug.do?bug_id=7129133

Re: RFR: 8023216: Feedback on README-builds.html

2013-08-19 Thread Anthony Petrov
Hi Erik, The fix looks fine to me. -- best regards, Anthony On 08/19/13 16:43, Erik Joelsson wrote: And again, here we go: http://cr.openjdk.java.net/~erikj/8023216/webrev.root.01/ /Erik On 2013-08-19 11:05, Erik Joelsson wrote: Thanks for the feedback! I took most of it and made into a

Re: RFR: 8015759: hotspot changes needed to compile with Visual Studio 2012

2013-07-15 Thread Anthony Petrov
Thanks to Anthony Petrov who provided the initial set of patches for this work. I believe this should go in via the hotspot-rt forest (let me know if that is not correct), in which case I will need a sponsor from that team to push the change. Thanks in advance- Tim

Re: How to debug assert failure in awt.dll?

2013-07-10 Thread Anthony Petrov
This is a known issue http://bugs.sun.com/view_bug.do?bug_id=8013849 Looks like it's unrelated to a11y and affects any apps with input boxes. I'm not an expert in debugging with VS, but I suppose it wants the .pdb file for the awt.dll. Try locating this file in the build/ directory and point

Re: How to debug assert failure in awt.dll?

2013-07-10 Thread Anthony Petrov
On 07/10/2013 06:02 PM, Pete Brunet wrote: On 7/10/13 8:57 AM, Pete Brunet wrote: On 7/10/13 2:59 AM, Anthony Petrov wrote: This is a known issue http://bugs.sun.com/view_bug.do?bug_id=8013849 Looks like it's unrelated to a11y and affects any apps with input boxes. Thanks Anthony, You

Re: RFR: 8015759: hotspot changes needed to compile with Visual Studio 2012

2013-06-03 Thread Anthony Petrov
://cr.openjdk.java.net/~tbell/8015759/hotspot/webrev.00/ http://cr.openjdk.java.net/~tbell/8015759/hotspot/webrev.00/hotspot.patch Thanks to Anthony Petrov who provided the initial set of patches for this work. I believe this should go in via the hotspot-rt forest (let me know if that is not correct), in which

Re: Somewhat wonkier Windows problem

2013-05-24 Thread Anthony Petrov
[ adding 2d-dev@ ] On 05/24/2013 11:23 AM, Erik Joelsson wrote: On 2013-05-23 20:10, David Chase wrote: One change to add (a by-hand diff) to common/autoconf/toolchain_windows.m4 : AC_MSG_CHECKING([for DirectX SDK lib dir]) if test x$with_dxsdk_lib != x; then

Re: Somewhat wonkier Windows problem

2013-05-23 Thread Anthony Petrov
Binaries built with VS2012 won't run on WinXP. You need VS2012sp1 to make them compatible with XP. Yes, we don't officially support JDK8 on Windows XP. However, there's a difference between _not supported_ and _just won't run_. Hence, if we ever decide to switch to VS2012, we'll most likely

Re: Somewhat wonkier Windows problem

2013-05-23 Thread Anthony Petrov
David, I have worked around the compatibility of latest DirectX SDK and 32-bit JDK builds by copying the contents of the \Program Files\Microsoft DirectX SDK\Lib\x86\* to the Lib\ directory itself. Works like a charm. -- best regards, Anthony On 05/23/13 07:13, David Chase wrote: I think

Re: Somewhat wonkier Windows problem

2013-05-23 Thread Anthony Petrov
David, I pretty much understand the problem you're trying to solve. I recall myself in 2006-2007 when I was eagerly wanting to build (then) JDK 6 with VS2005 while we officially used VS2003. It was fun. :) Later on we ended up switching to VS2010 for JDK7, however some results of my work

Re: Somewhat wonkier Windows problem

2013-05-23 Thread Anthony Petrov
David, you have my full moral support! Regards, Volker On Thu, May 23, 2013 at 3:09 PM, Anthony Petrov anthony.pet...@oracle.com mailto:anthony.pet...@oracle.com wrote: David, I pretty much understand the problem you're trying to solve. I recall myself in 2006-2007 when I was eagerly

Re: Found and solved a bug on Cursor Management on Windows platforms

2013-04-17 Thread Anthony Petrov
Hi Morvan, build-dev@ is the wrong mailing list for this topic. It belongs to awt-...@openjdk.java.net only. Please re-post this message there. -- best regards, Anthony On 04/17/2013 09:01 PM, Morvan Le Mescam wrote: Dear all, When developping a Swing client, I face the following problem :

Re: RFR: 8010465: Can't enable sjavac when building in jprt.

2013-04-09 Thread Anthony Petrov
Good to know this is unrelated to this fix. Thanks. -- best regards, Anthony On 4/8/2013 17:21, Erik Joelsson wrote: On 2013-04-08 15:17, Anthony Petrov wrote: Thanks for clarifying that. Makes sense to me. The fix looks good to me, btw, although I'm not a build expert. Also, could you

Re: A couple of questions about the new build system

2013-04-09 Thread Anthony Petrov
You can't feed make with the /showInclude output. There's a dedicated tool in Cygwin (and on *NIX in general) - makedepend. It produces output that make can parse and understand directly. -- best regards, Anthony On 4/8/2013 20:00, Kelly O'Hair wrote: I think it's /showIncludes ???

Re: RFR: 8010465: Can't enable sjavac when building in jprt.

2013-04-08 Thread Anthony Petrov
: Sjavac also enables parallel execution of java compilation, speeding up full builds as well. But even if it didn't, being able to verify that sjavac builds work in jprt will be a must if we are to enable it by default. /Erik On 2013-04-08 14:56, Anthony Petrov wrote: Just curious: sjavac

Re: recent problems with JFX ant script

2013-02-15 Thread Anthony Petrov
It's a known issue: http://javafx-jira.kenai.com/browse/RT-27210 -- best regards, Anthony On 2/15/2013 0:32, Pete Brunet wrote: I ran into two new problems building JFX on Win 7 this week: 1) I had to unset lowercase tmp and temp. Apparently there is a new problem with having duplicates,

[8] Review request for 8001764: vsvars.sh should support VS2012

2012-10-29 Thread Anthony Petrov
Hello, Please review a fix for http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=8001764 at: http://cr.openjdk.java.net/~anthony/8-46-full-vs2012.0/ We're not yet switching JDK builds to VS2012. However, the vsvars.sh script is useful for other applications in order to set up the build

Re: [8] Review request for 8001764: vsvars.sh should support VS2012

2012-10-29 Thread Anthony Petrov
Tim, Kelly: thanks for your review. I'll push the fix via the awt forest tomorrow. On 10/29/2012 8:29 PM, Tim Bell wrote: We're not yet switching JDK builds to VS2012. However, the vsvars.sh script is useful for other applications in order to set up the build environment, so I think the

Re: Need reviewer for fix to Mac jdk partial builds

2012-09-21 Thread Anthony Petrov
Hi Kelly, The JDK 8 partial repository (only the jdk itself) builds fine on my Mac with your changes. The fix looks good to me, although I don't have deep knowledge of the components being modified. Thanks for fixing this issue! -- best regards, Anthony On 9/20/2012 5:19 AM, Kelly O'Hair

Re: The future of partial builds

2012-09-13 Thread Anthony Petrov
, with no import jdk needed, and no concerns about sync issues between jdk components (hotspot-jdk). -kto On Sep 11, 2012, at 6:37 AM, Anthony Petrov wrote: Magnus, You've only explained how incremental builds could work for Java classes in the new build-infra. What about incremental builds of native

Re: The future of partial builds

2012-09-12 Thread Anthony Petrov
On 9/12/2012 1:54 PM, Alan Bateman wrote: On 12/09/2012 06:46, Fredrik Öhrström wrote: : Excellent. I hope you realize how valuable it is that the build system recompiled the proper source files, then proceed to generate the the jni headers output because of native methods in those classes

Re: The future of partial builds

2012-09-11 Thread Anthony Petrov
Magnus, You've only explained how incremental builds could work for Java classes in the new build-infra. What about incremental builds of native code? E.g. in AWT we often do the following: $ cd make/sun/awt (or make/java/awt, or make/sun/lwawt) $ make And this re-builds both AWT classes

Re: jdk builds on the mac

2012-08-21 Thread Anthony Petrov
This patch won't work for me. I use the following workaround patch instead: diff -r 8a2bc6e82d81 make/java/Makefile --- a/make/java/Makefile +++ b/make/java/Makefile @@ -58,7 +58,7 @@ endif # PLATFORM ifeq ($(PLATFORM), macosx) - SUBDIRS += jobjc +# SUBDIRS += jobjc endif # PLATFORM

Re: [PATCH] Update RPATH to make loading libjawt possible

2012-08-13 Thread Anthony Petrov
. Systems used for running tests may lack compilers, and this is perfectly OK. Having said that, let's wait and see what test Kumar has to offer. -- best regards, Anthony On 08/11/12 00:56, Omair Majid wrote: Hi Anthony, On 08/10/2012 08:29 AM, Anthony Petrov wrote: Actually, if Omair has a good

Re: [PATCH] Update RPATH to make loading libjawt possible

2012-08-13 Thread Anthony Petrov
. -- best regards, Anthony On 08/11/12 00:56, Omair Majid wrote: Hi Anthony, On 08/10/2012 08:29 AM, Anthony Petrov wrote: Actually, if Omair has a good automatic jtreg test, we would be happy to get it checked in with this fix. Could we see a webrev for the test please? I have uploaded a new

Re: [PATCH] Update RPATH to make loading libjawt possible

2012-08-10 Thread Anthony Petrov
Hi Omair, The fix looks good to me. I think Kumar needs to take a look at it, too, before the fix can be pushed to a repo. Thanks for finding and fixing this issue. -- best regards, Anthony On 8/10/2012 1:48 AM, Omair Majid wrote: On 08/09/2012 07:15 AM, Andrew Hughes wrote: -

Re: [PATCH] Update RPATH to make loading libjawt possible

2012-08-10 Thread Anthony Petrov
Well, it's complicated. There's problems with JAWT on the Mac currently, which makes it hard or even impossible to use it on that platform. We'll add support for the Mac to a test open-sourced with 7190587 once JAWT is working fine on the Mac in general. -- best regards, Anthony On

Re: [PATCH] Update RPATH to make loading libjawt possible

2012-08-10 Thread Anthony Petrov
On 8/10/2012 4:24 PM, Andrew Hughes wrote: - Original Message - Hi Anthony, a. although this is a build change, I have requested Omair to provide a regression test, IMO if we had a regression test to begin with, this would not have been removed during the RPATH work. We

Re: AWT Dev Review: Removing GenerateNativeHeader where not needed

2012-07-04 Thread Anthony Petrov
Looks good to me. Although most of the changes are in Java2D code, so I'm also CC'ing 2d-dev@ to take a look. -- best regards, Anthony On 7/3/2012 10:23 PM, Erik Joelsson wrote: The build infra project added the use of the annotation GenerateNativeHeader. It was addded to java classes without

Re: AWT Dev RFR: 7171653 32-bit cross-compile on 64-bit build host generates 64-bit data for awt/X11 leading to crash

2012-05-25 Thread Anthony Petrov
Hi David, The fix looks fine to me. Is the empty line 281 OK in Makefiles? I'd remove it just in case. Besides it would make it more clearer that the SIZERS_CC commands are related to the SIZERS target. -- best regards, Anthony On 5/25/2012 10:20 AM, David Holmes wrote: This is a tweak to

Re: requirements for building on Mac?

2012-04-23 Thread Anthony Petrov
Hi Ray, JDK is buildable on 10.6. Please run Apple Software Update to install all the latest patches on your Snow Leopard system. This should update the FreeType lib as well. -- best regards, Anthony On 04/22/12 02:36, Ray Kiddy wrote: I am seeing differing statements about what is needed

Re: BUILD_HEADLESS_ONLY

2012-03-06 Thread Anthony Petrov
Hi Martin, On 3/6/2012 6:17 PM, martin burtscher wrote: if I use BUILD_HEADLESS=true the awt packages are included and useable. So either I understand BUILD_HEADLESS wrong or it doesnt do what its supposed to do. AWT can work w/o a display, e.g. for in-memory image manipulation, or printing

Re: Request for review: 7030063 AWT support for SE-Embedded integration

2011-03-23 Thread Anthony Petrov
Hi David, The fix looks good to me. -- best regards, Anthony On 3/23/2011 4:25 AM, David Holmes wrote: (build-dev cc'ed as there are some makefile changes (Hi Kelly! :) ) ) webrev: http://cr.openjdk.java.net/~dholmes/7030063/webrev/ This CR integrates support for SE-Embedded into the AWT.

Re: AWT Dev 6839999: Cumulative fix for 6762511 and 6838003

2009-06-17 Thread Anthony Petrov
On 6/17/2009 8:44 PM Andrew John Hughes wrote: So should I push the original webrev http://fuseyism.com/xrender/webrev.01/ (which uses the standard header instead) to the awt gate? Given Kelly's point, I'm approving the fix. Please use the CR number 6851515 for your commit message. Thanks for

Re: AWT Dev 6839999: Cumulative fix for 6762511 and 6838003

2009-06-17 Thread Anthony Petrov
Andrew, Please update the README-builds.html file also as Kelly suggests. Thanks! -- best regards, Anthony On 6/17/2009 9:00 PM Anthony Petrov wrote: On 6/17/2009 8:44 PM Andrew John Hughes wrote: So should I push the original webrev http://fuseyism.com/xrender/webrev.01/ (which uses

Re: AWT Dev 6839999: Cumulative fix for 6762511 and 6838003

2009-06-17 Thread Anthony Petrov
On 6/17/2009 10:13 PM Andrew John Hughes wrote: Please update the README-builds.html file also as Kelly suggests. Thanks! Ok here's an updated version with Xrender mentioned in README-builds: http://fuseyism.com/6851515/webrev.03/ Ok? Perfect! Approved. Feel free to push to the AWT gate.

Re: AWT Dev 6839999: Cumulative fix for 6762511 and 6838003

2009-06-16 Thread Anthony Petrov
On 06/16/2009 07:21 PM, Andrew John Hughes wrote: Is it really necessary to include a chunk of the header file rather than just doing a #include? If so, may I suggest that the block is dependent on _XRENDER_H_ not being defined? The header may be absent on Solaris 10 U2 which is now a

Re: hgext.fetch

2009-06-02 Thread Anthony Petrov
Do the following instead: [extensions] hgext.fetch = [defaults] fetch = -m Merge -- best regards, Anthony On 06/02/2009 06:43 PM, Andrew Haley wrote: I can't get the fetch extension to work properly. I was told that I need to add [extensions] hgext.fetch = -m Merge but that doesn't work:

Re: hgext.fetch

2009-06-02 Thread Anthony Petrov
: Anthony Petrov wrote: Do the following instead: [extensions] hgext.fetch = [defaults] fetch = -m Merge OK, ta. Andrew.

Re: Swing Dev Request for review: Bug 100054: Make building the Nimbus look 'n' feel optional

2009-05-15 Thread Anthony Petrov
On 5/15/2009 5:48 PM Jonathan Gibbons wrote: The irony here is that yesterday I updated my laptop to Ubuntu 9.04, and (a) the Mercurial package does not completely install correctly (b) even if it did, it is version 1.1.2.something, and OpenJDK requires 0.9.5. I don't experience any problems

Re: Request for review: 6833444 version 2

2009-04-27 Thread Anthony Petrov
On 4/27/2009 7:56 PM Dmitri Trembovetski wrote: On pretty much any system you can tell if a drive is local or not, albeit in a system specific way. That would be cool. However I don't see much justification around verifying for sure if a path is on the network. After all it's just a warning

Review request: 6833444 (_BOOTDIR1/_BOOTDIR2 on MS Windows should be consistent with other platforms)

2009-04-23 Thread Anthony Petrov
Please review the fix for the CR mentioned in the subject. The webrev: http://cr.openjdk.java.net/~anthony/webrev-6833444.0/ I verified the fix on MS Windows platform, and it works pretty well. -- best regards, Anthony

Re: Review request: 6833444 (_BOOTDIR1/_BOOTDIR2 on MS Windows should be consistent with other platforms)

2009-04-23 Thread Anthony Petrov
Hi Xiomara, Thank you for the comments! On 4/23/2009 6:27 PM Xiomara Jayasena wrote: Release Engineering uses c:\jdk ... when building on windows. We will still need that. Ups. I'm sorry about that, I really didn't know you use this path. This was the reason I initiated the discussion on the

Re: Review request: 6833444 (_BOOTDIR1/_BOOTDIR2 on MS Windows should be consistent with other platforms)

2009-04-23 Thread Anthony Petrov
:/jdk1.6.0 default. With enough warning you might be able to change this. It's OK with me, if you remove c:/jdk ... Great to hear that! Thanks! -- best regards, Anthony Thanks, -Xiomara On 04/23/09 09:31, Anthony Petrov wrote: Hi Xiomara, Thank you for the comments! On 4/23/2009 6:27 PM

Re: _BOOTDIR1 on MS Windows platform

2009-04-23 Thread Anthony Petrov
. :^{ -kto Anthony Petrov wrote: Hello, Back in 2007 we already discussed this issue with Kelly, but transitioning to Mercurial just stopped the work. So, I would like to revive this now. Here's a part of the output generated by `grep -r BOOTDIR make/*`: make/common/shared/Defs-solaris.gmk

Re: _BOOTDIR1 on MS Windows platform

2009-04-23 Thread Anthony Petrov
default. With enough warning you might be able to change this. --- I have been recently working on the JavaFX build dependency issues and although it's more ant based, some of the techniques could apply to making OpenJDK builds easier. Unfortunately, there is only 24hrs in a day. :^{ -kto Anthony

_BOOTDIR1 on MS Windows platform

2009-04-22 Thread Anthony Petrov
Hello, Back in 2007 we already discussed this issue with Kelly, but transitioning to Mercurial just stopped the work. So, I would like to revive this now. Here's a part of the output generated by `grep -r BOOTDIR make/*`: make/common/shared/Defs-solaris.gmk: _BOOTDIR1

Re: splashscreen.so is missing pnggccrd.c

2008-08-29 Thread Anthony Petrov
, Anthony Petrov [EMAIL PROTECTED] wrote: Hello Martin, Thank you for the patch. Though there's a little concern: how does the bare libpng deal with this issue when compiled using the toolchain you use? I mean, the problem is not reproducible when compiling on a regular 32-bit system, so it might

Re: splashscreen.so is missing pnggccrd.c

2008-08-28 Thread Anthony Petrov
versions of the PNG-library may not need this option. +CPPFLAGS += -DPNG_NO_MMX_CODE Martin On Wed, Aug 27, 2008 at 5:48 AM, Anthony Petrov [EMAIL PROTECTED] wrote: Hi Martin, On 08/25/2008 08:17 PM Martin Buchholz wrote: Thanks for the link, but... - The fix for 6613927 is applied in my

Re: splashscreen.so is missing pnggccrd.c

2008-08-28 Thread Anthony Petrov
Hi Mark, Thanks for pointing this. Actually, the patch existing in the IcedTea seems to have two potential issues that we at Sun are worried about: 1. The patch cuts off the embedded versions of these libraries from OpenJDK source code. In fact, there may exist systems where these libraries

Re: splashscreen.so is missing pnggccrd.c

2008-08-27 Thread Anthony Petrov
Hi Martin, On 08/25/2008 08:17 PM Martin Buchholz wrote: Thanks for the link, but... - The fix for 6613927 is applied in my workspace And it gets activated when building on a 64-bit system only. Could you please take a look at the make/sun/splashscreen/Makefile file and make sure it defines

Re: splashscreen.so is missing pnggccrd.c

2008-08-25 Thread Anthony Petrov
Hi Martin, On 08/24/2008 04:44 AM Martin Buchholz wrote: ../../../build/linux-i586/tmp/sun/sun.awt/splashscreen/obj/png.o: In function `png_init_mmx_flags': png.c:(.text+0xbb): undefined reference to `png_mmx_support' It looks like another reincarnation of

Re: Building on Win 2008

2008-08-01 Thread Anthony Petrov
Hi Kelly, On 07/31/2008 10:58 PM Kelly O'Hair wrote: So no plugin code, no installation bundle code, etc. Right. But all the currently opensourced code was buildable at that time. From this point it was clean: VS2005ExpressSP1 + Platform SDK for Win2003R2 + DirectX SDK June 2007 + cygwin.

Re: Building on Win 2008

2008-07-31 Thread Anthony Petrov
edition, and once we are building with the Professional edition, someone can see how much is buildable with the Express edition. -kto Anthony Petrov wrote: On 07/29/2008 11:03 PM Erik Trimble wrote: I certainly can't speak for Sun on this. But, I don't think there is any immediate plans to use GCC

Re: Building on Win 2008

2008-07-31 Thread Anthony Petrov
On 07/30/2008 07:56 PM Erik Trimble wrote: would make it very nice. Unfortunately, the free version of VS is actually _very_ different than the Professional version, and not just the compiler itself (which, has a whole 'nother set of bugs unique to it...). AFAIK, that was true for the free

Re: Building on Win 2008

2008-07-30 Thread Anthony Petrov
On 07/29/2008 11:03 PM Erik Trimble wrote: I certainly can't speak for Sun on this. But, I don't think there is any immediate plans to use GCC on Windows. It would probably be OK if someone wanted to try, but I can't imagine it being even remotely easy. There's just so much stuff dependent

Re: Success :) building openjdk for windows

2007-08-19 Thread Anthony Petrov
Services Consulting, Teaching, Speaking, Writing http://www.tedneward.com -Original Message- From: [EMAIL PROTECTED] [mailto:build-dev- [EMAIL PROTECTED] On Behalf Of Anthony Petrov Sent: Friday, August 17, 2007 12:21 AM To: Rishi Khare Cc: build-dev@openjdk.java.net; [EMAIL PROTECTED]; Igor

Re: encumbrances update

2007-08-09 Thread Anthony Petrov
Hmm... On 08/01/2007 10:58 PM Dan Fabulich wrote: It is believed to build and work on all platform combinations : windows, linux, solaris, 32 and 64 bit, but testing has focused on the 32 bit versions. believed to build? Has anyone yet tried doing the standard OpenJDK build on Windows,