Send grass-windows mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.osgeo.org/mailman/listinfo/grass-windows
or, via email, send a message with subject or body 'help' to
[email protected]
You can reach the person managing the list at
[email protected]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of grass-windows digest..."
Today's Topics:
1. Re: Compiling r.example for WINGRASS (Colin Nielsen)
2. Problem with r.thin.exe (Louis Becker)
3. Re: Compiling r.example for WINGRASS (Ant?nio Rocha)
4. Changing language in wxPython GRASS64 (Ant?nio Rocha)
5. Re: Changing language in wxPython GRASS64 (Milena Nowotarska)
----------------------------------------------------------------------
Message: 1
Date: Tue, 10 Nov 2009 18:43:00 -0500
From: Colin Nielsen <[email protected]>
Subject: Re: [GRASS-windows] Compiling r.example for WINGRASS
To: Ant?nio Rocha <[email protected]>
Cc: [email protected]
Message-ID:
<[email protected]>
Content-Type: text/plain; charset=ISO-8859-1
Hi Antonio,
Have you looked at http://trac.osgeo.org/grass/wiki/CompileOnWindows
There are instructions there for compiling grass on a windows machine
specifically.
>From the error message, it looks like you're missing a couple of
required dependencies (gettext,libintl) these are available from the
osgeo4w installer (see link above).
-Colin
2009/11/9 António Rocha <[email protected]>:
> Greetings
>
> Based on previous messages
> (http://lists.osgeo.org/pipermail/grass-windows/2009-March/001684.html) I'm
> starting to go deep into WinGrass. So, I decided to try and compile
> r.example.
> I'm using gcc (included in Dev-C++) and I use as command:
> gcc.exe "C:\GRASS6\tests\r.example\main.c" -o
> "C:\GRASS6\tests\r.example\main.exe" -I"C:\GRASS6\include"
>
> And I got the following error:
>
> /In file included from C:\GRASS6\tests\r.example\main.c:23:
> C:/GRASS6/include/grass/glocale.h:9:21: libintl.h: No such file or directory
> C:\GRASS6\tests\r.example\main.c: In function `main':
> C:\GRASS6\tests\r.example\main.c:83: error: `PACKAGE' undeclared (first use
> in this function)
> C:\GRASS6\tests\r.example\main.c:83: error: (Each undeclared identifier is
> reported only once
> C:\GRASS6\tests\r.example\main.c:83: error: for each function it appears
> in.)
> C:\GRASS6\tests\r.example\main.c:122: warning: assignment makes pointer from
> integer without a cast
> C:\GRASS6\tests\r.example\main.c:127: warning: assignment makes pointer from
> int
> eger without a cast
> /
> Has anyone have an idea of how to solve this? Or any "tutorial/handbook" to
> solve this?
>
> Thanks
>
> Best Regards
> António Rocha
>
>
> __________ Information from ESET NOD32 Antivirus, version of virus signature
> database 4588 (20091109) __________
>
> The message was checked by ESET NOD32 Antivirus.
>
> http://www.eset.com
>
>
> _______________________________________________
> grass-windows mailing list
> [email protected]
> http://lists.osgeo.org/mailman/listinfo/grass-windows
>
------------------------------
Message: 2
Date: Wed, 11 Nov 2009 12:03:10 +0200
From: "Louis Becker" <[email protected]>
Subject: [GRASS-windows] Problem with r.thin.exe
To: <[email protected]>
Message-ID:
<[email protected]>
Content-Type: text/plain; charset="iso-8859-1"
Hi
When running r.thin.exe I get a WindowsXP message "r.thin.exe has encountered a
problem and needs to close." I am running Grass6.4.0SVN. Experienced the same
problem on version I run before, believe it was the release just before
6.4.0SVN. Any suggestions?
Louis
DISCLAIMER
This message is intended solely for the individual(s) and entity(s) to which it
is addressed. It is confidential and may contain legally privileged
information.
Any unauthorized review, use, copying, storage, disclosure or distribution of
this e-mail and any attachments is strictly prohibited. If you are not the
named
recipient or have otherwise received this communication in error, please
destroy this message from your system and kindly notify the sender by e-mail.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/ms-tnef
Size: 2896 bytes
Desc: not available
Url :
http://lists.osgeo.org/pipermail/grass-windows/attachments/20091111/e19578c3/attachment-0001.bin
------------------------------
Message: 3
Date: Wed, 11 Nov 2009 14:27:05 +0000
From: Ant?nio Rocha <[email protected]>
Subject: Re: [GRASS-windows] Compiling r.example for WINGRASS
To: Colin Nielsen <[email protected]>
Cc: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Greetings All
Thanks Colin now I'm not getting any libraries errors.
Now I'm compiling with Msys by using the following command:
gcc c:/grass6/tests/r.example/main.c -o c:/r.example.exe -I
c:/osgeo4w/apps/grass/grass-6.4.0svn/include/
And I get the following error:
c:/grass6/tests/r.example/main.c: In function `main':
c:/grass6/tests/r.example/main.c:83: error: `PACKAGE' undeclared (first use in
this function)
c:/grass6/tests/r.example/main.c:83: error: (Each undeclared identifier is
reported only once
c:/grass6/tests/r.example/main.c:83: error: for each function it appears in.)
c:/grass6/tests/r.example/main.c:122: warning: assignment makes pointer from
integer without a cast
c:/grass6/tests/r.example/main.c:127: warning: assignment makes pointer from
integer without a cast
Is this a common error with r.example?
Thanks
Best regards,
Antonio Rocha
Colin Nielsen wrote:
> Hi Antonio,
> Have you looked at http://trac.osgeo.org/grass/wiki/CompileOnWindows
> There are instructions there for compiling grass on a windows machine
> specifically.
>
> >From the error message, it looks like you're missing a couple of
> required dependencies (gettext,libintl) these are available from the
> osgeo4w installer (see link above).
>
> -Colin
>
> 2009/11/9 António Rocha <[email protected]>:
>
>> Greetings
>>
>> Based on previous messages
>> (http://lists.osgeo.org/pipermail/grass-windows/2009-March/001684.html) I'm
>> starting to go deep into WinGrass. So, I decided to try and compile
>> r.example.
>> I'm using gcc (included in Dev-C++) and I use as command:
>> gcc.exe "C:\GRASS6\tests\r.example\main.c" -o
>> "C:\GRASS6\tests\r.example\main.exe" -I"C:\GRASS6\include"
>>
>> And I got the following error:
>>
>> /In file included from C:\GRASS6\tests\r.example\main.c:23:
>> C:/GRASS6/include/grass/glocale.h:9:21: libintl.h: No such file or directory
>> C:\GRASS6\tests\r.example\main.c: In function `main':
>> C:\GRASS6\tests\r.example\main.c:83: error: `PACKAGE' undeclared (first use
>> in this function)
>> C:\GRASS6\tests\r.example\main.c:83: error: (Each undeclared identifier is
>> reported only once
>> C:\GRASS6\tests\r.example\main.c:83: error: for each function it appears
>> in.)
>> C:\GRASS6\tests\r.example\main.c:122: warning: assignment makes pointer from
>> integer without a cast
>> C:\GRASS6\tests\r.example\main.c:127: warning: assignment makes pointer from
>> int
>> eger without a cast
>> /
>> Has anyone have an idea of how to solve this? Or any "tutorial/handbook" to
>> solve this?
>>
>> Thanks
>>
>> Best Regards
>> António Rocha
>>
>>
>> __________ Information from ESET NOD32 Antivirus, version of virus signature
>> database 4588 (20091109) __________
>>
>> The message was checked by ESET NOD32 Antivirus.
>>
>> http://www.eset.com
>>
>>
>> _______________________________________________
>> grass-windows mailing list
>> [email protected]
>> http://lists.osgeo.org/mailman/listinfo/grass-windows
>>
>>
>
> __________ Information from ESET NOD32 Antivirus, version of virus signature
> database 4594 (20091111) __________
>
> The message was checked by ESET NOD32 Antivirus.
>
> http://www.eset.com
>
>
>
>
>
__________ Information from ESET NOD32 Antivirus, version of virus signature
database 4595 (20091111) __________
The message was checked by ESET NOD32 Antivirus.
http://www.eset.com
------------------------------
Message: 4
Date: Wed, 11 Nov 2009 15:45:27 +0000
From: Ant?nio Rocha <[email protected]>
Subject: [GRASS-windows] Changing language in wxPython GRASS64
To: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Greetings
I have downloaded and install GRASS6.4 MSWindows binary and I'm using
wxPython and I want to change my language. I only found this message but
it's applied to LINUX/UNIX
(http://lists.osgeo.org/pipermail/grass-user/2007-April/039261.html ).
In this case, my Windows XP is in English but I need the GRASS Spanish
language. Could anyone help me?
Best regards
Antonio Rocha
__________ Information from ESET NOD32 Antivirus, version of virus signature
database 4596 (20091111) __________
The message was checked by ESET NOD32 Antivirus.
http://www.eset.com
------------------------------
Message: 5
Date: Wed, 11 Nov 2009 16:57:16 +0100
From: Milena Nowotarska <[email protected]>
Subject: Re: [GRASS-windows] Changing language in wxPython GRASS64
To: [email protected]
Message-ID:
<[email protected]>
Content-Type: text/plain; charset=ISO-8859-1
Hi António,
find the file init.bat in your GRASS instalation directory, open it
with any notepad
the file should be in ../etc/init.bat directory
then paste:
SET LANG=es_ES
SET LANGUAGE=es_ES
SET LC_ALL=es_ES
and restart GRASS
greetings
Milena
2009/11/11 António Rocha <[email protected]>:
- Ukryj cytowany tekst -
> Greetings
>
> I have downloaded and install GRASS6.4 MSWindows binary and I'm using
> wxPython and I want to change my language. I only found this message but
> it's applied to LINUX/UNIX
> (http://lists.osgeo.org/pipermail/grass-user/2007-April/039261.html ). In
> this case, my Windows XP is in English but I need the GRASS Spanish
> language. Could anyone help me?
>
> Best regards
> Antonio Rocha
>
>
> __________ Information from ESET NOD32 Antivirus, version of virus signature
> database 4596 (20091111) __________
>
> The message was checked by ESET NOD32 Antivirus.
>
> http://www.eset.com
>
>
> _______________________________________________
> grass-windows mailing list
> [email protected]
> http://lists.osgeo.org/mailman/listinfo/grass-windows
>
------------------------------
_______________________________________________
grass-windows mailing list
[email protected]
http://lists.osgeo.org/mailman/listinfo/grass-windows
End of grass-windows Digest, Vol 39, Issue 5
********************************************