Re: Seamonkey 2.0b2 build help

2009-10-07 Thread Jens Hatlak

On 10/7/2009 10:24 PM Jeff Wieland wrote:

I'm starting the seamonkey-2.0b2 tarball, and the error I get is:

gmake[5]: Entering directory 
`/opt/src/appl/X/seamonkey2/seamonkey-2.0b2/comm-central/mozilla/build'
/opt/src/appl/X/seamonkey2/seamonkey-2.0b2/comm-central/mozilla/config/nsinstall 
-R ../build/automationutils.py .
/opt/src/appl/X/seamonkey2/seamonkey-2.0b2/comm-central/mozilla/config/nsinstall: 
cannot access ../build/automationutils.py: No such file or directory
gmake[5]: *** 
[/opt/src/appl/X/seamonkey2/seamonkey-2.0b2/comm-central/mozilla/build/automationutils.py] 
Error 1


The aforementioned automation.py really doesn't exist.  There is a
automation.py.in in that directory -- my guess is that file is used
to build the actual automationutils.py file.


There is no automation.py in the sources but the error message you 
provided doesn't refer to that but to automationutils.py which does 
exist, even in the stock SM2b2 sources tarball (under 
comm-central/mozilla/build).


Since automationutils.py doesn't contain a processor line that's 
probably not the issue here either.


One question: Do you actually build from comm-central/ or from 
comm-central/mozilla/? I know the former works but am not sure about the 
latter (never tried).


HTH

Jens

--
Jens Hatlak <http://jens.hatlak.de/>
SeaMonkey Trunk Tracker <http://smtt.blogspot.com/>
___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Seamonkey 2.0b2 build help

2009-10-07 Thread Jeff Wieland

Mark Hansen wrote:

On 10/06/09 19:24, Jeff Wieland wrote:

Jens Hatlak wrote:

On 10/6/2009 10:12 PM Jeff Wieland wrote:
I've been building Seamonkey (and Mozilla before it) on Solaris 10 & 8 
for
years now, but it looks like the build procedure has changed???  If 
so, is

there any resource to help me get started with this?  I've been poking
around on the www.seamonkey-project.org and wiki.mozilla.org sites 
without

success so far.

<https://developer.mozilla.org/en/Simple_SeaMonkey_build>
<https://wiki.mozilla.org/SeaMonkey:hg-based_build>
<http://jh.junetz.de/en/mozilla/mozbuild.php4>

HTH

Jens


OK, it looks like the build process for Seamonkey hasn't changed all
that much.

I'm starting the seamonkey-2.0b2 tarball, and the error I get is:

gmake[5]: Entering directory 
`/opt/src/appl/X/seamonkey2/seamonkey-2.0b2/comm-central/mozilla/build'
/opt/src/appl/X/seamonkey2/seamonkey-2.0b2/comm-central/mozilla/config/nsinstall 
-R ../build/automationutils.py .
/opt/src/appl/X/seamonkey2/seamonkey-2.0b2/comm-central/mozilla/config/nsinstall: 
cannot access ../build/automationutils.py: No such file or directory
gmake[5]: *** 
[/opt/src/appl/X/seamonkey2/seamonkey-2.0b2/comm-central/mozilla/build/automationutils.py] 
Error 1

--
Jeff Wieland


I'm not a SM build expert, but sometimes, when a file appears to not be
there, what's really wrong is the processor used for that file is not
found. In this case, it's a Python file, so do you have Python installed?

You can check that specific file to see if it has a command processor
directive at the top, like:

  #!/usr/local/python/python

or whatever. Make sure the path mentioned in the file is valid on
your system.


The aforementioned automation.py really doesn't exist.  There is a
automation.py.in in that directory -- my guess is that file is used
to build the actual automationutils.py file.

On Solaris 10, python is in /usr/bin/python.  The configure appears
to be finding it OK.
--
Jeff Wieland
___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Seamonkey 2.0b2 build help

2009-10-07 Thread Mark Hansen
On 10/06/09 19:24, Jeff Wieland wrote:
> Jens Hatlak wrote:
>> On 10/6/2009 10:12 PM Jeff Wieland wrote:
>>> I've been building Seamonkey (and Mozilla before it) on Solaris 10 & 8 
>>> for
>>> years now, but it looks like the build procedure has changed???  If 
>>> so, is
>>> there any resource to help me get started with this?  I've been poking
>>> around on the www.seamonkey-project.org and wiki.mozilla.org sites 
>>> without
>>> success so far.
>> 
>> <https://developer.mozilla.org/en/Simple_SeaMonkey_build>
>> <https://wiki.mozilla.org/SeaMonkey:hg-based_build>
>> <http://jh.junetz.de/en/mozilla/mozbuild.php4>
>> 
>> HTH
>> 
>> Jens
>> 
> 
> OK, it looks like the build process for Seamonkey hasn't changed all
> that much.
> 
> I'm starting the seamonkey-2.0b2 tarball, and the error I get is:
> 
> gmake[5]: Entering directory 
> `/opt/src/appl/X/seamonkey2/seamonkey-2.0b2/comm-central/mozilla/build'
> /opt/src/appl/X/seamonkey2/seamonkey-2.0b2/comm-central/mozilla/config/nsinstall
>  
> -R ../build/automationutils.py .
> /opt/src/appl/X/seamonkey2/seamonkey-2.0b2/comm-central/mozilla/config/nsinstall:
>  
> cannot access ../build/automationutils.py: No such file or directory
> gmake[5]: *** 
> [/opt/src/appl/X/seamonkey2/seamonkey-2.0b2/comm-central/mozilla/build/automationutils.py]
>  
> Error 1
> --
> Jeff Wieland

I'm not a SM build expert, but sometimes, when a file appears to not be
there, what's really wrong is the processor used for that file is not
found. In this case, it's a Python file, so do you have Python installed?

You can check that specific file to see if it has a command processor
directive at the top, like:

  #!/usr/local/python/python

or whatever. Make sure the path mentioned in the file is valid on
your system.
___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Seamonkey 2.0b2 build help

2009-10-06 Thread Jeff Wieland

Jens Hatlak wrote:

On 10/6/2009 10:12 PM Jeff Wieland wrote:
I've been building Seamonkey (and Mozilla before it) on Solaris 10 & 8 
for
years now, but it looks like the build procedure has changed???  If 
so, is

there any resource to help me get started with this?  I've been poking
around on the www.seamonkey-project.org and wiki.mozilla.org sites 
without

success so far.


<https://developer.mozilla.org/en/Simple_SeaMonkey_build>
<https://wiki.mozilla.org/SeaMonkey:hg-based_build>
<http://jh.junetz.de/en/mozilla/mozbuild.php4>

HTH

Jens



OK, it looks like the build process for Seamonkey hasn't changed all
that much.

I'm starting the seamonkey-2.0b2 tarball, and the error I get is:

gmake[5]: Entering directory 
`/opt/src/appl/X/seamonkey2/seamonkey-2.0b2/comm-central/mozilla/build'
/opt/src/appl/X/seamonkey2/seamonkey-2.0b2/comm-central/mozilla/config/nsinstall 
-R ../build/automationutils.py .
/opt/src/appl/X/seamonkey2/seamonkey-2.0b2/comm-central/mozilla/config/nsinstall: 
cannot access ../build/automationutils.py: No such file or directory
gmake[5]: *** 
[/opt/src/appl/X/seamonkey2/seamonkey-2.0b2/comm-central/mozilla/build/automationutils.py] 
Error 1

--
Jeff Wieland
___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Seamonkey 2.0b2 build help

2009-10-06 Thread Jens Hatlak

On 10/6/2009 10:12 PM Jeff Wieland wrote:

I've been building Seamonkey (and Mozilla before it) on Solaris 10 & 8 for
years now, but it looks like the build procedure has changed???  If so, is
there any resource to help me get started with this?  I've been poking
around on the www.seamonkey-project.org and wiki.mozilla.org sites without
success so far.






HTH

Jens

--
Jens Hatlak 
SeaMonkey Trunk Tracker 
___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Seamonkey 2.0b2 build help

2009-10-06 Thread Jeff Wieland

I'm working on compiling Seamonkey 2.0b2 on SPARC Solaris 10.  I've created
my own build of GTK+ 2.16.6 and assorted other pieces to use, since Solaris
10 still ships with a fairly old version of GTK+.

I've been building Seamonkey (and Mozilla before it) on Solaris 10 & 8 for
years now, but it looks like the build procedure has changed???  If so, is
there any resource to help me get started with this?  I've been poking
around on the www.seamonkey-project.org and wiki.mozilla.org sites without
success so far.
--
Jeff Wieland
___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Seamonkey 2.0b2

2009-09-26 Thread Philip Chee
On Sat, 26 Sep 2009 12:07:15 -0500, Tony wrote:

> So far I am thrilled with this version of Seamonkey. I do have one small 
> nit. In the 1.x version, when you have multiple account names & 
> passwords, a dialog box would pop up for selection of the appropriate 
> name. With 2.0b1/b2, one has to left click on the account name block to 
> get a list of names. With Yahoo, I have to click out side the name block 
> first and then on the name block before I can get a list.
> 
> I'm not sure if this is a bug or a new security feature.

This is the way the new login manager (shared with Firefox) works.

Phil

-- 
Philip Chee , 
http://flashblock.mozdev.org/ http://xsidebar.mozdev.org
Guard us from the she-wolf and the wolf, and guard us from the thief,
oh Night, and so be good for us to pass.

___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Seamonkey 2.0b2

2009-09-26 Thread JAS
NoOp wrote:
> On 09/26/2009 10:07 AM, Tony wrote:
>   
>> So far I am thrilled with this version of Seamonkey. I do have one small 
>> nit. In the 1.x version, when you have multiple account names & 
>> passwords, a dialog box would pop up for selection of the appropriate 
>> name. With 2.0b1/b2, one has to left click on the account name block to 
>> get a list of names. With Yahoo, I have to click out side the name block 
>> first and then on the name block before I can get a list.
>>
>> I'm not sure if this is a bug or a new security feature.
>> 
> I'm not sure I understand exactly what you are referring to. Can you
> provide more details and/or provide a screenshot someplace?
>
>   
I just start to type in the account name and it comes up with the
appropriate password.

JAS

-- 
   You either teach people to treat you with dignity and respect, or you don't. 
This means you are partly responsible for the mistreatment that you get at the 
hands of someone else. 

___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Seamonkey 2.0b2

2009-09-26 Thread chicagofan

NoOp wrote:

On 09/26/2009 10:07 AM, Tony wrote:

So far I am thrilled with this version of Seamonkey. I do have one small
nit. In the 1.x version, when you have multiple account names&
passwords, a dialog box would pop up for selection of the appropriate
name. With 2.0b1/b2, one has to left click on the account name block to
get a list of names. With Yahoo, I have to click out side the name block
first and then on the name block before I can get a list.

I'm not sure if this is a bug or a new security feature.


I'm not sure I understand exactly what you are referring to. Can you
provide more details and/or provide a screenshot someplace?



Maybe he's talking about the personal address book?  I only have one listing, 
but it still doesn't open for me, and I I have to go through something like he 
is describing to make it open.  It requires 2 or 3 *extra* clicks to address 
mail now.  :(

bj



___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Seamonkey 2.0b2

2009-09-26 Thread NoOp
On 09/26/2009 10:07 AM, Tony wrote:
> So far I am thrilled with this version of Seamonkey. I do have one small 
> nit. In the 1.x version, when you have multiple account names & 
> passwords, a dialog box would pop up for selection of the appropriate 
> name. With 2.0b1/b2, one has to left click on the account name block to 
> get a list of names. With Yahoo, I have to click out side the name block 
> first and then on the name block before I can get a list.
> 
> I'm not sure if this is a bug or a new security feature.

I'm not sure I understand exactly what you are referring to. Can you
provide more details and/or provide a screenshot someplace?

___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Seamonkey 2.0b2

2009-09-26 Thread Tony
So far I am thrilled with this version of Seamonkey. I do have one small 
nit. In the 1.x version, when you have multiple account names & 
passwords, a dialog box would pop up for selection of the appropriate 
name. With 2.0b1/b2, one has to left click on the account name block to 
get a list of names. With Yahoo, I have to click out side the name block 
first and then on the name block before I can get a list.


I'm not sure if this is a bug or a new security feature.
___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey