Re: Tracking Python 3 for Firefox tooling

2017-08-16 Thread Alex Gaynor
A great fire milestone is likely getting python3 -mcompileall python/ clean. It looks like there's a couple dozen syntax errors that I bet could be knocked out in an hour. Alex On Wed, Aug 16, 2017 at 1:15 PM, Dustin Mitchell wrote: > This feels like a project that could benefit from

Re: UpdateService:selectUpdate - skipping update even though application version is higher?

2017-01-25 Thread Alex
On Wednesday, January 25, 2017 at 2:30:24 PM UTC, Ben Hearsum wrote: > On 2017-01-25 08:02 AM, Alex wrote: > > On Wednesday, January 25, 2017 at 12:27:07 PM UTC, Alex wrote: > >> Hi all, > >> > >> I'm testing out the v51 codebase. I've got an

Re: UpdateService:selectUpdate - skipping update even though application version is higher?

2017-01-25 Thread Alex
On Wednesday, January 25, 2017 at 12:27:07 PM UTC, Alex wrote: > Hi all, > > I'm testing out the v51 codebase. I've got an application at version 51.0. > I've made a supplementary update to 51.0.0.1 to test out the updater. The > update doesn't ever get down

UpdateService:selectUpdate - skipping update even though application version is higher?

2017-01-25 Thread Alex
Hi all, I'm testing out the v51 codebase. I've got an application at version 51.0. I've made a supplementary update to 51.0.0.1 to test out the updater. The update doesn't ever get downloaded though: AUS:SVC Checker: checkForUpdates, force: true AUS:SVC Checker:getUpdateURL - update URL: https

Re: Cross compile issue: EnumStringComparisonError: Can only compare with 'Darwin', 'DragonFly', 'FreeBSD', 'kFreeBSD', 'Linux', 'NetBSD', 'OpenBSD', 'WINNT'

2016-11-06 Thread Alex
On Saturday, November 5, 2016 at 8:45:07 PM UTC, Mike Hommey wrote: > On Sat, Nov 05, 2016 at 07:26:07AM -0700, Alex wrote: > > Hi all, > > > > Since around Firefox 49, I've had trouble cross compiling Firefox using > > mingw-w64 and GCC. With the environment set

Cross compile issue: EnumStringComparisonError: Can only compare with 'Darwin', 'DragonFly', 'FreeBSD', 'kFreeBSD', 'Linux', 'NetBSD', 'OpenBSD', 'WINNT'

2016-11-05 Thread Alex
DEBUG: COMPILER = gcc 0:08.67 DEBUG: VERSION = 6.2.0 0:08.67 DEBUG: STDC_VERSION = 201112L 0:08.67 DEBUG: CPU = x86_64 0:08.67 DEBUG: KERNEL = 1 0:08.67 DEBUG: ENDIANNESS = little 0:08.67 Traceback (most recent call last): 0:08.67 File "/Users/alex/gecko-dev/configure.py", line 9

Google search keeps overriding default search set at build time

2016-02-08 Thread Alex
I've changed the following preferences to try and set DuckDuckGo as the default search engine: browser/locales/en-US/chrome/browser-region/region.properties --- browser.search.defaultenginename=DuckDuckGo browser.search.order.1=DuckDuckGo browser/app/profile/firefox.js --- browser.search.default

Re: VS2015 Builds won't run on systems without VCRedist installed on them

2016-02-04 Thread Alex
On Thursday, February 4, 2016 at 3:52:00 PM UTC, Birunthan Mohanathas wrote: > It turns out WIN_UCRT_REDIST_DIR doesn't work if the path has spaces. > See bug 1245701. Interesting, I'll have a look at this thanks. On Thursday, February 4, 2016 at 9:22:28 PM UTC, Ehsan Akhgari wrote: > This is w

Re: VS2015 Builds won't run on systems without VCRedist installed on them

2016-02-04 Thread Alex K
7:31 PM, Ehsan Akhgari wrote: > On 2016-02-03 1:45 PM, Alex wrote: > >> Hi all, >> >> I posted about this in bug 1204202 ( >> https://bugzilla.mozilla.org/show_bug.cgi?id=1204202) but that was >> probably not the correct place to do so. >> >> Any bui

Re: VS2015 Builds won't run on systems without VCRedist installed on them

2016-02-03 Thread Alex
> How are you setting the WIN_UCRT_REDIST_DIR variable? I think the way > that this is supposed to work is by setting this variable in the > mozconfig file, have the configure script pick it up > and then > package api-ms-win-*.dll an

Re: VS2015 Builds won't run on systems without VCRedist installed on them

2016-02-03 Thread Alex
On Wednesday, February 3, 2016 at 7:31:33 PM UTC, Ehsan Akhgari wrote: > On 2016-02-03 1:45 PM, Alex wrote: > > Hi all, > > > > I posted about this in bug 1204202 > > (https://bugzilla.mozilla.org/show_bug.cgi?id=1204202) but that was > > probably not the co

VS2015 Builds won't run on systems without VCRedist installed on them

2016-02-03 Thread Alex
Hi all, I posted about this in bug 1204202 (https://bugzilla.mozilla.org/show_bug.cgi?id=1204202) but that was probably not the correct place to do so. Any builds I make with VS2015 will fail to run on any systems without the VCRedist installed on that system. All the relevant DLLs from C:\Pro

Correct way to generate moz.build files?

2015-07-15 Thread Alex
Back with another silly question. I remember reading documentation about being able to generate moz.build files. I can't seem to find that documentation anymore...am I going crazy or was there a command line to generate moz.build files from directories/Makefiles?

Re: Clang-cl fails to build NSS library on Windows

2015-06-26 Thread Alex
On Friday, June 26, 2015 at 4:06:35 PM UTC+1, Ehsan Akhgari wrote: > On 2015-06-25 5:24 PM, Alex wrote: > > Attempting to compile Firefox with clang-cl works great up until freebl, > > where it chokes. This is attempting to build a 64-Bit version with 64-Bit > > clang

Clang-cl fails to build NSS library on Windows

2015-06-25 Thread Alex
Attempting to compile Firefox with clang-cl works great up until freebl, where it chokes. This is attempting to build a 64-Bit version with 64-Bit clang. Both versions 3.6.0-r225071 and 3.7.0-r240278 were used, but with the same errors from both. I used the following mozconfig: http://pastebin

Re: How does the build system know which directories to process Makefiles in?

2015-06-19 Thread Alex
On Wednesday, June 17, 2015 at 5:16:14 PM UTC+1, Ted Mielczarek wrote: > On Wed, Jun 17, 2015, at 10:24 AM, Alex wrote: > > Just curious as to how the build system knows which directories to > > process the Makefiles in them? I've seen some moz.build files ref

How does the build system know which directories to process Makefiles in?

2015-06-17 Thread Alex
Just curious as to how the build system knows which directories to process the Makefiles in them? I've seen some moz.build files reference them with CONFIGURE_SUBST_FILES += ['Makefile'], but then some directories such as the root SpiderMonkey directory (js/src) have Makefiles but with no refere

Re: 3rd party build update MAR failing to apply (status: failed: 19)

2015-02-13 Thread Alex
I can see this issue is caused by CERT_VERIFY_ERROR but 34.0 built MAR has been fine, the issue has only come from going from 34->35 codebase and I don't think the build options have changed at all. I've also seen this conversation thread: http://t73655.mozilla-firefox-development.mozillatalk.i

3rd party build update MAR failing to apply (status: failed: 19)

2015-02-13 Thread Alex
rforming a staged update PATCH DIRECTORY C:\Users\alex\AppData\Local\Mozilla\updates\6F940AC27A98DD61\updates\0 INSTALLATION DIRECTORY C:\Program Files\Firefox WORKING DIRECTORY C:\Program Files\Firefox\updated failed: 19 calling QuitProgressUI AUS:SVC UpdateManager:_loadXMLFileIntoArray

How to build a more recent Firefox OS for Huawei Y300 II?

2015-01-07 Thread Alex Mayorga
eight. Fellow mozillian on Telegram suggested to try this list hence this message. I'll highly appreciate any guidance I'd get. ¡Gracias! Alex ___ dev-builds mailing list dev-builds@lists.mozilla.org https://lists.mozilla.org/listinfo/dev-builds

WebGL works on debug build but not on normal build with Intel C++. Anyone have any ideas why?

2014-11-02 Thread Alex
So in FF33, ICC builds no longer work properly as WebGL crashes whenever used. In my attempt to debug this, creating a debug build (with enable-debug) and trying to document a crash, I find that WebGL runs fine on the build. Anyone know if there are possibly any preferences enabled/disable betw

Can't use Makefile in js/src/builtin to overwrite CC and CXX?

2014-10-21 Thread Alex
Due to latin1string being added to mozilla33, Intel C++ can no longer compile due to a compiler bug. A workaround would be to have the affected files compiled with cl instead of icl. libspeex_resampler has this issue but can be averted by creating a Makefile in media/libspeex_resample/src and se

Has anyone managed to create a working XCode Project?

2014-09-23 Thread Alex
Since a visual studio project can now be automatically generated and Gregory Szorc mentioned in a blog post (http://gregoryszorc.com/blog/2012/07/25/mozilla-build-system-plan-of-attack/) about the possibility of future xcode project generation, I was wondering if anyone has successfuly made one

Re: Build checks failing on 29.0+ with ICC

2014-05-14 Thread Alex
On Wednesday, May 14, 2014 12:24:01 AM UTC+1, Mike Hommey wrote: > On Tue, May 13, 2014 at 02:40:19PM -0700, Alex wrote: > > > The warning in question: > > > > > > http://i58.tinypic.com/fjoyg1.png > > > > > > Config.log: > > > ht

Build checks failing on 29.0+ with ICC

2014-05-13 Thread Alex
The warning in question: http://i58.tinypic.com/fjoyg1.png Config.log: http://pastebin.com/NYwxinju The same exact build configuration worked fine for 28.0, and I compared both config logs and they produce the same output. Has anything changed regarding build checks? I see there's lots changin

Re: Can't get automatic updates to work properly?

2014-04-08 Thread Alex
Ah great, so after 5 failed checks they'll get the update notification? Is there some place where all this information is available? It seems like the build documentation on MDN could do with some updating! ___ dev-builds mailing list dev-builds@lists.

Re: Can't get automatic updates to work properly?

2014-04-07 Thread Alex
Looks like you're correct and it's the cause of the update not showing. Since I've already distributed the program, if I switched to using a Thawte SSL certificate, would that remedy the situation? ___ dev-builds mailing list dev-builds@lists.mozilla.or

Re: Can't get automatic updates to work properly?

2014-04-07 Thread Alex
Okay so here's what I've got from no update.url.override: http://i61.tinypic.com/rvk8wo.png And what happened with update.url.override: http://i60.tinypic.com/1zd4vfl.png So one issue seems to be the SSL company I'm using which is causing the application to see it's not from Thawte and is therefo

Re: Can't get automatic updates to work properly?

2014-04-07 Thread Alex
So I set app.update.log and try to perform the update, it says the program is up to date. In the web console nothing about the update shows. Is that where I'm supposed to find the log? On Friday, April 4, 2014 1:49:49 PM UTC+1, Ben Hearsum wrote: > Can you set app.update.log to True and paste wh

Can't get automatic updates to work properly?

2014-04-04 Thread Alex
So I'm attempting to get automatic updates to work, but the documentation on MDN is a bit iffy to say the least. So what I gather happens during the update process: -> The application checks for an update.xml file in the url defined in app.update.url -> If this file exists, download the update

Re: How to modify the default user string without modifying about:config?

2014-02-12 Thread Alex
On Sunday, January 5, 2014 5:44:50 PM UTC, Matt Brubeck wrote: > On 1/4/2014 1:31 PM, Alex wrote: > > > I've tried looking for a straightforward answer but the MDN doesn't help > > much on the matter. The only way I know of is using the useragent.override >

Re: dom/src/events has no Makefile. How are build parameters passed to it?

2014-02-03 Thread Alex
On Monday, February 3, 2014 8:57:21 PM UTC, Benjamin Smedberg wrote: > On 2/3/2014 3:52 PM, Alex wrote: > > > > > > Ah right okay. Is it possible to set CC and CXX in moz.build? Or will that > > have to be added? > > Both the short and the long answer to

Re: dom/src/events has no Makefile. How are build parameters passed to it?

2014-02-03 Thread Alex
On Tuesday, January 28, 2014 7:41:40 PM UTC, Ted Mielczarek wrote: > On 1/28/2014 2:28 PM, Alex wrote: > > > Curious as to how build parameters are passed to this directory. I see that > > moz.build is used for most things, but what if you want to change the > > compil

dom/src/events has no Makefile. How are build parameters passed to it?

2014-01-28 Thread Alex
Curious as to how build parameters are passed to this directory. I see that moz.build is used for most things, but what if you want to change the compiler flags or the compiler used? ___ dev-builds mailing list dev-builds@lists.mozilla.org https://lists